/* Service Advisor League — marketing landing. Brand: black + SAL blue + gold. */
:root {
  --bg: #000000;
  --surface: #0e0e10;
  --surface-alt: #161618;
  --surface-hi: #1f1f22;
  --border: #2a2a2e;
  --blue: #1e7bf5;
  --blue-dim: #12407e;
  --blue-glow: rgba(30, 123, 245, 0.35);
  --text: #f5f6f7;
  --text-dim: #a7abb2;
  --text-faint: #6b6f76;
  --green: #27c28a;
  --gold: #e0a92e;
  --gold-bright: #f5d061;
  --purple: #b86bff;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial,
    sans-serif;
  --maxw: 1180px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.nav.scrolled {
  border-bottom-color: var(--border);
  background: rgba(0, 0, 0, 0.82);
}
.nav__logo {
  height: 44px;
  width: auto;
}
@media (max-width: 560px) {
  .nav__logo {
    height: 36px;
  }
}
.nav__right {
  display: flex;
  align-items: center;
  gap: 18px;
}
.nav__link {
  color: var(--text-dim);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.3px;
  transition: color 0.2s ease;
}
.nav__link:hover {
  color: var(--text);
}
@media (max-width: 720px) {
  .nav__link {
    display: none;
  }
}
/* Login — a plain text link to the app, kept visible on mobile (existing
   users need it everywhere). NOT a .nav__link, so the mobile-hide above
   doesn't apply. */
.nav__login {
  color: var(--text-dim);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.3px;
  transition: color 0.2s ease;
}
.nav__login:hover {
  color: var(--text);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.3px;
  padding: 13px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.25s ease, background 0.2s ease;
  white-space: nowrap;
}
.btn--primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 8px 30px var(--blue-glow);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 44px var(--blue-glow);
}
.btn--ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--border);
  color: var(--text);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}
.btn--sm {
  padding: 9px 16px;
  font-size: 13px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 160px 0 90px;
  overflow: hidden;
}
.hero__glow {
  position: absolute;
  top: -160px;
  left: 50%;
  transform: translateX(-50%);
  width: 1100px;
  height: 760px;
  background: radial-gradient(
    ellipse at center,
    rgba(30, 123, 245, 0.28),
    rgba(30, 123, 245, 0.06) 42%,
    transparent 68%
  );
  pointer-events: none;
  filter: blur(8px);
}
.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 50px;
  }
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 2.5px;
  color: var(--blue);
  text-transform: uppercase;
  padding: 7px 14px;
  border: 1px solid var(--blue-dim);
  border-radius: 999px;
  background: rgba(30, 123, 245, 0.08);
  margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(38px, 6vw, 66px);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: -1.5px;
  margin-bottom: 22px;
}
.hero h1 .accent {
  color: var(--blue);
  font-style: italic;
}
.hero__sub {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--text-dim);
  max-width: 540px;
  margin-bottom: 32px;
}
@media (max-width: 900px) {
  .hero__sub {
    margin-left: auto;
    margin-right: auto;
  }
}
.hero__cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
@media (max-width: 900px) {
  .hero__cta {
    justify-content: center;
  }
}
.hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 34px;
}
@media (max-width: 900px) {
  .hero__pills {
    justify-content: center;
  }
}
.hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text-dim);
}
.hero__pill .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 10px var(--blue);
}
.hero__phone {
  display: flex;
  justify-content: center;
}

/* ---------- Phone frame ---------- */
.phone {
  position: relative;
  width: 300px;
  flex: 0 0 auto;
  border-radius: 46px;
  padding: 10px;
  background: linear-gradient(160deg, #2a2a2e, #0c0c0e 60%);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(255, 255, 255, 0.05),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}
.phone::after {
  /* glow halo */
  content: "";
  position: absolute;
  inset: -40px;
  border-radius: 70px;
  background: radial-gradient(ellipse at center, var(--halo, var(--blue-glow)), transparent 70%);
  z-index: -1;
  opacity: 0.7;
}
.phone img {
  width: 100%;
  border-radius: 38px;
  display: block;
}
.phone--lg {
  width: 330px;
}

/* Square "social post" card — the actual share-ready output, not a phone. */
.postcard {
  position: relative;
  width: min(400px, 86vw);
  flex: 0 0 auto;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(255, 255, 255, 0.06);
}
.postcard::after {
  content: "";
  position: absolute;
  inset: -40px;
  border-radius: 60px;
  background: radial-gradient(ellipse at center, var(--halo, var(--blue-glow)), transparent 70%);
  z-index: -1;
  opacity: 0.7;
}
.postcard img {
  width: 100%;
  display: block;
  border-radius: 26px;
}

/* ---------- Section scaffolding ---------- */
section {
  position: relative;
}
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}
.kicker {
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}
.section-head h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  letter-spacing: -0.8px;
  line-height: 1.08;
}
.section-head p {
  color: var(--text-dim);
  font-size: 17px;
  margin-top: 16px;
}

