:root {
  --bg: #09090b;
  --bg-2: #111114;
  --card: #16161a;
  --ink: #f4f4f5;
  --muted: #a1a1aa;
  --line: #27272a;
  --accent: #6ea8ff;
  --accent-2: #8b7cff;
  font-family: Outfit, system-ui, sans-serif;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(900px 480px at 80% -10%, #6ea8ff22, transparent 50%),
    radial-gradient(700px 400px at -10% 40%, #8b7cff18, transparent 45%),
    var(--bg);
  line-height: 1.55;
  min-height: 100%;
}
img { max-width: 100%; }
a { color: var(--accent); }
a:hover { color: #c4d9ff; }
.wrap { width: min(1100px, calc(100% - 40px)); margin: 0 auto; }

.nav {
  position: sticky; top: 0; z-index: 20;
  background: #09090bcc;
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 14px 0;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--ink);
  font-weight: 600; letter-spacing: -0.03em; font-size: 17px;
}
.brand img { border-radius: 8px; }
.menu {
  background: transparent; border: 1px solid var(--line); color: var(--ink);
  padding: 8px 12px; border-radius: 999px; font: inherit;
  font-size: 14px; font-weight: 600; cursor: pointer;
}
.nav__links { display: flex; flex-wrap: wrap; gap: 8px 20px; align-items: center; }
.nav__links a { text-decoration: none; color: var(--muted); font-size: 14px; font-weight: 500; }
.nav__links a[aria-current="page"], .nav__links a:hover { color: var(--ink); }
.nav__cta {
  background: var(--ink) !important; color: #09090b !important;
  padding: 8px 14px; border-radius: 999px; font-weight: 600;
}

.hero { padding: 80px 0 72px; }
.kicker {
  margin: 0 0 12px;
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent); font-weight: 600;
}
h1, h2, h3 { font-weight: 600; letter-spacing: -0.04em; }
h1 { font-size: clamp(40px, 7vw, 64px); line-height: 1.02; margin: 0 0 16px; }
h2 { font-size: clamp(24px, 4vw, 36px); margin: 0 0 12px; }
h3 { font-size: 18px; margin: 0 0 8px; letter-spacing: -0.02em; }
.lead { font-size: 18px; color: var(--muted); max-width: 36rem; }
.hero__grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 48px; align-items: center; }

.soon {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid #3f3f46; background: #18181b;
  color: var(--ink); font-size: 13px; font-weight: 600;
  padding: 6px 12px; border-radius: 999px; margin-bottom: 18px;
}
.soon i { width: 8px; height: 8px; border-radius: 99px; background: var(--accent); box-shadow: 0 0 10px var(--accent); }

.phone {
  width: min(260px, 100%);
  margin: 0 auto;
  aspect-ratio: 9 / 18.5;
  border-radius: 40px;
  padding: 12px;
  background: linear-gradient(180deg, #2a2a32, #0a0a0c);
  border: 1px solid #3f3f46;
  box-shadow: 0 40px 90px #000a, 0 0 0 1px #ffffff12 inset;
  position: relative;
}
.phone::before {
  content: "";
  position: absolute; top: 22px; left: 50%; transform: translateX(-50%);
  width: 86px; height: 22px; border-radius: 99px; background: #050506; z-index: 1;
}
.phone__screen {
  height: 100%;
  border-radius: 30px;
  background:
    radial-gradient(120% 70% at 50% 0%, #6ea8ff2e, transparent 55%),
    linear-gradient(180deg, #141418, #0c0c10);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 24px;
  color: var(--muted); font-size: 13px; letter-spacing: 0.04em;
}
.phone__screen strong { display: block; color: var(--ink); font-size: 22px; margin-bottom: 8px; letter-spacing: -0.05em; font-weight: 600; }
::selection { background: #6ea8ff44; }

.section { padding: 56px 0 72px; }
.section--alt { border-top: 1px solid var(--line); background: #0c0c0f; }
.grid-3, .grid-2 { display: grid; gap: 16px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: 1fr 1fr; }
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
}
.card p { margin: 0; color: var(--muted); }
.prose { max-width: 720px; }
.prose p, .prose li { color: #d4d4d8; }
.prose h2 { margin-top: 2rem; }
.legal { padding: 48px 0 80px; }
.legal .prose { max-width: 760px; }
.muted { color: var(--muted); }
.actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.btn {
  display: inline-block; text-decoration: none;
  padding: 11px 18px; border-radius: 999px; font-weight: 600; font-size: 14px;
  border: 1px solid transparent;
}
.btn--solid { background: var(--ink); color: #09090b; }
.btn--solid:hover { color: #09090b; filter: brightness(0.92); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { color: var(--ink); border-color: #52525b; }

.footer {
  background: #050506; color: var(--muted);
  padding: 40px 0 24px; border-top: 1px solid var(--line);
}
.footer a { color: #e4e4e7; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 24px; }
.footer h4 { margin: 0 0 10px; color: var(--ink); font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; }
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer li { margin: 0.35rem 0; }
.footer__bottom { margin: 28px 0 0; padding-top: 16px; border-top: 1px solid var(--line); font-size: 13px; }

@media (max-width: 800px) {
  .hero__grid, .grid-3, .grid-2, .footer__grid { grid-template-columns: 1fr; }
  .nav__links { display: none; }
  .nav.is-open .nav__links {
    display: flex; flex-direction: column; align-items: flex-start;
    position: absolute; left: 0; right: 0; top: 100%;
    background: #111114; padding: 12px 20px 20px; border-bottom: 1px solid var(--line);
  }
  .menu { display: inline-block; background: transparent; border: 1px solid var(--line); color: var(--ink); }
}
@media (min-width: 801px) {
  .menu { display: none; }
}
