/* ============================================================
   AMORTAL — early access lander  ·  v2
   Warm sand · forest ink · eucalyptus sage signal
   ============================================================ */

:root {
  /* Sand / stone neutrals */
  --sand-50:  #f7f3ec;
  --sand-100: #f1e9dc;
  --sand-150: #eae0cf;
  --sand-200: #e1d6c1;
  --sand-300: #d2c4aa;
  --stone-400: #a89a82;
  --stone-500: #877a66;
  --stone-600: #675e50;
  --ink-700: #463f37;
  --ink-800: #272420;
  --ink-900: #161814;   /* forest-tinted soft black */
  --ink-950: #0f110d;

  /* Signal — eucalyptus sage (health · trust · calm) */
  --signal:      #5d8a73;
  --signal-soft: #8bb39c;
  --signal-deep: #3f6353;
  --signal-glow: rgba(93, 138, 115, 0.26);

  --paper: var(--sand-50);
  --ink:   var(--ink-900);

  --font-display: "Instrument Serif", Georgia, serif;
  --font-body: "Hanken Grotesk", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;

  --maxw: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

/* film grain */
body::after {
  content: "";
  position: fixed; inset: 0;
  pointer-events: none; z-index: 9999;
  opacity: 0.04; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

::selection { background: var(--signal); color: var(--sand-50); }
a { color: inherit; text-decoration: none; }

/* ---------- layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-left: 40px; padding-right: 40px; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--signal-deep);
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before { content: ""; width: 20px; height: 1px; background: var(--signal); display: inline-block; }
.serif { font-family: var(--font-display); font-weight: 400; letter-spacing: -0.01em; }

/* ---------- nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 40px;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(247, 243, 236, 0.8);
  backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid var(--sand-200);
}
.brand { font-family: var(--font-mono); font-weight: 700; font-size: 15px; letter-spacing: 0.34em; padding-left: 0.34em; }
.brand .dot { color: var(--signal); }
.nav-right { display: flex; align-items: center; gap: 28px; }
.nav-tag { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.16em; color: var(--stone-500); text-transform: uppercase; }

/* ---------- buttons ---------- */
.btn {
  font-family: var(--font-mono); font-size: 13px;
  letter-spacing: 0.06em; text-transform: uppercase;
  border: none; cursor: pointer; padding: 13px 22px; border-radius: 3px;
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s, color 0.3s;
  white-space: nowrap;
}
.btn-primary { background: var(--signal); color: #fff; position: relative; overflow: hidden; }
.btn-primary::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.32), transparent);
  transform: translateX(-120%); transition: transform 0.6s var(--ease);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 30px -12px var(--signal); }
.btn-primary:hover::before { transform: translateX(120%); }
.btn-ghost { background: transparent; color: var(--ink-900); border: 1px solid var(--sand-300); }
.btn-ghost:hover { background: var(--ink-900); color: var(--sand-50); border-color: var(--ink-900); }

/* ---------- soft gradient mesh ---------- */
.mesh { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.blob { position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.55; }
.blob.sage { background: radial-gradient(circle, rgba(93,138,115,0.5), transparent 68%); }
.blob.sand { background: radial-gradient(circle, rgba(210,180,140,0.55), transparent 68%); }
.blob.b1 { width: 760px; height: 760px; top: -220px; right: -180px; animation: drift1 18s ease-in-out infinite; }
.blob.b2 { width: 620px; height: 620px; bottom: -260px; left: -160px; animation: drift2 22s ease-in-out infinite; }
@keyframes drift1 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-40px,40px) scale(1.1); } }
@keyframes drift2 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(40px,-30px) scale(1.08); } }

/* ---------- HERO ---------- */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  padding: 170px 0 110px; overflow: hidden;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--sand-200) 1px, transparent 1px),
    linear-gradient(90deg, var(--sand-200) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: radial-gradient(ellipse 78% 68% at 50% 42%, #000 26%, transparent 78%);
  opacity: 0.35; pointer-events: none;
}
.hero-inner { position: relative; z-index: 2; max-width: 940px; }
.hero h1 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(54px, 8.6vw, 128px); line-height: 0.94;
  letter-spacing: -0.02em; margin: 28px 0 0;
}
.hero h1 em { font-style: italic; color: var(--signal-deep); }

/* cycling answer */
.ask-block { margin-top: 44px; border-left: 1.5px solid var(--signal); padding-left: 26px; max-width: 660px; }
.ask-q {
  font-family: var(--font-mono); font-size: 12.5px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--stone-500);
  display: flex; align-items: center; gap: 9px; margin-bottom: 13px;
}
.ask-q .live { width: 7px; height: 7px; border-radius: 50%; background: var(--signal); box-shadow: 0 0 0 0 var(--signal-glow); animation: pulse 2.2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 var(--signal-glow); } 70% { box-shadow: 0 0 0 12px rgba(93,138,115,0); } 100% { box-shadow: 0 0 0 0 rgba(93,138,115,0); } }
.ask-answer {
  font-family: var(--font-display); font-size: clamp(25px, 3.3vw, 40px);
  line-height: 1.16; color: var(--ink-800); min-height: 2.3em;
}
.ask-answer .cursor { display: inline-block; width: 2px; height: 0.9em; background: var(--signal); margin-left: 3px; transform: translateY(2px); animation: blink 1s steps(2) infinite; }
@keyframes blink { 50% { opacity: 0; } }

