/* ===== Premier Advantage — Owner Rewards =====
   LIGHT THEME v2 — inspired by the vertical "Owner Rewards" hero
   Palette:
     - navy           #173a78   from "OWNER REWARDS" type
     - navy-deep      #0e2d63   logo lockup
     - navy-soft      #2a55a3   secondary text
     - sky            #d8e6f5   light bg tint
     - sky-cloud      #eaf2fb   even lighter
     - paper          #ffffff
     - gold           #c89a3a   from logo banner
     - gold-bright    #e0bd62
     - gold-deep      #9c7720
     - silver         #b9c0cb
     - charcoal       #1d2433   body text
*/

:root {
  --navy: #173a78;
  --navy-deep: #0e2d63;
  --navy-soft: #2a55a3;
  --navy-link: #1f4a92;
  --sky: #d8e6f5;
  --sky-cloud: #eaf2fb;
  --paper: #ffffff;
  --gold: #c89a3a;
  --gold-bright: #e0bd62;
  --gold-deep: #9c7720;
  --silver: #b9c0cb;
  --silver-2: #d4d9e0;
  --silver-3: #6b7589;
  --charcoal: #1d2433;
  --muted: #4a5366;

  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 22px;

  --shadow-sm: 0 1px 2px rgba(14,45,99,.06), 0 1px 1px rgba(14,45,99,.04);
  --shadow-md: 0 12px 28px -10px rgba(14,45,99,.14), 0 2px 6px rgba(14,45,99,.06);
  --shadow-lg: 0 30px 70px -20px rgba(14,45,99,.22), 0 8px 24px -8px rgba(14,45,99,.10);
  --shadow-gold: 0 8px 22px -8px rgba(200,154,58,.5);

  --container: 1280px;
  --gutter: 32px;

  --font-display: "Saira", system-ui, -apple-system, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

body[data-density="comfy"] { --gutter: 40px; }
body[data-density="dense"] { --gutter: 24px; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ============ TYPE ============ */
.eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before, .eyebrow::after {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}
.eyebrow.center { justify-content: center; }
.eyebrow.solo::before, .eyebrow.solo::after { display: none; }

.h-display {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(48px, 7.6vw, 112px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin: 0;
  text-wrap: balance;
}
.h-section {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(34px, 4.4vw, 60px);
  line-height: 1;
  letter-spacing: -0.015em;
  color: var(--navy);
  margin: 0 0 16px 0;
  text-wrap: balance;
}
.h-section .gold { color: var(--gold-deep); }
.h-section.on-dark { color: #fff; }
.h-section.on-dark .gold { color: var(--gold-bright); }

.h-card {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.005em;
  color: var(--navy);
  margin: 0 0 8px 0;
}

.lead {
  font-size: 17.5px;
  line-height: 1.6;
  color: var(--muted);
  text-wrap: pretty;
  max-width: 62ch;
}
.lead.on-dark { color: rgba(255,255,255,.78); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  border: 0;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  transition: transform .15s, box-shadow .2s, background .2s, color .2s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 8px 22px -8px rgba(14,45,99,.5);
}
.btn-primary:hover { background: var(--navy-deep); transform: translateY(-1px); }

.btn-gold {
  background: linear-gradient(180deg, var(--gold-bright) 0%, var(--gold) 60%, var(--gold-deep) 100%);
  color: #fff;
  box-shadow: var(--shadow-gold);
  text-shadow: 0 1px 0 rgba(0,0,0,.15);
}
.btn-gold:hover { transform: translateY(-1px); filter: brightness(1.05); }

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid rgba(23,58,120,.22);
}
.btn-ghost:hover { background: rgba(23,58,120,.06); border-color: var(--navy); }

.btn .arrow { transition: transform .2s; }
.btn:hover .arrow { transform: translateX(3px); }

/* ============ NAV ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid rgba(14,45,99,.06);
  transition: background .25s, border-color .25s;
}
.nav.scrolled {
  background: rgba(255,255,255,.96);
  border-bottom-color: rgba(14,45,99,.1);
  box-shadow: 0 1px 0 rgba(14,45,99,.04);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
  gap: 24px;
}
.nav-logo img { height: 46px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  display: inline-block;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  border-radius: 999px;
  transition: color .15s, background .15s;
}
.nav-links a:hover { background: rgba(23,58,120,.07); }

.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-balance-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px 7px 10px;
  border-radius: 999px;
  background: rgba(200,154,58,.12);
  border: 1px solid rgba(200,154,58,.32);
  color: var(--gold-deep);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.nav-balance-pill .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 6px rgba(200,154,58,.6);
}
.nav-login {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid rgba(23,58,120,.2);
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  transition: all .15s;
}
.nav-login:hover { background: var(--navy); color: #fff; border-color: var(--navy); }

@media (max-width: 880px) { .nav-links { display: none; } }

/* ============ HERO — light, sunburst ============ */
.hero {
  position: relative;
  min-height: 760px;
  background:
    radial-gradient(ellipse 90% 70% at 50% 18%, #ffffff 0%, #f5faff 25%, #d8e6f5 60%, #b6cdec 100%);
  overflow: hidden;
  isolation: isolate;
}
/* Sunburst rays from top center */
.hero::before {
  content: "";
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 1400px;
  height: 1400px;
  background:
    conic-gradient(from 200deg at 50% 50%,
      transparent 0deg,
      rgba(255,255,255,.0) 8deg,
      rgba(255,255,255,.55) 16deg,
      rgba(255,255,255,.0) 24deg,
      transparent 30deg,
      rgba(255,255,255,.45) 40deg,
      transparent 50deg,
      rgba(232,189,98,.18) 60deg,
      transparent 70deg,
      rgba(255,255,255,.5) 88deg,
      transparent 96deg,
      rgba(255,255,255,.35) 110deg,
      transparent 120deg,
      rgba(255,255,255,.45) 140deg,
      transparent 150deg,
      rgba(232,189,98,.15) 160deg,
      transparent 360deg);
  mask: radial-gradient(circle at 50% 50%, black 8%, transparent 70%);
  -webkit-mask: radial-gradient(circle at 50% 50%, black 8%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  filter: blur(2px);
}
/* Soft glow at top center */
.hero::after {
  content: "";
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,250,235,.9), rgba(255,255,255,.4) 30%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* horizon line at bottom */
.hero-horizon {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 220px;
  background:
    linear-gradient(180deg, transparent, rgba(182,205,236,.4) 60%, rgba(216,230,245,.6)),
    linear-gradient(90deg, transparent, rgba(255,255,255,.4) 50%, transparent);
  z-index: 1;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.95fr;
  gap: 56px;
  align-items: center;
  padding: 96px var(--gutter) 0;
  max-width: var(--container);
  margin: 0 auto;
}
.hero-copy { max-width: 600px; }
.hero-copy .h-display {
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 0.92;
}
.hero-copy .h-display .stack { display: block; }

.hero-tagline {
  display: inline-flex;
  gap: 18px;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-top: 24px;
}
.hero-tagline span { display: inline-flex; align-items: center; gap: 14px; }
.hero-tagline .dash { width: 22px; height: 1.5px; background: var(--gold); }

.hero-sub {
  margin-top: 28px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 50ch;
}
.hero-actions {
  margin-top: 40px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-perks {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  max-width: 560px;
}
.hero-perk {
  padding: 16px 18px;
  border-left: 2px solid var(--gold);
}
.hero-perk-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 30px;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.02em;
}
.hero-perk-num .gold { color: var(--gold-deep); }
.hero-perk-label {
  margin-top: 6px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--silver-3);
  font-weight: 600;
}

.hero-visual {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 24px 40px rgba(14,45,99,.18)) drop-shadow(0 8px 16px rgba(14,45,99,.12));
}

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; padding-top: 56px; }
  .hero-perks { grid-template-columns: 1fr; max-width: 320px; gap: 0; }
}

/* ============ DEALER STRIP ============ */
.dealer-strip {
  background: var(--paper);
  border-bottom: 1px solid rgba(14,45,99,.06);
  padding: 28px 0;
}
.dealer-strip-inner {
  display: flex;
  align-items: center;
  gap: 56px;
  justify-content: space-between;
  flex-wrap: wrap;
}
.dealer-strip-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--silver-3);
}
.dealer-strip-brands {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: center;
}
.dealer-strip-brand {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.02em;
  color: var(--silver-3);
  transition: color .2s;
}
.dealer-strip-brand:hover { color: var(--navy); }

