/* ─────────────────────────────────────────────────────────────────
   TipsterAI Landing Page — Styles
   Brand: #0B4F9E (blue) · #0E9180 (teal)
   Font: Plus Jakarta Sans  |  Icons: Lucide
   ───────────────────────────────────────────────────────────────── */

/* ── Reset & base ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:        #0B4F9E;
  --blue-light:  #1a6fd4;
  --blue-dim:    rgba(11, 79, 158, 0.15);
  --teal:        #0E9180;
  --teal-light:  #13b09c;
  --teal-dim:    rgba(14, 145, 128, 0.15);
  --dark:        #07090f;
  --dark-2:      #0d1117;
  --dark-3:      #141921;
  --dark-4:      #1c2333;
  --border:      rgba(255,255,255,.08);
  --text-1:      #f0f4ff;
  --text-2:      #a0aec0;
  --text-3:      #64748b;
  --radius:      16px;
  --radius-sm:   10px;
  --transition:  .25s cubic-bezier(.4,0,.2,1);
}

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

body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  background: var(--dark);
  color: var(--text-1);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

/* ── Lucide icon base — Lucide renders <svg> inside the <i> tag ─ */
[data-lucide] { display: inline-flex; }

/* ── Utility ──────────────────────────────────────────────────── */
.gradient-text {
  background: linear-gradient(135deg, var(--blue-light) 0%, var(--teal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hidden { display: none !important; }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: .6rem 1.25rem;
  border-radius: 8px;
  font-family: inherit;
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: linear-gradient(135deg, var(--blue) 0%, var(--teal) 100%);
  color: #fff;
  box-shadow: 0 0 24px rgba(11,79,158,.35);
}
.btn--primary:hover {
  box-shadow: 0 0 36px rgba(11,79,158,.6);
  transform: translateY(-1px);
}

.btn--secondary {
  background: var(--dark-3);
  color: var(--text-1);
  border: 1px solid var(--border);
}
.btn--secondary:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--text-2);
  border: 1.5px solid var(--border);
}
.btn--ghost:hover {
  border-color: rgba(255,255,255,.2);
  color: var(--text-1);
}

.btn--lg { padding: .85rem 1.75rem; font-size: 1rem; border-radius: 10px; }
.btn--full { width: 100%; justify-content: center; padding: .9rem; }

/* Button icon size */
.btn-icon svg { width: 16px; height: 16px; }

/* ── Logo image (mobile app icon) ─────────────────────────────── */
.logo-img {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}

/* ── Store download buttons ──────────────────────────────────── */
.store-buttons {
  display: flex;
  gap: .85rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 3rem;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  padding: .7rem 1.3rem;
  border-radius: 12px;
  cursor: pointer;
  border: 1.5px solid var(--border);
  font-family: inherit;
  text-align: left;
  transition: var(--transition);
  text-decoration: none;
  color: var(--text-1);
  min-width: 160px;
}

.store-btn--android {
  background: var(--dark-3);
}
.store-btn--android:hover {
  border-color: rgba(14,145,128,.5);
  background: rgba(14,145,128,.07);
  transform: translateY(-2px);
}

.store-btn--ios {
  background: var(--dark-3);
}
.store-btn--ios:hover {
  border-color: rgba(255,255,255,.2);
  background: rgba(255,255,255,.04);
  transform: translateY(-2px);
}

.store-btn__icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--text-2);
}
.store-btn--android .store-btn__icon { color: var(--teal-light); }
.store-btn--ios .store-btn__icon     { color: var(--text-1); }

.store-btn__text { display: flex; flex-direction: column; gap: 1px; }
.store-btn__sub  { font-size: .68rem; color: var(--text-3); font-weight: 500; }
.store-btn__name { font-size: .92rem; font-weight: 700; }

.store-btn--sm { min-width: 140px; padding: .6rem 1.1rem; }

/* ── Contact section extras ──────────────────────────────────── */
.form__intro {
  font-size: .85rem;
  color: var(--text-3);
  margin-top: -.3rem;
}

/* Input with icon prefix */
.input-wrap {
  position: relative;
}

.input-icon {
  position: absolute;
  left: .85rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  display: grid;
  place-items: center;
}

.input-icon svg {
  width: 15px;
  height: 15px;
  color: var(--text-3);
  stroke-width: 2;
}

.input-wrap input {
  padding-left: 2.5rem;
}

/* Stores inside contact section left column */
.contact__stores { margin-top: 2rem; }

.contact__stores-label {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: .75rem;
}

.contact__store-row {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
}

