:root {
  --blue: #3D7BF7;
  --blue-deep: #2B5FD9;
  --blue-pale: #E7EDFC;
  --amber: #F0A030;
  --amber-deep: #D98520;
  --amber-pale: #FCF0DE;
  --green: #12A575;
  --green-pale: #E1F2EC;
  --red: #E45663;
  --red-pale: #FBE7E9;

  --bg: #ffffff;
  --bg-alt: #F8FAFC;
  --bg-dark: #1C1F26;
  --bg-dark-2: #2C313C;
  --surface: #ffffff;
  --border: rgba(28, 31, 38, .09);
  --border-soft: rgba(28, 31, 38, .05);
  --border-dark: rgba(255, 255, 255, .10);

  --ink: #1C1F26;
  --ink-2: #596273;
  --muted: #64748B;
  --muted-dark: rgba(255, 255, 255, .48);

  --gold: var(--amber);
  --violet: var(--blue);
  --violet-deep: var(--blue-deep);
  --violet-soft: #A9C4FA;
  --emerald: var(--green);
  --rose: var(--red);

  --grad-brand: linear-gradient(120deg, #2C313C 0%, #3E4553 100%);
  --grad-brand-soft: linear-gradient(120deg, rgba(61, 123, 247, .08), rgba(240, 160, 48, .08));
  --grad-gold: linear-gradient(135deg, #F7C777, #D98520);
  --grad-card: linear-gradient(150deg, #1C1F26 0%, #2C313C 60%, #363C48 100%);

  --fs-2xs: 10.5px;
  --fs-xs: 11.5px;
  --fs-sm: 13px;
  --fs-base: 15px;
  --fs-md: 17px;
  --fs-lg: 20px;
  --fs-xl: 27px;
  --fs-2xl: 36px;
  --fs-3xl: 48px;
  --fs-4xl: 64px;
  --fs-5xl: 82px;

  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-2xl: 40px;

  --shadow-xs: 0 1px 3px rgba(28, 31, 38, .05);
  --shadow-sm: 0 6px 20px rgba(28, 31, 38, .06);
  --shadow-md: 0 16px 44px rgba(28, 31, 38, .09);
  --shadow-lg: 0 36px 90px rgba(28, 31, 38, .16);
  --shadow-amber: 0 10px 30px rgba(28, 31, 38, .20);
  --shadow-violet: 0 10px 30px rgba(28, 31, 38, .18);

  --ease: cubic-bezier(.16, 1, .3, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 160px;
}

body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  font-feature-settings: 'ss01' 1;
}

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

::selection {
  background: rgba(240, 160, 48, .22);
  color: var(--ink);
}

button,
input,
select {
  font-family: inherit;
}

a {
  color: inherit;
}

.mono {
  font-family: 'JetBrains Mono', monospace;
  font-feature-settings: 'tnum' 1;
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: .035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.mesh-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
}

.gj-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 101;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 20px;
  text-decoration: none;
  background: var(--ink);
  color: #fff;
  font-size: 12.5px;
  overflow: hidden;
}

.gj-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .28), transparent);
  transform: translateX(-100%);
  animation: gjSweep 5s ease-in-out infinite;
}

@keyframes gjSweep {
  0% {
    transform: translateX(-100%);
  }

  55%,
  100% {
    transform: translateX(100%);
  }
}

.gj-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #fff;
  flex: none;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, .7);
  animation: gjPulse 1.8s infinite;
}

@keyframes gjPulse {
  70% {
    box-shadow: 0 0 0 7px rgba(255, 255, 255, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

.gj-main {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, .9);
  white-space: nowrap;
}

.gj-main b {
  color: #fff;
  font-weight: 700;
}

.gj-pill {
  position: relative;
  z-index: 1;
  flex: none;
  background: rgba(255, 255, 255, .18);
  border: 1px solid rgba(255, 255, 255, .32);
  border-radius: 999px;
  padding: 3px 11px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}

.gj-go {
  position: relative;
  z-index: 1;
  font-weight: 800;
  transition: transform .25s var(--ease);
}

.gj-bar:hover .gj-go {
  transform: translateX(4px);
}

@media(max-width:820px) {
  .gj-bar {
    font-size: 11.5px;
    gap: 9px;
    padding: 0 12px;
  }

  .gj-main b {
    display: inline;
  }
}

.gj-marquee {
  display: contents;
}

@media(max-width:640px) {
  .gj-bar {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0 12px;
    gap: 8px;
  }

  .gj-dot, .gj-go {
    display: none;
  }

  .gj-marquee {
    display: flex;
    align-items: center;
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
    height: 100%;
  }

  .gj-main {
    display: inline-block;
    white-space: nowrap;
    padding-left: 100%;
    animation: marqueeMobile 12s linear infinite;
  }
  
  .gj-pill {
    flex: 0 0 auto;
  }
}

@keyframes marqueeMobile {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

nav {
  position: fixed;
  top: 40px;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 44px;
  height: 72px;
  background: rgba(255, 255, 255, .72);
  backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid var(--border-soft);
}

.logo {
  display: inline-flex;
  text-decoration: none;
}

.logo-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 5px 18px 5px 5px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 999px;
  transition: background .28s var(--ease), border-color .28s var(--ease), transform .28s var(--ease);
}

.logo:hover .logo-badge {
  background: rgba(255, 255, 255, .7);
  border-color: rgba(28, 31, 38, .22);
  transform: translateY(-1px);
}

.logo-mark {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  transition: border-color .28s var(--ease);
}

.logo:hover .logo-mark {
  border-color: rgba(28, 31, 38, .2);
}

.lg-chest {
  transition: transform .3s var(--ease);
  transform-origin: center;
  transform-box: fill-box;
}

.logo:hover .lg-chest {
  transform: scale(1.25);
}

.logo-word {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 16.5px;
  letter-spacing: -.035em;
  color: var(--ink);
  line-height: 1;
}

@media(max-width:620px) {
  .logo-badge {
    padding: 4px 14px 4px 4px;
    gap: 8px;
  }

  .logo-word {
    font-size: 15px;
  }

  .logo-mark {
    width: 28px;
    height: 28px;
  }

  .nav-right {
    gap: 8px;
  }

  .nav-cta {
    padding: 8px 14px;
    font-size: 12px;
  }

  .nav-cta-price {
    display: none;
  }

  .nav-right a#navLogin {
    font-size: 12.5px;
    padding: 6px 0;
  }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  color: var(--ink-2);
  font-size: 13.5px;
  font-weight: 500;
  text-decoration: none;
  padding: 6px 14px;
  border-radius: 999px;
  transition: all .22s var(--ease);
  position: relative;
}

.nav-links a:hover {
  color: var(--ink);
  background: var(--bg-alt);
}

.nav-links a.active,
.nav-links a[aria-current="page"] {
  color: #fff;
  background: var(--amber-deep);
  font-weight: 700;
}

.nav-cta {
  background: var(--ink);
  color: #fff;
  font-weight: 600;
  font-size: 13.5px;
  padding: 10px 20px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: all .25s var(--ease);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.nav-cta:hover {
  background: var(--amber-deep);
  transform: translateY(-1px);
  box-shadow: var(--shadow-amber);
}

.nav-back {
  color: var(--ink-2);
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-back:hover {
  color: var(--ink);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.nav-right a#navLogin {
  background: none;
  border: none;
  font-family: inherit;
  color: var(--ink-2);
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  padding: 6px 2px;
  text-decoration: none;
  white-space: nowrap;
}

.nav-right a#navLogin:hover {
  color: var(--ink);
}

#acctChip {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 5px 13px 5px 6px;
  text-decoration: none;
  color: inherit;
}

#acctAv {
  width: 25px;
  height: 25px;
  border-radius: 999px;
  background: var(--amber);
  color: #fff;
  font-size: 11.5px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

#acctMail {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-2);
  max-width: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

a#navLogout {
  font-size: 12px;
  color: var(--ink-2);
  text-decoration: none;
  white-space: nowrap;
}

a#navLogout:hover {
  color: var(--ink);
}

.nav-cta-price {
  display: inline;
}

