:root {
  --bg: #f2efe8;
  --bg-2: #e8e2d5;
  --ink: #0f1722;
  --muted: #435163;
  --card: #f9f7f2;
  --line: #c9bda9;
  --brand: #a24b2a;
  --brand-2: #cf7b4f;
  --radius: 24px;
  --shadow: 0 20px 50px rgba(27, 33, 45, 0.12);
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: clip;
}

body {
  font-family: "Sora", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 90% -10%, rgba(162, 75, 42, 0.24), transparent 60%),
    radial-gradient(800px 500px at -10% 30%, rgba(0, 78, 98, 0.15), transparent 65%),
    linear-gradient(140deg, var(--bg), var(--bg-2));
  line-height: 1.6;
}

img,
svg,
video,
canvas,
iframe {
  max-width: 100%;
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.08;
  background-image: radial-gradient(#000 0.5px, transparent 0.5px);
  background-size: 3px 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px clamp(20px, 4vw, 56px);
  backdrop-filter: blur(10px);
  background: rgba(242, 239, 232, 0.7);
  border-bottom: 1px solid rgba(67, 81, 99, 0.18);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
  font-family: "Plus Jakarta Sans", sans-serif;
  letter-spacing: 0.06em;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
}

.logo-mark {
  width: 120px;
  height: auto;
  display: block;
}

nav {
  display: flex;
  gap: 18px;
  min-width: 0;
}

nav a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 500;
  font-size: 0.92rem;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(15, 23, 34, 0.25);
  border-radius: 999px;
  background: rgba(249, 247, 242, 0.9);
  color: var(--ink);
  padding: 8px 12px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 16px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle .menu-label {
  width: auto;
  height: auto;
  background: transparent;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.cta {
  text-decoration: none;
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 9px 14px;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.85rem;
}

main {
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
  padding: clamp(36px, 6vw, 90px) clamp(20px, 4vw, 52px) 90px;
  display: grid;
  gap: clamp(36px, 7vw, 82px);
  overflow-x: clip;
}


 .home #top > * {
  width: 100%;
}

.home #top > section,
.home #top > aside,
.metrics,
.cards,
.split,
.criteria,
.contact,
.panel,
.quote {
  max-width: 100%;
}

.cards article,
.criteria article,
.split > div,
.contact > div,
.contact form {
  min-width: 0;
}
.hero h1,
h2 {
  font-family: "Plus Jakarta Sans", sans-serif;
  line-height: 1.12;
  margin: 0;
}

.hero h1 {
  font-size: clamp(1.08rem, 4.45vw, 3.1rem);
  line-height: 1.08;
  max-width: none;
}

.hero-compare-line {
  display: block;
  white-space: nowrap;
  max-width: 100%;
}

.hero .lede {
  max-width: 62ch;
  color: var(--muted);
  margin: 14px 0 0;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
  font-size: 0.76rem;
  color: var(--brand);
  margin-bottom: 10px;
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.button {
  text-decoration: none;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 600;
  display: inline-block;
}

.primary {
  background: linear-gradient(140deg, var(--brand), var(--brand-2));
  color: #fff;
  box-shadow: var(--shadow);
}

.ghost {
  color: var(--ink);
  border: 1px solid rgba(15, 23, 34, 0.3);
}

.metrics {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.metrics article {
  background: rgba(249, 247, 242, 0.7);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
}

.metrics h3 {
  margin: 0;
  font-size: clamp(1.15rem, 2.2vw, 1.85rem);
  line-height: 1.12;
  text-wrap: balance;
  overflow-wrap: normal;
  word-break: normal;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.metrics p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.panel,
.quote {
  background: rgba(249, 247, 242, 0.82);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 8px);
  padding: clamp(24px, 4vw, 42px);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.panel h2,
.split h2,
.contact h2 {
  font-size: clamp(1.6rem, 3.8vw, 3rem);
  max-width: 14ch;
}

.panel h3 {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.2rem;
}

.panel p:last-child,
.split p,
.contact p {
  color: var(--muted);
  max-width: 64ch;
}

.cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}

.cards article {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  overflow: hidden;
}

.cards article:hover {
  box-shadow: none;
}

.cards h3 {
  margin: 0 0 8px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.35rem;
}

.cards p {
  margin: 0;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.split > div,
.criteria,
.criteria article {
  min-width: 0;
}

.criteria {
  display: grid;
  gap: 16px;
  align-items: start;
}

.criteria article {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  overflow: hidden;
}

.criteria h4 {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.1rem;
}

.criteria p {
  margin: 8px 0 0;
  color: var(--muted);
}

.quote blockquote {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(1.25rem, 3.1vw, 2.45rem);
  line-height: 1.2;
  max-width: 24ch;
}

.team-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.team-grid article {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
}

.team-grid .role {
  margin: 4px 0 8px;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand);
  font-weight: 700;
}

.team-grid p {
  margin: 0;
  color: var(--muted);
}

.team-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  margin: 0;
  font-size: clamp(1.9rem, 5vw, 3.4rem);
  line-height: 1.1;
  max-width: 14ch;
}

.team-roster {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.team-card {
  background: rgba(249, 247, 242, 0.9);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.team-card img {
  width: 100%;
  aspect-ratio: 245 / 276;
  object-fit: cover;
  display: block;
}

.wes-card img {
  filter: grayscale(100%);
}

.team-card div {
  padding: 14px;
}

.team-card h3 {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.16rem;
}

h1,
h2,
h3,
h4,
blockquote {
  overflow-wrap: break-word;
  word-break: normal;
}

.story-text {
  margin-top: 18px;
  display: grid;
  gap: 10px;
  max-width: 72ch;
}

.story-item {
  margin: 0;
  color: var(--muted);
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  align-items: start;
  gap: 16px;
}

.story-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  border: 1px solid rgba(162, 75, 42, 0.35);
  background: rgba(162, 75, 42, 0.08);
  color: var(--brand);
  display: grid;
  place-items: center;
}

.story-icon svg {
  width: 30px;
  height: 30px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.story-item span:last-child {
  display: block;
  padding-top: 6px;
}

.contact {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  align-items: start;
}

.contact ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.contact li {
  margin-bottom: 10px;
}

.contact a {
  color: var(--ink);
}

form {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  display: grid;
  gap: 8px;
}

label {
  font-size: 0.83rem;
  font-weight: 600;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(67, 81, 99, 0.3);
  border-radius: 12px;
  padding: 11px 12px;
  background: #fff;
  font: inherit;
}

button {
  margin-top: 6px;
  border: 0;
  border-radius: 999px;
  padding: 12px 14px;
  font: inherit;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(140deg, var(--brand), var(--brand-2));
  cursor: pointer;
}

footer {
  padding: 24px;
  border-top: 1px solid rgba(67, 81, 99, 0.18);
  text-align: center;
  color: var(--muted);
  font-size: 0.86rem;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .metrics,
  .cards,
  .split,
  .contact,
  .team-grid,
  .team-roster {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .metrics,
  .cards,
  .split,
  .contact,
  .team-grid,
  .team-roster {
    grid-template-columns: 1fr;
  }

  .site-header {
    flex-wrap: wrap;
  }

  .cta {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-4px) rotate(-45deg);
  }

  .menu-toggle .menu-label {
    margin-left: 6px;
  }

  nav {
    order: 3;
    width: 100%;
    display: none;
    flex-direction: column;
    gap: 0;
    margin-top: 8px;
    padding-top: 6px;
    border-top: 1px solid rgba(67, 81, 99, 0.2);
    overflow: visible;
  }

  .site-header.nav-open nav {
    display: flex;
  }

  nav a {
    font-size: 0.94rem;
    padding: 10px 0;
    border-bottom: 1px solid rgba(67, 81, 99, 0.12);
  }

  nav a:last-child {
    border-bottom: 0;
  }
}

html {
  scroll-padding-top: 108px;
}

[id] {
  scroll-margin-top: 108px;
}

#friction h2 {
  max-width: 22ch;
}

.team-card {
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.team-card div {
  display: grid;
  gap: 10px;
}

.bio-tease {
  margin-top: 2px;
  cursor: pointer;
  border: 0;
  border-radius: 12px;
  padding: 0;
  color: var(--ink);
  background: transparent;
  text-align: left;
  font-weight: 500;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px;
  align-items: start;
}

.bio-icon {
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  font-size: 10px;
  line-height: 1;
  color: #fff;
  background: linear-gradient(140deg, var(--brand), var(--brand-2));
  margin-top: 2px;
}

.bio-preview {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.35;
  position: relative;
  max-height: 2.8em;
  overflow: hidden;
  display: block;
}

.bio-preview::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1.2em;
  background: linear-gradient(to bottom, rgba(249, 247, 242, 0), rgba(249, 247, 242, 1));
}

.bio-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
}

.bio-modal.open {
  display: block;
}

.bio-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 34, 0.52);
  backdrop-filter: blur(3px);
}