/* ---------- Feature rows ---------- */
.features {
  padding: 40px 0 30px;
  display: flex;
  flex-direction: column;
  gap: 64px;
}
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.feature:nth-child(even) .feature__media {
  order: 2;
}
@media (max-width: 880px) {
  .feature {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }
  .feature:nth-child(even) .feature__media {
    order: 0;
  }
  .features {
    gap: 90px;
  }
}
.feature__media {
  display: flex;
  justify-content: center;
}
.feature__icon {
  width: 52px;
  height: 52px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  background: rgba(30, 123, 245, 0.12);
  border: 1px solid var(--blue-dim);
  margin-bottom: 22px;
  font-size: 24px;
}
@media (max-width: 880px) {
  .feature__icon {
    margin-left: auto;
    margin-right: auto;
  }
}
.feature h3 {
  font-size: clamp(24px, 3.2vw, 34px);
  font-weight: 900;
  letter-spacing: -0.5px;
  line-height: 1.1;
  margin-bottom: 16px;
}
.feature p {
  color: var(--text-dim);
  font-size: 17px;
  max-width: 480px;
}
@media (max-width: 880px) {
  .feature p {
    margin-left: auto;
    margin-right: auto;
  }
}
.feature__list {
  list-style: none;
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.feature__list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: var(--text);
  font-weight: 600;
  font-size: 15.5px;
}
@media (max-width: 880px) {
  .feature__list {
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }
}
.feature__list .check {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(39, 194, 138, 0.15);
  color: var(--green);
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 900;
  margin-top: 1px;
}

/* ---------- Rubric / stat band ---------- */
.band {
  margin: 0;
  padding: 52px 0;
  background: linear-gradient(180deg, var(--surface), #000);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.statgrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
@media (max-width: 760px) {
  .statgrid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 20px;
  }
}
.stat__num {
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1;
  background: linear-gradient(180deg, #fff, var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat__num.gold {
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat__label {
  margin-top: 8px;
  color: var(--text-dim);
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 0.4px;
}

/* ---------- Tiers ---------- */
.tiers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}
.tier {
  padding: 9px 18px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 13.5px;
  letter-spacing: 1px;
  border: 1px solid var(--border);
  background: var(--surface-alt);
}

/* ---------- Final CTA ---------- */
.cta {
  position: relative;
  text-align: center;
  padding: 68px 0 84px;
  overflow: hidden;
}
.cta__glow {
  position: absolute;
  bottom: -260px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(
    ellipse at center,
    rgba(30, 123, 245, 0.3),
    transparent 65%
  );
  pointer-events: none;
}
.cta h2 {
  position: relative;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1.05;
  margin-bottom: 20px;
}
.cta p {
  position: relative;
  color: var(--text-dim);
  font-size: 18px;
  max-width: 520px;
  margin: 0 auto 34px;
}
.cta__btns {
  position: relative;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.store {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--surface-alt);
  color: var(--text-dim);
  font-weight: 700;
  font-size: 14px;
  cursor: default;
}
.store small {
  display: block;
  font-size: 10.5px;
  letter-spacing: 1px;
  color: var(--text-faint);
  text-transform: uppercase;
}

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
}
.footer img {
  height: 26px;
}
.footer__copy {
  color: var(--text-faint);
  font-size: 13px;
}

/* ---------- Season flag ---------- */
.seasonflag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
  padding: 10px 16px;
  border-radius: 12px;
  background: linear-gradient(100deg, rgba(245, 208, 97, 0.12), rgba(30, 123, 245, 0.1));
  border: 1px solid rgba(224, 169, 46, 0.4);
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: 0.3px;
  color: var(--text);
}
.seasonflag .live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold-bright);
}
.seasonflag .live::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px var(--green);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}
@media (max-width: 900px) {
  .seasonflag {
    text-align: left;
  }
}

/* ---------- Setup note ---------- */
.setup-note {
  text-align: center;
  color: var(--text-dim);
  font-size: 14px;
  font-weight: 700;
  margin-top: 18px;
}
.setup-note b {
  color: var(--green);
}