/* email capture */
.capture { margin-top: 50px; max-width: 520px; }
.capture-form {
  display: flex; gap: 8px;
  background: rgba(255,255,255,0.6); border: 1px solid var(--sand-300);
  border-radius: 5px; padding: 7px 7px 7px 18px;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.capture-form:focus-within { border-color: var(--signal); box-shadow: 0 0 0 4px var(--signal-glow); }
.capture-form input { flex: 1; border: none; background: transparent; font-family: var(--font-body); font-size: 16px; color: var(--ink-900); outline: none; }
.capture-form input::placeholder { color: var(--stone-400); }
.capture-note { margin-top: 14px; font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.03em; color: var(--stone-500); display: flex; align-items: center; gap: 8px; }
.capture-success { display: none; font-family: var(--font-display); font-size: 23px; color: var(--ink-800); align-items: center; gap: 12px; }
.capture-success span:first-child { color: var(--signal); }
.capture.success .capture-success { display: flex; }
.capture.success .capture-form { display: none; }

/* ---------- section scaffolding ---------- */
section { position: relative; }
.band { padding-top: 150px; padding-bottom: 150px; }
.band-dark { background: var(--ink-900); color: var(--sand-100); }
.band-dark .eyebrow { color: var(--signal-soft); }
.band-dark .eyebrow::before { background: var(--signal); }

.sec-head { max-width: 720px; }
.sec-head h2 { font-family: var(--font-display); font-weight: 400; font-size: clamp(38px, 5.2vw, 68px); line-height: 1.0; letter-spacing: -0.018em; margin: 24px 0 0; }
.sec-head h2 em { font-style: italic; color: var(--signal-deep); }
.band-dark .sec-head h2 em { color: var(--signal-soft); }
.sec-head p { margin-top: 24px; font-size: 19px; color: var(--stone-600); max-width: 540px; }
.band-dark .sec-head p { color: var(--stone-400); }

/* ---------- the shift (structural, low text) ---------- */
.shift-grid { margin-top: 80px; display: grid; grid-template-columns: 1fr 1fr; gap: 28px; position: relative; }
.shift-arrow {
  position: absolute; inset: 0; margin: auto;
  z-index: 5; width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--sand-50); color: var(--signal-deep);
  border: 1px solid var(--sand-200);
  box-shadow: 0 10px 26px -10px rgba(22,24,20,0.4);
  animation: nudge 3s var(--ease) infinite;
}
@keyframes nudge { 0%,100% { transform: translateX(0); } 50% { transform: translateX(5px); } }
.shift-col { padding: 42px 38px; border-radius: 10px; min-height: 320px; display: flex; flex-direction: column; }
.shift-col.before { background: var(--sand-100); border: 1px solid var(--sand-200); }
.shift-col.after { background: var(--ink-900); color: var(--sand-100); position: relative; overflow: hidden; }
.shift-tag { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--stone-500); margin-bottom: 30px; }
.shift-col.after .shift-tag { color: var(--signal-soft); }
.shift-headline { font-family: var(--font-display); font-size: 32px; line-height: 1.1; color: var(--ink-700); margin-top: auto; }
.shift-col.after .shift-headline { color: var(--sand-50); }

/* scattered chaos chips */
.chaos { display: flex; flex-wrap: wrap; gap: 9px; }
.chaos .chip { height: 26px; border-radius: 5px; background: var(--sand-200); }
.chaos .chip.a { width: 64px; } .chaos .chip.b { width: 92px; } .chaos .chip.c { width: 48px; }
.chaos .chip.d { width: 76px; } .chaos .chip.e { width: 110px; } .chaos .chip.f { width: 56px; }
.chaos .chip.tilt { transform: rotate(-3deg); }
.chaos .chip.tilt2 { transform: rotate(2.5deg); }

/* one clean resolved card */
.resolved { display: flex; align-items: center; gap: 14px; padding: 18px 20px; border-radius: 12px; background: rgba(255,255,255,0.05); border: 1px solid rgba(139,179,156,0.32); max-width: 280px; box-shadow: 0 0 0 0 rgba(139,179,156,0); animation: resolvedGlow 4s ease-in-out infinite; }
@keyframes resolvedGlow { 0%,100% { box-shadow: 0 0 0 0 rgba(139,179,156,0); border-color: rgba(139,179,156,0.32); } 50% { box-shadow: 0 0 34px -6px rgba(139,179,156,0.45); border-color: rgba(139,179,156,0.6); } }
.resolved .rdot { width: 11px; height: 11px; border-radius: 50%; background: var(--signal); flex: none; box-shadow: 0 0 0 5px rgba(93,138,115,0.18); }
.resolved .rlines { flex: 1; display: flex; flex-direction: column; gap: 7px; }
.resolved .rl { height: 7px; border-radius: 4px; background: rgba(247,243,236,0.5); }
.resolved .rl.s { width: 60%; background: rgba(247,243,236,0.28); }

/* ---------- how it works (compact, iconographic) ---------- */
.pipe { margin-top: 84px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid rgba(168,154,130,0.28); }
.step { position: relative; padding: 34px 26px 10px; border-left: 1px solid rgba(168,154,130,0.28); transition: background 0.4s; }
.step:first-child { border-left: none; }
.band-dark .step { border-color: rgba(139,179,156,0.18); }
.step-num { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em; color: var(--signal); margin-bottom: 22px; }
.step .glyph { color: var(--signal-deep); margin-bottom: 20px; }
.band-dark .step .glyph { color: var(--signal-soft); }
.step h3 { font-family: var(--font-display); font-weight: 400; font-size: 28px; line-height: 1.06; margin-bottom: 10px; }
.step p { font-size: 14px; color: var(--stone-500); line-height: 1.5; }
.band-dark .step p { color: var(--stone-400); }