/* ============ SECTION ============ */
.section { padding: 112px 0; }
.section.on-light { background: var(--paper); }
.section.on-tint { background: var(--sky-cloud); }
.section.on-dark {
  background:
    radial-gradient(ellipse 60% 40% at 80% 0%, rgba(224,189,98,.18), transparent 60%),
    radial-gradient(ellipse 60% 40% at 0% 100%, rgba(42,85,163,.30), transparent 60%),
    linear-gradient(180deg, var(--navy-deep), var(--navy));
  color: #fff;
  position: relative;
}
.section-head {
  max-width: 760px;
  margin: 0 auto 64px;
  text-align: center;
}

/* ============ LIFETIME / POWERTRAIN ============ */
.lifetime {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.lifetime-photo {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background:
    radial-gradient(ellipse 70% 50% at 50% 50%, #ffffff 0%, #f5faff 30%, #d8e6f5 70%, #b6cdec 100%);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
/* Subtle radial blueprint grid behind the part */
.lifetime-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent 0, transparent 39px, rgba(23,58,120,.06) 39px, rgba(23,58,120,.06) 40px),
    repeating-linear-gradient(90deg, transparent 0, transparent 39px, rgba(23,58,120,.06) 39px, rgba(23,58,120,.06) 40px);
  mask: radial-gradient(circle at 50% 50%, black 30%, transparent 75%);
  -webkit-mask: radial-gradient(circle at 50% 50%, black 30%, transparent 75%);
  pointer-events: none;
}
/* Soft glow under the part */
.lifetime-photo::after {
  content: "";
  position: absolute;
  bottom: 18%;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 30px;
  background: radial-gradient(ellipse, rgba(14,45,99,.18), transparent 70%);
  pointer-events: none;
  z-index: 1;
}
.lifetime-photo img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  max-height: 78%;
  object-fit: contain;
  filter: drop-shadow(0 20px 30px rgba(14,45,99,.18));
}
.lifetime-photo .stamp {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 3;
  background: linear-gradient(180deg, rgba(14,45,99,.92), rgba(14,45,99,.78));
  backdrop-filter: blur(6px);
  border-radius: 16px;
  padding: 14px 18px;
  border: 1px solid rgba(255,255,255,.1);
}
.lifetime-photo .stamp-medal {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  color: #fff;
  border: 2px solid rgba(255,255,255,.4);
  box-shadow: 0 6px 18px rgba(0,0,0,.3);
  flex-shrink: 0;
}
.lifetime-photo .stamp-text { color: #fff; }
.lifetime-photo .stamp-text .top {
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-bright);
  font-weight: 600;
}
.lifetime-photo .stamp-text .big {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.005em;
  margin-top: 2px;
  color: #fff;
}

