/* ============================================
   SHOCKED — affiliate landing page styles
   ============================================ */

/* Self-hosted variable fonts (latin subset, 104KB total for all three).
   Replaces a render-blocking Google Fonts request plus two extra DNS
   lookups and TLS handshakes. `swap` means text paints immediately in
   the fallback rather than sitting invisible. */
@font-face {
  font-family: 'Inter';
  src: url('assets/fonts/inter.woff2') format('woff2-variations');
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Space Grotesk';
  src: url('assets/fonts/space-grotesk.woff2') format('woff2-variations');
  font-weight: 500 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'JetBrains Mono';
  src: url('assets/fonts/jetbrains-mono.woff2') format('woff2-variations');
  font-weight: 500 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #07080a;
  --bg-subtle: #0b0d11;
  --bg-card: #101318;
  --bg-card-hover: #161a21;
  --border: #1b2029;
  --border-light: #29313d;

  --text: #e9edf3;
  --text-muted: #8a94a4;
  --text-dim: #59626f;

  --accent: #ffd400;          /* Shocked gold, sampled from the logo */
  --accent-light: #ffe24d;
  --accent-dark: #d9b400;
  --accent-glow: rgba(255, 212, 0, 0.22);
  --on-accent: #120e02;

  /* Shocked brand colourways, sampled from the official roundels */
  --gold: #ffd400;            /* reselling */
  --cyan: #00cbff;            /* trading */
  --silver: #f3f3f3;          /* utilities */

  --blue: #5b8cff;

  --font-display: 'Space Grotesk', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

  --radius: 14px;
  --radius-sm: 10px;
  --radius-lg: 22px;
  --max-w: 1180px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

a { color: var(--accent); text-decoration: none; transition: color .2s; }
a:hover { color: var(--accent-light); }

h1, h2, h3, h4 { font-family: var(--font-display); letter-spacing: -0.02em; line-height: 1.1; }

::selection { background: var(--accent); color: var(--on-accent); }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 780px; }

.gradient-text {
  background: linear-gradient(105deg, var(--accent) 0%, var(--accent-light) 45%, #fff3b0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pulse-dot {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 var(--accent-glow);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255,212,0,.5); }
  70%  { box-shadow: 0 0 0 8px rgba(255,212,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,212,0,0); }
}

/* ---------- NAV ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(7, 8, 10, .78);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s;
}
.nav.scrolled { border-bottom-color: var(--border); background: rgba(7,8,10,.92); }

.nav-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
  height: 68px; display: flex; align-items: center; justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-weight: 700; font-size: 1.15rem; letter-spacing: .06em;
  color: var(--text); display: flex; align-items: center; gap: 9px;
}
.nav-logo:hover { color: var(--text); }
.logo-mark {
  width: 30px; height: 30px; display: block; flex-shrink: 0;
  filter: drop-shadow(0 0 10px rgba(255, 212, 0, .28));
}

.nav-links { display: flex; gap: 30px; }
.nav-links a { color: var(--text-muted); font-size: .9rem; font-weight: 500; }
.nav-links a:hover { color: var(--text); }

.nav-cta-group { display: flex; gap: 14px; align-items: center; }
.nav-link-plain { color: var(--text-muted); font-size: .88rem; font-weight: 500; }
.nav-link-plain:hover { color: var(--text); }

.nav-cta {
  font-size: .87rem; font-weight: 700;
  background: var(--accent); color: var(--on-accent);
  padding: 9px 20px; border-radius: 100px;
  transition: all .2s;
}
.nav-cta:hover { background: var(--accent-light); color: var(--on-accent); box-shadow: 0 0 24px var(--accent-glow); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--text-muted); border-radius: 2px; transition: all .3s; }

.mobile-menu { display: none; flex-direction: column; padding: 12px 24px 26px; gap: 6px; border-top: 1px solid var(--border); }
.mobile-menu a { color: var(--text-muted); font-size: 1rem; font-weight: 500; padding: 10px 0; }
.mobile-menu .btn { margin-top: 10px; justify-content: center; color: var(--on-accent); }
.mobile-menu.open { display: flex; }

@media (max-width: 900px) {
  .nav-links, .nav-cta-group { display: none; }
  .nav-toggle { display: flex; }
}

/* ---------- HERO ---------- */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  padding: 130px 24px 90px; overflow: hidden;
}
.hero::after {
  content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(ellipse 70% 55% at 50% 42%, transparent 20%, var(--bg) 100%);
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg canvas { width: 100%; height: 100%; display: block; opacity: .55; }

.hero-content { position: relative; z-index: 2; text-align: center; max-width: 860px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .8rem; font-weight: 600; letter-spacing: .02em;
  color: var(--text-muted);
  background: rgba(255,212,0,.05);
  border: 1px solid rgba(255,212,0,.2);
  padding: 8px 18px; border-radius: 100px; margin-bottom: 30px;
}

.hero h1 {
  font-size: clamp(2.1rem, 7.5vw, 5rem);
  font-weight: 700; line-height: 1.04; letter-spacing: -.035em; margin-bottom: 26px;
  text-wrap: balance;
}

.hero-sub {
  font-size: 1.12rem; color: var(--text-muted);
  max-width: 620px; margin: 0 auto 38px; line-height: 1.72;
}
.hero-sub strong { color: var(--text); font-weight: 600; }

.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 60px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-sans); font-weight: 700; font-size: .95rem;
  padding: 14px 28px; border-radius: 100px;
  transition: all .25s; cursor: pointer; border: none; white-space: nowrap;
}
.btn-arrow { width: 17px; height: 17px; transition: transform .25s; }
.btn:hover .btn-arrow { transform: translateX(3px); }