/* ---------- abstract "Today" (replaces phone) ---------- */
.today { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 80px; align-items: center; }
.today-copy { max-width: 420px; }
.today-copy h2 { font-family: var(--font-display); font-weight: 400; font-size: clamp(36px,4.8vw,60px); line-height: 1.0; letter-spacing: -0.018em; margin: 22px 0 0; }
.today-copy h2 em { font-style: italic; color: var(--signal-deep); }
.today-copy p { margin-top: 20px; font-size: 18px; color: var(--stone-600); }

.stage {
  position: relative; border-radius: 18px; padding: 46px 44px;
  background: linear-gradient(155deg, rgba(255,255,255,0.55), rgba(241,233,220,0.35));
  border: 1px solid var(--sand-200);
  display: flex; flex-direction: column; gap: 30px;
  overflow: hidden;
}
.stage .zlabel { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--stone-400); display: flex; align-items: center; gap: 9px; margin-bottom: 14px; }
.stage .zlabel .ln { flex: 1; height: 1px; background: var(--sand-200); }

/* zone A — the one move (deck resolving to one) */
.deck { position: relative; height: 132px; }
.deck .card {
  position: absolute; left: 0; right: 0; top: 0;
  border-radius: 14px; background: var(--sand-50);
  border: 1px solid var(--sand-200); height: 116px;
}
.deck .ghost { opacity: 0.55; }
.deck .g1 { transform: translate(20px, 16px) rotate(3deg); animation: deckb1 6s var(--ease) infinite; }
.deck .g2 { transform: translate(-16px, 10px) rotate(-2.5deg); animation: deckb2 6s var(--ease) infinite; }
.deck .g3 { transform: translate(8px, 6px) rotate(1.5deg); opacity: 0.4; }
@keyframes deckb1 { 0%,100% { transform: translate(20px,16px) rotate(3deg); } 50% { transform: translate(28px,22px) rotate(4.5deg); } }
@keyframes deckb2 { 0%,100% { transform: translate(-16px,10px) rotate(-2.5deg); } 50% { transform: translate(-24px,15px) rotate(-4deg); } }
.deck .lead {
  background: var(--ink-900); border-color: var(--ink-900); color: var(--sand-100);
  padding: 18px 20px; display: flex; flex-direction: column; gap: 12px; z-index: 3;
  box-shadow: 0 24px 40px -22px rgba(22,24,20,0.55);
  animation: float 5.5s var(--ease) infinite;
}
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
.deck .lead .lhead { display: flex; align-items: center; gap: 10px; }
.deck .lead .ldot { width: 9px; height: 9px; border-radius: 50%; background: var(--signal); box-shadow: 0 0 0 4px rgba(93,138,115,0.25); }
.deck .lead .lbar { height: 9px; border-radius: 4px; background: rgba(247,243,236,0.85); flex: 1; max-width: 150px; }
.deck .lead .lsub { height: 7px; width: 64%; border-radius: 4px; background: rgba(247,243,236,0.32); }
.deck .lead .lpill { align-self: flex-start; margin-top: 2px; font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.08em; text-transform: uppercase; color: #fff; background: var(--signal); padding: 5px 11px; border-radius: 100px; }

/* zone B — the shelf */
.shelf { display: flex; flex-direction: column; gap: 9px; }
.shelf .row { display: flex; align-items: center; gap: 13px; padding: 12px 15px; border-radius: 10px; background: var(--sand-50); border: 1px solid var(--sand-200); }
.shelf .row .pos { font-family: var(--font-mono); font-size: 10px; color: var(--stone-400); width: 18px; }
.shelf .row .sbar { height: 7px; border-radius: 4px; background: var(--sand-300); }
.shelf .row .sbar.w1 { width: 46%; } .shelf .row .sbar.w2 { width: 32%; }
.shelf .row.r2 { opacity: 0.78; } .shelf .row.r3 { opacity: 0.58; }

/* zone C — watching */
.watching { display: flex; align-items: center; gap: 14px; padding: 4px 2px; }
.watching .wlab { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.04em; color: var(--stone-500); }
.wdots { display: flex; gap: 11px; }
.wdot { width: 9px; height: 9px; border-radius: 50%; background: var(--signal); opacity: 0.3; animation: wpulse 2.4s ease-in-out infinite; }
.wdot:nth-child(2) { animation-delay: 0.3s; } .wdot:nth-child(3) { animation-delay: 0.6s; }
.wdot:nth-child(4) { animation-delay: 0.9s; } .wdot:nth-child(5) { animation-delay: 1.2s; }
@keyframes wpulse { 0%,100% { opacity: 0.25; transform: scale(0.85); } 50% { opacity: 1; transform: scale(1.15); } }

/* ---------- doctrine ---------- */
.doctrine-lines { margin-top: 56px; }
.dl {
  font-family: var(--font-display); font-size: clamp(34px, 6vw, 78px);
  line-height: 1.04; letter-spacing: -0.02em; color: var(--stone-600);
  padding: 16px 0; border-top: 1px solid rgba(139,179,156,0.18);
  transition: color 0.5s var(--ease), padding-left 0.5s var(--ease);
}
.dl:last-child { border-bottom: 1px solid rgba(139,179,156,0.18); }
.dl .n { font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.1em; color: var(--stone-500); vertical-align: super; margin-right: 18px; }
.dl:hover { color: var(--sand-50); padding-left: 18px; }
.dl:hover .n { color: var(--signal-soft); }

/* ---------- trust / SaMD ---------- */
.trust-grid { margin-top: 72px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.trust-card { border-top: 1px solid var(--sand-300); padding-top: 24px; }
.trust-card .ti { color: var(--signal-deep); margin-bottom: 18px; }
.trust-card h3 { font-family: var(--font-display); font-weight: 400; font-size: 27px; margin-bottom: 10px; }
.trust-card p { font-size: 14.5px; color: var(--stone-500); line-height: 1.55; }
.trust-foot {
  margin-top: 60px; display: flex; align-items: center; gap: 16px;
  padding: 22px 26px; background: var(--sand-100);
  border: 1px solid var(--sand-200); border-radius: 10px;
  font-family: var(--font-mono); font-size: 12px; line-height: 1.65; letter-spacing: 0.01em; color: var(--stone-600);
}
.trust-foot .seal { flex: none; color: var(--signal-deep); }

/* ---------- final CTA ---------- */
.finale { background: var(--ink-900); color: var(--sand-50); position: relative; overflow: hidden; padding: 170px 0; }
.finale .blob { opacity: 0.4; }
.finale-inner { position: relative; z-index: 2; max-width: 800px; }
.finale h2 { font-family: var(--font-display); font-weight: 400; font-size: clamp(44px, 7vw, 94px); line-height: 0.98; letter-spacing: -0.02em; }
.finale h2 em { font-style: italic; color: var(--signal-soft); }
.finale p { margin-top: 24px; font-size: 19px; color: var(--stone-400); max-width: 500px; }
.finale .capture-form { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.16); }
.finale .capture-form input { color: var(--sand-50); }
.finale .capture-form input::placeholder { color: var(--stone-500); }
.finale .capture-note { color: var(--stone-500); }
.finale .capture-success { color: var(--sand-100); }
.counter { margin-top: 64px; display: flex; align-items: flex-end; gap: 18px; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 28px; }
.counter .num { font-family: var(--font-display); font-size: 58px; line-height: 0.82; color: var(--sand-50); }
.counter .lab { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--stone-400); line-height: 1.4; padding-bottom: 2px; }