.lifetime-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px 8px 8px;
  border-radius: 999px;
  background: rgba(200,154,58,.12);
  border: 1px solid rgba(200,154,58,.4);
  margin-bottom: 24px;
}
.lifetime-badge-dot {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
}
.lifetime-badge-text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.lifetime-components {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.lifetime-comp {
  background: var(--sky-cloud);
  border: 1px solid rgba(14,45,99,.08);
  border-radius: 14px;
  padding: 18px 16px;
  text-align: center;
}
.lifetime-comp .icon {
  width: 40px; height: 40px;
  margin: 0 auto 10px;
  border-radius: 10px;
  background: var(--paper);
  border: 1px solid rgba(14,45,99,.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
}
.lifetime-comp .name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--navy);
}

@media (max-width: 880px) { .lifetime { grid-template-columns: 1fr; gap: 48px; } }

/* ============ BENEFITS GRID ============ */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.benefit-card {
  background: var(--paper);
  border: 1px solid rgba(14,45,99,.08);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  overflow: hidden;
}
.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(200,154,58,.45);
}
.benefit-card .icon-wrap {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--sky-cloud);
  border: 1px solid rgba(14,45,99,.06);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
  margin-bottom: 24px;
}
.benefit-card .h-card { color: var(--navy); }
.benefit-card p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}
.benefit-card .featured-tag {
  position: absolute;
  top: 20px; right: 20px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  background: rgba(200,154,58,.14);
  border: 1px solid rgba(200,154,58,.34);
  padding: 4px 10px;
  border-radius: 999px;
}
.benefit-card.featured {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: #fff;
  border-color: var(--gold);
}
.benefit-card.featured .h-card { color: #fff; }
.benefit-card.featured p { color: rgba(255,255,255,.78); }
.benefit-card.featured .icon-wrap {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep));
  color: #fff;
  border: 0;
}
.benefit-card.featured .featured-tag {
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.3);
  color: #fff;
}

