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

:root {
  /* Ink scale, tinted toward warm hue */
  --ink:        oklch(18% 0.014 60);
  --ink-2:      oklch(32% 0.013 60);
  --ink-3:      oklch(48% 0.011 60);
  --ink-4:      oklch(62% 0.009 60);

  /* Cream paper, warmer than v1 */
  --paper:      oklch(95.5% 0.022 82);
  --paper-2:    oklch(93.5% 0.030 82);
  --paper-3:    oklch(97% 0.014 82);
  --paper-deep: oklch(89% 0.038 80);

  /* Hairlines */
  --hair:       oklch(78% 0.024 70);
  --hair-soft:  oklch(86% 0.020 70);

  /* Terracotta, committed accent */
  --tc:         oklch(54% 0.170 44);
  --tc-bright:  oklch(62% 0.180 47);
  --tc-deep:    oklch(42% 0.150 42);
  --tc-darker:  oklch(32% 0.110 40);
  --tc-wash:    oklch(91% 0.048 60);

  /* Moss accent, footer + nav chrome only */
  --moss:       oklch(36% 0.045 145);
  --moss-deep:  oklch(26% 0.040 145);

  /* Semantics */
  --ok:         oklch(52% 0.150 152);
  --warn:       oklch(60% 0.160 60);

  /* Type scale, distinct ratios for hierarchy >= 1.25 */
  --t-mega:     clamp(56px, 11vw, 168px);
  --t-display:  clamp(44px, 7.5vw, 104px);
  --t-h1:       clamp(38px, 5.6vw, 72px);
  --t-h2:       clamp(28px, 3.8vw, 48px);
  --t-h3:       clamp(20px, 2vw, 26px);
  --t-lead:     clamp(17px, 1.45vw, 21px);
  --t-body:     17px;
  --t-meta:     13px;
  --t-micro:    11px;

  --tr-tight:   -0.018em;
  --tr-display: -0.038em;
  --tr-mega:    -0.045em;
  --tr-label:   0.14em;
  --tr-eyebrow: 0.22em;

  --r-2:        4px;
  --r-3:        8px;
  --r-4:        14px;
  --r-pill:     999px;

  --shadow-soft: 0 1px 0 oklch(80% 0.030 75 / 0.5), 0 18px 40px -28px oklch(30% 0.060 50 / 0.18);
  --shadow-card: 0 2px 0 oklch(78% 0.028 75 / 0.4), 0 30px 60px -36px oklch(28% 0.080 50 / 0.22);

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-strong: cubic-bezier(0.22, 1, 0.36, 1);
}

html { scroll-behavior: smooth; }

