@charset "UTF-8";

:root {
  --bg: #0b1822;
  --bg-alt: #091620;
  --teal: #2a8681;
  --teal-d: #1e6b66;
  --teal-lt: #a8d8d5;
  --teal-bg: rgba(42, 134, 129, .10);
  --surface: rgba(255, 255, 255, .04);
  --surf-md: rgba(255, 255, 255, .07);
  --card-border: rgba(255, 255, 255, .07);
  --text: #eef0f8;
  --muted: rgba(238, 240, 248, .58);
  --sub: rgba(238, 240, 248, .30);
  --amber: #f5a623;
  --mint: #9fd4ae;
  /* --subjecttwo: #63dd53; */
  --subjecttwo: #95e48b;
}

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

html {
  scroll-behavior: smooth
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.txt-green {
  color: var(--subjecttwo);
}

/* ═══ SITE NAV ═══════════════════════════════════════════ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  height: 60px;
  background: rgba(9, 20, 30, .95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.sn-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
}

.sn-brand {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -.015em;
  color: #fff;
  text-decoration: none;
  flex-shrink: 0;
  margin-right: 1.75rem;
}

.sn-brand em {
  font-style: normal;
  color: var(--teal-lt);
}

.sn-menu {
  display: flex;
  align-items: center;
  flex: 1;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0;
}

.sn-link {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  height: 60px;
  padding: 0 .8rem;
  font-size: .8rem;
  font-weight: 500;
  color: rgba(238, 240, 248, .58);
  text-decoration: none;
  white-space: nowrap;
  transition: color .2s;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.sn-link:hover {
  color: #fff;
}

.sn-drop {
  position: relative;
}

.sn-caret {
  font-size: .58rem;
  opacity: .55;
  transition: transform .22s;
  line-height: 1;
}

.sn-drop:hover .sn-caret,
.sn-drop.open .sn-caret {
  transform: rotate(180deg);
}

.sn-panel {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: #0d1d2a;
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 10px;
  min-width: 210px;
  padding: .35rem 0;
  box-shadow: 0 12px 36px rgba(0, 0, 0, .5);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity .18s, transform .18s;
}

.sn-panel::before {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  height: 10px;
}

.sn-drop:hover .sn-panel,
.sn-drop.open .sn-panel {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.sn-panel-item {
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .6rem 1rem;
  font-size: .8rem;
  color: rgba(238, 240, 248, .65);
  text-decoration: none;
  transition: color .15s, background .15s;
}

.sn-panel-item:hover {
  color: #fff;
  background: rgba(42, 134, 129, .10);
}

.sn-panel-item svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  color: var(--teal-lt);
}

.sn-auth {
  margin-left: auto;
  flex-shrink: 0;
  padding-left: .75rem;
}

.sn-cta {
  display: inline-flex;
  align-items: center;
  height: 32px;
  padding: 0 16px;
  border-radius: 6px;
  font-size: .8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .70);
  border: 1px solid rgba(255, 255, 255, .16);
  background: transparent;
  text-decoration: none;
  white-space: nowrap;
  transition: all .2s;
}

.sn-cta:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, .30);
  background: rgba(255, 255, 255, .06);
}

.sn-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0 2px;
  margin-left: auto;
  flex-shrink: 0;
}

.sn-toggle span {
  display: block;
  height: 2px;
  background: rgba(238, 240, 248, .75);
  border-radius: 2px;
  transition: transform .22s, opacity .22s;
}

.sn-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.sn-toggle.open span:nth-child(2) {
  opacity: 0;
}

.sn-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.sn-mobile-auth {
  display: none;
}

.sn-mob-label {
  display: none;
}

@media(max-width:900px) {

  /* Remove backdrop-filter on mobile — it traps position:fixed children inside
     the nav's stacking context, preventing the overlay from covering the page */
  .site-nav {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(8, 20, 30, .98);
  }

  /* Hamburger */
  .sn-toggle {
    display: flex;
  }

  .sn-auth {
    display: none;
  }

  /* Full-height overlay — covers everything below the nav bar */
  .sn-menu {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    align-items: stretch;
    background: #08141e;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0 0 2rem;
    z-index: 9999;
    /* Hidden state: fade + slight slide */
    display: flex;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity .2s ease, transform .2s ease;
  }

  .sn-menu.open {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
  }

  /* Section divider label */
  .sn-mob-label {
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(238, 240, 248, .25);
    padding: .9rem 1.5rem .35rem;
    display: block;
  }

  /* Nav items — full-width, generous touch targets */
  .sn-link {
    width: 100%;
    height: 52px;
    padding: 0 1.5rem;
    justify-content: space-between;
    font-size: .9rem;
    font-weight: 500;
    color: rgba(238, 240, 248, .80);
    border-bottom: 1px solid rgba(255, 255, 255, .05);
  }

  .sn-link:hover,
  .sn-link:active {
    color: #fff;
    background: rgba(255, 255, 255, .04);
  }

  /* Tools row: caret flips, sub-menu slides open */
  .sn-drop-btn {
    width: 100%;
  }

  .sn-drop .sn-panel {
    position: static;
    background: rgba(42, 134, 129, .06);
    border: none;
    border-left: 2px solid rgba(42, 134, 129, .35);
    border-radius: 0;
    box-shadow: none;
    margin-left: 1.5rem;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 1;
    pointer-events: all;
    transform: none;
    transition: max-height .28s ease, padding .28s ease;
    display: block;
    /* always in DOM — max-height handles show/hide */
  }

  .sn-drop.open .sn-panel {
    max-height: 300px;
    padding: .3rem 0;
  }

  .sn-drop.open .sn-caret {
    transform: rotate(180deg);
  }

  /* Remove the bridge pseudo-element on mobile (not needed, no hover gap) */
  .sn-drop .sn-panel::before {
    display: none;
  }

  .sn-panel-item {
    height: 48px;
    padding: 0 1.25rem 0 1.1rem;
    font-size: .86rem;
    color: rgba(238, 240, 248, .70);
    border-bottom: 1px solid rgba(255, 255, 255, .04);
    align-items: center;
  }

  .sn-panel-item:last-child {
    border-bottom: none;
  }

  .sn-panel-item:hover,
  .sn-panel-item:active {
    color: #fff;
    background: rgba(42, 134, 129, .10);
  }

  .sn-panel-item svg {
    width: 16px;
    height: 16px;
  }

  /* Sign In CTA — pinned at bottom of list */
  .sn-mobile-auth {
    display: block;
    padding: 1.5rem 1.5rem .5rem;
    margin-top: auto;
  }

  .sn-mobile-auth .sn-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 50px;
    font-size: .92rem;
    font-weight: 700;
    border-radius: 10px;
    background: var(--teal);
    color: #fff;
    border: none;
    letter-spacing: .01em;
  }

  .sn-mobile-auth .sn-cta:hover {
    background: var(--teal-d);
  }
}

