/* ==========================================================================
   Before the Day — Landing page styles
   --------------------------------------------------------------------------
   The "Dawn" design system, ported 1:1 from the iOS app (App/DesignSystem.swift).
   Every token below is derived from the SplashView sunrise: pre-dawn indigo,
   mauve, warm orange, pale gold-horizon and sun-core gold. Light = the gold /
   pale-horizon end; dark = the indigo / mauve pre-dawn end. The whole page
   should feel like sitting inside that warm, soft light just after sunrise.

   No external fonts, no frameworks — system font stacks keep it instant to load
   (good for Core Web Vitals / SEO). The serif carries the "sacred question"
   voice; the sans gets out of the way.
   ========================================================================== */

/* ---- Brand serif: Fraunces (SIL OFL), self-hosted, variable wght 400–600 with
   optical sizing (auto) so it reads warm at body sizes and characterful at the
   wordmark/question display sizes. ---------------------------------------- */
@font-face {
  font-family: 'Fraunces'; font-style: normal; font-weight: 400 600; font-display: swap;
  src: url(/assets/fonts/fraunces-0.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
@font-face {
  font-family: 'Fraunces'; font-style: normal; font-weight: 400 600; font-display: swap;
  src: url(/assets/fonts/fraunces-1.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Fraunces'; font-style: normal; font-weight: 400 600; font-display: swap;
  src: url(/assets/fonts/fraunces-2.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ---- Source-of-truth sunrise stops (the SplashView sky + sun) ------------ */
:root {
  --stop-indigo:  #1a1c47;  /* pre-dawn indigo — darkest hour before light  */
  --stop-mauve:   #66527f;  /* mauve — the transition band as night warms   */
  --stop-orange:  #f79966;  /* warm orange — first real heat of the sun     */
  --stop-horizon: #ffd69e;  /* pale gold — the horizon glow                 */
  --stop-sungold: #ffdb80;  /* sun core, bright gold                        */
  --stop-sundeep: #ffad61;  /* sun core, deeper gold underside              */
  --stop-halo:    #ffd98c;  /* soft halo around the sun                     */

  /* ---- Semantic tokens — LIGHT (the room the risen sun has filled) ------- */
  --bg:            #fcf5e8;
  --surface:       #fffcf5;
  --surface-muted: #f7eddc;
  --accent:        #ed8c4d;
  --accent-soft:   #fabd80;
  --accent-text:   #9a4a14;  /* darker accent for text/links/eyebrows — clears 4.5:1 on light surfaces */
  --on-accent:     #3a2713;  /* dark warm ink ON the gold button (white failed contrast in light) */
  --ink:           #2e2633;
  --ink-secondary: #6b5e6b;
  --ink-tertiary:  #6f6470;  /* darkened from #948592 so citations/disclaimer clear 4.5:1 */
  --hairline:      rgba(217, 199, 179, 0.55);
  --glow:          rgba(247, 153, 102, 0.30);

  /* ---- Type ramp -------------------------------------------------------- */
  --font-serif: "Fraunces", "Iowan Old Style", "Palatino Linotype", Palatino,
                ui-serif, Georgia, "Times New Roman", serif;
  --font-sans:  -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, Roboto,
                Helvetica, Arial, sans-serif;

  /* ---- Spacing scale (points → rem-ish) --------------------------------- */
  --space-xxs: 0.25rem;  /* 4  */
  --space-xs:  0.5rem;   /* 8  */
  --space-sm:  0.75rem;  /* 12 */
  --space-md:  1rem;     /* 16 */
  --space-lg:  1.5rem;   /* 24 */
  --space-xl:  2rem;     /* 32 */
  --space-xxl: 3rem;     /* 48 */
  --space-xxxl:4rem;     /* 64 */

  --radius:       18px;
  --radius-small: 12px;

  --maxw: 72rem;
  --measure: 38rem;   /* comfortable reading width */

  /* ---- Motion ----------------------------------------------------------- */
  --ease-calm: cubic-bezier(0.4, 0, 0.2, 1);
  --dur-standard: 0.35s;
  --dur-slow: 0.4s;
}

/* ---- Dark = the indigo / mauve pre-dawn end ------------------------------ */
@media (prefers-color-scheme: dark) {
  :root {
    --bg:            #11142b;
    --surface:       #29294d;
    --surface-muted: #1d2042;
    --accent:        #ffb86b;
    --accent-soft:   #dba076;
    --accent-text:   #ffb86b;  /* light gold reads fine on the dark pre-dawn bg */
    --on-accent:     #241a0f;
    --ink:           #f7f0eb;
    --ink-secondary: #ccc7d6;
    --ink-tertiary:  #9e9cb3;
    --hairline:      rgba(158, 148, 184, 0.28);
    --glow:          rgba(255, 184, 107, 0.34);
  }
}

/* Explicit overrides via a manual toggle (data-theme on <html>). */
:root[data-theme="dark"] {
  --bg:#11142b; --surface:#29294d; --surface-muted:#1d2042;
  --accent:#ffb86b; --accent-soft:#dba076; --accent-text:#ffb86b; --on-accent:#241a0f;
  --ink:#f7f0eb; --ink-secondary:#ccc7d6; --ink-tertiary:#9e9cb3;
  --hairline:rgba(158,148,184,0.28); --glow:rgba(255,184,107,0.34);
}
:root[data-theme="light"] {
  --bg:#fcf5e8; --surface:#fffcf5; --surface-muted:#f7eddc;
  --accent:#ed8c4d; --accent-soft:#fabd80; --accent-text:#9a4a14; --on-accent:#3a2713;
  --ink:#2e2633; --ink-secondary:#6b5e6b; --ink-tertiary:#6f6470;
  --hairline:rgba(217,199,179,0.55); --glow:rgba(247,153,102,0.30);
}

/* ==========================================================================
   Base / reset
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3 { font-family: var(--font-serif); font-weight: 400; line-height: 1.2; color: var(--ink); }
p { color: var(--ink-secondary); }
a { color: var(--accent-text); text-decoration: none; }
a:hover { text-decoration: underline; }
img, svg { max-width: 100%; display: block; }

/* The product name, set off in prose so it reads as a wordmark — the serif
   (matching the header brand) + the darker primary ink make it stand out of the
   sans body copy without shouting. */
.brandname { font-family: var(--font-serif); color: var(--ink); font-weight: 500; }

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

.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--accent); color: var(--on-accent);
  padding: var(--space-sm) var(--space-md); border-radius: 0 0 var(--radius-small) 0;
  z-index: 100;
}
.skip-link:focus { left: 0; }

/* Screen-reader-only (was undefined — the "Language" label + i18n live region
   were showing as visible text). */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0; border: 0;
  overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%);
  white-space: nowrap;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--space-lg);
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-text);
  font-weight: 600;
  margin: 0 0 var(--space-sm);
}

