*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg: #050505;
  --bg-2: #0a0a0a;
  --panel: #0f0f10;
  --panel-2: #141416;
  --line: rgba(255,255,255,0.08);
  --line-strong: rgba(255,255,255,0.18);
  --text: #e8e8ea;
  --text-dim: #9a9a9f;
  --text-mute: #5e5e63;
  --silver-1: #f6f6f6;
  --silver-2: #c9c9cc;
  --silver-3: #6e6e74;
  --silver-4: #2a2a2e;
  --accent: #d4d4d8;
  --green: #22c55e;
  --green-bg: rgba(34,197,94,0.12);
  --red: #ef4444;
  --shadow: 0 30px 80px rgba(0,0,0,0.6);
}

html { scroll-behavior: smooth; }
html, body { background: var(--bg); color: var(--text); font-family: 'Inter', system-ui, sans-serif; -webkit-font-smoothing: antialiased; overflow-x: hidden; }

/* Stars layer */
.stars {
  position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden;
}
.stars i {
  position: absolute; width: 2px; height: 2px; border-radius: 50%;
  background: #fff; opacity: 0; animation: twinkle 4s ease-in-out infinite;
  box-shadow: 0 0 6px rgba(255,255,255,0.8);
}
@keyframes twinkle {
  0%, 100% { opacity: 0; transform: scale(0.6); }
  50% { opacity: 0.7; transform: scale(1); }
}

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-l { opacity: 0; transform: translateX(-40px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1); }
.reveal-l.in { opacity: 1; transform: translateX(0); }
.reveal-r { opacity: 0; transform: translateX(40px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1); }
.reveal-r.in { opacity: 1; transform: translateX(0); }
.reveal-scale { opacity: 0; transform: scale(0.9); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1); }
.reveal-scale.in { opacity: 1; transform: scale(1); }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }
.reveal[data-delay="5"] { transition-delay: .40s; }
.reveal[data-delay="6"] { transition-delay: .48s; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-l, .reveal-r, .reveal-scale { opacity: 1; transform: none; }
}

/* Spotlight cursor */
.spot {
  position: relative; isolation: isolate;
}
.spot::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  background: radial-gradient(400px circle at var(--mx, -200px) var(--my, -200px),
    rgba(220,220,230,0.12), transparent 50%);
  opacity: 0; transition: opacity .3s ease; pointer-events: none; z-index: 1;
}
.spot:hover::before { opacity: 1; }
.spot > * { position: relative; z-index: 2; }

/* Magnetic & tilt */
.tilt { transform-style: preserve-3d; transition: transform .25s ease; will-change: transform; }
.magnetic { transition: transform .2s ease; }

/* Scroll progress bar */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%; z-index: 100;
  background: linear-gradient(90deg, #fff, #c9c9cc, #6e6e74);
  box-shadow: 0 0 16px rgba(220,220,235,0.6);
  transition: width .1s linear;
}

/* Custom cursor */
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%); border-radius: 50%;
  mix-blend-mode: difference;
}
.cursor-dot { width: 6px; height: 6px; background: #fff; transition: width .2s, height .2s; }
.cursor-ring { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.6); transition: transform .25s cubic-bezier(.2,.7,.2,1), width .25s, height .25s; }
@media (hover: none) { .cursor-dot, .cursor-ring { display: none; } }

/* Particles canvas */
.particles {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
}

