/* ============================================================
   GROUNDWORK — Ink & Air bones, sage spine
   Tokens
   ============================================================ */
:root {
  --cream: #F6F4EE;
  --cream-deep: #EFECE3;
  --ink: #1A1F1B;
  --ink-soft: #3E443F;
  --sage: #5E7461;
  --sage-deep: #3A4A3D;
  --sage-pale: #DCE3D7;
  --gold: #B08D4F;
  --rule: rgba(26, 31, 27, 0.14);

  --font-display: "Source Serif 4", Georgia, serif;
  --font-body: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --max-w: 1100px;
  --pad-x: clamp(1.25rem, 5vw, 3rem);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection { background: var(--sage-pale); color: var(--ink); }

img { max-width: 100%; display: block; }

a { color: inherit; }

/* ============================================================
   Type
   ============================================================ */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 560;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--ink);
}

h1 { font-size: clamp(2.4rem, 5.6vw, 4.1rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.35rem); font-weight: 600; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}


.lede {
  font-size: clamp(1.08rem, 1.7vw, 1.25rem);
  color: var(--ink-soft);
  max-width: 38em;
}

.measure { max-width: 42em; }

em.accent {
  font-style: italic;
  color: var(--sage-deep);
}

/* ============================================================
   Layout
   ============================================================ */
.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

section { padding: clamp(4rem, 9vw, 7.5rem) 0; }

.section-head { margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.section-head .eyebrow { margin-bottom: 1rem; }
.section-head h2 { max-width: 18em; }

.rule-top { border-top: 1px solid var(--rule); }

/* ============================================================
   Nav
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 244, 238, 0.86);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--rule);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.95rem var(--pad-x);
  max-width: var(--max-w);
  margin: 0 auto;
}
.brand {
  font-family: var(--font-display);
  font-weight: 640;
  font-size: 1.22rem;
  text-decoration: none;
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: baseline;
  gap: 0.45rem;
}
.brand .dot {
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--sage);
  display: inline-block;
  transform: translateY(-0.1rem);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.6vw, 2rem);
}
.nav-links a {
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  padding-bottom: 2px;
}
.nav-links a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%;
  height: 1.5px;
  background: var(--sage);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s ease;
}
.nav-links a:not(.btn):hover::after { transform: scaleX(1); }
.nav-links a:not(.btn):hover { color: var(--ink); }

.nav-links .btn {
  color: var(--cream);
  padding: 0.55rem 1.25rem;
  font-size: 0.88rem;
  line-height: 1;
}
.nav-links .btn:hover { color: var(--cream); }

@media (max-width: 760px) {
  .nav-links { display: none; }
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  background: var(--sage-deep);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  padding: 0.85rem 1.8rem;
  border: 1px solid var(--sage-deep);
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.18s ease, box-shadow 0.25s ease;
}
.btn:hover {
  background: var(--sage);
  border-color: var(--sage);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px -12px rgba(58, 74, 61, 0.55);
}
.btn:active { transform: translateY(0); }
.btn .arrow { transition: transform 0.22s ease; }
.btn:hover .arrow { transform: translateX(4px); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--rule);
}
.btn-ghost:hover {
  background: var(--sage-pale);
  border-color: var(--sage);
  color: var(--sage-deep);
  box-shadow: none;
}

.link-quiet {
  font-weight: 500;
  color: var(--sage-deep);
  text-decoration: none;
  border-bottom: 1px solid var(--sage);
  padding-bottom: 1px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.link-quiet:hover { color: var(--sage); border-color: var(--gold); }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  padding: clamp(5rem, 12vw, 9rem) 0 clamp(4rem, 9vw, 7rem);
  position: relative;
  overflow: hidden;
}
.hero .eyebrow { margin-bottom: 1.4rem; }
.hero h1 { max-width: 13.5em; margin-bottom: 1.5rem; }
.hero .lede { margin-bottom: 2.4rem; }
.hero-cta {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  flex-wrap: wrap;
}
.hero-scroll {
  font-size: 0.92rem;
  color: var(--ink-soft);
  text-decoration: none;
  border-bottom: 1px solid var(--rule);
  transition: color 0.2s, border-color 0.2s;
}
.hero-scroll:hover { color: var(--sage-deep); border-color: var(--sage); }

/* faint groundline motif behind hero */
.hero::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--sage) 30%, var(--sage) 70%, transparent);
  opacity: 0.45;
}

/* ============================================================
   What you can build — grid
   ============================================================ */