/* ── Coming soon modal ───────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.75);
  backdrop-filter: blur(8px);
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  animation: fade-in .2s ease;
}

.modal-overlay.hidden {
  display: none !important;
}

@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }

.modal {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  max-width: 420px;
  width: 100%;
  text-align: center;
  position: relative;
  animation: slide-up .25s cubic-bezier(.34,1.56,.64,1);
  box-shadow: 0 24px 80px rgba(0,0,0,.6);
}

@keyframes slide-up {
  from { opacity: 0; transform: translateY(20px) scale(.97); }
  to   { opacity: 1; transform: none; }
}

.modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--dark-4);
  border: 1px solid var(--border);
  border-radius: 8px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  cursor: pointer;
  color: var(--text-2);
  transition: var(--transition);
}
.modal__close:hover { color: var(--text-1); border-color: rgba(255,255,255,.15); }
.modal__close svg { width: 16px; height: 16px; }

.modal__logo {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  margin: 0 auto 1.1rem;
  display: block;
}

.modal__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(14,145,128,.12);
  border: 1px solid rgba(14,145,128,.3);
  color: var(--teal-light);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .3rem .8rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.modal__title {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: .65rem;
  letter-spacing: -.02em;
}

.modal__sub {
  font-size: .88rem;
  color: var(--text-2);
  line-height: 1.65;
  margin-bottom: 1.75rem;
}

.modal__actions {
  display: flex;
  gap: .75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.modal__notify {
  font-size: .78rem;
  color: var(--text-3);
}
.modal__notify a { color: var(--teal-light); text-decoration: underline; text-underline-offset: 2px; }

/* ── Footer store links ──────────────────────────────────────── */
.footer__stores {
  display: flex;
  gap: .75rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.footer-store-link {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .75rem;
  color: var(--text-3);
  background: var(--dark-4);
  border: 1px solid var(--border);
  border-radius: 7px;
  padding: .35rem .7rem;
  font-family: inherit;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.footer-store-link:hover { color: var(--text-1); border-color: rgba(255,255,255,.15); }

/* ── Nav ────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 0;
  transition: background var(--transition), backdrop-filter var(--transition), border-color var(--transition);
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(7,9,15,.85);
  backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
}

.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -.02em;
  flex-shrink: 0;
}

.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--teal) 100%);
  display: grid;
  place-items: center;
  font-size: .9rem;
  font-weight: 800;
  color: #fff;
}

.logo-text { color: var(--text-1); }

.nav__links {
  display: flex;
  gap: 2rem;
  margin-left: auto;
}

.nav__links a {
  font-size: .9rem;
  color: var(--text-2);
  transition: color var(--transition);
}
.nav__links a:hover { color: var(--text-1); }

.nav__cta { display: flex; gap: .75rem; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-1);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: var(--dark-2);
  border-bottom: 1px solid var(--border);
  z-index: 99;
  padding: 1.5rem;
}
.mobile-menu.open { display: block; }
.mobile-menu li { padding: .6rem 0; border-bottom: 1px solid var(--border); }
.mobile-menu a { color: var(--text-2); font-size: 1rem; }

/* ── Hero ────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 7rem 1.5rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero__bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 40%, transparent 100%);
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}
.hero__glow--blue {
  width: 600px; height: 600px;
  background: rgba(11,79,158,.25);
  top: -200px; left: -100px;
}
.hero__glow--teal {
  width: 500px; height: 500px;
  background: rgba(14,145,128,.2);
  top: -100px; right: -100px;
}

.hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--dark-4);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: .35rem .9rem;
  font-size: .8rem;
  font-weight: 600;
  color: var(--text-2);
  margin-bottom: 1.75rem;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 8px var(--teal);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .6; transform: scale(.8); }
}

.hero__headline {
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.03em;
  margin-bottom: 1.5rem;
}

.hero__sub {
  max-width: 600px;
  color: var(--text-2);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 4rem;
}

/* ── Tipster cards in hero ─────────────────────────────────── */
.hero__cards {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  max-width: 900px;
}

.tipster-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  width: 280px;
  backdrop-filter: blur(10px);
  transition: transform var(--transition), border-color var(--transition);
}

.tipster-card:hover { transform: translateY(-4px); border-color: rgba(255,255,255,.15); }

.tipster-card--featured {
  border-color: rgba(11,79,158,.4);
  box-shadow: 0 0 32px rgba(11,79,158,.2), inset 0 1px 0 rgba(255,255,255,.05);
}

.tc__header {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1rem;
}

.tc__avatar {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--av-color, #333);
  display: grid;
  place-items: center;
  font-size: .75rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.tc__name { font-size: .9rem; font-weight: 700; }

/* Badge with Lucide icon */
.tc__badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: .7rem;
  font-weight: 600;
  margin-top: 3px;
}

.tc__badge-icon svg {
  width: 11px;
  height: 11px;
  stroke-width: 2.5;
}

.badge--hot { color: #f97316; }
.badge--hot .tc__badge-icon svg { color: #f97316; }
.badge--stable { color: var(--teal); }
.badge--stable .tc__badge-icon svg { color: var(--teal); }

.tc__score {
  margin-left: auto;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--blue-light);
  line-height: 1;
}
.tc__score span { font-size: .9rem; opacity: .7; }

.tc__bars { display: flex; flex-direction: column; gap: .55rem; margin-bottom: 1rem; }

.tc__bar-row {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .72rem;
}
.tc__bar-row span { color: var(--text-3); width: 72px; flex-shrink: 0; }
.tc__bar-row b { color: var(--text-2); font-size: .7rem; margin-left: auto; }

.tc__bar {
  flex: 1;
  height: 4px;
  background: var(--dark-4);
  border-radius: 100px;
  overflow: hidden;
}

.tc__fill {
  height: 100%;
  width: 0;
  background: var(--c, var(--blue));
  border-radius: 100px;
  animation: bar-grow .8s ease forwards;
  animation-delay: .3s;
}

@keyframes bar-grow { to { width: var(--w, 0%); } }

.tc__footer {
  display: flex;
  justify-content: space-between;
  font-size: .72rem;
  color: var(--text-3);
  border-top: 1px solid var(--border);
  padding-top: .75rem;
}

.confidence { font-weight: 600; }
.confidence.high { color: var(--teal); }
.confidence.medium { color: #f59e0b; }

/* Stat pills */
.stat-pill {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: .85rem 1.1rem;
  display: flex;
  align-items: center;
  gap: .75rem;
  align-self: flex-start;
}

.stat-pill__icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--blue-dim), var(--teal-dim));
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.stat-pill__icon svg {
  width: 18px;
  height: 18px;
  color: var(--teal-light);
  stroke-width: 1.75;
}

.stat-pill__value { font-size: 1.2rem; font-weight: 800; }
.stat-pill__label { font-size: .72rem; color: var(--text-3); }

/* ── Float animation ─────────────────────────────────────────── */
.animate-float {
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ── Ticker ──────────────────────────────────────────────────── */
.ticker-wrap {
  overflow: hidden;
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: .9rem 0;
}

.ticker { overflow: hidden; }

.ticker__inner {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
}

.ticker__inner span {
  font-size: .85rem;
  color: var(--text-2);
  flex-shrink: 0;
}

.ticker__stars { color: #f59e0b !important; }

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ticker-wrap:hover .ticker__inner { animation-play-state: paused; }

/* ── Sections ────────────────────────────────────────────────── */
.section {
  padding: 7rem 1.5rem;
}
.section--dark { background: var(--dark-2); }

.section__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section__label {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: .75rem;
}

.section__title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.section__sub {
  color: var(--text-2);
  font-size: 1.05rem;
  max-width: 640px;
  line-height: 1.7;
  margin-bottom: 3.5rem;
}

/* ── Steps / How it works ────────────────────────────────────── */
.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  flex-wrap: wrap;
}

.step {
  flex: 1;
  min-width: 200px;
  padding: 2rem;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  position: relative;
  transition: transform var(--transition), border-color var(--transition);
}
.step:hover { transform: translateY(-4px); border-color: rgba(255,255,255,.15); }

.step__num {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .05em;
  color: var(--text-3);
}

/* Step icon box */
.step__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 1.1rem;
  position: relative;
}

.step__icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.75;
  position: relative;
  z-index: 1;
}