/* Border beam on price card */
.beam {
  position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  overflow: hidden; opacity: 0.7;
}
.beam::before {
  content: ""; position: absolute; inset: -50%;
  background: conic-gradient(from 0deg, transparent 0deg, transparent 280deg, rgba(255,255,255,0.85) 320deg, rgba(220,220,235,0.4) 340deg, transparent 360deg);
  animation: spin 6s linear infinite;
}
.beam::after {
  content: ""; position: absolute; inset: 2px; border-radius: inherit;
  background: linear-gradient(180deg, rgba(28,28,32,0.95), rgba(10,10,12,0.95));
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Click ripple */
.ripple { position: absolute; border-radius: 50%; pointer-events: none; transform: scale(0); animation: ripple .7s ease-out; background: rgba(255,255,255,0.45); }
@keyframes ripple { to { transform: scale(4); opacity: 0; } }

/* Marquee hover pause/speed */
.hero-marquee:hover .marquee-track { animation-duration: 12s; }

/* Video frame glow ring */
.video-frame { position: relative; }
.video-frame::after {
  content: ""; position: absolute; inset: -2px; border-radius: 22px; pointer-events: none; z-index: -1;
  background: conic-gradient(from 0deg, rgba(255,255,255,0.0), rgba(220,220,235,0.5), rgba(255,255,255,0.0), rgba(180,180,200,0.4), rgba(255,255,255,0.0));
  filter: blur(14px);
  animation: spin 12s linear infinite;
  opacity: 0.6;
}

/* Letter stagger */
.letter { display: inline-block; opacity: 0; transform: translateY(40px) rotateX(40deg); animation: letterIn .7s cubic-bezier(.2,.7,.2,1) forwards; transform-origin: 50% 100%; }
@keyframes letterIn {
  to { opacity: 1; transform: translateY(0) rotateX(0); }
}

/* Plan card glow */
.price-card:hover { box-shadow: var(--shadow), 0 0 80px rgba(220,220,235,0.18); }

/* Nav blur on scroll */
body.scrolled .nav { box-shadow: 0 14px 50px rgba(0,0,0,0.7); background: rgba(10,10,12,0.85); }

/* Button shine */
.btn { position: relative; overflow: hidden; }
.btn::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.35) 50%, transparent 70%);
  transform: translateX(-130%); transition: transform .9s ease;
  pointer-events: none;
}
.btn:hover::after { transform: translateX(130%); }

body { min-height: 100vh; position: relative; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; }

.bg-noise {
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 3px 3px;
  opacity: 0.4;
}
.bg-glow {
  position: fixed; inset: -20%; pointer-events: none; z-index: 0;
  background:
    radial-gradient(circle at 20% 10%, rgba(200,200,210,0.10), transparent 50%),
    radial-gradient(circle at 80% 30%, rgba(160,160,180,0.08), transparent 50%),
    radial-gradient(circle at 50% 90%, rgba(140,140,160,0.06), transparent 60%);
}

.nav {
  position: sticky; top: 16px; z-index: 50;
  max-width: 1180px; margin: 16px auto 0; padding: 12px 18px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: rgba(15,15,17,0.7); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--line); border-radius: 999px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}