.ticker-bar {
  position: fixed;
  top: 112px;
  left: 0;
  right: 0;
  z-index: 99;
  height: 36px;
  background: var(--bg-dark);
  overflow: hidden;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.ticker-spacer {
  height: 148px;
}

.ticker-inner {
  display: flex;
  white-space: nowrap;
  animation: ticker 46s linear infinite;
}

.ticker-inner:hover {
  animation-play-state: paused;
}

@keyframes ticker {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

.tick {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 20px;
  font-size: 11.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, .55);
  border-right: 1px solid rgba(255, 255, 255, .07);
  font-family: 'JetBrains Mono', monospace;
}

.tick .t-name {
  color: rgba(255, 255, 255, .8);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 500;
}

.tick .t-rank {
  color: #fff;
  font-weight: 600;
}

.tick .t-delta {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-weight: 700;
}

.tick .t-delta.up {
  color: var(--emerald);
}

.tick .t-delta.down {
  color: var(--rose);
}

.hero {

  min-height: auto;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 56px 24px 56px;
}

.hero .mesh-orb.o1 {
  width: 640px;
  height: 640px;
  background: radial-gradient(circle, rgba(240, 160, 48, .30), transparent 70%);
  top: -220px;
  left: -160px;
}

.hero .mesh-orb.o2 {
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(61, 123, 247, .24), transparent 70%);
  top: -100px;
  right: -140px;
}

.hero .mesh-orb.o3 {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(255, 95, 109, .16), transparent 70%);
  bottom: -200px;
  left: 38%;
}

.hero-badge {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--ink-2);
  font-size: 12px;
  font-weight: 600;
  padding: 7px 16px 7px 12px;
  border-radius: 999px;
  margin-bottom: 28px;
  box-shadow: var(--shadow-xs);
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--emerald);
  position: relative;
  flex-shrink: 0;
}

.live-dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1.5px solid var(--emerald);
  animation: ring 1.8s ease-out infinite;
}

@keyframes ring {
  0% {
    transform: scale(.5);
    opacity: 1
  }

  100% {
    transform: scale(1.8);
    opacity: 0
  }
}

h1.hero-title {
  position: relative;
  z-index: 2;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: clamp(38px, 6.6vw, 80px);
  line-height: 1.02;
  letter-spacing: -3px;
  color: var(--ink);
  margin-bottom: 20px;
}

h1.hero-title .grad {
  position: relative;
  color: var(--ink);
  -webkit-text-fill-color: currentColor;
  background: linear-gradient(to top, rgba(240, 160, 48, .42) 0%, rgba(240, 160, 48, .42) 38%, transparent 38%);
  padding: 0 6px;
}

.hero-sub {
  position: relative;
  z-index: 2;
  font-size: clamp(16px, 2.1vw, 20px);
  color: var(--ink-2);
  max-width: 620px;
  line-height: 1.6;
  margin-bottom: 20px;
  font-weight: 400;
}

.hero-sub b {
  font-weight: 700;
  color: var(--ink);
  background: linear-gradient(to top, rgba(240, 160, 48, .20) 0%, rgba(240, 160, 48, .20) 34%, transparent 34%);
  padding: 0 3px;
}

.hero-nots {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 34px;
}

.hero-not {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 16px 8px 13px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: -.005em;
  box-shadow: var(--shadow-xs);
  text-decoration: line-through;
  text-decoration-color: rgba(228, 86, 99, .32);
  text-decoration-thickness: 1.5px;
}

.hero-not svg {
  width: 13px;
  height: 13px;
  color: var(--rose);
  flex: none;
  text-decoration: none;
}

.hero-verdict {
  position: relative;
  z-index: 2;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  margin-bottom: 34px;
}

.hv-eyebrow {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--violet);
}

.hv-line {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(20px, 2.6vw, 27px);
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--ink);
  line-height: 1.25;
}

.hv-line em {
  font-style: normal;
  color: var(--ink);
}

@media(max-width:600px) {
  .hero-badge {
    font-size: 10.5px;
    padding: 5px 12px 5px 9px;
    gap: 6px;
    margin-bottom: 22px;
  }

  .hv-line {
    font-size: 19px;
  }

  .hv-line em {
    display: block;
  }
}

.hero-actions {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.btn-primary {
  background: var(--ink);
  color: #fff;
  font-weight: 600;
  font-size: 14.5px;
  padding: 15px 28px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: all .25s var(--ease);
  box-shadow: 0 1px 2px rgba(28, 31, 38, .1);
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-brand);
  opacity: 0;
  transition: opacity .3s;
}

.btn-primary span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.btn-primary:hover::before {
  opacity: 0;
}

.btn-primary:hover {
  background: var(--amber-deep);
  transform: translateY(-1px);
  box-shadow: var(--shadow-amber);
}

.btn-secondary {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--border);
  font-weight: 600;
  font-size: 14.5px;
  padding: 15px 26px;
  border-radius: 999px;
  cursor: pointer;
  transition: all .25s var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
}

.btn-secondary:hover {
  background: var(--amber-deep);
  color: #fff;
  border-color: var(--amber-deep);
  transform: translateY(-1px);
  box-shadow: var(--shadow-amber);
}

.btn-dark {
  background: var(--ink);
  color: #fff;
  font-weight: 600;
  font-size: 14.5px;
  padding: 15px 28px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: all .25s var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
}

.btn-dark:hover {
  background: var(--amber-deep);
  transform: translateY(-1px);
  box-shadow: var(--shadow-amber);
}

.hero-note {
  position: relative;
  z-index: 2;
  font-size: 12.5px;
  color: var(--muted);
  margin-bottom: 46px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-note strong {
  color: var(--ink-2);
}

.hero-stats {
  position: relative;
  z-index: 2;
  display: flex;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  flex-wrap: wrap;
}

.h-stat {
  padding: 20px 26px;
  text-align: left;
  border-right: 1px solid var(--border-soft);
  min-width: 112px;
  white-space: nowrap;
}

.h-stat:last-child {
  border-right: none;
}

.h-stat-val {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 27px;
  color: var(--ink);
  letter-spacing: -.5px;
}

.h-stat-label {
  font-size: 10px;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-top: 5px;
}

.premium-strip {
  position: relative;
  z-index: 2;
  background: var(--bg-dark);
  padding: 18px 24px;
  display: flex;
  justify-content: center;
  gap: 34px;
  flex-wrap: wrap;
}

.ps-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .6);
  font-size: 12px;
  font-weight: 500;
}

.ps-item svg {
  color: var(--amber);
  flex-shrink: 0;
}

.section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--amber-deep);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.section-eyebrow::before,
.section-eyebrow::after {
  content: '';
  height: 1px;
  width: 26px;
  background: currentColor;
  opacity: .35;
}

.section-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: clamp(26px, 3.6vw, 42px);
  letter-spacing: -1.5px;
  color: var(--ink);
  text-align: center;
  margin-bottom: 14px;
}

.section-sub {
  color: var(--ink-2);
  font-size: var(--fs-md);
  text-align: center;
  max-width: 620px;
  line-height: 1.65;
  margin-bottom: 38px;
}

.predictor-section {

  background: #fff;
  padding: 78px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pred-sub b {
  color: var(--ink);
  font-weight: 700;
  background: linear-gradient(to top, rgba(240, 160, 48, .18) 0%, rgba(240, 160, 48, .18) 36%, transparent 36%);
  padding: 0 2px;
}

.predictor-card {
  width: 100%;
  max-width: 1020px;
  background: var(--grad-card);
  border-radius: var(--r-xl);
  padding: 42px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .06);
}

.predictor-card .mesh-orb {
  opacity: .7;
}

.predictor-card .mo1 {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(240, 160, 48, .28), transparent 70%);
  top: -160px;
  right: -100px;
}

.predictor-card .mo2 {
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(61, 123, 247, .3), transparent 70%);
  bottom: -160px;
  left: -80px;
}

.grid-texture {
  position: absolute;
  inset: 0;
  opacity: .5;
  background-image: linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 36px 36px;
}

.predictor-form {
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 12px;
  position: relative;
  z-index: 2;
  align-items: end;
}

.pf-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.pf-field label {
  font-size: 10.5px;
  font-weight: 700;
  color: rgba(255, 255, 255, .4);
  text-transform: uppercase;
  letter-spacing: .07em;
}

.pf-field input,
.pf-field select {
  background: rgba(255, 255, 255, .055);
  border: 1px solid rgba(255, 255, 255, .1);
  color: #fff;
  padding: 12.5px 14px;
  border-radius: 12px;
  font-size: 13.5px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  outline: none;
  transition: all .2s;
}

.pf-field input::placeholder {
  color: rgba(255, 255, 255, .28);
}

.pf-field select option {
  color: #0a0e1a;
}

.pf-field input:focus,
.pf-field select:focus {
  border-color: var(--amber);
  background: rgba(255, 255, 255, .09);
}

.btn-predict {
  background: var(--grad-brand);
  color: #fff;
  font-weight: 600;
  font-size: 13.5px;
  padding: 13px 24px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(240, 160, 48, .35);
  transition: all .2s var(--ease);
}

.btn-predict:hover {
  background: var(--amber-deep);
  transform: translateY(-1px);
  box-shadow: var(--shadow-amber);
}

.predictor-results {
  margin-top: 28px;
  position: relative;
  z-index: 2;
}

.result-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.result-card {
  background: rgba(255, 255, 255, .045);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 16px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  transition: all .2s;
}

