:root {
  color-scheme: dark;
  --ink: #0e0c1a;
  --plum: #351740;
  --violet: #7040b9;
  --coral: #ff6e6b;
  --peach: #ffb88c;
  --paper: #fbf0e7;
  --muted: #c9bdca;
  --line: rgba(255, 255, 255, 0.14);
  --surface: rgba(255, 255, 255, 0.075);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 90% 5%, rgba(112, 64, 185, 0.38), transparent 32rem),
    radial-gradient(circle at 4% 85%, rgba(255, 110, 107, 0.2), transparent 30rem),
    linear-gradient(145deg, var(--ink), var(--plum) 50%, var(--ink));
  color: var(--paper);
  font-family: ui-rounded, "SF Pro Rounded", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--peach); text-underline-offset: 0.2em; }
a:hover { color: #ffd2b6; }
.skip-link { position: absolute; left: -9999px; top: 0; }
.skip-link:focus { left: 1rem; top: 1rem; z-index: 10; padding: 0.75rem 1rem; background: var(--paper); color: var(--ink); border-radius: 999px; }

.wrap { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.narrow { width: min(760px, calc(100% - 40px)); margin: 0 auto; }

header { padding: 24px 0; }
nav { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--paper); text-decoration: none; font-weight: 850; letter-spacing: 0.04em; }
.brand img { width: 42px; height: 42px; border-radius: 11px; box-shadow: 0 8px 26px rgba(0,0,0,.28); }
.nav-links { display: flex; gap: 24px; align-items: center; }
.nav-links a { color: var(--muted); text-decoration: none; font-size: 0.9rem; font-weight: 650; }
.nav-links a:hover { color: var(--paper); }

.hero { min-height: 700px; display: grid; grid-template-columns: 1.1fr .9fr; gap: 64px; align-items: center; padding: 70px 0 110px; }
.eyebrow { margin: 0 0 10px; color: var(--peach); font-size: 0.82rem; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; }
h1, h2, h3 { margin: 0; line-height: 1.08; text-wrap: balance; }
h1 { max-width: 700px; font-size: clamp(3.5rem, 8vw, 6.8rem); letter-spacing: -0.055em; }
h2 { font-size: clamp(2rem, 5vw, 3.8rem); letter-spacing: -0.035em; }
h3 { font-size: 1.22rem; }
.lede { max-width: 650px; margin: 26px 0 0; color: var(--muted); font-size: clamp(1.12rem, 2.2vw, 1.42rem); }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.button { display: inline-flex; min-height: 54px; align-items: center; justify-content: center; padding: 0 24px; border-radius: 999px; text-decoration: none; font-weight: 800; }
.button.primary { background: linear-gradient(100deg, var(--peach), var(--coral)); color: var(--ink); box-shadow: 0 18px 50px rgba(255,110,107,.24); }
.button.secondary { background: var(--surface); color: var(--paper); border: 1px solid var(--line); }
.launch-note { margin-top: 14px; color: rgba(251,240,231,.58); font-size: .82rem; }

.phone-wrap { position: relative; display: flex; justify-content: center; }
.phone-glow { position: absolute; inset: 12% 0; border-radius: 50%; background: rgba(255,110,107,.22); filter: blur(70px); }
.phone { position: relative; width: min(330px, 78vw); padding: 9px; border-radius: 54px; background: linear-gradient(150deg, #665f6d, #15131b 35%, #09080c); box-shadow: 0 55px 100px rgba(0,0,0,.5), inset 0 0 0 1px rgba(255,255,255,.2); transform: rotate(3deg); }
.phone::before { content: ""; position: absolute; z-index: 2; width: 34%; height: 25px; left: 33%; top: 18px; border-radius: 20px; background: #08070b; }
.phone img { display: block; width: 100%; border-radius: 46px; }

section { padding: 100px 0; }
.section-intro { max-width: 700px; margin-bottom: 44px; }
.section-intro p { color: var(--muted); font-size: 1.15rem; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card { padding: 28px; background: var(--surface); border: 1px solid var(--line); border-radius: 26px; backdrop-filter: blur(14px); }
.card .icon { display: grid; place-items: center; width: 48px; height: 48px; margin-bottom: 22px; border-radius: 15px; background: linear-gradient(145deg, rgba(255,184,140,.28), rgba(255,110,107,.12)); font-size: 1.35rem; }
.card p { margin-bottom: 0; color: var(--muted); }
.mode-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.mode { min-height: 260px; display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden; position: relative; }
.mode::after { content: ""; position: absolute; width: 140px; height: 140px; right: -35px; top: -35px; border-radius: 50%; background: var(--wash); filter: blur(4px); }
.mode strong { font-size: 1.8rem; }
.mode span { color: var(--muted); }
.privacy-banner { display: grid; grid-template-columns: .8fr 1.2fr; gap: 40px; align-items: center; padding: 46px; border-radius: 34px; background: linear-gradient(120deg, rgba(255,184,140,.16), rgba(112,64,185,.18)); border: 1px solid var(--line); }
.privacy-banner ul { margin: 0; padding-left: 1.2rem; color: var(--muted); }
.privacy-banner li + li { margin-top: 10px; }

.legal main { padding: 54px 0 100px; }
.legal h1 { font-size: clamp(2.6rem, 8vw, 4.6rem); }
.legal h2 { margin-top: 2.1em; font-size: 1.55rem; color: var(--peach); letter-spacing: -.01em; }
.legal h3 { margin-top: 1.65em; font-size: 1.08rem; }
.legal p, .legal li { color: var(--muted); }
.legal .updated { margin: 12px 0 40px; color: rgba(251,240,231,.55); }
.notice { padding: 20px 22px; margin: 28px 0; background: rgba(255,184,140,.09); border: 1px solid rgba(255,184,140,.2); border-radius: 18px; }
.faq { margin: 18px 0; }
.faq h2 { margin-top: 0; }

footer { padding: 38px 0 56px; border-top: 1px solid var(--line); color: rgba(251,240,231,.55); font-size: .85rem; }
.footer-row { display: flex; justify-content: space-between; gap: 24px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; }
.footer-links a { color: var(--muted); }

@media (max-width: 800px) {
  body { font-size: 17px; }
  .nav-links a:not(:last-child) { display: none; }
  .hero { grid-template-columns: 1fr; gap: 60px; padding-top: 44px; text-align: center; }
  .hero .lede { margin-left: auto; margin-right: auto; }
  .actions { justify-content: center; }
  .phone { transform: rotate(1deg); }
  .feature-grid, .mode-row { grid-template-columns: 1fr; }
  .mode { min-height: 190px; }
  .privacy-banner { grid-template-columns: 1fr; padding: 30px; }
  .footer-row { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