body {
  background: var(--paper);
  background-image:
    radial-gradient(oklch(75% 0.040 70 / 0.10) 0.6px, transparent 0.6px),
    radial-gradient(oklch(80% 0.035 70 / 0.06) 0.4px, transparent 0.4px);
  background-size: 4px 4px, 7px 7px;
  background-position: 0 0, 2px 2px;
  color: var(--ink);
  font-family: 'Instrument Sans', system-ui, -apple-system, sans-serif;
  font-size: var(--t-body);
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4, .display, .nums {
  font-family: 'Bricolage Grotesque', system-ui, sans-serif;
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: var(--tr-display);
  color: var(--ink);
}

.serif-it {
  font-family: 'Instrument Serif', 'Times New Roman', serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.005em;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

::selection { background: var(--tc); color: var(--paper); }

:focus-visible {
  outline: 2px solid var(--tc-deep);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Reduce motion respect */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ════════════════════════════════════════════════════
   MASTHEAD NAV
   ════════════════════════════════════════════════════ */

.masthead {
  background: var(--moss-deep);
  color: var(--paper-3);
  border-bottom: 1px solid var(--moss);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(120%);
}

.masthead-inner {
  max-width: 1480px;
  margin: 0 auto;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.masthead-brand {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-family: 'Bricolage Grotesque', sans-serif;
}
.masthead-mark {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--tc-bright);
}
.masthead-mark span { color: var(--paper-3); font-weight: 400; }
.masthead-loc {
  font-size: var(--t-micro);
  text-transform: uppercase;
  letter-spacing: var(--tr-eyebrow);
  color: oklch(80% 0.020 130);
  opacity: 0.7;
}

.masthead-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
.masthead-nav a {
  font-size: 13.5px;
  font-weight: 500;
  color: oklch(85% 0.020 130);
  transition: color 0.2s var(--ease-out);
  position: relative;
}
.masthead-nav a:hover { color: var(--paper); }
.masthead-nav a.active { color: var(--tc-bright); }
.masthead-nav a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -22px;
  height: 2px;
  background: var(--tc-bright);
}

.masthead-cta {
  padding: 9px 16px;
  background: var(--tc);
  color: var(--paper);
  border-radius: var(--r-pill);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: -0.005em;
  transition: background 0.2s var(--ease-out), transform 0.2s var(--ease-out);
}
.masthead-cta:hover { background: var(--tc-bright); transform: translateY(-1px); }
.masthead-cta:active { transform: translateY(0); }

@media (max-width: 880px) {
  .masthead-nav a:not(.masthead-cta) { display: none; }
  .masthead-inner { padding: 12px 20px; }
}

/* ════════════════════════════════════════════════════
   ISSUE STRIP (under nav, magazine-style)
   ════════════════════════════════════════════════════ */

.issue-strip {
  background: var(--paper-deep);
  border-bottom: 1px solid var(--hair);
  font-family: 'Instrument Sans', sans-serif;
  font-size: var(--t-micro);
  text-transform: uppercase;
  letter-spacing: var(--tr-eyebrow);
  color: var(--ink-2);
}
.issue-strip-inner {
  max-width: 1480px;
  margin: 0 auto;
  padding: 9px 28px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
}
.issue-strip-inner > span { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.issue-strip em {
  font-style: normal;
  color: var(--tc-deep);
  font-weight: 600;
}
@media (max-width: 720px) {
  .issue-strip-inner > span:nth-child(2) { display: none; }
  .issue-strip-inner { padding: 8px 20px; }
}

/* ════════════════════════════════════════════════════
   HERO, asymmetric editorial
   ════════════════════════════════════════════════════ */

.hero {
  position: relative;
  padding: 80px 28px 110px;
  max-width: 1480px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 64px;
  align-items: end;
}

.hero-marker {
  position: absolute;
  top: 70px;
  left: 28px;
  font-family: 'Instrument Sans', sans-serif;
  font-size: var(--t-micro);
  letter-spacing: var(--tr-eyebrow);
  text-transform: uppercase;
  color: var(--ink-4);
}
.hero-marker em { font-style: normal; color: var(--tc-deep); font-weight: 600; }

.hero-text {
  padding-top: 36px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px 7px 10px;
  border: 1px solid var(--hair);
  border-radius: var(--r-pill);
  font-size: var(--t-micro);
  font-weight: 500;
  letter-spacing: var(--tr-label);
  text-transform: uppercase;
  color: var(--ink-2);
  background: var(--paper-3);
  margin-bottom: 36px;
}
.hero-eyebrow .pip {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--tc);
  box-shadow: 0 0 0 4px oklch(54% 0.170 44 / 0.18);
  animation: pip-pulse 2.2s var(--ease-out) infinite;
}
@keyframes pip-pulse {
  0%, 100% { box-shadow: 0 0 0 4px oklch(54% 0.170 44 / 0.18); }
  50% { box-shadow: 0 0 0 7px oklch(54% 0.170 44 / 0.05); }
}

.hero h1 {
  font-size: var(--t-display);
  letter-spacing: var(--tr-mega);
  font-weight: 400;
}
.hero h1 .row { display: block; }
.hero h1 .row.ans {
  color: var(--tc-deep);
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.02em;
}
.hero h1 em {
  font-style: italic;
  font-family: 'Instrument Serif', serif;
  font-weight: 400;
  letter-spacing: -0.018em;
  color: var(--ink-2);
}

.hero-lead {
  margin-top: 30px;
  font-size: var(--t-lead);
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 540px;
}
.hero-lead strong { color: var(--ink); font-weight: 600; }

.hero-cta-row {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--r-3);
  font-weight: 600;
  font-size: 15.5px;
  letter-spacing: -0.005em;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s var(--ease-out), background 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}
.btn-primary .ar {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 17px;
  transition: transform 0.3s var(--ease-out);
}
.btn-primary:hover { background: var(--tc-deep); transform: translateY(-2px); }
.btn-primary:hover .ar { transform: translateX(4px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 18px;
  color: var(--ink);
  font-weight: 500;
  font-size: 15.5px;
  border-bottom: 1px solid var(--hair);
  border-radius: 0;
  transition: border-color 0.25s var(--ease-out), color 0.25s var(--ease-out);
}
.btn-ghost:hover { color: var(--tc-deep); border-color: var(--tc-deep); }

.hero-trust {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  font-size: var(--t-meta);
  color: var(--ink-3);
  font-family: 'Instrument Sans', sans-serif;
}
.hero-trust span { display: inline-flex; align-items: center; gap: 7px; }
.hero-trust svg { color: var(--ok); flex-shrink: 0; }

/* Hero visual, phone + log */
.hero-visual {
  position: relative;
  height: 580px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.phone {
  position: relative;
  width: 290px;
  height: 510px;
  background: oklch(15% 0.012 60);
  border-radius: 38px;
  padding: 12px;
  box-shadow:
    0 1px 0 oklch(50% 0.015 60) inset,
    0 0 0 1px oklch(8% 0.010 60),
    0 50px 80px -40px oklch(25% 0.080 50 / 0.4);
  transform: rotate(-3.5deg);
  z-index: 2;
}
.phone::before {
  content: "";
  position: absolute;
  top: 18px; left: 50%;
  transform: translateX(-50%);
  width: 78px; height: 22px;
  background: oklch(8% 0.010 60);
  border-radius: var(--r-pill);
  z-index: 4;
}

.phone-screen {
  width: 100%; height: 100%;
  background: linear-gradient(165deg, oklch(95% 0.025 75), oklch(90% 0.040 70));
  border-radius: 28px;
  padding: 50px 22px 22px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.phone-status {
  position: absolute;
  top: 18px; left: 24px; right: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  font-feature-settings: "tnum";
}
.phone-status .signal-icons { display: flex; gap: 4px; align-items: center; }

.phone-label {
  font-size: 11px;
  letter-spacing: var(--tr-eyebrow);
  text-transform: uppercase;
  color: var(--ink-3);
  margin-top: 6px;
}
.phone-caller {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 26px;
  font-weight: 600;
  margin-top: 8px;
  letter-spacing: -0.025em;
}
.phone-num {
  font-size: 13px;
  color: var(--ink-3);
  margin-top: 4px;
  font-feature-settings: "tnum";
}
.phone-avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--tc);
  color: var(--paper);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 30px;
  font-weight: 600;
  display: grid;
  place-items: center;
  margin: 22px auto;
}
.phone-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: auto;
  margin-bottom: 14px;
}
.phone-act {
  padding: 11px 0;
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  letter-spacing: -0.005em;
}
.phone-act.deny {
  background: oklch(55% 0.180 25);
  color: var(--paper);
}
.phone-act.accept {
  background: var(--ok);
  color: var(--paper);
  opacity: 0.45;
}

.phone-standia-bar {
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--r-3);
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 24px -8px oklch(25% 0.080 50 / 0.5);
}
.v-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--tc-bright);
  flex-shrink: 0;
  animation: pip-pulse 1.6s var(--ease-out) infinite;
}
.v-text strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.005em;
}
.v-text small {
  font-size: 11px;
  color: oklch(78% 0.020 70);
  display: block;
}