.section { padding-block: clamp(3.5rem, 8vw, 6.5rem); }
.section--muted { background: var(--surface-muted); }
.section__head { max-width: var(--measure); margin-bottom: var(--space-xl); }
.section__head--center { margin-inline: auto; text-align: center; }
.section h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); margin: 0 0 var(--space-md); }
.section__lead { font-size: 1.15rem; color: var(--ink-secondary); margin: 0; }

/* ==========================================================================
   Header / nav
   ========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: saturate(1.4) blur(14px);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  background: color-mix(in srgb, var(--bg) 78%, transparent);
  border-bottom: 1px solid var(--hairline);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: var(--space-md); min-height: 4rem; }
.brand { display: inline-flex; align-items: center; gap: var(--space-xs); font-family: var(--font-serif); font-size: 1.15rem; color: var(--ink); }
.brand:hover { text-decoration: none; }
.brand__mark { width: 1.6rem; height: 1.6rem; }
.nav__links { display: flex; align-items: center; gap: var(--space-lg); list-style: none; margin: 0; padding: 0; }
.nav__links a { color: var(--ink-secondary); font-size: 0.95rem; white-space: nowrap; }
.nav__links a:hover { color: var(--ink); text-decoration: none; }
.nav__actions { display: flex; align-items: center; gap: var(--space-sm); }

/* Collapse the section links earlier — with the Join CTA + language + theme in
   the bar, they cram and wrap below ~900px. The links are in-page anchors also
   duplicated in the footer, and the Join CTA persists, so the bar stays usable. */
@media (max-width: 900px) {
  .nav__links { display: none; }
}

