:root {
  color-scheme: light;
  font-family: "Manrope", "Avenir Next", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
  --ink: #0b1734;
  --muted: #526078;
  --quiet: #77839a;
  --line: #dce4f1;
  --blue: #176bff;
  --blue-dark: #0754db;
  --blue-soft: #edf4ff;
  --green: #0cae65;
  --red: #e64c55;
  --surface: #ffffff;
  --surface-soft: #f7f9fc;
  --shadow: rgba(19, 49, 99, 0.13);
}

* { box-sizing: border-box; }

html {
  min-width: 320px;
  min-height: 100%;
  background: var(--surface);
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 88% 12%, rgba(43, 133, 255, 0.08), transparent 25%),
    linear-gradient(160deg, #ffffff 0 68%, #f6f9ff 100%);
  -webkit-font-smoothing: antialiased;
}

button,
input { font: inherit; }

button,
a { -webkit-tap-highlight-color: transparent; }

a { color: inherit; }

button:focus-visible,
input:focus-visible,
a:focus-visible {
  outline: 3px solid #68a5ff;
  outline-offset: 3px;
}

[hidden] { display: none !important; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

.skip-link:focus { transform: translateY(0); }

.site-header,
.hero,
.principles,
.faq,
.site-footer {
  width: min(100% - 48px, 1420px);
  margin-inline: auto;
}

.site-header {
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
  font-size: 22px;
  font-weight: 820;
  letter-spacing: -0.035em;
}

.brand-mark {
  width: 34px;
  height: 34px;
  color: var(--blue);
}

.listener-note {
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  font-weight: 700;
}

.hero {
  min-height: 700px;
  display: grid;
  grid-template-columns: minmax(420px, 0.88fr) minmax(560px, 1.12fr);
  align-items: center;
  gap: clamp(56px, 7vw, 120px);
  padding: 50px 0 76px;
}

.hero-copy { max-width: 620px; }

.prelaunch {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 24px;
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.prelaunch span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 6px var(--blue-soft);
}

h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(50px, 5.2vw, 78px);
  font-weight: 820;
  letter-spacing: -0.062em;
  line-height: 0.99;
}

h1 em {
  color: var(--blue);
  font-style: normal;
}

.hero-lede {
  max-width: 590px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.55;
}

.waitlist-form {
  max-width: 620px;
  margin-top: 38px;
}

.form-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 13px;
}

.form-heading h2 {
  margin: 0;
  font-size: 16px;
  letter-spacing: -0.018em;
}

.form-heading p {
  margin: 0;
  color: var(--quiet);
  font-size: 13px;
}

.email-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  padding: 7px;
  border: 1px solid #cdd8e9;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 36px rgba(26, 70, 142, 0.08);
}

.email-row:focus-within {
  border-color: #7daeff;
  box-shadow: 0 0 0 4px rgba(23, 107, 255, 0.11), 0 12px 36px rgba(26, 70, 142, 0.08);
}

.email-row input {
  min-width: 0;
  min-height: 54px;
  padding: 0 15px;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  font-size: 16px;
}

.email-row input::placeholder { color: #8a96aa; }

.email-row button {
  min-height: 54px;
  padding: 0 22px;
  border: 0;
  border-radius: 12px;
  color: #fff;
  background: var(--blue);
  cursor: pointer;
  font-size: 15px;
  font-weight: 780;
  box-shadow: 0 8px 18px rgba(23, 107, 255, 0.25);
  transition: background 150ms ease, transform 150ms ease, box-shadow 150ms ease;
}

.email-row button:not(:disabled):hover {
  background: var(--blue-dark);
  box-shadow: 0 10px 22px rgba(23, 107, 255, 0.3);
  transform: translateY(-1px);
}

.email-row button:disabled {
  cursor: wait;
  opacity: 0.67;
}

.honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.turnstile-widget {
  min-height: 1px;
  margin-top: 10px;
}

.form-meta {
  display: flex;
  margin-top: 10px;
}

.region-control {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 4px;
  border: 0;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-size: 12px;
}

.region-control svg {
  width: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.region-change {
  color: var(--blue-dark);
  font-weight: 720;
}

.region-options {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-left: 10px;
}

.region-options button {
  min-height: 34px;
  padding: 5px 10px;
  border: 1px solid var(--line);
  border-radius: 9px;
  color: var(--muted);
  background: #fff;
  cursor: pointer;
  font-size: 12px;
}

.region-options button[aria-pressed="true"] {
  border-color: #8bb7ff;
  color: var(--blue-dark);
  background: var(--blue-soft);
  font-weight: 750;
}

.form-status {
  min-height: 20px;
  margin: 2px 0 0;
  color: #b13844;
  font-size: 13px;
  font-weight: 650;
}

.privacy-note {
  max-width: 600px;
  margin: 4px 0 0;
  color: var(--quiet);
  font-size: 11px;
  line-height: 1.55;
}

.privacy-note a { text-underline-offset: 2px; }

.success-panel {
  max-width: 620px;
  display: flex;
  gap: 15px;
  align-items: center;
  margin-top: 38px;
  padding: 18px 20px;
  border: 1px solid #a8ddc5;
  border-radius: 16px;
  background: #f0fbf6;
}

.success-panel:focus { outline: none; }

.success-icon {
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
  font-weight: 800;
}

.success-panel h2 { margin: 0; font-size: 17px; }
.success-panel p { margin: 4px 0 0; color: #456354; font-size: 13px; line-height: 1.45; }

.preview-wrap { min-width: 0; }

.preview-label {
  margin: 0 0 12px;
  color: var(--quiet);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-align: right;
  text-transform: uppercase;
}

.product-preview {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  border: 1px solid #d7e0ed;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 38px 90px var(--shadow), 0 8px 24px rgba(19, 49, 99, 0.07);
}

.product-preview::before {
  position: absolute;
  width: 360px;
  height: 360px;
  top: -230px;
  right: -130px;
  border-radius: 50%;
  content: "";
  background: radial-gradient(circle, rgba(49, 139, 255, 0.18), transparent 68%);
  pointer-events: none;
}

.preview-topbar {
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 26px;
  border-bottom: 1px solid #e6ebf3;
}

.preview-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 820;
  letter-spacing: -0.025em;
}

.preview-brand svg { width: 26px; color: var(--blue); }

.focus-live {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 11px;
  border: 1px solid #bcd1f1;
  border-radius: 999px;
  color: #24446d;
  background: #f7faff;
  font-size: 11px;
  font-weight: 720;
}

.focus-live span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 4px rgba(23, 107, 255, 0.12);
}

.preview-body {
  min-height: 398px;
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
}

.preview-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 23px;
  padding-top: 30px;
  border-right: 1px solid #e6ebf3;
  background: #fbfcfe;
}