.btn-primary { background: var(--accent); color: var(--on-accent); box-shadow: 0 0 34px var(--accent-glow); }
.btn-primary:hover { background: var(--accent-light); color: var(--on-accent); box-shadow: 0 0 54px var(--accent-glow); transform: translateY(-2px); }

.btn-outline { background: transparent; color: var(--text); border: 1px solid var(--border-light); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); background: rgba(255,212,0,.05); }

.btn-lg { padding: 16px 34px; font-size: 1.02rem; }
.btn-block { display: flex; width: 100%; }

/* Hero stats */
.hero-stats { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; align-items: center; padding: 0 30px; }
.stat-value { font-family: var(--font-mono); font-size: 1.5rem; font-weight: 700; color: var(--text); }
.stat-star { color: var(--accent); margin-left: 2px; }
.stat-label { font-size: .74rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: .08em; margin-top: 2px; }
.stat-divider { width: 1px; height: 36px; background: var(--border); }

@media (max-width: 700px) {
  .hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 0; max-width: 320px; margin: 0 auto; }
  .stat { padding: 0; }
  .stat-divider { display: none; }
  .hero-actions { margin-bottom: 44px; }
}

.scroll-hint {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  z-index: 2; width: 22px; height: 34px; border: 1.5px solid var(--border-light);
  border-radius: 12px; display: flex; justify-content: center; padding-top: 6px;
}
.scroll-hint span { width: 3px; height: 6px; border-radius: 2px; background: var(--accent); animation: scrolldot 1.8s infinite; }
@keyframes scrolldot { 0% { opacity: 0; transform: translateY(0); } 40% { opacity: 1; } 100% { opacity: 0; transform: translateY(12px); } }
@media (max-width: 700px) { .scroll-hint { display: none; } }