/* Language switcher + theme toggle */
.control {
  appearance: none; background: var(--surface); color: var(--ink);
  border: 1px solid var(--hairline); border-radius: 999px;
  padding: 0.4rem 0.7rem; font-family: var(--font-sans); font-size: 0.85rem;
  cursor: pointer; line-height: 1;
}
.control:hover { border-color: var(--accent); }
.lang-select { padding-right: 1.6rem; }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--space-xs);
  font-family: var(--font-sans); font-weight: 600; font-size: 1rem;
  padding: 0.85rem 1.6rem; min-height: 50px; border-radius: 999px;
  border: 1px solid transparent; cursor: pointer; transition: transform var(--dur-standard) var(--ease-calm), box-shadow var(--dur-standard) var(--ease-calm), opacity .2s;
}
.btn--primary {
  color: var(--on-accent);
  background: linear-gradient(135deg, var(--stop-sungold), var(--accent));
  box-shadow: 0 6px 16px var(--glow);
}
.btn--primary:hover { transform: translateY(-1px); box-shadow: 0 10px 26px var(--glow); text-decoration: none; }
.btn--primary:active { transform: translateY(0) scale(0.985); }
.btn--quiet { color: var(--ink-secondary); background: transparent; }
.btn--quiet:hover { color: var(--ink); text-decoration: none; }
.btn--ghost { color: var(--ink); background: var(--surface); border-color: var(--hairline); }
.btn--ghost:hover { border-color: var(--accent); text-decoration: none; }

/* ==========================================================================
   Hero — the full SplashView sunrise
   ========================================================================== */
.hero {
  position: relative; overflow: hidden;
  /* The signature dawn: indigo → mauve → orange → pale gold, top to bottom. */
  background: linear-gradient(to bottom,
    var(--stop-indigo) 0%,
    var(--stop-mauve) 42%,
    var(--stop-orange) 78%,
    var(--stop-horizon) 100%);
  color: #fff;
  isolation: isolate;
}
/* Readability scrim: white hero copy must clear contrast over the warm lower
   bands of the sunrise (orange → pale gold). A soft vignette behind the text;
   it sits at z-index 1, below the sun (painted after it) and the copy (z-index 2),
   so the sun stays bright. May want visual tuning. */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(to bottom, rgba(18,12,28,0) 28%, rgba(18,12,28,0.46) 100%),
    radial-gradient(78% 62% at 34% 44%, rgba(18,12,28,0.42) 0%, rgba(18,12,28,0) 72%);
}
.hero__inner {
  position: relative; z-index: 2;
  display: grid; gap: var(--space-xl);
  padding-block: clamp(5rem, 14vh, 9rem) clamp(6rem, 16vh, 10rem);
  max-width: 46rem;
}
.hero__title {
  color: #fff;
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0;
  text-shadow: 0 2px 24px rgba(0,0,0,0.25);
}
.hero__tagline {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.6vw, 1.6rem);
  color: rgba(255,255,255,0.92);
  margin: 0;
  max-width: 34rem;
  line-height: 1.5;
  text-shadow: 0 1px 12px rgba(0,0,0,0.2);
}
.hero__sub { color: rgba(255,255,255,0.82); font-size: 1.05rem; max-width: 32rem; margin: 0; }
.hero__cta { display: flex; flex-wrap: wrap; gap: var(--space-md); align-items: center; margin-top: var(--space-xs); }
.hero__cta .btn--quiet { color: rgba(255,255,255,0.9); }
.hero__cta .btn--quiet:hover { color: #fff; }
.hero__note {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-size: clamp(1rem, 2.2vw, 1.2rem); font-weight: 500;
  color: rgba(255,255,255,0.96); margin: 0;
}
/* a soft gold "live beta" dot to make the callout read as a status */
.hero__note::before {
  content: ""; flex: 0 0 auto; width: 9px; height: 9px; border-radius: 50%;
  background: var(--stop-sungold); box-shadow: 0 0 10px 1px var(--stop-sungold);
}

/* The rising sun + halo (CSS-only echo of SplashView). */
.hero__sun {
  position: absolute; z-index: 1;
  left: 50%; bottom: -7rem; transform: translateX(-50%);
  width: 16rem; height: 16rem; border-radius: 50%;
  background: radial-gradient(circle at 50% 45%, #fff 0%, var(--stop-sungold) 38%, var(--stop-sundeep) 72%, rgba(255,173,97,0) 100%);
  filter: blur(2px);
  animation: sun-rise 2.6s var(--ease-calm) both, sun-glow 4.4s ease-in-out 2.6s infinite;
}
.hero__halo {
  position: absolute; z-index: 0;
  left: 50%; bottom: -10rem; transform: translateX(-50%);
  width: 26rem; height: 26rem; border-radius: 50%;
  background: radial-gradient(circle, var(--stop-halo) 0%, rgba(255,217,140,0) 68%);
  opacity: 0.5; filter: blur(30px);
  animation: sun-rise 2.6s var(--ease-calm) both;
}
@keyframes sun-rise {
  from { transform: translate(-50%, 60%); opacity: 0; }
  to   { transform: translate(-50%, 0);   opacity: 1; }
}
@keyframes sun-glow {
  0%, 100% { filter: blur(2px); opacity: 0.95; }
  50%      { filter: blur(4px); opacity: 1; }
}

/* soft wave separating hero from the page below */
.hero__divider { position: relative; z-index: 2; display: block; width: 100%; height: 3rem; color: var(--bg); margin-top: -1px; }

/* ==========================================================================
   Question showcase (the "sacred question" voice)
   ========================================================================== */
.questions { display: grid; gap: var(--space-md); margin-top: var(--space-xl); }
.question-card {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: 0 14px 30px color-mix(in srgb, var(--glow) 35%, transparent);
}
.question-card p {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 3vw, 1.6rem);
  color: var(--ink);
  text-align: center;
  margin: 0;
  line-height: 1.45;
}

/* ==========================================================================
   Steps (how it works)
   ========================================================================== */
.steps { display: grid; gap: var(--space-lg); grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr)); margin-top: var(--space-xl); counter-reset: step; }
.step { position: relative; padding-top: var(--space-lg); }
.step__num {
  display: inline-grid; place-items: center;
  width: 2.4rem; height: 2.4rem; border-radius: 50%;
  background: linear-gradient(135deg, var(--stop-sungold), var(--accent));
  color: var(--on-accent); font-weight: 700; font-family: var(--font-sans);
  margin-bottom: var(--space-sm);
  box-shadow: 0 4px 12px var(--glow);
}
.step h3 { font-size: 1.2rem; margin: 0 0 var(--space-xs); }
.step p { margin: 0; }