/* ---------- Positioning banner ---------- */
.firstband {
  text-align: center;
  padding: 52px 0;
}
.firstband h2 {
  font-size: clamp(28px, 4.4vw, 46px);
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1.1;
  max-width: 900px;
  margin: 0 auto;
}
.firstband h2 .accent {
  color: var(--blue);
  font-style: italic;
}
.firstband p {
  color: var(--text-dim);
  font-size: 18px;
  margin-top: 18px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Rank ladder ---------- */
.ladder {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 860px;
  margin: 0 auto;
}
.rank {
  display: grid;
  grid-template-columns: 150px 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  border-radius: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.rank:hover {
  transform: translateX(4px);
}
.rank--prize {
  background: linear-gradient(100deg, rgba(245, 208, 97, 0.06), var(--surface) 55%);
  border-color: rgba(224, 169, 46, 0.35);
}
.rank__name {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 17px;
  letter-spacing: 0.4px;
}
.rank__dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  flex: 0 0 auto;
}
/* Tier emblems — the same ascending ladder the app uses (shield → medal →
   crown → trophy). Colored per tier via inline `color`. */
.rank__emblem {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.lbtag svg {
  width: 11px;
  height: 11px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin-right: 3px;
  vertical-align: -1px;
}
.rank__req {
  color: var(--text-dim);
  font-size: 14.5px;
  font-weight: 600;
}
.rank__req b {
  color: var(--text);
  font-weight: 800;
}
.rank__tag {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.2px;
  padding: 6px 11px;
  border-radius: 999px;
  white-space: nowrap;
}
.rank__tag--prize {
  color: #0a0a0a;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
}
.rank__tag--base {
  color: var(--text-faint);
  border: 1px solid var(--border);
}
@media (max-width: 720px) {
  .rank {
    grid-template-columns: 1fr;
    gap: 8px;
    text-align: left;
  }
  .rank__tag {
    justify-self: start;
  }
}

/* ---------- Prizes ---------- */
.prizes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 860px;
  margin: 40px auto 0;
}
@media (max-width: 760px) {
  .prizes {
    grid-template-columns: repeat(2, 1fr);
  }
}
.prize {
  text-align: center;
  padding: 26px 16px;
  border-radius: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
}
.prize__ico {
  font-size: 30px;
  margin-bottom: 10px;
}
.prize__t {
  font-weight: 800;
  font-size: 15px;
}
.prize__s {
  color: var(--text-faint);
  font-size: 12.5px;
  margin-top: 4px;
}

/* ---------- National Leaderboard ---------- */
.board {
  max-width: 720px;
  margin: 0 auto;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: var(--surface);
  overflow: hidden;
}
.board__row {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 16px 22px;
  border-bottom: 1px solid var(--border);
}
.board__row:last-child {
  border-bottom: none;
}
.board__rank {
  font-weight: 900;
  font-size: 20px;
  font-variant-numeric: tabular-nums;
  text-align: center;
}
.board__name {
  font-weight: 800;
  font-size: 16px;
}
.board__shop {
  color: var(--text-faint);
  font-size: 13px;
  font-weight: 600;
}
.board__pts {
  font-weight: 900;
  font-size: 18px;
  font-variant-numeric: tabular-nums;
  color: var(--blue);
}
.board__tag {
  display: inline-block;
  margin-left: 8px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1px;
  padding: 3px 8px;
  border-radius: 999px;
  vertical-align: middle;
}
.board__note {
  text-align: center;
  color: var(--text-faint);
  font-size: 13px;
  margin-top: 18px;
}

/* ---------- Pricing ---------- */
.pricing {
  max-width: 560px;
  margin: 0 auto;
}
.plan {
  border-radius: 24px;
  border: 1px solid var(--blue-dim);
  background: linear-gradient(180deg, rgba(30, 123, 245, 0.07), var(--surface));
  padding: 44px 38px;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}
.plan__badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  padding: 6px 14px;
  border: 1px solid var(--blue-dim);
  border-radius: 999px;
  margin-bottom: 20px;
}
.plan__price {
  font-size: clamp(36px, 6vw, 52px);
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1;
}
.plan__price span {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dim);
}
.plan__sub {
  color: var(--text-dim);
  margin-top: 10px;
  font-size: 15px;
}
.plan__list {
  list-style: none;
  text-align: left;
  margin: 28px auto 30px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.plan__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 15.5px;
}
.plan__list .check {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(39, 194, 138, 0.15);
  color: var(--green);
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 900;
}