/* ---------- TICKER ---------- */
.ticker {
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: var(--bg-subtle); overflow: hidden; padding: 14px 0;
}
.ticker-track { display: flex; gap: 26px; align-items: center; width: max-content; animation: marquee 38s linear infinite; }
.ticker-item {
  font-family: var(--font-mono); font-size: .76rem; font-weight: 700;
  letter-spacing: .14em; color: var(--text-dim); text-transform: uppercase; white-space: nowrap;
}
.ticker-dot { color: var(--accent); font-size: .7rem; opacity: .7; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- HERO TRIAL LINE ---------- */
.hero-trial {
  margin: -40px auto 44px; font-size: .84rem; color: var(--text-dim);
}
.hero-trial::before { content: '✓ '; color: var(--accent); font-weight: 700; }
@media (max-width: 700px) { .hero-trial { margin: -26px auto 34px; } }

/* ---------- PRESS ---------- */
.press { padding: 64px 0; background: var(--bg-subtle); border-bottom: 1px solid var(--border); }
.press-inner { display: grid; grid-template-columns: 1.35fr 1fr; gap: 48px; align-items: center; }
@media (max-width: 900px) { .press-inner { grid-template-columns: 1fr; gap: 32px; } }

.press-quote { position: relative; padding-left: 46px; }
.press-mark {
  position: absolute; left: 0; top: -18px;
  font-family: var(--font-display); font-size: 4.5rem; line-height: 1;
  color: var(--accent); opacity: .35;
}
.press-quote blockquote {
  font-family: var(--font-display); font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 500; line-height: 1.5; color: var(--text-muted); margin-bottom: 14px;
}
.press-hl { color: var(--text); }
.press-quote cite { font-style: normal; font-size: .82rem; color: var(--text-dim); }
.press-quote cite a { color: var(--text-muted); text-decoration: underline; text-underline-offset: 3px; }
.press-quote cite a:hover { color: var(--accent); }

.press-stats { display: flex; gap: 14px; }
@media (max-width: 560px) { .press-stats { flex-direction: column; } }
.press-stat {
  flex: 1; background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 16px 14px; text-align: center;
}
.press-stat b {
  display: block; font-family: var(--font-display); font-size: 1.35rem;
  font-weight: 700; color: var(--accent); letter-spacing: -.02em;
}
.press-stat span { font-size: .7rem; color: var(--text-dim); line-height: 1.4; display: block; margin-top: 4px; }

/* ---------- SECTIONS ---------- */
.section { padding: 110px 0; position: relative; }
.section-dark { background: var(--bg-subtle); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.section-head { max-width: 720px; margin: 0 auto 64px; text-align: center; }
.eyebrow {
  font-family: var(--font-mono); font-size: .74rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase; color: var(--accent);
  margin-bottom: 16px;
}
.eyebrow-lime { color: var(--accent); }
.eyebrow-violet { color: var(--silver); opacity: .75; }
.section-head h2 { font-size: clamp(1.75rem, 4.6vw, 3.1rem); font-weight: 700; margin-bottom: 18px; text-wrap: balance; }
.section-sub { color: var(--text-muted); font-size: 1.05rem; line-height: 1.75; }
.section-sub-left { margin-bottom: 28px; }

/* ---------- SERVERS ---------- */
.servers-grid { display: grid; grid-template-columns: 1.25fr 1fr 1fr; gap: 20px; }
@media (max-width: 940px) { .servers-grid { grid-template-columns: 1fr; } }

.server-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 30px 28px 32px;
  display: flex; flex-direction: column;
  transition: border-color .28s, transform .28s, background .28s;
}
.server-card:hover { border-color: var(--border-light); background: var(--bg-card-hover); transform: translateY(-3px); }

/* Reselling card carries the gold colourway of its own roundel */
.server-primary { border-color: rgba(255,212,0,.32); background: linear-gradient(170deg, rgba(255,212,0,.06), var(--bg-card) 55%); }
.server-primary:hover { border-color: rgba(255,212,0,.55); }

.server-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; min-height: 56px; }
.server-logo {
  width: 56px; height: 56px; display: block; flex-shrink: 0;
  transition: transform .3s, filter .3s;
}
.server-card:nth-child(1) .server-logo { filter: drop-shadow(0 0 14px rgba(255,212,0,.3)); }
.server-card:nth-child(2) .server-logo { filter: drop-shadow(0 0 14px rgba(0,203,255,.3)); }
.server-card:nth-child(3) .server-logo { filter: drop-shadow(0 0 14px rgba(255,255,255,.18)); }
.server-card:hover .server-logo { transform: scale(1.06) rotate(-3deg); }

.server-tag {
  font-family: var(--font-mono); font-size: .66rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 5px 11px; border-radius: 100px;
}
.tag-lime { background: rgba(255,212,0,.13); color: var(--gold); }

/* per-server bullet + link colour, matching each roundel */
.server-card:nth-child(1) .server-list li::before { background: var(--gold); }
.server-card:nth-child(2) .server-list li::before { background: var(--cyan); opacity: .75; }
.server-card:nth-child(3) .server-list li::before { background: var(--silver); opacity: .55; }
.server-card:nth-child(1) .server-link { color: var(--gold); }
.server-card:nth-child(2):hover { border-color: rgba(0,203,255,.35); }
.server-card:nth-child(3):hover { border-color: rgba(255,255,255,.22); }

.server-card h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 12px; }
.server-desc { color: var(--text-muted); font-size: .95rem; margin-bottom: 22px; }

.server-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 22px; }
.server-list li { position: relative; padding-left: 22px; font-size: .92rem; color: var(--text); }
.server-list li::before {
  content: ''; position: absolute; left: 0; top: .55em;
  width: 6px; height: 6px; border-radius: 50%; background: var(--accent); opacity: .8;
}

.server-link { margin-top: auto; font-size: .88rem; font-weight: 600; }

/* ---------- FEATURE GRID ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 1000px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .feature-grid { grid-template-columns: 1fr; } }

.feature-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 26px 22px;
  transition: border-color .25s, transform .25s;
}
.feature-card:hover { border-color: var(--border-light); transform: translateY(-3px); }
.feature-icon {
  width: 38px; height: 38px; border-radius: 10px; margin-bottom: 16px;
  background: rgba(255,212,0,.09); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
}
.feature-icon svg { width: 19px; height: 19px; }
.feature-card h4 { font-size: 1.03rem; font-weight: 600; margin-bottom: 8px; }
.feature-card p { font-size: .89rem; color: var(--text-muted); line-height: 1.65; }
.feature-card em { color: var(--text); font-style: italic; }

/* The two speed cards lead the grid */
.feature-wide { grid-column: span 2; border-color: rgba(255,212,0,.26); background: linear-gradient(160deg, rgba(255,212,0,.05), var(--bg-card) 60%); }
.feature-wide h4 { font-size: 1.18rem; }
.feature-wide p { font-size: .94rem; }
@media (max-width: 560px) { .feature-wide { grid-column: span 1; } }