.nav-dot {
  width: 18px;
  height: 18px;
  border: 2px solid #9ca9bb;
  border-radius: 6px;
}

.nav-dot.active {
  border-color: var(--blue);
  background: var(--blue-soft);
  box-shadow: 0 0 0 7px var(--blue-soft);
}

.preview-content { padding: 24px; }

.intention-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  padding: 21px 22px 23px;
  border: 1px solid #dbe3ef;
  border-radius: 18px;
  background: #fff;
}

.intention-card p {
  margin: 0 0 7px;
  color: var(--blue-dark);
  font-size: 11px;
  font-weight: 790;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.intention-card h2 {
  margin: 0;
  font-size: 20px;
  letter-spacing: -0.035em;
}

.time-left {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  color: var(--muted);
}

.time-left strong {
  color: var(--ink);
  font-size: 24px;
  line-height: 1;
}

.time-left span { margin-top: 4px; font-size: 10px; }

.progress {
  grid-column: 1 / -1;
  height: 6px;
  overflow: hidden;
  border-radius: 99px;
  background: #e8edf5;
}

.progress span {
  display: block;
  width: 62%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #176bff, #3b93ff);
}

.access-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 14px;
}

.access-column {
  min-width: 0;
  padding: 16px;
  border: 1px solid #dbe3ef;
  border-radius: 17px;
  background: #fff;
}

.column-heading {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 8px;
  align-items: center;
  margin-bottom: 12px;
}