@media (max-width: 880px) { .benefits-grid { grid-template-columns: 1fr; } }

/* ============ COMPARE TABLE ============ */
.compare-wrap { max-width: 1100px; margin: 0 auto; }
.compare-table {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 24px;
  overflow: hidden;
  backdrop-filter: blur(8px);
}
.compare-row {
  display: grid;
  grid-template-columns: 2.4fr 1fr 1fr;
  align-items: stretch;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.compare-row:last-child { border-bottom: 0; }
.compare-row.head { background: rgba(0,0,0,.22); }
.compare-row.head .compare-cell { padding: 28px 24px; }
.compare-row.head .plan-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: #fff;
}
.compare-row.head .plan-tag {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-top: 8px;
  display: block;
}
.compare-cell {
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(255,255,255,.06);
}
.compare-cell:last-child { border-right: 0; }
.compare-cell.value {
  align-items: center;
  text-align: center;
  font-size: 14px;
  color: rgba(255,255,255,.85);
}
.compare-feature-name {
  font-weight: 600;
  font-size: 15px;
  color: #fff;
  margin-bottom: 2px;
}
.compare-feature-sub {
  font-size: 12.5px;
  color: rgba(255,255,255,.55);
  line-height: 1.45;
}
.check {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(224,189,98,.18);
  border: 1px solid rgba(224,189,98,.45);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--gold-bright);
}
.check.solid {
  background: linear-gradient(180deg, var(--gold-bright), var(--gold-deep));
  border-color: transparent;
  color: #fff;
}
.dash-mark {
  width: 16px; height: 1.5px;
  background: rgba(255,255,255,.25);
}
.compare-row.foot { background: rgba(224,189,98,.08); }
.compare-row.foot .compare-cell { padding: 24px; font-family: var(--font-display); font-weight: 700; }
.compare-row.foot .price-free {
  color: var(--gold-bright);
  font-size: 18px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.compare-row.foot .price-cta {
  color: rgba(255,255,255,.85);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ============ EARN — DOLLAR REWARDS ============ */
.earn-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.earn-card {
  background: var(--paper);
  border: 1px solid rgba(14,45,99,.08);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all .25s;
  position: relative;
  overflow: hidden;
}
.earn-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: rgba(200,154,58,.4);
}
.earn-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--sky-cloud);
  border: 1px solid rgba(14,45,99,.06);
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.earn-card .title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--navy);
  margin: 0 0 4px;
}
.earn-card .reward-amt {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  color: var(--gold-deep);
  letter-spacing: -0.01em;
  line-height: 1.05;
}
.earn-card .reward-amt .pre { font-size: 18px; opacity: 0.7; vertical-align: top; margin-right: 1px;}
.earn-card .reward-amt .label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--silver-3);
  margin-left: 6px;
  font-weight: 600;
  vertical-align: middle;
}

@media (max-width: 880px) { .earn-grid { grid-template-columns: 1fr; } }

/* ============ DOUBLE BANNER ============ */
.double-banner {
  background:
    radial-gradient(ellipse 70% 100% at 90% 50%, rgba(224,189,98,.32), transparent 60%),
    linear-gradient(135deg, var(--navy), var(--navy-deep));
  border-radius: 32px;
  padding: 64px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: center;
  color: #fff;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(224,189,98,.2);
}
.double-banner::before {
  content: "2X";
  position: absolute;
  right: -40px; top: -40px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 320px;
  line-height: .8;
  color: rgba(224,189,98,.07);
  letter-spacing: -0.05em;
  pointer-events: none;
}
.double-banner h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 4vw, 52px);
  margin: 0 0 16px;
  color: #fff;
  letter-spacing: -0.015em;
  line-height: 1;
}
.double-banner .gold-word { color: var(--gold-bright); }
.double-banner p {
  color: rgba(255,255,255,.78);
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  max-width: 52ch;
}
.double-banner .cap {
  display: inline-block;
  margin-top: 20px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 14px;
}
@media (max-width: 880px) { .double-banner { grid-template-columns: 1fr; padding: 40px; } }

