/* ═══════════════════════════════════════════════════════════════════
   NAYA v2 — shared design system
   Extracted VERBATIM from the homepage (index.html) on 2026-06-27 as the
   single source of truth for the sitewide unification. The homepage keeps
   its own inline copy (untouched); every OTHER page links this file so it
   inherits the identical look. Update this file to restyle the whole site.
   Pair with the Google Fonts <link> (Newsreader + Hanken Grotesk + IBM Plex Mono).
   ═══════════════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════════════════
   NAYA — landing page (2026 redesign)
   Warm dusk environment · Newsreader editorial serif · Hanken body ·
   IBM Plex Mono labels. Built on the Naya visual language: warm white
   on a warm near-black floor, amber accent, breathing glow, matte glass.
   ═══════════════════════════════════════════════════════════════════ */

:root {
  /* warm amber hue — matches the Naya brand amber (#E4A86E) and the gold in the product renders */
  --hue: 60;
  --bg0: #0a0b0e;
  --bg1: oklch(0.205 0.022 var(--hue));
  --ink: oklch(0.965 0.004 var(--hue));
  --ink2: oklch(0.965 0.004 var(--hue) / 0.64);
  --ink3: oklch(0.965 0.004 var(--hue) / 0.56);
  --accent: oklch(0.80 0.105 var(--hue));
  --accentDeep: oklch(0.62 0.13 var(--hue));
  --accentSoft: oklch(0.80 0.10 var(--hue) / 0.14);
  --glow: oklch(0.74 0.13 var(--hue));
  --hair: rgba(255,255,255,0.09);
  --card: rgba(255,255,255,0.045);
  --cardBorder: rgba(255,255,255,0.085);
  --onAccent: oklch(0.16 0.02 var(--hue));

  --cool: oklch(0.82 0.06 165);
  --lilac: oklch(0.80 0.06 320);
  --blue: oklch(0.78 0.07 250);

  --serif: 'Newsreader', Georgia, serif;
  --sans:  'Hanken Grotesk', system-ui, -apple-system, sans-serif;
  --mono:  'IBM Plex Mono', ui-monospace, monospace;

  --maxw: 1120px;
  --gutter: clamp(22px, 5vw, 32px);
}

* { box-sizing: border-box; -webkit-font-smoothing: antialiased; margin: 0; -webkit-tap-highlight-color: transparent; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body { background: var(--bg0); color: var(--ink); font-family: var(--sans); font-weight: 350; line-height: 1.6; overflow-x: hidden; text-rendering: optimizeLegibility; }
.serif { font-family: var(--serif); font-weight: 300; letter-spacing: -0.01em; }
.mono  { font-family: var(--mono); }
em { font-style: italic; color: var(--accent); }
a { color: inherit; text-decoration: none; }
img, svg, picture { display: block; max-width: 100%; }
h1, h2, h3, h4, h5 { margin: 0; font-weight: 300; }
::selection { background: var(--accentSoft); color: var(--ink); }
button { border: 0; background: none; color: inherit; font: inherit; padding: 0; cursor: pointer; }

/* ─── ambient backdrop ─── */
.atmosphere { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; background: #0a0b0e; }
.atmosphere .glow { position: absolute; top: -12%; left: 50%; transform: translateX(-50%); width: 128%; height: 76%;
  background: radial-gradient(48% 54% at 50% 42%, rgba(140,156,196,0.72) 0%, transparent 68%); filter: blur(54px); opacity: 0.5; animation: breathe 17s ease-in-out infinite; }
.atmosphere .fog { position: absolute; inset: -3%; pointer-events: none;
  background: radial-gradient(120% 92% at 50% 14%, transparent 34%, rgba(0,0,0,0.66) 100%); }
@keyframes breathe { 0%,100% { opacity: 0.26; transform: translateX(-50%) scale(1); } 50% { opacity: 0.38; transform: translateX(-50%) scale(1.12); } }
@keyframes drift { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-6%,5%); } }