/* ---------- DEAL CAROUSEL ---------- */
.carousel { position: relative; }

.carousel-track {
  display: flex; gap: 18px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  scrollbar-width: none; -ms-overflow-style: none;
  padding: 4px 4px 12px;
  scroll-padding-left: 4px;
}
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-track.dragging { scroll-snap-type: none; cursor: grabbing; }

.deal-card {
  flex: 0 0 356px; scroll-snap-align: start;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column;
  transition: border-color .25s, transform .25s;
  user-select: none;
}
.deal-card:hover { transform: translateY(-3px); }
a.deal-card { color: inherit; text-decoration: none; }
a.deal-card:hover { color: inherit; }
@media (max-width: 560px) { .deal-card { flex-basis: 82%; } }

/* Instagram graphics are square and carry their own headline — show the
   whole thing rather than cropping the caption off the bottom. */
.deal-media { aspect-ratio: 1 / 1; overflow: hidden; background: var(--bg-subtle); }
.deal-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s; }
.deal-card:hover .deal-media img { transform: scale(1.03); }

.deal-body { padding: 20px; display: flex; flex-direction: column; flex: 1; }

.deal-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.deal-tag {
  font-family: var(--font-mono); font-size: .62rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 100px;
}
.deal-date { font-family: var(--font-mono); font-size: .68rem; color: var(--text-dim); }

.deal-error  .deal-tag { background: rgba(255,212,0,.13); color: var(--gold); }
.deal-free   .deal-tag { background: rgba(0,203,255,.13); color: var(--cyan); }
.deal-offer  .deal-tag { background: rgba(255,255,255,.09); color: var(--silver); }
.deal-error:hover  { border-color: rgba(255,212,0,.4); }
.deal-free:hover   { border-color: rgba(0,203,255,.4); }
.deal-offer:hover  { border-color: rgba(255,255,255,.22); }

.deal-retailer {
  font-family: var(--font-mono); font-size: .72rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: var(--text-muted);
  margin-bottom: 8px;
}
.deal-title {
  font-size: .98rem; font-weight: 600; line-height: 1.4;
  margin-bottom: 18px; flex: 1;
}
.deal-price {
  display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap;
  border-top: 1px solid var(--border); padding-top: 14px;
}
.deal-was {
  font-family: var(--font-mono); font-size: .85rem;
  color: var(--text-dim); text-decoration: line-through;
}
.deal-now {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 700;
  letter-spacing: -.02em; line-height: 1;
}
.deal-error .deal-now { color: var(--gold); }
.deal-free  .deal-now { color: var(--cyan); }
.deal-offer .deal-now { color: var(--silver); }
.deal-sub { font-size: .74rem; color: var(--text-dim); }

.deal-flip {
  margin-top: 12px; display: inline-flex; align-items: center; gap: 7px;
  align-self: flex-start;
  font-family: var(--font-mono); font-size: .72rem; font-weight: 700;
  letter-spacing: .04em;
  background: rgba(0,203,255,.1); color: var(--cyan);
  border-radius: 100px; padding: 5px 12px;
}
.deal-flip::before { content: '↗'; font-size: .85em; }

.deal-note { margin-top: 12px; font-size: .76rem; color: var(--text-dim); line-height: 1.5; }

.carousel-btn {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(16,19,24,.92); border: 1px solid var(--border-light);
  color: var(--text); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(8px); transition: all .2s;
}
.carousel-btn svg { width: 19px; height: 19px; }
.carousel-btn:hover:not(:disabled) { border-color: var(--accent); color: var(--accent); }
.carousel-btn:disabled { opacity: 0; pointer-events: none; }
.carousel-prev { left: -14px; }
.carousel-next { right: -14px; }
@media (max-width: 900px) { .carousel-btn { display: none; } }

.deals-note {
  text-align: center; font-size: .8rem; color: var(--text-dim); margin-top: 22px;
}
.deals-note a { color: var(--text-muted); text-decoration: underline; text-underline-offset: 3px; }
.deals-note a:hover { color: var(--accent); }

/* ---------- BOT HIGHLIGHTS ---------- */
.bot-highlights { display: flex; gap: 14px; margin-bottom: 28px; }
@media (max-width: 480px) { .bot-highlights { flex-direction: column; } }
.bot-highlight {
  flex: 1; display: flex; align-items: center; gap: 14px;
  background: var(--bg-card); border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius); padding: 16px 18px;
}
.bot-highlight-val {
  font-family: var(--font-display); font-size: 1.9rem; font-weight: 700;
  color: var(--silver); letter-spacing: -.03em; line-height: 1;
}
.bot-highlight-val span { font-size: 1.1rem; }
.bot-highlight-txt strong { display: block; font-size: .9rem; font-weight: 600; }
.bot-highlight-txt span { display: block; font-size: .76rem; color: var(--text-dim); }