.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand-logo { height: 46px; width: auto; object-fit: contain; filter: drop-shadow(0 2px 8px rgba(255,255,255,0.2)); }
.brand-name {
  font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 18px; letter-spacing: 0.02em;
  background: linear-gradient(180deg, #fff, #888 60%, #f5f5f5);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.nav-links { display: flex; gap: 4px; }
.nav-links a {
  padding: 8px 12px; border-radius: 999px; font-size: 12px; font-weight: 600; letter-spacing: 0.12em; color: var(--text-dim);
  transition: color .2s, background .2s;
}
.nav-links a:hover { color: var(--text); }
.nav-links a.active { color: var(--text); background: rgba(255,255,255,0.06); }
.nav-cta { display: flex; gap: 8px; align-items: center; }

.btn {
  display: inline-flex; align-items: center; gap: 8px; justify-content: center;
  padding: 10px 18px; border-radius: 999px; font-weight: 700; font-size: 13px; letter-spacing: 0.04em;
  border: 1px solid var(--line); background: rgba(255,255,255,0.04); color: var(--text);
  transition: transform .15s ease, box-shadow .2s, background .2s, border-color .2s;
}
.btn:hover { transform: translateY(-1px); }
.btn-discord {
  background: linear-gradient(180deg, #1f1f23, #0f0f10);
  border-color: rgba(255,255,255,0.12);
}
.btn-login {
  background: linear-gradient(180deg, var(--silver-1), var(--silver-2) 45%, var(--silver-3));
  color: #0a0a0a; border-color: rgba(0,0,0,0.2); font-weight: 800;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.6), 0 6px 20px rgba(0,0,0,0.4);
}
.btn-primary {
  padding: 14px 26px; font-size: 14px;
  background: linear-gradient(180deg, #ffffff, #c8c8cc 50%, #6e6e74);
  color: #0a0a0a; border-color: rgba(0,0,0,0.3); font-weight: 800;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.7), 0 10px 30px rgba(220,220,230,0.18);
}
.btn-primary:hover { box-shadow: inset 0 1px 0 rgba(255,255,255,0.9), 0 14px 40px rgba(220,220,230,0.3); }
.btn-ghost { padding: 14px 22px; font-size: 14px; background: transparent; border-color: rgba(255,255,255,0.18); }
.btn-ghost:hover { background: rgba(255,255,255,0.05); }
.btn-ghost-sm { padding: 8px 14px; font-size: 12px; }
.btn-buy {
  padding: 14px 22px; font-size: 14px; width: 100%;
  background: linear-gradient(180deg, #ededee, #b8b8bd 50%, #5e5e64);
  color: #0a0a0a; font-weight: 800;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.7), 0 12px 32px rgba(255,255,255,0.08);
}
.btn-buy:hover { box-shadow: inset 0 1px 0 rgba(255,255,255,0.9), 0 16px 40px rgba(255,255,255,0.18); }
.btn-block { width: 100%; }

main { position: relative; z-index: 1; }

.hero {
  max-width: 1180px; margin: 0 auto; padding: 80px 24px 120px;
  display: flex; flex-direction: column; align-items: center; text-align: center; position: relative;
}
.hero-logo {
  width: 420px; height: auto; max-width: 85vw; margin-bottom: 28px;
  filter: drop-shadow(0 30px 60px rgba(220,220,230,0.4)) drop-shadow(0 0 50px rgba(180,180,200,0.3));
  animation: float 6s ease-in-out infinite, logoGlow 4s ease-in-out infinite alternate;
  transform-origin: center;
  will-change: transform, filter;
}
@keyframes logoGlow {
  0% { filter: drop-shadow(0 30px 60px rgba(220,220,230,0.4)) drop-shadow(0 0 30px rgba(180,180,200,0.2)); }
  100% { filter: drop-shadow(0 30px 70px rgba(220,220,230,0.6)) drop-shadow(0 0 80px rgba(200,200,220,0.45)); }
}
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.hero-title {
  font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: clamp(40px, 6vw, 80px); line-height: 1.05; letter-spacing: -0.02em;
  background: linear-gradient(110deg, #ffffff 0%, #f0f0f2 20%, #6e6e74 40%, #ffffff 50%, #2a2a2e 65%, #cfcfd2 90%, #ffffff 100%);
  background-size: 220% auto;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  text-shadow: 0 6px 30px rgba(255,255,255,0.05);
  animation: shimmer 6s linear infinite;
}
@keyframes shimmer {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}
.hero-title .grad-line { display: inline-block; }
.hero-sub { color: var(--text-dim); font-size: 16px; margin-top: 18px; letter-spacing: 0.04em; }
.hero-cta { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; justify-content: center; }
.status-pill {
  margin-top: 24px;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px; border-radius: 999px; font-size: 11px; font-weight: 700; letter-spacing: 0.16em;
  background: var(--green-bg); color: #74e89a; border: 1px solid rgba(34,197,94,0.3);
}
.dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; background: #999; }
.dot-green { background: #22c55e; box-shadow: 0 0 10px #22c55e; }
.pulse { animation: pulse 1.6s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.35; } }

.top-pill { margin-top: 0; margin-bottom: 28px; }
.grad-line {
  background: linear-gradient(180deg, #c0c0c4 0%, #f4f4f6 30%, #6e6e74 60%, #2a2a2e 80%, #cfcfd2 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-marquee {
  margin-top: 56px; width: 100%; max-width: 980px;
  overflow: hidden; border-radius: 999px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(22,22,26,0.85), rgba(10,10,12,0.85));
  padding: 14px 0;
  box-shadow: 0 20px 50px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.04);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.marquee-track {
  display: flex; gap: 48px; width: max-content;
  animation: marquee 28s linear infinite;
  font-family: 'Space Grotesk', sans-serif; font-weight: 700; letter-spacing: 0.2em; font-size: 14px;
  color: var(--silver-2);
}
.marquee-track span { white-space: nowrap; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.hero-stats { display: flex; gap: 56px; margin-top: 56px; flex-wrap: wrap; justify-content: center; }
.stat-num {
  font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 38px;
  background: linear-gradient(180deg, #fff, #888);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat-label { color: var(--text-mute); font-size: 11px; letter-spacing: 0.16em; font-weight: 600; margin-top: 4px; }

.pricing, .showcase, .community { max-width: 1180px; margin: 0 auto; padding: 80px 24px; }
.price-stack {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 28px;
  margin-bottom: 40px;
}
.price-side {
  padding: 36px; border-radius: 24px;
  background: linear-gradient(160deg, rgba(28,28,32,0.9), rgba(10,10,12,0.9));
  border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 16px;
}
.side-tag {
  display: inline-flex; align-items: center; gap: 8px; align-self: flex-start;
  padding: 6px 12px; border-radius: 999px; font-size: 11px; font-weight: 700; letter-spacing: 0.16em;
  background: var(--green-bg); color: #74e89a; border: 1px solid rgba(34,197,94,0.3);
}
.price-side h3 {
  font-family: 'Space Grotesk', sans-serif; font-size: 36px; line-height: 1.1; letter-spacing: -0.01em;
  background: linear-gradient(180deg, #fff, #888);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.side-copy { color: var(--text-dim); font-size: 15px; line-height: 1.6; }
.trust-list { display: flex; flex-direction: column; gap: 10px; margin-top: 4px; }
.trust-list li {
  position: relative; padding-left: 26px; color: var(--text-dim); font-size: 14px; line-height: 1.5;
}
.trust-list li::before {
  content: "→"; position: absolute; left: 0; top: 0;
  color: var(--silver-2); font-weight: 700;
}
.trust-list b { color: var(--text); }
.badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.badge {
  padding: 6px 12px; border-radius: 8px; font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
  background: rgba(255,255,255,0.04); border: 1px solid var(--line); color: var(--silver-2);
}

.price-card {
  padding: 32px; border-radius: 24px;
  background: linear-gradient(180deg, rgba(28,28,32,0.95), rgba(10,10,12,0.95));
  border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 20px;
  position: relative; overflow: hidden;
  box-shadow: var(--shadow);
}
.price-card::before {
  content: ""; position: absolute; inset: -1px; border-radius: 24px; padding: 1px;
  background: linear-gradient(135deg, rgba(255,255,255,0.5), rgba(120,120,130,0.05) 30%, rgba(220,220,230,0.4) 70%, rgba(60,60,70,0.05));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none;
}
.ribbon {
  position: absolute; top: 16px; right: -32px; transform: rotate(35deg);
  background: linear-gradient(180deg, #f4f4f6, #888);
  color: #0a0a0a; font-weight: 800; font-size: 10px; letter-spacing: 0.2em;
  padding: 5px 36px;
  box-shadow: 0 4px 18px rgba(255,255,255,0.15);
}
.price-card header { display: flex; align-items: center; justify-content: space-between; }
.price-card h4 { font-family: 'Space Grotesk', sans-serif; font-size: 24px; font-weight: 700; }
.feature-list { display: flex; flex-direction: column; gap: 10px; }
.feature-list li {
  position: relative; padding-left: 28px; color: var(--text); font-size: 14px;
}
.feature-list li::before {
  content: "✓"; position: absolute; left: 0; top: 1px;
  width: 18px; height: 18px; border-radius: 6px; display: grid; place-items: center;
  background: rgba(34,197,94,0.18); color: #74e89a; font-size: 11px; font-weight: 800;
}

.showcase { text-align: center; }
.showcase-meta {
  margin-top: 22px; display: flex; gap: 28px; flex-wrap: wrap; justify-content: center;
  color: var(--text-mute); font-size: 13px;
}
.showcase-meta b { color: var(--silver-2); margin-right: 4px; font-weight: 700; }
.vf-rec { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; letter-spacing: 0.16em; color: #ff6b6b; font-weight: 700; }
.rec-dot { width: 8px; height: 8px; border-radius: 50%; background: #ff3b3b; box-shadow: 0 0 10px #ff3b3b; animation: pulse 1.4s ease-in-out infinite; }

.community { text-align: center; }
.rating-strip {
  display: inline-flex; gap: 18px; align-items: center;
  padding: 14px 20px; border-radius: 999px;
  background: rgba(15,15,17,0.7); border: 1px solid var(--line);
  margin: 0 auto 36px;
}
.rating-strip .rating-num { font-size: 26px; }
.rating-strip .rating-meta { text-align: left; }
.rating-cta { padding: 8px 14px; font-size: 12px; }
.cards-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.card-review {
  padding: 22px; border-radius: 18px;
  background: linear-gradient(180deg, rgba(20,20,24,0.8), rgba(10,10,12,0.8));
  border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 10px; text-align: left;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), border-color .35s, box-shadow .35s;
}
.card-review:hover {
  transform: translateY(-6px); border-color: var(--line-strong);
  box-shadow: 0 30px 60px rgba(0,0,0,0.6), 0 0 0 1px rgba(220,220,230,0.08);
}
.card-review.highlight { border-color: rgba(220,220,230,0.25); box-shadow: 0 0 0 1px rgba(220,220,230,0.06); }
.card-review header { display: grid; grid-template-columns: 44px 1fr auto; gap: 10px; align-items: center; }
.card-review header > div:nth-child(2) { display: flex; flex-direction: column; gap: 4px; }

.cta-final { max-width: 1180px; margin: 0 auto; padding: 40px 24px 100px; }
.cta-box {
  text-align: center; padding: 64px 28px; border-radius: 28px;
  background:
    radial-gradient(600px 200px at 50% 0%, rgba(220,220,230,0.10), transparent 70%),
    linear-gradient(180deg, var(--panel), var(--panel-2));
  border: 1px solid var(--line-strong);
  position: relative; overflow: hidden;
}
.cta-logo { width: 180px; height: auto; margin: 0 auto 18px; filter: drop-shadow(0 20px 50px rgba(220,220,230,0.3)); }
.cta-box h3 {
  font-family: 'Space Grotesk', sans-serif; font-size: clamp(34px, 4vw, 52px); margin-bottom: 8px;
  background: linear-gradient(180deg, #fff, #888);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.cta-box p { color: var(--text-dim); margin-bottom: 24px; }
.cta-box .hero-cta { justify-content: center; }

.plans { max-width: 1180px; margin: 0 auto; padding: 60px 24px 100px; }
.sale-bar {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  padding: 14px 22px; border-radius: 18px;
  background: linear-gradient(90deg, rgba(40,40,46,0.6), rgba(20,20,24,0.6));
  border: 1px solid var(--line);
  margin-bottom: 56px; justify-content: center;
}
.sale-tag { font-size: 10px; letter-spacing: 0.18em; font-weight: 700; color: var(--text-mute); }
.sale-text {
  font-weight: 700; letter-spacing: 0.04em;
  background: linear-gradient(90deg, #fff, #c8c8cc);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.countdown { display: flex; gap: 8px; }
.countdown > div {
  display: flex; flex-direction: column; align-items: center;
  padding: 6px 10px; min-width: 48px; border-radius: 10px;
  background: rgba(0,0,0,0.5); border: 1px solid var(--line);
}
.countdown span { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 16px; }
.countdown small { font-size: 9px; color: var(--text-mute); letter-spacing: 0.14em; }

.eyebrow { text-align: center; color: var(--silver-2); font-size: 11px; letter-spacing: 0.24em; font-weight: 700; }
.section-title {
  text-align: center; font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: clamp(34px, 5vw, 56px);
  margin: 8px 0 48px; letter-spacing: -0.01em;
  background: linear-gradient(180deg, #fff, #8a8a90);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.plan-row {
  border: 1px solid var(--line); border-radius: 28px; padding: 28px;
  background:
    radial-gradient(800px 200px at 50% 0%, rgba(220,220,230,0.06), transparent 70%),
    linear-gradient(180deg, var(--panel), var(--panel-2));
  box-shadow: var(--shadow);
}
.plan-row-private {
  border-color: rgba(220,220,230,0.18);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,0.04);
}
.plan-row-header {
  display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap;
  padding-bottom: 22px; border-bottom: 1px dashed var(--line);
}
.plan-row-title { display: flex; align-items: center; gap: 14px; }
.plan-icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: grid; place-items: center;
  background: linear-gradient(180deg, #2a2a2e, #0e0e10);
  border: 1px solid var(--line-strong); color: var(--silver-2);
}
.plan-row-title h3 {
  font-family: 'Space Grotesk', sans-serif; font-size: 18px; letter-spacing: 0.16em;
  background: linear-gradient(180deg, #fff, #b0b0b6);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.plan-row-title p { color: var(--text-mute); font-size: 13px; margin-top: 2px; }
.plan-row-meta { display: flex; gap: 8px; flex-wrap: wrap; }
.pill {
  padding: 6px 12px; border-radius: 999px; font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  background: rgba(255,255,255,0.04); border: 1px solid var(--line);
}
.pill-from { color: #d6d6da; }
.pill-instant { color: #74e89a; background: var(--green-bg); border-color: rgba(34,197,94,0.3); }
.pill-sort { background: rgba(220,220,230,0.1); padding: 3px 9px; font-size: 11px; }

.plan-cards { display: grid; grid-template-columns: 1fr; gap: 18px; margin-top: 22px; }
.plan-card {
  padding: 24px; border-radius: 20px;
  background: linear-gradient(180deg, rgba(28,28,32,0.9), rgba(12,12,14,0.9));
  border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 18px;
  position: relative; overflow: hidden;
}
.plan-card.featured {
  border-color: rgba(220,220,230,0.25);
  box-shadow: 0 0 0 1px rgba(220,220,230,0.05), 0 30px 60px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.06);
}
.plan-card.featured::before {
  content: ""; position: absolute; inset: -1px; border-radius: 20px; padding: 1px;
  background: linear-gradient(135deg, rgba(255,255,255,0.4), rgba(120,120,130,0.05) 30%, rgba(220,220,230,0.3) 70%, rgba(60,60,70,0.05));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none;
}
.plan-card header { display: flex; align-items: center; justify-content: space-between; }
.plan-card h4 { font-family: 'Space Grotesk', sans-serif; font-size: 22px; font-weight: 700; }
.status { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 700; letter-spacing: 0.14em; color: #74e89a; }
.status.online { padding: 4px 10px; border-radius: 999px; background: var(--green-bg); border: 1px solid rgba(34,197,94,0.3); }
.plan-card ul { display: flex; flex-direction: column; gap: 10px; }
.plan-card li {
  position: relative; padding-left: 26px; color: var(--text); font-size: 14px;
}
.plan-card li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  width: 18px; height: 18px; border-radius: 6px; display: grid; place-items: center;
  background: rgba(34,197,94,0.18); color: #74e89a; font-size: 11px; font-weight: 800;
}
.price-row { display: flex; align-items: baseline; gap: 8px; }
.price {
  font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 56px;
  background: linear-gradient(180deg, #fff, #888);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  display: inline-block;
}
@keyframes priceBounce {
  0% { transform: scale(0.4); opacity: 0; }
  60% { transform: scale(1.15); opacity: 1; }
  100% { transform: scale(1); }
}
.price.in { animation: priceBounce .7s cubic-bezier(.34,1.56,.64,1) both; }
.ribbon {
  animation: ribbonShine 3s ease-in-out infinite;
}
@keyframes ribbonShine {
  0%, 100% { box-shadow: 0 4px 18px rgba(255,255,255,0.15); }
  50% { box-shadow: 0 4px 30px rgba(255,255,255,0.5); }
}
.price-period { color: var(--text-mute); font-size: 14px; letter-spacing: 0.08em; }
.footnote { color: var(--text-mute); font-size: 11px; line-height: 1.5; text-align: center; }

.update-strip {
  margin-top: 28px; padding: 16px 20px; border-radius: 18px;
  background: linear-gradient(180deg, rgba(20,20,24,0.9), rgba(10,10,12,0.9));
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap;
}
.us-left { display: flex; align-items: center; gap: 16px; }
.live { display: inline-flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 700; letter-spacing: 0.14em; color: #74e89a; padding: 4px 10px; border-radius: 999px; background: var(--green-bg); border: 1px solid rgba(34,197,94,0.3); }
.live small { color: var(--text-mute); margin-left: 6px; }
.us-left strong { font-size: 14px; }
.us-right { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.us-item { font-size: 13px; color: var(--text-dim); display: flex; align-items: center; gap: 8px; }
.us-item small { color: var(--text-mute); margin-left: 6px; font-size: 10px; letter-spacing: 0.14em; }
.tag { font-size: 10px; font-weight: 800; letter-spacing: 0.14em; padding: 3px 7px; border-radius: 6px; }
.tag-cheat { background: rgba(220,220,230,0.1); color: #d6d6da; }
.tag-fix { background: rgba(245,158,11,0.15); color: #f5b740; }

.proofs { max-width: 1180px; margin: 0 auto; padding: 40px 24px 100px; text-align: center; }
.play-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 999px; font-size: 11px; letter-spacing: 0.16em; font-weight: 700;
  background: rgba(255,255,255,0.04); border: 1px solid var(--line); color: var(--silver-2);
}
.video-frame {
  margin: 32px auto 24px; max-width: 980px;
  border-radius: 22px; overflow: hidden;
  background: #0c0c0e; border: 1px solid var(--line);
  box-shadow: 0 40px 90px rgba(0,0,0,0.6), 0 0 0 1px rgba(220,220,230,0.04);
}
.vf-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 18px; background: #18181b; border-bottom: 1px solid var(--line);
  font-size: 11px; color: var(--text-mute); letter-spacing: 0.1em;
}
.vf-dots { display: flex; gap: 6px; }
.vf-dots i { width: 10px; height: 10px; border-radius: 50%; background: #2a2a2e; display: block; }
.vf-dots i:nth-child(1) { background: #ff5f57; }
.vf-dots i:nth-child(2) { background: #febc2e; }
.vf-dots i:nth-child(3) { background: #28c840; }
.vf-title { color: var(--text-dim); }
.vf-body {
  position: relative; aspect-ratio: 16 / 9; background: radial-gradient(circle at center, #1a1a1f, #050505);
  padding: 18px; display: flex; flex-direction: column;
}
.vf-video { flex: 1; width: 100%; height: 100%; border-radius: 14px; background: #000; object-fit: contain; box-shadow: 0 30px 60px rgba(0,0,0,0.6); }
.vf-stage {
  position: relative; flex: 1; display: flex; border-radius: 14px; overflow: hidden;
  isolation: isolate; transform-style: preserve-3d; transition: transform .5s cubic-bezier(.2,.7,.2,1);
}
.vf-stage .vf-video {
  position: relative; z-index: 1;
  animation: vfBreathe 7s ease-in-out infinite;
  filter: saturate(1.05) contrast(1.04);
}
@keyframes vfBreathe {
  0%,100% { transform: scale(1); filter: saturate(1.05) contrast(1.04) brightness(1); }
  50%     { transform: scale(1.012); filter: saturate(1.1) contrast(1.08) brightness(1.04); }
}
.vf-holo {
  position: absolute; inset: 0; pointer-events: none; z-index: 2;
  background: linear-gradient(115deg,
    transparent 35%,
    rgba(255,255,255,0.05) 45%,
    rgba(220,220,235,0.22) 50%,
    rgba(255,255,255,0.05) 55%,
    transparent 65%);
  background-size: 250% 250%;
  mix-blend-mode: screen;
  animation: vfHolo 5.5s ease-in-out infinite;
  opacity: .9;
}
@keyframes vfHolo {
  0%   { background-position: 200% 0; }
  100% { background-position: -100% 0; }
}
.vf-halo {
  position: absolute; inset: -30px; pointer-events: none; z-index: 0;
  border-radius: 28px;
  background: radial-gradient(closest-side, rgba(220,220,235,0.28), rgba(220,220,235,0) 70%);
  filter: blur(20px);
  animation: vfHalo 4.5s ease-in-out infinite;
}
@keyframes vfHalo {
  0%,100% { opacity: .45; transform: scale(1); }
  50%     { opacity: .85; transform: scale(1.04); }
}
.vf-header { display: flex; align-items: center; gap: 10px; }
.vf-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  background: linear-gradient(135deg, #6e6e74, #1a1a1e);
  border: 1px solid var(--line-strong);
}
.vf-name { text-align: left; font-weight: 700; font-size: 14px; }
.vf-user { text-align: left; font-size: 11px; color: var(--text-mute); }
.vf-center { flex: 1; display: grid; place-items: center; position: relative; }
.logo-big {
  filter: drop-shadow(0 0 40px rgba(220,220,230,0.25));
}
.logo-big img { width: 220px; height: 220px; }
.play-btn {
  position: absolute; width: 76px; height: 76px; border-radius: 50%;
  background: linear-gradient(180deg, #ff3b3b, #b81010); border: 0;
  display: grid; place-items: center;
  box-shadow: 0 20px 60px rgba(255,59,59,0.4), inset 0 2px 0 rgba(255,255,255,0.3);
}
.vf-footer { text-align: right; color: var(--text-mute); font-size: 13px; }
.proof-count {
  display: inline-flex; padding: 8px 18px; border-radius: 999px; gap: 8px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--line); color: var(--silver-2);
  font-size: 12px; letter-spacing: 0.16em; font-weight: 700;
}

.reviews { max-width: 1180px; margin: 0 auto; padding: 40px 24px 100px; }
.reviews-grid {
  display: grid; grid-template-columns: 1.1fr 2fr; gap: 36px;
}
.eyebrow-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px; border-radius: 999px; font-size: 11px; font-weight: 700; letter-spacing: 0.16em;
  background: rgba(255,255,255,0.04); border: 1px solid var(--line); color: var(--silver-2);
}
.reviews-side h2 {
  font-family: 'Space Grotesk', sans-serif; font-size: clamp(36px, 4vw, 52px); line-height: 1.05;
  margin: 18px 0 16px; letter-spacing: -0.01em;
  background: linear-gradient(180deg, #fff, #888);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.reviews-side > p { color: var(--text-dim); margin-bottom: 22px; max-width: 360px; }
.rating-card {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px; border-radius: 14px;
  background: rgba(20,20,24,0.7); border: 1px solid var(--line);
  max-width: 280px; margin-bottom: 18px;
}
.rating-num { font-family: 'Space Grotesk', sans-serif; font-size: 32px; font-weight: 700; }
.stars { color: #ffd23f; letter-spacing: 2px; font-size: 14px; }
.rating-count { font-size: 11px; letter-spacing: 0.14em; color: var(--text-mute); margin-top: 2px; }
.synced { font-size: 12px; color: var(--text-mute); margin-bottom: 18px; display: inline-flex; align-items: center; gap: 8px; }

.reviews-list {
  background: rgba(15,15,17,0.6); border: 1px solid var(--line); border-radius: 22px; padding: 20px;
  box-shadow: var(--shadow);
}
.reviews-list-head {
  display: flex; align-items: center; gap: 14px;
  padding-bottom: 14px; border-bottom: 1px solid var(--line); margin-bottom: 14px;
  font-size: 12px; color: var(--text-dim);
}
.reviews-list-head .muted { color: var(--text-mute); }
.reviews-list-head .sort { margin-left: auto; display: inline-flex; align-items: center; gap: 6px; font-weight: 700; letter-spacing: 0.1em; }
.reviews-list-head .count-right { color: var(--text-mute); }
.review { display: grid; grid-template-columns: 44px 1fr; gap: 14px; padding: 14px 4px; border-bottom: 1px solid var(--line); }
.review:last-child { border-bottom: 0; }
.avatar {
  width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(135deg, #2a2a2e, #0e0e10);
  border: 1px solid var(--line-strong); color: var(--silver-2); font-weight: 700;
}
.avatar.green { background: linear-gradient(135deg, #1a3a25, #0e0e10); color: #74e89a; }
.review-body header { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 6px; }
.review-body strong { font-size: 14px; }
.tag-verified { background: rgba(220,220,230,0.1); color: #d6d6da; padding: 3px 8px; border-radius: 6px; font-size: 10px; letter-spacing: 0.1em; }
.tag-ok { background: var(--green-bg); color: #74e89a; padding: 3px 8px; border-radius: 6px; font-size: 10px; letter-spacing: 0.1em; }
.rdate { color: var(--text-mute); font-size: 11px; margin-left: auto; }
.rtitle { font-weight: 700; font-size: 14px; margin: 2px 0 4px; }
.rtext { color: var(--text-dim); font-size: 13px; margin-bottom: 6px; }

.faq { max-width: 880px; margin: 0 auto; padding: 40px 24px 120px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; margin-top: 12px; }
details {
  background: rgba(15,15,17,0.7); border: 1px solid var(--line); border-radius: 16px; padding: 16px 20px;
  transition: border-color .25s, background .25s;
}
details:hover { border-color: var(--line-strong); background: rgba(20,20,24,0.8); }
details[open] p { animation: fadeSlide .35s ease both; }
@keyframes fadeSlide {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}
details[open] { border-color: var(--line-strong); }
summary {
  cursor: pointer; list-style: none; font-weight: 700; display: flex; justify-content: space-between; align-items: center;
}
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; color: var(--silver-2); font-weight: 400; font-size: 22px; transition: transform .2s; }
details[open] summary::after { transform: rotate(45deg); }
details p { color: var(--text-dim); margin-top: 10px; font-size: 14px; line-height: 1.6; }

.footer {
  max-width: 1180px; margin: 0 auto; padding: 60px 24px 40px;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 28px; margin-bottom: 30px;
}
.footer h5 { font-size: 11px; letter-spacing: 0.18em; color: var(--text-mute); margin-bottom: 12px; font-weight: 700; }
.footer a { display: block; font-size: 14px; color: var(--text-dim); padding: 4px 0; }
.footer a:hover { color: var(--text); }
.footer-tagline { color: var(--text-mute); font-size: 13px; margin-top: 10px; max-width: 280px; }
.footer-bottom { color: var(--text-mute); font-size: 12px; text-align: center; padding-top: 20px; border-top: 1px solid var(--line); }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .plan-row-header { flex-direction: column; align-items: flex-start; }
  .price-stack { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .hero { padding: 56px 16px 80px; }
  .hero-stats { gap: 28px; }
  .footer-grid { grid-template-columns: 1fr; }
  .nav { padding: 10px 14px; }
  .brand-name { display: none; }
}