.column-heading .status-dot {
  grid-row: 1 / 3;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.allowed .status-dot { background: var(--green); }
.blocked .status-dot { background: var(--red); }
.column-heading strong { font-size: 12px; }
.column-heading small { color: var(--quiet); font-size: 9px; }

.app-row {
  min-width: 0;
  display: grid;
  grid-template-columns: 29px minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  min-height: 47px;
  padding: 7px 8px;
  border-top: 1px solid #edf0f5;
  color: #26354e;
  font-size: 10px;
}

.app-glyph {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 7px;
}

.app-glyph.shop { color: #fff; background: #78b44c; font-weight: 850; }
.app-glyph.doc { background: linear-gradient(145deg, #5596ff, #1f69ed); }
.app-glyph.doc::after { width: 10px; height: 12px; border: 2px solid #fff; border-radius: 2px; content: ""; }
.app-glyph.social { background: linear-gradient(145deg, #fc5572, #8f49e7); }
.app-glyph.social::after { width: 9px; height: 9px; border: 2px solid #fff; border-radius: 3px; content: ""; }
.app-glyph.news { background: #222d40; }
.app-glyph.news::after { width: 12px; height: 10px; border-top: 2px solid #fff; border-bottom: 2px solid #fff; content: ""; }
.state-check { color: var(--green); font-size: 14px; font-weight: 800; }
.lock-glyph { color: var(--red); font-size: 16px; transform: rotate(-25deg); }

.preview-footer {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 14px 26px;
  border-top: 1px solid #e6ebf3;
  background: #fbfcff;
}

.preview-footer svg {
  width: 29px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--blue);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.preview-footer div { display: flex; flex-direction: column; gap: 3px; }
.preview-footer strong { font-size: 12px; }
.preview-footer span { color: var(--muted); font-size: 10px; }

.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  padding: 44px 0 60px;
  border-top: 1px solid var(--line);
}

.principles article { display: flex; gap: 16px; }
.principles article > span { color: var(--blue); font-size: 12px; font-weight: 800; }
.principles h2 { margin: 0; font-size: 15px; letter-spacing: -0.015em; }
.principles p { max-width: 310px; margin: 7px 0 0; color: var(--muted); font-size: 13px; line-height: 1.55; }

.faq {
  display: grid;
  grid-template-columns: minmax(220px, 0.65fr) minmax(0, 1.35fr);
  gap: clamp(48px, 8vw, 120px);
  padding: 72px 0 84px;
  border-top: 1px solid var(--line);
}

.faq .prelaunch { margin-bottom: 18px; }
.faq-intro > h2 { max-width: 360px; margin: 0; font-size: clamp(30px, 3.3vw, 48px); letter-spacing: -0.05em; line-height: 1.04; }
.faq-list article { padding: 22px 0; border-top: 1px solid var(--line); }
.faq-list article:first-child { padding-top: 0; border-top: 0; }
.faq-list h3 { margin: 0; font-size: 17px; letter-spacing: -0.025em; }
.faq-list p { max-width: 720px; margin: 9px 0 0; color: var(--muted); font-size: 14px; line-height: 1.65; }

.site-footer {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  color: var(--quiet);
  font-size: 12px;
}

.site-footer p { margin: 0; }
.site-footer strong { color: var(--ink); }
.site-footer nav { display: flex; gap: 20px; }
.site-footer a { text-underline-offset: 3px; }

.back-link {
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 730;
  text-underline-offset: 3px;
}

.privacy-page {
  background: #fff;
}

.privacy-main {
  width: min(100% - 48px, 760px);
  margin: 0 auto;
  padding: 82px 0 100px;
}

.privacy-main h1 {
  max-width: 720px;
  font-size: clamp(42px, 7vw, 66px);
}

.privacy-intro {
  margin: 28px 0 56px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
}

.privacy-main section {
  padding: 26px 0;
  border-top: 1px solid var(--line);
}

.privacy-main section h2 {
  margin: 0 0 10px;
  font-size: 18px;
  letter-spacing: -0.025em;
}

.privacy-main section p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.privacy-main section p + p { margin-top: 12px; }
.privacy-main section a { color: var(--blue-dark); text-underline-offset: 3px; }
.privacy-updated { margin: 32px 0 0; color: var(--quiet); font-size: 12px; }

@media (max-width: 1080px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 64px;
    padding-top: 64px;
  }
  .hero-copy { max-width: 760px; }
  .waitlist-form, .success-panel { max-width: 680px; }
  .preview-wrap { max-width: 780px; }
}

@media (max-width: 720px) {
  .site-header,
  .hero,
  .principles,
  .faq,
  .site-footer { width: min(100% - 32px, 1420px); }

  .site-header { min-height: 78px; }
  .brand { font-size: 19px; }
  .brand-mark { width: 30px; height: 30px; }
  .listener-note { padding: 7px 10px; font-size: 10px; }

  .hero { min-height: auto; gap: 50px; padding: 44px 0 58px; }
  h1 { font-size: clamp(42px, 13vw, 62px); }
  .hero-lede { font-size: 18px; }
  .form-heading { display: block; }
  .form-heading p { margin-top: 5px; }
  .email-row { grid-template-columns: 1fr; padding: 6px; }
  .email-row button { width: 100%; }
  .region-options { margin-left: 4px; }

  .product-preview { min-height: 500px; border-radius: 23px; }
  .preview-topbar { height: 72px; padding: 0 18px; }
  .preview-body { min-height: 350px; grid-template-columns: 46px minmax(0, 1fr); }
  .preview-content { padding: 14px; }
  .preview-nav { gap: 19px; padding-top: 24px; }
  .nav-dot { width: 14px; height: 14px; border-radius: 4px; }
  .intention-card { padding: 17px; }
  .intention-card h2 { font-size: 16px; }
  .time-left strong { font-size: 20px; }
  .access-grid { grid-template-columns: 1fr; }
  .access-column { padding: 12px; }
  .blocked { display: none; }
  .preview-footer { min-height: 76px; padding: 13px 18px; }

  .principles { grid-template-columns: 1fr; gap: 28px; padding: 38px 0 46px; }
  .faq { grid-template-columns: 1fr; gap: 38px; padding: 54px 0 62px; }
  .site-footer { min-height: 120px; flex-direction: column; align-items: flex-start; justify-content: center; }
  .privacy-main { width: min(100% - 32px, 760px); padding: 56px 0 72px; }
}


@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; }
}

@media (forced-colors: active) {
  .email-row,
  .product-preview,
  .intention-card,
  .access-column { border: 1px solid CanvasText; }
  .email-row button,
  .success-icon { border: 2px solid ButtonText; }
}