/* ---------- footer ---------- */
.foot { background: var(--ink-950); color: var(--stone-400); padding: 56px 0 60px; }
.foot-inner { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; flex-wrap: wrap; }
.foot .brand { color: var(--sand-100); }
.foot-links { display: flex; gap: 28px; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; }
.foot-links a { color: var(--stone-400); transition: color 0.3s; cursor: pointer; }
.foot-links a:hover { color: var(--signal-soft); }
.foot-fine { font-family: var(--font-mono); font-size: 11px; color: var(--stone-600); margin-top: 32px; max-width: 620px; line-height: 1.7; letter-spacing: 0.01em; }

/* ---------- scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
.reveal.d4 { transition-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .blob, .deck .g1, .deck .g2, .deck .lead, .wdot, .shift-arrow, .resolved { animation: none; }
}

/* ---------- responsive ---------- */
@media (max-width: 940px) {
  .shift-grid, .trust-grid, .today { grid-template-columns: 1fr; }
  .shift-grid { grid-auto-rows: 1fr; }
  .shift-grid .shift-arrow { transform: rotate(90deg); animation: none; }
  @keyframes nudge { 0%,100% { transform: rotate(90deg); } 50% { transform: rotate(90deg) translateX(5px); } }
  .pipe { grid-template-columns: 1fr 1fr; }
  .step { border-left: none; border-top: 1px solid rgba(168,154,130,0.22); padding-top: 28px; }
  .step:nth-child(odd) { border-left: none; }
  .today { gap: 50px; }
  .today-copy { order: 1; }
  .band { padding-top: 100px; padding-bottom: 100px; }
  .nav-tag { display: none; }
  .foot-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 560px) {
  .wrap { padding-left: 22px; padding-right: 22px; }
  .nav { padding: 16px 22px; }
  .pipe { grid-template-columns: 1fr; }
  .capture-form { flex-direction: column; padding: 10px; }
  .capture-form input { padding: 8px 8px 4px; }
  .capture-form .btn { width: 100%; }
  .hero { padding: 140px 0 70px; }
  .shift-col { min-height: auto; }
}

/* ============================================================
   v3 additions — nav links, definition, founding, cred,
   FAQ, founder teaser, referral, signature
   ============================================================ */

/* ---- nav center links ---- */
.nav-links { display: flex; gap: 30px; }
.nav-links a { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--stone-600); transition: color 0.3s; cursor: pointer; }
.nav-links a:hover { color: var(--signal-deep); }