/* SMS card, overlapping */
.sms-card {
  position: absolute;
  bottom: 28px;
  right: -10px;
  width: 280px;
  background: var(--paper-3);
  border: 1px solid var(--hair);
  border-radius: var(--r-4);
  padding: 16px;
  box-shadow: var(--shadow-card);
  transform: rotate(4deg);
  z-index: 3;
}
.sms-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 10px;
  border-bottom: 1px dashed var(--hair-soft);
  margin-bottom: 10px;
}
.sms-icon {
  width: 28px; height: 28px;
  border-radius: 7px;
  background: var(--moss);
  color: var(--paper);
  display: grid;
  place-items: center;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 12px;
  font-weight: 700;
}
.sms-from {
  font-weight: 600;
  font-size: 13px;
  flex: 1;
}
.sms-time {
  font-size: 11px;
  color: var(--ink-3);
  font-feature-settings: "tnum";
}
.sms-body {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--ink);
}
.sms-body em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  color: var(--tc-deep);
}

/* Annotation, magazine-style margin note */
.hero-annotation {
  position: absolute;
  top: 40px;
  right: -8px;
  width: 200px;
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 14.5px;
  line-height: 1.4;
  color: var(--ink-2);
  z-index: 1;
  transform: rotate(2deg);
}
.hero-annotation::before {
  content: "";
  display: block;
  width: 36px;
  height: 1px;
  background: var(--tc-deep);
  margin-bottom: 8px;
}

