/* Shared stylesheet for the five static hagon website pages.
   Each page is scoped by its body class so existing page-specific layouts
   remain unchanged while all HTML files load one CSS file. */


/* ============================================================
   index.html
   ============================================================ */
:root {--bg: #f4f1ea;
      --text: #171717;
      --muted: #6b6b66;
      --line: rgba(23, 23, 23, 0.18);
      --line-strong: rgba(23, 23, 23, 0.72);
      --panel: rgba(255, 255, 255, 0.36);
      --shadow: 0 20px 60px rgba(20, 20, 20, 0.08);}

body.home-page * {box-sizing: border-box;}

html {min-height: 100%;
      background: var(--bg);}

body.home-page {min-height: 100vh;
      margin: 0;
      color: var(--text);
      background:
        radial-gradient(circle at 12% 14%, rgba(255,255,255,0.9), transparent 28%),
        linear-gradient(180deg, #f7f4ed 0%, var(--bg) 100%);
      font-family:
        Inter,
        ui-sans-serif,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Helvetica,
        Arial,
        sans-serif;
      overflow-x: hidden;}

body.home-page .page {min-height: 100vh;
      display: grid;
      grid-template-rows: auto 1fr auto;
      padding: 24px;}

body.home-page .topbar,
body.home-page .footer {width: min(1180px, 100%);
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;}

body.home-page .topbar {padding: 8px 0 24px;}

body.home-page .brand {display: inline-flex;
      align-items: center;
      gap: 14px;
      text-decoration: none;
      color: inherit;
      letter-spacing: -0.055em;
      font-size: clamp(1.6rem, 2vw, 2.2rem);
      font-weight: 600;
      line-height: 1;}

body.home-page .brand-divider {width: 1px;
      height: 34px;
      background: var(--line-strong);
      flex: 0 0 auto;}

body.home-page .brand-ghost {display: inline-block;
      opacity: 0.035;
      transform: scaleX(-1);
      transform-origin: center;
      font-size: 1em;
      letter-spacing: -0.055em;
      user-select: none;
      pointer-events: none;
      white-space: nowrap;}

body.home-page .status {color: var(--muted);
      font-size: 0.86rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;}

body.home-page .hero-wrap {width: min(1180px, 100%);
      margin: 0 auto;
      display: grid;
      place-items: center;
      padding: 7vh 0 10vh;}

body.home-page .hero {width: 100%;
      display: grid;
      grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
      align-items: end;
      gap: clamp(44px, 8vw, 120px);}

body.home-page .eyebrow {margin: 0 0 24px;
      color: var(--muted);
      font-size: 0.82rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;}

body.home-page h1 {max-width: 900px;
      margin: 0;
      font-size: clamp(4.3rem, 11vw, 10.5rem);
      font-weight: 540;
      line-height: 0.84;
      letter-spacing: -0.075em;}

body.home-page h1 span {display: block;}

body.home-page .intro-card {border-left: 1px solid var(--line-strong);
      padding: 4px 0 4px 28px;}

body.home-page .intro-card p {margin: 0;
      color: var(--muted);
      font-size: clamp(1rem, 1.6vw, 1.25rem);
      line-height: 1.65;}

body.home-page .intro-card strong {color: var(--text);
      font-weight: 560;}

body.home-page .signal {margin-top: 30px;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: var(--text);
      font-size: 0.92rem;}

body.home-page .signal-dot {width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--text);
      box-shadow: 0 0 0 6px rgba(23, 23, 23, 0.06);}

body.home-page .footer {border-top: 1px solid var(--line);
      padding: 22px 0 4px;
      color: var(--muted);
      font-size: 0.82rem;}

body.home-page .footer a {color: inherit;
      text-decoration: none;}

body.home-page .footer a:hover,
body.home-page .footer a:focus-visible {color: var(--text);}

@media (max-width: 820px) {
  body.home-page .page {padding: 18px;}

  body.home-page .topbar {align-items: flex-start;}

  body.home-page .hero-wrap {padding: 9vh 0 12vh;}

  body.home-page .hero {grid-template-columns: 1fr;
        align-items: start;
        gap: 56px;}

  body.home-page h1 {font-size: clamp(4.5rem, 21vw, 8rem);}

  body.home-page .intro-card {max-width: 520px;}

  body.home-page .footer {align-items: flex-start;
        flex-direction: column;
        gap: 8px;}
}