/* ---------- BOTS ---------- */
.bots-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
@media (max-width: 940px) { .bots-layout { grid-template-columns: 1fr; gap: 44px; } }

.bots-copy h2 { font-size: clamp(1.75rem, 4.4vw, 3rem); font-weight: 700; margin-bottom: 18px; text-wrap: balance; }

.check-list { list-style: none; display: flex; flex-direction: column; gap: 13px; margin-bottom: 32px; }
.check-list li { position: relative; padding-left: 30px; color: var(--text); font-size: .96rem; }
.check-list li::before {
  content: ''; position: absolute; left: 0; top: .3em;
  width: 18px; height: 18px; border-radius: 50%;
  background: rgba(255,212,0,.12);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffd400' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
  background-size: 11px; background-repeat: no-repeat; background-position: center;
}

/* mock discord */
.mock-chat {
  background: #0d1014; border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 30px 70px rgba(0,0,0,.5);
}
.mock-head {
  display: flex; align-items: center; gap: 7px;
  padding: 13px 18px; border-bottom: 1px solid var(--border); background: #0a0c10;
}
.mock-dot { width: 9px; height: 9px; border-radius: 50%; background: #262c35; }
.mock-server-icon { width: 22px; height: 22px; display: block; flex-shrink: 0; }
.mock-title { font-family: var(--font-mono); font-size: .78rem; color: var(--text-muted); margin-left: 4px; }
.mock-live {
  margin-left: auto; display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-mono); font-size: .64rem; font-weight: 700; letter-spacing: .12em; color: var(--accent);
}
.mock-body { padding: 16px 18px; height: 340px; overflow: hidden; display: flex; flex-direction: column; gap: 12px; justify-content: flex-end; }

.mock-msg { display: flex; gap: 11px; animation: msgIn .45s ease both; }
@keyframes msgIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.mock-avatar {
  width: 30px; height: 30px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem; background: rgba(255,212,0,.12);
}
.mock-content { min-width: 0; }
.mock-name { font-size: .78rem; font-weight: 700; color: var(--accent); }
.mock-name span { color: var(--text-dim); font-weight: 500; margin-left: 7px; font-size: .68rem; }
.mock-text { font-size: .84rem; color: var(--text-muted); line-height: 1.55; }
.mock-text b { color: var(--text); font-weight: 600; }
.mock-text .profit { color: var(--accent); font-family: var(--font-mono); font-weight: 700; }

/* ---------- STEPS ---------- */
.steps-grid { display: flex; align-items: stretch; gap: 20px; }
@media (max-width: 880px) { .steps-grid { flex-direction: column; } .step-arrow { display: none; } }

.step {
  flex: 1; background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 30px 26px;
}
.step-num { font-family: var(--font-mono); font-size: .95rem; font-weight: 700; color: var(--accent); margin-bottom: 14px; }
.step h4 { font-size: 1.15rem; font-weight: 600; margin-bottom: 10px; }
.step p { color: var(--text-muted); font-size: .92rem; }
.step-arrow { display: flex; align-items: center; color: var(--text-dim); font-size: 1.3rem; }

/* ---------- PRICING ---------- */
.pricing-wrap { display: grid; grid-template-columns: 1.15fr .85fr; gap: 22px; align-items: start; }
@media (max-width: 900px) { .pricing-wrap { grid-template-columns: 1fr; } }

.price-card {
  position: relative; overflow: hidden;
  background: var(--bg-card); border: 1px solid rgba(255,212,0,.3);
  border-radius: var(--radius-lg); padding: 36px 34px 32px;
}
.price-glow {
  position: absolute; top: -140px; right: -100px; width: 320px; height: 320px;
  background: radial-gradient(circle, var(--accent-glow), transparent 65%);
  pointer-events: none;
}
.price-head { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 14px; position: relative; }
.price-name { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; }
.price-badge {
  font-family: var(--font-mono); font-size: .65rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  background: rgba(255,212,0,.13); color: var(--accent); padding: 5px 11px; border-radius: 100px;
}
.price-amount { display: flex; align-items: baseline; gap: 2px; margin-bottom: 8px; position: relative; }
.price-currency { font-family: var(--font-display); font-size: 1.7rem; font-weight: 600; color: var(--text-muted); }
.price-value { font-family: var(--font-display); font-size: 4.2rem; font-weight: 700; letter-spacing: -.04em; line-height: 1; }
.price-period { font-size: 1rem; color: var(--text-muted); margin-left: 6px; }
.price-note { font-size: .84rem; color: var(--text-dim); margin-bottom: 26px; }

.price-trial {
  font-family: var(--font-display); font-size: 4.2rem; font-weight: 700;
  letter-spacing: -.04em; line-height: 1; color: var(--accent);
}
.price-then { font-size: .92rem; color: var(--text-muted); margin-bottom: 26px; position: relative; }
.price-then strong { color: var(--text); font-weight: 600; }