/* ---------- SVG icons (replaces emoji for a cleaner look) ---------- */
.ico {
  width: 1em;
  height: 1em;
  display: inline-block;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  vertical-align: middle;
}
.feature__icon { color: var(--blue); }
.prize__ico { color: var(--gold); }
.bonus__ico { color: var(--gold-bright); }
.setup-note .ico { color: var(--green); margin-right: 2px; }
.store .ico { color: var(--text-dim); }

/* ---------- Bonus stack (pricing card) ---------- */
.plan__bonus-head {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px dashed var(--border);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--gold-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 18px;
}
.plan__bonuses {
  list-style: none;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.bonus {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 13px 15px;
  border-radius: 13px;
  background: linear-gradient(100deg, rgba(245, 208, 97, 0.07), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(224, 169, 46, 0.25);
}
.bonus__ico {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  font-size: 19px;
  background: rgba(245, 208, 97, 0.12);
  border: 1px solid rgba(224, 169, 46, 0.3);
}
.bonus__body {
  flex: 1;
}
.bonus__title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 15px;
  flex-wrap: wrap;
}
.bonus__pill {
  font-size: 9.5px;
  font-weight: 900;
  letter-spacing: 1px;
  color: #0a0a0a;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  padding: 2px 7px;
  border-radius: 999px;
}
.bonus__desc {
  color: var(--text-dim);
  font-size: 13px;
  line-height: 1.45;
  margin-top: 3px;
}
/* Value-stack tag — the worth of each included bonus, right-aligned. */
.bonus__val {
  flex: 0 0 auto;
  align-self: center;
  text-align: right;
  font-weight: 900;
  font-size: 15px;
  color: var(--gold-bright);
  font-variant-numeric: tabular-nums;
  line-height: 1.05;
}
.bonus__val small {
  display: block;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--text-faint);
  text-transform: uppercase;
}
/* Word value (e.g. the guarantee) — fits the same slot as the $ tags. */
.bonus__val--word {
  font-size: 13px;
  letter-spacing: 0.6px;
  white-space: nowrap;
}

/* ---------- Leaderboard page ---------- */
.lb-hero {
  position: relative;
  padding: 130px 0 80px;
  overflow: hidden;
}
.lb-title {
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1.04;
}
.lb-tagline {
  color: var(--text-dim);
  font-size: 17px;
  margin-top: 14px;
  max-width: 620px;
}
.lb-count {
  display: inline-block;
  margin-left: 6px;
  color: var(--blue);
  font-weight: 800;
}
.lb-podium-wrap {
  display: none;
  margin: 44px 0 30px;
}
.lb-podium {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 18px;
  max-width: 560px;
  margin: 0 auto;
}
.lbp-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lbp-name {
  font-weight: 800;
  font-size: 14px;
  margin-bottom: 6px;
  text-align: center;
}
.lbp-pts {
  font-weight: 900;
  font-size: 18px;
  font-variant-numeric: tabular-nums;
  margin-bottom: 8px;
}
.lbp-av {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid;
  background: var(--surface-hi);
  margin-bottom: 8px;
}
.lbp-opps {
  color: var(--text-faint);
  font-size: 11.5px;
  font-weight: 700;
  margin-bottom: 8px;
}
.lbp-bar {
  width: 88%;
  background: var(--surface);
  border-top: 3px solid;
  border-radius: 10px 10px 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 4px;
}
.lbp-place {
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
}
.lb-search {
  width: 100%;
  max-width: 720px;
  margin: 10px auto 22px;
  display: none;
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-size: 15px;
  font-family: var(--font);
  outline: none;
}
.lb-search::placeholder {
  color: var(--text-faint);
}
.lb-search:focus {
  border-color: var(--blue-dim);
}
.lb-status {
  color: var(--text-dim);
  font-size: 15px;
  padding: 30px 0;
  text-align: center;
}
.lb-list {
  max-width: 720px;
  margin: 0 auto;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--surface);
  overflow: hidden;
}
.lbrow {
  display: grid;
  grid-template-columns: 40px 42px 1fr auto;
  align-items: center;
  gap: 13px;
  padding: 12px 18px;
  border-bottom: 1px solid var(--border);
}
.lbrow:last-child {
  border-bottom: none;
}
.lbrow__rank {
  font-weight: 900;
  font-size: 17px;
  font-variant-numeric: tabular-nums;
  color: var(--text-faint);
  text-align: center;
}
.lbrow__av {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--surface-hi);
  border: 1px solid var(--border);
}
.lbrow__name {
  font-weight: 800;
  font-size: 15.5px;
}
.lbrow__meta {
  color: var(--text-faint);
  font-size: 12.5px;
  font-weight: 600;
  margin-top: 2px;
}
.lbrow__pts {
  font-weight: 900;
  font-size: 16px;
  font-variant-numeric: tabular-nums;
  color: var(--blue);
}
.lbtag {
  display: inline-block;
  margin-left: 8px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.8px;
  padding: 2px 7px;
  border-radius: 999px;
  vertical-align: middle;
}
/* On the podium the badge stacks under the place number — no inline margin. */
.lbtag--podium {
  margin-left: 0;
  display: inline-flex;
  align-items: center;
  gap: 3px;
}
.lb-empty {
  padding: 30px 20px;
  text-align: center;
  color: var(--text-faint);
}

