:root {
  --navy:     #0F0F1A;
  --navy2:    #16213E;
  --navy3:    #1A1A2E;
  --navy4:    #2A2A4A;
  --teal:     #00D4AA;
  --teal-dim: #00B894;
  --blue:     #4A90D9;
  --text:     #E8E8F0;
  --muted:    #9E9EB8;
  --muted2:   #7A7A9A;
  --border:   rgba(255,255,255,0.08);
  --glass:    rgba(22, 33, 62, 0.7);
}

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

html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--navy);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 2.5rem;
  background: rgba(15, 15, 26, 0.85);
  backdrop-filter: blur(25px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  display: flex; align-items: center; gap: 0.8rem;
  text-decoration: none; color: var(--text);
}
.nav-logo-img {
  width: 38px; height: 38px; border-radius: 10px;
  border: 1px solid var(--border);
}
.logo-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem; letter-spacing: 0.05em;
}
.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a {
  text-decoration: none; color: var(--muted);
  font-size: 0.9rem; transition: color 0.3s;
  font-weight: 500;
}
.nav-links a:hover { color: var(--teal); }
.nav-cta {
  padding: 0.6rem 1.4rem;
  background: var(--teal); color: var(--navy) !important;
  border-radius: 8px; font-weight: 700 !important;
  font-size: 0.85rem !important;
  box-shadow: 0 4px 15px rgba(0, 212, 170, 0.3);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0, 212, 170, 0.4); }

/* HERO */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 10rem 2rem 6rem;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background-image: radial-gradient(circle, rgba(0,212,170,0.12) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 85%);
}
.hero-glow {
  position: absolute; top: 20%; left: 50%; transform: translateX(-50%);
  width: 80vw; height: 60vh;
  background: radial-gradient(ellipse, rgba(0,212,170,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; max-width: 900px; width: 100%; }

.badge-pill {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.4rem 1.2rem 0.4rem 0.6rem;
  border: 1px solid rgba(0,212,170,0.3);
  border-radius: 999px;
  background: rgba(0,212,170,0.08);
  font-size: 0.8rem; color: var(--teal);
  margin-bottom: 2.5rem;
  animation: fadeInDown 0.8s ease both;
}
.badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 8px var(--teal);
  animation: pulse 2s ease infinite;
}

h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4rem, 12vw, 9rem);
  line-height: 0.85; letter-spacing: 0.01em;
  animation: fadeInUp 0.8s ease 0.2s both;
}
.h1-teal {
  color: var(--teal);
  text-shadow: 0 0 50px rgba(0,212,170,0.4);
}
.hero-pre {
  display: block; font-size: 0.32em;
  color: var(--muted); letter-spacing: 0.25em;
  margin-bottom: 0.4em;
  font-family: 'DM Sans', sans-serif; font-weight: 500;
  text-transform: uppercase;
}