/* ==========================================================================
   Feature grid
   ========================================================================== */
.grid { display: grid; gap: var(--space-lg); grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr)); }
.card {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: var(--space-lg);
  transition: transform var(--dur-standard) var(--ease-calm), box-shadow var(--dur-standard) var(--ease-calm);
}
.card:hover { transform: translateY(-3px); box-shadow: 0 16px 34px color-mix(in srgb, var(--glow) 40%, transparent); }
.card__icon {
  width: 2.75rem; height: 2.75rem; border-radius: var(--radius-small);
  display: grid; place-items: center; margin-bottom: var(--space-md);
  background: color-mix(in srgb, var(--accent) 16%, var(--surface));
  color: var(--accent);
}
.card__icon svg { width: 1.5rem; height: 1.5rem; }
.card h3 { font-size: 1.2rem; margin: 0 0 var(--space-xs); }
.card p { margin: 0; font-size: 0.98rem; }

/* ==========================================================================
   The boundary / principle banner
   ========================================================================== */
.principle {
  background: linear-gradient(135deg, var(--stop-indigo), var(--stop-mauve));
  color: #fff; border-radius: var(--radius);
  padding: clamp(2rem, 6vw, 3.5rem);
  text-align: center;
}
.principle h2 { color: #fff; font-size: clamp(1.6rem, 4vw, 2.4rem); margin: 0 auto var(--space-md); max-width: 28rem; }
.principle p { color: rgba(255,255,255,0.86); max-width: 36rem; margin: 0 auto; font-size: 1.1rem; }
.principle .spine {
  font-family: var(--font-serif); font-style: italic;
  color: var(--stop-horizon); font-size: clamp(1.2rem, 3vw, 1.6rem);
  display: block; margin-bottom: var(--space-lg);
}

/* ==========================================================================
   Science section
   ========================================================================== */
.science-grid { display: grid; gap: var(--space-lg); grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr)); margin-top: var(--space-xl); }
.study {
  background: var(--surface); border: 1px solid var(--hairline);
  border-radius: var(--radius); padding: var(--space-lg);
  display: flex; flex-direction: column;
}
.study h3 { font-size: 1.15rem; margin: 0 0 var(--space-xs); }
.study p { margin: 0 0 var(--space-md); font-size: 0.98rem; }
.study cite {
  margin-top: auto; font-style: normal; font-size: 0.82rem;
  color: var(--ink-tertiary); display: block; padding-top: var(--space-sm);
  border-top: 1px solid var(--hairline);
}
.study cite a { color: var(--ink-tertiary); text-decoration: underline; text-underline-offset: 2px; }
.study cite a:hover { color: var(--accent); }
.science-disclaimer { font-size: 0.85rem; color: var(--ink-tertiary); margin-top: var(--space-xl); max-width: var(--measure); }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq { max-width: var(--measure); margin-top: var(--space-xl); }
.faq details {
  border-bottom: 1px solid var(--hairline);
  padding: var(--space-md) 0;
}
.faq summary {
  font-family: var(--font-serif); font-size: 1.15rem; color: var(--ink);
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; gap: var(--space-md);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--accent); font-family: var(--font-sans); font-size: 1.4rem; line-height: 1; transition: transform var(--dur-standard) var(--ease-calm); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin: var(--space-sm) 0 0; }

