:root {
  color-scheme: dark;
  --ink: #07111f;
  --ink-soft: #0c192b;
  --panel: #10223a;
  --white: #f7fbff;
  --muted: #98a9be;
  --blue: #5a77ff;
  --blue-2: #7890ff;
  --cyan: #24d6ed;
  --lime: #b8ff4d;
  --line: rgba(175, 203, 232, 0.16);
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-synthesis: none;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 7%, rgba(90, 119, 255, 0.18), transparent 28rem),
    radial-gradient(circle at 16% 30%, rgba(36, 214, 237, 0.08), transparent 34rem),
    var(--ink);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background-image: linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}

a { color: inherit; }
img { display: block; max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }

.page-shell { position: relative; isolation: isolate; }

.site-header {
  width: min(1180px, calc(100% - 40px));
  min-height: 86px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 10;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.08rem;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: -.025em;
}

.brand img { border-radius: 11px; box-shadow: 0 8px 28px rgba(36, 214, 237, .12); }
.brand b { color: var(--cyan); }

.nav-links { display: flex; gap: 28px; }
.nav-links a { color: #b8c5d7; font-size: .92rem; font-weight: 650; text-decoration: none; transition: color .2s ease; }
.nav-links a:hover { color: white; }

.header-cta {
  padding: 10px 17px;
  color: var(--ink);
  background: var(--lime);
  border-radius: 12px;
  font-size: .9rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(184, 255, 77, .16);
}

.section-pad { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }

.hero {
  min-height: 700px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, .92fr);
  align-items: center;
  gap: 72px;
  padding-block: 84px 74px;
  position: relative;
}

.hero-glow {
  position: absolute;
  width: 460px;
  height: 460px;
  top: 80px;
  right: -20px;
  border-radius: 50%;
  background: rgba(90, 119, 255, .19);
  filter: blur(100px);
  z-index: -1;
}

.eyebrow, .section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--cyan);
  font-size: .75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .16em;
}

.eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 5px rgba(184, 255, 77, .1);
}

h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif; font-weight: 850; }

.hero h1 {
  max-width: 760px;
  margin: 24px 0;
  font-size: clamp(2.65rem, 5.3vw, 5.35rem);
  line-height: .99;
  letter-spacing: -.055em;
}

.hero h1 em {
  display: block;
  margin-top: 12px;
  color: var(--lime);
  font-style: normal;
}

.hero-lead {
  max-width: 670px;
  margin-bottom: 32px;
  color: #b9c6d7;
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.75;
}

.hero-actions { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }

.primary-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 250px;
  padding: 16px 20px;
  color: var(--ink);
  background: linear-gradient(135deg, var(--lime), #e1ff83);
  border: 1px solid rgba(255,255,255,.44);
  border-radius: 17px;
  text-decoration: none;
  box-shadow: 0 18px 55px rgba(184, 255, 77, .16);
  transition: transform .2s ease, box-shadow .2s ease;
}

.primary-cta:hover { transform: translateY(-3px); box-shadow: 0 24px 64px rgba(184, 255, 77, .24); }
.primary-cta b { display: block; font-size: 1rem; line-height: 1.2; }
.primary-cta small { display: block; margin-top: 2px; color: rgba(7,17,31,.68); font-size: .74rem; font-weight: 700; }