.hero-sub {
  margin: 1.5rem auto 0;
  font-size: 1.1rem; color: var(--muted);
  max-width: 500px; line-height: 1.8; font-weight: 300;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.store-btns {
  margin-top: 3.5rem;
  display: flex; gap: 1.2rem; justify-content: center; flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.6s both;
}
.store-btn {
  display: flex; align-items: center; gap: 0.9rem;
  padding: 0.9rem 1.8rem; border-radius: 14px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.store-btn.ios {
  background: var(--teal); color: var(--navy);
  box-shadow: 0 8px 25px rgba(0,212,170,0.25);
}
.store-btn.android {
  background: var(--navy3); color: var(--text);
  border: 1px solid var(--border);
}
.store-btn:hover { transform: translateY(-3px); }
.store-btn.ios:hover { box-shadow: 0 12px 35px rgba(0,212,170,0.4); }
.store-btn.android:hover { border-color: var(--teal); background: var(--navy4); }
.btn-icon { font-size: 1.8rem; }
.btn-labels { display: flex; flex-direction: column; text-align: left; }
.btn-labels small { font-size: 0.7rem; opacity: 0.8; letter-spacing: 0.02em; }
.btn-labels strong { font-size: 1rem; font-weight: 700; }

/* TICKER */
.ticker-wrap {
  margin-top: 5rem;
  animation: fadeInUp 1s ease 0.8s both;
  border-radius: 18px; overflow: hidden;
  border: 1px solid var(--border);
  background: var(--navy2);
  max-width: 700px; margin-left: auto; margin-right: auto;
}
.ticker-head {
  padding: 0.6rem 1.2rem;
  background: var(--navy3);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.75rem; letter-spacing: 0.05em;
  color: var(--muted); text-transform: uppercase;
}
.ticker-head-left { display: flex; align-items: center; gap: 0.6rem; }
.live-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--teal); box-shadow: 0 0 8px var(--teal);
  animation: pulse 1.5s ease infinite;
}
.ticker-updated { font-size: 0.7rem; opacity: 0.6; }
.ticker-track { overflow: hidden; background: rgba(0,0,0,0.2); }
.ticker-items {
  display: flex; width: max-content;
  animation: tickerscroll 40s linear infinite;
}
@keyframes tickerscroll { to { transform: translateX(-50%); } }
.ti {
  display: flex; align-items: center; gap: 0.8rem;
  padding: 1rem 2rem;
  border-right: 1px solid var(--border);
  white-space: nowrap; font-size: 0.9rem;
}
.ti-fuel {
  padding: 0.2rem 0.6rem; border-radius: 6px;
  font-size: 0.7rem; font-weight: 700;
  background: var(--navy4); color: var(--teal);
}
.ti-price { font-weight: 700; font-family: 'Bebas Neue', sans-serif; font-size: 1.3rem; }
.ti-price.cheap { color: #00E676; text-shadow: 0 0 15px rgba(0,230,118,0.3); }
.ti-price.mid   { color: #FFD54F; }
.ti-price.pricey{ color: #FF5252; }
.ti-station { color: var(--muted); font-size: 0.8rem; }

/* MOCKUPS */
.hero-mockup {
  position: relative;
  width: 100%;
  max-width: 540px;
  max-height: 500px;
  margin: 3rem auto 0;
  perspective: 1000px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  overflow: visible;
}

.iphone-frame {
  position: relative;
  width: 280px;
  height: 570px;
  flex-shrink: 0;
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
  transform: rotateX(10deg) rotateY(-5deg) translateY(0);
  animation: float 6s ease-in-out infinite;
}

.iphone-frame img.frame-img {
  width: 100%;
  height: 100%;
  display: block;
  z-index: 2;
  position: relative;
  pointer-events: none;
}

.iphone-frame img.screen-img {
  position: absolute;
  top: 1.5%;
  left: 4.5%;
  width: 91%;
  height: 97%;
  object-fit: cover;
  border-radius: 36px;
  z-index: 1;
}

.features-shot {
  display: flex;
  justify-content: center;
  align-items: center;
}

.iphone-frame.secondary {
  width: 240px;
  height: 490px;
  transform: rotateY(10deg);
  animation: float 8s ease-in-out infinite reverse;
}

/* STATUS BAR */
.status-bar {
  display: none;
  justify-content: center; align-items: center; gap: 0.8rem;
  padding: 0.8rem; background: var(--navy3);
  border-bottom: 1px solid var(--border);
  font-size: 0.85rem; color: var(--muted);
}
.status-dot { width: 8px; height: 8px; border-radius: 50%; }
.status-dot.healthy { background: var(--teal); box-shadow: 0 0 8px var(--teal); }
.status-dot.warn { background: #FFD54F; box-shadow: 0 0 8px #FFD54F; }

/* STATS */
.stats-strip {
  display: flex; justify-content: center;
  background: var(--navy2); border-bottom: 1px solid var(--border);
}
.stat {
  padding: 2.5rem 4rem;
  border-right: 1px solid var(--border);
  text-align: center; flex: 1;
}
.stat:last-child { border-right: none; }
.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem; color: var(--teal);
  line-height: 1; margin-bottom: 0.8rem;
}
.stat-label { font-size: 0.85rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.12em; opacity: 0.9; }

/* SECTIONS */
.section { padding: 8rem 2rem; max-width: 1200px; margin: 0 auto; }
.eyebrow { color: var(--teal); font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.2em; margin-bottom: 1rem; }
.section-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(3rem, 6vw, 5rem); line-height: 0.9; margin-bottom: 1.5rem; }
.section-sub { font-size: 1.1rem; color: var(--muted); max-width: 600px; font-weight: 300; }

/* FEATURES */
.features-main {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 4rem;
  align-items: start;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

@media (max-width: 1024px) {
  .features-main {
    grid-template-columns: 1fr;
  }
  .features-shot {
    display: none;
  }
}

.feat-card {
  background: var(--navy2); padding: 3rem 2.5rem;
  border-radius: 24px; border: 1px solid var(--border);
  transition: all 0.4s ease;
}
.feat-card:hover { transform: translateY(-10px); background: var(--navy3); border-color: rgba(0,212,170,0.3); }
.feat-icon { font-size: 2.5rem; margin-bottom: 1.5rem; display: block; }
.feat-name { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.8rem; }
.feat-desc { font-size: 0.95rem; color: var(--muted); font-weight: 300; line-height: 1.7; }

/* HOW IT WORKS */
.how-wrap { background: var(--navy3); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 3rem; margin-top: 4rem; }
.step-num { font-family: 'Bebas Neue', sans-serif; font-size: 5rem; color: rgba(0,212,170,0.1); line-height: 0.8; }
.step-name { font-size: 1.3rem; font-weight: 700; margin: 1rem 0; }
.step-desc { color: var(--muted); font-weight: 300; }
.price-badges { display: flex; gap: 0.8rem; margin-top: 1.5rem; flex-wrap: wrap; }
.pb { padding: 0.4rem 0.8rem; border-radius: 8px; font-weight: 700; font-family: 'Bebas Neue', sans-serif; font-size: 1.2rem; }
.pb.cheap { background: rgba(0,230,118,0.15); color: #00E676; border: 1px solid rgba(0,230,118,0.3); }
.pb.mid { background: rgba(255,213,79,0.15); color: #FFD54F; border: 1px solid rgba(255,213,79,0.3); }
.pb.pricey { background: rgba(255,82,82,0.15); color: #FF5252; border: 1px solid rgba(255,82,82,0.3); }

/* PRO */
.pro-outer { padding: 8rem 2rem; }
.pro-card {
  max-width: 1100px; margin: 0 auto;
  background: linear-gradient(145deg, var(--navy2), var(--navy));
  border: 1px solid var(--teal);
  border-radius: 32px; overflow: hidden;
  display: grid; grid-template-columns: 1.2fr 1fr;
  box-shadow: 0 30px 100px rgba(0,0,0,0.5);
}
.pro-left { padding: 5rem; border-right: 1px solid var(--border); }
.pro-badge {
  display: inline-block; padding: 0.4rem 1rem;
  background: var(--teal); color: var(--navy);
  border-radius: 8px; font-weight: 800; font-size: 0.75rem;
  text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 2rem;
}
.pro-cta {
  display: inline-block; margin-top: 3rem;
  padding: 1rem 2.5rem; background: var(--teal); color: var(--navy);
  text-decoration: none; border-radius: 12px; font-weight: 700;
  transition: all 0.3s;
}
.pro-cta:hover { transform: scale(1.05); box-shadow: 0 10px 30px rgba(0,212,170,0.4); }
.pro-right { padding: 5rem; background: rgba(0,0,0,0.2); }
.pro-list { list-style: none; display: flex; flex-direction: column; gap: 1.5rem; }
.pro-list li { display: flex; align-items: center; gap: 1rem; }
.pro-check { color: var(--teal); font-weight: 700; font-size: 1.2rem; }

/* COVERAGE */
.coverage-outer {
  padding: 6rem 2.5rem;
  background: var(--navy);
  border-top: 1px solid var(--border);
}
.coverage-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.state-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 3rem;
}
.chip {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  background: var(--navy2);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.9rem;
  color: var(--text);
  white-space: nowrap;
}
.chip-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 5px var(--teal);
}

.disclaimer-outer {
  padding: 3rem 2.5rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 800px;
  margin: 0 auto;
}

/* FOOTER */
footer { padding: 4rem 2.5rem; border-top: 1px solid var(--border); background: var(--navy); }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.footer-brand { display: flex; align-items: center; gap: 1rem; }
.footer-logo-img { width: 32px; height: 32px; border-radius: 8px; }
.footer-name { font-family: 'Bebas Neue', sans-serif; font-size: 1.4rem; }
.footer-copy { font-size: 0.8rem; color: var(--muted); }
.footer-links { display: flex; gap: 2rem; }
.footer-links a { color: var(--muted); text-decoration: none; font-size: 0.85rem; transition: color 0.3s; }
.footer-links a:hover { color: var(--teal); }

/* LEGAL PAGES */
.legal-page { padding: 8rem 2.5rem 4rem; max-width: 800px; margin: 0 auto; }
.legal-content h1 { font-family: 'Bebas Neue', sans-serif; font-size: 3rem; color: var(--teal); margin-bottom: 0.5rem; letter-spacing: 0.5px; }
.legal-content h2 { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; color: var(--text); margin-top: 3rem; margin-bottom: 1rem; letter-spacing: 0.5px; }
.legal-content h3 { font-size: 1.2rem; color: var(--text); margin-top: 2rem; margin-bottom: 0.8rem; }
.legal-content p, .legal-content ul, .legal-content li { font-size: 1rem; color: var(--muted); line-height: 1.7; margin-bottom: 1rem; }
.legal-content ul { padding-left: 1.5rem; }
.legal-content a { color: var(--teal); text-decoration: none; transition: color 0.2s; }
.legal-content a:hover { color: #fff; text-decoration: underline; }
.legal-content .meta { font-size: 0.9rem; color: var(--muted); margin-bottom: 3rem; opacity: 0.7; }
.legal-content .box { background: var(--navy2); border: 1px solid var(--border); border-radius: 12px; padding: 1.5rem; margin: 1.5rem 0; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.2); opacity: 0.5; }
  100% { transform: scale(1); opacity: 1; }
}
@keyframes float {
  0%, 100% { transform: rotateX(10deg) rotateY(-5deg) translateY(0); }
  50% { transform: rotateX(8deg) rotateY(-3deg) translateY(-20px); }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .pro-card { grid-template-columns: 1fr; }
  .pro-left, .pro-right { padding: 3rem 2rem; }
  .pro-left { border-right: none; border-bottom: 1px solid var(--border); }
  .stat { padding: 2rem 1rem; }
  .iphone-frame { width: 190px; height: 390px; }
  .hero-mockup { max-height: 280px; margin-top: 2rem; }
  .stats-strip { flex-wrap: wrap; }
  .stat { padding: 1.5rem 1rem; border-right: none; border-bottom: 1px solid var(--border); width: 50%; }
}

@media (max-width: 400px) {
  .hero-mockup { max-height: 220px; }
  .iphone-frame { width: 160px; height: 330px; }
  h1 { font-size: 3.5rem; }
}