/* ============ APP SECTION ============ */
.app-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.app-list {
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
}
.app-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--charcoal);
  font-weight: 500;
}
.app-list li svg { flex-shrink: 0; color: var(--gold-deep); }

.app-store-row { display: flex; gap: 12px; margin-top: 36px; flex-wrap: wrap; align-items: center; }
.store-badge {
  display: inline-flex;
  align-items: center;
  transition: transform .15s, opacity .15s;
}
.store-badge img {
  display: block;
  height: 104px;
  width: auto;
}
.store-badge:hover { transform: translateY(-1px); opacity: 0.9; }

.hero-badges {
  position: absolute;
  bottom: 12px;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-badges .store-badge img { height: 96px; }
@media (max-width: 980px) {
  .hero-visual {
    height: auto;
    flex-direction: column;
    gap: 24px;
  }
  .hero-visual > img { max-height: 320px; }
  .hero-badges {
    position: static;
    margin-top: 0;
    gap: 16px;
  }
  .hero-badges .store-badge img { height: 72px; }
}
@media (max-width: 480px) {
  .hero-badges { flex-direction: column; align-items: center; gap: 12px; }
  .hero-badges .store-badge img { height: 64px; }
}

/* ============ PHONE MOCKUP — matches Premier Advantage app ============ */
.phone-frame {
  position: relative;
  width: 320px;
  margin: 0 auto;
  aspect-ratio: 9 / 19.5;
  background: #0c0e14;
  border-radius: 44px;
  padding: 12px;
  box-shadow:
    0 60px 120px -40px rgba(14,45,99,.35),
    0 0 0 1px rgba(255,255,255,.05),
    inset 0 0 0 2px #1a1d26;
}
.phone-screen {
  width: 100%; height: 100%;
  border-radius: 32px;
  overflow: hidden;
  background: #f3f5f9;
  position: relative;
  display: flex;
  flex-direction: column;
}
.phone-notch {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 96px; height: 22px;
  background: #0c0e14;
  border-radius: 0 0 14px 14px;
  z-index: 5;
}
.phone-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 22px 6px;
  font-size: 12px;
  font-weight: 600;
  color: #1d2433;
  z-index: 4;
  flex-shrink: 0;
}
.phone-status-icons {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.signal-bars {
  display: inline-flex;
  align-items: end;
  gap: 1px;
  height: 9px;
}
.signal-bars i {
  width: 2px;
  background: #1d2433;
  border-radius: 1px;
}
.signal-bars i:nth-child(1) { height: 3px; }
.signal-bars i:nth-child(2) { height: 5px; }
.signal-bars i:nth-child(3) { height: 7px; }
.signal-bars i:nth-child(4) { height: 9px; }
.wifi-icon {
  font-size: 14px;
  font-weight: 700;
  transform: rotate(180deg);
  display: inline-block;
}
.battery {
  width: 22px; height: 10px;
  border: 1px solid #1d2433;
  border-radius: 3px;
  position: relative;
  padding: 1px;
}
.battery::after {
  content: "";
  position: absolute;
  right: -3px; top: 50%;
  transform: translateY(-50%);
  width: 1.5px; height: 4px;
  background: #1d2433;
  border-radius: 0 1px 1px 0;
}
.battery-fill {
  display: block;
  width: 80%; height: 100%;
  background: #1d2433;
  border-radius: 1px;
}

/* App body */
.phone-app {
  flex: 1;
  overflow: hidden;
  padding: 6px 14px 0;
  background: #f3f5f9;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.phone-brand-row {
  background: #fff;
  border-radius: 10px;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(14,45,99,.06);
}
.phone-brand-logo {
  width: 36px; height: 36px;
  border-radius: 6px;
  background: var(--navy-deep);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  padding: 4px;
}
.phone-brand-logo img {
  width: 100%; height: auto;
  filter: brightness(0) invert(1);
}
.phone-brand-text { line-height: 1.2; }
.phone-brand-text .line-sm {
  font-size: 9.5px;
  color: var(--silver-3);
  font-weight: 500;
}
.phone-brand-text .line-bold {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  color: var(--navy);
}

.phone-member {
  padding: 4px 4px 0;
}
.phone-eyebrow {
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--silver-3);
  font-weight: 600;
}
.phone-member-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--navy);
  margin-top: 2px;
}
.phone-member-id {
  font-size: 9.5px;
  color: var(--silver-3);
  margin-top: 2px;
  letter-spacing: 0.04em;
  font-weight: 500;
}