@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; gap: 40px; padding: 70px 24px 80px; }
  .hero-visual { height: 540px; transform: scale(0.92); transform-origin: top center; }
  .hero-annotation { display: none; }
}

@media (max-width: 600px) {
  .hero { padding: 60px 20px 60px; }
  .hero-marker { left: 20px; top: 50px; }
  .hero-eyebrow { font-size: 10.5px; padding: 6px 12px 6px 9px; }
  .hero h1 { line-height: 1.04; }
  .hero-visual { height: 480px; transform: scale(0.86); }
  .phone { width: 270px; height: 480px; }
  .sms-card { width: 240px; right: -5px; }
}

/* ════════════════════════════════════════════════════
   LEDGER, the problem (escape hero-metric template)
   ════════════════════════════════════════════════════ */

.ledger {
  background: var(--paper-3);
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
  padding: 100px 28px 110px;
}
.ledger-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  align-items: start;
}

.ledger-eyebrow {
  font-size: var(--t-micro);
  letter-spacing: var(--tr-eyebrow);
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 30px;
}
.ledger-eyebrow em {
  font-style: normal;
  color: var(--tc-deep);
  font-weight: 600;
}

.ledger-title {
  font-size: var(--t-h1);
  letter-spacing: var(--tr-mega);
  line-height: 1.02;
}
.ledger-title em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--tc-deep);
}

.ledger-prose {
  font-size: 19px;
  line-height: 1.7;
  color: var(--ink-2);
}
.ledger-prose p { margin-bottom: 22px; }
.ledger-prose p:first-of-type::first-letter {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 4.6em;
  float: left;
  line-height: 0.86;
  padding: 4px 12px 0 0;
  color: var(--tc-deep);
}
.ledger-prose strong {
  color: var(--ink);
  font-weight: 600;
  background: linear-gradient(transparent 60%, oklch(91% 0.045 60) 60%);
  padding: 0 2px;
}
.ledger-prose .num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 600;
  font-size: 1.05em;
  letter-spacing: -0.01em;
  font-feature-settings: "tnum";
}

.ledger-foot {
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid var(--hair-soft);
  font-size: var(--t-meta);
  color: var(--ink-3);
  font-style: italic;
  font-family: 'Instrument Serif', serif;
  max-width: 540px;
}