.value-trial { border-color: rgba(255,212,0,.3); background: linear-gradient(165deg, rgba(255,212,0,.06), var(--bg-card) 60%); }
.trial-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: .65rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; color: var(--accent);
  margin-bottom: 12px;
}
.value-cite {
  margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--border);
  font-size: .78rem !important; color: var(--text-dim) !important; line-height: 1.6;
}
.value-cite em { color: var(--text-muted); }

.price-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 30px; }
.price-list li { position: relative; padding-left: 28px; font-size: .93rem; color: var(--text-muted); }
.price-list li strong { color: var(--text); font-weight: 600; }
.price-list li::before {
  content: ''; position: absolute; left: 0; top: .25em; width: 17px; height: 17px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffd400' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
  background-size: contain; background-repeat: no-repeat;
}

.price-secure {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: 16px; font-size: .8rem; color: var(--text-dim);
}
.price-secure svg { width: 15px; height: 15px; }

.price-side { display: flex; flex-direction: column; gap: 22px; }

.proof-card, .value-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px 26px;
}
.proof-score { font-family: var(--font-display); font-size: 3rem; font-weight: 700; line-height: 1; margin-bottom: 18px; }
.proof-score span { color: var(--accent); font-size: 1.8rem; margin-left: 4px; }
.proof-bars { display: flex; flex-direction: column; gap: 9px; margin-bottom: 18px; }
.proof-bar { display: flex; align-items: center; gap: 10px; font-family: var(--font-mono); font-size: .72rem; color: var(--text-dim); }
.proof-bar .bar { flex: 1; height: 6px; background: var(--border); border-radius: 3px; overflow: hidden; }
.proof-bar .bar i { display: block; height: 100%; background: var(--accent); border-radius: 3px; }
.proof-bar em { font-style: normal; min-width: 30px; text-align: right; }
.proof-meta { font-size: .84rem; color: var(--text-muted); margin-bottom: 8px; }
.proof-link { font-size: .85rem; font-weight: 600; }

.value-card h4 { font-size: 1.05rem; font-weight: 600; margin-bottom: 10px; }
.value-card p { font-size: .9rem; color: var(--text-muted); }
.value-card strong { color: var(--accent); font-weight: 600; }

/* ---------- REVIEWS ---------- */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 44px; }
@media (max-width: 940px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .reviews-grid { grid-template-columns: 1fr; } }
.reviews-grid:empty { display: none; }

.review-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px 22px;
  display: flex; flex-direction: column; gap: 14px;
}
.review-stars { color: var(--accent); font-size: .9rem; letter-spacing: .1em; }
.review-text { font-size: .93rem; color: var(--text); line-height: 1.7; flex: 1; }
.review-foot { display: flex; align-items: center; gap: 10px; border-top: 1px solid var(--border); padding-top: 14px; }
.review-avatar {
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(255,212,0,.12); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: .78rem; font-weight: 700; flex-shrink: 0;
}
.review-name { font-size: .85rem; font-weight: 600; }
.review-meta { font-size: .74rem; color: var(--text-dim); }

.reviews-disclaimer {
  max-width: 620px; margin: 0 auto 26px; text-align: center;
  font-size: .8rem; color: var(--text-dim); line-height: 1.65;
}
.reviews-cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* The critical review is styled the same as the rest — no visual
   de-emphasis. Dimming it would defeat the point of including it. */
.review-card .review-stars .dim { color: var(--border-light); }

/* ---------- FAQ ---------- */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; transition: border-color .25s;
}
.faq-item[open] { border-color: var(--border-light); }
.faq-item summary {
  cursor: pointer; list-style: none;
  padding: 20px 54px 20px 24px; position: relative;
  font-family: var(--font-display); font-size: 1.02rem; font-weight: 600;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: ''; position: absolute; right: 24px; top: 50%;
  width: 11px; height: 11px; margin-top: -6px;
  border-right: 2px solid var(--text-dim); border-bottom: 2px solid var(--text-dim);
  transform: rotate(45deg); transition: transform .25s, border-color .25s;
}
.faq-item[open] summary::after { transform: rotate(-135deg); margin-top: -2px; border-color: var(--accent); }
.faq-item summary:hover { color: var(--accent); }
.faq-item p { padding: 0 24px 22px; color: var(--text-muted); font-size: .94rem; }

/* ---------- CTA ---------- */
.cta-section { position: relative; overflow: hidden; padding: 130px 0; }
.cta-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 55% 70% at 50% 100%, rgba(255,212,0,.11), transparent 70%);
}
.cta-content { position: relative; text-align: center; max-width: 700px; margin: 0 auto; }
.cta-content h2 { font-size: clamp(1.8rem, 5.2vw, 3.5rem); font-weight: 700; margin-bottom: 20px; text-wrap: balance; }
.cta-content p { color: var(--text-muted); font-size: 1.08rem; margin-bottom: 34px; }
.cta-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin-bottom: 20px; }
.cta-fine { font-size: .82rem; color: var(--text-dim); }