/* film grain */
.grain { position: fixed; inset: 0; z-index: 1; pointer-events: none; opacity: 0.045; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20width%3D%27220%27%20height%3D%27220%27%3E%3Cfilter%20id%3D%27n%27%3E%3CfeTurbulence%20type%3D%27fractalNoise%27%20baseFrequency%3D%270.82%27%20numOctaves%3D%273%27%20stitchTiles%3D%27stitch%27%2F%3E%3C%2Ffilter%3E%3Crect%20width%3D%27100%25%27%20height%3D%27100%25%27%20filter%3D%27url(%23n)%27%2F%3E%3C%2Fsvg%3E"); }

/* ─── primitives ─── */
.wrap { position: relative; z-index: 2; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.skip { position: absolute; left: 14px; top: -64px; z-index: 100; background: var(--accent); color: var(--onAccent); font-weight: 600; font-size: 14px; padding: 10px 16px; border-radius: 10px; transition: top .2s ease; }
.skip:focus { top: 14px; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 4px; }
.waitform input:focus-visible, .seatform textarea:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.form-err { margin-top: 10px; font-size: 13px; line-height: 1.4; color: oklch(0.80 0.10 32); display: none; }
.form-err.show { display: block; }
.begin-cta .form-err { text-align: center; }
.eyebrow { font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent); display: inline-flex; align-items: center; gap: 9px; }
.eyebrow .pip { width: 5px; height: 5px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 8px var(--glow); }
.eyebrow.cool { color: var(--cool); } .eyebrow.cool .pip { background: var(--cool); box-shadow: 0 0 8px var(--cool); }
.eyebrow.lilac { color: var(--lilac); } .eyebrow.lilac .pip { background: var(--lilac); box-shadow: 0 0 8px var(--lilac); }

.s-head { max-width: 760px; }
.s-head .h2 { font-family: var(--serif); font-weight: 300; font-size: clamp(30px, 4.4vw, 52px); line-height: 1.1; letter-spacing: -0.01em; text-wrap: balance; margin-top: 18px; }
.s-head .sub { font-size: 18px; color: var(--ink2); font-weight: 300; line-height: 1.6; margin-top: 20px; max-width: 600px; }

/* buttons */
.btn { font-family: var(--sans); font-size: 14.5px; font-weight: 500; padding: 12px 22px; border-radius: 100px; cursor: pointer;
  border: 0.5px solid var(--cardBorder); background: rgba(255,255,255,0.05); color: var(--ink); display: inline-flex; align-items: center; gap: 9px;
  transition: transform .4s cubic-bezier(.2,.7,.2,1), box-shadow .4s ease, border-color .4s ease; }
.btn:hover { transform: translateY(-1px); }
.btn.primary { background: var(--accent); color: var(--onAccent); border-color: var(--accent); font-weight: 600; }
.btn.primary:hover { box-shadow: 0 8px 30px oklch(0.74 0.13 var(--hue) / 0.3); }
.btn .arr { transition: transform .4s ease; }
.btn:hover .arr { transform: translateX(3px); }

/* ─── nav ─── */
nav.top { position: sticky; top: 0; z-index: 50; backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  background: rgba(10, 11, 14, 0.62); border-bottom: 0.5px solid var(--hair); }
nav.top .row { max-width: var(--maxw); margin: 0 auto; padding: 15px var(--gutter); display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.logo { display: flex; align-items: center; gap: 11px; font-family: var(--serif); font-size: 22px; font-weight: 400; }
.logo .mark { width: 26px; height: 26px; border-radius: 8px; position: relative; overflow: hidden; flex-shrink: 0;
  background: linear-gradient(160deg, oklch(0.30 0.04 var(--hue)), oklch(0.18 0.03 var(--hue))); }
.logo .mark::before { content:''; position:absolute; left:50%; top:0; bottom:0; width:1.4px; transform:translateX(-50%); background: linear-gradient(180deg, transparent, var(--accent) 28%, var(--accent) 72%, transparent); }
.logo .mark::after { content:''; position:absolute; left:50%; top:50%; transform:translate(-50%,-50%); width:5px; height:5px; border-radius:50%; background: var(--accent); box-shadow: 0 0 7px var(--glow); }
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a.navlink { font-size: 14px; color: var(--ink2); transition: color .3s ease; }
.nav-links a.navlink:hover { color: var(--ink); }
@media (max-width: 760px) { .nav-links a.navlink { display: none; } }
/* ─── jump-to-section dropdown ─── */
.jump { position: relative; }
.jump-btn { font-family: var(--sans); font-size: 14px; font-weight: 500; padding: 9px 15px; border-radius: 100px; border: 0.5px solid var(--cardBorder); background: rgba(255,255,255,0.05); color: var(--ink); display: inline-flex; align-items: center; gap: 7px; cursor: pointer; white-space: nowrap; transition: border-color .3s ease, background .3s ease; }
.jump-btn:hover { border-color: var(--accent); background: rgba(255,255,255,0.08); }
.jump-caret { font-size: 10px; color: var(--accent); line-height: 1; transition: transform .3s ease; }
.jump[data-open="true"] .jump-caret { transform: rotate(180deg); }
.jump-menu { position: absolute; top: calc(100% + 12px); right: 0; min-width: 224px; padding: 8px; border-radius: 16px; background: rgba(14,15,19,0.97); border: 0.5px solid var(--cardBorder); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); box-shadow: 0 24px 60px rgba(0,0,0,0.55); display: flex; flex-direction: column; gap: 2px; z-index: 60; }
.jump-menu[hidden] { display: none; }
.jump-menu a { font-size: 14.5px; font-weight: 300; color: var(--ink2); padding: 10px 14px; border-radius: 11px; white-space: nowrap; transition: background .2s ease, color .2s ease; }
.jump-menu a:hover { background: rgba(255,255,255,0.06); color: var(--ink); }
.jump-menu a.jump-cta { color: var(--accent); margin-top: 5px; padding-top: 13px; border-top: 0.5px solid var(--hair); }
@media (max-width: 760px) { .nav-links { gap: 12px; } .jump-btn { padding: 8px 13px; } .jump-menu { position: fixed; top: 60px; right: var(--gutter); left: auto; min-width: 200px; } }

/* ─── hero ─── */
.hero { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 44px; align-items: center; padding: 44px 0 44px; }
.hero h1 { font-family: var(--serif); font-weight: 300; font-size: clamp(40px, 5.2vw, 64px); line-height: 1.06; letter-spacing: -0.02em; margin-top: 22px; text-wrap: balance; }
.hero .sub { font-size: clamp(17px, 2vw, 20px); font-weight: 300; color: var(--ink2); line-height: 1.55; margin-top: 22px; max-width: 520px; }

/* waitlist form */
.waitform { margin-top: 30px; max-width: 480px; }
.waitform .field { display: flex; gap: 8px; padding: 5px; border-radius: 100px; background: rgba(255,255,255,0.05); border: 0.5px solid var(--cardBorder); backdrop-filter: blur(14px); transition: border-color .4s ease, box-shadow .4s ease; }
.waitform .field:focus-within { border-color: var(--accent); }
.waitform input { flex: 1; min-width: 0; background: none; border: none; outline: none; color: var(--ink); font-family: var(--sans); font-size: 16px; font-weight: 300; padding: 11px 18px; }
.waitform input::placeholder { color: var(--ink3); }
.waitform button { flex-shrink: 0; border: none; background: var(--accent); color: var(--onAccent); font-family: var(--sans); font-size: 15px; font-weight: 600; padding: 0 22px; border-radius: 100px; cursor: pointer; transition: box-shadow .4s cubic-bezier(.2,.7,.2,1), opacity .3s ease; }
.waitform button:hover { box-shadow: 0 8px 26px oklch(0.74 0.13 var(--hue) / 0.32); }
.micro { display: flex; align-items: center; gap: 16px; margin-top: 16px; font-size: 12.5px; color: var(--ink3); flex-wrap: wrap; }
.micro .d { display: inline-flex; align-items: center; gap: 7px; }
.micro .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--accent); opacity: 0.7; }
.micro b { color: var(--accent); font-weight: 500; }
.success { margin-top: 30px; max-width: 480px; padding: 22px 24px; border-radius: 20px; background: var(--accentSoft); border: 0.5px solid var(--accent); display: none; }
.success.show { display: block; animation: rise .7s cubic-bezier(.2,.7,.2,1) both; }
.success .s1 { font-family: var(--serif); font-size: 22px; font-weight: 300; }
.success .s2 { font-size: 14px; color: var(--ink2); font-weight: 300; margin-top: 6px; line-height: 1.5; }
@keyframes rise { from { opacity:0; transform: translateY(10px); } to { opacity:1; transform:none; } }