.step__icon--blue  { background: rgba(11,79,158,.18);  border: 1px solid rgba(11,79,158,.35);  }
.step__icon--blue  svg { color: var(--blue-light); }

.step__icon--teal  { background: rgba(14,145,128,.18); border: 1px solid rgba(14,145,128,.35); }
.step__icon--teal  svg { color: var(--teal-light); }

.step__icon--purple { background: rgba(124,58,237,.18); border: 1px solid rgba(124,58,237,.35); }
.step__icon--purple svg { color: #a78bfa; }

.step__icon--amber { background: rgba(217,119,6,.18);  border: 1px solid rgba(217,119,6,.35);  }
.step__icon--amber svg { color: #fbbf24; }

.step h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .5rem;
}

.step p {
  font-size: .88rem;
  color: var(--text-2);
  line-height: 1.65;
}

.step__connector {
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue-dim), var(--teal-dim));
  flex-shrink: 0;
  align-self: center;
  margin: 0 -1px;
  position: relative;
  z-index: 1;
}

/* ── Features grid ───────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.feat {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: transform var(--transition), border-color var(--transition);
}
.feat:hover { transform: translateY(-3px); border-color: rgba(255,255,255,.13); }

.feat--wide { grid-column: span 2; }

/* Feature icon box */
.feat__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 1.1rem;
}