.android-mark { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 11px; background: rgba(7,17,31,.11); }
.android-mark svg { width: 23px; height: 23px; fill: currentColor; }
.text-link { color: #d6e0ec; font-size: .95rem; font-weight: 750; text-decoration: none; }
.text-link span { color: var(--cyan); margin-left: 5px; }

.hero-facts {
  margin: 30px 0 0;
  padding: 0;
  display: flex;
  gap: 14px 22px;
  flex-wrap: wrap;
  list-style: none;
  color: #91a3b8;
  font-size: .82rem;
  font-weight: 600;
}

.hero-facts span { color: var(--cyan); font-weight: 900; }

.hero-product { min-height: 540px; position: relative; display: grid; place-items: center; }
.orbit { position: absolute; border: 1px solid rgba(90,119,255,.3); border-radius: 50%; }
.orbit-one { width: 430px; height: 430px; }
.orbit-two { width: 530px; height: 530px; border-style: dashed; opacity: .4; }

.phone {
  position: relative;
  border: 8px solid #1a2739;
  border-radius: 39px;
  overflow: hidden;
  background: #f4f8ff;
  box-shadow: var(--shadow), 0 0 0 1px rgba(255,255,255,.12);
}

.phone-main { width: 270px; transform: rotate(2.2deg); }
.phone img { width: 100%; height: auto; }
.phone-speaker {
  position: absolute;
  z-index: 2;
  top: 8px;
  left: 50%;
  width: 72px;
  height: 7px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #1a2739;
}

.floating-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 200px;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 17px;
  background: rgba(13, 28, 48, .9);
  box-shadow: 0 22px 45px rgba(0,0,0,.28);
  backdrop-filter: blur(16px);
}

.floating-card b, .floating-card small { display: block; }
.floating-card b { font-size: .82rem; }
.floating-card small { color: #8ea2ba; font-size: .7rem; }
.free-card { top: 72px; right: -20px; }
.speed-card { bottom: 72px; left: -35px; }
.pulse-dot { width: 11px; height: 11px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 7px rgba(184,255,77,.1); }
.speed-icon { display: grid; place-items: center; width: 32px; height: 32px; border-radius: 10px; color: var(--ink); background: var(--cyan); font-weight: 900; }

.trust-strip {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 26px 34px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(18,38,64,.88), rgba(10,23,40,.88));
  box-shadow: 0 22px 60px rgba(0,0,0,.18);
}

.trust-strip div { display: flex; flex-direction: column; align-items: center; text-align: center; border-right: 1px solid var(--line); }
.trust-strip div:last-child { border-right: 0; }
.trust-strip b { font-family: inherit; font-size: clamp(1.2rem, 2vw, 1.75rem); color: var(--cyan); font-weight: 850; }
.trust-strip span { color: var(--muted); font-size: .82rem; }

.benefits { padding-block: 130px; }
.section-heading { max-width: 790px; margin: 0 auto 48px; text-align: center; }
.section-heading.left { margin-inline: 0; text-align: left; }
.section-heading h2, .location-copy h2, .install-cta h2 {
  margin: 15px 0 17px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -.045em;
}
.section-heading p, .location-copy > p { color: var(--muted); font-size: 1.02rem; }

