:root {
  --bg: #06080c;
  --bg-2: #0a0e15;
  --surface: #10151e;
  --surface-2: #161c27;
  --text: #f4f7fb;
  --muted: #98a4b6;
  --muted-2: #6b7688;
  --accent: #3b8cff;
  --accent-2: #38e0c8;
  --accent-soft: rgba(59, 140, 255, 0.14);
  --positive: #35d09a;
  --negative: #ff5c6c;
  --hairline: rgba(255, 255, 255, 0.08);
  --radius: 20px;
  --maxw: 1120px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background:
    radial-gradient(1200px 600px at 78% -8%, rgba(59,140,255,0.16), transparent 60%),
    radial-gradient(900px 520px at 5% 8%, rgba(56,224,200,0.08), transparent 55%),
    var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: var(--accent); text-decoration: none; }
a:hover { color: #fff; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.muted { color: var(--muted); }
.accent { color: var(--accent); }
.grad-text {
  background: linear-gradient(120deg, #7bb0ff 0%, #3b8cff 45%, #38e0c8 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: saturate(140%) blur(14px);
  background: rgba(6,8,12,0.72);
  border-bottom: 1px solid var(--hairline);
}
.nav .wrap { display: flex; align-items: center; justify-content: space-between; padding: 12px 22px; }
.brand { display: flex; align-items: center; gap: 11px; font-weight: 800; font-size: 17px; color: var(--text); letter-spacing: -0.01em; }
.brand:hover { color: var(--text); }
.brand img { border-radius: 8px; box-shadow: 0 0 16px rgba(59, 140, 255, 0.45), 0 0 4px rgba(59, 140, 255, 0.35); }
.nav-right { display: flex; align-items: center; }
.nav .links a { color: var(--muted); margin-left: 22px; font-size: 14.5px; font-weight: 500; }
.nav .links a:hover { color: var(--text); }
.nav-cta { display: inline-flex; align-items: center; gap: 8px; background: var(--text); color: #06080c !important;
  padding: 8px 15px; border-radius: 999px; font-weight: 700; font-size: 14px; margin-left: 22px; }
.nav-cta:hover { opacity: 0.9; }

/* Hamburger button (hidden on desktop) */
.nav-toggle { display: none; background: transparent; border: 0; cursor: pointer;
  width: 42px; height: 42px; margin-left: 12px; padding: 10px; border-radius: 10px; }
.nav-toggle:hover { background: rgba(255,255,255,0.07); }
.nav-toggle .bar { display: block; width: 100%; height: 2px; border-radius: 2px; background: var(--text);
  transition: transform .22s ease, opacity .22s ease; }
.nav-toggle .bar + .bar { margin-top: 5px; }
.nav-toggle[aria-expanded="true"] .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile dropdown menu */
.mobile-menu { display: none; flex-direction: column; padding: 6px 22px 18px;
  border-top: 1px solid var(--hairline); background: rgba(6,8,12,0.98);
  backdrop-filter: saturate(140%) blur(14px); }
.mobile-menu.open { display: flex; }
.mobile-menu a { color: var(--text); margin-left: 0; padding: 14px 2px; font-size: 16px; font-weight: 500;
  border-bottom: 1px solid var(--hairline); }
.mobile-menu a:hover { color: var(--text); }
.mobile-menu .mm-cta { margin-top: 14px; background: var(--text); color: #06080c; text-align: center;
  border-radius: 999px; font-weight: 700; border-bottom: 0; padding: 14px; }

/* Show hamburger + hide inline links on tablet & mobile */
@media (max-width: 820px) {
  .nav .links { display: none; }
  .nav-toggle { display: block; }
}
@media (max-width: 420px) {
  .nav-cta { display: none; }   /* on small phones the CTA lives inside the menu */
}

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; font-size: 16px;
  padding: 14px 22px; border-radius: 14px; border: 1px solid transparent; transition: transform .12s ease, opacity .12s ease; }
.btn:hover { transform: translateY(-1px); }
span.btn { cursor: default; }
span.btn:hover { transform: none; }
.btn-appstore { background: #fff; color: #06080c; }
.btn-appstore small { display: block; font-size: 10px; font-weight: 600; opacity: 0.7; line-height: 1; margin-bottom: 2px; }
.btn-appstore .lbl { font-size: 17px; line-height: 1; }
.btn-appstore:hover { color: #06080c; }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--hairline); }
.btn-ghost:hover { color: var(--text); border-color: rgba(255,255,255,0.24); }
.apple { width: 20px; height: 20px; fill: currentColor; }

/* ---------- Hero ---------- */
.hero { padding: 64px 0 40px; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px; align-items: center; }
.pill { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600;
  color: #bcd4ff; background: var(--accent-soft); border: 1px solid rgba(59,140,255,0.25);
  padding: 6px 13px; border-radius: 999px; margin-bottom: 22px; }
.pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent-2); box-shadow: 0 0 10px var(--accent-2); }
.hero h1 { font-size: clamp(40px, 6vw, 66px); line-height: 1.02; margin: 0 0 20px; letter-spacing: -0.03em; font-weight: 800; }
.hero .lede { font-size: clamp(17px, 1.6vw, 20px); color: var(--muted); max-width: 520px; margin: 0 0 30px; }
.hero .lede strong { color: var(--text); font-weight: 600; }
.cta-row { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.hero .fineprint { color: var(--muted-2); font-size: 13.5px; margin-top: 20px; }

/* ---------- Phone device frame ---------- */
.phone { position: relative; border-radius: 40px; padding: 8px; background: linear-gradient(160deg, #23293a, #0c0f16 60%);
  box-shadow: 0 40px 90px -30px rgba(0,0,0,0.9), 0 0 0 1px rgba(255,255,255,0.05) inset; }
.phone::after { content: ""; position: absolute; top: 16px; left: 50%; transform: translateX(-50%);
  width: 34%; height: 22px; background: #05070b; border-radius: 0 0 16px 16px; z-index: 3; }
.phone img { display: block; width: 100%; height: auto; border-radius: 32px; background: #000; }
.phone .live { position: absolute; z-index: 4; top: 18px; right: -12px; background: var(--accent);
  color: #fff; font-size: 11px; font-weight: 700; padding: 5px 11px; border-radius: 999px;
  box-shadow: 0 8px 24px rgba(59,140,255,0.5); }

.hero-phones { position: relative; height: 560px; }
.hero-phones .glow { position: absolute; inset: -8% -12% 0 -12%; z-index: 0;
  background: radial-gradient(closest-side, rgba(59,140,255,0.35), transparent 72%); filter: blur(10px); }
.hero-phones .phone { position: absolute; width: 256px; }
.hero-phones .p-back { right: 2%; top: 26px; transform: rotate(7deg) scale(0.94); z-index: 1; filter: brightness(0.9); }
.hero-phones .p-front { left: 4%; top: 0; transform: rotate(-5deg); z-index: 2; }

/* ---------- Sections ---------- */
section { padding: 44px 0; scroll-margin-top: 76px; }
[id] { scroll-margin-top: 76px; }
.eyebrow { font-size: 12.5px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); margin: 0 0 14px; }
.eyebrow.teal { color: var(--accent-2); }
.eyebrow.pos { color: var(--positive); }
h2 { font-size: clamp(28px, 4vw, 42px); margin: 0 0 16px; letter-spacing: -0.02em; line-height: 1.08; font-weight: 800; }
.section-sub { color: var(--muted); margin: 0 0 26px; font-size: clamp(16px, 1.4vw, 18px); }

.feature { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.feature.reverse .f-media { order: 2; }
.feature .f-media { display: flex; justify-content: center; }
.feature .phone { width: 262px; }
.feature .f-media.tilt-l .phone { transform: rotate(-4deg); }
.feature .f-media.tilt-r .phone { transform: rotate(4deg); }
.f-copy p { color: var(--muted); font-size: 17px; }

.checklist { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 12px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; color: var(--text); font-size: 15.5px; }
.checklist .tick { flex: 0 0 auto; width: 22px; height: 22px; border-radius: 7px; background: var(--accent-soft);
  color: var(--accent); display: grid; place-items: center; font-size: 13px; font-weight: 800; margin-top: 1px; }

/* ---------- Honesty band ---------- */
.band { background: linear-gradient(180deg, transparent, rgba(59,140,255,0.05)); border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
.truth { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 30px; }
.tcard { background: var(--surface); border: 1px solid var(--hairline); border-radius: var(--radius); padding: 24px; border-top: 3px solid var(--accent); }
.tcard.verified { border-top-color: var(--positive); }
.tcard.hypo { border-top-color: #9d8cff; }
.tcard h3 { margin: 0 0 8px; font-size: 18px; }
.tcard p { margin: 0; color: var(--muted); font-size: 14.5px; }

/* ---------- Pricing ---------- */
.prices { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 30px; }
.price { background: var(--surface); border: 1px solid var(--hairline); border-radius: var(--radius); padding: 26px; text-align: center; position: relative; }
.price.featured { border-color: rgba(59,140,255,0.45); box-shadow: 0 0 0 1px rgba(59,140,255,0.25), 0 30px 60px -30px rgba(59,140,255,0.4); }
.price .tag { position: absolute; top: -11px; left: 50%; transform: translateX(-50%); background: var(--accent); color: #fff;
  font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 999px; }
.price h3 { margin: 4px 0 6px; font-size: 19px; }
.price p { margin: 0; color: var(--muted); font-size: 14.5px; }

/* ---------- Final CTA ---------- */
.finalcta { text-align: center; }
.finalcta .box { background: linear-gradient(150deg, rgba(59,140,255,0.14), rgba(56,224,200,0.08));
  border: 1px solid rgba(59,140,255,0.25); border-radius: 28px; padding: 56px 28px; }
.finalcta h2 { margin-bottom: 10px; }
.finalcta p { color: var(--muted); max-width: 520px; margin: 0 auto 28px; }

/* ---------- Prose (legal/support) ---------- */
.prose { max-width: 760px; margin: 0 auto; padding: 36px 0 40px; }
.prose h1 { font-size: clamp(30px, 5vw, 42px); letter-spacing: -0.02em; }
.prose h2 { font-size: 22px; margin-top: 34px; }
.prose p, .prose li { color: #cdd6e2; }
.prose .updated { color: var(--muted); font-size: 14px; }
.prose a { text-decoration: underline; }

/* ---------- Feedback form ---------- */
.feedback-form { margin-top: 26px; display: flex; flex-direction: column; gap: 22px; }
.feedback-form .fld { display: flex; flex-direction: column; gap: 8px; border: 0; padding: 0; margin: 0; }
.feedback-form .fld > span { font-weight: 600; color: var(--text); font-size: 15.5px; }
.feedback-form input[type="text"], .feedback-form textarea, .feedback-form select {
  width: 100%; background: var(--surface); color: var(--text);
  border: 1px solid var(--hairline); border-radius: 12px; padding: 12px 14px; font: inherit; font-size: 15px; }
.feedback-form textarea { resize: vertical; }
.feedback-form input:focus, .feedback-form textarea:focus, .feedback-form select:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.feedback-form .chk { display: flex; align-items: center; gap: 10px; color: var(--muted); font-weight: 400;
  font-size: 15px; padding: 4px 0; cursor: pointer; }
.feedback-form .chk input { width: 18px; height: 18px; accent-color: var(--accent); }
.thanks { margin-top: 28px; background: linear-gradient(150deg, rgba(59,140,255,0.14), rgba(56,224,200,0.08));
  border: 1px solid rgba(59,140,255,0.25); border-radius: 20px; padding: 28px; text-align: center; }
.thanks h2 { margin: 0 0 8px; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--hairline); margin-top: 40px; }
.footer .wrap { padding: 36px 22px 56px; color: var(--muted); font-size: 13.5px; }
.footer .cols { display: flex; justify-content: space-between; gap: 30px; flex-wrap: wrap; margin-bottom: 24px; }
.footer .brand { margin-bottom: 10px; }
.footer .links a { color: var(--muted); margin-left: 18px; }
.footer .links a:hover { color: var(--text); }
.footer .disclaimer { max-width: 640px; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 12px; }
  .hero-phones { height: 500px; margin-top: 20px; }
  .feature { grid-template-columns: 1fr; gap: 30px; }
  .feature.reverse .f-media { order: 0; }
  .feature .f-media .phone, .feature.reverse .f-media .phone { transform: rotate(0) !important; }
  .truth, .prices { grid-template-columns: 1fr; }
  .footer .links a { margin: 0 14px 0 0; }
}
@media (max-width: 480px) {
  .hero-phones .phone { width: 210px; }
  .hero-phones { height: 440px; }
  .cta-row .btn { width: 100%; justify-content: center; }
}