/* ---------- FOOTER ---------- */
.footer { border-top: 1px solid var(--border); padding: 56px 0 40px; background: var(--bg-subtle); }
.footer-inner { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; margin-bottom: 40px; }
.footer-logo { margin-bottom: 12px; }
.footer-brand p { color: var(--text-dim); font-size: .9rem; max-width: 320px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 12px 28px; align-items: flex-start; }
.footer-links a { color: var(--text-muted); font-size: .88rem; }
.footer-links a:hover { color: var(--text); }

.footer-note { border-top: 1px solid var(--border); padding-top: 26px; display: flex; flex-direction: column; gap: 12px; }
.footer-note p { font-size: .78rem; color: var(--text-dim); line-height: 1.7; max-width: 860px; }
.footer-note strong { color: var(--text-muted); }
.footer-copy { font-size: .76rem !important; }

/* ---------- ARTICLE / REVIEW PAGE ---------- */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.article { padding: 128px 0 90px; }
.container-reading { max-width: 760px; }

.crumbs { font-size: .8rem; color: var(--text-dim); margin-bottom: 28px; }
.crumbs a { color: var(--text-muted); }
.crumbs span { margin: 0 6px; }

.article-head { margin-bottom: 40px; }
.article-head h1 {
  font-size: clamp(1.9rem, 4.6vw, 3rem); font-weight: 700;
  line-height: 1.1; margin-bottom: 20px; text-wrap: balance;
}
.article-standfirst { font-size: 1.1rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }
.article-meta { font-size: .8rem; color: var(--text-dim); display: flex; gap: 8px; flex-wrap: wrap; }
.article-meta .dot { opacity: .5; }

/* verdict box */
.verdict {
  display: flex; gap: 28px; align-items: flex-start;
  background: linear-gradient(160deg, rgba(255,212,0,.07), var(--bg-card) 60%);
  border: 1px solid rgba(255,212,0,.3);
  border-radius: var(--radius-lg); padding: 30px 30px 32px; margin-bottom: 40px;
}
@media (max-width: 640px) { .verdict { flex-direction: column; gap: 18px; } }
.verdict-score { text-align: center; flex-shrink: 0; }
.verdict-num {
  font-family: var(--font-display); font-size: 3.4rem; font-weight: 700;
  color: var(--accent); line-height: 1; letter-spacing: -.03em;
}
.verdict-num span { font-size: 1.2rem; color: var(--text-dim); }
.verdict-stars { color: var(--accent); font-size: .95rem; letter-spacing: .08em; margin-top: 6px; }
.verdict-stars .dim { color: var(--border-light); }
.verdict-body h2 { font-size: 1.25rem; font-weight: 600; margin-bottom: 10px; }
.verdict-body p { color: var(--text-muted); font-size: .97rem; line-height: 1.7; margin-bottom: 20px; }
.verdict-body strong { color: var(--text); }

/* quick facts */
.facts { margin-bottom: 44px; }
.facts table { width: 100%; border-collapse: collapse; }
.facts th, .facts td {
  text-align: left; padding: 12px 0; font-size: .92rem;
  border-bottom: 1px solid var(--border); vertical-align: top;
}
.facts th { color: var(--text-dim); font-weight: 500; width: 38%; }
.facts td { color: var(--text); }

/* prose */
.article h2 {
  font-size: clamp(1.4rem, 3vw, 1.85rem); font-weight: 700;
  margin: 48px 0 16px; scroll-margin-top: 90px;
}
.article h3 { font-size: 1.08rem; font-weight: 600; margin-bottom: 12px; }
.article > .container-reading > p { color: var(--text-muted); line-height: 1.8; margin-bottom: 18px; }
.article p strong { color: var(--text); font-weight: 600; }
.article em { color: var(--text); }

.prose-list { list-style: none; display: flex; flex-direction: column; gap: 16px; margin-bottom: 20px; }
.prose-list li {
  position: relative; padding-left: 26px;
  color: var(--text-muted); line-height: 1.75; font-size: .97rem;
}
.prose-list li::before {
  content: ''; position: absolute; left: 0; top: .62em;
  width: 7px; height: 7px; border-radius: 50%; background: var(--accent); opacity: .8;
}
.prose-list li strong { color: var(--text); }