/* HERO */
.hero {
  position: relative;
  min-height: calc(100dvh - 60px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse 85% 90% at 10% 50%, rgba(14, 80, 74, .90) 0%, transparent 60%),
    radial-gradient(ellipse 55% 60% at 85% 5%, rgba(42, 134, 129, .22) 0%, transparent 55%),
    radial-gradient(ellipse 40% 40% at 100% 100%, rgba(8, 50, 46, .60) 0%, transparent 55%),
    #0b1822;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, .038) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, .6) 10%, rgba(0, 0, 0, .6) 80%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, .6) 10%, rgba(0, 0, 0, .6) 80%, transparent 100%);
}

.hero-inner {
  position: relative;
  z-index: 10;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
  padding: 4rem 0 5rem;
}

/* CHIP */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(42, 134, 129, .14);
  border: 1px solid rgba(42, 134, 129, .32);
  color: var(--teal-lt);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 1.15rem;
}

.cdot {
  width: 5px;
  height: 5px;
  background: var(--teal-lt);
  border-radius: 50%;
  flex-shrink: 0;
}

/* HEADLINE */
h1 {
  font-size: clamp(2.3rem, 4.8vw, 3.8rem);
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1.02;
  margin-bottom: .9rem;
}

h1 em {
  font-style: normal;
  color: var(--teal-lt);
}

.hero-sub {
  font-size: 1.02rem;
  color: var(--muted);
  line-height: 1.68;
  max-width: 430px;
  margin-bottom: 1.4rem;
}

/* PROOF */
.proof {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .55rem .8rem;
  margin-bottom: 1.6rem;
}