.result-card:hover {
  background: rgba(255, 255, 255, .075);
  border-color: rgba(255, 255, 255, .14);
}

.rc-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.rc-name {
  color: #fff;
  font-weight: 600;
  font-size: 13.5px;
}

.rc-meta {
  color: rgba(255, 255, 255, .35);
  font-size: 11px;
}

.rc-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.rc-stat {
  text-align: center;
}

.rc-stat strong {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 14.5px;
  color: #fff;
}

.rc-stat span {
  font-size: 9px;
  color: rgba(255, 255, 255, .32);
  text-transform: uppercase;
  letter-spacing: .05em;
}

.chance-badge {
  font-size: 9.5px;
  font-weight: 700;
  padding: 5px 11px;
  border-radius: 999px;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.chance-safe {
  background: rgba(18, 165, 117, .18);
  color: #3ee495;
}

.chance-moderate {
  background: rgba(240, 160, 48, .18);
  color: var(--amber);
}

.chance-reach {
  background: rgba(228, 86, 99, .18);
  color: #ff6b8b;
}

.rc-map {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--violet-soft);
  background: rgba(61, 123, 247, .16);
  padding: 7px 11px;
  border-radius: 9px;
  font-size: 10.5px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
}

.predictor-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 34px 20px;
  text-align: center;
}

.pe-ico {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  flex: none;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .16);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffb457;
  animation: peBob 1.8s ease-in-out infinite;
}

.pe-ico svg {
  width: 17px;
  height: 17px;
}

@keyframes peBob {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }
}

.pe-txt {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255, 255, 255, .62);
}

.pe-txt b {
  display: inline-block;
  margin-top: 3px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  font-family: 'Outfit', sans-serif;
  letter-spacing: -.01em;
}

.predictor-locked {
  margin-top: 12px;
  padding: 16px 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .04);
  border: 1px dashed rgba(255, 255, 255, .15);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.predictor-locked p {
  color: rgba(255, 255, 255, .55);
  font-size: 12.5px;
}

.predictor-locked strong {
  color: #fff;
}

.analytics-section {

  background: var(--bg-alt);
  padding: 78px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.analytics-section .section-sub b {
  color: var(--ink);
  font-weight: 700;
}

.analytics-card {
  width: 100%;
  max-width: 1020px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 38px;
  box-shadow: var(--shadow-md);
}

.chart-controls {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 26px;
  align-items: end;
}

.cc-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.cc-field label {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .05em;
}

.cc-field select {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10.5px 14px;
  font-size: 13.5px;
  color: var(--ink);
  background: #fff;
  min-width: 220px;
}

.chart-legend {
  display: flex;
  gap: 18px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.cl-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-2);
}

.cl-dot {
  width: 9px;
  height: 9px;
  border-radius: 3px;
}

.chart-caption {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 13px 16px;
  margin-bottom: 18px;
  font-size: 12.5px;
  color: var(--ink-2);
  line-height: 1.65;
}

.chart-caption b {
  color: var(--ink);
  font-weight: 700;
}

.cc-bar {
  width: 9px;
  height: 34px;
  border-radius: 3px;
  flex: none;
  margin-top: 1px;
  background: linear-gradient(180deg, #12A575, #F0A030 55%, #E45663);
}

.cl-note {
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
  margin-left: auto;
}

.btn-group {
  display: inline-flex;
  gap: 6px;
  flex-wrap: wrap;
}

.bg-btn {
  border: 1px solid var(--border);
  background: #fff;
  color: var(--ink-2);
  border-radius: 12px;
  padding: 10.5px 16px;
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all .18s var(--ease);
  white-space: nowrap;
}

.bg-btn:hover {
  border-color: var(--ink);
  color: var(--ink);
}

.bg-btn.active {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.chart-wrap {
  position: relative;
  height: 340px;
  margin-top: 6px;
}

.band-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  margin-top: 20px;
}

.bs-cell {
  background: #fff;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.bs-lbl {
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
}

.bs-val {
  font-family: 'JetBrains Mono', monospace;
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
}

.bs-val.tight {
  color: var(--rose);
}

.bs-val.open {
  color: var(--emerald);
}

@media(max-width:760px) {
  .band-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .cl-note {
    margin-left: 0;
    width: 100%;
  }

  .chart-wrap {
    height: 280px;
  }

  .bg-btn {
    padding: 9px 13px;
    font-size: 12.5px;
  }
}

.insight-box {
  margin-top: 24px;
  padding: 16px 20px;
  border-radius: 16px;
  background: linear-gradient(120deg, rgba(240, 160, 48, .07), rgba(61, 123, 247, .06));
  border: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.insight-box svg {
  color: var(--amber-deep);
  flex-shrink: 0;
  margin-top: 2px;
}

.insight-box p {
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.6;
}

.insight-box strong {
  color: var(--ink);
}

th.th-locked {
  color: var(--violet);
}

.th-lock {
  width: 11px;
  height: 11px;
  display: inline-block;
  vertical-align: -1px;
  margin-right: 5px;
  opacity: .75;
}

td.locked {
  filter: blur(5.5px);
  -webkit-user-select: none;
  user-select: none;
  pointer-events: none;
  opacity: .72;
}

tr:hover td.locked {
  filter: blur(6.5px);
}

.locked-note {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  max-width: 760px;
  margin: 22px auto 0;
  background: linear-gradient(120deg, rgba(240, 160, 48, .07), rgba(61, 123, 247, .07));
  border: 1px solid rgba(61, 123, 247, .16);
  border-radius: 999px;
  padding: 12px 22px 12px 14px;
  text-align: left;
}

.ln-ico {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  flex: none;
  background: #fff;
  border: 1px solid rgba(61, 123, 247, .18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--violet);
}

.ln-ico svg {
  width: 14px;
  height: 14px;
}

.ln-txt {
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.55;
}

.ln-txt b {
  color: var(--ink);
  font-weight: 700;
}

@media(max-width:700px) {
  .locked-note {
    border-radius: var(--r-md);
    align-items: flex-start;
    padding: 14px 16px;
  }

  .ln-txt {
    font-size: 12.5px;
  }
}

.features-section {

  background: #fff;
  padding: 78px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 1080px;
  width: 100%;
}

.feat-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 30px 26px 26px;
  --mx: 50%;
  --my: 50%;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
  animation: fcIn .55s var(--ease) backwards;
  animation-delay: calc(var(--i) * 55ms);
}

@keyframes fcIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.feat-card {
  --acc: var(--blue);
}

.feat-card:nth-child(4n+2) {
  --acc: var(--amber);
}

.feat-card:nth-child(4n+3) {
  --acc: var(--green);
}

.feat-card:nth-child(4n+4) {
  --acc: var(--red);
}

.feat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  transition: opacity .35s;
  pointer-events: none;
  background: radial-gradient(340px circle at var(--mx) var(--my), color-mix(in srgb, var(--acc) 9%, transparent), transparent 68%);
}

.feat-card:hover::before {
  opacity: 1;
}

.feat-card:hover {
  transform: translateY(-5px);
  border-color: color-mix(in srgb, var(--acc) 34%, var(--border));
  box-shadow: 0 20px 44px color-mix(in srgb, var(--acc) 15%, transparent);
}

.fc-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--acc);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s var(--ease);
}

.feat-card:hover .fc-line {
  transform: scaleX(1);
}

.fc-num {
  position: absolute;
  top: 18px;
  right: 22px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 30px;
  font-weight: 700;
  color: var(--ink);
  opacity: .045;
  letter-spacing: -1px;
  transition: opacity .35s, color .35s;
  pointer-events: none;
}

.feat-card:hover .fc-num {
  opacity: .16;
  color: var(--acc);
}

.feat-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  color: #fff;
  background: var(--ink);
  box-shadow: 0 6px 16px rgba(28, 31, 38, .20);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}

.feat-card-icon svg {
  width: 20px;
  height: 20px;
}

.feat-card:hover .feat-card-icon {
  transform: translateY(-2px) scale(1.06) rotate(-3deg);
  box-shadow: 0 10px 26px rgba(240, 160, 48, .42);
}

.feat-card h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  margin-bottom: 9px;
  letter-spacing: -.2px;
}

.feat-card p {
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.7;
}

.feat-card .soon-badge,
.feat-card .live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 999px;
}

.feat-card .soon-badge {
  color: var(--amber-deep);
  background: rgba(240, 160, 48, .09);
}

.feat-card .live-badge {
  color: var(--emerald);
  background: rgba(18, 165, 117, .09);
}

.lb-dot {
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--emerald);
  position: relative;
}

.lb-dot::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: var(--emerald);
  animation: lbPulse 1.9s ease-out infinite;
}