/* comparison table */
.table-scroll { overflow-x: auto; margin-bottom: 12px; }
.compare { width: 100%; border-collapse: collapse; min-width: 560px; }
.compare th, .compare td {
  text-align: left; padding: 14px 16px; font-size: .9rem;
  border-bottom: 1px solid var(--border);
}
.compare thead th {
  font-family: var(--font-mono); font-size: .68rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; color: var(--text-dim);
}
.compare tbody th { font-weight: 600; color: var(--text); white-space: nowrap; }
.compare td { color: var(--text-muted); }
.compare .is-subject { background: rgba(255,212,0,.05); }
.compare .is-subject th { color: var(--accent); }
.table-note { font-size: .8rem !important; color: var(--text-dim) !important; margin-bottom: 20px; }

/* who should / shouldn't */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 20px; }
@media (max-width: 640px) { .split { grid-template-columns: 1fr; } }
.split-col { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px 22px; }
.split-yes { border-color: rgba(255,212,0,.28); }
.split-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.split-col li { position: relative; padding-left: 26px; font-size: .92rem; color: var(--text-muted); line-height: 1.6; }
.split-col li::before { position: absolute; left: 0; top: 0; font-weight: 700; }
.split-yes li::before { content: '✓'; color: var(--accent); }
.split-no li::before { content: '✕'; color: var(--text-dim); }

/* payback calculator */
.calc {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 14px;
}
.calc-rows { padding: 8px 24px; }
.calc-row {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 0; border-bottom: 1px solid var(--border);
}
.calc-row:last-child { border-bottom: 0; }
.calc-label strong { display: block; font-size: .96rem; font-weight: 600; }
.calc-label span { font-size: .78rem; color: var(--text-dim); font-family: var(--font-mono); }

.calc-stepper { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.calc-stepper button {
  width: 34px; height: 34px; border-radius: 9px; cursor: pointer;
  background: var(--bg-subtle); border: 1px solid var(--border-light);
  color: var(--text); font-size: 1.1rem; line-height: 1;
  display: flex; align-items: center; justify-content: center; transition: all .18s;
}
.calc-stepper button:hover { border-color: var(--accent); color: var(--accent); }
.calc-stepper input {
  width: 58px; height: 34px; text-align: center;
  background: var(--bg-subtle); border: 1px solid var(--border-light); border-radius: 9px;
  color: var(--text); font-family: var(--font-mono); font-size: .95rem; font-weight: 700;
  -moz-appearance: textfield; appearance: textfield;
}
.calc-stepper input::-webkit-outer-spin-button,
.calc-stepper input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.calc-stepper input:focus-visible { outline: 2px solid var(--accent); outline-offset: 1px; }

.calc-out { background: var(--bg-subtle); border-top: 1px solid var(--border); padding: 22px 24px 24px; }
.calc-line {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 7px 0; font-size: .92rem; color: var(--text-muted);
}
.calc-line b { font-family: var(--font-mono); font-weight: 700; color: var(--text); }
.calc-saving b { color: var(--accent); }
.calc-neg { color: var(--text-dim) !important; }
.calc-total {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-top: 10px; padding-top: 14px; border-top: 1px solid var(--border-light);
  font-size: 1rem; font-weight: 600;
}
.calc-total b { font-family: var(--font-display); font-size: 1.65rem; letter-spacing: -.02em; }
.calc-total.is-good b { color: var(--accent); }
.calc-total.is-bad b { color: var(--text-muted); }
.calc-verdict { font-size: .85rem !important; margin: 12px 0 0 !important; line-height: 1.6; }
.calc-total.is-good ~ .calc-verdict { color: var(--accent) !important; }
.calc-caveat { font-size: .8rem !important; color: var(--text-dim) !important; margin-bottom: 20px; }

@media (max-width: 520px) {
  .calc-row { flex-direction: column; align-items: flex-start; gap: 12px; }
  .calc-rows { padding: 8px 18px; }
  .calc-out { padding: 20px 18px; }
}

/* end CTA */
.end-cta {
  text-align: center; margin: 48px 0;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px 28px;
}
.end-cta .cta-fine { margin-top: 16px; }
.end-link { margin-top: 14px; font-size: .9rem; }

.disclosure {
  margin-top: 48px; padding-top: 22px; border-top: 1px solid var(--border);
  font-size: .82rem !important; color: var(--text-dim) !important; line-height: 1.75;
}
.disclosure strong { color: var(--text-muted) !important; }

.article .faq-list { margin-bottom: 20px; }

/* ---------- SCROLL ANIMATION ---------- */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.fade-in.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  html { scroll-behavior: auto; }
  .fade-in { opacity: 1; transform: none; }
}

/* Let headings wrap naturally on narrow screens — the hard <br>s are
   for wide-screen line control only. */
@media (max-width: 660px) {
  h1 br, h2 br { display: none; }
}

@media (max-width: 700px) {
  .section { padding: 80px 0; }
  .section-head { margin-bottom: 44px; }
  .price-card { padding: 28px 24px; }
  .price-value { font-size: 3.4rem; }
}