@media (max-width: 1024px) {
  .ledger { padding: 80px 24px 90px; }
  .ledger-inner { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 600px) {
  .ledger { padding: 70px 20px 80px; }
  .ledger-prose { font-size: 17.5px; line-height: 1.65; }
}

/* ════════════════════════════════════════════════════
   PROTOCOL, how it works
   ════════════════════════════════════════════════════ */

.protocol {
  padding: 130px 28px 120px;
  max-width: 1280px;
  margin: 0 auto;
}

.section-head {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  margin-bottom: 80px;
  align-items: end;
}
.section-eyebrow {
  display: inline-block;
  font-size: var(--t-micro);
  letter-spacing: var(--tr-eyebrow);
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 16px;
  position: relative;
  padding-left: 32px;
}
.section-eyebrow::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 22px;
  height: 1px;
  background: var(--tc-deep);
}
.section-title {
  font-size: var(--t-h2);
  letter-spacing: var(--tr-display);
  line-height: 1.04;
}
.section-title em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--tc-deep);
}
.section-lead {
  font-size: var(--t-lead);
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 540px;
}

.protocol-list {
  display: flex;
  flex-direction: column;
}

.protocol-step {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 50px;
  padding: 40px 0;
  border-bottom: 1px solid var(--hair-soft);
  align-items: start;
  position: relative;
}
.protocol-step:last-child { border-bottom: 0; }

.protocol-step .step-num {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 64px;
  font-weight: 400;
  color: var(--tc-deep);
  line-height: 0.9;
  letter-spacing: -0.04em;
}

.protocol-step h4 {
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 12px;
  max-width: 720px;
}
.protocol-step h4 em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  color: var(--ink);
}
.protocol-step p {
  font-size: 17px;
  line-height: 1.62;
  color: var(--ink-2);
  max-width: 680px;
}
.protocol-step .step-detail {
  display: inline-flex;
  margin-top: 14px;
  padding: 6px 12px;
  background: var(--tc-wash);
  color: var(--tc-darker);
  border-radius: var(--r-2);
  font-size: 13.5px;
  font-style: italic;
  font-family: 'Instrument Sans', sans-serif;
}

@media (max-width: 880px) {
  .section-head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 50px; align-items: start; }
  .protocol-step { grid-template-columns: 60px 1fr; gap: 24px; padding: 32px 0; }
  .protocol-step .step-num { font-size: 48px; }
  .protocol-step h4 { font-size: 22px; }
  .protocol { padding: 90px 20px 90px; }
}

/* ════════════════════════════════════════════════════
   CAST, personas as editorial pull-quotes
   ════════════════════════════════════════════════════ */

.cast {
  background: var(--paper-2);
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
  padding: 130px 28px 130px;
}
.cast-inner { max-width: 1280px; margin: 0 auto; }

.cast-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.cast-row {
  display: grid;
  grid-template-columns: 60px 1.2fr 2fr 0.6fr;
  gap: 40px;
  padding: 38px 0;
  border-bottom: 1px solid var(--hair-soft);
  align-items: baseline;
  position: relative;
  transition: padding-left 0.4s var(--ease-out);
}
.cast-row:last-child { border-bottom: 0; }
.cast-row:hover {
  padding-left: 14px;
}
.cast-row:hover::before {
  width: 14px;
}
.cast-row::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  height: 1px;
  width: 0;
  background: var(--tc);
  transition: width 0.4s var(--ease-out);
}