.phone-meta-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 4px;
}
.phone-meta { flex: 1; }
.phone-meta-divider {
  width: 1px;
  height: 26px;
  background: rgba(14,45,99,.12);
}
.phone-meta-label {
  font-size: 8.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--silver-3);
  font-weight: 600;
}
.phone-meta-value {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12.5px;
  color: var(--navy);
  margin-top: 2px;
}

.phone-balance-row {
  display: flex;
  gap: 8px;
  margin-top: 2px;
}
.phone-balance-card {
  flex: 1;
  border-radius: 10px;
  padding: 10px 12px;
  position: relative;
  overflow: hidden;
}
.phone-balance-card.primary {
  background: linear-gradient(135deg, var(--navy), var(--navy-deep));
  color: #fff;
  flex: 1.4;
}
.phone-balance-card.primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 100% 100%, rgba(224,189,98,.25), transparent 60%);
}
.phone-balance-card.secondary {
  background: linear-gradient(135deg, var(--gold-deep), var(--gold-warm, var(--gold-deep)));
  background: linear-gradient(135deg, #c45a2c, #a83e1d);
  color: #fff;
  opacity: 0.96;
}
.phone-balance-card-label {
  font-size: 8.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0.85;
  position: relative;
}
.phone-balance-card-amount {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  margin-top: 2px;
  letter-spacing: -0.01em;
  position: relative;
}

.phone-section-label {
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--silver-3);
  font-weight: 600;
  padding: 0 4px;
  margin-top: 4px;
}

.phone-vehicle {
  background: #fff;
  border-radius: 10px;
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(14,45,99,.06);
}
.phone-vehicle-thumb {
  width: 44px; height: 32px;
  border-radius: 6px;
  background: #fff8e1;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-deep);
  flex-shrink: 0;
  border: 1px solid rgba(200,154,58,.2);
}
.phone-vehicle-info { flex: 1; min-width: 0; }
.phone-vehicle-year {
  font-size: 9.5px;
  color: var(--silver-3);
  font-weight: 600;
}
.phone-vehicle-model {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  color: var(--navy);
  margin-top: 1px;
}
.phone-vehicle-vin {
  font-size: 9.5px;
  color: var(--gold-deep);
  margin-top: 2px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}
.vin-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--gold-deep);
  color: #fff;
  font-size: 6px;
  line-height: 1;
}

.phone-txn {
  background: #fff;
  border-radius: 8px;
  padding: 9px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border: 1px solid rgba(14,45,99,.06);
}
.phone-txn-date {
  font-size: 10.5px;
  color: var(--charcoal);
  font-weight: 500;
  flex: 1;
}
.phone-txn-amt {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  color: var(--gold-deep);
}
.phone-txn-arrow {
  font-size: 14px;
  color: var(--gold-deep);
  font-weight: 700;
}

.phone-tab-bar {
  display: flex;
  justify-content: space-around;
  align-items: stretch;
  padding: 8px 0 4px;
  background: #fff;
  border-top: 1px solid rgba(14,45,99,.08);
  margin-top: 8px;
  flex-shrink: 0;
}
.phone-tab {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  font-size: 8.5px;
  font-weight: 600;
  color: var(--silver-3);
  padding: 4px 0;
}
.phone-tab-icon {
  width: 24px; height: 24px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 6px;
}
.phone-tab.active { color: var(--gold-deep); }
.phone-tab.active .phone-tab-icon {
  background: linear-gradient(180deg, rgba(200,154,58,.18), rgba(200,154,58,.08));
}

.phone-home-indicator {
  width: 100px; height: 4px;
  background: #1d2433;
  border-radius: 2px;
  margin: 4px auto 6px;
  flex-shrink: 0;
  opacity: 0.7;
}

@media (max-width: 880px) {
  .app-grid { grid-template-columns: 1fr; gap: 48px; }
  .app-list { grid-template-columns: 1fr; }
}