@keyframes lbPulse {
  0% {
    transform: scale(1);
    opacity: .65;
  }

  100% {
    transform: scale(3.4);
    opacity: 0;
  }
}

.samples-section {

  background: var(--bg-alt);
  padding: 78px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.yr-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.yr-tab {
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid var(--border);
  color: var(--ink-2);
  cursor: pointer;
  background: #fff;
  display: flex;
  align-items: center;
  gap: 6px;
}

.yr-tab.active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.yr-tab:hover:not(.active) {
  border-color: var(--ink);
  color: var(--ink);
}

.sample-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 36px;
}

.sample-tab {
  padding: 9px 20px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  border: 1px solid var(--border);
  color: var(--ink-2);
  cursor: pointer;
  transition: all .2s;
  background: #fff;
}

.sample-tab.active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.sample-table-wrap {
  max-width: 1080px;
  width: 100%;
  overflow: auto;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  background: #fff;
}

table {
  width: 100%;
  border-collapse: collapse;
}

thead th {
  padding: 15px 16px;
  text-align: left;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  border-bottom: 1px solid var(--border);
}

tbody tr {
  border-bottom: 1px solid var(--border-soft);
  transition: background .15s;
}

tbody tr:hover {
  background: var(--bg-alt);
}

tbody td {
  padding: 14px 16px;
  font-size: 13px;
  color: var(--ink-2);
}

tbody td.rank {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 600;
  color: var(--ink);
  font-size: 13.5px;
}

tbody td.college {
  color: var(--ink);
  font-weight: 600;
  font-size: 13px;
}

tbody td.fee {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12.5px;
  color: var(--ink-2);
}

tbody td.cat-badge {
  font-size: 10px;
  font-weight: 700;
  padding: 4px 9px;
  border-radius: 6px;
  white-space: nowrap;
}

.cat-gn {
  background: rgba(61, 123, 247, .09);
  color: var(--violet);
}

.cat-obc {
  background: rgba(232, 169, 5, .13);
  color: #a06b04;
}

.cat-ews {
  background: rgba(18, 165, 117, .09);
  color: var(--emerald);
}

.cat-sc {
  background: rgba(240, 160, 48, .1);
  color: var(--amber-deep);
}

.cat-st {
  background: rgba(228, 86, 99, .09);
  color: var(--rose);
}

.table-map-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--violet);
  background: rgba(61, 123, 247, .08);
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 10.5px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  border: none;
  cursor: pointer;
}

.unlock-row td {
  padding: 24px 18px;
  text-align: center;
  background: var(--bg-alt);
}

.unlock-msg {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 12.5px;
  color: var(--ink-2);
  font-weight: 500;
  flex-wrap: wrap;
}

.unlock-btn {
  background: var(--ink);
  color: #fff;
  font-weight: 600;
  font-size: 12.5px;
  padding: 9px 20px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all .2s;
}

.unlock-btn:hover {
  background: var(--amber-deep);
  transform: translateY(-1px);
  box-shadow: var(--shadow-amber);
}

.counselling-section {

  background: #fff;
  padding: 78px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.counselling-card {
  max-width: 980px;
  width: 100%;
  background: var(--grad-card);
  border-radius: var(--r-xl);
  padding: 46px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 36px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .06);
}

.counselling-card .mo1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(61, 123, 247, .32), transparent 70%);
  bottom: -180px;
  right: -100px;
  opacity: .8;
}

.counselling-left {
  position: relative;
  z-index: 2;
}

.counselling-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(240, 160, 48, .14);
  color: var(--amber);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.counselling-left h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 27px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -.8px;
  margin-bottom: 13px;
}

.counselling-left p {
  color: rgba(255, 255, 255, .5);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 22px;
}

.counselling-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cs-item {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 13px;
  color: rgba(255, 255, 255, .68);
}

.cs-item svg {
  color: var(--emerald);
  flex-shrink: 0;
  margin-top: 2px;
}

.counselling-right {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--r-lg);
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.cr-price {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 48px;
  color: #fff;
  letter-spacing: -1px;
}

.cr-price span {
  font-size: 21px;
  color: var(--amber);
  vertical-align: top;
}

.cr-price-label {
  font-size: 10.5px;
  color: rgba(255, 255, 255, .35);
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: 24px;
}

.cr-bundle {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px dashed rgba(255, 255, 255, .13);
  font-size: 11.5px;
  color: rgba(255, 255, 255, .45);
}

.cr-bundle a {
  color: var(--amber);
  font-weight: 700;
  text-decoration: none;
}

.proof-section {
  background: var(--bg-alt);
  padding: 78px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1050px;
  width: 100%;
}

.testi {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px 26px;
}

.testi-stars {
  display: flex;
  gap: 2px;
  color: var(--amber);
  margin-bottom: 16px;
}

.testi-text {
  font-size: 13.5px;
  color: var(--ink-2);
  line-height: 1.7;
  margin-bottom: 18px;
}

.testi-author {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ink);
}

.testi-detail {
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
}

.pricing-section {
  padding: 150px 24px 82px;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;

}

.pricing-addon {
  margin: 16px 0 8px;
  padding: 0 2px;
}

.pa-label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  cursor: pointer;
  transition: border-color .2s, background .2s;
  user-select: none;
}

.pa-label:hover {
  border-color: var(--amber);
  background: rgba(240, 160, 48, .04);
}

.pa-check {
  width: 18px;
  height: 18px;
  border: 2px solid var(--border);
  border-radius: 5px;
  flex-shrink: 0;
  transition: border-color .2s, background .2s;
  position: relative;
}

.pa-label:hover .pa-check {
  border-color: var(--amber);
}

.pa-label input[type="checkbox"]:checked + .pa-check {
  border-color: var(--amber);
  background: var(--amber);
}

.pa-label input[type="checkbox"]:checked + .pa-check::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 2px;
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.pa-text {
  flex: 1;
  font-size: 13px;
  color: var(--ink-2);
  font-weight: 500;
}

.pa-price {
  font-size: 14px;
  font-weight: 700;
  color: var(--amber-deep);
}

.countdown {
  display: flex;
  gap: 9px;
  justify-content: center;
  margin-bottom: 44px;
}

.cd-unit {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 16px;
  text-align: center;
  min-width: 62px;
}

.cd-unit strong {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 19px;
  color: var(--ink);
}

.cd-unit span {
  font-size: 8.5px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.pricing-layout {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  max-width: 1000px;
  width: 100%;
  align-items: start;
}

.pass-card {
  width: 400px;
  aspect-ratio: 1.586/1;
  border-radius: 26px;
  position: sticky;
  top: 156px;
  overflow: hidden;
  background: var(--grad-card);
  padding: 28px 30px;
  color: #fff;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, .08);
}

.pass-sheen {
  position: absolute;
  top: -60%;
  left: -30%;
  width: 70%;
  height: 220%;
  background: linear-gradient(115deg, transparent 35%, rgba(255, 255, 255, .14) 50%, transparent 65%);
  transform: rotate(8deg);
  transition: transform .7s var(--ease);
  pointer-events: none;
}

.pass-card:hover .pass-sheen {
  transform: rotate(8deg) translateX(55%);
}

.pass-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}

.pass-chip {
  width: 40px;
  height: 30px;
  border-radius: 6px;
  background: var(--grad-gold);
  position: relative;
  overflow: hidden;
}

.pass-chip::before,
.pass-chip::after {
  content: '';
  position: absolute;
  background: rgba(0, 0, 0, .15);
}

.pass-chip::before {
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
}

.pass-chip::after {
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
}

.pass-brand {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .02em;
  color: rgba(255, 255, 255, .85);
}

.pass-brand span {
  color: var(--amber);
}

.pass-label {
  position: relative;
  z-index: 2;
  margin-top: 20px;
  font-size: 9.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .4);
}

.pass-number {
  position: relative;
  z-index: 2;
  font-family: 'JetBrains Mono', monospace;
  font-size: 17px;
  letter-spacing: .12em;
  color: #fff;
  margin-top: 6px;
}

.pass-bottom {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 22px;
}

.pass-holder-label {
  font-size: 8.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .35);
}

.pass-holder {
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, .85);
  margin-top: 4px;
}

.pass-emblem {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: conic-gradient(from 200deg, var(--amber), var(--violet), #3D7BF7, var(--amber));
  opacity: .9;
}

.pricing-right {
  max-width: 520px;
}

.plan-switch {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 24px;
}

.ps-opt {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  padding: 15px 13px 13px;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  transition: all .25s var(--ease);
}

.ps-opt:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
}

.ps-opt.active {
  border-color: var(--amber);
  background: linear-gradient(160deg, rgba(240, 160, 48, .06), rgba(61, 123, 247, .04));
  box-shadow: 0 8px 24px rgba(240, 160, 48, .14);
}