.pstars {
  color: var(--amber);
  font-size: .88rem;
  letter-spacing: 1px;
}

.ptxt {
  font-size: .79rem;
  color: var(--muted);
}

.psep {
  color: var(--sub);
  font-size: .75rem;
}

.ppill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 999px;
  padding: 2px 10px;
  font-size: .71rem;
  font-weight: 600;
  color: var(--muted);
}

/* INLINE TESTIMONIAL PULL */
.hero-pull {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  background: var(--surface);
  border: 1px solid var(--card-border);
  border-radius: 10px;
  padding: .85rem 1rem;
  margin-bottom: 1.4rem;
}
.hero-pull svg {
  width: 15px;
  height: 15px;
  color: var(--teal-lt);
  flex-shrink: 0;
  margin-top: .15rem;
  opacity: .75;
}
.hp-quote {
  font-size: .82rem;
  color: var(--text);
  line-height: 1.5;
  font-style: italic;
  margin: 0 0 .2rem;
}
.hp-attr {
  font-size: .71rem;
  color: var(--muted);
  margin: 0;
}
.hp-attr strong {
  color: var(--teal-lt);
  font-weight: 600;
}

/* VIN INPUT */
.vin-box {
  background: rgba(255, 255, 255, .07);
  border: 2px solid rgba(255, 255, 255, .18);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  margin-bottom: .65rem;
  transition: border-color .25s, box-shadow .25s;
}

.vin-box:focus-within {
  border-color: rgba(42, 134, 129, .65);
  box-shadow: 0 0 0 4px rgba(42, 134, 129, .13);
}

.vin-inp {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-family: "SF Mono", "Roboto Mono", "Fira Code", monospace;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 17px 16px;
  min-width: 0;
}

.vin-inp::placeholder {
  color: rgba(238, 240, 248, .22);
  font-size: .78rem;
  letter-spacing: .04em;
  font-weight: 500;
}

.vin-ct {
  display: flex;
  align-items: center;
  padding: 0 12px;
  font-family: monospace;
  font-size: .7rem;
  color: var(--sub);
  flex-shrink: 0;
  user-select: none;
}

.vin-go {
  background: var(--teal);
  color: #fff;
  border: none;
  font-size: .95rem;
  font-weight: 800;
  padding: 17px 28px;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background .2s;
}

.vin-go:hover {
  background: var(--teal-d);
}

.vin-go:disabled {
  opacity: .6;
  cursor: not-allowed;
}

.form-trust {
  display: flex;
  flex-wrap: wrap;
  gap: .3rem .9rem;
  margin-bottom: .9rem;
}

.form-trust span {
  font-size: .73rem;
  color: var(--sub);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.vin-hint {
  font-size: .75rem;
  color: var(--sub);
  margin-bottom: 1.1rem;
}

.vin-hint button {
  background: none;
  border: none;
  color: var(--teal-lt);
  font-family: monospace;
  font-size: .75rem;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: rgba(168, 216, 213, .30);
}

.vin-hint button:hover {
  opacity: .75;
}

.vin-err {
  background: rgba(217, 72, 58, .12);
  border: 1px solid rgba(217, 72, 58, .25);
  color: #f87171;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: .84rem;
  margin: .5rem 0;
  display: none;
}

.vin-res {
  display: none;
  margin: .5rem 0;
}

.rbox {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 8px;
  padding: 1rem;
}

.rn {
  font-weight: 700;
  margin-bottom: .2rem;
}

.rs2 {
  font-size: .82rem;
  color: var(--muted);
  margin-bottom: .75rem;
}

.soon {
  display: inline-block;
  background: rgba(245, 166, 35, .12);
  color: var(--amber);
  font-weight: 600;
  font-size: .74rem;
  border-radius: 999px;
  padding: .25rem .8rem;
  border: 1px solid rgba(245, 166, 35, .25);
}

.feat-checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .3rem .5rem;
  margin-bottom: 1rem;
}

.feat-checks a {
  font-size: .78rem;
  color: var(--muted);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: color .2s;
}

.feat-checks a:hover {
  color: var(--teal-lt);
}

.feat-checks a::before {
  content: "\2713";
  color: var(--teal-lt);
  font-weight: 700;
  font-size: .72rem;
  flex-shrink: 0;
}