/* ---- mobile hamburger + menu ---- */
.nav-toggle {
  display: none; position: relative; width: 44px; height: 44px;
  align-items: center; justify-content: center;
  background: transparent; border: 1px solid var(--sand-300);
  border-radius: 3px; cursor: pointer; padding: 0;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.nav-toggle:hover { border-color: var(--signal); }
.nav-toggle-bars { position: relative; width: 19px; height: 13px; }
.nav-toggle-bars span {
  position: absolute; left: 0; width: 100%; height: 1.6px; border-radius: 2px;
  background: var(--ink-800); transition: transform 0.35s var(--ease), opacity 0.2s var(--ease);
}
.nav-toggle-bars span:nth-child(1) { top: 0; }
.nav-toggle-bars span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.nav-toggle-bars span:nth-child(3) { bottom: 0; }
.nav-toggle.open .nav-toggle-bars span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.nav-toggle.open .nav-toggle-bars span:nth-child(2) { opacity: 0; }
.nav-toggle.open .nav-toggle-bars span:nth-child(3) { bottom: 50%; transform: translateY(50%) rotate(-45deg); }

.nav-menu {
  position: fixed; top: 0; left: 0; right: 0; z-index: 99;
  display: flex; flex-direction: column; gap: 4px;
  padding: 86px 40px 30px;
  background: rgba(247, 243, 236, 0.96);
  backdrop-filter: blur(18px) saturate(1.2);
  border-bottom: 1px solid var(--sand-200);
  box-shadow: 0 24px 50px -28px rgba(22,24,20,0.4);
  transform: translateY(-104%);
  transition: transform 0.5s var(--ease);
  pointer-events: none;
}
.nav-menu.open { transform: translateY(0); pointer-events: auto; }
.nav-menu a {
  font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ink-800); cursor: pointer;
  padding: 17px 2px; border-bottom: 1px solid var(--sand-200);
  display: flex; align-items: center; justify-content: space-between;
  transition: color 0.3s var(--ease), padding-left 0.3s var(--ease);
}
.nav-menu a::after { content: "\2192"; color: var(--signal); opacity: 0; transform: translateX(-6px); transition: opacity 0.3s var(--ease), transform 0.3s var(--ease); }
.nav-menu a:hover { color: var(--signal-deep); padding-left: 8px; }
.nav-menu a:hover::after { opacity: 1; transform: translateX(0); }
.nav-menu .btn { margin-top: 22px; width: 100%; }
.cta-short { display: none; }
.nav-scrim {
  position: fixed; inset: 0; z-index: 98; background: rgba(22,24,20,0.32);
  opacity: 0; pointer-events: none; transition: opacity 0.4s var(--ease);
  -webkit-tap-highlight-color: transparent;
}
.nav-scrim.open { opacity: 1; pointer-events: auto; }

@media (max-width: 940px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-right { gap: 12px; }
  .nav-right .btn-ghost { padding: 11px 15px; font-size: 11px; letter-spacing: 0.05em; }
  .cta-full { display: none; }
  .cta-short { display: inline; }
}
@media (prefers-reduced-motion: reduce) {
  .nav-menu { transition: none; }
}

/* ---- definition (AEO) ---- */
.define { padding: 96px 0 0; }
.define .lede {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(28px, 3.6vw, 44px); line-height: 1.24; letter-spacing: -0.01em;
  color: var(--ink-800); max-width: 920px;
}
.define .lede b { color: var(--ink-900); font-weight: 400; font-style: italic; }
.define .lede .sg { color: var(--signal-deep); font-style: italic; }
.define .meta-row { margin-top: 38px; display: flex; flex-wrap: wrap; gap: 12px; }
.define .tag {
  font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.08em;
  color: var(--stone-600); border: 1px solid var(--sand-300); border-radius: 100px; padding: 8px 15px;
  display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.4);
}
.define .tag::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--signal); }

/* ---- founding members / offer ---- */
.founding { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.offer-card {
  position: relative; overflow: hidden; border-radius: 18px; padding: 46px 44px;
  background: var(--ink-900); color: var(--sand-100);
  box-shadow: 0 40px 80px -40px rgba(22,24,20,0.6);
}
.offer-card .mesh { opacity: 0.6; }
.offer-card .otag { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--signal-soft); position: relative; z-index: 2; }
.offer-card .obig { position: relative; z-index: 2; display: flex; align-items: baseline; gap: 16px; margin: 20px 0 2px; }
.offer-card .obig .pct { font-family: var(--font-display); font-size: clamp(72px, 11vw, 132px); line-height: 0.9; color: var(--sand-50); }
.offer-card .obig .pctoff { font-family: var(--font-display); font-style: italic; font-size: clamp(30px, 4.4vw, 50px); line-height: 1; color: var(--signal-soft); }
.offer-card .pctsub { position: relative; z-index: 2; font-family: var(--font-display); font-size: clamp(21px, 2.5vw, 29px); line-height: 1.15; color: var(--signal-soft); margin-bottom: 16px; }
.offer-card .osub { position: relative; z-index: 2; font-size: 15px; color: var(--stone-400); max-width: 320px; line-height: 1.5; }
.offer-card .ofine { position: relative; z-index: 2; margin-top: 26px; font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.04em; color: var(--stone-500); }
.perks { list-style: none; display: flex; flex-direction: column; gap: 22px; }
.perks li { display: grid; grid-template-columns: 26px 1fr; gap: 15px; }
.perks .pk { color: var(--signal-deep); margin-top: 2px; }
.perks h4 { font-family: var(--font-body); font-weight: 600; font-size: 16px; margin-bottom: 3px; }
.perks p { font-size: 14px; color: var(--stone-500); line-height: 1.5; }

