@font-face { font-family: 'Bricolage Grotesque'; src: url('/assets/fonts/bricolage-500.ttf') format('truetype'); font-style: normal; font-weight: 500; font-display: swap; }
@font-face { font-family: 'Bricolage Grotesque'; src: url('/assets/fonts/bricolage-600.ttf') format('truetype'); font-style: normal; font-weight: 600; font-display: swap; }
@font-face { font-family: 'Bricolage Grotesque'; src: url('/assets/fonts/bricolage-700.ttf') format('truetype'); font-style: normal; font-weight: 700; font-display: swap; }
@font-face { font-family: 'Bricolage Grotesque'; src: url('/assets/fonts/bricolage-800.ttf') format('truetype'); font-style: normal; font-weight: 800; font-display: swap; }
@font-face { font-family: 'IBM Plex Mono'; src: url('/assets/fonts/ibm-plex-mono-500.ttf') format('truetype'); font-style: normal; font-weight: 500; font-display: swap; }
@font-face { font-family: 'IBM Plex Mono'; src: url('/assets/fonts/ibm-plex-mono-600.ttf') format('truetype'); font-style: normal; font-weight: 600; font-display: swap; }

:root {
  --paper: #fbf8f3;
  --paper-deep: #f1ebe2;
  --surface: #ffffff;
  --ink: #181b20;
  --ink-soft: #5e605f;
  --ink-muted: #83837f;
  --signal: #f45b24;
  --signal-dark: #d94716;
  --signal-soft: #fff0e8;
  --live: #158765;
  --live-soft: #e5f5ee;
  --cobalt: #3157d5;
  --cobalt-soft: #eaf0ff;
  --night: #111820;
  --night-soft: #1b2631;
  --gold: #c38a22;
  --line: rgba(24, 27, 32, 0.12);
  --line-soft: rgba(24, 27, 32, 0.07);
  --shadow-card: 0 1px 0 rgba(24, 27, 32, 0.04), 0 16px 42px rgba(37, 31, 25, 0.09);
  --shadow-float: 0 24px 80px rgba(37, 31, 25, 0.16);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-xl: 46px;
  --container: 1200px;
  --font-display: 'Bricolage Grotesque', system-ui, sans-serif;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--paper); }
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }
::selection { color: var(--ink); background: #ffd5c1; }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 10px;
  color: #fff;
  background: var(--ink);
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.mono {
  font-family: var(--font-mono);
  font-size: .73rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.signal { color: var(--signal); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  background: color-mix(in srgb, var(--paper) 86%, transparent);
  backdrop-filter: saturate(150%) blur(18px);
}
.nav {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 800; font-size: 1.35rem; letter-spacing: -.045em; }
.brand img { width: 38px; height: 38px; }
.brand span span { color: var(--signal); }
.desktop-nav { display: flex; align-items: center; gap: 30px; color: var(--ink-soft); font-size: .93rem; font-weight: 650; }
.desktop-nav a, .footer-links a, .legal-nav a { transition: color .2s ease; }
.desktop-nav a:hover, .footer-links a:hover, .legal-nav a:hover { color: var(--signal); }
.nav-cta, .button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  font-weight: 750;
  line-height: 1;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.nav-cta, .button-primary { color: #fff; background: var(--signal); box-shadow: 0 10px 24px rgba(244, 91, 36, .22); }
.nav-cta:hover, .button-primary:hover { background: var(--signal-dark); transform: translateY(-2px); }
.button-secondary { color: var(--ink); border: 1px solid var(--line); background: rgba(255,255,255,.72); }
.button-secondary:hover { background: #fff; transform: translateY(-2px); box-shadow: var(--shadow-card); }
.button-dark { color: #fff; background: var(--night); }
.button-dark:hover { background: #263340; transform: translateY(-2px); }
.button:focus-visible, .nav-cta:focus-visible, a:focus-visible, .menu-button:focus-visible { outline: 3px solid color-mix(in srgb, var(--cobalt) 55%, transparent); outline-offset: 3px; }
.menu-button { display: none; width: 46px; height: 46px; align-items: center; justify-content: center; border: 1px solid var(--line); border-radius: 50%; background: var(--surface); cursor: pointer; }
.menu-button svg { width: 21px; height: 21px; }
.mobile-menu { padding: 12px 20px 24px; border-top: 1px solid var(--line-soft); background: var(--paper); }
.mobile-menu[hidden] { display: none; }
.mobile-menu a { display: flex; min-height: 54px; align-items: center; border-bottom: 1px solid var(--line-soft); font-family: var(--font-display); font-weight: 700; }

.hero { position: relative; overflow: hidden; padding: 64px 0 86px; }
.hero::before {
  position: absolute;
  width: 520px;
  height: 520px;
  top: -230px;
  right: -120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244,91,36,.18), rgba(244,91,36,0) 68%);
  content: '';
}
.hero-grid { display: grid; grid-template-columns: .87fr 1.13fr; align-items: center; gap: clamp(48px, 7vw, 100px); }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 18px; color: var(--signal); }
.eyebrow::before { width: 8px; height: 8px; border-radius: 50%; background: currentColor; content: ''; }
h1, h2, h3 { margin: 0; font-family: var(--font-display); letter-spacing: -.052em; }
h1 { max-width: 720px; font-size: clamp(3.55rem, 6.4vw, 6.6rem); font-weight: 750; line-height: .94; }
h2 { max-width: 820px; font-size: clamp(2.35rem, 4.4vw, 4.65rem); font-weight: 720; line-height: 1.02; }
h3 { font-size: clamp(1.35rem, 2vw, 1.8rem); font-weight: 700; line-height: 1.12; }
.hero-copy > p { max-width: 600px; margin: 28px 0 0; color: var(--ink-soft); font-size: clamp(1.05rem, 1.7vw, 1.28rem); line-height: 1.55; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-note { display: flex; align-items: center; gap: 12px; margin-top: 26px; color: var(--ink-soft); font-size: .88rem; }
.avatar-stack { display: flex; flex: 0 0 auto; }
.avatar-stack span { display: grid; width: 34px; height: 34px; place-items: center; margin-left: -8px; border: 2px solid var(--paper); border-radius: 50%; color: #fff; background: var(--night-soft); font-family: var(--font-display); font-size: .72rem; font-weight: 800; }
.avatar-stack span:first-child { margin-left: 0; background: var(--signal); }
.avatar-stack span:nth-child(2) { background: var(--cobalt); }
.avatar-stack span:nth-child(3) { background: var(--live); }

.hero-media { position: relative; width: min(100%, 680px); min-width: 0; justify-self: end; }
.hero-frame { position: relative; aspect-ratio: 1 / 1; overflow: hidden; border-radius: var(--radius-xl); background: #fff; box-shadow: var(--shadow-float); transform: rotate(1.2deg); }
.hero-frame img { width: 100%; height: 100%; object-fit: cover; }
.live-card {
  position: absolute;
  left: -36px;
  bottom: 42px;
  display: flex;
  min-width: 220px;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,.85);
  border-radius: 18px;
  background: rgba(255,255,255,.9);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(16px);
}
.live-indicator { width: 11px; height: 11px; border-radius: 50%; background: var(--live); box-shadow: 0 0 0 5px var(--live-soft); }
.live-card strong { display: block; font-family: var(--font-display); line-height: 1.2; }
.live-card small { display: block; margin-top: 2px; color: var(--ink-muted); }
.route-stamp { position: absolute; top: 28px; right: -24px; padding: 9px 13px; border-radius: 12px; color: #fff; background: var(--night); box-shadow: var(--shadow-card); transform: rotate(4deg); }

.product-strip { border-block: 1px solid var(--line); background: rgba(255,255,255,.52); }
.product-strip-inner { display: grid; grid-template-columns: repeat(4, 1fr); }
.product-strip-item { display: flex; min-height: 90px; align-items: center; justify-content: center; gap: 10px; padding: 18px; border-right: 1px solid var(--line); font-family: var(--font-display); font-weight: 700; }
.product-strip-item:last-child { border-right: 0; }
.product-strip-item svg { width: 21px; height: 21px; color: var(--signal); }

.section { padding: clamp(88px, 10vw, 150px) 0; }
.section[id] { scroll-margin-top: 96px; }
.section-heading { display: grid; grid-template-columns: 1fr .62fr; align-items: end; gap: 40px; margin-bottom: 54px; }
.section-heading p { margin: 0; color: var(--ink-soft); font-size: 1.08rem; }
.feature-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 20px; }
.feature-card { position: relative; overflow: hidden; min-height: 540px; border-radius: var(--radius-lg); background: var(--surface); box-shadow: var(--shadow-card); }
.feature-card-copy { position: relative; z-index: 2; padding: 36px; }
.feature-card-copy p { max-width: 430px; margin: 13px 0 0; color: var(--ink-soft); }
.feature-card-photo { position: absolute; inset: 185px 0 0; display: flex; align-items: flex-end; justify-content: center; padding: 0 24px; }
.feature-card-photo img { width: auto; max-width: 82%; height: calc(100% - 12px); object-fit: contain; object-position: center bottom; border-radius: 24px 24px 0 0; box-shadow: 0 24px 58px rgba(17,24,32,.22); }
.feature-card-dark { color: #fff; background: var(--night); }
.feature-card-dark .feature-card-copy p { color: rgba(255,255,255,.68); }
.feature-card-dark .feature-card-photo { background: radial-gradient(circle at 50% 100%, rgba(49,87,213,.28), transparent 58%); }
.feature-card-dark .feature-card-photo img { object-position: center bottom; }
.feature-card-light { background: #f3f1ec; }
.feature-card-light .feature-card-photo { background: radial-gradient(circle at 50% 78%, rgba(103,87,217,.16), transparent 58%); }
.feature-card-light .feature-card-photo img { transform: rotate(2deg) translateY(8px); }
.feature-label { display: inline-flex; align-items: center; gap: 7px; margin-bottom: 14px; color: var(--signal); }

.dark-section { position: relative; overflow: hidden; color: #fff; background: var(--night); }
.dark-section::after { position: absolute; width: 600px; height: 600px; right: -230px; bottom: -320px; border-radius: 50%; border: 1px dashed rgba(255,255,255,.16); content: ''; }
.dark-section .section-heading p { color: rgba(255,255,255,.66); }
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.step-card { position: relative; min-height: 310px; padding: 30px; border: 1px solid rgba(255,255,255,.12); border-radius: 28px; background: rgba(255,255,255,.055); }
.step-number { display: grid; width: 46px; height: 46px; place-items: center; margin-bottom: 62px; border-radius: 50%; color: var(--night); background: var(--signal); font-family: var(--font-mono); font-weight: 600; }
.step-card p { margin: 13px 0 0; color: rgba(255,255,255,.62); }
.step-meta { position: absolute; top: 32px; right: 30px; color: rgba(255,255,255,.36); }

.campaign-section { overflow: hidden; }
.campaign-frame { overflow: hidden; border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-card); }
.campaign-frame img { width: 100%; height: auto; object-fit: contain; }
.campaign-caption { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 22px 28px; }
.campaign-caption p { margin: 0; color: var(--ink-soft); }

.safety-grid { display: grid; grid-template-columns: .78fr 1.22fr; align-items: center; gap: clamp(50px, 8vw, 110px); }
.safety-copy p { margin: 22px 0 0; color: var(--ink-soft); font-size: 1.08rem; }
.trust-list { display: grid; gap: 12px; margin-top: 30px; }
.trust-item { display: flex; align-items: flex-start; gap: 13px; padding-top: 13px; border-top: 1px solid var(--line); }
.trust-icon { display: grid; width: 34px; height: 34px; flex: 0 0 auto; place-items: center; border-radius: 50%; color: var(--live); background: var(--live-soft); }
.trust-icon svg { width: 17px; height: 17px; }
.safety-panel { position: relative; min-height: 520px; max-height: 600px; overflow: hidden; border-radius: var(--radius-lg); background: var(--night); box-shadow: var(--shadow-float); }
.safety-panel img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 58%; opacity: .76; }
.safety-overlay { position: absolute; inset: auto 22px 22px; padding: 22px; border: 1px solid rgba(255,255,255,.14); border-radius: 22px; color: #fff; background: rgba(17,24,32,.86); backdrop-filter: blur(16px); }
.safety-overlay-top { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.safety-overlay p { margin: 12px 0 0; color: rgba(255,255,255,.64); }
.status-pill { display: inline-flex; align-items: center; gap: 7px; padding: 7px 10px; border-radius: 999px; color: #d2f6e8; background: rgba(21,135,101,.22); font-family: var(--font-mono); font-size: .66rem; font-weight: 600; text-transform: uppercase; }

.faq-layout { display: grid; grid-template-columns: .65fr 1fr; gap: clamp(50px, 8vw, 120px); }
.faq-list { border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); }
summary { display: flex; min-height: 82px; align-items: center; justify-content: space-between; gap: 18px; cursor: pointer; list-style: none; font-family: var(--font-display); font-size: 1.13rem; font-weight: 700; }
summary::-webkit-details-marker { display: none; }
summary::after { width: 28px; height: 28px; flex: 0 0 auto; border: 1px solid var(--line); border-radius: 50%; content: '+'; text-align: center; line-height: 25px; }
details[open] summary::after { content: '−'; }
details p { max-width: 680px; margin: -6px 0 24px; color: var(--ink-soft); }

.launch-card { position: relative; overflow: hidden; padding: clamp(44px, 8vw, 94px); border-radius: var(--radius-xl); color: #fff; background: var(--signal); }
.launch-card::before { position: absolute; width: 420px; height: 420px; right: -140px; bottom: -250px; border: 1px dashed rgba(255,255,255,.4); border-radius: 50%; content: ''; }
.launch-card h2 { max-width: 760px; }
.launch-card p { max-width: 620px; margin: 22px 0 0; color: rgba(255,255,255,.82); font-size: 1.08rem; }
.launch-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.launch-card .button-secondary { color: #fff; border-color: rgba(255,255,255,.38); background: rgba(255,255,255,.12); }
.launch-card .button-secondary:hover { background: rgba(255,255,255,.2); }

.site-footer { padding: 70px 0 30px; color: rgba(255,255,255,.72); background: var(--night); }
.footer-grid { display: grid; grid-template-columns: 1.3fr repeat(3, .7fr); gap: 54px; }
.footer-brand .brand { color: #fff; }
.footer-brand p { max-width: 330px; margin: 18px 0 0; color: rgba(255,255,255,.5); }
.footer-column strong { display: block; margin-bottom: 16px; color: #fff; font-family: var(--font-display); }
.footer-links { display: grid; gap: 10px; font-size: .91rem; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 60px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.38); font-size: .8rem; }

/* Legal pages */
.legal-hero { padding: 74px 0 52px; border-bottom: 1px solid var(--line); }
.legal-hero h1 { max-width: 900px; font-size: clamp(3rem, 6vw, 5.8rem); }
.legal-hero p { max-width: 730px; margin: 22px 0 0; color: var(--ink-soft); font-size: 1.08rem; }
.legal-meta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 25px; }
.meta-chip { padding: 8px 11px; border: 1px solid var(--line); border-radius: 999px; color: var(--ink-soft); background: rgba(255,255,255,.62); font-family: var(--font-mono); font-size: .67rem; }
.legal-layout { display: grid; grid-template-columns: 260px minmax(0, 760px); justify-content: space-between; gap: 80px; padding-block: 68px 120px; }
.legal-nav { position: sticky; top: 105px; align-self: start; display: grid; gap: 7px; padding: 18px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.68); }
.legal-nav a { padding: 7px 9px; border-radius: 8px; color: var(--ink-soft); font-size: .82rem; }
.legal-nav a:hover { background: var(--signal-soft); }
.legal-content { min-width: 0; }
.legal-content section { scroll-margin-top: 105px; padding: 0 0 42px; }
.legal-content h2 { margin-bottom: 16px; font-size: clamp(1.75rem, 3vw, 2.4rem); letter-spacing: -.035em; }
.legal-content h3 { margin: 28px 0 10px; font-size: 1.17rem; letter-spacing: -.02em; }
.legal-content p, .legal-content li { color: var(--ink-soft); }
.legal-content ul, .legal-content ol { padding-left: 1.25rem; }
.legal-content li + li { margin-top: 7px; }
.legal-content a { color: var(--cobalt); text-decoration: underline; text-underline-offset: 3px; }
.notice { margin: 0 0 38px; padding: 20px 22px; border-left: 4px solid var(--gold); border-radius: 0 14px 14px 0; color: #5e4a23; background: #fff5dc; }
.placeholder { padding: 2px 5px; border-radius: 5px; color: #8d3e18; background: #ffe0cd; font-family: var(--font-mono); font-size: .84em; font-weight: 600; }
.contact-block { padding: 24px; border: 1px solid var(--line); border-radius: 18px; background: #fff; }

.js [data-reveal] { opacity: 0; transform: translateY(20px); transition: opacity .65s ease, transform .65s ease; }
.js [data-reveal].is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}

@media (max-width: 980px) {
  .hero-grid, .section-heading, .safety-grid, .faq-layout { grid-template-columns: 1fr; }
  .hero-copy { max-width: 760px; }
  .hero-media { width: min(86%, 680px); margin: 20px auto 0; }
  .section-heading { align-items: start; }
  .section-heading p { max-width: 620px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 560px; }
  .footer-grid { grid-template-columns: 1.4fr repeat(2, 1fr); }
  .footer-column:last-child { grid-column: 2; }
  .legal-layout { grid-template-columns: 220px minmax(0, 1fr); gap: 44px; }
}

@media (max-width: 860px) {
  .desktop-nav, .nav > .nav-cta { display: none; }
  .menu-button { display: inline-flex; }
  .product-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .product-strip-item:nth-child(2) { border-right: 0; }
  .product-strip-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .how-grid { grid-template-columns: 1fr; }
  .step-card { min-height: 260px; }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-nav { position: static; grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .nav { min-height: 68px; }
  .hero { padding: 42px 0 66px; }
  h1 { font-size: clamp(3rem, 15vw, 4.7rem); }
  .hero-grid { gap: 40px; }
  .hero-media { width: min(92%, 430px); justify-self: center; }
  .hero-frame { border-radius: 30px; transform: none; }
  .live-card { left: 12px; bottom: 14px; min-width: 0; }
  .route-stamp { top: 16px; right: 12px; }
  .section { padding: 82px 0; }
  .section-heading { margin-bottom: 36px; }
  .feature-card { min-height: 500px; border-radius: 26px; }
  .feature-card-copy { padding: 26px; }
  .feature-card-photo { inset: 190px 0 0; padding-inline: 18px; }
  .feature-card-photo img { max-width: 74%; height: calc(100% - 8px); border-radius: 20px 20px 0 0; }
  .campaign-frame { margin-inline: -14px; border-radius: 0; }
  .campaign-frame img { min-height: 0; object-position: center; }
  .campaign-caption { align-items: flex-start; flex-direction: column; }
  .safety-panel { width: min(100%, 410px); min-height: 460px; margin-inline: auto; }
  .launch-card { margin-inline: -3px; border-radius: 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 42px 24px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-column:last-child { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .legal-hero { padding-top: 50px; }
  .legal-nav { grid-template-columns: 1fr; }
  .legal-layout { padding-top: 40px; }
}

@media (max-width: 420px) {
  .hero-actions, .launch-actions { flex-direction: column; }
  .hero-actions .button, .launch-actions .button { width: 100%; }
  .product-strip-item { min-height: 80px; padding: 14px 8px; font-size: .9rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand, .footer-column:last-child { grid-column: auto; }
}
