:root {
  --blue: #0A84FF;
  --blue-deep: #0060CC;
  --navy: #0A1430;
  --ink: #15151A;
  --ink-2: #5B5B66;
  --ink-3: #9A9AA6;
  --surface: #FFFFFF;
  --surface-2: #F6F8FB;
  --tint-blue: #EAF1FF;
  --tint-blue-border: #DCE6FA;
  --tint-teal: #EFFAF4;
  --tint-teal-border: #DCEFE7;
  --border: #ECECF1;
  --card-shadow: 0 2px 10px rgba(11,16,32,0.06);
  --head: "Geist", -apple-system, BlinkMacSystemFont, sans-serif;
  --body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: "Geist Mono", ui-monospace, "SF Mono", monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--body); color: var(--ink); background: var(--surface); -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

.wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* Phone mockup */
.phone { background: #0B0B0F; border-radius: 46px; padding: 11px; box-shadow: 0 30px 60px rgba(11,16,32,0.35); width: 300px; flex: none; }
.phone img { width: 100%; border-radius: 36px; }

/* ---------- HERO ---------- */
.hero { position: relative; overflow: hidden; color: #fff; background: linear-gradient(155deg, #0A1430 0%, #0050C8 58%, #0A84FF 110%); }
.glow { position: absolute; border-radius: 50%; filter: blur(90px); pointer-events: none; }
.glow.teal { width: 520px; height: 520px; background: #30D5A8; opacity: 0.24; top: 120px; right: -80px; }
.glow.blue { width: 560px; height: 560px; background: #4FA3FF; opacity: 0.20; top: 360px; left: -160px; }

.nav { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; padding: 28px 0; }
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--head); font-weight: 700; font-size: 20px; letter-spacing: -0.4px; }
.brand img { width: 30px; height: 30px; border-radius: 8px; }
.nav-links { display: flex; align-items: center; gap: 30px; font-size: 15px; font-weight: 500; }
.nav-links a { color: rgba(255,255,255,0.8); }
.nav-links a:hover { color: #fff; }

.hero-content { position: relative; z-index: 2; text-align: center; padding: 64px 0 96px; display: flex; flex-direction: column; align-items: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; padding: 8px 16px; border-radius: 999px; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.18); font-family: var(--mono); font-size: 12px; letter-spacing: 1.4px; color: rgba(255,255,255,0.9); }
.eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: #43E5B0; }
.hero h1 { font-family: var(--head); font-weight: 700; font-size: clamp(40px, 6vw, 78px); letter-spacing: -2.5px; line-height: 1.0; margin-top: 24px; max-width: 760px; }
.hero .sub { font-size: clamp(16px, 2vw, 19px); line-height: 1.55; color: rgba(255,255,255,0.8); max-width: 580px; margin-top: 22px; }
.cta-row { display: flex; gap: 14px; align-items: center; margin-top: 34px; flex-wrap: wrap; justify-content: center; }
.btn { display: inline-flex; align-items: center; border-radius: 999px; font-size: 16px; font-weight: 600; cursor: pointer; }
.btn-primary { background: #fff; color: var(--blue); font-family: var(--head); padding: 15px 28px; box-shadow: 0 8px 24px rgba(10,16,38,0.2); }
.btn-ghost { padding: 15px 26px; border: 1px solid rgba(255,255,255,0.4); color: #fff; }
.btn-ghost:hover { background: rgba(255,255,255,0.1); }
.btn-disabled { opacity: 0.55; cursor: not-allowed; pointer-events: none; }
.trust { font-family: var(--mono); font-size: 13px; color: rgba(255,255,255,0.6); margin-top: 22px; }
.hero-phone { margin-top: 44px; }

/* ---------- SECTION HEADERS ---------- */
.section { padding: 100px 0; }
.sec-head { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 14px; margin-bottom: 52px; }
.sec-head h2 { font-family: var(--head); font-weight: 700; font-size: clamp(30px, 4vw, 46px); letter-spacing: -1.6px; line-height: 1.05; }
.sec-head p { font-size: 18px; line-height: 1.55; color: var(--ink-2); max-width: 560px; }

/* ---------- BENTO ---------- */
.bento { display: flex; flex-direction: column; gap: 20px; }
.bento-row { display: grid; gap: 20px; }
.bento-row.a { grid-template-columns: 1.56fr 1fr; }
.bento-row.b { grid-template-columns: repeat(3, 1fr); }
.cell { border-radius: 22px; padding: 36px; box-shadow: var(--card-shadow); position: relative; overflow: hidden; }
.cell h3 { font-family: var(--head); font-weight: 600; letter-spacing: -0.5px; }
.cell p { font-size: 15px; line-height: 1.5; margin-top: 8px; }

.map-cell { background: var(--tint-blue); border: 1px solid var(--tint-blue-border); min-height: 400px; }
.map-cell h3 { font-size: 28px; color: var(--ink); }
.map-cell p { color: var(--ink-2); max-width: 320px; }
.map-cell .phone { position: absolute; right: 36px; top: 152px; width: 300px; box-shadow: 0 20px 50px rgba(11,16,32,0.28); }

.accent-cell { background: linear-gradient(215deg, #0A84FF, #0060CC); color: #fff; min-height: 400px; display: flex; flex-direction: column; justify-content: space-between; }
.accent-cell h3 { font-size: 28px; }
.accent-cell p { color: rgba(255,255,255,0.85); }
.icon-badge { width: 50px; height: 50px; border-radius: 14px; display: flex; align-items: center; justify-content: center; }
.icon-badge svg { width: 24px; height: 24px; }
.accent-cell .icon-badge { background: rgba(255,255,255,0.15); color: #fff; }

.icon-cell { min-height: 250px; }
.icon-cell h3 { font-size: 21px; color: var(--ink); margin-top: 14px; }
.icon-cell p { color: var(--ink-2); }
.icon-cell .icon-badge { width: 48px; height: 48px; border-radius: 13px; }
.icon-cell.carriers { background: #F7F8FA; border: 1px solid var(--border); }
.icon-cell.carriers .icon-badge { background: rgba(10,132,255,0.10); color: var(--blue); }
.icon-cell.quick { background: #fff; border: 1px solid var(--border); }
.icon-cell.quick .icon-badge { background: rgba(255,159,10,0.12); color: #E08800; }
.icon-cell.private { background: var(--tint-teal); border: 1px solid var(--tint-teal-border); }
.icon-cell.private .icon-badge { background: rgba(48,213,168,0.18); color: #1FA882; }

/* ---------- SHOWCASE ---------- */
.showcase { background: var(--surface-2); border-top: 1px solid #ECEFF4; border-bottom: 1px solid #ECEFF4; }
.phones { display: flex; gap: 44px; justify-content: center; align-items: flex-start; flex-wrap: wrap; }
.figure { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.figure .cap-title { font-family: var(--head); font-weight: 600; font-size: 18px; letter-spacing: -0.3px; }
.figure .cap-sub { font-size: 14px; color: var(--ink-3); margin-top: 5px; }
.figure figcaption { text-align: center; }

/* ---------- CTA BAND ---------- */
.band { position: relative; overflow: hidden; background: linear-gradient(215deg, #0A84FF, #0058DD); color: #fff; text-align: center; padding: 104px 0; }
.band .glow { width: 420px; height: 420px; background: rgba(255,255,255,0.12); top: -160px; left: 50%; }
.band-inner { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 22px; }
.band h2 { font-family: var(--head); font-weight: 700; font-size: clamp(30px, 4vw, 46px); letter-spacing: -1.6px; line-height: 1.05; max-width: 760px; }
.band p { font-size: 18px; line-height: 1.55; color: rgba(255,255,255,0.85); max-width: 540px; }

/* ---------- FOOTER ---------- */
.footer { background: #0B1020; color: rgba(255,255,255,0.7); }
.footer .wrap { display: flex; align-items: center; justify-content: space-between; padding: 40px 24px; flex-wrap: wrap; gap: 16px; }
.footer .brand { color: #fff; font-size: 17px; }
.footer .brand img { width: 26px; height: 26px; border-radius: 7px; }
.footer-links { display: flex; gap: 26px; font-size: 14px; font-weight: 500; }
.footer-links a:hover { color: #fff; }
.footer .copy { font-family: var(--mono); font-size: 13px; color: rgba(255,255,255,0.5); }
.footer .footnote { flex-basis: 100%; margin: 0; font-size: 12.5px; line-height: 1.5; color: rgba(255,255,255,0.45); }
.hero .sub .star { color: #fff; opacity: 0.7; text-decoration: none; font-weight: 600; padding: 0 1px; }
.hero .sub .star:hover { opacity: 1; }

/* Waitlist (Request invite) form */
.waitlist { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; width: 100%; max-width: 440px; }
.waitlist input[type="email"] {
  flex: 1; min-width: 200px; height: 52px; border: none; border-radius: 999px;
  padding: 0 20px; font-size: 16px; font-family: var(--body); background: #fff; color: var(--ink);
  box-shadow: 0 8px 24px rgba(10,16,38,0.18);
}
.waitlist input[type="email"]:focus { outline: 2px solid rgba(255,255,255,0.65); outline-offset: 2px; }
.waitlist button {
  height: 52px; border: none; border-radius: 999px; padding: 0 24px; font-size: 16px;
  font-weight: 600; font-family: var(--head); background: var(--navy); color: #fff; cursor: pointer;
}
.waitlist button:hover { opacity: 0.92; }
.waitlist button:disabled { opacity: 0.6; cursor: default; }
.waitlist .hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.wl-msg { margin-top: 14px; font-size: 14.5px; min-height: 1.1em; }
.wl-msg.success { color: #BFF5E3; font-weight: 600; }
.wl-msg.error { color: #FFD7D7; }
.band .waitlist { justify-content: center; }

@media (max-width: 900px) {
  .bento-row.a, .bento-row.b { grid-template-columns: 1fr; }
  .map-cell .phone { position: static; margin: 24px auto 0; }
  .map-cell, .accent-cell { min-height: 0; }
  .nav-links { display: none; }
}