/* ---- credibility strip ---- */
.cred { margin-top: 80px; border-top: 1px solid var(--sand-200); border-bottom: 1px solid var(--sand-200); padding: 34px 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.cred .item { display: flex; flex-direction: column; gap: 9px; }
.cred .item .ci { color: var(--signal-deep); }
.cred .item h5 { font-family: var(--font-body); font-weight: 600; font-size: 13.5px; }
.cred .item p { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.03em; color: var(--stone-500); line-height: 1.5; }

/* ---- FAQ ---- */
.faq-grid { margin-top: 60px; max-width: 880px; }
.faq-item { border-top: 1px solid var(--sand-200); }
.faq-item:last-child { border-bottom: 1px solid var(--sand-200); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 26px 0; display: flex; align-items: center; gap: 20px;
  font-family: var(--font-display); font-size: clamp(21px, 2.4vw, 28px); color: var(--ink-800);
  transition: color 0.3s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--signal-deep); }
.faq-item summary .qn { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em; color: var(--signal); flex: none; width: 38px; }
.faq-item summary .q { flex: 1; }
.faq-item summary .plus { margin-left: auto; flex: none; width: 20px; height: 20px; position: relative; transition: transform 0.4s var(--ease); }
.faq-item summary .plus::before, .faq-item summary .plus::after { content: ""; position: absolute; background: var(--stone-500); border-radius: 2px; }
.faq-item summary .plus::before { left: 0; right: 0; top: 9px; height: 2px; }
.faq-item summary .plus::after { top: 0; bottom: 0; left: 9px; width: 2px; transition: opacity 0.3s; }
.faq-item[open] summary .plus { transform: rotate(180deg); }
.faq-item[open] summary .plus::after { opacity: 0; }
.faq-answer { padding: 0 0 28px 58px; max-width: 680px; }
.faq-answer p { font-size: 16px; color: var(--stone-600); line-height: 1.65; }
.faq-answer p + p { margin-top: 14px; }
/* FAQ on dark band */
.band-dark .faq-item { border-top-color: rgba(139,179,156,0.18); }
.band-dark .faq-item:last-child { border-bottom-color: rgba(139,179,156,0.18); }
.band-dark .faq-item summary { color: var(--sand-100); }
.band-dark .faq-item summary:hover { color: var(--signal-soft); }
.band-dark .faq-item summary .qn { color: var(--signal-soft); }
.band-dark .faq-item summary .plus::before, .band-dark .faq-item summary .plus::after { background: var(--stone-400); }
.band-dark .faq-answer p { color: var(--stone-400); }
@media (max-width: 560px) { .faq-answer { padding-left: 0; } .faq-item summary .qn { display: none; } }

/* ---- founder teaser ---- */
.founder-teaser { background: var(--ink-900); color: var(--sand-100); position: relative; overflow: hidden; }
.ft-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 200px 1fr; gap: 56px; align-items: center; }
.ft-portrait {
  width: 200px; height: 240px; border-radius: 12px; overflow: hidden;
  background: linear-gradient(160deg, #2a2c26, #1b1d18);
  display: flex; align-items: center; justify-content: center; flex: none;
}
.ft-portrait image-slot, .ft-portrait .ph { width: 100%; height: 100%; }
.ft-portrait .ph { display: flex; align-items: center; justify-content: center; color: var(--stone-500); font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em; text-align: center; }
.ft-quote { font-family: var(--font-display); font-size: clamp(26px, 3.4vw, 40px); line-height: 1.18; letter-spacing: -0.01em; color: var(--sand-50); }
.ft-quote em { font-style: italic; color: var(--signal-soft); }
.ft-by { margin-top: 24px; display: flex; align-items: center; gap: 16px; }
.ft-sig { font-family: "Caveat", cursive; font-size: 34px; color: var(--sand-100); line-height: 1; }
.ft-name { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--stone-400); }
.ft-link { margin-top: 30px; }
.ft-link a { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--signal-soft); border-bottom: 1px solid rgba(139,179,156,0.4); padding-bottom: 4px; transition: gap 0.3s, color 0.3s; }
.ft-link a:hover { gap: 16px; color: var(--sand-50); }
@media (max-width: 760px) { .ft-inner { grid-template-columns: 1fr; gap: 32px; } .ft-portrait { width: 160px; height: 192px; } }

/* ---- referral / line-skip success ---- */
.referral { display: none; margin-top: 22px; }
.capture.success .referral { display: block; }
.ref-row { display: flex; gap: 8px; margin-top: 12px; }
.ref-link {
  flex: 1; font-family: var(--font-mono); font-size: 13px; color: var(--stone-600);
  background: rgba(255,255,255,0.5); border: 1px solid var(--sand-300); border-radius: 5px;
  padding: 12px 14px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.finale .ref-link { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.16); color: var(--sand-200); }
.ref-copy { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.04em; text-transform: uppercase; cursor: pointer; border: none; border-radius: 5px; padding: 0 18px; background: var(--signal); color: #fff; transition: background 0.3s; }
.ref-copy:hover { background: var(--signal-deep); }
.ref-note { margin-top: 10px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.03em; color: var(--stone-500); }
.finale .ref-note { color: var(--stone-400); }

/* ---- footer social ---- */
.foot-social { display: flex; gap: 18px; margin-top: 4px; }
.foot-social a { color: var(--stone-500); transition: color 0.3s; }
.foot-social a:hover { color: var(--signal-soft); }

@media (max-width: 940px) {
  .founding, .cred { grid-template-columns: 1fr; }
  .founding { gap: 40px; }
  .cred { grid-template-columns: 1fr 1fr; gap: 26px; }
  .offer-card { order: 1; }
}
@media (max-width: 560px) { .cred { grid-template-columns: 1fr; } }

/* ===== Founding deposit: CTA + secondary waitlist ===== */
.deposit-cta-btn { width: 100%; justify-content: center; font-size: 14px; padding: 16px 22px; }
.capture-or { margin-top: 22px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--stone-400); }
.capture.success .capture-or { display: none; }
.finale .capture-or { color: var(--stone-400); }
/* Ghost "Join" button sits on the dark finale background — needs light text/border for contrast */
.finale .btn-ghost { color: var(--sand-50); border-color: rgba(255, 255, 255, 0.32); }
.finale .btn-ghost:hover { background: var(--sand-50); color: var(--ink-900); border-color: var(--sand-50); }

