/* ═════════════════════════════════════════════════════════════
   Tokens — blue & gray dominant, pink only for tiny accents
   ═════════════════════════════════════════════════════════════ */
:root {
  --paper:        #E8EDF2;
  --paper-2:      #DEE5ED;
  --paper-3:      #FCFCFD;
  --ink:          #1B2A3F;   /* deep navy, primary */
  --ink-2:        #475A6E;   /* slate */
  --ink-3:        #8B95A0;   /* cool gray */
  --rule:         #C8D1DB;
  --rule-2:       #97A4B0;
  --slate-deep:   #2D4665;
  --blue:         #355C86;   /* emphasis + links (was pink) */
  --blue-soft:    rgba(53, 92, 134, 0.10);
  --pink:         #C36680;   /* TINY accents only: dots, numbers, pips */
  --pink-soft:    rgba(195, 102, 128, 0.14);
  --hl:           #D3DCE5;

  --font-display: "Fraunces", Georgia, serif;
  --font-body:    "Outfit", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --font-mono:    "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --maxw: 1180px;
  --gutter: clamp(20px, 4vw, 48px);
  --ease: cubic-bezier(.2,.7,.2,1);
}

[data-theme="dark"] {
  --paper:        #0D1623;
  --paper-2:      #18243A;
  --paper-3:      #1F2E47;
  --ink:          #E8EDF2;
  --ink-2:        #97A4B0;
  --ink-3:        #5A6878;
  --rule:         #2A3850;
  --rule-2:       #3D4D67;
  --slate-deep:   #5A7AA0;
  --blue:         #6E9BCB;
  --blue-soft:    rgba(110, 155, 203, 0.12);
  --pink:         #D77B95;
  --pink-soft:    rgba(215, 123, 149, 0.14);
  --hl:           #1F2E47;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::selection { background: var(--blue); color: var(--paper-3); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.section {
  padding: clamp(72px, 11vw, 130px) 0;
  border-top: 1px solid var(--rule);
  position: relative;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 0 3px var(--pink-soft);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--ink);
}
h2 {
  font-size: clamp(30px, 4.6vw, 50px);
  line-height: 1.04;
  font-variation-settings: "opsz" 60;
  max-width: 20ch;
}
h2 em { font-style: italic; color: var(--blue); }
h3 { font-size: clamp(20px, 2.2vw, 25px); line-height: 1.2; }

p { margin: 0 0 1em; }
.lead {
  font-size: clamp(17px, 1.4vw, 20px);
  color: var(--ink-2);
  max-width: 58ch;
  line-height: 1.55;
}

/* blur shapes */
.blur-shape {
  position: absolute; border-radius: 50%;
  filter: blur(90px); pointer-events: none; z-index: 0;
}
.blur-shape.slate { background: var(--slate-deep); opacity: 0.20; }
.blur-shape.blue  { background: var(--blue); opacity: 0.14; }
.blur-shape.pink  { background: var(--pink); opacity: 0.12; }

/* ── Nav ── */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  background: color-mix(in oklab, var(--paper) 80%, transparent);
  border-bottom: 1px solid transparent;
  transition: border-color .25s var(--ease);
}
.nav.is-stuck { border-bottom-color: var(--rule); }
.nav-inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: 14px var(--gutter);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  font-style: italic;
  color: var(--ink);
  display: flex; align-items: center;
}
.brand .dot { color: var(--pink); }
.nav-links {
  display: none; gap: 28px;
  font-family: var(--font-body);
  font-size: 14px; font-weight: 400;
  color: var(--ink-2);
}
.nav-links a { position: relative; padding: 4px 0; transition: color .2s var(--ease); }
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1px; background: var(--blue);
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { transform: scaleX(1); }
@media (min-width: 820px) { .nav-links { display: flex; } }
.nav-cta {
  font-family: var(--font-body); font-size: 14px; font-weight: 500;
  background: var(--ink); color: var(--paper);
  padding: 9px 16px; border-radius: 4px;
  transition: transform .2s var(--ease);
}
.nav-cta:hover { transform: translateY(-1px); }
.nav-right { display: flex; align-items: center; gap: 12px; }
.theme-toggle {
  width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid var(--rule); background: transparent;
  color: var(--ink-2); cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  transition: all .2s var(--ease);
}
.theme-toggle:hover { border-color: var(--rule-2); color: var(--ink); background: var(--hl); }
.theme-toggle svg { width: 14px; height: 14px; }
[data-theme="light"] .icon-moon { display: block; }
[data-theme="light"] .icon-sun  { display: none; }
[data-theme="dark"]  .icon-moon { display: none; }
[data-theme="dark"]  .icon-sun  { display: block; }