.cast-num {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 28px;
  color: var(--ink-3);
  font-weight: 400;
}
.cast-trade {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.cast-quote {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(19px, 2vw, 26px);
  line-height: 1.4;
  color: var(--ink-2);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.cast-quote::before { content: "« "; color: var(--tc-deep); font-style: normal; }
.cast-quote::after { content: " »"; color: var(--tc-deep); font-style: normal; }
.cast-quote strong {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-style: normal;
  font-weight: 600;
  color: var(--tc-deep);
  background: linear-gradient(transparent 65%, oklch(91% 0.045 60) 65%);
  padding: 0 2px;
}
.cast-when {
  font-size: var(--t-meta);
  color: var(--ink-3);
  text-align: right;
  font-feature-settings: "tnum";
  letter-spacing: 0.01em;
}

@media (max-width: 1024px) {
  .cast-row { grid-template-columns: 40px 1fr; gap: 20px; padding: 30px 0; }
  .cast-quote { grid-column: 1 / -1; padding-left: 60px; font-size: 18px; }
  .cast-when { grid-column: 1 / -1; padding-left: 60px; text-align: left; }
}
@media (max-width: 600px) {
  .cast { padding: 80px 20px 90px; }
  .cast-quote { padding-left: 0; }
  .cast-when { padding-left: 0; }
}

/* ════════════════════════════════════════════════════
   TARIFS, pricing
   ════════════════════════════════════════════════════ */

.tarifs {
  background: var(--paper-2);
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
  padding: 130px 28px 130px;
}
.tarifs-inner { max-width: 1280px; margin: 0 auto; }

.price-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 30px;
  align-items: stretch;
}

.price-card {
  position: relative;
  padding: 44px 38px 38px;
  border-radius: var(--r-4);
  display: flex;
  flex-direction: column;
}
.price-card.featured {
  background: var(--tc-deep);
  color: var(--paper);
  box-shadow: var(--shadow-card);
}
.price-card.featured h3,
.price-card.featured .price-name { color: var(--paper); }
.price-card.standard {
  background: var(--paper-3);
  border: 1px solid var(--hair);
  color: var(--ink);
}

.price-badge {
  position: absolute;
  top: -12px;
  left: 38px;
  padding: 6px 12px;
  font-size: var(--t-micro);
  letter-spacing: var(--tr-label);
  text-transform: uppercase;
  font-weight: 600;
  border-radius: var(--r-pill);
}
.price-card.featured .price-badge {
  background: oklch(96% 0.030 60);
  color: var(--tc-deep);
}
.price-card.standard .price-badge {
  background: var(--paper-deep);
  color: var(--ink-2);
  border: 1px solid var(--hair);
}

.price-tier {
  font-family: 'Instrument Sans', sans-serif;
  font-size: var(--t-meta);
  letter-spacing: var(--tr-label);
  text-transform: uppercase;
  opacity: 0.75;
  margin-top: 6px;
}
.price-name {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 30px;
  font-weight: 500;
  margin-top: 6px;
  letter-spacing: -0.025em;
}
.price-blurb {
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.55;
  opacity: 0.85;
  font-family: 'Instrument Serif', serif;
  font-style: italic;
}

.price-num {
  margin-top: 32px;
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.price-num .big {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 80px;
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.9;
  font-feature-settings: "tnum";
}
.price-num .unit {
  font-size: 14px;
  opacity: 0.75;
  letter-spacing: -0.005em;
}

.price-setup {
  margin-top: 12px;
  font-size: 14px;
  opacity: 0.9;
}
.price-setup strong { font-weight: 600; }

.price-list {
  list-style: none;
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.price-list li {
  font-size: 15px;
  line-height: 1.5;
  padding-left: 22px;
  position: relative;
}
.price-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 12px;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
}

.price-cta {
  margin-top: 32px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 22px;
  border-radius: var(--r-3);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.005em;
  width: fit-content;
  transition: transform 0.25s var(--ease-out), background 0.25s var(--ease-out);
}
.price-card.featured .price-cta { background: var(--paper); color: var(--tc-deep); }
.price-card.featured .price-cta:hover { background: var(--paper-3); transform: translateY(-2px); }
.price-card.standard .price-cta { background: var(--ink); color: var(--paper); }
.price-card.standard .price-cta:hover { background: var(--tc-deep); transform: translateY(-2px); }
.price-cta .ar {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  transition: transform 0.3s var(--ease-out);
}
.price-cta:hover .ar { transform: translateX(4px); }

.price-foot {
  margin-top: 40px;
  font-size: var(--t-meta);
  color: var(--ink-3);
  text-align: center;
  font-family: 'Instrument Serif', serif;
  font-style: italic;
}

@media (max-width: 800px) {
  .tarifs { padding: 80px 20px 90px; }
  .price-grid { grid-template-columns: 1fr; gap: 22px; }
  .price-card { padding: 36px 28px 30px; }
  .price-num .big { font-size: 64px; }
}

/* ════════════════════════════════════════════════════
   COUVERTURE, zones
   ════════════════════════════════════════════════════ */

.couverture {
  padding: 110px 28px 110px;
  max-width: 1280px;
  margin: 0 auto;
}

.couverture-eyebrow {
  font-size: var(--t-micro);
  letter-spacing: var(--tr-eyebrow);
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 18px;
  padding-left: 32px;
  position: relative;
}
.couverture-eyebrow::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 22px;
  height: 1px;
  background: var(--tc-deep);
}

.couverture-title {
  font-size: var(--t-h2);
  letter-spacing: var(--tr-display);
  margin-bottom: 32px;
  max-width: 14ch;
}
.couverture-title em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  color: var(--tc-deep);
  font-weight: 400;
}