/* ===== Founding deposit modal ===== */
.deposit-modal { position: fixed; inset: 0; z-index: 1000; display: none; }
.deposit-modal.open { display: block; }
.deposit-scrim { position: absolute; inset: 0; background: rgba(22, 24, 20, 0.6); backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px); }
.deposit-dialog {
  position: relative; z-index: 1; width: calc(100% - 32px); max-width: 480px;
  margin: 7vh auto 0; max-height: 86vh; overflow-y: auto;
  background: var(--sand-50); border: 1px solid var(--sand-300); border-radius: 14px;
  padding: 34px 30px 30px; box-shadow: 0 30px 80px -24px rgba(22, 24, 20, 0.5);
  animation: depositIn 0.35s var(--ease);
}
@keyframes depositIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.deposit-close {
  position: absolute; top: 12px; right: 14px; width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  border: none; background: transparent; color: var(--stone-500);
  font-size: 26px; line-height: 1; cursor: pointer; border-radius: 6px; transition: background 0.2s, color 0.2s;
}
.deposit-close:hover { background: var(--sand-200); color: var(--ink-900); }
.deposit-dialog .eyebrow { margin-bottom: 12px; }
.deposit-title { font-family: var(--font-display); font-weight: 400; font-size: 32px; line-height: 1.04; color: var(--ink-900); margin: 0 0 10px; }
.deposit-sub { font-family: var(--font-body); font-size: 15px; line-height: 1.5; color: var(--stone-600); margin: 0 0 22px; }
.deposit-fine { font-family: var(--font-body); font-size: 13px; line-height: 1.5; color: var(--stone-500); margin: 16px 0 22px; }
#depositCheckout { min-height: 320px; }
.deposit-err { font-family: var(--font-body); font-size: 14px; color: var(--signal-deep); padding: 22px 0; }
.deposit-waitlist {
  display: inline-block; margin-top: 18px; padding: 0 0 2px; border: none; background: none;
  font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--stone-500); cursor: pointer; border-bottom: 1px solid var(--sand-300); transition: color 0.2s, border-color 0.2s;
}
.deposit-waitlist:hover { color: var(--signal-deep); border-color: var(--signal); }
.deposit-seal { font-size: 30px; color: var(--signal); margin-bottom: 6px; }
.founder-number {
  font-family: var(--font-mono); font-size: 22px; font-weight: 500; letter-spacing: 0.04em;
  color: var(--ink-900); background: var(--sand-150); border: 1px solid var(--sand-300);
  border-radius: 8px; padding: 16px 18px; margin: 6px 0 4px; text-align: center;
}
#depositSuccess .btn-ghost, #depositFull .deposit-waitlist { margin-top: 4px; }
@media (max-width: 520px) {
  .deposit-dialog { margin-top: 3vh; padding: 28px 20px 22px; }
  .deposit-title { font-size: 27px; }
}

/* ============================================================
   Content engine: /guides hub + article pages
   Reuses the lander design tokens — display serif, sand/ink
   palette, sage accents, editorial prose (à la founder story).
   ============================================================ */
.guides-hero { max-width: 820px; padding-top: 150px; padding-bottom: 6px; }
.guides-hero h1 { font-family: var(--font-display); font-weight: 400; font-size: clamp(44px, 7vw, 84px); line-height: 0.98; letter-spacing: -0.02em; margin: 14px 0 0; color: var(--ink-900); }
.guides-hero h1 em { font-style: italic; color: var(--signal-deep); }
.guides-hero p { margin-top: 22px; font-family: var(--font-body); font-size: 19px; line-height: 1.55; color: var(--stone-600); max-width: 580px; }
.guides-wrap { padding-top: 54px; padding-bottom: 120px; }
.guides-cluster { margin-bottom: 60px; }
.guides-cluster-label { font-family: var(--font-mono); font-size: 12px; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--signal-deep); margin: 0 0 22px; padding-bottom: 14px; border-bottom: 1px solid var(--sand-300); }
.guides-list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.guides-card a { display: flex; flex-direction: column; height: 100%; padding: 28px; border: 1px solid var(--sand-300); border-radius: 12px; background: rgba(255,255,255,0.5); text-decoration: none; transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease); }
.guides-card a:hover { transform: translateY(-3px); border-color: var(--signal); box-shadow: 0 18px 40px -22px var(--signal-glow); }
.guides-card h3 { font-family: var(--font-display); font-weight: 400; font-size: 26px; line-height: 1.08; color: var(--ink-900); margin: 0 0 10px; }
.guides-card p { font-family: var(--font-body); font-size: 15px; line-height: 1.5; color: var(--stone-600); margin: 0 0 18px; flex: 1 1 auto; }
.guides-readmore { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--signal-deep); }