/* ============ FAQ ============ */
.faq-wrap { max-width: 880px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid rgba(14,45,99,.1);
}
.faq-item:first-child { border-top: 1px solid rgba(14,45,99,.1); }
.faq-q {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  color: var(--navy);
}
.faq-q .toggle {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(14,45,99,.06);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background .2s, transform .25s;
  color: var(--navy);
}
.faq-item.open .faq-q .toggle {
  background: var(--gold);
  color: #fff;
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .25s ease;
}
.faq-item.open .faq-a {
  max-height: 320px;
  padding: 0 0 24px;
}
.faq-a p {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 68ch;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,.72);
  padding: 80px 0 40px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer h5 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin: 0 0 18px;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin-bottom: 10px; }
.footer ul li a { color: rgba(255,255,255,.65); font-size: 14px; }
.footer ul li a:hover { color: #fff; }
.footer .brand-block img { height: 56px; }
.footer .brand-block p { font-size: 14px; line-height: 1.6; max-width: 38ch; margin: 16px 0; }
.footer-bottom {
  margin-top: 28px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,.4);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: rgba(255,255,255,.55); }
@media (max-width: 880px) { .footer-top { grid-template-columns: 1fr 1fr; } }

/* ============ MODAL ============ */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(14,45,99,0.55);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 24px;
  animation: fadeIn .2s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal-card {
  width: 100%;
  max-width: 460px;
  background: var(--paper);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  animation: popIn .25s cubic-bezier(.2,.9,.4,1.1);
}
@keyframes popIn { from { transform: translateY(20px) scale(.96); opacity: 0; } to { transform: translateY(0) scale(1); opacity: 1; } }
.modal-header {
  background:
    radial-gradient(ellipse 80% 80% at 50% 20%, #ffffff 0%, #eaf2fb 50%, #d8e6f5 100%);
  padding: 36px 32px 28px;
  text-align: center;
  position: relative;
  border-bottom: 1px solid rgba(14,45,99,.08);
}
.modal-header img { height: 56px; margin: 0 auto; }
.modal-close {
  position: absolute;
  top: 18px; right: 18px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(14,45,99,.08);
  border: 0;
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  transition: all .15s;
}
.modal-close:hover { background: rgba(14,45,99,.16); }
.modal-body { padding: 32px; }
.modal-tabs {
  display: flex;
  background: var(--sky-cloud);
  border-radius: 999px;
  padding: 4px;
  margin-bottom: 28px;
}
.modal-tabs button {
  flex: 1;
  padding: 10px 16px;
  border: 0;
  background: transparent;
  border-radius: 999px;
  font-weight: 600;
  font-size: 13px;
  color: var(--silver-3);
  transition: all .2s;
}
.modal-tabs button.active {
  background: var(--paper);
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}
.field { margin-bottom: 16px; }
.field label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--silver-3);
  margin-bottom: 8px;
}
.field input {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--silver-2);
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  background: var(--paper);
  transition: border-color .15s, box-shadow .15s;
}
.field input:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 4px rgba(23,58,120,.08);
}
.field-row { display: flex; align-items: center; justify-content: space-between; margin: 8px 0 20px; font-size: 13px; }
.field-row a { color: var(--navy-link); font-weight: 600; }
.modal-cta {
  width: 100%;
  padding: 14px;
  border: 0;
  border-radius: 10px;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold-deep));
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  transition: filter .15s;
}
.modal-cta:hover { filter: brightness(1.05); }
.modal-foot {
  text-align: center;
  font-size: 13px;
  color: var(--silver-3);
  margin-top: 18px;
}
.modal-foot a { color: var(--navy); font-weight: 600; }

/* ============ TOAST ============ */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy-deep);
  color: #fff;
  padding: 14px 22px 14px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 200;
  animation: toastIn .3s cubic-bezier(.2,.9,.4,1.1);
  border: 1px solid rgba(224,189,98,.4);
}
@keyframes toastIn { from { transform: translate(-50%, 20px); opacity: 0; } to { transform: translate(-50%, 0); opacity: 1; } }
.toast .ok {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold-deep));
  display: flex; align-items: center; justify-content: center;
  color: #fff;
}

/* ============ REVEAL ============ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