/* ---------- Small-screen polish ---------- */
@media (max-width: 480px) {
  .wrap { padding: 0 18px; }
  .hero { padding: 130px 0 60px; }
  .phone, .phone--lg { width: min(300px, 78vw); }
  .plan { padding: 30px 18px; }
  .bonus { padding: 12px 12px; gap: 11px; }
  .bonus__ico { width: 34px; height: 34px; }
  .features { gap: 52px; }
  .band { margin: 0; padding: 40px 0; }
  .cta { padding: 56px 0 72px; }
  /* Leaderboard density */
  .lb-podium { gap: 10px; }
  .lbp-av { width: 52px; height: 52px; }
  .lbp-name { font-size: 12.5px; }
  .lbp-pts { font-size: 16px; }
  .lbrow { grid-template-columns: 30px 38px 1fr auto; gap: 10px; padding: 12px 14px; }
  .lbrow__meta { font-size: 11.5px; }
  .lbrow__pts { font-size: 15px; }
  .lb-title { font-size: 34px; }
}

/* ---------- Performance Guarantee ---------- */
.gtee {
  padding: 60px 0;
}
.gtee__card {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  border-radius: 24px;
  border: 1px solid rgba(39, 194, 138, 0.4);
  background: linear-gradient(180deg, rgba(39, 194, 138, 0.07), var(--surface));
  padding: 56px 40px 44px;
  text-align: center;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.5);
}
.gtee__seal {
  position: absolute;
  top: -36px;
  left: 50%;
  transform: translateX(-50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  gap: 0;
  background: radial-gradient(circle at 50% 35%, #1a4a38, #0c0c0e);
  border: 2px solid var(--green);
  box-shadow: 0 0 26px rgba(39, 194, 138, 0.5);
  color: var(--green);
}
.gtee__seal svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.gtee__card h2 {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 900;
  letter-spacing: -0.8px;
  line-height: 1.1;
  margin: 6px auto 16px;
  max-width: 620px;
}
.gtee__card h2 .accent {
  color: var(--green);
}
.gtee__card > p {
  color: var(--text-dim);
  font-size: 17px;
  max-width: 560px;
  margin: 0 auto 26px;
}
.gtee__list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 14px;
  max-width: 640px;
  margin: 0 auto 30px;
}
.gtee__list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text);
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 14px;
}
.gtee__list li::before {
  content: "✓";
  color: var(--green);
  font-weight: 900;
}
.gtee__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: center;
}
.gtee__link {
  color: var(--green);
  font-weight: 800;
  font-size: 14.5px;
}
.gtee__link:hover {
  text-decoration: underline;
}

/* ---------- Guarantee terms page ---------- */
.terms {
  max-width: 760px;
  margin: 0 auto;
  padding: 130px 0 90px;
}
.terms h1 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1.05;
}
.terms .lede {
  color: var(--text-dim);
  font-size: 18px;
  margin: 16px 0 8px;
}
.terms h2 {
  font-size: 22px;
  font-weight: 900;
  margin: 40px 0 12px;
  letter-spacing: -0.3px;
}
.terms p {
  color: var(--text-dim);
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 12px;
}
.terms ol,
.terms ul {
  color: var(--text-dim);
  font-size: 16px;
  line-height: 1.6;
  padding-left: 22px;
  margin-bottom: 12px;
}
.terms li {
  margin-bottom: 9px;
}
.terms li b {
  color: var(--text);
}
.terms .fineprint {
  color: var(--text-faint);
  font-size: 13px;
  line-height: 1.6;
  border-top: 1px solid var(--border);
  margin-top: 36px;
  padding-top: 20px;
}
.terms .docmeta {
  color: var(--text-faint);
  font-size: 13.5px;
  line-height: 1.6;
  margin: 4px 0 0;
}
.terms h3 {
  font-size: 16.5px;
  font-weight: 800;
  color: var(--text);
  margin: 22px 0 8px;
  letter-spacing: -0.2px;
}
.terms .toc {
  list-style: none;
  padding: 18px 22px;
  margin: 26px 0 10px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
}
.terms .toc li {
  margin-bottom: 7px;
  color: var(--text-faint);
  font-size: 14.5px;
}
.terms .toc a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
}
.terms .toc a:hover {
  color: var(--blue);
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
  will-change: opacity, transform;
}
.reveal.in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  html {
    scroll-behavior: auto;
  }
}