.couverture-prose {
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink-2);
  max-width: 780px;
}
.couverture-prose a {
  color: var(--tc-deep);
  border-bottom: 1px solid var(--tc-wash);
  padding-bottom: 1px;
  transition: border-color 0.25s var(--ease-out);
}
.couverture-prose a:hover { border-color: var(--tc-deep); }

.couverture-marquee {
  margin-top: 50px;
  overflow: hidden;
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
  padding: 18px 0;
}
.couverture-marquee-track {
  display: flex;
  gap: 48px;
  animation: marquee 40s linear infinite;
  width: max-content;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--ink-3);
}
.couverture-marquee-track span { white-space: nowrap; }
.couverture-marquee-track .dot {
  color: var(--tc);
  font-family: 'Instrument Serif', serif;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 600px) {
  .couverture { padding: 80px 20px 80px; }
  .couverture-prose { font-size: 16.5px; }
  .couverture-marquee-track { font-size: 18px; gap: 32px; }
}

/* ════════════════════════════════════════════════════
   QUESTIONS, FAQ
   ════════════════════════════════════════════════════ */

.questions {
  background: var(--paper-3);
  border-top: 1px solid var(--hair);
  padding: 130px 28px 130px;
}
.questions-inner { max-width: 1280px; margin: 0 auto; }

.faq-list {
  border-top: 1px solid var(--hair);
}

.faq-item {
  border-bottom: 1px solid var(--hair-soft);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0;
  text-align: left;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 21px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.25;
  transition: color 0.25s var(--ease-out);
}
.faq-q:hover { color: var(--tc-deep); }
.faq-q .plus {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border: 1px solid var(--hair);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: 'Instrument Serif', serif;
  font-size: 22px;
  color: var(--tc-deep);
  transition: transform 0.4s var(--ease-out), background 0.25s var(--ease-out);
}
.faq-item.open .faq-q .plus {
  transform: rotate(135deg);
  background: var(--tc-deep);
  color: var(--paper);
  border-color: var(--tc-deep);
}

.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.45s var(--ease-out-strong);
}
.faq-a-inner {
  overflow: hidden;
}
.faq-a-inner p {
  padding: 0 0 28px 0;
  max-width: 70ch;
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink-2);
}
.faq-item.open .faq-a {
  grid-template-rows: 1fr;
}

@media (max-width: 600px) {
  .questions { padding: 80px 20px 80px; }
  .faq-q { font-size: 18px; gap: 14px; padding: 22px 0; }
  .faq-q .plus { width: 32px; height: 32px; font-size: 19px; }
}

/* ════════════════════════════════════════════════════
   SIGNAL, final CTA
   ════════════════════════════════════════════════════ */

.signal {
  background: var(--tc-deep);
  color: var(--paper);
  padding: 130px 28px 130px;
  position: relative;
  overflow: hidden;
}
.signal::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 30%, oklch(60% 0.180 50 / 0.4), transparent 60%),
    radial-gradient(ellipse 70% 50% at 80% 70%, oklch(35% 0.140 35 / 0.5), transparent 60%);
  pointer-events: none;
}
.signal-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: end;
  position: relative;
  z-index: 1;
}