.feat__icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.75;
}

.feat__icon--blue    { background: rgba(11,79,158,.18);   border: 1px solid rgba(11,79,158,.35);   }
.feat__icon--blue    svg { color: var(--blue-light); }

.feat__icon--teal    { background: rgba(14,145,128,.18);  border: 1px solid rgba(14,145,128,.35);  }
.feat__icon--teal    svg { color: var(--teal-light); }

.feat__icon--purple  { background: rgba(124,58,237,.18);  border: 1px solid rgba(124,58,237,.35);  }
.feat__icon--purple  svg { color: #a78bfa; }

.feat__icon--orange  { background: rgba(234,88,12,.18);   border: 1px solid rgba(234,88,12,.35);   }
.feat__icon--orange  svg { color: #fb923c; }

.feat__icon--gradient {
  background: linear-gradient(135deg, rgba(11,79,158,.25), rgba(14,145,128,.25));
  border: 1px solid rgba(14,145,128,.35);
}
.feat__icon--gradient svg { color: var(--teal-light); }

.feat h3 { font-size: 1rem; font-weight: 700; margin-bottom: .5rem; }
.feat p { font-size: .88rem; color: var(--text-2); line-height: 1.65; }

.feat__pills { display: flex; gap: .5rem; margin-top: 1rem; flex-wrap: wrap; }
.pill {
  font-size: .72rem;
  font-weight: 600;
  padding: .25rem .7rem;
  border-radius: 100px;
  border: 1px solid;
}
.pill--low  { color: var(--teal);   border-color: var(--teal-dim);  background: rgba(14,145,128,.08); }
.pill--med  { color: #f59e0b;       border-color: rgba(245,158,11,.25); background: rgba(245,158,11,.07); }
.pill--high { color: #ef4444;       border-color: rgba(239,68,68,.25); background: rgba(239,68,68,.07); }

.feat--cta-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border-color: rgba(11,79,158,.35);
  background: linear-gradient(135deg, rgba(11,79,158,.08) 0%, rgba(14,145,128,.08) 100%);
}
.feat__cta-content { display: flex; align-items: flex-start; gap: 1rem; }

/* ── Scoring layout ──────────────────────────────────────────── */
.scoring-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 2rem;
}

.score-dims { display: flex; flex-direction: column; gap: 1.1rem; }

.score-dim {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.2rem 1.4rem;
  border-left: 3px solid var(--accent, var(--blue));
  transition: transform var(--transition);
}
.score-dim:hover { transform: translateX(4px); }

.score-dim__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: .6rem;
}

.score-dim__label { font-size: .95rem; font-weight: 700; }
.score-dim__weight {
  font-size: .85rem;
  font-weight: 800;
  color: var(--accent, var(--blue));
}

.score-dim__bar {
  height: 5px;
  background: var(--dark-4);
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: .65rem;
}

.score-dim__fill {
  height: 100%;
  width: 0;
  background: var(--accent, var(--blue));
  border-radius: 100px;
  transition: width 1.2s ease;
}
.score-dim__fill.animate-bar { width: var(--target, 0%); }

.score-dim p { font-size: .83rem; color: var(--text-2); }

/* Penalties box */
.penalties-box {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  align-self: start;
}

.penalties-box h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: .5rem; }
.penalties-sub { font-size: .83rem; color: var(--text-2); margin-bottom: 1.4rem; line-height: 1.6; }

.penalty {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  padding: .85rem 0;
  border-bottom: 1px solid var(--border);
}
.penalty:last-of-type { border-bottom: none; }

/* Penalty icon box */
.penalty__icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.penalty__icon svg {
  width: 17px;
  height: 17px;
  stroke-width: 2;
}