/* app screenshots in a synthetic iPhone bezel — the screens already include the
   iOS status bar, dynamic island, and home indicator, so they sit inside the frame */
.podium { position: relative; width: 100%; max-width: 274px; margin: 0 auto;
  padding: 8px; border-radius: 16% / 7.6%;
  background: linear-gradient(152deg, #43434a 0%, #15151a 12%, #0b0b0d 50%, #16161b 88%, #34343b 100%);
  box-shadow: 0 30px 62px rgba(0,0,0,0.55), inset 0 0 0 1px rgba(255,255,255,0.06); }
.podium img { position: relative; width: 100%; height: auto; display: block; border-radius: 11.5% / 6%;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.6); }
/* cap the hero phone by viewport HEIGHT so the whole device + caption always
   sit above the fold (with margin), at any window height */
.hero .podium { max-width: 460px; }
.hero .podium img { width: 100%; height: auto; max-height: none; margin: 0 auto; }
.hero .podcap { margin-top: 14px; }
@media (max-width: 880px) {
  .hero .podium { max-width: 360px; }
  .hero .podium img { width: 100%; max-height: none; }
}
.podcap { margin-top: 20px; text-align: center; font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink3);
  display: flex; align-items: center; justify-content: center; gap: 8px; }
.podcap .d { width: 5px; height: 5px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 8px var(--glow); }

/* ─── trust bar ─── */
.trustbar { position: relative; z-index: 2; display: flex; align-items: center; justify-content: center; gap: 30px; flex-wrap: wrap; padding: 26px var(--gutter); border-top: 0.5px solid var(--hair); border-bottom: 0.5px solid var(--hair); }
.trustbar span { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink3); }
.trustbar b { color: var(--accent); font-weight: 500; }

/* ─── sections ─── */
section.block { padding: 92px 0; }
.lede-head { font-family: var(--serif); font-weight: 300; font-size: clamp(30px, 4.4vw, 52px); line-height: 1.1; letter-spacing: -0.01em; text-wrap: balance; max-width: 760px; margin-top: 18px; }
.lede-head + p { font-size: 18px; color: var(--ink2); font-weight: 300; line-height: 1.6; margin-top: 22px; max-width: 600px; }

/* why naya — centered manifesto */
.whynaya { text-align: center; }
.whynaya .eyebrow { justify-content: center; }
.whynaya .lede-head { max-width: 800px; margin-left: auto; margin-right: auto; }
.whynaya .lede-head + p { max-width: 580px; margin-left: auto; margin-right: auto; font-size: 19px; }