.signal-eyebrow {
  font-size: var(--t-micro);
  letter-spacing: var(--tr-eyebrow);
  text-transform: uppercase;
  color: oklch(94% 0.040 60);
  opacity: 0.85;
  margin-bottom: 26px;
  padding-left: 32px;
  position: relative;
}
.signal-eyebrow::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 22px;
  height: 1px;
  background: oklch(94% 0.040 60);
  opacity: 0.6;
}

.signal h2 {
  font-size: var(--t-display);
  letter-spacing: var(--tr-mega);
  color: var(--paper);
  line-height: 0.98;
  margin-bottom: 28px;
}
.signal h2 em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  color: oklch(92% 0.070 70);
}
.signal-lead {
  font-size: 19px;
  line-height: 1.55;
  color: oklch(94% 0.030 70);
  opacity: 0.92;
  max-width: 520px;
  margin-bottom: 36px;
}

.signal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.signal .btn-primary {
  background: var(--paper);
  color: var(--tc-deep);
  box-shadow: 0 18px 40px -20px oklch(20% 0.080 40 / 0.5);
}
.signal .btn-primary:hover { background: var(--paper-3); }
.signal .btn-ghost {
  color: oklch(94% 0.030 70);
  border-bottom-color: oklch(70% 0.060 60 / 0.5);
}
.signal .btn-ghost:hover { border-bottom-color: var(--paper); color: var(--paper); }

.signal-aside {
  background: oklch(36% 0.130 38);
  border: 1px solid oklch(50% 0.150 42);
  border-radius: var(--r-4);
  padding: 32px;
}
.signal-aside h4 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: var(--tr-label);
  text-transform: uppercase;
  color: oklch(92% 0.070 70);
  margin-bottom: 18px;
}
.signal-aside ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.signal-aside li {
  font-size: 14.5px;
  line-height: 1.5;
  color: oklch(94% 0.030 70);
  padding-left: 22px;
  position: relative;
}
.signal-aside li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 12px; height: 1px;
  background: oklch(80% 0.080 60);
  opacity: 0.7;
}

@media (max-width: 880px) {
  .signal { padding: 80px 20px 80px; }
  .signal-inner { grid-template-columns: 1fr; gap: 40px; }
}

/* ════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════ */

footer {
  background: var(--moss-deep);
  color: oklch(82% 0.020 130);
  padding: 80px 28px 36px;
  position: relative;
}

.foot-grid {
  max-width: 1480px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 44px;
  border-bottom: 1px solid oklch(34% 0.040 145);
}

.foot-brand .masthead-mark { font-size: 28px; }
.foot-brand p {
  margin-top: 16px;
  font-size: 14.5px;
  line-height: 1.6;
  color: oklch(75% 0.020 130);
  max-width: 380px;
}

.foot-col h6 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: var(--tr-label);
  text-transform: uppercase;
  color: var(--tc-bright);
  margin-bottom: 18px;
}
.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.foot-col a {
  font-size: 14.5px;
  color: oklch(82% 0.020 130);
  transition: color 0.25s var(--ease-out);
}
.foot-col a:hover { color: var(--paper); }

.foot-meta {
  max-width: 1480px;
  margin: 0 auto;
  margin-top: 28px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  font-size: var(--t-meta);
  color: oklch(70% 0.020 130);
  font-family: 'Instrument Serif', serif;
  font-style: italic;
}
.foot-meta a { color: oklch(78% 0.020 130); }
.foot-meta a:hover { color: var(--paper); }

@media (max-width: 880px) {
  footer { padding: 60px 20px 28px; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 40px 30px; }
}
@media (max-width: 480px) {
  .foot-grid { grid-template-columns: 1fr; gap: 36px; }
}

/* ════════════════════════════════════════════════════
   REVEAL ANIMATIONS on scroll
   ════════════════════════════════════════════════════ */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