.ps-opt.active::after {
  content: '';
  position: absolute;
  top: 13px;
  right: 13px;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: var(--amber) url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center/10px no-repeat;
}

.ps-flag {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

.ps-opt.active .ps-flag {
  color: var(--amber-deep);
}

.ps-price {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -1px;
  line-height: 1.15;
}

.ps-sub {
  font-size: 10px;
  color: var(--muted);
  font-weight: 500;
  line-height: 1.35;
}

.ps-tag {
  position: absolute;
  top: -9px;
  left: 14px;
  background: var(--grad-brand);
  color: #fff;
  font-size: 8.5px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 999px;
  white-space: nowrap;
}

.verify-note {
  display: flex;
  gap: 14px;
  align-items: stretch;
  background: linear-gradient(120deg, rgba(240, 160, 48, .07), rgba(61, 123, 247, .06));
  border: 1px dashed rgba(240, 160, 48, .42);
  border-radius: 16px;
  padding: 15px 16px;
  margin-bottom: 22px;
}

.vn-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 56px;
  border-right: 1px dashed rgba(240, 160, 48, .35);
  padding-right: 12px;
}

.vn-off {
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--amber-deep);
  line-height: 1;
  letter-spacing: -1px;
}

.vn-off small {
  font-size: 13px;
}

.vn-off-lbl {
  font-size: 8.5px;
  font-weight: 800;
  letter-spacing: .1em;
  color: var(--amber-deep);
  margin-top: 3px;
}

.vn-body {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 12px;
  color: var(--ink-2);
  line-height: 1.6;
}

.vn-body strong {
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.vn-btn {
  align-self: flex-start;
  margin-top: 6px;
  background: var(--ink);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 8px 15px;
  font-size: 11.5px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: all .22s var(--ease);
}

.vn-btn:hover {
  background: var(--amber-deep);
  transform: translateY(-1px);
  box-shadow: var(--shadow-amber);
}

.verify-note.done {
  border-style: solid;
  border-color: rgba(18, 165, 117, .5);
  background: rgba(18, 165, 117, .06);
}

.verify-note.done .vn-left {
  border-right-color: rgba(18, 165, 117, .4);
}

.verify-note.done .vn-off,
.verify-note.done .vn-off-lbl {
  color: var(--emerald);
}

@media(max-width:720px) {
  .plan-switch {
    grid-template-columns: 1fr;
  }

  .ps-tag {
    left: auto;
    right: 14px;
  }

  .ps-flag {
    font-size: 12px;
  }

  .ps-price {
    font-size: 25px;
  }
}

.price-phase {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(240, 160, 48, .09);
  color: var(--amber-deep);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 6px 13px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}

.price-amount {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 60px;
  letter-spacing: -2px;
  color: var(--ink);
}

.price-rs {
  font-size: 30px;
  color: var(--amber-deep);
}

.price-old {
  font-size: 16px;
  color: var(--muted);
  text-decoration: line-through;
}

.price-save {
  display: inline-block;
  background: rgba(18, 165, 117, .09);
  color: var(--emerald);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 11px;
  border-radius: 999px;
  letter-spacing: .03em;
  margin-bottom: 20px;
}

.pricing-desc {
  color: var(--ink-2);
  font-size: 13.5px;
  line-height: 1.75;
  margin-bottom: 24px;
}

.coupon-note {
  background: var(--bg-alt);
  border: 1px dashed var(--border);
  border-radius: 14px;
  padding: 13px 15px;
  font-size: 12px;
  color: var(--ink-2);
  line-height: 1.6;
  margin-bottom: 24px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.coupon-note svg {
  flex-shrink: 0;
  color: var(--amber-deep);
  margin-top: 1px;
}

.coupon-note strong {
  color: var(--ink);
}

.btn-pay {
  background: var(--ink);
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  padding: 16px 30px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: all .25s var(--ease);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.btn-pay::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-brand);
  opacity: 0;
  transition: opacity .3s;
}

.btn-pay span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.btn-pay:hover::before {
  opacity: 0;
}

.btn-pay:hover {
  background: var(--amber-deep);
  transform: translateY(-1px);
  box-shadow: var(--shadow-amber);
}

.trust-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--muted);
  font-weight: 500;
}

.included-strip {
  max-width: 1000px;
  width: 100%;
  margin-top: 52px;
  border-top: 1px solid var(--border);
  padding-top: 40px;
}

.included-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  color: var(--ink);
  margin-bottom: 24px;
}

.inc-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.inc-pill {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 16px 8px 8px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 999px;
  transition: transform .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
}

.inc-pill:hover {
  transform: translateY(-2px);
  border-color: rgba(18, 165, 117, .4);
  box-shadow: 0 8px 20px rgba(18, 165, 117, .13);
}

.inc-badge {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: var(--ink);
  color: #fff;
  padding: 4px 9px;
  border-radius: 999px;
  white-space: nowrap;
  transition: background .25s var(--ease);
}

.inc-pill:hover .inc-badge {
  background: var(--emerald);
}

.inc-text {
  font-size: 12px;
  color: var(--ink-2);
  font-weight: 500;
  white-space: nowrap;
}

@media(max-width:640px) {
  .inc-text {
    white-space: normal;
  }

  .inc-pill {
    border-radius: var(--r-sm);
  }
}

.faq-section {

  background: var(--bg-alt);
  padding: 78px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.faq-list {
  max-width: 720px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
}

.faq-q {
  padding: 19px 22px;
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: background .15s;
}

.faq-q:hover {
  background: var(--bg-alt);
}

.faq-chevron {
  transition: transform .25s var(--ease);
  flex-shrink: 0;
  color: var(--muted);
}

.faq-q.open .faq-chevron {
  transform: rotate(180deg);
  color: var(--ink);
}

.faq-a {
  display: none;
  padding: 0 22px;
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.7;
}

.faq-a.open {
  display: block;
  padding: 0 22px 20px;
}

.footer-cta {
  background: var(--bg-dark);
  padding: 76px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.footer-cta .mo1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(240, 160, 48, .16), transparent 70%);
  top: -260px;
  left: 20%;
}

.footer-cta h2 {
  position: relative;
  z-index: 2;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: clamp(26px, 4.4vw, 46px);
  color: #fff;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
}

.footer-cta h2 .grad {
  color: var(--amber);
  -webkit-text-fill-color: currentColor;
  background: none;
}

.footer-cta p {
  position: relative;
  z-index: 2;
  color: rgba(255, 255, 255, .45);
  font-size: 15.5px;
  max-width: 460px;
  margin: 0 auto 36px;
}

.footer-bottom {
  background: #fff;
  padding: 32px 44px 24px;
  border-top: 1px solid var(--border);
}

.footer-bottom-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 28px;
}

.footer-brand-col p {
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.6;
  margin-top: 12px;
  max-width: 320px;
}

.footer-col-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 14px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col a {
  font-size: 13px;
  color: var(--ink-2);
  text-decoration: none;
  transition: all .2s;
  padding: 2px 0;
}

.footer-col a:hover {
  color: var(--ink);
  padding-left: 3px;
}

.footer-copy-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--border-soft);
}

.footer-copy {
  font-size: 11.5px;
  color: var(--muted);
  line-height: 1.5;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  color: var(--ink-2);
  text-decoration: none;
  transition: all .2s;
}

.footer-social a:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
  transform: translateY(-2px);
}

.footer-links {
  display: contents;
}

@media(max-width:900px) {
  .footer-bottom-inner {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .footer-brand-col {
    grid-column: 1 / -1;
  }
  .footer-brand-col p {
    max-width: 100%;
  }
}

@media(max-width:520px) {
  .footer-bottom {
    padding: 24px 20px 20px;
  }
  .footer-bottom-inner {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .footer-col-title {
    font-size: 11px;
    margin-bottom: 10px;
  }
  .footer-col a {
    font-size: 12.5px;
  }
  .footer-copy-row {
    flex-direction: column;
    text-align: center;
  }
}

@media(max-width:380px) {
  .footer-bottom-inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .footer-col a {
    font-size: 13px;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media(max-width:960px) {
  .predictor-form {
    grid-template-columns: 1fr 1fr;
  }

  .counselling-card {
    grid-template-columns: 1fr;
  }

  .pricing-layout {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 32px;
  }

  .pass-card {
    position: relative;
    top: auto;
  }
}

@media(max-width:500px) {
  .pricing-layout {
    gap: 24px;
  }

  .pass-card {
    max-width: 100%;
  }
}

@media(max-width:900px) {
  nav {
    padding: 0 20px;
  }

  .nav-links {
    display: none;
  }

  .nav-right {
    gap: 8px;
  }

  .pricing-right {
    max-width: 100%;
  }

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

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

  .premium-strip {
    gap: 16px 22px;
  }

  .pass-card {
    width: 100%;
    max-width: 400px;
  }
}

/* ---------------------------------------------------
   MOBILE NAV (Hamburger)
   --------------------------------------------------- */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 102;
  position: relative;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all .28s var(--ease);
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 112px 0 0;
  z-index: 99;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(18px);
  padding: 24px 20px 32px;
  flex-direction: column;
  gap: 6px;
  overflow-y: auto;
  animation: mmIn .3s var(--ease) both;
}

@keyframes mmIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: none; }
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  display: flex;
  align-items: center;
  padding: 14px 16px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-2);
  text-decoration: none;
  border-radius: 12px;
  transition: all .2s;
  position: relative;
}