/* ---------- Vacation bonus card (clickable) + video modal ---------- */
.bonus--tap {
  cursor: pointer;
  transition: transform 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}
.bonus--tap:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
  background: linear-gradient(100deg, rgba(245, 208, 97, 0.14), rgba(255, 255, 255, 0.03));
}
.bonus__cue {
  color: var(--gold-bright);
  white-space: nowrap;
}

/* ---------- GOAT spotlight ---------- */
.goat {
  position: relative;
  max-width: 760px;
  margin: 56px auto 0;
  padding: 42px 34px 34px;
  text-align: center;
  border-radius: 22px;
  border: 1px solid rgba(224, 169, 46, 0.4);
  background: radial-gradient(120% 120% at 50% 0%, rgba(245, 208, 97, 0.12), rgba(14, 14, 16, 0.6) 60%);
  overflow: hidden;
}
.goat__halo {
  position: absolute;
  top: -90px;
  left: 50%;
  transform: translateX(-50%);
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(245, 208, 97, 0.22), transparent 70%);
  pointer-events: none;
}
.goat__emblem {
  position: relative;
  width: 74px;
  height: 74px;
  margin: 0 auto 16px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  color: #0a0a0a;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  box-shadow: 0 12px 34px rgba(224, 169, 46, 0.4);
}
.goat__emblem .ico {
  width: 38px;
  height: 38px;
}
.goat__kicker {
  position: relative;
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 8px;
}
.goat__title {
  position: relative;
  font-size: clamp(30px, 5vw, 46px);
  font-weight: 900;
  letter-spacing: -0.5px;
  line-height: 1.05;
  background: linear-gradient(180deg, #ffffff, var(--gold-bright));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.goat__lede {
  position: relative;
  color: var(--text-dim);
  font-size: 16px;
  line-height: 1.65;
  max-width: 600px;
  margin: 14px auto 0;
}
.goat__lede b {
  color: var(--text);
}
.goat__reward {
  position: relative;
  display: flex;
  align-items: center;
  gap: 11px;
  justify-content: center;
  margin: 22px auto 0;
  max-width: 580px;
  color: var(--gold-bright);
  font-weight: 700;
  font-size: 14.5px;
  text-align: left;
}
.goat__reward .ico {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
}
.goat4life {
  position: relative;
  margin-top: 26px;
  padding: 22px 24px;
  border-radius: 16px;
  border: 1px solid rgba(245, 208, 97, 0.45);
  background: rgba(245, 208, 97, 0.06);
  text-align: center;
}
.goat4life__tag {
  display: inline-block;
  font-weight: 900;
  letter-spacing: 1px;
  font-size: 13px;
  color: #0a0a0a;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.goat4life p {
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}
.goat4life p b {
  color: var(--gold-bright);
}
@media (max-width: 560px) {
  .goat {
    padding: 32px 18px 26px;
  }
  .goat__reward {
    flex-direction: column;
    text-align: center;
  }
}

.vmodal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 20px;
}
.vmodal[hidden] {
  display: none;
}
.vmodal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
}
.vmodal__box {
  position: relative;
  width: min(720px, 100%);
  max-height: 92vh;
  overflow: auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.7);
}
.vmodal__close {
  position: absolute;
  top: 10px;
  right: 12px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}
.vmodal__close:hover {
  background: rgba(0, 0, 0, 0.85);
}
.vmodal__video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}
.vmodal__video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.vmodal__copy {
  padding: 22px 24px 26px;
  text-align: center;
}
.vmodal__kicker {
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 8px;
}
.vmodal__copy h3 {
  font-size: clamp(22px, 4vw, 30px);
  font-weight: 900;
  letter-spacing: -0.5px;
  line-height: 1.1;
}
.vmodal__copy p {
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.6;
  margin: 12px auto 20px;
  max-width: 520px;
}