.build-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.build-cell {
  background: var(--cream);
  padding: 1.7rem 1.6rem;
  transition: background 0.3s ease;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  width: 100%;
  display: block;
  position: relative;
}
.build-cell:hover { background: var(--sage-pale); }
.build-cell h3 {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.build-cell h3::after {
  content: "+";
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--sage);
  font-size: 1.4rem;
  line-height: 1;
  transition: transform 0.3s ease;
}
.build-cell.open h3::after { transform: rotate(45deg); }
.build-cell p {
  font-size: 0.96rem;
  color: var(--ink-soft);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.32s ease, opacity 0.3s ease, margin-top 0.3s ease;
  margin-top: 0;
}
.build-cell.open p {
  max-height: 160px;
  opacity: 1;
  margin-top: 0.7rem;
}

/* ============================================================
   BPO mirror
   ============================================================ */
.mirror { background: var(--cream-deep); }
.mirror-prose p { margin-bottom: 1.1rem; }
.mirror-prose p:last-child { margin-bottom: 0; }

.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.8rem;
}
@media (max-width: 720px) { .compare { grid-template-columns: 1fr; } }

.compare-col {
  padding: 1.8rem 1.7rem;
  border: 1px solid var(--rule);
  background: var(--cream);
}
.compare-col.own {
  background: var(--sage-deep);
  color: var(--cream);
  border-color: var(--sage-deep);
}
.compare-col h3 { margin-bottom: 1rem; }
.compare-col.own h3 { color: var(--cream); }
.compare-col ul { list-style: none; }
.compare-col li {
  padding: 0.5rem 0;
  border-top: 1px solid var(--rule);
  font-size: 0.97rem;
}
.compare-col.own li { border-top-color: rgba(246, 244, 238, 0.18); }
.compare-col li::before {
  content: "—";
  margin-right: 0.6rem;
  color: var(--gold);
}

.insider-panel {
  margin-top: 3.2rem;
  background: var(--cream);
  color: var(--ink);
  border: 1px solid var(--rule);
  border-radius: 14px;
  padding: clamp(2rem, 4.5vw, 3.2rem) clamp(1.6rem, 4vw, 3rem);
  max-width: 100%;
  position: relative;
  overflow: hidden;
}
.insider-panel::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--sage);
  transition: background 0.4s ease;
}
.insider-panel .eyebrow {
  color: var(--gold);
  margin-bottom: 1.3rem;
}
.insider-panel p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1rem;
  max-width: 46em;
  transition: color 0.4s ease;
}
.insider-panel p:last-child { margin-bottom: 0; }
.insider-lead {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.6vw, 1.7rem) !important;
  color: var(--ink) !important;
  line-height: 1.3 !important;
  margin-bottom: 1.4rem !important;
  transition: color 0.4s ease;
}
.insider-punch {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.15rem, 2.2vw, 1.4rem) !important;
  color: var(--sage-deep) !important;
  line-height: 1.45 !important;
  padding: 0.2rem 0 0.2rem 1.3rem;
  border-left: 2px solid var(--gold);
  margin: 1.5rem 0 !important;
  transition: color 0.4s ease;
}

/* subtle lift on hover, matching the "two ways" cards */
.insider-panel {
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.insider-panel:hover {
  border-color: var(--sage);
  transform: translateY(-3px);
  box-shadow: 0 16px 32px -22px rgba(58, 74, 61, 0.4);
}

/* ============================================================
   Two ways
   ============================================================ */
.ways {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
@media (max-width: 720px) { .ways { grid-template-columns: 1fr; } }
.way {
  border: 1px solid var(--rule);
  border-radius: 10px;
  padding: 2rem 1.9rem;
  background: var(--cream);
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.way:hover {
  border-color: var(--sage);
  transform: translateY(-3px);
  box-shadow: 0 16px 32px -22px rgba(58, 74, 61, 0.4);
}
.way h3 { margin-bottom: 0.7rem; }
.way p { color: var(--ink-soft); font-size: 0.98rem; }
.ways-note {
  margin-top: 1.8rem;
  font-style: italic;
  color: var(--sage-deep);
  font-family: var(--font-display);
  font-size: 1.06rem;
}

/* ============================================================
   How it works — growth line signature
   ============================================================ */
.steps { position: relative; }
.steps-track {
  position: relative;
  padding-left: 2.4rem;
}
.growth-line {
  position: absolute;
  left: 0.55rem;
  top: 0.4rem;
  bottom: 0.4rem;
  width: 2px;
  background: var(--rule);
  overflow: hidden;
}
.growth-line .fill {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 0%;
  background: linear-gradient(180deg, var(--sage), var(--sage-deep));
  transition: height 0.15s linear;
}
.step {
  position: relative;
  padding: 1.5rem 0 1.9rem;
}
.step + .step { border-top: 1px solid var(--rule); }
.step::before {
  content: "";
  position: absolute;
  left: -2.27rem;
  top: 2.05rem;
  width: 0.78rem;
  height: 0.78rem;
  border-radius: 50%;
  background: var(--cream);
  border: 2px solid var(--sage);
  transition: background 0.3s ease;
}
.step.lit::before { background: var(--sage); }
.step-num {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--gold);
  letter-spacing: 0.06em;
  margin-bottom: 0.3rem;
}
.step h3 { margin-bottom: 0.5rem; }
.step p { color: var(--ink-soft); max-width: 40em; }

.steps-note {
  margin-top: 2.4rem;
  padding: 0;
  background: transparent;
  font-size: 1.02rem;
  color: var(--ink-soft);
  max-width: 44em;
}

/* ============================================================
   Proof teaser
   ============================================================ */
.proof {
  background: var(--sage-deep);
  color: var(--cream);
}
.proof .eyebrow { color: var(--gold); }
.proof h2 { color: var(--cream); }
.proof p { color: rgba(246, 244, 238, 0.82); max-width: 40em; }
.proof .link-quiet { color: var(--cream); border-color: var(--gold); }
.proof .link-quiet:hover { color: var(--gold); }

/* ============================================================
   Why us
   ============================================================ */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.4rem, 3vw, 2.6rem);
}
@media (max-width: 820px) { .pillars { grid-template-columns: 1fr; } }
.pillar h3 {
  margin-bottom: 0.6rem;
  padding-top: 0.9rem;
  border-top: 2px solid var(--sage);
  display: inline-block;
  padding-right: 1.5rem;
}
.pillar p { color: var(--ink-soft); font-size: 0.98rem; }
.why-secondary {
  margin-top: 2.6rem;
  font-size: 1.02rem;
  color: var(--ink-soft);
  max-width: 44em;
  font-style: italic;
}