.mobile-menu a::after {
  content: '';
  position: absolute;
  right: 16px;
  width: 6px;
  height: 6px;
  border-right: 2px solid var(--border);
  border-bottom: 2px solid var(--border);
  transform: rotate(-45deg);
  opacity: 0;
  transition: all .2s;
}

.mobile-menu a:hover::after,
.mobile-menu a:active::after {
  opacity: 1;
  right: 14px;
}

.mobile-menu a:hover,
.mobile-menu a:active {
  background: var(--bg-alt);
  color: var(--ink);
}

.mobile-menu a.active,
.mobile-menu a[aria-current="page"] {
  background: var(--amber-deep);
  color: #fff;
}

.mobile-menu .nav-cta {
  margin-top: 12px;
  justify-content: center;
  padding: 16px;
  font-size: 15px;
  color: #fff;
}

@media(max-width:900px) {
  .hamburger {
    display: flex;
  }
}

@media(max-width:400px) {
  nav {
    padding: 0 12px;
    height: 64px;
  }

  .nav-right {
    gap: 6px;
  }

  .nav-cta {
    padding: 8px 14px;
    font-size: 12.5px;
  }

  .nav-cta-price {
    display: none;
  }

  .nav-right a#navLogin {
    font-size: 12.5px;
  }

  .logo-badge {
    padding: 3px 10px 3px 3px;
    gap: 6px;
  }

  .logo-word {
    font-size: 13px;
  }

  .logo-mark {
    width: 24px;
    height: 24px;
  }

  .logo-mark svg {
    width: 20px;
    height: 20px;
  }

  .hamburger {
    padding: 4px;
  }

  .hamburger span {
    width: 20px;
  }

  .ticker-bar {
    top: 104px;
  }

  .ticker-spacer {
    height: 130px;
  }

  .mobile-menu {
    inset: 118px 0 0;
    padding: 32px 20px 32px;
  }
}

/* ---------------------------------------------------
   AUTH PAGES (brand-consistent)
   --------------------------------------------------- */
.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px 60px;
  position: relative;
}

.auth-card {
  width: 100%;
  max-width: 420px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 2;
}

.auth-card-title {
  font-family: 'Outfit', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: -.5px;
}

.auth-card-sub {
  font-size: 14px;
  color: var(--ink-2);
  margin-bottom: 28px;
  line-height: 1.5;
}

.auth-field {
  margin-bottom: 18px;
}

.auth-field label {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}

.auth-field input {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  background: #fff;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}

.auth-field input:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(28,31,38,.06);
}

.auth-field input.error {
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(228,86,99,.1);
}

.auth-field input.success {
  border-color: var(--emerald);
  box-shadow: 0 0 0 3px rgba(18,165,117,.1);
}

.auth-field .field-msg {
  font-size: 11.5px;
  font-weight: 500;
  margin-top: 5px;
  display: none;
}

.auth-field .field-msg.error {
  display: block;
  color: var(--rose);
}

.auth-field .field-msg.success {
  display: block;
  color: var(--emerald);
}

.auth-btn {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--ink);
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 20px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: all .25s var(--ease);
  text-decoration: none;
  font-family: inherit;
  position: relative;
  overflow: hidden;
}

.auth-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-brand);
  opacity: 0;
  transition: opacity .3s;
}

.auth-btn span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.auth-btn:hover::before {
  opacity: 0;
}

.auth-btn:hover {
  background: var(--amber-deep);
  transform: translateY(-1px);
  box-shadow: var(--shadow-amber);
}

.auth-error {
  background: var(--red-pale);
  color: var(--rose);
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.4;
}

.auth-success {
  background: var(--green-pale);
  color: var(--emerald);
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.4;
}

.auth-link {
  display: block;
  text-align: center;
  margin-top: 22px;
  font-size: 13.5px;
  color: var(--ink-2);
  text-decoration: none;
  font-weight: 500;
  transition: color .2s;
}

.auth-link:hover {
  color: var(--ink);
}

/* OTP input special styling */
.auth-otp input {
  font-family: 'JetBrains Mono', monospace;
  font-size: 28px;
  text-align: center;
  letter-spacing: 8px;
  padding: 14px;
}

@media(max-width:500px) {
  .auth-page .mesh-orb {
    display: none;
  }
  .auth-card {
    padding: 28px 22px;
  }
  .auth-card-title {
    font-size: 22px;
  }
  .auth-card-sub {
    font-size: 13px;
    margin-bottom: 20px;
  }
  .auth-field {
    margin-bottom: 14px;
  }
  .auth-field input {
    padding: 10px 12px;
    font-size: 14px;
  }
  .auth-btn {
    padding: 12px 16px;
    font-size: 14px;
  }
  .auth-error {
    padding: 10px 12px;
    font-size: 12px;
    gap: 6px;
  }
}

@media(max-width:380px) {
  .auth-page {
    padding: 30px 12px;
  }
  .auth-card {
    padding: 20px 16px;
    border-radius: 14px;
  }
  .auth-card-title {
    font-size: 20px;
  }
  .auth-card-sub {
    font-size: 12px;
  }
  .auth-field input {
    padding: 9px 11px;
    font-size: 13px;
  }
}

/* ---------------------------------------------------
   CHART LOADING SKELETON
   --------------------------------------------------- */
.chart-skeleton {
  display: flex;
  flex-direction: column;
  gap: 8px;
  height: 340px;
  padding: 20px 0;
}

.chart-skeleton .sk-row {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 100%;
}

.chart-skeleton .sk-bar {
  flex: 1;
  height: 100%;
  background: linear-gradient(90deg, var(--bg-alt) 25%, var(--border-soft) 50%, var(--bg-alt) 75%);
  background-size: 200% 100%;
  animation: skShimmer 1.8s ease-in-out infinite;
  border-radius: 4px;
}

.chart-skeleton .sk-label {
  width: 60px;
  height: 10px;
  background: var(--border-soft);
  border-radius: 3px;
  flex-shrink: 0;
}

.chart-skeleton .sk-x {
  display: flex;
  justify-content: space-around;
  margin-top: 6px;
}

.chart-skeleton .sk-x span {
  width: 40px;
  height: 8px;
  background: var(--border-soft);
  border-radius: 3px;
  animation: skShimmer 1.8s ease-in-out infinite;
  background-size: 200% 100%;
  background: linear-gradient(90deg, var(--bg-alt) 25%, var(--border-soft) 50%, var(--bg-alt) 75%);
  background-size: 200% 100%;
}

@keyframes skShimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ---------------------------------------------------
   BETTER LOCKED CELLS
   --------------------------------------------------- */
td.locked {
  position: relative;
  color: transparent;
  -webkit-user-select: none;
  user-select: none;
}

td.locked::after {
  content: '🔒';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--muted);
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 4px,
    rgba(28,31,38,.02) 4px,
    rgba(28,31,38,.02) 8px
  );
}

td.locked .lock-blur {
  filter: blur(4px);
  opacity: .5;
  display: inline-block;
}

/* ---------------------------------------------------
   FORM VALIDATION VISUAL FEEDBACK
   --------------------------------------------------- */
.field-hint {
  font-size: 11px;
  color: var(--muted);
  margin-top: 4px;
  display: none;
}

.field-hint.visible {
  display: block;
}

/* ---------------------------------------------------
   COUNTDOWN HIDDEN STATE
   --------------------------------------------------- */
.countdown.hidden {
  display: none;
}

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

  .mock-cards {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .predictor-form {
    grid-template-columns: 1fr;
  }

  .predictor-card {
    padding: 26px 20px;
  }

  .chart-controls {
    flex-direction: column;
    align-items: stretch;
  }

  .cc-field select {
    min-width: 0;
    width: 100%;
  }

  .h-stat {
    padding: 16px 20px;
    min-width: 100px;
  }

  .pass-number {
    font-size: 14px;
    letter-spacing: .08em;
    white-space: nowrap;
  }
}

/* ---------------------------------------------------
   CHECKOUT PAGE
   --------------------------------------------------- */
.checkout-page {
  padding: 60px 24px 60px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: start;
  position: relative;
  z-index: 2;
}