/* pillars */
.pillars { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 44px; }
.pillar { padding: 30px; border-radius: 24px; background: var(--card); border: 0.5px solid var(--cardBorder); }
.pillar .pk { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); }
.pillar h3 { font-family: var(--serif); font-weight: 300; font-size: 26px; margin-top: 12px; line-height: 1.15; }
.pillar p { font-size: 14.5px; color: var(--ink2); font-weight: 300; line-height: 1.55; margin-top: 10px; }

/* ─── showcase beats ─── */
.beat { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; padding: 72px 0; }
.beat.reverse .copy { order: 2; } .beat.reverse .stage { order: 1; }
.beat .num { font-family: var(--mono); font-size: 12px; letter-spacing: 0.2em; color: var(--ink3); }
.beat h2 { font-family: var(--serif); font-weight: 300; font-size: clamp(28px, 4vw, 44px); line-height: 1.1; margin-top: 14px; letter-spacing: -0.01em; text-wrap: balance; }
.beat p { font-size: 17px; font-weight: 300; color: var(--ink2); line-height: 1.6; margin-top: 18px; max-width: 460px; }
.beat .note { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink3); margin-top: 18px; display: inline-flex; align-items: center; gap: 8px; }
.beat .note::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 8px var(--glow); }
/* Hero/trust keep the original flex centering (their phone is wrapped in a div,
   so there's no auto-margin-on-a-flex-item conflict). */
.stage { display: flex; justify-content: center; min-width: 0; }
/* Beats: the podium is the direct child, so center it with classic block
   margin:auto instead of flex — Safari shifts flex-justify + auto-margin sideways. */
.beat .stage { display: block; text-align: center; }
/* Give the beat phone an EXPLICIT width rather than width:100%+max-width.
   Safari 18.x does not center a width:100% + max-width + margin:auto block
   reliably (it leaves the phone shifted/clipped); an explicit width + margin:auto
   centers identically in every Safari. max-width:100% lets it shrink on narrow. */
.beat .podium { width: 274px; max-width: 100%; }
/* let grid tracks shrink to the viewport so nothing forces horizontal overflow */
.hero > *, .beat > * { min-width: 0; }

/* ─── refusals ─── */
.refuse { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px 36px; margin-top: 40px; max-width: 820px; }
.refuse .r { display: flex; align-items: flex-start; gap: 13px; }
.refuse .x { flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%; border: 0.5px solid var(--cardBorder); display: flex; align-items: center; justify-content: center; color: var(--ink3); margin-top: 1px; font-size: 11px; }
.refuse .rt { font-size: 15.5px; color: var(--ink); font-weight: 400; }
.refuse .rs { font-size: 13px; color: var(--ink2); font-weight: 300; margin-top: 2px; line-height: 1.45; }

/* ─── helps with ─── */
.helps-list { margin-top: 40px; border-top: 0.5px solid var(--hair); }
.helps-row { display: grid; grid-template-columns: 24px 1fr auto; gap: 16px; align-items: center; padding: 22px 8px; border-bottom: 0.5px solid var(--hair); transition: background .3s ease, padding-left .3s ease; }
.helps-row:hover { background: rgba(255,255,255,0.025); padding-left: 16px; }
.helps-row .hr-arr { color: var(--accent); font-size: 16px; }
.helps-row .hr-title { display: block; font-size: 18px; color: var(--ink); }
.helps-row .hr-sub { display: block; font-size: 14px; color: var(--ink2); font-weight: 300; line-height: 1.5; margin-top: 4px; max-width: 640px; }
.helps-row .hr-url { font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; color: var(--ink3); }
@media (max-width: 640px) { .helps-row { grid-template-columns: 20px 1fr; } .helps-row .hr-url { display: none; } }

/* ─── notes & trust ─── */
.notes-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 40px; max-width: 720px; }
.notes-grid-6 { grid-template-columns: repeat(3, 1fr); max-width: none; }
.note-card { border-radius: 22px; padding: 24px; background: var(--card); border: 0.5px solid var(--cardBorder); transition: transform .5s cubic-bezier(.2,.7,.2,1), border-color .5s ease; display: block; }
.note-card:hover { transform: translateY(-4px); border-color: var(--note-accent, var(--accent)); }
.note-card .nc-tag { font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--note-accent, var(--accent)); }
.note-card h3 { font-family: var(--serif); font-weight: 300; font-size: 21px; line-height: 1.2; margin-top: 14px; }
.note-card p { font-size: 13.5px; color: var(--ink2); font-weight: 300; line-height: 1.5; margin-top: 10px; }
.note-card .nc-read { display: inline-block; margin-top: 16px; font-size: 13px; color: var(--note-accent, var(--accent)); }
.trust-layout { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(36px, 6vw, 72px); align-items: center; margin-top: 64px; padding-top: 64px; border-top: 0.5px solid var(--hair); }
.trust-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.trust-chip { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; color: var(--ink2); font-weight: 300; padding: 14px 16px; border-radius: 14px; background: var(--card); border: 0.5px solid var(--cardBorder); }
.trust-chip .check { width: 15px; height: 15px; flex-shrink: 0; margin-top: 2px; color: var(--cool); }
.trust-aside .micro-note { font-size: 13px; color: var(--ink2); font-weight: 300; line-height: 1.5; margin-top: 18px; max-width: 420px; }
/* Trust: real Trust screen (in .podium bezel) is the proof; a quiet 3-line scan-line replaces the 8-chip grid */
.trust-proof-layout { align-items: center; }
.trust-scan { list-style: none; margin: 24px 0 0; padding: 0; display: flex; flex-direction: column; gap: 10px; max-width: 420px; }
.trust-scan .trust-chip { align-items: center; }
.trust-scan .trust-chip .check { margin-top: 0; }
@media (max-width: 880px) { .trust-proof-layout .stage { margin-top: 4px; } }