/* ── Hero ── */
.hero { padding: clamp(64px, 11vw, 120px) 0 clamp(56px, 9vw, 100px); position: relative; }
.hero .blur-shape.slate-1 { width: 460px; height: 460px; top: -120px; right: -120px; }
.hero .blur-shape.blue-1 { width: 360px; height: 360px; bottom: -100px; left: -140px; }
.hero-inner { position: relative; z-index: 1; }

.badge {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--ink-2);
  background: var(--paper-2);
  border: 1px solid var(--rule);
  padding: 7px 14px; border-radius: 100px;
  margin-bottom: 28px;
}
.badge .pip {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 0 0 var(--pink-soft);
  animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(195,102,128,.4); }
  70% { box-shadow: 0 0 0 9px rgba(195,102,128,0); }
  100% { box-shadow: 0 0 0 0 rgba(195,102,128,0); }
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(42px, 7.4vw, 88px);
  line-height: 0.99;
  letter-spacing: -0.025em;
  color: var(--ink);
  font-variation-settings: "opsz" 144;
  margin: 0 0 clamp(22px, 3.5vw, 32px);
  max-width: 16ch;
}
.hero-title em { font-style: italic; color: var(--blue); font-weight: 400; }

.hero-grid {
  display: grid; grid-template-columns: 1fr; gap: 36px; align-items: start;
}
@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1.5fr 1fr; gap: 64px; align-items: center; }
}
.hero-sub { font-size: clamp(17px, 1.5vw, 20px); color: var(--ink-2); line-height: 1.55; max-width: 50ch; }
.hero-sub strong { color: var(--ink); font-weight: 600; }

.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.btn {
  font-family: var(--font-body);
  font-size: 15px; font-weight: 500;
  padding: 15px 24px;
  border: 1px solid var(--ink);
  background: var(--ink); color: var(--paper);
  border-radius: 4px; cursor: pointer;
  transition: transform .25s var(--ease), background .2s var(--ease);
  display: inline-flex; align-items: center; gap: 10px;
}
.btn:hover { transform: translateY(-1px); }
.btn .arr { display: inline-block; transition: transform .25s var(--ease); }
.btn:hover .arr { transform: translate(3px, -3px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--rule-2); }
.btn-ghost:hover { background: var(--hl); }

/* credibility line */
.cred {
  margin-top: 36px;
  display: flex; align-items: center; gap: 16px;
}
.cred-portrait {
  width: 56px; height: 56px; border-radius: 50%;
  border: 1px solid var(--rule);
  flex-shrink: 0;
  position: relative; overflow: hidden;
}
.cred-portrait img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 15%;
}
.cred-text { font-size: 14px; color: var(--ink-2); line-height: 1.45; }
.cred-text .name {
  font-family: var(--font-display); font-style: italic;
  font-weight: 500; font-size: 16px; color: var(--ink);
}
.cred-text .role { color: var(--ink-3); }

.hero-card {
  background: var(--paper-2);
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.hero-card::before {
  content: ""; position: absolute; top: -50px; right: -50px;
  width: 160px; height: 160px; background: var(--blue);
  border-radius: 50%; filter: blur(50px); opacity: 0.12;
}
.hero-card-label {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-3); margin-bottom: 18px;
}
.hero-card-stat {
  font-family: var(--font-display);
  font-size: 40px; font-weight: 400; line-height: 1;
  color: var(--ink); margin-bottom: 6px;
}
.hero-card-stat em { font-style: italic; color: var(--blue); }
.hero-card-desc { font-size: 14px; color: var(--ink-2); margin-bottom: 22px; }
.hero-card-list { list-style: none; margin: 0; padding: 0; }
.hero-card-list li {
  font-size: 13px; color: var(--ink-2);
  padding: 8px 0 8px 22px; position: relative;
  border-top: 1px solid var(--rule);
}
.hero-card-list li:first-child { border-top: none; }
.hero-card-list li::before {
  content: "→"; position: absolute; left: 0;
  color: var(--pink); font-weight: 600;
}