.checkout-title {
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -.5px;
  margin-bottom: 4px;
}

.checkout-sub {
  font-size: 14px;
  color: var(--ink-2);
  margin-bottom: 28px;
}

.ch-section-label {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ch-section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.ch-field {
  margin-bottom: 16px;
}

.ch-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.ch-field label {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 5px;
}

.ch-field input,
.ch-field select {
  width: 100%;
  padding: 11px 13px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  font-family: inherit;
  font-size: 14px;
  color: var(--ink);
  background: #fff;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}

.ch-field select {
  cursor: pointer;
}

.ch-field input:focus,
.ch-field select:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(28,31,38,.06);
}

.ch-field input.error {
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(228,86,99,.1);
}

.ch-field input.success {
  border-color: var(--emerald);
  box-shadow: 0 0 0 3px rgba(18,165,117,.1);
}

.ch-field .field-msg {
  font-size: 11px;
  font-weight: 500;
  margin-top: 4px;
  min-height: 0;
}

.ch-field .field-msg.error {
  color: var(--rose);
}

/* Plan cards in checkout */
.ch-plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 24px;
}

.ch-plan-btn {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  padding: 14px 13px 12px;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  transition: all .25s var(--ease);
}

.ch-plan-btn:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
}

.ch-plan-btn.active {
  border-color: var(--amber);
  background: linear-gradient(160deg, rgba(240,160,48,.06), rgba(61,123,247,.04));
  box-shadow: 0 8px 24px rgba(240,160,48,.14);
}

.ch-plan-btn.active::after {
  content: '';
  position: absolute;
  top: 10px;
  right: 10px;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: var(--amber) url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center/10px no-repeat;
}

.ch-plan-flag {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

.ch-plan-btn.active .ch-plan-flag {
  color: var(--amber-deep);
}

.ch-plan-price {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -.5px;
  line-height: 1.15;
}

.ch-plan-sub {
  font-size: 9.5px;
  color: var(--muted);
  font-weight: 500;
  line-height: 1.3;
}

.ch-plan-tag {
  position: absolute;
  top: -9px;
  left: 12px;
  background: var(--grad-brand);
  color: #fff;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 999px;
  white-space: nowrap;
}

/* Order summary card (right column) */
.order-summary {
  position: relative;
  background: var(--grad-card);
  border-radius: var(--r-xl);
  padding: 32px 28px;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: var(--shadow-lg);
}

@media(min-width:961px) {
  .order-summary {
    position: sticky;
    top: 160px;
  }
}

.order-summary .mesh-orb {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(240,160,48,.2), transparent 70%);
  top: -100px;
  right: -80px;
  opacity: .6;
}

.order-summary-inner {
  position: relative;
  z-index: 2;
}

.os-title {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 20px;
}

.os-plan-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.os-plan-name {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
}

.os-plan-amount {
  font-family: 'JetBrains Mono', monospace;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}

.os-original {
  font-size: 12px;
  color: rgba(255,255,255,.35);
  text-decoration: line-through;
  margin-left: 6px;
}

.os-discount {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  font-size: 13px;
  color: var(--emerald);
}

.os-discount span {
  opacity: .85;
}

.os-discount strong {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
}

.os-addon-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  font-size: 13px;
  color: var(--accent, #6C5CE7);
}

.os-addon-row span {
  opacity: .85;
}

.os-addon-row strong {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
}

.os-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0 6px;
}

.os-total-label {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -.3px;
}

.os-total-amount {
  font-family: 'JetBrains Mono', monospace;
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -.5px;
}

.os-included {
  margin-top: 0;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.07);
}

.os-included-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,.5);
  padding: 4px 0;
}

.os-included-item svg {
  width: 13px;
  height: 13px;
  color: var(--emerald);
  flex-shrink: 0;
}

.os-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 18px;
  font-size: 11px;
  color: rgba(255,255,255,.35);
}

.btn-checkout {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background: var(--ink);
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  padding: 16px 20px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: all .25s var(--ease);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  font-family: inherit;
}

.btn-checkout::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-brand);
  opacity: 0;
  transition: opacity .3s;
}

.btn-checkout span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.btn-checkout:hover::before {
  opacity: 0;
}

.btn-checkout:hover {
  background: var(--amber-deep);
  transform: translateY(-1px);
  box-shadow: var(--shadow-amber);
}

.btn-checkout:disabled {
  opacity: .6;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

.btn-checkout.loading {
  pointer-events: none;
}

.ch-form-error {
  display: none;
  align-items: center;
  gap: 8px;
  background: var(--red-pale);
  color: var(--rose);
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.4;
}

.ch-form-error svg {
  flex-shrink: 0;
}

/* Coupon section in order summary */
.os-addon {
  margin: 18px 0 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.07);
}

.os-addon-header {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.os-addon-header svg {
  opacity: .6;
}

.os-addon-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1.5px solid rgba(255,255,255,.08);
  border-radius: 12px;
  cursor: pointer;
  transition: border-color .2s, background .2s;
  user-select: none;
}

.os-addon-item:hover {
  border-color: rgba(255,255,255,.18);
  background: rgba(255,255,255,.03);
}

.os-addon-item input[type="checkbox"] {
  display: none;
}

.os-addon-check {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,.2);
  border-radius: 5px;
  flex-shrink: 0;
  transition: border-color .2s, background .2s;
  position: relative;
}

.os-addon-item input[type="checkbox"]:checked + .os-addon-check {
  border-color: var(--accent, #6C5CE7);
  background: var(--accent, #6C5CE7);
}

.os-addon-item input[type="checkbox"]:checked + .os-addon-check::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 2px;
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.os-addon-text {
  flex: 1;
  font-size: 13px;
  color: #fff;
  font-weight: 500;
}

.os-addon-price {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent, #6C5CE7);
}

.os-coupon {
  margin: 18px 0 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.07);
}

.os-coupon-header {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.os-coupon-header svg {
  opacity: .6;
}

.os-coupon-body {
  transition: opacity .2s;
}

.os-coupon-row {
  display: flex;
  gap: 6px;
}

.os-coupon-row input {
  flex: 1;
  padding: 9px 12px;
  border: 1.5px solid rgba(255,255,255,.1);
  border-radius: 10px;
  font-family: inherit;
  font-size: 13px;
  color: #fff;
  background: rgba(255,255,255,.04);
  outline: none;
  transition: border-color .2s, background .2s;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.os-coupon-row input::placeholder {
  color: rgba(255,255,255,.25);
  text-transform: none;
  letter-spacing: normal;
}

.os-coupon-row input:focus {
  border-color: rgba(255,255,255,.25);
  background: rgba(255,255,255,.07);
}

.os-coupon-row button {
  padding: 9px 18px;
  border: none;
  border-radius: 10px;
  background: var(--grad-brand);
  color: #fff;
  font-family: inherit;
  font-size: 12.5px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity .2s, transform .15s;
  white-space: nowrap;
  letter-spacing: .02em;
}

.os-coupon-row button:hover {
  opacity: .88;
}

.os-coupon-row button:active {
  transform: scale(.96);
}

.os-coupon-msg {
  font-size: 11px;
  font-weight: 500;
  margin-top: 6px;
  min-height: 0;
  color: var(--emerald);
  transition: color .2s;
}

.os-coupon-msg.error {
  color: var(--rose);
}

.os-coupon-applied {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  background: rgba(18,165,117,.08);
  border: 1px solid rgba(18,165,117,.2);
  border-radius: 10px;
  font-size: 12px;
  color: var(--emerald);
  animation: cpnFadeIn .25s ease;
}

.os-coupon-applied svg {
  flex-shrink: 0;
}

.os-coupon-applied span {
  flex: 1;
  font-weight: 500;
}

.os-coupon-applied button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 2px;
  color: rgba(255,255,255,.3);
  transition: color .2s;
  line-height: 0;
  flex-shrink: 0;
}

.os-coupon-applied button:hover {
  color: var(--rose);
}

@keyframes cpnFadeIn {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Coupon discount row (merged with coaching discount style) */
.os-cpn-discount {
  border-bottom: 1px solid rgba(255,255,255,.07) !important;
}

.os-cpn-tag {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .05em;
  padding: 1px 6px;
  border-radius: 4px;
  background: rgba(18,165,117,.15);
  color: var(--emerald);
  margin-left: 4px;
  vertical-align: middle;
}

/* Coaching verification on checkout */
.ch-coach-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: rgba(240,160,48,.06);
  border: 1px dashed rgba(240,160,48,.3);
  border-radius: 12px;
  margin-bottom: 20px;
  cursor: pointer;
  font-size: 12.5px;
  color: var(--ink-2);
  transition: all .2s;
}

.ch-coach-toggle:hover {
  background: rgba(240,160,48,.1);
  border-color: rgba(240,160,48,.5);
}

.ch-coach-toggle.active {
  border-style: solid;
  border-color: rgba(18,165,117,.4);
  background: rgba(18,165,117,.06);
}

.ch-coach-toggle input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--emerald);
  cursor: pointer;
  flex-shrink: 0;
}

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