/* ============================================================
   About
   ============================================================ */
.about { background: var(--cream-deep); }
.about-block { margin-bottom: 2.6rem; max-width: 46em; }
.about-block:last-child { margin-bottom: 0; }
.about-block h3 { margin-bottom: 0.7rem; }
.about-block p { color: var(--ink-soft); margin-bottom: 0.9rem; }
.network-list {
  list-style: none;
  margin: 1.2rem 0 1.4rem;
  border-top: 1px solid var(--rule);
}
.network-list li {
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--rule);
  font-size: 0.98rem;
  color: var(--ink-soft);
  display: flex;
  gap: 0.7rem;
  align-items: baseline;
}
.network-list li::before { content: "—"; color: var(--gold); flex: none; }
.network-list strong { color: var(--ink); }
.about-vow {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
  color: var(--sage-deep);
  font-style: italic;
  margin-top: 1.4rem;
}

/* ============================================================
   CTA + form
   ============================================================ */
.cta-final .lede { margin-bottom: 2.6rem; }
.form-card {
  border: 1px solid var(--rule);
  border-radius: 12px;
  background: var(--cream);
  padding: clamp(1.8rem, 4vw, 2.8rem);
  max-width: 680px;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.form-card:hover {
  border-color: var(--sage);
  transform: translateY(-3px);
  box-shadow: 0 16px 32px -22px rgba(58, 74, 61, 0.4);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 0.38rem; }
.field.full { grid-column: 1 / -1; }
.field label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
}
.field input,
.field select,
.field textarea {
  font-family: var(--font-body);
  font-size: 0.98rem;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: 0.75rem 0.9rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.field textarea { resize: vertical; min-height: 96px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(94, 116, 97, 0.16);
}
.form-foot {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  flex-wrap: wrap;
}
.form-foot small { color: var(--ink-soft); font-size: 0.84rem; max-width: 26em; }
.honey { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }

/* ============================================================
   Footer
   ============================================================ */
footer {
  border-top: 1px solid var(--rule);
  padding: 2.6rem 0 3rem;
}
.foot-inner {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.foot-left { font-size: 0.92rem; color: var(--ink-soft); }
.foot-left a { color: var(--sage-deep); text-decoration: none; }
.foot-left a:hover { text-decoration: underline; }
.foot-tag {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--sage-deep);
  font-size: 1.02rem;
}

/* ============================================================
   Case study page
   ============================================================ */
.case-hero { padding-bottom: clamp(2.5rem, 5vw, 4rem); }
.case-body section { padding: clamp(2.6rem, 5.5vw, 4rem) 0; }
.case-body h2 {
  font-size: clamp(1.4rem, 2.6vw, 1.85rem);
  margin-bottom: 1.1rem;
}
.case-body p { color: var(--ink-soft); margin-bottom: 1.05rem; max-width: 44em; }
.case-body p:last-child { margin-bottom: 0; }
.pull {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.4vw, 1.6rem);
  font-style: italic;
  color: var(--sage-deep);
  border-left: 3px solid var(--gold);
  padding-left: 1.4rem;
  margin: 1.8rem 0;
  max-width: 36em;
  line-height: 1.4;
}
.case-cta {
  background: var(--sage-deep);
  color: var(--cream);
  text-align: left;
}
.case-cta h2 { color: var(--cream); }
.case-cta p { color: rgba(246, 244, 238, 0.82); }

