:root {
  color-scheme: light;
  --ink: #141415;
  --paper: #fbfaf7;
  --card: #ffffff;
  --muted: #66645f;
  --line: #dedbd3;
  --violet: #7658d6;
  --mint: #2f9d78;
  --amber: #e59b2f;
  --rose: #d95d72;
  font-family: ui-rounded, "SF Pro Rounded", "Avenir Next", system-ui, sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-size: 17px; line-height: 1.55; }
a { color: inherit; }
.wrap { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
nav { display: flex; align-items: center; justify-content: space-between; min-height: 76px; }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; font-weight: 800; letter-spacing: -.03em; }
.brand-mark { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 10px; color: white; background: var(--ink); font-size: 15px; }
.nav-links { display: flex; gap: 24px; align-items: center; font-size: .9rem; }
.nav-links a { text-decoration: none; color: var(--muted); }
.hero { min-height: 650px; display: grid; grid-template-columns: 1.08fr .92fr; gap: 68px; align-items: center; padding: 48px 0 88px; }
.eyebrow { margin: 0 0 18px; font-size: .78rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; color: var(--violet); }
h1 { max-width: 720px; margin: 0; font-size: clamp(3.35rem, 7vw, 6.7rem); line-height: .94; letter-spacing: -.065em; }
.hero-copy { max-width: 590px; margin: 28px 0; font-size: clamp(1.12rem, 2vw, 1.36rem); color: var(--muted); }
.button { display: inline-flex; min-height: 52px; align-items: center; justify-content: center; padding: 0 23px; border-radius: 999px; background: var(--ink); color: white; text-decoration: none; font-weight: 750; }
.button.secondary { margin-left: 8px; background: transparent; color: var(--ink); border: 1px solid var(--line); }
.promise { margin-top: 20px; font-size: .84rem; color: var(--muted); }
.phone-stage { position: relative; min-height: 540px; display: grid; place-items: center; }
.orbit { position: absolute; inset: 3% 0; border: 1px solid var(--line); border-radius: 50%; transform: rotate(-11deg); }
.orbit::before, .orbit::after { content: ""; position: absolute; width: 17px; height: 17px; border-radius: 50%; }
.orbit::before { background: var(--amber); top: 14%; left: 9%; }
.orbit::after { background: var(--mint); right: 4%; bottom: 19%; }
.phone { position: relative; width: min(310px, 78vw); padding: 10px; border: 2px solid var(--ink); border-radius: 46px; background: var(--ink); box-shadow: 0 38px 90px rgba(20,20,21,.18); transform: rotate(3deg); }
.phone img { display: block; width: 100%; border-radius: 37px; background: #181819; aspect-ratio: 9 / 19.5; object-fit: cover; }
.section { padding: 104px 0; border-top: 1px solid var(--line); }
.section-head { display: grid; grid-template-columns: .7fr 1.3fr; gap: 40px; margin-bottom: 52px; }
.section h2 { margin: 0; font-size: clamp(2.25rem, 4vw, 4.2rem); line-height: 1; letter-spacing: -.055em; }
.section-head p { max-width: 620px; margin: 4px 0 0; color: var(--muted); font-size: 1.12rem; }
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.feature { padding: 26px; border: 1px solid var(--line); border-radius: 24px; background: var(--card); }
.feature .dot { width: 11px; height: 11px; border-radius: 50%; margin-bottom: 48px; }
.feature h3 { margin: 0 0 8px; font-size: 1.22rem; }
.feature p { margin: 0; color: var(--muted); font-size: .95rem; }
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: end; }
.shot { margin: 0; }
.shot img { width: 100%; display: block; border-radius: 30px; background: #181819; border: 1px solid #2b2b2d; box-shadow: 0 24px 60px rgba(20,20,21,.13); }
.shot:nth-child(2) { transform: translateY(-28px); }
.shot figcaption { margin-top: 16px; font-weight: 750; }
.shot small { display: block; margin-top: 3px; color: var(--muted); font-size: .84rem; }
.roadmap-section { background: var(--ink); color: white; }
.roadmap-section .section-head p { color: #aaa79f; }
.roadmap { border-top: 1px solid #3a3937; }
.roadmap-item { display: grid; grid-template-columns: 76px 1fr; gap: 24px; padding: 30px 0; border-bottom: 1px solid #3a3937; }
.roadmap-number { color: #85827c; font-size: .82rem; font-weight: 800; letter-spacing: .12em; }
.roadmap-label { margin: 0 0 5px; color: #a995ed; font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.roadmap-item:nth-child(2) .roadmap-label { color: #75d4b0; }
.roadmap-item:nth-child(3) .roadmap-label { color: #edb65d; }
.roadmap-item:nth-child(4) .roadmap-label { color: #e8899a; }
.roadmap-item h3 { margin: 0; font-size: clamp(1.4rem, 2.5vw, 2.2rem); letter-spacing: -.035em; }
.roadmap-item p:last-child { max-width: 650px; margin: 8px 0 0; color: #aaa79f; }
.privacy { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.privacy > div { padding: 28px; border-radius: 24px; background: var(--ink); color: white; }
.privacy p { color: #c9c7c0; }
footer { padding: 40px 0 56px; border-top: 1px solid var(--line); color: var(--muted); font-size: .88rem; }
.footer-row { display: flex; justify-content: space-between; gap: 20px; }
.footer-links { display: flex; gap: 18px; }
.legal { max-width: 760px; padding: 74px 0 110px; }
.legal h1 { font-size: clamp(2.7rem, 6vw, 5.5rem); }
.legal h2 { margin-top: 44px; font-size: 1.45rem; letter-spacing: -.025em; }
.legal p, .legal li { color: var(--muted); }
@media (max-width: 760px) {
  .nav-links a:not(.button) { display: none; }
  .hero { grid-template-columns: 1fr; padding-top: 45px; gap: 30px; }
  .phone-stage { min-height: 500px; }
  .section-head { grid-template-columns: 1fr; gap: 20px; }
  .features, .gallery, .privacy { grid-template-columns: 1fr; }
  .roadmap-item { grid-template-columns: 44px 1fr; gap: 12px; }
  .shot { width: min(330px, 86vw); margin: 0 auto; }
  .shot:nth-child(2) { transform: none; }
  .footer-row { flex-direction: column; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