/* PREVIEW CARD */
.pcard {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 40px rgba(0, 0, 0, .45), inset 0 0 0 1px rgba(255, 255, 255, .04);
}

.ptop {
  background: rgba(0, 0, 0, .22);
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  padding: 1rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.pveh {
  font-size: .97rem;
  font-weight: 700;
  letter-spacing: -.01em;
  margin-bottom: .2rem;
}

.pvin {
  font-family: monospace;
  font-size: .7rem;
  color: var(--sub);
  letter-spacing: .05em;
}

.ptag {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal-lt);
  background: var(--teal-bg);
  border: 1px solid rgba(42, 134, 129, .22);
  border-radius: 999px;
  padding: 3px 10px;
  flex-shrink: 0;
}

.pbody {
  padding: 1.15rem;
}

.ps {
  margin-bottom: 1.15rem;
}

.ps:last-child {
  margin-bottom: 0;
}

.plbl {
  font-size: .63rem;
  font-weight: 700;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: var(--sub);
  margin-bottom: .55rem;
}

.verdict {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(159, 212, 174, .10);
  border: 1px solid rgba(159, 212, 174, .22);
  color: var(--mint);
  font-size: .71rem;
  font-weight: 700;
  border-radius: 999px;
  padding: 3px 10px;
  margin-bottom: .6rem;
}

.vdot {
  width: 6px;
  height: 6px;
  background: var(--mint);
  border-radius: 50%;
}

.rr {
  display: flex;
  align-items: center;
  gap: .65rem;
  margin-bottom: .4rem;
}

.rlo,
.rhi {
  font-size: 1rem;
  font-weight: 700;
  white-space: nowrap;
}

.rbar {
  flex: 1;
  height: 5px;
  background: rgba(255, 255, 255, .08);
  border-radius: 999px;
  overflow: hidden;
}

.rfill {
  height: 100%;
  width: 65%;
  background: linear-gradient(to right, rgba(42, 134, 129, .5), var(--teal-lt));
  border-radius: 999px;
}

.rnote {
  font-size: .73rem;
  color: var(--sub);
}

.pills {
  display: flex;
  flex-wrap: wrap;
  gap: .32rem;
}

.pill {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 6px;
  font-size: .72rem;
  color: var(--muted);
  padding: 3px 9px;
}

.lis {
  display: flex;
  flex-direction: column;
  gap: .38rem;
}

.li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .42rem .55rem;
  background: rgba(255, 255, 255, .04);
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, .06);
}

.ln {
  font-size: .76rem;
  color: var(--muted);
}

.lp {
  font-size: .81rem;
  font-weight: 700;
  color: var(--teal-lt);
}

.pfade {
  background: linear-gradient(to bottom, transparent 30%, rgba(11, 24, 34, .95) 100%);
}

.pmore {
  text-align: center;
  padding: .3rem 0 .05rem;
  font-size: .73rem;
  color: var(--sub);
}

/* SECTION LAYOUT */
.sec {
  padding: 5.5rem 0;
}

.sec-alt {
  padding: 5.5rem 0;
  background: var(--bg-alt);
}

.eye {
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--teal-lt);
  margin-bottom: .5rem;
  text-align: center;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -.025em;
  line-height: 1.1;
  margin-bottom: .65rem;
  text-align: center;
}

.sec-sub {
  font-size: .97rem;
  color: var(--muted);
  text-align: center;
  max-width: 520px;
  margin: 0 auto 2.75rem;
}

/* STATS */
.stats {
  padding: 4rem 0;
  background: var(--bg-alt);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.stat-num {
  display: block;
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -.04em;
  color: var(--teal-lt);
  line-height: 1;
  margin-bottom: .45rem;
  font-variant-numeric: tabular-nums;
}

.stat-lbl {
  font-size: .8rem;
  color: var(--muted);
  font-weight: 500;
  line-height: 1.45;
}

/* DISCOVERY */
.disc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .75rem;
}

.disc-card {
  background: rgba(255, 255, 255, .035);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 10px;
  padding: 1.2rem 1.1rem;
  display: flex;
  gap: .85rem;
  align-items: flex-start;
  transition: background .2s, border-color .2s;
}

.disc-card:hover {
  background: rgba(255, 255, 255, .055);
  border-color: rgba(42, 134, 129, .22);
}