/* ─── begin (final CTA + faq) ─── */
.begin-cta { text-align: center; padding-top: 36px; }
.begin-cta .promise { font-family: var(--serif); font-weight: 300; font-size: clamp(34px, 5.4vw, 60px); line-height: 1.1; letter-spacing: -0.01em; margin-top: 18px; }
.begin-cta .seal { font-family: var(--serif); font-style: italic; font-weight: 300; font-size: clamp(16px, 2vw, 19px); color: var(--ink2); margin-top: 16px; }
.begin-cta .waitform { margin: 34px auto 0; }
.begin-cta .micro { justify-content: center; }
.begin-cta .success { margin-left: auto; margin-right: auto; }
.trust-pills { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; margin-top: 26px; }
.trust-pills span { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink3); padding: 8px 14px; border-radius: 100px; border: 0.5px solid var(--hair); }
.trust-pills span.lit { color: var(--accent); border-color: var(--accentSoft); }

.faq-wrap { margin-top: 88px; padding-top: 64px; border-top: 0.5px solid var(--hair); }
.faq-list { margin-top: 36px; max-width: 820px; }
.faq { border-bottom: 0.5px solid var(--hair); }
.faq summary { list-style: none; cursor: pointer; padding: 20px 0; font-size: 17px; color: var(--ink); display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; color: var(--accent); font-size: 20px; font-weight: 300; transition: transform .3s ease; }
.faq[open] summary::after { transform: rotate(45deg); }
.faq .ans { font-size: 15px; color: var(--ink2); font-weight: 300; line-height: 1.6; padding: 0 0 22px; max-width: 720px; }

/* ─── footer ─── */
footer.site { border-top: 0.5px solid var(--hair); padding: 64px 0 56px; position: relative; z-index: 2; }
.ft-top { display: flex; align-items: center; gap: 11px; font-family: var(--serif); font-size: 22px; }
.ft-cols { display: grid; grid-template-columns: 1.6fr repeat(4, 1fr); gap: 36px; margin-top: 36px; }
.ft-cols .blurb { font-size: 14px; color: var(--ink2); font-weight: 300; line-height: 1.6; max-width: 300px; }
.ft-col h5 { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink2); margin-bottom: 14px; font-weight: 500; }
.ft-col a { display: block; font-size: 13.5px; color: var(--ink2); font-weight: 300; padding: 5px 0; transition: color .3s ease; }
.ft-col a:hover { color: var(--ink); }
.ft-legal { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; margin-top: 48px; padding-top: 28px; border-top: 0.5px solid var(--hair); font-size: 12px; color: var(--ink3); font-weight: 300; }
.ft-legal .mark { font-family: var(--mono); letter-spacing: 0.08em; }
@media (max-width: 880px) { .ft-cols { grid-template-columns: 1fr 1fr; gap: 28px; } .ft-cols .blurb { grid-column: 1 / -1; max-width: none; } }

/* ─── sticky mobile CTA ─── */
.sticky-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; transform: translateY(120%); transition: transform .45s cubic-bezier(.2,.7,.2,1);
  padding: 12px var(--gutter) calc(12px + env(safe-area-inset-bottom)); background: rgba(10, 11, 14, 0.86); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-top: 0.5px solid var(--hair); }