@media(max-width:768px) {
  .checkout-page .mesh-orb,
  .order-summary .mesh-orb {
    display: none;
  }
  .checkout-page {
    padding: 40px 20px 50px;
  }
  .checkout-grid {
    gap: 28px;
  }
  .checkout-title {
    font-size: 26px;
  }
  .order-summary {
    padding: 28px 24px;
  }
  .ch-plan-btn {
    padding: 12px 11px;
  }
  .ch-plan-price {
    font-size: 18px;
  }
}

@media(max-width:600px) {
  .checkout-page .mesh-orb,
  .order-summary .mesh-orb {
    display: none;
  }
  .ch-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .ch-plans {
    grid-template-columns: 1fr;
  }
  .checkout-page {
    padding: 30px 14px 50px;
  }
  .checkout-title {
    font-size: 24px;
  }
  .checkout-sub {
    font-size: 13px;
    margin-bottom: 20px;
  }
  .ch-section-label {
    margin-bottom: 10px;
  }
  .ch-field {
    margin-bottom: 14px;
  }
  .ch-field input,
  .ch-field select {
    padding: 10px 12px;
    font-size: 14px;
  }
  .ch-plan-btn {
    padding: 12px 11px;
  }
  .ch-plan-price {
    font-size: 18px;
  }
  .ch-plan-sub {
    font-size: 9px;
  }
  .ch-terms-label {
    font-size: 12px;
  }
  .order-summary {
    padding: 20px 16px;
  }
  .os-total-amount {
    font-size: 22px;
  }
  .os-coupon {
    margin: 12px 0 12px;
    padding-top: 10px;
  }
  .os-coupon-row input {
    padding: 8px 10px;
    font-size: 12px;
  }
  .os-coupon-row button {
    padding: 8px 14px;
    font-size: 11.5px;
  }
  .os-coupon-applied {
    padding: 7px 10px;
    font-size: 11px;
  }
  .os-included-item {
    font-size: 11px;
    padding: 3px 0;
  }
  .os-discount {
    padding: 10px 0;
    font-size: 12px;
  }
  .os-plan-row {
    padding: 12px 0;
  }
  .os-plan-name {
    font-size: 14px;
  }
  .os-addon {
    margin: 14px 0 12px;
    padding-top: 10px;
  }
  .os-addon-item {
    padding: 8px 10px;
    font-size: 12px;
  }
  .btn-checkout {
    padding: 14px 16px;
    font-size: 14px;
  }
}

@media(max-width:400px) {
  .checkout-page {
    padding: 20px 10px 40px;
  }
  .checkout-title {
    font-size: 20px;
  }
  .checkout-sub {
    font-size: 12px;
  }
  .ch-field input,
  .ch-field select {
    padding: 9px 11px;
    font-size: 13px;
  }
  .ch-plan-btn {
    padding: 10px 10px;
  }
  .ch-plan-price {
    font-size: 17px;
  }
  .ch-plan-tag {
    font-size: 7px;
    padding: 2px 6px;
    top: -8px;
    left: 10px;
  }
  .order-summary {
    padding: 16px 12px;
    border-radius: 16px;
  }
  .os-total-amount {
    font-size: 20px;
  }
  .os-plan-name {
    font-size: 13px;
  }
  .os-plan-amount {
    font-size: 13px;
  }
  .btn-checkout {
    padding: 12px 14px;
    font-size: 13px;
  }
}

/* ============================================================
   LEGAL / POLICY PAGES
   ============================================================ */
.legal-page {
  padding: 100px 24px 80px;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.legal-container {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 48px;
  position: relative;
  z-index: 2;
}

.legal-header {
  text-align: center;
  margin-bottom: 48px;
}

.legal-header .section-title {
  margin-top: 8px;
}

.legal-content h2,
.legal-section h2 {
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--ink);
  margin-top: 40px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--border-soft);
}

.legal-content h3,
.legal-section h3 {
  font-size: var(--fs-md);
  font-weight: 600;
  color: var(--ink-2);
  margin-top: 28px;
  margin-bottom: 12px;
}

.legal-content p,
.legal-section p {
  font-size: var(--fs-base);
  line-height: 1.7;
  color: var(--ink-2);
  margin-bottom: 16px;
}

.legal-content ul,
.legal-section ul {
  margin: 0 0 20px 20px;
  padding: 0;
}

.legal-content ul li,
.legal-section ul li {
  font-size: var(--fs-base);
  line-height: 1.7;
  color: var(--ink-2);
  margin-bottom: 6px;
  list-style: disc;
}

.legal-date {
  font-size: var(--fs-sm);
  color: var(--muted);
  margin-bottom: 24px;
}

.legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.legal-nav-link {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--ink-2);
  text-decoration: none;
  padding: 6px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  transition: all .2s;
}

.legal-nav-link:hover {
  background: var(--bg-alt);
  color: var(--ink);
  border-color: var(--amber);
}

.legal-section {
  margin-bottom: 60px;
}

.legal-section:last-child {
  margin-bottom: 0;
}

/* Checkout Terms Checkbox */
.ch-terms {
  margin-top: 16px;
}

.ch-terms-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: var(--fs-sm);
  color: var(--ink-2);
  line-height: 1.5;
  cursor: pointer;
}

.ch-terms-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 2px;
  accent-color: var(--amber);
  cursor: pointer;
}

.ch-terms-label a {
  color: var(--blue);
  text-decoration: underline;
}

.ch-terms-msg {
  font-size: var(--fs-xs);
  color: var(--red);
  margin-top: 4px;
  margin-left: 28px;
  display: none;
}

.ch-terms-msg.error {
  display: block;
}

@media (max-width: 768px) {
  .legal-page {
    padding: 80px 16px 60px;
  }
  .legal-container {
    padding: 28px 20px;
  }
  .legal-nav {
    gap: 6px;
    margin-bottom: 32px;
    padding-bottom: 16px;
  }
  .legal-nav-link {
    font-size: 11.5px;
    padding: 4px 12px;
  }
  .legal-header {
    margin-bottom: 32px;
  }
  .legal-content h2,
  .legal-section h2 {
    font-size: 18px;
    margin-top: 32px;
    margin-bottom: 12px;
  }
  .legal-content h3,
  .legal-section h3 {
    font-size: 15px;
    margin-top: 22px;
    margin-bottom: 10px;
  }
  .legal-content p,
  .legal-section p {
    font-size: 14px;
  }
  .legal-content ul li,
  .legal-section ul li {
    font-size: 14px;
  }
  .legal-section {
    margin-bottom: 40px;
  }
}

@media (max-width: 400px) {
  .legal-page {
    padding: 72px 12px 48px;
  }
  .legal-container {
    padding: 20px 16px;
    border-radius: 16px;
  }
  .legal-nav-link {
    font-size: 10.5px;
    padding: 3px 10px;
  }
  .legal-content h2,
  .legal-section h2 {
    font-size: 16px;
    margin-top: 24px;
  }
  .legal-content h3,
  .legal-section h3 {
    font-size: 14px;
    margin-top: 18px;
  }
  .legal-content p,
  .legal-section p {
    font-size: 13.5px;
  }
  .legal-content ul li,
  .legal-section ul li {
    font-size: 13.5px;
  }
}

/* ---------------------------------------------------
   COOKIE BANNER
   --------------------------------------------------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 14px 24px;
  background: var(--bg-dark);
  color: rgba(255,255,255,.85);
  font-size: 13px;
  box-shadow: 0 -4px 20px rgba(0,0,0,.15);
  animation: cbIn .4s var(--ease);
}

@keyframes cbIn {
  from { transform: translateY(100%); }
  to { transform: none; }
}

.cookie-banner p {
  margin: 0;
}

.cookie-banner a {
  color: var(--amber);
  text-decoration: underline;
  font-weight: 600;
}

.cookie-banner a:hover {
  color: var(--amber-deep);
}

.cookie-banner button {
  flex-shrink: 0;
  background: var(--amber);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all .22s var(--ease);
}

.cookie-banner button:hover {
  background: var(--amber-deep);
  transform: translateY(-1px);
}

.cookie-banner.hidden {
  display: none;
}

@media(max-width:640px) {
  .cookie-banner {
    flex-direction: column;
    text-align: center;
    padding: 16px 20px 20px;
    gap: 10px;
    font-size: 12.5px;
  }
  .cookie-banner button {
    width: 100%;
    padding: 10px 20px;
    font-size: 13.5px;
  }
  .cookie-banner p {
    line-height: 1.5;
  }
}