.penalty__icon--amber  { background: rgba(217,119,6,.15);  border: 1px solid rgba(217,119,6,.3);  }
.penalty__icon--amber  svg { color: #fbbf24; }

.penalty__icon--red    { background: rgba(220,38,38,.15);  border: 1px solid rgba(220,38,38,.3);  }
.penalty__icon--red    svg { color: #f87171; }

.penalty__icon--slate  { background: rgba(100,116,139,.15); border: 1px solid rgba(100,116,139,.3); }
.penalty__icon--slate  svg { color: #94a3b8; }

.penalty strong { display: block; font-size: .88rem; font-weight: 700; margin-bottom: .2rem; }
.penalty span { font-size: .8rem; color: var(--text-2); }

.confidence-legend {
  margin-top: 1.4rem;
  background: var(--dark-4);
  border-radius: var(--radius-sm);
  padding: 1rem 1.1rem;
}

.confidence-legend h4 {
  font-size: .82rem;
  font-weight: 700;
  color: var(--text-2);
  margin-bottom: .75rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.conf-row {
  display: flex;
  justify-content: space-between;
  font-size: .83rem;
  padding: .3rem 0;
  color: var(--text-2);
}
.conf-row b { color: var(--text-1); }

/* ── Stats strip ─────────────────────────────────────────────── */
.stats-strip {
  background: linear-gradient(135deg, rgba(11,79,158,.12) 0%, rgba(14,145,128,.12) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 3.5rem 1.5rem;
}

.stats-strip__inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: space-around;
  text-align: center;
}

.stat-block__value {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, var(--blue-light), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline;
}

.stat-block__unit {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-2);
  display: inline;
  margin-left: 4px;
}

.stat-block__label {
  margin-top: .4rem;
  font-size: .82rem;
  color: var(--text-3);
  font-weight: 500;
}

/* ── Waitlist ─────────────────────────────────────────────────── */
.section--waitlist {
  position: relative;
  overflow: hidden;
  background: var(--dark-2);
}

.waitlist-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  opacity: .5;
}
.waitlist-glow--blue {
  width: 500px; height: 500px;
  background: rgba(11,79,158,.3);
  bottom: -200px; left: -100px;
}
.waitlist-glow--teal {
  width: 400px; height: 400px;
  background: rgba(14,145,128,.25);
  top: -100px; right: -50px;
}

.waitlist__inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Perk list */
.waitlist__perks {
  display: flex;
  flex-direction: column;
  gap: .85rem;
  margin-top: 1.75rem;
}

.waitlist__perks li {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .9rem;
  color: var(--text-2);
}

.perk-icon {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.perk-icon svg {
  width: 20px;
  height: 20px;
  color: var(--teal);
  stroke-width: 1.75;
}

/* Form */
.waitlist__form {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  position: relative;
}

.waitlist__form h3 {
  font-size: 1.25rem;
  font-weight: 700;
}

.form-group { display: flex; flex-direction: column; gap: .45rem; }

.form-group label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-2);
}

.form-group input,
.form-group select {
  background: var(--dark-4);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  color: var(--text-1);
  font-family: inherit;
  font-size: .9rem;
  padding: .7rem .9rem;
  outline: none;
  transition: border-color var(--transition);
  -webkit-appearance: none;
}
.form-group select { cursor: pointer; }

.form-group input::placeholder { color: var(--text-3); }
.form-group input:focus,
.form-group select:focus { border-color: var(--blue); }

/* Override: inputs that live inside an icon-wrapper need extra left padding.
   Must come AFTER the generic .form-group input rule to win the cascade. */
.form-group .input-wrap input {
  padding-left: 2.85rem;
}

.form__disclaimer {
  font-size: .75rem;
  color: var(--text-3);
  text-align: center;
}

/* Form success state */
.form__success {
  position: absolute;
  inset: 0;
  background: var(--dark-3);
  border-radius: 20px;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  text-align: center;
  padding: 2rem;
}
.form__success.hidden { display: none !important; }

.success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue) 0%, var(--teal) 100%);
  display: grid;
  place-items: center;
  box-shadow: 0 0 28px rgba(14,145,128,.4);
}

.success-check {
  width: 28px;
  height: 28px;
  color: #fff;
  stroke-width: 2.5;
}

.form__success h4 { font-size: 1.2rem; font-weight: 700; }
.form__success p { color: var(--text-2); font-size: .9rem; }

/* Spinner */
.spinner {
  width: 18px;
  height: 18px;
  animation: spin .7s linear infinite;
}

.spinner svg {
  width: 18px;
  height: 18px;
  stroke-width: 2;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ── Footer ──────────────────────────────────────────────────── */
.footer {
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  padding: 4rem 1.5rem 0;
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 4rem;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}

.footer__brand p {
  font-size: .85rem;
  color: var(--text-3);
  margin-top: .85rem;
  max-width: 240px;
}

.footer__links { display: flex; gap: 4rem; }

.footer__col {
  display: flex;
  flex-direction: column;
  gap: .7rem;
}

.footer__col strong { font-size: .85rem; font-weight: 700; }
.footer__col a { font-size: .83rem; color: var(--text-3); transition: color var(--transition); }
.footer__col a:hover { color: var(--text-1); }

.footer__bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 0;
}

.footer__bottom p {
  font-size: .78rem;
  color: var(--text-3);
}