.bio-modal-panel {
  position: relative;
  margin: min(6vh, 44px) auto;
  width: min(1120px, calc(100% - 28px));
  max-height: calc(100vh - 12vh);
  overflow: auto;
  background: rgba(249, 247, 242, 0.98);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: clamp(20px, 3.2vw, 36px);
}

.bio-close {
  margin: 0 0 10px auto;
  display: block;
  padding: 8px 12px;
  color: var(--ink);
  background: rgba(15, 23, 34, 0.08);
}

.bio-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
  gap: 22px;
  align-items: start;
}

.bio-main h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
}

.bio-main p {
  color: var(--muted);
  margin: 12px 0 0;
  max-width: 64ch;
}

.operator-snapshot {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
}

.operator-snapshot h3 {
  margin: 0 0 10px;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.snapshot-group + .snapshot-group {
  margin-top: 12px;
}

.snapshot-group h4 {
  margin: 0 0 6px;
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand);
}

.snapshot-group ul {
  margin: 0;
  padding-left: 16px;
  color: var(--muted);
  display: grid;
  gap: 4px;
}

@media (max-width: 980px) {
  .bio-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  html {
    scroll-padding-top: 92px;
  }

  [id] {
    scroll-margin-top: 92px;
  }

  .bio-modal-panel {
    width: calc(100% - 14px);
    margin: 8px auto;
    max-height: calc(100vh - 16px);
    padding: 18px;
  }
}