.sticky-cta.show { transform: translateY(0); }
.sticky-cta .sc-inner { max-width: var(--maxw); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.sticky-cta .l1 { font-size: 14.5px; color: var(--ink); }
.sticky-cta .l2 { font-size: 12px; color: var(--ink3); margin-top: 2px; }
.sticky-cta .sc-btn { flex-shrink: 0; background: var(--accent); color: var(--onAccent); font-weight: 600; font-size: 14px; padding: 11px 22px; border-radius: 100px; }
@media (min-width: 761px) { .sticky-cta { display: none; } }

/* ─── reveal ─── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 1s ease, transform 1s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } .atmosphere .glow, .atmosphere .fog { animation: none; } }

/* ─── responsive ─── */
@media (max-width: 880px) {
  .hero { grid-template-columns: 1fr; gap: 40px; padding-top: 60px; }
  .hero .stage, .hero .podium { order: -1; }
  .pillars, .refuse { grid-template-columns: 1fr; }
  .beat { grid-template-columns: 1fr; gap: 32px; padding: 56px 0; }
  .beat.reverse .copy, .beat.reverse .stage { order: unset; }
  .notes-grid { grid-template-columns: 1fr 1fr; }
  .trust-layout { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 560px) { .notes-grid { grid-template-columns: 1fr; } .trust-grid { grid-template-columns: 1fr; } }
/* narrow phones: scale the app screens down so they keep clear side margins
   instead of crowding the screen edges (fixes the cramped/edge-to-edge look) */
@media (max-width: 480px) {
  .beat .podium, .trust-proof-layout .podium { max-width: min(274px, 74vw); }
  .hero .podium { max-width: min(380px, 94vw); }
}

/* ─── article / long-form reading (field notes, founder note) — sub-pages only ─── */
.article { max-width: 720px; margin: 0 auto; padding: 60px 0 8px; }
.article .breadcrumb { font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; color: var(--ink3); display: flex; gap: 9px; align-items: center; margin-bottom: 24px; }
.article .breadcrumb a { color: var(--ink2); } .article .breadcrumb a:hover { color: var(--ink); }
.article .breadcrumb .sep { color: var(--ink3); }
.article h1 { font-family: var(--serif); font-weight: 300; font-size: clamp(36px, 5vw, 56px); line-height: 1.07; letter-spacing: -0.02em; margin-top: 16px; text-wrap: balance; }
.article .byline { display: flex; align-items: center; gap: 12px; margin-top: 28px; padding-bottom: 28px; border-bottom: 0.5px solid var(--hair); }
.article .byline .avatar { width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0; border: 0.5px solid var(--cardBorder); background: linear-gradient(160deg, oklch(0.30 0.04 var(--hue)), oklch(0.18 0.03 var(--hue))); }
.article .byline .by-name { font-size: 15px; color: var(--ink); }
.article .byline .by-role { font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; color: var(--ink3); margin-top: 3px; }
.article .prose { margin-top: 32px; }
.article .prose p { font-size: 18px; color: var(--ink2); font-weight: 300; line-height: 1.72; margin-top: 22px; }
.article .prose p:first-child { margin-top: 0; }
.article .prose em { color: var(--accent); font-style: italic; }
.article .prose a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 0.5px; }
.article h2 { font-family: var(--serif); font-weight: 300; font-size: clamp(26px, 3.4vw, 34px); line-height: 1.15; letter-spacing: -0.01em; margin-top: 56px; }
.article h3 { font-family: var(--serif); font-weight: 400; font-size: 21px; line-height: 1.25; margin-top: 40px; }
.article .pull { font-family: var(--serif); font-weight: 300; font-style: italic; font-size: clamp(22px, 3vw, 29px); line-height: 1.34; color: var(--ink); margin: 46px 0; padding-left: 24px; border-left: 2px solid var(--accent); }
.article .pull em { color: var(--accent); }
.article ul { margin: 22px 0 0; padding-left: 22px; }
.article li { font-size: 17px; color: var(--ink2); font-weight: 300; line-height: 1.6; margin-top: 10px; }
.article .signoff { font-family: var(--mono); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink3); margin-top: 16px; }

/* article sub-components (multi-scene essays) */
.article .section { margin-top: 56px; }
.article .section > .eyebrow + h2 { margin-top: 16px; }
.article .signs { margin: 24px 0 0; border-top: 0.5px solid var(--hair); }
.article .signs .sign { font-size: 16px; color: var(--ink); font-weight: 300; line-height: 1.4; padding: 13px 2px; border-bottom: 0.5px solid var(--hair); }
.article .answer { margin-top: 26px; padding: 20px 24px; border-radius: 18px; background: var(--card); border: 0.5px solid var(--cardBorder); }
.article .answer .answer-label { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); display: block; margin-bottom: 9px; }
.article .answer p { font-size: 16px; color: var(--ink2); font-weight: 300; line-height: 1.6; margin: 0; }
.article .faq-wrap { margin-top: 56px; padding-top: 36px; border-top: 0.5px solid var(--hair); }
.article .faq-wrap > .eyebrow + h2 { margin-top: 14px; }
.article .next { display: block; margin-top: 48px; padding: 22px 24px; border-radius: 18px; background: var(--card); border: 0.5px solid var(--cardBorder); transition: border-color .4s ease, transform .4s ease; }
.article .next:hover { border-color: var(--accent); transform: translateY(-2px); }
.article .next .nx-label { font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); }
.article .next .nx-title { display:block; font-family: var(--serif); font-size: 20px; color: var(--ink); margin-top: 8px; }
.article .notes-grid { margin-top: 44px; }

/* article: bare blockquote = pull-quote; legacy related-links + soft */
.article blockquote { font-family: var(--serif); font-weight: 300; font-style: italic; font-size: clamp(22px, 3vw, 29px); line-height: 1.34; color: var(--ink); margin: 46px 0; padding-left: 24px; border-left: 2px solid var(--accent); }
.article blockquote em { color: var(--accent); }
.article .prose .soft { color: var(--ink2); }
.article .link-list { margin-top: 10px; }
.article .link-row { display: flex; align-items: flex-start; gap: 14px; padding: 18px 4px; border-bottom: 0.5px solid var(--hair); transition: padding-left .3s ease, background .3s ease; }
.article .link-row:hover { padding-left: 10px; }
.article .link-row .arr { color: var(--accent); font-size: 15px; margin-top: 2px; flex-shrink: 0; }
.article .link-row .copy { display: flex; flex-direction: column; font-size: 16px; color: var(--ink); }
.article .link-row .note { font-size: 13px; color: var(--ink2); font-weight: 300; margin-top: 3px; }