/* ── Problem strip ── */
.problem {
  background: var(--ink);
  color: var(--paper);
  position: relative; overflow: hidden;
}
.problem .blur-shape.blue-2 { width: 420px; height: 420px; top: -100px; left: 30%; opacity: 0.2; }
.problem-inner { position: relative; z-index: 1; }
.problem h2 { color: var(--paper); font-weight: 300; max-width: 22ch; }
.problem h2 em { color: var(--pink); font-style: italic; }
.problem .lead { color: color-mix(in oklab, var(--paper) 72%, transparent); margin-top: 22px; }
.problem-stat-row {
  display: grid; grid-template-columns: 1fr; gap: 24px; margin-top: 48px;
}
@media (min-width: 720px) { .problem-stat-row { grid-template-columns: repeat(3, 1fr); gap: 40px; } }
.problem-stat .num {
  font-family: var(--font-display); font-size: 44px; font-weight: 400;
  color: var(--paper); line-height: 1;
}
.problem-stat .num em { color: var(--pink); font-style: italic; }
.problem-stat .label {
  font-size: 14px; color: color-mix(in oklab, var(--paper) 60%, transparent);
  margin-top: 10px; line-height: 1.45; max-width: 30ch;
}

/* ── Offer / value stack ── */
.offer { position: relative; }
.offer .blur-shape.slate-3 { width: 380px; height: 380px; top: 20%; right: -100px; opacity: 0.16; }
.offer-inner { position: relative; z-index: 1; }
.offer-head { text-align: center; max-width: 640px; margin: 0 auto clamp(40px, 6vw, 64px); }
.offer-head .eyebrow { justify-content: center; }
.offer-head h2 { margin: 0 auto; max-width: 100%; }
.offer-head .lead { margin: 20px auto 0; }

.offer-box {
  max-width: 760px; margin: 0 auto;
  background: var(--paper-2);
  border: 1px solid var(--rule);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 60px color-mix(in oklab, var(--ink) 8%, transparent);
}
.offer-name {
  padding: 28px 32px;
  border-bottom: 1px solid var(--rule);
  display: flex; align-items: baseline; justify-content: space-between; gap: 16px;
  flex-wrap: wrap;
  background: var(--paper-3);
}
.offer-name h3 {
  font-size: 28px; font-weight: 500;
}
.offer-name .price {
  font-family: var(--font-mono); font-size: 13px;
  color: var(--ink-2); letter-spacing: 0.04em;
}
.offer-name .price strong { color: var(--ink); font-weight: 500; }

.offer-items { padding: 12px 32px; }
.offer-item {
  display: grid; grid-template-columns: 28px 1fr auto;
  gap: 14px; align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid var(--rule);
}
.offer-item:last-child { border-bottom: none; }
.offer-item .n {
  font-family: var(--font-mono); font-size: 12px;
  color: var(--pink); font-weight: 500;
}
.offer-item .what { font-size: 15px; color: var(--ink); }
.offer-item .what span { color: var(--ink-2); font-size: 14px; display: block; margin-top: 2px; }
.offer-item .val {
  font-family: var(--font-mono); font-size: 11px;
  color: var(--ink-3); white-space: nowrap;
}

.offer-bonuses {
  padding: 20px 32px;
  background: var(--blue-soft);
  border-top: 1px dashed var(--rule-2);
  border-bottom: 1px solid var(--rule);
}
.offer-bonuses-label {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 12px; font-weight: 500;
}
.offer-bonus {
  display: grid; grid-template-columns: 28px 1fr;
  gap: 14px; padding: 8px 0; align-items: baseline;
}
.offer-bonus .plus { color: var(--pink); font-weight: 600; font-family: var(--font-mono); font-size: 13px; }
.offer-bonus .txt { font-size: 14px; color: var(--ink-2); }
.offer-bonus .txt strong { color: var(--ink); font-weight: 500; }