@media (prefers-reduced-motion: no-preference) {
  body.home-page .hero,
  body.home-page .topbar,
  body.home-page .footer {animation: reveal 700ms ease-out both;}

  body.home-page .hero {animation-delay: 80ms;}

  body.home-page .footer {animation-delay: 150ms;}

  @keyframes reveal {from {
          opacity: 0;
          transform: translateY(10px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }}
}

body.home-page .topbar {width: min(1180px, 100%);
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      padding: 8px 0 24px;}

body.home-page .brand {display: inline-flex;
      align-items: center;
      gap: 14px;
      text-decoration: none;
      color: inherit;
      letter-spacing: -0.055em;
      font-size: clamp(1.6rem, 2vw, 2.2rem);
      font-weight: 600;
      line-height: 1;}

body.home-page .brand-divider {width: 1px;
      height: 34px;
      background: var(--line-strong, rgba(23, 23, 23, 0.72));
      flex: 0 0 auto;}

body.home-page .brand-ghost {display: inline-block;
      opacity: 0.035;
      transform: scaleX(-1);
      transform-origin: center;
      font-size: 1em;
      letter-spacing: -0.055em;
      user-select: none;
      pointer-events: none;
      white-space: nowrap;}

body.home-page .nav {display: flex;
      align-items: center;
      gap: 18px;
      color: var(--muted);
      font-size: 0.86rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      white-space: nowrap;}

body.home-page .nav a {color: var(--muted);
      text-decoration: none;}

body.home-page .nav a:hover,
body.home-page .nav a:focus-visible,
body.home-page .nav a[aria-current="page"] {color: var(--text);}

@media (max-width: 820px) {
  body.home-page .topbar {align-items: flex-start;}

  body.home-page .nav {flex-wrap: wrap;
        justify-content: flex-end;
        gap: 10px 12px;
        font-size: 0.74rem;}
}

@media (max-width: 540px) {
  body.home-page .brand-divider,
  body.home-page .brand-ghost {display: none;}
}


/* ============================================================
   product.html
   ============================================================ */
:root {--bg: #f4f1ea;
      --text: #171717;
      --muted: #6b6b66;
      --line: rgba(23, 23, 23, 0.18);
      --line-strong: rgba(23, 23, 23, 0.72);
      --panel: rgba(255, 255, 255, 0.36);
      --shadow: 0 20px 60px rgba(20, 20, 20, 0.08);
      --max: 1180px;}

body.product-page * {box-sizing: border-box;}

html {min-height: 100%;
      background: var(--bg);
      scroll-behavior: smooth;}

body.product-page {min-height: 100vh;
      margin: 0;
      color: var(--text);
      background:
        radial-gradient(circle at 12% 14%, rgba(255,255,255,0.9), transparent 28%),
        linear-gradient(180deg, #f7f4ed 0%, var(--bg) 100%);
      font-family:
        Inter,
        ui-sans-serif,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Helvetica,
        Arial,
        sans-serif;
      overflow-x: hidden;}

body.product-page a {color: inherit;}

body.product-page .page {min-height: 100vh;
      padding: 24px;}

body.product-page .topbar,
body.product-page .footer,
body.product-page .content {width: min(var(--max), 100%);
      margin: 0 auto;}

body.product-page .topbar {display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      padding: 8px 0 24px;}

body.product-page .brand {display: inline-flex;
      align-items: center;
      gap: 14px;
      text-decoration: none;
      color: inherit;
      letter-spacing: -0.055em;
      font-size: clamp(1.6rem, 2vw, 2.2rem);
      font-weight: 600;
      line-height: 1;}

body.product-page .brand-divider {width: 1px;
      height: 34px;
      background: var(--line-strong);
      flex: 0 0 auto;}

body.product-page .brand-ghost {display: inline-block;
      opacity: 0.035;
      transform: scaleX(-1);
      transform-origin: center;
      font-size: 1em;
      letter-spacing: -0.055em;
      user-select: none;
      pointer-events: none;
      white-space: nowrap;}

body.product-page .nav {display: flex;
      align-items: center;
      gap: 18px;
      color: var(--muted);
      font-size: 0.86rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;}

body.product-page .nav a {text-decoration: none;}

body.product-page .nav a:hover,
body.product-page .nav a:focus-visible {color: var(--text);}

body.product-page .hero {padding: clamp(72px, 12vh, 150px) 0 clamp(84px, 12vh, 150px);
      border-bottom: 1px solid var(--line);}

body.product-page .eyebrow {margin: 0 0 24px;
      color: var(--muted);
      font-size: 0.82rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;}

body.product-page h1 {max-width: 980px;
      margin: 0;
      font-size: clamp(4rem, 10vw, 9.5rem);
      font-weight: 540;
      line-height: 0.88;
      letter-spacing: -0.075em;}

body.product-page .hero-copy {max-width: 760px;
      margin: 38px 0 0;
      color: var(--muted);
      font-size: clamp(1.1rem, 2.1vw, 1.45rem);
      line-height: 1.65;}

body.product-page .product-section {display: grid;
      grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.28fr);
      gap: clamp(44px, 8vw, 120px);
      align-items: start;
      padding: clamp(72px, 10vw, 130px) 0;
      border-bottom: 1px solid var(--line);}

body.product-page .section-kicker {margin: 0;
      color: var(--muted);
      font-size: 0.8rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;}

body.product-page .product-copy h2 {margin: 0 0 22px;
      font-size: clamp(2.4rem, 5vw, 5.2rem);
      font-weight: 540;
      line-height: 0.98;
      letter-spacing: -0.06em;}

body.product-page .product-copy p {max-width: 690px;
      margin: 0;
      color: var(--muted);
      font-size: clamp(1rem, 1.7vw, 1.22rem);
      line-height: 1.7;}

body.product-page .product-panel {border: 1px solid var(--line);
      background: var(--panel);
      box-shadow: var(--shadow);
      padding: 18px;}

body.product-page .product-window {min-height: 360px;
      border: 1px solid var(--line);
      background: rgba(255,255,255,0.42);
      padding: 28px;
      display: grid;
      align-content: start;
      gap: 22px;}

body.product-page .window-top {display: flex;
      justify-content: space-between;
      gap: 20px;
      padding-bottom: 18px;
      border-bottom: 1px solid var(--line);
      color: var(--muted);
      font-size: 0.84rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;}

body.product-page .window-title {margin: 0;
      font-size: clamp(2rem, 4vw, 3.8rem);
      font-weight: 540;
      line-height: 1;
      letter-spacing: -0.055em;}

body.product-page .window-copy {margin: 0;
      color: var(--muted);
      line-height: 1.65;}

body.product-page .metric-grid {display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;}

body.product-page .metric {min-height: 118px;
      padding: 18px;
      border: 1px solid var(--line);
      display: flex;
      flex-direction: column;
      justify-content: space-between;}

body.product-page .metric strong {font-size: 2rem;
      font-weight: 560;
      letter-spacing: -0.04em;}

body.product-page .metric span {color: var(--muted);
      font-size: 0.86rem;}

body.product-page .rows {border-top: 1px solid var(--line);}

body.product-page .row {display: flex;
      justify-content: space-between;
      gap: 24px;
      padding: 18px 0;
      border-bottom: 1px solid var(--line);}

body.product-page .row span:last-child {color: var(--muted);
      text-align: right;}

body.product-page .flow {padding: clamp(84px, 13vw, 170px) 0;
      border-bottom: 1px solid var(--line);
      text-align: center;}

body.product-page .flow p {margin: 0;
      font-size: clamp(2.1rem, 5vw, 5.2rem);
      font-weight: 520;
      line-height: 1.15;
      letter-spacing: -0.055em;}

body.product-page .flow span {color: var(--muted);}

body.product-page .footer {display: flex;
      justify-content: space-between;
      gap: 24px;
      padding: 22px 0 4px;
      color: var(--muted);
      font-size: 0.82rem;}

body.product-page .footer a {text-decoration: none;}

body.product-page .footer a:hover,
body.product-page .footer a:focus-visible {color: var(--text);}

@media (max-width: 820px) {
  body.product-page .page {padding: 18px;}

  body.product-page .topbar {align-items: flex-start;}

  body.product-page .nav {gap: 12px;
        font-size: 0.76rem;}

  body.product-page .product-section {grid-template-columns: 1fr;
        gap: 28px;}

  body.product-page .metric-grid {grid-template-columns: 1fr;}

  body.product-page .footer {flex-direction: column;
        gap: 8px;}
}

@media (max-width: 540px) {
  body.product-page .brand-ghost,
  body.product-page .brand-divider {display: none;}

  body.product-page .nav a:first-child {display: none;}

  body.product-page .product-window {padding: 20px;}
}

@media (prefers-reduced-motion: no-preference) {
  body.product-page .hero,
  body.product-page .product-section,
  body.product-page .flow,
  body.product-page .footer {animation: reveal 700ms ease-out both;}

  body.product-page .product-section:nth-of-type(2) {animation-delay: 70ms;}

  body.product-page .product-section:nth-of-type(3) {animation-delay: 110ms;}

  body.product-page .product-section:nth-of-type(4) {animation-delay: 150ms;}

  body.product-page .product-section:nth-of-type(5) {animation-delay: 190ms;}

  body.product-page .product-section:nth-of-type(6) {animation-delay: 230ms;}

  body.product-page .flow {animation-delay: 270ms;}

  body.product-page .footer {animation-delay: 310ms;}

  @keyframes reveal {from {
          opacity: 0;
          transform: translateY(10px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }}
}

body.product-page .topbar {width: min(1180px, 100%);
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      padding: 8px 0 24px;}

body.product-page .brand {display: inline-flex;
      align-items: center;
      gap: 14px;
      text-decoration: none;
      color: inherit;
      letter-spacing: -0.055em;
      font-size: clamp(1.6rem, 2vw, 2.2rem);
      font-weight: 600;
      line-height: 1;}

body.product-page .brand-divider {width: 1px;
      height: 34px;
      background: var(--line-strong, rgba(23, 23, 23, 0.72));
      flex: 0 0 auto;}

body.product-page .brand-ghost {display: inline-block;
      opacity: 0.035;
      transform: scaleX(-1);
      transform-origin: center;
      font-size: 1em;
      letter-spacing: -0.055em;
      user-select: none;
      pointer-events: none;
      white-space: nowrap;}

body.product-page .nav {display: flex;
      align-items: center;
      gap: 18px;
      color: var(--muted);
      font-size: 0.86rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      white-space: nowrap;}

body.product-page .nav a {color: var(--muted);
      text-decoration: none;}

body.product-page .nav a:hover,
body.product-page .nav a:focus-visible,
body.product-page .nav a[aria-current="page"] {color: var(--text);}

@media (max-width: 820px) {
  body.product-page .topbar {align-items: flex-start;}

  body.product-page .nav {flex-wrap: wrap;
        justify-content: flex-end;
        gap: 10px 12px;
        font-size: 0.74rem;}
}

@media (max-width: 540px) {
  body.product-page .brand-divider,
  body.product-page .brand-ghost {display: none;}
}


/* ============================================================
   vision.html
   ============================================================ */
:root {--bg: #f4f1ea;
      --text: #171717;
      --muted: #6b6b66;
      --line: rgba(23, 23, 23, 0.18);
      --line-strong: rgba(23, 23, 23, 0.72);
      --panel: rgba(255, 255, 255, 0.36);
      --shadow: 0 20px 60px rgba(20, 20, 20, 0.08);
      --max: 1180px;}

body.vision-page * {box-sizing: border-box;}

html {min-height: 100%;
      background: var(--bg);
      scroll-behavior: smooth;}

body.vision-page {min-height: 100vh;
      margin: 0;
      color: var(--text);
      background:
        radial-gradient(circle at 12% 14%, rgba(255,255,255,0.9), transparent 28%),
        linear-gradient(180deg, #f7f4ed 0%, var(--bg) 100%);
      font-family:
        Inter,
        ui-sans-serif,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Helvetica,
        Arial,
        sans-serif;
      overflow-x: hidden;}

body.vision-page a {color: inherit;}

body.vision-page .page {min-height: 100vh;
      padding: 24px;}

body.vision-page .topbar,
body.vision-page .footer,
body.vision-page .content {width: min(var(--max), 100%);
      margin: 0 auto;}

body.vision-page .topbar {display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      padding: 8px 0 24px;}

body.vision-page .brand {display: inline-flex;
      align-items: center;
      gap: 14px;
      text-decoration: none;
      color: inherit;
      letter-spacing: -0.055em;
      font-size: clamp(1.6rem, 2vw, 2.2rem);
      font-weight: 600;
      line-height: 1;}

body.vision-page .brand-divider {width: 1px;
      height: 34px;
      background: var(--line-strong);
      flex: 0 0 auto;}

body.vision-page .brand-ghost {display: inline-block;
      opacity: 0.035;
      transform: scaleX(-1);
      transform-origin: center;
      font-size: 1em;
      letter-spacing: -0.055em;
      user-select: none;
      pointer-events: none;
      white-space: nowrap;}

body.vision-page .nav {display: flex;
      align-items: center;
      gap: 18px;
      color: var(--muted);
      font-size: 0.86rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;}

body.vision-page .nav a {text-decoration: none;}

body.vision-page .nav a:hover,
body.vision-page .nav a:focus-visible {color: var(--text);}

body.vision-page .hero {padding: clamp(72px, 12vh, 150px) 0 clamp(84px, 12vh, 150px);
      border-bottom: 1px solid var(--line);}

body.vision-page .eyebrow {margin: 0 0 24px;
      color: var(--muted);
      font-size: 0.82rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;}

body.vision-page h1 {max-width: 980px;
      margin: 0;
      font-size: clamp(4rem, 10vw, 9.5rem);
      font-weight: 540;
      line-height: 0.88;
      letter-spacing: -0.075em;}

body.vision-page .hero-copy {max-width: 720px;
      margin: 38px 0 0;
      color: var(--muted);
      font-size: clamp(1.1rem, 2.1vw, 1.45rem);
      line-height: 1.65;}

body.vision-page .section {display: grid;
      grid-template-columns: minmax(220px, 0.65fr) minmax(0, 1.35fr);
      gap: clamp(44px, 8vw, 120px);
      padding: clamp(72px, 10vw, 130px) 0;
      border-bottom: 1px solid var(--line);}

body.vision-page .section-kicker {margin: 0;
      color: var(--muted);
      font-size: 0.8rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;}

body.vision-page .section-body h2 {max-width: 780px;
      margin: 0 0 26px;
      font-size: clamp(2.4rem, 5vw, 5.4rem);
      font-weight: 540;
      line-height: 0.98;
      letter-spacing: -0.06em;}

body.vision-page .section-body p {max-width: 760px;
      margin: 0 0 24px;
      color: var(--muted);
      font-size: clamp(1rem, 1.7vw, 1.22rem);
      line-height: 1.7;}

body.vision-page .section-body p strong {color: var(--text);
      font-weight: 560;}

body.vision-page .principles {margin-top: 42px;
      border-top: 1px solid var(--line);}

body.vision-page .principle {display: grid;
      grid-template-columns: 64px 1fr;
      gap: 22px;
      padding: 26px 0;
      border-bottom: 1px solid var(--line);}

body.vision-page .principle-number {color: var(--muted);
      font-size: 0.84rem;
      font-variant-numeric: tabular-nums;}

body.vision-page .principle h3 {margin: 0 0 8px;
      font-size: clamp(1.25rem, 2vw, 1.7rem);
      font-weight: 560;
      letter-spacing: -0.035em;}

body.vision-page .principle p {margin: 0;
      font-size: 1rem;}

body.vision-page .flow {margin-top: 44px;
      display: grid;
      gap: 0;
      border-top: 1px solid var(--line);}

body.vision-page .flow-step {display: flex;
      align-items: baseline;
      justify-content: space-between;
      gap: 28px;
      padding: 22px 0;
      border-bottom: 1px solid var(--line);}

body.vision-page .flow-step strong {font-size: clamp(1.25rem, 2.6vw, 2rem);
      font-weight: 560;
      letter-spacing: -0.04em;}

body.vision-page .flow-step span {color: var(--muted);
      text-align: right;}

body.vision-page .statement {padding: clamp(84px, 13vw, 170px) 0;
      text-align: center;
      border-bottom: 1px solid var(--line);}

body.vision-page .statement p {max-width: 980px;
      margin: 0 auto;
      font-size: clamp(2rem, 5vw, 5rem);
      font-weight: 520;
      line-height: 1.06;
      letter-spacing: -0.055em;}

body.vision-page .statement em {font-style: normal;
      color: var(--muted);}

body.vision-page .footer {display: flex;
      justify-content: space-between;
      gap: 24px;
      padding: 22px 0 4px;
      color: var(--muted);
      font-size: 0.82rem;}

body.vision-page .footer a {text-decoration: none;}

body.vision-page .footer a:hover,
body.vision-page .footer a:focus-visible {color: var(--text);}

@media (max-width: 820px) {
  body.vision-page .page {padding: 18px;}

  body.vision-page .topbar {align-items: flex-start;}

  body.vision-page .nav {gap: 12px;
        font-size: 0.76rem;}

  body.vision-page .section {grid-template-columns: 1fr;
        gap: 28px;}

  body.vision-page .flow-step {align-items: flex-start;
        flex-direction: column;
        gap: 8px;}

  body.vision-page .flow-step span {text-align: left;}

  body.vision-page .footer {flex-direction: column;
        gap: 8px;}
}

@media (max-width: 540px) {
  body.vision-page .nav a:first-child {display: none;}

  body.vision-page .brand-ghost,
  body.vision-page .brand-divider {display: none;}

  body.vision-page .principle {grid-template-columns: 42px 1fr;}
}

@media (prefers-reduced-motion: no-preference) {
  body.vision-page .hero,
  body.vision-page .section,
  body.vision-page .statement,
  body.vision-page .footer {animation: reveal 700ms ease-out both;}

  body.vision-page .section:nth-of-type(2) {animation-delay: 80ms;}

  body.vision-page .section:nth-of-type(3) {animation-delay: 120ms;}

  body.vision-page .section:nth-of-type(4) {animation-delay: 160ms;}

  body.vision-page .statement {animation-delay: 200ms;}

  body.vision-page .footer {animation-delay: 240ms;}

  @keyframes reveal {from {
          opacity: 0;
          transform: translateY(10px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }}
}

body.vision-page .topbar {width: min(1180px, 100%);
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      padding: 8px 0 24px;}

body.vision-page .brand {display: inline-flex;
      align-items: center;
      gap: 14px;
      text-decoration: none;
      color: inherit;
      letter-spacing: -0.055em;
      font-size: clamp(1.6rem, 2vw, 2.2rem);
      font-weight: 600;
      line-height: 1;}

body.vision-page .brand-divider {width: 1px;
      height: 34px;
      background: var(--line-strong, rgba(23, 23, 23, 0.72));
      flex: 0 0 auto;}

body.vision-page .brand-ghost {display: inline-block;
      opacity: 0.035;
      transform: scaleX(-1);
      transform-origin: center;
      font-size: 1em;
      letter-spacing: -0.055em;
      user-select: none;
      pointer-events: none;
      white-space: nowrap;}

body.vision-page .nav {display: flex;
      align-items: center;
      gap: 18px;
      color: var(--muted);
      font-size: 0.86rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      white-space: nowrap;}

body.vision-page .nav a {color: var(--muted);
      text-decoration: none;}

body.vision-page .nav a:hover,
body.vision-page .nav a:focus-visible,
body.vision-page .nav a[aria-current="page"] {color: var(--text);}

@media (max-width: 820px) {
  body.vision-page .topbar {align-items: flex-start;}

  body.vision-page .nav {flex-wrap: wrap;
        justify-content: flex-end;
        gap: 10px 12px;
        font-size: 0.74rem;}
}

@media (max-width: 540px) {
  body.vision-page .brand-divider,
  body.vision-page .brand-ghost {display: none;}
}


/* ============================================================
   roadmap.html
   ============================================================ */
:root {--bg:#f4f1ea;--text:#171717;--muted:#6b6b66;--line:rgba(23,23,23,.18);--line-strong:rgba(23,23,23,.72);--max:1180px}

body.roadmap-page {margin:0;background:linear-gradient(#f7f4ed,var(--bg));color:var(--text);font-family:Inter,system-ui,sans-serif}

body.roadmap-page .page {padding:24px}

body.roadmap-page .wrap {width:min(var(--max),100%);margin:auto}

body.roadmap-page .top {display:flex;justify-content:space-between;align-items:center;padding:8px 0 24px}

body.roadmap-page .brand {text-decoration:none;color:inherit;font-size:2rem;font-weight:600;letter-spacing:-.05em}

body.roadmap-page nav a {text-decoration:none;color:#6b6b66;margin-left:18px;text-transform:uppercase;font-size:.82rem}

body.roadmap-page .hero {padding:90px 0;border-bottom:1px solid var(--line)}

body.roadmap-page h1 {font-size:clamp(4rem,10vw,8rem);margin:0;letter-spacing:-.07em}

body.roadmap-page .lead {max-width:720px;color:var(--muted);font-size:1.2rem;line-height:1.7}

body.roadmap-page .phase {display:grid;grid-template-columns:220px 1fr;gap:60px;padding:70px 0;border-bottom:1px solid var(--line)}

body.roadmap-page .k {color:var(--muted);text-transform:uppercase;letter-spacing:.14em;font-size:.8rem}

body.roadmap-page h2 {margin:0 0 20px;font-size:clamp(2rem,4vw,3.8rem);letter-spacing:-.05em}

body.roadmap-page ul {margin:0;padding-left:20px}

body.roadmap-page li {margin:10px 0}

body.roadmap-page .status {display:inline-block;border:1px solid var(--line);padding:2px 10px;font-size:.8rem;color:var(--muted)}

body.roadmap-page footer {padding:24px 0;color:var(--muted);display:flex;justify-content:space-between}

@media (max-width:800px) {
  body.roadmap-page .phase {grid-template-columns:1fr;gap:24px}
}

body.roadmap-page .topbar {width: min(1180px, 100%);
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      padding: 8px 0 24px;}

body.roadmap-page .brand {display: inline-flex;
      align-items: center;
      gap: 14px;
      text-decoration: none;
      color: inherit;
      letter-spacing: -0.055em;
      font-size: clamp(1.6rem, 2vw, 2.2rem);
      font-weight: 600;
      line-height: 1;}

body.roadmap-page .brand-divider {width: 1px;
      height: 34px;
      background: var(--line-strong, rgba(23, 23, 23, 0.72));
      flex: 0 0 auto;}

body.roadmap-page .brand-ghost {display: inline-block;
      opacity: 0.035;
      transform: scaleX(-1);
      transform-origin: center;
      font-size: 1em;
      letter-spacing: -0.055em;
      user-select: none;
      pointer-events: none;
      white-space: nowrap;}

body.roadmap-page .nav {display: flex;
      align-items: center;
      gap: 18px;
      color: var(--muted);
      font-size: 0.86rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      white-space: nowrap;}

body.roadmap-page .nav a {color: var(--muted);
      text-decoration: none;}

body.roadmap-page .nav a:hover,
body.roadmap-page .nav a:focus-visible,
body.roadmap-page .nav a[aria-current="page"] {color: var(--text);}

@media (max-width: 820px) {
  body.roadmap-page .topbar {align-items: flex-start;}

  body.roadmap-page .nav {flex-wrap: wrap;
        justify-content: flex-end;
        gap: 10px 12px;
        font-size: 0.74rem;}
}

@media (max-width: 540px) {
  body.roadmap-page .brand-divider,
  body.roadmap-page .brand-ghost {display: none;}
}


/* ============================================================
   how-it-works.html
   ============================================================ */
:root {--bg:#f4f1ea;--text:#171717;--muted:#6b6b66;--line:rgba(23,23,23,.18);--line-strong:rgba(23,23,23,.72);--max:1180px}

body.how-it-works-page * {box-sizing:border-box}

body.how-it-works-page {margin:0;background:linear-gradient(#f7f4ed,var(--bg));color:var(--text);font-family:Inter,system-ui,sans-serif}

body.how-it-works-page .page {padding:24px}

body.how-it-works-page .wrap {width:min(var(--max),100%);margin:auto}

body.how-it-works-page .top {display:flex;justify-content:space-between;align-items:center;padding:8px 0 24px}

body.how-it-works-page .brand {text-decoration:none;color:inherit;font-size:2rem;font-weight:600;letter-spacing:-.05em}

body.how-it-works-page nav a {text-decoration:none;color:var(--muted);margin-left:18px;text-transform:uppercase;font-size:.82rem}

body.how-it-works-page .hero {padding:90px 0;border-bottom:1px solid var(--line)}

body.how-it-works-page .k {color:var(--muted);text-transform:uppercase;letter-spacing:.16em;font-size:.8rem}

body.how-it-works-page h1 {margin:0;font-size:clamp(4rem,10vw,8.5rem);letter-spacing:-.07em}

body.how-it-works-page .lead {max-width:760px;color:var(--muted);font-size:1.2rem;line-height:1.7}

body.how-it-works-page .flow {padding:90px 0;border-bottom:1px solid var(--line);text-align:center}

body.how-it-works-page .flow div {font-size:clamp(1.6rem,4vw,3.2rem);margin:18px 0}

body.how-it-works-page .arrow {color:var(--muted)}

body.how-it-works-page .section {display:grid;grid-template-columns:220px 1fr;gap:60px;padding:70px 0;border-bottom:1px solid var(--line)}

body.how-it-works-page h2 {margin:0 0 18px;font-size:clamp(2rem,4vw,4rem);letter-spacing:-.05em}

body.how-it-works-page .panel {border:1px solid var(--line);padding:28px;background:rgba(255,255,255,.35);margin-top:30px}

body.how-it-works-page .placeholder {height:280px;border:1px dashed var(--line);display:grid;place-items:center;color:var(--muted);text-transform:uppercase;letter-spacing:.12em}

body.how-it-works-page .statement {padding:120px 0;text-align:center}

body.how-it-works-page .statement p {font-size:clamp(2rem,5vw,5rem);letter-spacing:-.05em;margin:0}

body.how-it-works-page .statement span {color:var(--muted)}

body.how-it-works-page footer {display:flex;justify-content:space-between;padding:24px 0;color:var(--muted)}

@media (max-width:800px) {
  body.how-it-works-page .section {grid-template-columns:1fr;gap:24px}

  body.how-it-works-page footer {flex-direction:column}
}

body.how-it-works-page .topbar {width: min(1180px, 100%);
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      padding: 8px 0 24px;}

body.how-it-works-page .brand {display: inline-flex;
      align-items: center;
      gap: 14px;
      text-decoration: none;
      color: inherit;
      letter-spacing: -0.055em;
      font-size: clamp(1.6rem, 2vw, 2.2rem);
      font-weight: 600;
      line-height: 1;}

body.how-it-works-page .brand-divider {width: 1px;
      height: 34px;
      background: var(--line-strong, rgba(23, 23, 23, 0.72));
      flex: 0 0 auto;}

body.how-it-works-page .brand-ghost {display: inline-block;
      opacity: 0.035;
      transform: scaleX(-1);
      transform-origin: center;
      font-size: 1em;
      letter-spacing: -0.055em;
      user-select: none;
      pointer-events: none;
      white-space: nowrap;}

body.how-it-works-page .nav {display: flex;
      align-items: center;
      gap: 18px;
      color: var(--muted);
      font-size: 0.86rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      white-space: nowrap;}

body.how-it-works-page .nav a {color: var(--muted);
      text-decoration: none;}

body.how-it-works-page .nav a:hover,
body.how-it-works-page .nav a:focus-visible,
body.how-it-works-page .nav a[aria-current="page"] {color: var(--text);}

@media (max-width: 820px) {
  body.how-it-works-page .topbar {align-items: flex-start;}

  body.how-it-works-page .nav {flex-wrap: wrap;
        justify-content: flex-end;
        gap: 10px 12px;
        font-size: 0.74rem;}
}

@media (max-width: 540px) {
  body.how-it-works-page .brand-divider,
  body.how-it-works-page .brand-ghost {display: none;}
}


/* Canonical shared shell. Kept last so it overrides all page-specific copies. */
body.home-page,
body.product-page,
body.how-it-works-page,
body.vision-page,
body.roadmap-page {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 14%, rgba(255,255,255,0.9), transparent 28%),
    linear-gradient(180deg, #f7f4ed 0%, var(--bg) 100%);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  overflow-x: hidden;
}

body.home-page .page,
body.product-page .page,
body.how-it-works-page .page,
body.vision-page .page,
body.roadmap-page .page {
  min-height: 100vh;
  padding: 24px;
}

body.home-page .topbar,
body.product-page .topbar,
body.how-it-works-page .topbar,
body.vision-page .topbar,
body.roadmap-page .topbar {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 8px 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

body.home-page .brand,
body.product-page .brand,
body.how-it-works-page .brand,
body.vision-page .brand,
body.roadmap-page .brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: inherit;
  text-decoration: none;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: clamp(1.6rem, 2vw, 2.2rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.055em;
}

body.home-page .brand-divider,
body.product-page .brand-divider,
body.how-it-works-page .brand-divider,
body.vision-page .brand-divider,
body.roadmap-page .brand-divider {
  width: 1px;
  height: 34px;
  flex: 0 0 auto;
  background: var(--line-strong);
}

body.home-page .brand-ghost,
body.product-page .brand-ghost,
body.how-it-works-page .brand-ghost,
body.vision-page .brand-ghost,
body.roadmap-page .brand-ghost {
  display: inline-block;
  opacity: 0.035;
  transform: scaleX(-1);
  transform-origin: center;
  font-size: 1em;
  line-height: 1;
  letter-spacing: -0.055em;
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
}

body.home-page .nav,
body.product-page .nav,
body.how-it-works-page .nav,
body.vision-page .nav,
body.roadmap-page .nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 0.86rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

body.home-page .nav a,
body.product-page .nav a,
body.how-it-works-page .nav a,
body.vision-page .nav a,
body.roadmap-page .nav a {
  margin: 0;
  padding: 0;
  color: var(--muted);
  text-decoration: none;
  font: inherit;
  letter-spacing: inherit;
}

body.home-page .nav a:hover,
body.home-page .nav a:focus-visible,
body.home-page .nav a[aria-current="page"],
body.product-page .nav a:hover,
body.product-page .nav a:focus-visible,
body.product-page .nav a[aria-current="page"],
body.how-it-works-page .nav a:hover,
body.how-it-works-page .nav a:focus-visible,
body.how-it-works-page .nav a[aria-current="page"],
body.vision-page .nav a:hover,
body.vision-page .nav a:focus-visible,
body.vision-page .nav a[aria-current="page"],
body.roadmap-page .nav a:hover,
body.roadmap-page .nav a:focus-visible,
body.roadmap-page .nav a[aria-current="page"] {
  color: var(--text);
}

body.product-page .content,
body.how-it-works-page .content,
body.vision-page .content,
body.roadmap-page .content,
body.home-page .hero-wrap,
body.home-page .footer,
body.product-page .footer,
body.how-it-works-page .footer,
body.vision-page .footer,
body.roadmap-page .footer {
  width: min(1180px, 100%);
  margin-left: auto;
  margin-right: auto;
}

body.home-page .footer,
body.product-page .footer,
body.how-it-works-page .footer,
body.vision-page .footer,
body.roadmap-page .footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0 4px;
  color: var(--muted);
  font-size: 0.82rem;
}

@media (max-width: 820px) {
  body.home-page .page,
  body.product-page .page,
  body.how-it-works-page .page,
  body.vision-page .page,
  body.roadmap-page .page { padding: 18px; }

  body.home-page .topbar,
  body.product-page .topbar,
  body.how-it-works-page .topbar,
  body.vision-page .topbar,
  body.roadmap-page .topbar { align-items: flex-start; }

  body.home-page .nav,
  body.product-page .nav,
  body.how-it-works-page .nav,
  body.vision-page .nav,
  body.roadmap-page .nav {
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px 12px;
    font-size: 0.74rem;
  }

  body.home-page .footer,
  body.product-page .footer,
  body.how-it-works-page .footer,
  body.vision-page .footer,
  body.roadmap-page .footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 540px) {
  body.home-page .brand-divider,
  body.home-page .brand-ghost,
  body.product-page .brand-divider,
  body.product-page .brand-ghost,
  body.how-it-works-page .brand-divider,
  body.how-it-works-page .brand-ghost,
  body.vision-page .brand-divider,
  body.vision-page .brand-ghost,
  body.roadmap-page .brand-divider,
  body.roadmap-page .brand-ghost { display: none; }
}