/* ── Scroll-in animations ─────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 960px) {
  .scoring-layout { grid-template-columns: 1fr; }
  .waitlist__inner { grid-template-columns: 1fr; gap: 3rem; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .feat--wide { grid-column: span 2; }
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .steps { flex-direction: column; }
  .step__connector { width: 2px; height: 24px; align-self: center; margin: -1px 0; background: linear-gradient(var(--blue-dim), var(--teal-dim)); }
}

@media (max-width: 640px) {
  .features-grid { grid-template-columns: 1fr; }
  .feat--wide { grid-column: span 1; }
  .feat--cta-block { flex-direction: column; align-items: flex-start; }
  .hero__cards { flex-direction: column; align-items: center; }
  .tipster-card { width: 100%; max-width: 340px; }
  .footer__inner { flex-direction: column; gap: 2rem; }
  .footer__links { flex-wrap: wrap; gap: 2rem; }
  .stats-strip__inner { gap: 1.5rem; }
  .hero__actions { flex-direction: column; align-items: center; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card--pro { order: -1; }
}

/* ════════════════════════════════════════════════════════════════
   PRICING SECTION
   ════════════════════════════════════════════════════════════════ */

/* Bonus banner */
.pricing-bonus {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(135deg, rgba(14,145,128,.1) 0%, rgba(11,79,158,.1) 100%);
  border: 1px solid rgba(14,145,128,.3);
  border-radius: 12px;
  padding: 1rem 1.4rem;
  margin-bottom: 3rem;
}

.pricing-bonus__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(14,145,128,.18);
  border: 1px solid rgba(14,145,128,.35);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.pricing-bonus__icon svg {
  width: 20px;
  height: 20px;
  color: var(--teal-light);
  stroke-width: 1.75;
}

.pricing-bonus__text {
  font-size: .9rem;
  color: var(--text-2);
  line-height: 1.55;
}

.pricing-bonus__text strong { color: var(--text-1); }

.bonus-highlight {
  color: var(--teal-light);
  font-weight: 700;
}

/* Pricing grid */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  max-width: 820px;
  margin: 0 auto 2.5rem;
}

/* Card base */
.pricing-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  position: relative;
  transition: transform var(--transition), border-color var(--transition);
}
.pricing-card:hover { transform: translateY(-4px); }

/* Pro card highlight */
.pricing-card--pro {
  border-color: rgba(11,79,158,.5);
  background: linear-gradient(160deg, rgba(11,79,158,.08) 0%, rgba(14,145,128,.06) 100%);
  box-shadow: 0 0 40px rgba(11,79,158,.18), inset 0 1px 0 rgba(255,255,255,.05);
}
.pricing-card--pro:hover { transform: translateY(-6px); }

/* Popular badge */
.pro-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--blue) 0%, var(--teal) 100%);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: .3rem 1rem;
  border-radius: 100px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 4px 16px rgba(11,79,158,.4);
}

.pro-badge svg { width: 12px; height: 12px; }

/* Card header */
.pricing-card__header {
  display: flex;
  align-items: center;
  gap: .85rem;
}

.plan-icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.plan-icon svg { width: 20px; height: 20px; stroke-width: 1.75; }

.plan-icon--blue {
  background: rgba(11,79,158,.18);
  border: 1px solid rgba(11,79,158,.35);
}
.plan-icon--blue svg { color: var(--blue-light); }

.plan-icon--gradient {
  background: linear-gradient(135deg, rgba(11,79,158,.3), rgba(14,145,128,.3));
  border: 1px solid rgba(14,145,128,.35);
}
.plan-icon--gradient svg { color: var(--teal-light); }

.plan-name {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -.01em;
}

.plan-tagline {
  font-size: .8rem;
  color: var(--text-3);
  margin-top: 1px;
}

/* Price display */
.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  line-height: 1;
}

.price-currency {
  font-size: .95rem;
  font-weight: 700;
  color: var(--text-2);
  align-self: flex-start;
  margin-top: 6px;
}