.disc-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: var(--teal-bg);
  border: 1px solid rgba(42, 134, 129, .20);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-lt);
  margin-top: .05rem;
  transition: box-shadow .28s, background .28s;
}

.disc-icon svg {
  width: 22px;
  height: 22px;
}

.disc-card:hover .disc-icon {
  background: rgba(42, 134, 129, .17);
  box-shadow: 0 0 0 6px rgba(42, 134, 129, .10), 0 0 22px rgba(42, 134, 129, .22);
}

.disc-card h4 {
  font-size: .88rem;
  font-weight: 700;
  margin-bottom: .25rem;
  letter-spacing: -.01em;
}

.disc-card p {
  font-size: .78rem;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

/* HOW IT WORKS */
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.hc {
  background: rgba(255, 255, 255, .035);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 10px;
  padding: 1.4rem 1.2rem;
  transition: border-color .2s, background .2s;
}

.hc:hover {
  background: var(--surf-md);
  border-color: rgba(42, 134, 129, .22);
}

.hn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 7px;
  background: var(--teal-bg);
  border: 1px solid rgba(42, 134, 129, .22);
  color: var(--teal-lt);
  font-size: .82rem;
  font-weight: 800;
  margin-bottom: .9rem;
}

.hc h3 {
  font-size: .9rem;
  font-weight: 700;
  margin-bottom: .3rem;
  letter-spacing: -.01em;
}

.hc p {
  font-size: .79rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* DEALER CONTRAST BAR */
.dealer-bar {
  background: rgba(42, 134, 129, .07);
  border: 1px solid rgba(42, 134, 129, .18);
  border-radius: 12px;
  padding: 1.5rem 2rem;
  max-width: 760px;
  margin: 0 auto 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.dealer-bar-col {
  text-align: center;
  flex: 1;
}

.dealer-bar-col:nth-child(2) {
  border-left: 1px solid rgba(255, 255, 255, .08);
  border-right: 1px solid rgba(255, 255, 255, .08);
  padding: 0 1.5rem;
}

.dbc-label {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--sub);
  margin-bottom: .35rem;
}

.dbc-val {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -.03em;
  color: var(--text);
}

.dbc-val.dbc-them {
  color: rgba(238, 240, 248, .32);
  text-decoration: line-through;
  text-decoration-color: rgba(238, 240, 248, .18);
}

.dbc-val.dbc-you {
  color: var(--teal-lt);
}

.dbc-note {
  font-size: .72rem;
  color: var(--sub);
  margin-top: .2rem;
}

/* PRICING */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin: 0 auto;
}

.plan {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 14px;
  padding: 1.75rem;
}

.plan-hot {
  background: rgba(42, 134, 129, .08);
  border: 1.5px solid rgba(42, 134, 129, .35);
  position: relative;
}

.plan-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: #fff;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 3px 14px;
  border-radius: 999px;
  white-space: nowrap;
}

.plan-name {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: var(--sub);
  margin-bottom: .6rem;
}

.plan-price {
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1;
  margin-bottom: .25rem;
}

.plan-price sup {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0;
  vertical-align: super;
}

.plan-per {
  font-size: .78rem;
  color: var(--sub);
  margin-bottom: 1.25rem;
}

.plan-items {
  list-style: none;
  margin-bottom: 1.5rem;
}

.plan-items li {
  font-size: .83rem;
  color: var(--muted);
  padding: .28rem 0;
  display: flex;
  align-items: flex-start;
  gap: .5rem;
}

.plan-items li::before {
  content: "\2713";
  color: var(--teal-lt);
  font-weight: 700;
  font-size: .75rem;
  flex-shrink: 0;
  margin-top: .1rem;
}

.plan-items li.dim {
  color: var(--sub);
}

.plan-items li.dim::before {
  content: "\2014";
  color: var(--sub);
}

.plan-btn {
  display: block;
  width: 100%;
  text-align: center;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .14);
  color: var(--text);
  font-size: .88rem;
  font-weight: 700;
  padding: 12px 20px;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: all .2s;
}

.plan-btn:hover {
  background: rgba(255, 255, 255, .12);
}

.plan-btn-hot {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
}

.plan-btn-hot:hover {
  background: var(--teal-d);
  border-color: var(--teal-d);
}