/* ============================================================
   Thanks page
   ============================================================ */
.thanks-wrap {
  min-height: 62vh;
  display: flex;
  align-items: center;
}

/* ============================================================
   Reveal-on-scroll
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .way, .nav-links a::after { transition: none; }
  .growth-line .fill { transition: none; }
}

/* ============================================================
   Mobile side menu
   ============================================================ */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0 10px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.2s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 31, 27, 0.42);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 60;
}
.mobile-overlay.open { opacity: 1; visibility: visible; }

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: min(82vw, 340px);
  background: var(--cream);
  border-left: 1px solid var(--rule);
  box-shadow: -16px 0 40px -24px rgba(26, 31, 27, 0.5);
  transform: translateX(100%);
  transition: transform 0.34s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 70;
  display: flex;
  flex-direction: column;
  padding: 5rem 2rem 2rem;
}
.mobile-menu.open { transform: translateX(0); }
.menu-close {
  position: absolute;
  top: 1.1rem;
  right: 1.3rem;
  background: transparent;
  border: none;
  font-size: 2rem;
  line-height: 1;
  color: var(--ink-soft);
  cursor: pointer;
}
.mobile-links { display: flex; flex-direction: column; gap: 0.3rem; }
.mobile-links a:not(.btn) {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--ink);
  text-decoration: none;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--rule);
  transition: color 0.2s ease;
}
.mobile-links a:not(.btn):hover { color: var(--sage-deep); }
.mobile-links .btn {
  margin-top: 1.4rem;
  width: 100%;
}
.mobile-menu-foot {
  margin-top: auto;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--sage-deep);
  font-size: 1rem;
}

@media (max-width: 760px) {
  .nav-toggle { display: flex; }
}

body.menu-open { overflow: hidden; }

/* ============================================================
   Hero word rotator
   ============================================================ */
.word-rotator {
  display: inline-block;
  position: relative;
  color: var(--sage-deep);
  white-space: nowrap;
  min-height: 1em;
}
.word-rotator .word-current { display: inline-block; }
.word-rotator .r-letter {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
}
.word-rotator .r-letter.up {
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.34s cubic-bezier(0.2, 0.9, 0.3, 1), opacity 0.2s ease;
}
.word-rotator .r-letter.down {
  transform: translateY(-110%);
  opacity: 0;
  transition: transform 0.26s cubic-bezier(0.6, 0, 0.8, 0.2), opacity 0.2s ease;
}
.word-rotator .r-underline {
  position: absolute;
  left: 0;
  bottom: -0.06em;
  height: 2px;
  width: 0;
  background: var(--gold);
  transition: width 0.4s cubic-bezier(0.2, 0.9, 0.3, 1);
}

/* ============================================================
   Accordion (What you can build)
   ============================================================ */
.accordion {
  border-top: 1px solid var(--rule);
  max-width: 880px;
}
.acc-item { border-bottom: 1px solid var(--rule); }
.acc-head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.4vw, 1.5rem);
  font-weight: 560;
  color: var(--ink);
  padding: 1.15rem 0.25rem;
  transition: color 0.2s ease;
}
.acc-head:hover { color: var(--sage-deep); }
.acc-icon {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--sage);
  flex: none;
  transition: transform 0.3s ease;
  line-height: 1;
}
.acc-item.open .acc-icon { transform: rotate(45deg); }
.acc-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.acc-panel p {
  color: var(--ink-soft);
  font-size: 1.02rem;
  padding: 0 0.25rem 1.3rem;
  max-width: 44em;
}
.acc-item.open .acc-panel { max-height: 240px; }

/* ============================================================
   Why link band
   ============================================================ */
.why-band { padding: clamp(2.4rem, 5vw, 3.4rem) 0; }
.why-band p {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  color: var(--ink);
  max-width: 30em;
}
.why-band .link-quiet { white-space: nowrap; }

/* ============================================================
   Legal page
   ============================================================ */
.legal h2 {
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
  margin: 2rem 0 0.8rem;
}
.legal p { margin-bottom: 1rem; max-width: 46em; }


/* ============================================================
   Hero rotator stability on mobile
   Reserve fixed space so changing word length never shifts layout
   ============================================================ */
@media (max-width: 760px) {
  .word-rotator {
    display: block;          /* own line, predictable */
    white-space: nowrap;
    min-height: 1.15em;      /* reserve vertical space */
    line-height: 1.15;
  }
  .word-rotator .word-current { display: inline-block; }
  /* the manual <br> after the rotator becomes redundant on mobile since it's block;
     collapse it so we don't get a double line break */
  .hero h1 br { display: none; }
}