.price-amount {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -.04em;
  background: linear-gradient(135deg, var(--text-1) 0%, var(--text-2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-card--pro .price-amount {
  background: linear-gradient(135deg, var(--blue-light) 0%, var(--teal-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.price-period {
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-3);
}

.price-equiv {
  font-size: .8rem;
  color: var(--text-3);
  margin-top: -.5rem;
  font-style: italic;
}

/* Feature list */
.plan-features {
  display: flex;
  flex-direction: column;
  gap: .7rem;
  flex: 1;
}

.plan-feature {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-size: .875rem;
  color: var(--text-2);
}

.plan-feature--excluded {
  opacity: .45;
}

.plan-feature--ai {
  color: var(--text-1);
}

.feature-icon {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.feature-icon svg { width: 12px; height: 12px; stroke-width: 2.5; }

.feature-icon--check {
  background: rgba(14,145,128,.15);
  border: 1px solid rgba(14,145,128,.3);
}
.feature-icon--check svg { color: var(--teal-light); }

.feature-icon--x {
  background: rgba(100,116,139,.1);
  border: 1px solid rgba(100,116,139,.2);
}
.feature-icon--x svg { color: var(--text-3); }

/* AI badge tag inside feature */
.feat-tag {
  margin-left: auto;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--blue) 0%, var(--teal) 100%);
  color: #fff;
  padding: .15rem .5rem;
  border-radius: 4px;
  flex-shrink: 0;
}

/* CTA inside card */
.plan-cta {
  margin-top: .25rem;
}

.plan-note {
  text-align: center;
  font-size: .75rem;
  color: var(--teal-light);
  font-weight: 600;
  margin-top: -.4rem;
}
.plan-note::before { content: '✦ '; opacity: .7; }

/* Compare footer note */
.pricing-compare {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-size: .83rem;
  color: var(--text-3);
  justify-content: center;
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.pricing-compare svg { width: 15px; height: 15px; flex-shrink: 0; }

@media (max-width: 600px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card--pro { order: -1; }
}

/* ════════════════════════════════════════════════════════════════
   THEME TOGGLE BUTTON
   ════════════════════════════════════════════════════════════════ */

.theme-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 2px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.theme-toggle__track {
  position: relative;
  width: 52px;
  height: 28px;
  border-radius: 100px;
  background: var(--dark-4);
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6px;
  transition: background var(--transition), border-color var(--transition);
}

.theme-toggle__track:hover {
  border-color: var(--teal);
}

.theme-toggle__thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue) 0%, var(--teal) 100%);
  box-shadow: 0 1px 6px rgba(11,79,158,.45);
  transition: transform .3s cubic-bezier(.34,1.56,.64,1);
}

/* Dark mode (default): thumb on the right */
[data-theme="dark"]  .theme-toggle__thumb { transform: translateX(24px); }
/* Light mode: thumb on the left */
[data-theme="light"] .theme-toggle__thumb { transform: translateX(0); }

.theme-icon {
  position: relative;
  z-index: 1;
  display: flex;
  pointer-events: none;
}
.theme-icon svg { width: 12px; height: 12px; stroke-width: 2; }

.theme-icon--sun  svg { color: #f59e0b; }
.theme-icon--moon svg { color: #94a3b8; }

/* In dark mode the moon is "active" (right side, under thumb) → dim sun */
[data-theme="dark"]  .theme-icon--sun  { opacity: .4; }
[data-theme="dark"]  .theme-icon--moon { opacity: 1; }
/* In light mode the sun is "active" (left side, under thumb) → dim moon */
[data-theme="light"] .theme-icon--sun  { opacity: 1; }
[data-theme="light"] .theme-icon--moon { opacity: .4; }

/* ════════════════════════════════════════════════════════════════
   LIGHT MODE — CSS VARIABLE OVERRIDES
   Applied via [data-theme="light"] on <html>
   ════════════════════════════════════════════════════════════════ */

[data-theme="light"] {
  --dark:        #f5f7fa;
  --dark-2:      #edf0f5;
  --dark-3:      #ffffff;
  --dark-4:      #edf0f5;
  --border:      rgba(0, 0, 0, .1);
  --text-1:      #0f172a;
  --text-2:      #475569;
  --text-3:      #94a3b8;
  --blue-dim:    rgba(11, 79, 158, 0.1);
  --teal-dim:    rgba(14, 145, 128, 0.1);
}

/* Nav */
[data-theme="light"] .nav.scrolled {
  background: rgba(245,247,250,.92);
}

[data-theme="light"] .mobile-menu {
  background: #ffffff;
  border-color: rgba(0,0,0,.1);
}

/* Hero */
[data-theme="light"] .hero__bg-grid {
  background-image:
    linear-gradient(rgba(0,0,0,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,.05) 1px, transparent 1px);
}

[data-theme="light"] .hero__glow--blue {
  background: rgba(11,79,158,.1);
}
[data-theme="light"] .hero__glow--teal {
  background: rgba(14,145,128,.08);
}

/* Buttons */
[data-theme="light"] .btn--ghost {
  border-color: rgba(0,0,0,.15);
  color: var(--text-2);
}
[data-theme="light"] .btn--ghost:hover {
  border-color: rgba(0,0,0,.25);
  color: var(--text-1);
  background: rgba(0,0,0,.03);
}

/* Cards — remove white-flash inset highlight, add subtle shadow */
[data-theme="light"] .tipster-card {
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
}
[data-theme="light"] .tipster-card:hover {
  border-color: rgba(0,0,0,.15);
  box-shadow: 0 6px 30px rgba(0,0,0,.1);
}
[data-theme="light"] .tipster-card--featured {
  border-color: rgba(11,79,158,.3);
  box-shadow: 0 0 32px rgba(11,79,158,.1), 0 4px 20px rgba(0,0,0,.07);
}

/* Tip-card internals */
[data-theme="light"] .tc__bar { background: #dde3ec; }

/* Stat pills */
[data-theme="light"] .stat-pill {
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}

/* Ticker */
[data-theme="light"] .ticker-wrap {
  background: var(--dark-2);
  border-color: rgba(0,0,0,.1);
}

/* Steps */
[data-theme="light"] .step {
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
}
[data-theme="light"] .step:hover {
  border-color: rgba(0,0,0,.15);
}
[data-theme="light"] .step__connector {
  background: linear-gradient(90deg, rgba(11,79,158,.2), rgba(14,145,128,.2));
}

/* Feature cards */
[data-theme="light"] .feat {
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
}
[data-theme="light"] .feat:hover {
  border-color: rgba(0,0,0,.15);
}
[data-theme="light"] .feat--cta-block {
  border-color: rgba(11,79,158,.2);
}

/* Scoring dims */
[data-theme="light"] .score-dim {
  box-shadow: 0 2px 10px rgba(0,0,0,.05);
}
[data-theme="light"] .score-dim__bar { background: #dde3ec; }
[data-theme="light"] .score-dim:hover { transform: translateX(4px); }

/* Penalties */
[data-theme="light"] .penalties-box {
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
}

/* Confidence legend */
[data-theme="light"] .confidence-legend { background: #f0f3f8; }

/* Stats strip */
[data-theme="light"] .stats-strip {
  background: linear-gradient(135deg, rgba(11,79,158,.06) 0%, rgba(14,145,128,.06) 100%);
  border-color: rgba(0,0,0,.1);
}

/* Waitlist glows */
[data-theme="light"] .waitlist-glow--blue {
  background: rgba(11,79,158,.12);
}
[data-theme="light"] .waitlist-glow--teal {
  background: rgba(14,145,128,.1);
}

/* Form */
[data-theme="light"] .waitlist__form {
  box-shadow: 0 4px 40px rgba(0,0,0,.08);
}
[data-theme="light"] .form-group input,
[data-theme="light"] .form-group select {
  background: #f5f7fa;
  border-color: rgba(0,0,0,.15);
  color: var(--text-1);
}
[data-theme="light"] .form-group input:focus,
[data-theme="light"] .form-group select:focus {
  border-color: var(--blue);
  background: #fff;
}
[data-theme="light"] .form-group input::placeholder { color: #b0bcc9; }

/* Modal */
[data-theme="light"] .modal-overlay { background: rgba(0,0,0,.45); }
[data-theme="light"] .modal {
  box-shadow: 0 24px 80px rgba(0,0,0,.15);
}
[data-theme="light"] .modal__close {
  background: #f0f3f8;
  border-color: rgba(0,0,0,.1);
}
[data-theme="light"] .modal__close:hover {
  border-color: rgba(0,0,0,.2);
  background: #e5eaf2;
}

/* Store buttons */
[data-theme="light"] .store-btn {
  background: #ffffff;
  border-color: rgba(0,0,0,.15);
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
[data-theme="light"] .store-btn--android:hover {
  background: rgba(14,145,128,.05);
}
[data-theme="light"] .store-btn--ios:hover {
  background: rgba(0,0,0,.03);
}

/* Footer */
[data-theme="light"] .footer {
  background: var(--dark-2);
  border-color: rgba(0,0,0,.1);
}
[data-theme="light"] .footer__inner {
  border-color: rgba(0,0,0,.1);
}
[data-theme="light"] .footer-store-link {
  background: #fff;
  border-color: rgba(0,0,0,.12);
}
[data-theme="light"] .footer-store-link:hover {
  border-color: rgba(0,0,0,.22);
}

/* Pricing */
[data-theme="light"] .pricing-card {
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
}
[data-theme="light"] .pricing-card:hover {
  border-color: rgba(0,0,0,.15);
}
[data-theme="light"] .pricing-card--pro {
  border-color: rgba(11,79,158,.3);
  background: linear-gradient(160deg, rgba(11,79,158,.05) 0%, rgba(14,145,128,.04) 100%);
  box-shadow: 0 0 40px rgba(11,79,158,.1), 0 4px 20px rgba(0,0,0,.07);
}
[data-theme="light"] .pricing-bonus {
  background: linear-gradient(135deg, rgba(14,145,128,.07) 0%, rgba(11,79,158,.07) 100%);
  border-color: rgba(14,145,128,.25);
}

/* Scroll-reveal — no colour impact, but ensure transition still works */
[data-theme="light"] body { transition: background-color .3s ease, color .3s ease; }