.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.benefit-card {
  min-height: 325px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 25px;
  background: rgba(12,25,43,.72);
  position: relative;
  overflow: hidden;
}
.benefit-card.featured { background: linear-gradient(145deg, rgba(90,119,255,.28), rgba(12,25,43,.84) 60%); }
.benefit-card::after { content: ""; position: absolute; width: 130px; height: 130px; right: -48px; bottom: -48px; border-radius: 50%; background: rgba(36,214,237,.08); }
.benefit-number { color: rgba(255,255,255,.23); font-family: inherit; font-size: .76rem; font-weight: 800; letter-spacing: .1em; }
.benefit-icon { width: 56px; height: 56px; margin: 43px 0 25px; display: grid; place-items: center; border-radius: 17px; color: var(--cyan); background: rgba(36,214,237,.09); }
.benefit-icon svg { width: 27px; height: 27px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.benefit-card h3 { margin-bottom: 10px; font-size: 1.18rem; }
.benefit-card p { color: var(--muted); font-size: .9rem; }

.locations {
  padding: 70px 70px 0;
  display: grid;
  grid-template-columns: 1fr .84fr;
  gap: 80px;
  align-items: end;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: linear-gradient(150deg, #10223a 0%, #0b1728 62%);
  overflow: hidden;
}

.location-copy { padding-bottom: 68px; }
.location-list { margin-top: 34px; display: grid; gap: 11px; }
.location-item { padding: 15px 16px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 15px; border: 1px solid var(--line); border-radius: 17px; background: rgba(5,14,26,.45); }
.location-item.available { border-color: rgba(184,255,77,.28); }
.flag { font-size: 1.7rem; }
.location-item b, .location-item small { display: block; }
.location-item b { font-size: .92rem; }
.location-item small { color: var(--muted); font-size: .72rem; }
.status { padding: 5px 9px; border-radius: 999px; color: var(--ink); background: var(--lime); font-size: .66rem; font-weight: 800; }
.status.muted { color: #a9b8ca; background: rgba(169,184,202,.11); }

.location-visual { min-height: 550px; position: relative; display: grid; place-items: end center; }
.phone-secondary { width: 290px; transform: translateY(55px) rotate(-2.5deg); }
.location-badge { position: absolute; top: 55px; right: 0; padding: 10px 14px; border: 1px solid rgba(255,255,255,.12); border-radius: 999px; background: rgba(8,19,33,.86); color: #dce7f4; font-size: .78rem; font-weight: 700; box-shadow: 0 14px 36px rgba(0,0,0,.3); }
.location-badge span { color: var(--lime); margin-right: 5px; }

.install { padding-block: 130px 110px; }
.steps { margin: 50px 0 62px; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; list-style: none; }
.steps li { min-height: 205px; padding: 27px; border-top: 2px solid var(--blue); background: linear-gradient(180deg, rgba(90,119,255,.1), transparent 80%); }
.step-num { display: inline-grid; place-items: center; width: 38px; height: 38px; margin-bottom: 25px; border: 1px solid rgba(120,144,255,.5); border-radius: 50%; color: var(--blue-2); font-family: inherit; font-size: .72rem; font-weight: 850; }
.steps h3 { margin-bottom: 8px; font-size: 1.08rem; }
.steps p { color: var(--muted); font-size: .88rem; }

.install-cta {
  padding: 50px 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  border-radius: 29px;
  color: var(--ink);
  background: linear-gradient(135deg, var(--cyan), #7de8f4 48%, var(--lime));
  box-shadow: 0 30px 80px rgba(36,214,237,.16);
}
.install-cta h2 { max-width: 700px; margin-bottom: 11px; font-size: clamp(1.7rem, 3.2vw, 2.7rem); }
.install-cta p { margin: 0; font-weight: 700; opacity: .68; }
.section-kicker.light { color: rgba(7,17,31,.7); }
.light-cta { flex: 0 0 auto; color: white; background: var(--ink); border-color: rgba(255,255,255,.14); box-shadow: 0 20px 50px rgba(7,17,31,.24); }
.light-cta small { color: rgba(255,255,255,.6); }
.light-cta .android-mark { background: rgba(255,255,255,.12); }

.faq { padding-block: 20px 120px; }
.faq-list { display: grid; gap: 10px; }
.faq details { border: 1px solid var(--line); border-radius: 17px; background: rgba(12,25,43,.65); }
.faq summary { padding: 21px 24px; cursor: pointer; font-weight: 750; list-style: none; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 24px; color: var(--cyan); font-size: 1.45rem; font-weight: 400; }
.faq details[open] summary::after { content: "−"; }
.faq details p { max-width: 850px; padding: 0 55px 22px 24px; color: var(--muted); font-size: .92rem; }

footer {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 35px 0 45px;
  display: grid;
  grid-template-columns: 1.1fr 1.4fr auto auto;
  align-items: center;
  gap: 28px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .8rem;
}
.footer-brand { color: white; }
footer p { margin: 0; }
footer nav { display: flex; gap: 18px; }
footer nav a { text-decoration: none; }
footer nav a:hover { color: white; }
footer small { white-space: nowrap; }

.mobile-download-bar { display: none; }

@media (max-width: 1000px) {
  .nav-links { display: none; }
  .hero { grid-template-columns: 1fr .78fr; gap: 38px; }
  .hero h1 { font-size: clamp(2.8rem, 7vw, 4.65rem); }
  .floating-card { display: none; }
  .orbit-two { width: 430px; height: 430px; }
  .benefit-card { padding: 25px; }
  .locations { padding-inline: 45px; gap: 40px; }
  footer { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  body { padding-bottom: calc(84px + env(safe-area-inset-bottom)); font-size: 15px; line-height: 1.55; }
  body::before { background-size: 36px 36px; opacity: .16; }
  .site-header { width: min(100% - 28px, 1180px); min-height: 62px; }
  .header-cta { display: none; }
  .brand { gap: 9px; font-size: .98rem; }
  .brand img { width: 34px; height: 34px; border-radius: 9px; }
  .section-pad { width: min(100% - 28px, 1180px); }
  .hero { min-height: auto; grid-template-columns: 1fr; gap: 28px; padding-block: 24px 38px; overflow: hidden; }
  .hero-glow { width: 280px; height: 280px; top: 300px; right: -120px; filter: blur(70px); }
  .eyebrow { font-size: .66rem; letter-spacing: .13em; }
  .hero h1 { max-width: 520px; margin: 14px 0 13px; font-size: clamp(2.25rem, 11.3vw, 3.25rem); line-height: .98; letter-spacing: -.05em; }
  .hero h1 em { margin-top: 6px; }
  .hero-lead { max-width: 560px; margin-bottom: 18px; font-size: .96rem; line-height: 1.55; }
  .hero-actions { gap: 12px; }
  .primary-cta { width: 100%; min-height: 62px; justify-content: center; padding: 12px 18px; border-radius: 15px; }
  .primary-cta b { font-size: 1.04rem; }
  .primary-cta small { font-size: .72rem; }
  .text-link { display: none; }
  .hero-facts { margin-top: 16px; display: grid; grid-template-columns: 1fr 1fr; gap: 7px 12px; font-size: .74rem; }
  .hero-facts li:last-child { grid-column: 1 / -1; }
  .hero-product { min-height: 305px; overflow: hidden; border-radius: 28px; background: linear-gradient(145deg, rgba(90,119,255,.12), rgba(36,214,237,.04)); border: 1px solid var(--line); }
  .phone-main { width: 174px; border-width: 6px; border-radius: 28px; transform: translateY(58px) rotate(2deg); }
  .phone-speaker { top: 6px; width: 52px; height: 5px; }
  .orbit-one { width: 245px; height: 245px; }
  .orbit-two { width: 310px; height: 310px; }
  .floating-card { display: flex; min-width: 0; padding: 10px 12px; border-radius: 13px; }
  .floating-card b { font-size: .72rem; }
  .floating-card small { font-size: .62rem; }
  .free-card { top: 22px; right: 14px; }
  .speed-card { display: none; }
  .pulse-dot { width: 8px; height: 8px; }
  .trust-strip { width: min(100% - 28px, 1180px); grid-template-columns: repeat(2, 1fr); gap: 0; padding: 0; overflow: hidden; }
  .trust-strip div { min-height: 88px; justify-content: center; padding: 13px 8px; }
  .trust-strip div:nth-child(2) { border-right: 0; }
  .trust-strip div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .trust-strip b { font-size: 1.18rem; }
  .trust-strip span { font-size: .72rem; }
  .benefits { padding-block: 72px; }
  .section-heading { margin-bottom: 26px; text-align: left; }
  .section-kicker { font-size: .68rem; }
  .section-heading h2, .location-copy h2 { margin-block: 11px 13px; font-size: clamp(1.8rem, 8.6vw, 2.7rem); line-height: 1.06; }
  .section-heading p, .location-copy > p { font-size: .93rem; }
  .benefit-grid { grid-template-columns: 1fr; }
  .benefit-card { min-height: auto; padding: 22px; border-radius: 19px; }
  .benefit-icon { width: 45px; height: 45px; margin: 18px 0 16px; border-radius: 13px; }
  .benefit-icon svg { width: 23px; height: 23px; }
  .benefit-card h3 { font-size: 1.03rem; }
  .benefit-card p { margin-bottom: 0; }
  .locations { width: min(100% - 28px, 1180px); padding: 34px 20px 0; grid-template-columns: 1fr; gap: 10px; border-radius: 25px; }
  .location-copy { padding-bottom: 8px; }
  .location-list { margin-top: 24px; }
  .location-item { padding: 12px; gap: 11px; border-radius: 14px; }
  .flag { font-size: 1.45rem; }
  .location-visual { min-height: 315px; overflow: hidden; }
  .phone-secondary { width: 180px; border-width: 6px; border-radius: 28px; transform: translateY(62px) rotate(-2.5deg); }
  .location-badge { top: 18px; right: 0; font-size: .7rem; }
  .install { padding-block: 72px 62px; }
  .steps { margin: 30px 0 36px; grid-template-columns: 1fr; gap: 8px; }
  .steps li { min-height: auto; padding: 20px 18px; display: grid; grid-template-columns: auto 1fr; gap: 15px; border-top: 0; border-left: 2px solid var(--blue); }
  .step-num { margin: 0; width: 34px; height: 34px; }
  .steps h3 { margin-bottom: 5px; }
  .steps p { margin-bottom: 0; }
  .install-cta { padding: 28px 20px; gap: 24px; flex-direction: column; align-items: stretch; border-radius: 23px; }
  .install-cta h2 { font-size: 1.75rem; }
  .faq { padding-block: 0 72px; }
  .faq summary { padding: 18px 48px 18px 18px; }
  .faq summary::after { right: 18px; }
  .faq details p { padding: 0 24px 19px 18px; }
  footer { grid-template-columns: 1fr; gap: 16px; padding-bottom: 36px; }
  footer nav { flex-wrap: wrap; }
  .mobile-download-bar {
    position: fixed;
    z-index: 30;
    left: 10px;
    right: 10px;
    bottom: max(10px, env(safe-area-inset-bottom));
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 62px;
    padding: 9px 10px 9px 14px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 18px;
    background: rgba(8,18,31,.93);
    box-shadow: 0 18px 60px rgba(0,0,0,.48);
    backdrop-filter: blur(18px);
  }
  .mobile-download-bar b, .mobile-download-bar small { display: block; }
  .mobile-download-bar b { font-size: .78rem; }
  .mobile-download-bar small { color: var(--muted); font-size: .66rem; }
  .mobile-download-bar a { min-height: 44px; padding: 11px 14px; display: grid; place-items: center; border-radius: 11px; color: var(--ink); background: var(--lime); font-size: .74rem; font-weight: 850; text-decoration: none; white-space: nowrap; }
}

@media (max-width: 370px) {
  .hero h1 { font-size: 2.2rem; }
  .hero-lead { font-size: .91rem; }
  .mobile-download-bar > div { display: none; }
  .mobile-download-bar a { width: 100%; }
}

@media (prefers-reduced-motion: no-preference) {
  .phone-main { animation: float-phone 5.5s ease-in-out infinite; }
  .pulse-dot { animation: pulse 2.2s ease-out infinite; }
  @keyframes float-phone { 0%,100% { transform: translateY(0) rotate(2.2deg); } 50% { transform: translateY(-11px) rotate(1.4deg); } }
  @keyframes pulse { 0%,100% { box-shadow: 0 0 0 6px rgba(184,255,77,.1); } 50% { box-shadow: 0 0 0 12px rgba(184,255,77,0); } }
}

@media (max-width: 760px) and (prefers-reduced-motion: no-preference) {
  .phone-main { animation: float-phone-mobile 5.5s ease-in-out infinite; }
  @keyframes float-phone-mobile {
    0%,100% { transform: translateY(58px) rotate(2deg); }
    50% { transform: translateY(50px) rotate(1.2deg); }
  }
}

@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

:focus-visible { outline: 3px solid var(--cyan); outline-offset: 4px; }