.offer-guarantee {
  padding: 24px 32px;
  display: flex; gap: 16px; align-items: flex-start;
}
.offer-guarantee .shield {
  font-size: 22px; flex-shrink: 0; line-height: 1;
}
.offer-guarantee p { margin: 0; font-size: 14px; color: var(--ink-2); line-height: 1.5; }
.offer-guarantee strong { color: var(--ink); font-weight: 600; }

.offer-cta {
  padding: 28px 32px;
  background: var(--ink);
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
}
.offer-cta-text {
  font-family: var(--font-body); font-size: 14px;
  color: color-mix(in oklab, var(--paper) 70%, transparent);
}
.offer-cta-text strong { color: var(--paper); font-weight: 500; }
.offer-cta .btn { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.offer-cta .btn .arr { color: var(--pink); }

/* ── How it works ── */
.steps { display: grid; grid-template-columns: 1fr; gap: 0; border-top: 1px solid var(--rule); }
@media (min-width: 760px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step {
  padding: 32px 28px;
  border-bottom: 1px solid var(--rule);
  border-right: 1px solid var(--rule);
  position: relative;
}
.step:last-child { border-right: 1px solid var(--rule); }
.step-n {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.10em; color: var(--pink);
  margin-bottom: 22px;
}
.step h3 { font-size: 21px; margin-bottom: 10px; }
.step p { font-size: 14px; color: var(--ink-2); margin: 0; line-height: 1.55; }

/* ── Audience ── */
.audience-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0; border-top: 1px solid var(--rule);
}
.audience {
  padding: 30px 26px;
  border-bottom: 1px solid var(--rule);
  border-right: 1px solid var(--rule);
  transition: background .2s var(--ease);
}
.audience:hover { background: var(--paper-2); }
.audience-num {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.12em; color: var(--pink);
  text-transform: uppercase; margin-bottom: 20px;
}
.audience h3 { margin-bottom: 10px; font-size: 20px; }
.audience p { color: var(--ink-2); font-size: 14px; margin: 0; line-height: 1.5; }

/* ── Why me / proof ── */
.proof-inner { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
@media (min-width: 880px) { .proof-inner { grid-template-columns: 1.4fr 1fr; gap: 64px; } }
.proof-text .lead { margin-bottom: 0; }
.proof-text .lead strong { color: var(--ink); font-weight: 600; }
.proof-credentials {
  display: grid; gap: 0;
}
.proof-row {
  display: grid; grid-template-columns: 60px 1fr;
  gap: 18px; padding: 16px 0;
  border-top: 1px solid var(--rule);
  align-items: baseline;
}
.proof-row:last-child { border-bottom: 1px solid var(--rule); }
.proof-row .yr {
  font-family: var(--font-mono); font-size: 12px;
  color: var(--pink); letter-spacing: 0.04em;
}
.proof-row .tx { font-size: 14px; color: var(--ink-2); }
.proof-row .tx strong { color: var(--ink); font-weight: 600; }

/* ── Resources ── */
.resource-list { display: grid; grid-template-columns: 1fr; gap: 0; border-top: 1px solid var(--rule); }
.resource {
  display: grid; grid-template-columns: 70px 1fr auto;
  gap: 24px; align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid var(--rule);
  transition: background .25s var(--ease), padding .25s var(--ease);
  cursor: pointer;
}
.resource:hover { background: var(--paper-2); padding-left: 16px; padding-right: 16px; }
.resource-num { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; color: var(--pink); padding-top: 5px; }
.resource-body h3 { margin-bottom: 6px; font-size: 22px; }
.resource-desc { color: var(--ink-2); font-size: 15px; max-width: 60ch; margin-bottom: 12px; }
.tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tag {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-3); padding: 3px 8px;
  border: 1px solid var(--rule); border-radius: 2px;
}
.resource-link {
  font-family: var(--font-body); font-size: 14px; font-weight: 500;
  color: var(--ink-2); white-space: nowrap; padding-top: 4px;
  display: inline-flex; align-items: center; gap: 8px;
  transition: color .2s var(--ease), transform .25s var(--ease);
}
.resource:hover .resource-link { color: var(--ink); transform: translateX(4px); }
.resource-link .ext { color: var(--pink); transition: transform .25s var(--ease); }
.resource:hover .resource-link .ext { transform: translate(2px,-2px); }
@media (max-width: 640px) {
  .resource { grid-template-columns: 50px 1fr; }
  .resource-link { grid-column: 2; padding-top: 0; }
}

/* ── Newsletter ── */
.newsletter { background: var(--paper-2); position: relative; overflow: hidden; }
.newsletter .blur-shape.blue-3 { width: 440px; height: 440px; top: -140px; right: -120px; opacity: 0.12; }
.newsletter-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr; gap: 36px;
}
@media (min-width: 760px) { .newsletter-inner { grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; } }
.newsletter h2 { font-weight: 300; }
.newsletter-form { display: flex; flex-direction: column; gap: 12px; }
.newsletter-form label {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-3);
}
.input-row {
  display: flex; gap: 8px;
  background: var(--paper-3);
  border: 1px solid var(--rule);
  border-radius: 4px; padding: 4px;
  transition: border-color .2s var(--ease);
}
.input-row:focus-within { border-color: var(--blue); }
.input-row input {
  flex: 1; background: transparent; border: none;
  color: var(--ink); padding: 12px 16px;
  font-size: 14px; font-family: var(--font-body); outline: none;
}
.input-row input::placeholder { color: var(--ink-3); }
.input-row button {
  background: var(--ink); color: var(--paper);
  border: none; border-radius: 2px; padding: 12px 22px;
  font-family: var(--font-body); font-size: 14px; font-weight: 500;
  cursor: pointer; transition: background .2s var(--ease);
}
.input-row button:hover { background: var(--slate-deep); }
.newsletter-note { font-family: var(--font-mono); font-size: 11px; color: var(--ink-3); letter-spacing: 0.04em; }

