/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #0D1B2A;
  --navy-mid: #152336;
  --navy-light: #1E3A52;
  --gold: #E8A838;
  --gold-dark: #C88A1A;
  --gold-light: #F5C96A;
  --cream: #FAF6EE;
  --off-white: #F4F1EC;
  --text-dark: #0D1B2A;
  --text-mid: #3D5A73;
  --text-light: #8AA5BA;
  --white: #FFFFFF;
  --hero-bg: #0D1B2A;
  --features-bg: #F4F1EC;
  --coverage-bg: #152336;
  --lisa-bg: #FFFFFF;
  --closing-bg: #0D1B2A;
  --footer-bg: #091322;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: 'Syne', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
}

.section-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.75rem;
}

.section-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text-dark);
  margin-bottom: 2rem;
}

/* ===== NAVIGATION ===== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(13, 27, 42, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(232, 168, 56, 0.15);
}

.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--white);
  letter-spacing: -0.01em;
}

.nav-logo span { color: var(--gold); }

/* ===== HERO ===== */
.hero {
  background: var(--hero-bg);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 7rem 3rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 120%;
  background: radial-gradient(ellipse at center, rgba(232, 168, 56, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232, 168, 56, 0.3), transparent);
}

.hero-content {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: var(--white);
  margin-bottom: 1.5rem;
  font-weight: 800;
}

.hero-text h1 br { display: block; }

.lede {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 480px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.badge {
  background: rgba(232, 168, 56, 0.12);
  border: 1px solid rgba(232, 168, 56, 0.3);
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-screenshot {
  width: 100%;
  max-width: 420px;
  border-radius: 16px;
  border: 1px solid rgba(232, 168, 56, 0.2);
  box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 0 60px rgba(232, 168, 56, 0.1);
  object-fit: cover;
}

/* ===== FEATURES ===== */
.features {
  background: var(--features-bg);
  padding: 6rem 3rem;
}

.features-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.feature-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem 2rem 2.5rem;
  border: 1px solid rgba(13, 27, 42, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(13, 27, 42, 0.1);
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: var(--navy);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--gold);
}

.feature-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ===== COVERAGE ===== */
.coverage {
  background: var(--coverage-bg);
  padding: 6rem 3rem;
}

.coverage-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.coverage-text .section-heading { color: var(--white); }

.coverage-text p {
  color: rgba(255,255,255,0.55);
  font-size: 1rem;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.plan-list { display: flex; flex-direction: column; gap: 0.75rem; }

.plan-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.875rem 1.25rem;
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.08);
}

.plan-name {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  font-weight: 500;
}

.plan-price {
  color: var(--gold-light);
  font-weight: 700;
  font-size: 0.95rem;
  font-family: 'Syne', sans-serif;
}

.bail-graphic {
  background: rgba(232, 168, 56, 0.08);
  border: 1px solid rgba(232, 168, 56, 0.25);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  text-align: center;
}

.bail-amount {
  font-family: 'Syne', sans-serif;
  font-size: 4rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.bail-label {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.bail-sub {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

/* ===== LISA ===== */
.lisa {
  background: var(--lisa-bg);
  padding: 6rem 3rem;
}

.lisa-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.lisa-screenshot {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(13, 27, 42, 0.1);
  box-shadow: 0 20px 60px rgba(13, 27, 42, 0.12);
}

.lisa-text .section-heading { color: var(--text-dark); }

.lisa-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-top: -1.25rem;
  margin-bottom: 1.25rem;
}

.lisa-text p {
  color: var(--text-mid);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.lisa-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.lisa-points li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-dark);
  font-weight: 500;
}

.lisa-points li::before {
  content: '';
  width: 20px;
  height: 20px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%230D1B2A' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* ===== CLOSING ===== */
.closing {
  background: var(--closing-bg);
  padding: 7rem 3rem;
  text-align: center;
}

.closing-inner {
  max-width: 900px;
  margin: 0 auto;
}

.closing h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.closing p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  margin-bottom: 4rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.closing-stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.stat { text-align: center; }

.stat-number {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* ===== FOOTER ===== */
footer {
  background: var(--footer-bg);
  padding: 4rem 3rem 2rem;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-logo {
  font-family: 'Syne', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  display: block;
  margin-bottom: 0.75rem;
}

.footer-brand p {
  color: rgba(255,255,255,0.4);
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 280px;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.footer-col h4 {
  font-family: 'Syne', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1rem;
}

.footer-col a {
  display: block;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
  transition: color 0.15s;
}

.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.25);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  
  .hero-content,
  .coverage-inner,
  .lisa-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .hero {
    padding: 7rem 1.5rem 4rem;
    text-align: center;
  }
  
  .hero-text h1 br { display: none; }
  
  .lede { max-width: 100%; margin-left: auto; margin-right: auto; }
  
  .hero-badges { justify-content: center; }
  
  .hero-visual { order: -1; }
  
  .hero-screenshot { max-width: 320px; margin: 0 auto; }
  
  .features, .coverage, .lisa, .closing { padding: 4rem 1.5rem; }
  
  .feature-grid { grid-template-columns: 1fr; }
  
  .lisa-text { order: -1; }
  
  .closing-stats { gap: 2rem; }
  
  .footer-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  
  .footer-bottom { flex-direction: column; gap: 0.5rem; align-items: center; }
}

@media (max-width: 500px) {
  .closing-stats { gap: 1.5rem; }
  
  .stat-number { font-size: 2.25rem; }
}