/* ==========================================================================
   CTA band + footer
   ========================================================================== */
.cta-band { text-align: center; }
.cta-band h2 { font-size: clamp(1.8rem, 5vw, 2.8rem); margin: 0 auto var(--space-md); max-width: 26rem; }
.cta-band p { max-width: 32rem; margin: 0 auto var(--space-xl); font-size: 1.1rem; }

.site-footer {
  border-top: 1px solid var(--hairline);
  padding-block: var(--space-xl);
  background: var(--surface-muted);
}
.footer-grid { display: flex; flex-wrap: wrap; gap: var(--space-lg); justify-content: space-between; align-items: center; }
.footer-grid p { margin: 0; font-size: 0.9rem; color: var(--ink-tertiary); }
.footer-links { display: flex; gap: var(--space-lg); list-style: none; margin: 0; padding: 0; flex-wrap: wrap; }
.footer-links a { color: var(--ink-secondary); font-size: 0.9rem; }

/* Reveal-on-scroll (progressive enhancement; visible by default if no JS) */
.reveal { opacity: 1; }
.js .reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s var(--ease-calm), transform .6s var(--ease-calm); }
.js .reveal.is-visible { opacity: 1; transform: none; }

/* ==========================================================================
   App screens — clean floating screenshots (no device chrome)
   ========================================================================== */
.screens-gallery {
  display: flex; flex-wrap: wrap; gap: var(--space-xl);
  justify-content: center; align-items: flex-start;
  margin-top: var(--space-xl);
}
.screen-figure {
  display: flex; flex-direction: column; align-items: center;
  gap: var(--space-md); margin: 0; max-width: 260px;
}
.screen-shot {
  width: 100%; height: auto; display: block; border-radius: 22px;
  box-shadow: 0 22px 48px -20px rgba(20, 16, 30, 0.38);
  border: 1px solid var(--hairline);
}
.screen-cap {
  margin: 0; text-align: center; max-width: 26ch;
  color: var(--ink-secondary); font-size: 1rem; line-height: 1.5;
}

/* Compact "Join the beta" button in the sticky header (persistent CTA). */
.nav__cta { padding: 0.5rem 1rem; min-height: 0; font-size: 0.9rem; white-space: nowrap; }
@media (max-width: 420px) { .nav__cta { display: none; } }

/* CTA band — TestFlight actions */
.cta-actions { display: flex; justify-content: center; gap: var(--space-md); margin-top: var(--space-lg); flex-wrap: wrap; }
.cta-note { margin-top: var(--space-md); font-size: 0.95rem; color: var(--ink-tertiary); }
.cta-note a { white-space: nowrap; }

/* ==========================================================================
   Founder note — a named, human trust anchor before the CTA
   ========================================================================== */
.founder { max-width: var(--measure); margin-inline: auto; }
.founder__note { margin: var(--space-md) 0 0; padding: 0; border: 0; }
.founder__note p {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.2vw, 1.3rem);
  line-height: 1.6;
  color: var(--ink);
  margin: 0 0 var(--space-md);
}
.founder__sign {
  font-family: var(--font-sans);
  color: var(--ink-secondary);
  font-size: 0.98rem;
  margin-top: var(--space-sm);
}