/* ─── clarity utilities (orientation steps / comparison / promises) — used by sub-pages via v2.css ─── */
.steps3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 40px; }
.helpful-for { margin-top: 36px; font-size: 13.5px; color: var(--ink2); font-weight: 300; line-height: 1.7; max-width: 800px; }
.helpful-for .hf-label { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); margin-right: 10px; }
.compare2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 40px; max-width: 860px; }
.compare2 .col { padding: 26px 28px; border-radius: 24px; background: var(--card); border: 0.5px solid var(--cardBorder); }
.compare2 .col.naya { border-color: var(--accentSoft); background: var(--accentSoft); }
.compare2 .col h4 { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink3); font-weight: 500; }
.compare2 .col.naya h4 { color: var(--accent); }
.compare2 .col ul { list-style: none; margin: 16px 0 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.compare2 .col li { font-size: 14px; color: var(--ink2); font-weight: 300; line-height: 1.45; padding-left: 22px; position: relative; }
.compare2 .col li::before { content: '·'; position: absolute; left: 7px; top: -1px; color: var(--ink3); }
.compare2 .col.naya li { color: var(--ink); }
.compare2 .col.naya li::before { content: '✓'; left: 3px; font-size: 11px; color: var(--cool); }
.promises { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 36px; margin-top: 40px; max-width: 860px; }
.promises .p { display: flex; align-items: flex-start; gap: 13px; }
.promises .ok { flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%; border: 0.5px solid var(--accentSoft); background: var(--accentSoft); display: flex; align-items: center; justify-content: center; color: var(--accent); margin-top: 1px; font-size: 11px; }
.promises .pt { font-size: 15.5px; color: var(--ink); font-weight: 400; }
.promises .ps { font-size: 13px; color: var(--ink2); font-weight: 300; margin-top: 2px; line-height: 1.45; }
@media (max-width: 760px) { .steps3 { grid-template-columns: 1fr; } }
@media (max-width: 640px) { .compare2 { grid-template-columns: 1fr; } .promises { grid-template-columns: 1fr; } }

/* ─── pricing plans + standalone pull-quote (sub-pages) ─── */
.plans { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 18px; margin-top: 40px; max-width: 840px; align-items: start; }
.plan { padding: 30px 30px 32px; border-radius: 24px; background: var(--card); border: 0.5px solid var(--cardBorder); }
.plan.lit { border-color: var(--accentSoft); background: var(--accentSoft); }
.plan .tier-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.plan .tier { font-family: var(--serif); font-size: 22px; font-weight: 400; }
.plan .tag { font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); }
.plan.coming .tag { color: var(--lilac); }
.plan .amt { font-family: var(--serif); font-weight: 300; font-size: 42px; line-height: 1; margin-top: 18px; letter-spacing: -0.01em; }
.plan .amt small { font-size: 15px; color: var(--ink2); font-weight: 300; }
.plan .amt .alt { display: block; font-family: var(--sans); font-size: 13px; color: var(--ink3); margin-top: 9px; letter-spacing: 0; }
.plan .pdesc { font-size: 14px; color: var(--ink2); font-weight: 300; line-height: 1.55; margin-top: 16px; }
.plan ul { list-style: none; margin: 20px 0 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.plan li { font-size: 14px; color: var(--ink2); font-weight: 300; line-height: 1.45; padding-left: 22px; position: relative; }
.plan li::before { content: '✓'; position: absolute; left: 2px; top: 0; color: var(--cool); font-size: 11px; }
.plan .plan-note { font-size: 12.5px; color: var(--ink3); font-weight: 300; margin-top: 20px; line-height: 1.5; }
.pullquote { font-family: var(--serif); font-weight: 300; font-style: italic; font-size: clamp(23px, 3.4vw, 33px); line-height: 1.3; color: var(--ink); max-width: 720px; margin: 36px 0 0; }
.pullquote em { color: var(--accent); }
@media (max-width: 700px) { .plans { grid-template-columns: 1fr; } }

/* ─── request-a-seat: optional note textarea (pairs with .waitform email row) ─── */
.seatform { margin-top: 26px; max-width: 520px; }
.seatform textarea { width: 100%; margin-top: 12px; background: rgba(255,255,255,0.05); border: 0.5px solid var(--cardBorder); border-radius: 18px; color: var(--ink); font-family: var(--sans); font-size: 15px; font-weight: 300; line-height: 1.55; padding: 14px 18px; resize: vertical; min-height: 80px; transition: border-color .4s ease; }
.seatform textarea::placeholder { color: var(--ink3); }
.seatform textarea:focus { outline: none; border-color: var(--accent); }
.seatform .opt { font-size: 12px; color: var(--ink3); font-weight: 300; margin-top: 8px; }

/* ─── rows2 (who-it-helps / who's-stepping-through) — for sub-pages ─── */
.rows2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px 36px; margin-top: 40px; max-width: 860px; }
.rows2 .r2 { display: flex; align-items: flex-start; gap: 13px; }
.rows2 .r2 .dt { flex-shrink: 0; width: 6px; height: 6px; border-radius: 50%; margin-top: 9px; background: var(--accent); box-shadow: 0 0 8px var(--glow); }
.rows2 .r2 .rt { font-size: 16px; color: var(--ink); font-weight: 400; }
.rows2 .r2 .rs { font-size: 13.5px; color: var(--ink2); font-weight: 300; margin-top: 3px; line-height: 1.5; }
@media (max-width: 640px) { .rows2 { grid-template-columns: 1fr; } }