/* ── Products ── */
.products { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 14px; }
.product {
  padding: 24px; border: 1px solid var(--rule); border-radius: 6px;
  background: var(--paper-2); position: relative;
  transition: border-color .25s var(--ease), transform .25s var(--ease);
  display: flex; flex-direction: column;
}
.product:hover { border-color: var(--blue); transform: translateY(-2px); }
.product-status {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-3); display: inline-flex; align-items: center; gap: 8px;
  margin-bottom: 18px;
}
.product-status .pip { width: 6px; height: 6px; border-radius: 50%; background: var(--ink-3); }
.product-status.live .pip { background: #5E9E7E; box-shadow: 0 0 0 3px rgba(94,158,126,.2); }
.product-status.coming .pip { background: var(--pink); box-shadow: 0 0 0 3px var(--pink-soft); }
.product h3 { margin-bottom: 8px; font-size: 21px; }
.product-title {
  color: var(--ink);
  text-decoration: none;
  transition: color .2s var(--ease);
}
.product-title:hover,
.product-title:focus-visible { color: var(--blue); }
.product p { color: var(--ink-2); font-size: 14px; flex: 1; margin-bottom: 16px; line-height: 1.5; }
.product-link {
  font-family: var(--font-body); font-size: 14px; font-weight: 500;
  color: var(--ink); display: inline-flex; align-items: center; gap: 6px;
  transition: color .2s var(--ease);
}
.product-link:hover { color: var(--blue); }
.product-link .ext { color: var(--pink); transition: transform .2s var(--ease); }
.product-link:hover .ext { transform: translate(2px, -2px); }

/* ── Footer ── */
footer { padding: 56px 0 36px; border-top: 1px solid var(--rule); }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 32px; margin-bottom: 40px; }
@media (min-width: 720px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; } }
.footer-brand-text { font-family: var(--font-display); font-size: 22px; font-weight: 500; font-style: italic; color: var(--ink); }
.footer-brand-text .dot { color: var(--pink); }
.footer-tagline { font-size: 14px; color: var(--ink-2); max-width: 280px; margin-top: 8px; line-height: 1.5; }
.footer-col h5 { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-3); margin: 0 0 14px; font-weight: 500; }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: 14px; color: var(--ink-2); transition: color .2s var(--ease); }
.footer-col a:hover { color: var(--blue); }
.footer-bottom {
  padding-top: 28px; border-top: 1px solid var(--rule);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-family: var(--font-mono); font-size: 11px; color: var(--ink-3); letter-spacing: 0.04em;
}