/* Operator signal panel refresh */
.bio-identity {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 16px;
  align-items: center;
}

#bio-headshot {
  width: 118px;
  height: 118px;
  border-radius: 16px;
  object-fit: cover;
  border: 1px solid var(--line);
  filter: grayscale(100%);
}

.bio-copy {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

.bio-copy p {
  margin: 0;
  color: var(--muted);
}

.snapshot-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.snapshot-head h3 {
  margin: 0;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.snapshot-modes {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 2px;
  background: #fff;
}

.snapshot-mode {
  margin: 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
}

.snapshot-mode.is-active {
  background: linear-gradient(140deg, var(--brand), var(--brand-2));
  color: #fff;
}

.snapshot-canvas {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px;
  background: linear-gradient(180deg, #f7f4ed 0%, #f1ecdf 100%);
}

.signal-date {
  margin: 0 0 10px;
  display: inline-block;
  background: #0f1722;
  color: #fff;
  font-size: 0.74rem;
  letter-spacing: 0.05em;
  padding: 5px 8px;
  border-radius: 8px;
}

.track-row + .track-row {
  margin-top: 8px;
}

.track-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-bottom: 5px;
  font-size: 0.78rem;
  color: var(--ink);
}

.track-bar {
  height: 10px;
  border-radius: 99px;
  background: rgba(15, 23, 34, 0.12);
  overflow: hidden;
}

.track-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #1b6a3f, var(--brand));
}

.matrix-grid {
  display: grid;
  gap: 8px;
}

.matrix-chip {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  padding: 8px;
}

.matrix-chip h4 {
  margin: 0 0 5px;
  font-size: 0.8rem;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.matrix-level {
  font-family: "Sora", sans-serif;
  letter-spacing: 0.06em;
  font-size: 0.7rem;
  color: #1b6a3f;
}

.radar-wrap {
  display: grid;
  grid-template-columns: 122px 1fr;
  gap: 10px;
  align-items: center;
}

.radar-ring {
  width: 122px;
  height: 122px;
  border-radius: 50%;
  position: relative;
  display: grid;
  place-items: center;
}

.radar-ring::before {
  content: "";
  position: absolute;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #f5f2ea;
  border: 1px solid var(--line);
}

.radar-ring span {
  position: relative;
  font-weight: 800;
  font-size: 1.1rem;
}

.radar-metrics {
  display: grid;
  gap: 6px;
}

.radar-metrics div {
  display: flex;
  align-items: baseline;
  gap: 7px;
}

.radar-metrics strong {
  font-size: 0.95rem;
}

.radar-metrics span {
  font-size: 0.78rem;
  color: var(--muted);
}

.signal-foot {
  margin-top: 9px;
  font-size: 0.75rem;
  color: var(--muted);
}

@media (max-width: 980px) {
  .bio-identity {
    grid-template-columns: 92px 1fr;
  }

  #bio-headshot {
    width: 92px;
    height: 92px;
  }
}

@media (max-width: 720px) {
  .snapshot-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .radar-wrap {
    grid-template-columns: 1fr;
  }

  .radar-ring {
    margin: 0 auto;
  }
}

@media (max-width: 720px) {
  .hero h1 {
    font-size: clamp(1.05rem, 5.8vw, 2rem);
    letter-spacing: -0.01em;
  }
}
/* About block */
.about-explainer {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 18px;
  align-items: start;
}

.about-intro,
.about-points article {
  background: rgba(249, 247, 242, 0.9);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.about-intro {
  padding: clamp(22px, 3vw, 34px);
}

.about-intro h2 {
  margin: 0;
  font-size: clamp(1.45rem, 3.4vw, 2.4rem);
  max-width: 20ch;
}

.about-intro p:last-child {
  margin-top: 12px;
  color: var(--muted);
  max-width: 62ch;
}

.about-points {
  display: grid;
  gap: 12px;
}

.about-points article {
  padding: 16px;
}

.about-points h3 {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.12rem;
}

.about-points p {
  margin: 6px 0 0;
  color: var(--muted);
}

@media (max-width: 980px) {
  .about-explainer {
    grid-template-columns: 1fr;
  }
}

/* Homepage layout architecture */
.home main {
  width: min(100%, 1320px);
  margin: 0 auto;
  padding: clamp(28px, 5vw, 64px) clamp(18px, 4vw, 52px) 90px;
  overflow-x: clip;
}

.home .home-layout {
  display: grid;
  grid-template-columns: minmax(138px, 164px) minmax(0, 1fr);
  gap: clamp(20px, 2.8vw, 36px);
  align-items: start;
}

.home .home-content {
  min-width: 0;
  display: grid;
  gap: clamp(34px, 6vw, 72px);
}

.home .home-content > section {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.home .home-content > section,
.home .cards,
.home .split,
.home .criteria,
.home .contact,
.home .metrics,
.home .cards article,
.home .criteria article,
.home .split > div {
  min-width: 0;
}

.home .progress-rail {
  position: sticky;
  top: calc(84px + 5vh);
  align-self: start;
  display: grid;
  gap: 8px;
  width: 100%;
  padding: 0 0 0 2px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.home .progress-rail.visible {
  opacity: 1;
  pointer-events: auto;
}

.home .progress-rail a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-left: 2px solid rgba(67, 81, 99, 0.22);
  padding: 6px 6px 6px 10px;
}

.home .progress-rail a.is-active {
  color: var(--ink);
  border-left-color: var(--brand);
}

.home .split {
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.98fr);
}

@media (max-width: 1200px) {
  .home .home-layout {
    grid-template-columns: 132px minmax(0, 1fr);
    gap: 20px;
  }
}

@media (max-width: 1020px) {
  .home main {
    padding-inline: clamp(16px, 5vw, 28px);
  }

  .home .home-layout {
    grid-template-columns: 1fr;
  }

  .home .progress-rail {
    display: none;
  }

  .home .split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .hero h1 {
    font-size: clamp(1rem, 6.2vw, 2rem);
    letter-spacing: -0.01em;
  }

  .hero-compare-line {
    white-space: normal;
  }

  .home main {
    padding-inline: 16px;
  }
}

.faq-section {
  display: grid;
  gap: 18px;
}

.faq-section h2 {
  margin: 0;
  text-align: left;
  font-size: clamp(1.7rem, 3.4vw, 2.55rem);
  max-width: none;
}

.faq-grid {
  width: 100%;
  margin: 0;
}

@media (max-width: 720px) {
  .faq-section h2 {
    text-align: left;
  }
}

.friction-cards {
  position: relative;
}

.friction-card {
  position: relative;
}

.friction-card .card-mark {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid rgba(162, 75, 42, 0.35);
  background: rgba(162, 75, 42, 0.08);
  color: var(--brand);
  display: inline-grid;
  place-items: center;
}

.friction-card .card-mark svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.friction-card h3 {
  margin-top: 12px;
}

.section-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: clamp(10px, 2vw, 24px) 0 clamp(24px, 4vw, 44px);
}

.section-divider::before,
.section-divider::after {
  content: "";
  flex: 1;
  height: 1px;
}

.section-divider::before {
  background: linear-gradient(90deg, rgba(67, 81, 99, 0), rgba(67, 81, 99, 0.35));
}

.section-divider::after {
  background: linear-gradient(90deg, rgba(67, 81, 99, 0.35), rgba(67, 81, 99, 0));
}

.section-divider span {
  width: 50px;
  height: 50px;
  border: 1px solid var(--line);
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(249, 247, 242, 0.95);
}

.section-divider svg {
  width: 16px;
  height: 16px;
  stroke: var(--brand);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 720px) {
  .section-divider {
    margin-block: 14px 28px;
  }

  .section-divider span {
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 720px) {
  .story-item {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 12px;
  }

  .story-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }

  .story-icon svg {
    width: 32px;
    height: 32px;
    stroke-width: 1.9;
  }
}

/* Team page accordion refresh */
.team-roster {
  align-items: start;
}

.team-card {
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.team-card > div {
  display: grid;
  gap: 8px;
  padding: 14px;
}

.team-card .role {
  margin: 2px 0 0;
}

.bio-cta {
  margin-top: 2px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0;
  opacity: 0;
  transform: translateY(3px);
  pointer-events: none;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease, color 0.18s ease;
}

.team-card:hover .bio-cta,
.team-card:focus-within .bio-cta,
.team-card.is-open .bio-cta {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

@media (hover: none), (pointer: coarse) {
  .bio-cta {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
}

.bio-cta:hover,
.bio-cta:focus-visible {
  color: var(--ink);
}
.team-card.is-open {
  border-color: rgba(162, 75, 42, 0.5);
}

.team-card:focus-visible {
  outline: 2px solid rgba(162, 75, 42, 0.45);
  outline-offset: 2px;
}

.team-accordion {
  grid-column: 1 / -1;
  margin-top: 10px;
  border: 1px solid rgba(214, 206, 190, 0.9);
  border-radius: 18px;
  background: rgba(249, 247, 242, 0.92);
  overflow: clip;
}

.team-accordion[hidden] {
  display: none;
}

.team-accordion.is-open {
  display: block;
  animation: teamAccordionIn 220ms ease-out;
}

.team-accordion-shell {
  display: grid;
  grid-template-columns: minmax(245px, 0.34fr) minmax(0, 0.66fr);
  gap: 26px;
  padding: clamp(18px, 2.8vw, 32px);
  align-items: stretch;
}

.team-signal-panel {
  align-self: stretch;
  padding: 2px 18px 8px 0;
  border-right: 1px solid rgba(214, 206, 190, 0.95);
  background: transparent;
  display: grid;
  align-content: start;
  gap: 16px;
  text-align: left;
}

.team-rail-identity {
  width: 100%;
  display: grid;
  gap: 6px;
  justify-items: start;
}

#team-rail-role {
  margin: 0;
}

#team-rail-name {
  margin: 0;
  font-size: clamp(1.35rem, 1.85vw, 1.85rem);
  line-height: 1.14;
  max-width: 16ch;
}

.team-signal-list {
  width: 100%;
  display: grid;
  gap: 12px;
}

.team-signal-item {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  text-align: left;
}

.team-signal-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(162, 75, 42, 0.28);
  background: rgba(162, 75, 42, 0.08);
  color: var(--brand);
  display: grid;
  place-items: center;
}

.team-signal-icon svg {
  width: 30px;
  height: 30px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.team-signal-icon--archetype {
  width: 44px;
  height: 44px;
}

.team-signal-icon--archetype svg {
  width: 32px;
  height: 32px;
}

.team-signal-item h4 {
  margin: 0;
  font-size: 0.64rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(28, 39, 53, 0.76);
}

.team-signal-item p {
  margin: 3px 0 0;
  font-size: 0.93rem;
  color: var(--ink);
  line-height: 1.4;
}

.team-lead-line h4 {
  margin: 0;
  font-size: 0.64rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(28, 39, 53, 0.76);
}

.team-lead-tags {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.team-lead-tag {
  display: inline-flex;
  border: 1px solid rgba(67, 81, 99, 0.2);
  border-radius: 999px;
  padding: 4px 8px;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.76);
}

.team-bio-header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-height: 20px;
}

.team-bio-close {
  margin: 3px 0 0;
  border: 0;
  background: transparent;
  color: rgba(67, 81, 99, 0.72);
  padding: 2px 0;
  font: inherit;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  cursor: pointer;
  line-height: 1.2;
}

.team-bio-close:hover,
.team-bio-close:focus-visible {
  color: var(--ink);
}

.team-bio-copy {
  margin-top: 16px;
  display: grid;
  gap: 12px;
}

.team-bio-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.52;
  max-width: 72ch;
}

@keyframes teamAccordionIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1020px) {
  .team-accordion-shell {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .team-signal-panel {
    border-right: 0;
    border-bottom: 1px solid rgba(214, 206, 190, 0.95);
    padding: 0 0 14px;
  }

  .team-signal-list {
    gap: 10px;
  }

  .team-bio-header {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .team-accordion-shell {
    padding: 16px;
  }
}