/* ─── legacy content components reused on trust pages (kv-list / refusal-list / duo-row / cta-block) ─── */
.article .kv-list { display: flex; flex-direction: column; gap: 1px; margin-top: 10px; border-top: 0.5px solid var(--hair); }
.article .kv-row { display: grid; grid-template-columns: 96px 1fr; gap: 18px; padding: 16px 2px; border-bottom: 0.5px solid var(--hair); align-items: start; }
.article .kv-row .key { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); padding-top: 3px; }
.article .kv-row .val { font-size: 16px; color: var(--ink); font-weight: 300; line-height: 1.5; margin: 0; }
.article .kv-row .val .quiet { display: block; font-size: 13.5px; color: var(--ink2); margin-top: 5px; line-height: 1.5; }
.article .refusal-list { display: flex; flex-direction: column; gap: 12px; margin-top: 22px; }
.article .refusal { padding: 16px 18px; border-radius: 16px; background: var(--card); border: 0.5px solid var(--cardBorder); }
.article .refusal .no { font-size: 16px; color: var(--ink); font-weight: 400; margin: 0; padding-left: 24px; position: relative; }
.article .refusal .no::before { content: '\2715'; position: absolute; left: 2px; color: var(--ink3); font-size: 12px; }
.article .refusal .why { font-size: 13.5px; color: var(--ink2); font-weight: 300; margin: 6px 0 0; line-height: 1.5; padding-left: 24px; }
.article .duo-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 22px; }
.article .duo-row .from, .article .duo-row .to { padding: 18px 20px; border-radius: 18px; background: var(--card); border: 0.5px solid var(--cardBorder); font-size: 14.5px; color: var(--ink2); font-weight: 300; line-height: 1.5; }
.article .duo-row .to { border-color: var(--accentSoft); background: var(--accentSoft); color: var(--ink); }
.article .cta-block { margin-top: 36px; }
.article .cta-block .h { font-family: var(--serif); font-weight: 300; font-size: 22px; color: var(--ink); display: block; }
.article .breadcrumb .here { color: var(--ink3); }
@media (max-width: 560px) { .article .kv-row { grid-template-columns: 1fr; gap: 4px; } .article .duo-row { grid-template-columns: 1fr; } }

/* ── The 30-day promise (week timeline) ── */
.article .promise-weeks { list-style: none; margin: 52px 0 8px; padding: 0; position: relative; }
.article .promise-weeks::before { content: ""; position: absolute; left: 6px; top: 10px; bottom: 10px; width: 1px; background: var(--hair); }
.article .pweek { position: relative; padding: 0 0 44px 40px; }
.article .pweek:last-child { padding-bottom: 0; }
.article .pweek-dot { position: absolute; left: 0; top: 3px; width: 13px; height: 13px; border-radius: 50%; background: var(--bg0); border: 1px solid var(--accent); box-shadow: 0 0 10px var(--glow); }
.article .pweek-tag { font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
.article .pweek h3 { font-family: var(--serif); font-weight: 300; font-size: clamp(22px, 3vw, 28px); line-height: 1.18; letter-spacing: -0.01em; margin: 0; color: var(--ink); }
.article .pweek h3 em { color: var(--accent); font-style: italic; }
.article .pweek p { font-size: 17px; color: var(--ink2); font-weight: 300; line-height: 1.7; margin-top: 14px; }
.article .promise-close { margin-top: 60px; padding-top: 40px; border-top: 0.5px solid var(--hair); }

/* ── Facts / stats cards ── */
.article .stat-list { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }
.article .stat { padding: 24px 26px; border-radius: 18px; background: var(--card); border: 0.5px solid var(--cardBorder); }
.article .stat .fig { font-family: var(--serif); font-weight: 300; font-size: clamp(34px, 5.4vw, 54px); line-height: 1.02; letter-spacing: -0.02em; color: var(--accent); }
.article .stat .stat-body { font-size: 16.5px; color: var(--ink2); font-weight: 300; line-height: 1.66; margin-top: 12px; }
.article .stat .src { font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.03em; color: var(--ink3); margin-top: 14px; }
.article .stat .src a { color: var(--ink2); text-decoration: underline; text-underline-offset: 2px; text-decoration-thickness: 0.5px; }
.article .stat .src a:hover { color: var(--ink); }