.plan-note {
  font-size: .72rem;
  color: var(--sub);
  text-align: center;
  margin-top: .65rem;
}

/* DATA SOURCES */
.src-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .6rem;
  margin-top: 2rem;
}

.src {
  display: flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 8px;
  padding: .5rem .9rem;
  font-size: .76rem;
  font-weight: 600;
  color: var(--muted);
}

.sdot {
  width: 7px;
  height: 7px;
  background: var(--teal-lt);
  border-radius: 50%;
  flex-shrink: 0;
}

/* PROVINCE */
.prov-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .55rem;
  margin: 2rem 0 .8rem;
}

.prov {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--teal-bg);
  border: 1px solid rgba(42, 134, 129, .28);
  border-radius: 8px;
  color: var(--teal-lt);
  font-size: .83rem;
  font-weight: 800;
  letter-spacing: .06em;
  padding: .5rem 1rem;
}

.prov::before {
  content: "\2713";
  font-size: .66rem;
  opacity: .65;
}

.prov-note {
  text-align: center;
  font-size: .77rem;
  color: var(--sub);
  margin: 0;
  letter-spacing: .01em;
}

/* REVIEWS */
.rev-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.rc {
  background: rgba(255, 255, 255, .035);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 10px;
  padding: 1.2rem;
}

.rstars {
  color: var(--amber);
  font-size: .72rem;
  margin-bottom: .65rem;
  letter-spacing: 2px;
}

.rtext {
  font-size: .81rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: .7rem;
  font-style: italic;
}

.rauth {
  font-size: .73rem;
  font-weight: 600;
  color: var(--sub);
}

/* FAQ */
.faq-list {
  max-width: 660px;
  margin: 2rem auto 0;
}

details {
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 8px;
  margin-bottom: .45rem;
  overflow: hidden;
}

summary {
  padding: .85rem 1.05rem;
  font-size: .86rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  transition: background .2s;
}

summary:hover {
  background: rgba(255, 255, 255, .04);
}

summary::after {
  content: "\2193";
  color: var(--sub);
  font-size: .78rem;
  transition: transform .2s;
  flex-shrink: 0;
  margin-left: .5rem;
}

details[open] summary::after {
  transform: rotate(180deg);
}

summary::-webkit-details-marker {
  display: none;
}

.fans {
  padding: .7rem 1.05rem .95rem;
  font-size: .83rem;
  color: var(--muted);
  line-height: 1.65;
  border-top: 1px solid rgba(255, 255, 255, .06);
}

/* TRUST STRIP */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: .65rem 1.75rem;
  margin-top: 2.25rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, .07);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: .45rem;
  font-size: .78rem;
  color: var(--sub);
  font-weight: 500;
  white-space: nowrap;
}

/* CTA BOTTOM */
.cta {
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
  text-align: center;
  background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(14, 80, 74, .65) 0%, transparent 65%), var(--bg-alt);
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 520px;
  margin: 0 auto;
}

.cta h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.75rem);
  margin-bottom: .65rem;
  letter-spacing: -.03em;
}

