@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Montserrat:wght@400;500;600;700;800&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink: #0a0e13;
  --teal: #00c8d2;
  --text: #fff;
  --muted: rgba(255,255,255,.82);
  --font: 'Montserrat', system-ui, sans-serif;
  --script: 'Great Vibes', cursive;
  --max: 1200px;
  --home: /index.html;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--ink);
  color: var(--muted);
  line-height: 1.5;
}
img { max-width: 100%; display: block; }
a { color: var(--teal); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap { width: min(var(--max), calc(100% - 48px)); margin-inline: auto; }

/* ?? Header ?? */
.header {
  position: absolute;
  left: 0; right: 0; top: 0;
  z-index: 30;
  padding: 22px 0 0;
}
body:not([data-page="home"]) .header {
  position: sticky;
  top: 0;
  background: rgba(10, 14, 19, .96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 14px 0;
}
.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}
.brand { text-decoration: none; color: #fff; line-height: 1; }
.brand:hover { text-decoration: none; }
.brand-mark {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand svg { width: 40px; height: 30px; flex-shrink: 0; }
.brand-name {
  font-weight: 800;
  font-size: 22px;
  letter-spacing: .1em;
  color: #fff;
}
.brand-name span { color: var(--teal); }
.brand-sub {
  display: block;
  margin-top: 4px;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .3em;
  color: rgba(255,255,255,.88);
}
.nav { display: flex; gap: 28px; align-items: center; }
.nav a {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  padding-bottom: 5px;
  border-bottom: 2px solid transparent;
}
.nav a:hover, .nav a.is-active { color: var(--teal); border-bottom-color: var(--teal); text-decoration: none; }
.header-right { display: flex; justify-content: flex-end; align-items: center; gap: 10px; }
.btn-download {
  background: var(--teal);
  color: #fff;
  border-radius: 999px;
  padding: 11px 20px;
  font: 700 13px var(--font);
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(0,200,210,.28);
}
.btn-download:hover { background: #14d8e2; text-decoration: none; color: #fff; }
.search-btn, .menu-btn {
  width: 40px; height: 40px;
  border: 0;
  background: transparent;
  color: #fff;
  display: grid;
  place-items: center;
  text-decoration: none;
  cursor: pointer;
}
.menu-btn { display: none; font-size: 22px; }
.mobile-nav { display: none; padding: 14px 24px 0; }
.mobile-nav.open { display: grid; gap: 6px; }
.mobile-nav a {
  color: #fff;
  background: rgba(0,0,0,.5);
  padding: 12px 14px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
}

/* ?? Hero ?? */
.hero {
  position: relative;
  min-height: 820px;
  padding: 118px 0 0;
  overflow: hidden;
  background: #0a0e13;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(6,10,14,.72) 0%, rgba(6,10,14,.4) 38%, rgba(6,10,14,.15) 65%, rgba(6,10,14,.3) 100%),
    url('/hero-phones.jpg?v=47') center / cover no-repeat;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 520px) 1fr;
  gap: 24px;
  align-items: center;
  min-height: 620px;
  padding-bottom: 40px;
}
.hero-copy { max-width: 480px; }
.kicker {
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.kicker.teal { color: var(--teal); }
.hero h1 {
  color: #fff;
  font-size: clamp(42px, 5.8vw, 70px);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1.02;
  margin-bottom: 18px;
  text-shadow: 0 2px 24px rgba(0,0,0,.35);
}
.hero h1 em { color: var(--teal); font-style: normal; }
.hero .lead {
  max-width: 420px;
  color: rgba(255,255,255,.9);
  font-size: 15px;
  line-height: 1.55;
  margin-bottom: 28px;
}
.store-row { display: flex; flex-wrap: nowrap; gap: 10px; margin-bottom: 20px; }
.store {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 1 1 0;
  min-width: 0;
  border-radius: 999px;
  padding: 11px 14px;
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  white-space: nowrap;
  background: rgba(12,16,22,.9);
  border: 1px solid rgba(255,255,255,.28);
}
.store.apple { background: rgba(12,16,22,.9); }
.store.play { background: rgba(12,16,22,.9); }
.store:hover { text-decoration: none; border-color: var(--teal); color: #fff; transform: translateY(-1px); }
.store svg { width: 18px; height: 18px; flex-shrink: 0; }
.store .chev { margin-left: auto; opacity: .7; font-size: 14px; }
.dots {
  font-size: 10px;
  letter-spacing: .32em;
  color: rgba(255,255,255,.72);
  font-weight: 700;
}

/* ?? Hero product art ?? */
.hero-art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
}
.hero-art img {
  width: 100%;
  max-width: 620px;
  height: auto;
  display: block;
  border-radius: 18px;
  box-shadow: 0 28px 60px rgba(0,0,0,.45);
}

/* ?? Phone mockups (legacy, unused on home) ?? */
.phones {
  position: relative;
  height: 560px;
  margin-right: -10px;
}
.script {
  position: absolute;
  right: 4%;
  top: -8px;
  font-family: var(--script);
  font-size: 36px;
  color: #fff;
  z-index: 5;
  text-shadow: 0 2px 12px rgba(0,0,0,.45);
  pointer-events: none;
  white-space: nowrap;
}
.phone {
  position: absolute;
  width: 252px;
  height: 516px;
  border-radius: 38px;
  padding: 10px;
  background: linear-gradient(145deg, #1a222c, #0b1016);
  border: 2px solid rgba(255,255,255,.18);
  box-shadow:
    0 30px 70px rgba(0,0,0,.55),
    inset 0 1px 0 rgba(255,255,255,.12);
}
.phone.a { left: 4%; top: 48px; transform: rotate(-8deg); z-index: 3; }
.phone.b { right: 2%; top: 12px; transform: rotate(9deg); z-index: 2; }
.phone-shot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
  display: block;
}
.screen {
  height: 100%;
  border-radius: 30px;
  overflow: hidden;
  background: #0c121a;
  display: flex;
  flex-direction: column;
}
.ptop {
  padding: 16px 14px 6px;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ptop .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); }
.greet { padding: 4px 14px 8px; color: #fff; font-size: 15px; font-weight: 700; line-height: 1.25; }
.greet span { display: block; font-size: 12px; font-weight: 500; color: rgba(255,255,255,.55); margin-top: 2px; }
.search-fake {
  margin: 0 12px 10px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  padding: 10px 12px;
  color: rgba(255,255,255,.45);
  font-size: 11px;
}
.grid6 { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding: 0 12px; flex: 1; }
.tile {
  min-height: 78px;
  border-radius: 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  text-align: center;
  padding: 8px;
}
.tile svg { width: 22px; height: 22px; color: var(--teal); }
.pnav {
  display: flex;
  justify-content: space-around;
  padding: 10px 8px 14px;
  border-top: 1px solid rgba(255,255,255,.06);
  margin-top: auto;
}
.pnav span {
  width: 28px; height: 4px;
  border-radius: 99px;
  background: rgba(255,255,255,.15);
}
.pnav span.on { background: var(--teal); }
.map {
  flex: 1;
  margin: 0 10px 8px;
  border-radius: 16px;
  background:
    radial-gradient(circle at 28% 36%, rgba(0,200,210,.25), transparent 42%),
    url('/map.jpg?v=47') center / cover;
  position: relative;
  overflow: hidden;
}
.map-title {
  position: absolute; left: 10px; top: 10px;
  background: rgba(10,14,19,.85);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .04em;
  padding: 6px 10px;
  border-radius: 8px;
}
.pin {
  position: absolute;
  width: 12px; height: 12px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  border: 2px solid #fff;
}
.pin.t { background: var(--teal); left: 28%; top: 30%; }
.pin.o { background: #f59e0b; right: 30%; top: 48%; }
.route {
  position: absolute; left: 30%; top: 34%; width: 38%; height: 3px;
  background: #3b82f6;
  transform: rotate(28deg);
  border-radius: 4px;
  box-shadow: 0 0 8px rgba(59,130,246,.8);
}
.toggles {
  position: absolute; left: 8px; right: 8px; bottom: 8px;
  background: rgba(10,14,19,.92);
  border-radius: 12px;
  padding: 8px 10px;
  border: 1px solid rgba(255,255,255,.08);
}
.toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  font-size: 9px;
  font-weight: 600;
  padding: 5px 0;
}
.sw {
  width: 30px; height: 16px;
  border-radius: 99px;
  background: var(--teal);
  position: relative;
  flex-shrink: 0;
}
.sw::after {
  content: '';
  position: absolute;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: #fff;
  top: 2px; right: 2px;
}

/* ?? Feature strip ?? */
.strip {
  position: relative;
  z-index: 2;
  margin-top: -18px;
  padding: 0 0 8px;
}
.strip-inner {
  background: rgba(10, 14, 19, .94);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px;
  padding: 22px 8px;
  box-shadow: 0 16px 40px rgba(0,0,0,.35);
}
.strip-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}
.strip a {
  text-align: center;
  color: #fff;
  text-decoration: none;
  font-size: clamp(8.5px, .85vw, 10px);
  font-weight: 700;
  letter-spacing: .07em;
  line-height: 1.35;
  text-transform: uppercase;
  padding: 4px 6px;
  border-right: 1px solid rgba(255,255,255,.1);
}
.strip a:last-child { border-right: 0; }
.strip a:hover { color: var(--teal); text-decoration: none; }
.strip svg {
  width: 26px; height: 26px;
  color: var(--teal);
  margin: 0 auto 10px;
  display: block;
}

/* ?? Freedom panel ?? */
.freedom-wrap {
  padding: 28px 0 56px;
  background: #080c10;
}
.freedom {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  min-height: clamp(280px, 36vw, 380px);
  padding: clamp(28px, 4vw, 48px) clamp(22px, 3.5vw, 40px);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 20px 50px rgba(0,0,0,.35);
}
.freedom-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(6,10,14,.62) 0%, rgba(6,10,14,.28) 46%, rgba(6,10,14,.45) 100%),
    url('/freedom.jpg?v=54') left center / cover no-repeat;
}
.freedom-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr);
  gap: clamp(20px, 3vw, 36px);
  align-items: center;
}
.freedom-copy .kicker {
  color: #fff;
  margin-bottom: 14px;
  font-size: clamp(10px, 1.1vw, 12px);
  font-weight: 700;
  letter-spacing: .22em;
}
.freedom-copy .kicker em {
  color: var(--teal);
  font-style: normal;
}
.freedom h2 {
  color: #fff;
  font-size: clamp(30px, 4.4vw, 52px);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.06;
}
.freedom h2 em {
  color: var(--teal);
  font-style: normal;
}
.three {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: rgba(8,12,18,.78);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 16px;
  padding: clamp(18px, 2.2vw, 24px) clamp(12px, 1.6vw, 20px);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.three article {
  text-align: left;
  padding: 0 clamp(8px, 1.2vw, 14px);
  border-right: 1px solid rgba(255,255,255,.12);
}
.three article:last-child { border-right: 0; }
.three h3 {
  color: #fff;
  font-size: clamp(13px, 1.35vw, 15px);
  margin: 10px 0 8px;
  font-weight: 700;
  line-height: 1.25;
}
.three p {
  color: rgba(255,255,255,.72);
  font-size: clamp(11.5px, 1.15vw, 12.5px);
  line-height: 1.45;
}
.three svg {
  width: 26px;
  height: 26px;
  color: var(--teal);
}

/* ?? Inner pages ?? */
.page-hero {
  padding: 48px 0 28px;
  background: linear-gradient(180deg, #141c24, var(--ink));
}
body:not([data-page="home"]) .page-hero { padding-top: 36px; }
.page-hero h1 {
  color: #fff;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -.03em;
}
.page-hero p { max-width: 560px; margin-top: 10px; }
.section { padding: 40px 0 72px; }
.cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.card {
  background: #121a22;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 16px;
  padding: 22px;
}
.card h3 { color: #fff; margin-bottom: 8px; }
.card p { color: rgba(255,255,255,.65); font-size: 14px; }
.legal { max-width: 760px; }
.legal h2 { color: #fff; font-size: 20px; margin: 28px 0 8px; }
.legal p, .legal li { color: rgba(255,255,255,.65); margin-bottom: 10px; font-size: 14px; }
.legal ul { padding-left: 18px; }
.legal strong { color: rgba(255,255,255,.9); }
.eyebrow {
  color: var(--teal);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* ?? Footer ?? */
.footer {
  background: #080c12;
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 22px 0 30px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.footer small { color: rgba(255,255,255,.45); font-size: 12px; }
.footer-links { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-links a {
  color: rgba(255,255,255,.55);
  font-size: 13px;
  text-decoration: none;
}
.footer-links a:hover { color: var(--teal); }

@media (max-width: 980px) {
  .header-inner { grid-template-columns: 1fr auto; }
  .nav { display: none; }
  .menu-btn { display: grid; }
  .hero-inner, .cards { grid-template-columns: 1fr; }
  .hero-art { min-height: 0; margin-top: 8px; }
  .hero-art img { max-width: 100%; }
  .script { font-size: 26px; top: -20px; right: 0; }
  .hero { min-height: auto; padding-bottom: 28px; }
  .hero-inner { grid-template-columns: 1fr; min-height: 0; }
  .hero-copy { max-width: none; }
  .strip { margin-top: 8px; }
  .strip-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 4px 0;
  }
  .strip a {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
    padding: 14px 10px;
    font-size: 10px;
  }
  .strip a:nth-child(odd) {
    border-right: 1px solid rgba(255,255,255,.08);
  }
  .strip a:nth-last-child(-n+2) { border-bottom: 0; }
  .freedom-wrap { padding: 16px 0 40px; }
  .freedom-inner { grid-template-columns: 1fr; gap: 22px; }
  .freedom-bg {
    background:
      linear-gradient(180deg, rgba(6,10,14,.72) 0%, rgba(6,10,14,.4) 55%, rgba(6,10,14,.7) 100%),
      url('/freedom.jpg?v=54') center / cover no-repeat;
  }
  .three {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .three article {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.1);
    padding: 14px 4px;
  }
  .three article:last-child { border-bottom: 0; }
  .three h3 br { display: none; }
}

@media (max-width: 420px) {
  .store { font-size: 11px; padding: 10px 12px; gap: 6px; }
  .store .chev { display: none; }
  .strip-grid { grid-template-columns: 1fr; }
  .strip a:nth-child(odd) { border-right: 0; }
  .strip a:last-child { border-bottom: 0; }
}