/* ── Modal ── */
.modal-bg {
  position: fixed; inset: 0;
  background: color-mix(in oklab, var(--ink) 60%, transparent);
  backdrop-filter: blur(8px);
  display: none; align-items: center; justify-content: center;
  z-index: 100; padding: 20px;
}
.modal-bg.show { display: flex; }
.modal {
  background: var(--paper); border: 1px solid var(--rule);
  border-radius: 8px; padding: 40px; max-width: 460px; width: 100%;
  position: relative; box-shadow: 0 20px 60px color-mix(in oklab, var(--ink) 30%, transparent);
}
.modal::before {
  content: ""; position: absolute; top: -60px; right: -60px;
  width: 180px; height: 180px; background: var(--blue);
  border-radius: 50%; filter: blur(60px); opacity: 0.14; z-index: -1;
}
.modal h3 { font-size: 27px; font-weight: 400; margin-bottom: 8px; line-height: 1.15; }
.modal h3 em { color: var(--blue); font-style: italic; }
.modal p { color: var(--ink-2); margin-bottom: 26px; font-size: 15px; line-height: 1.5; }
.modal-close {
  position: absolute; top: 16px; right: 16px;
  background: none; border: none; cursor: pointer;
  font-size: 22px; color: var(--ink-3); padding: 4px;
  font-family: var(--font-body); transition: color .2s var(--ease);
}
.modal-close:hover { color: var(--pink); }
.modal input {
  width: 100%; background: var(--paper-2);
  border: 1px solid var(--rule); border-radius: 4px;
  padding: 14px 16px; font-size: 15px; font-family: var(--font-body);
  color: var(--ink); outline: none; margin-bottom: 12px;
  transition: border-color .2s var(--ease);
}
.modal input:focus { border-color: var(--blue); }
.modal button.submit {
  width: 100%; background: var(--ink); color: var(--paper);
  border: none; border-radius: 4px; padding: 15px;
  font-family: var(--font-body); font-size: 15px; font-weight: 500;
  cursor: pointer; transition: background .2s var(--ease); margin-top: 4px;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
}
.modal button.submit:hover { background: var(--slate-deep); }
.modal button.submit .arr { color: var(--pink); }
.modal-note { font-family: var(--font-mono); font-size: 11px; color: var(--ink-3); margin-top: 14px; text-align: center; letter-spacing: 0.04em; }

/* toast */
.toast {
  position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%);
  background: var(--ink); color: var(--paper);
  padding: 14px 24px; border-radius: 4px;
  font-family: var(--font-body); font-size: 14px;
  z-index: 200; box-shadow: 0 12px 32px color-mix(in oklab, var(--ink) 40%, transparent);
  display: flex; align-items: center; gap: 10px;
}
.toast .accent { color: var(--pink); }

/* note + footer inline links */
.newsletter-note a, .modal-note a, .footer-bottom a {
  color: var(--blue);
  border-bottom: 1px solid transparent;
  transition: border-color .2s var(--ease);
}
.newsletter-note a:hover, .modal-note a:hover, .footer-bottom a:hover { border-bottom-color: var(--blue); }

/* ── Standalone document pages (privacy, 404) ── */
.doc { max-width: 720px; margin: 0 auto; padding: clamp(72px, 11vw, 120px) 0; }
.doc h1 {
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(34px, 5vw, 56px); line-height: 1.04;
  letter-spacing: -0.02em; color: var(--ink);
  font-variation-settings: "opsz" 80; max-width: 18ch;
}
.doc h1 em { font-style: italic; color: var(--blue); }
.doc h2 { font-size: clamp(22px, 2.6vw, 28px); margin: 40px 0 12px; max-width: 100%; }
.doc .updated {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--ink-3); margin: 20px 0 36px;
}
.doc p, .doc li { color: var(--ink-2); font-size: 16px; line-height: 1.6; max-width: 62ch; }
.doc ul { padding-left: 20px; margin: 0 0 1em; }
.doc li { margin-bottom: 8px; }
.doc a { color: var(--blue); border-bottom: 1px solid transparent; transition: border-color .2s var(--ease); }
.doc a:hover { border-bottom-color: var(--blue); }
.doc .back {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 40px;
  font-family: var(--font-body); font-size: 15px; font-weight: 500;
  color: var(--ink); border-bottom: none;
}
.doc .back .arr { color: var(--pink); }