.art-hero { max-width: 760px; padding-top: 140px; padding-bottom: 6px; }
.art-back { display: inline-block; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--stone-500); text-decoration: none; }
.art-back:hover { color: var(--signal-deep); }
.art-hero .eyebrow { display: flex; margin-top: 26px; }
.art-title { font-family: var(--font-display); font-weight: 400; font-size: clamp(38px, 5.6vw, 64px); line-height: 1.0; letter-spacing: -0.02em; color: var(--ink-900); margin: 12px 0 0; }
.art-meta { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--stone-500); margin-top: 18px; }
.art-wrap { max-width: 760px; padding-bottom: 70px; }
.art-tldr { max-width: 680px; margin: 36px auto 0; padding: 24px 26px; background: var(--sand-100); border-left: 3px solid var(--signal); border-radius: 0 10px 10px 0; }
.art-tldr-label { display: block; font-family: var(--font-mono); font-size: 11px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--signal-deep); margin-bottom: 8px; }
.art-tldr p { font-family: var(--font-body); font-size: 18px; line-height: 1.55; color: var(--ink-800); margin: 0; }

.art-wrap .prose { max-width: 680px; margin: 0 auto; padding: 18px 0 8px; }
.prose p { font-family: var(--font-body); font-size: 18px; line-height: 1.72; color: var(--ink-700); margin: 0 0 26px; }
.prose h2 { font-family: var(--font-display); font-weight: 400; font-size: clamp(26px, 3.4vw, 36px); line-height: 1.08; letter-spacing: -0.01em; color: var(--ink-900); margin: 48px 0 14px; }
.prose h3 { font-family: var(--font-body); font-weight: 700; font-size: 20px; color: var(--ink-900); margin: 32px 0 10px; }
.prose ul, .prose ol { font-family: var(--font-body); font-size: 18px; line-height: 1.7; color: var(--ink-700); margin: 0 0 26px; padding-left: 24px; }
.prose li { margin-bottom: 8px; }
.prose a { color: var(--signal-deep); text-decoration: underline; text-underline-offset: 2px; text-decoration-thickness: 1px; }
.prose a:hover { color: var(--signal); }
.prose strong { font-weight: 700; color: var(--ink-900); }
.prose em { font-style: italic; }
.prose blockquote { margin: 0 0 26px; padding-left: 20px; border-left: 3px solid var(--sand-300); font-family: var(--font-display); font-size: 24px; line-height: 1.3; color: var(--ink-900); }

.art-disclaimer { max-width: 680px; margin: 10px auto 0; font-family: var(--font-mono); font-size: 12px; line-height: 1.6; letter-spacing: 0.02em; color: var(--stone-500); padding: 14px 16px; border: 1px solid var(--sand-300); border-radius: 8px; background: rgba(255,255,255,0.4); }

.art-faq { max-width: 680px; margin: 56px auto 0; }
.art-faq-h { font-family: var(--font-display); font-weight: 400; font-size: 30px; color: var(--ink-900); margin: 0 0 10px; }
.art-faq .faq-item { display: block; border-bottom: 1px solid var(--sand-300); }
.art-faq .faq-item summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 18px 0; font-family: var(--font-body); font-weight: 600; font-size: 18px; color: var(--ink-900); }
.art-faq .faq-item summary::-webkit-details-marker { display: none; }
.art-faq .faq-item .plus { position: relative; width: 14px; height: 14px; flex: 0 0 auto; }
.art-faq .faq-item .plus::before, .art-faq .faq-item .plus::after { content: ""; position: absolute; background: var(--signal-deep); transition: transform .3s var(--ease); }
.art-faq .faq-item .plus::before { left: 0; top: 6px; width: 14px; height: 2px; }
.art-faq .faq-item .plus::after { left: 6px; top: 0; width: 2px; height: 14px; }
.art-faq .faq-item[open] .plus::after { transform: scaleY(0); }
.art-faq .faq-answer { padding: 0 0 18px; }
.art-faq .faq-answer p { font-family: var(--font-body); font-size: 16px; line-height: 1.6; color: var(--stone-600); margin: 0; }

.art-related { max-width: 680px; margin: 56px auto 0; padding-top: 28px; border-top: 1px solid var(--sand-300); }
.art-related ul { list-style: none; margin: 14px 0 0; padding: 0; }
.art-related li { margin-bottom: 10px; }
.art-related a { font-family: var(--font-display); font-size: 22px; color: var(--ink-900); text-decoration: none; }
.art-related a:hover { color: var(--signal-deep); }

.art-cta { position: relative; overflow: hidden; max-width: 760px; margin: 64px auto 0; background: var(--ink-900); color: var(--sand-50); border-radius: 16px; padding: 52px 44px; text-align: center; }
.art-cta .mesh { opacity: 0.5; }
.art-cta-inner { position: relative; z-index: 2; }
.art-cta h2 { font-family: var(--font-display); font-weight: 400; font-size: clamp(28px, 4vw, 40px); line-height: 1.04; color: var(--sand-50); margin: 0 0 14px; }
.art-cta p { font-family: var(--font-body); font-size: 16px; line-height: 1.55; color: var(--stone-400); max-width: 460px; margin: 0 auto 26px; }

@media (max-width: 720px) {
  .guides-list { grid-template-columns: 1fr; }
  .art-cta { padding: 40px 24px; }
}