.cta-kicker {
  font-size: .85rem;
  color: var(--teal-lt);
  font-weight: 600;
  margin-bottom: .5rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.cta p {
  font-size: .97rem;
  color: var(--muted);
  margin-bottom: 1.75rem;
}

.cta-row {
  display: flex;
  max-width: 420px;
  margin: 0 auto .75rem;
  background: rgba(255, 255, 255, .08);
  border: 2px solid rgba(255, 255, 255, .16);
  border-radius: 12px;
  overflow: hidden;
}

.cta-row:focus-within {
  border-color: rgba(42, 134, 129, .55);
  box-shadow: 0 0 0 3px rgba(42, 134, 129, .12);
}

.cta-inp {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-family: monospace;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 15px 14px;
  min-width: 0;
}

.cta-inp::placeholder {
  color: rgba(238, 240, 248, .22);
  font-size: .76rem;
}

.cta-btn {
  background: var(--teal);
  color: #fff;
  border: none;
  font-size: .92rem;
  font-weight: 800;
  padding: 15px 24px;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background .2s;
}

.cta-btn:hover {
  background: var(--teal-d);
}

.cta-sub {
  font-size: .72rem;
  color: var(--sub);
}

.cta-zinger {
  font-size: .82rem;
  color: var(--teal-lt);
  font-style: italic;
  margin-top: .5rem;
  opacity: .8;
}

/* FOOTER */
footer {
  background: #0b1520;
  border-top: 1px solid rgba(255, 255, 255, .07);
  color: var(--sub);
  padding: 3.5rem 0 0;
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.75fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
}

.foot-brand-col { padding-right: 1rem; }

.fbrand {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -.015em;
  color: #fff;
  text-decoration: none;
  display: block;
  margin-bottom: .6rem;
}

.fbrand em {
  font-style: normal;
  color: var(--teal-lt);
}

.fdesc {
  font-size: .8rem;
  color: rgba(238, 240, 248, .45);
  line-height: 1.65;
  max-width: 230px;
}

.fcol h4 {
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(238, 240, 248, .35);
  margin-bottom: .9rem;
}

.fcol a {
  display: block;
  font-size: .82rem;
  color: rgba(238, 240, 248, .60);
  text-decoration: none;
  margin-bottom: .5rem;
  transition: color .18s;
}

.fcol a:hover {
  color: #fff;
}

.fcopy {
  border-top: 1px solid rgba(255, 255, 255, .07);
  padding: 1.25rem 0;
  font-size: .76rem;
  color: rgba(238, 240, 248, .35);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.fcopy-legal {
  display: flex;
  gap: 1.5rem;
}

.fcopy-legal a {
  font-size: .76rem;
  color: rgba(238, 240, 248, .35);
  text-decoration: none;
  transition: color .18s;
}

.fcopy-legal a:hover { color: rgba(238, 240, 248, .75); }

/* RESPONSIVE */
@media(max-width:991px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 3rem 0 4rem;
  }

  .pcard {
    display: none;
  }

  .how-grid,
  .rev-grid,
  .disc-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }

  .foot-grid {
    grid-template-columns: 1fr 1fr;
  }

  .foot-brand-col {
    grid-column: 1 / -1;
    padding-right: 0;
  }

  .fdesc { max-width: 100%; }

  .fcopy {
    flex-direction: column;
    gap: .75rem;
    text-align: center;
  }

  .fcopy-legal { flex-wrap: wrap; justify-content: center; }

  .dealer-bar-col:nth-child(2) {
    border: none;
    padding: 0;
  }

  .dealer-bar {
    padding: 1.2rem 1.5rem;
    gap: 1rem;
  }
}

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

@media(max-width:620px) {
  h1 {
    font-size: 2.15rem;
  }

  .hero {
    min-height: calc(100dvh - 60px);
  }

  .hero-inner {
    padding: 3rem 0 3.5rem;
    align-items: flex-start;
    padding-top: 3.5rem;
  }

  .how-grid,
  .rev-grid,
  .disc-grid {
    grid-template-columns: 1fr;
  }

  .vin-box {
    flex-direction: column;
    background: transparent;
    border: none;
  }

  .vin-inp {
    background: rgba(255, 255, 255, .07);
    border: 2px solid rgba(255, 255, 255, .16);
    border-radius: 10px;
    margin-bottom: .45rem;
    font-size: 1rem;
  }

  .vin-inp:focus {
    border-color: rgba(42, 134, 129, .55);
    box-shadow: 0 0 0 3px rgba(42, 134, 129, .12);
    outline: none;
  }

  .vin-ct {
    display: none;
  }

  .vin-go {
    border-radius: 10px;
    width: 100%;
    padding: 17px 24px;
    font-size: 1rem;
    justify-content: center;
    display: flex;
  }

  .cta-row {
    flex-direction: column;
    background: transparent;
    border: none;
  }

  .cta-inp {
    background: rgba(255, 255, 255, .08);
    border: 2px solid rgba(255, 255, 255, .15);
    border-radius: 10px;
    margin-bottom: .45rem;
    padding: 14px;
  }

  .cta-btn {
    border-radius: 10px;
    width: 100%;
    padding: 16px;
  }

  .foot-grid {
    grid-template-columns: 1fr;
  }

  .fdesc {
    max-width: 100%;
  }

  .feat-checks {
    grid-template-columns: 1fr;
  }
}

@media(max-width:575px) {
  .stats-grid {
    grid-template-columns: 1fr;
    max-width: 260px;
    gap: 2.25rem;
  }
}