/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --brand: #4F46E5;
  --brand-light: #6366F1;
  --brand-glow: rgba(79,70,229,0.25);
  --cyan: #0EA5E9;
  --cyan-glow: rgba(14,165,233,0.2);
  --gold: #F59E0B;

  --bg-0: #F0F4FA;
  --bg-1: #E8EEF6;
  --bg-2: #E2E9F3;
  --bg-3: #DAE3F0;
  --bg-card: #FFFFFF;
  --bg-card-hover: #FFFFFF;

  --text-1: #0F172A;
  --text-2: #475569;
  --text-3: #94A3B8;
  --border: rgba(0,0,0,0.06);
  --border-hover: rgba(79,70,229,0.25);
  --border-glow: rgba(79,70,229,0.15);

  --gradient: linear-gradient(135deg, #4F46E5, #0EA5E9);
  --gradient-text: linear-gradient(135deg, #4F46E5, #0EA5E9);
  --gradient-mesh: radial-gradient(ellipse at 20% 50%, rgba(79,70,229,0.06) 0%, transparent 50%),
                   radial-gradient(ellipse at 80% 20%, rgba(14,165,233,0.04) 0%, transparent 50%),
                   radial-gradient(ellipse at 50% 80%, rgba(139,92,246,0.03) 0%, transparent 50%);

  --nav-h: 120px;
  --r-sm: 12px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;

  --font-display: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;

  --shadow-card: 0 1px 3px rgba(0,0,0,0.04), 0 4px 24px rgba(0,0,0,0.06);
  --shadow-card-hover: 0 8px 40px rgba(0,0,0,0.1), 0 0 0 1px rgba(79,70,229,0.08);
  --shadow-glow: 0 0 60px rgba(79,70,229,0.08);
}

html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }

body {
  font-family: var(--font-body);
  background: var(--bg-0);
  color: var(--text-1);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ===== AMBIENT ===== */
.ambient-bg {
  position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden;
}
.orb {
  position: absolute; border-radius: 50%;
  filter: blur(120px); opacity: 0.5;
  animation: orbDrift 30s ease-in-out infinite;
}
.orb-1 { width: 800px; height: 800px; background: radial-gradient(circle, rgba(79,70,229,0.07), transparent 70%); top: -20%; left: -10%; }
.orb-2 { width: 600px; height: 600px; background: radial-gradient(circle, rgba(14,165,233,0.05), transparent 70%); top: 30%; right: -15%; animation-delay: -10s; }
.orb-3 { width: 500px; height: 500px; background: radial-gradient(circle, rgba(139,92,246,0.04), transparent 70%); bottom: 5%; left: 20%; animation-delay: -20s; }

@keyframes orbDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -20px) scale(1.05); }
  50% { transform: translate(-20px, 15px) scale(0.97); }
  75% { transform: translate(15px, 25px) scale(1.02); }
}

.noise-overlay { display: none; }
.grid-overlay { display: none; }

.navbar, .hero, .section, .footer, .social-proof-banner { position: relative; z-index: 2; }

/* ===== CONTAINER ===== */
.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 720px; }

/* ===== SECTION ===== */
.section { padding: 120px 0; }
.section-header { text-align: center; margin-bottom: 64px; }

.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px; border-radius: 100px;
  font-size: 11px; font-weight: 700; letter-spacing: 2.5px;
  color: var(--brand);
  background: #EEF2FF;
  border: 1px solid #E0E7FF;
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800; line-height: 1.15; letter-spacing: -0.03em;
  color: var(--text-1);
}

.text-accent {
  background: var(--gradient-text);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.section-subtitle {
  margin-top: 16px; font-size: 1rem; color: var(--text-2);
  max-width: 500px; margin-left: auto; margin-right: auto; line-height: 1.7;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; height: var(--nav-h); z-index: 100;
  background: rgba(13,27,42,0.6); backdrop-filter: blur(24px) saturate(1.4);
  border-bottom: 1px solid rgba(255,255,255,0.06); transition: all 0.4s;
}
.navbar.scrolled { background: rgba(13,27,42,0.92); box-shadow: 0 4px 30px rgba(0,0,0,0.3); }

.nav-container {
  max-width: 1120px; margin: 0 auto; padding: 0 24px;
  height: 100%; display: flex; align-items: center; justify-content: space-between;
}

.logo { display: flex; align-items: center; }

.logo-img {
  height: 200px; width: auto;
  object-fit: contain;
  transition: opacity 0.3s;
}
.logo:hover .logo-img { opacity: 0.85; }

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: 0.8125rem; font-weight: 500; color: rgba(255,255,255,0.55);
  transition: color 0.25s; letter-spacing: 0.3px;
}
.nav-links a:hover { color: rgba(255,255,255,0.95); }

.nav-cta {
  display: inline-flex !important; align-items: center; gap: 6px;
  padding: 9px 22px !important; border-radius: var(--r-sm);
  background: var(--brand) !important; color: white !important; font-weight: 600 !important;
  box-shadow: 0 2px 12px var(--brand-glow); transition: all 0.3s !important;
}
.nav-cta:hover { background: #5B52F0 !important; box-shadow: 0 4px 20px var(--brand-glow); transform: translateY(-1px); }

.mobile-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.mobile-toggle span { display: block; width: 20px; height: 1.5px; background: rgba(255,255,255,0.7); border-radius: 2px; transition: all 0.3s; }

/* Dots */
.pill-dot, .tab-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.dot-2k { background: #FB923C; }
.dot-cod { background: #F87171; }
.dot-fn { background: #A78BFA; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: var(--r-sm);
  font-family: var(--font-body); font-weight: 600; font-size: 0.875rem;
  border: none; cursor: pointer; transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  letter-spacing: 0.2px;
}

.btn-primary {
  background: var(--brand); color: white;
  box-shadow: 0 2px 16px var(--brand-glow);
}
.btn-primary:hover {
  background: #5B52F0;
  box-shadow: 0 4px 28px var(--brand-glow);
  transform: translateY(-2px);
}

.btn-glass {
  background: rgba(255,255,255,0.04); color: var(--text-2);
  border: 1px solid var(--border);
}
.btn-glass:hover {
  background: rgba(255,255,255,0.08); border-color: var(--border-hover);
  color: var(--text-1); transform: translateY(-2px);
}

.btn-lg { padding: 16px 36px; font-size: 0.9375rem; border-radius: var(--r-md); }
.btn-sm { padding: 10px 20px; font-size: 0.8125rem; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding-top: var(--nav-h); position: relative; overflow: hidden;
  background:
    radial-gradient(ellipse at 25% 15%, rgba(79,70,229,0.18) 0%, transparent 45%),
    radial-gradient(ellipse at 75% 20%, rgba(14,165,233,0.12) 0%, transparent 40%),
    radial-gradient(ellipse at 50% 80%, rgba(139,92,246,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 60% 40%, rgba(79,70,229,0.06) 0%, transparent 60%),
    linear-gradient(180deg, #070E18 0%, #0D1B2A 20%, #0F1F35 50%, #152540 70%, var(--bg-0) 100%);
  color: white;
}

/* 3D Wave canvas */
.hero-wave-canvas {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 1; opacity: 0.4;
}

/* Grid overlay for depth */
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at 50% 40%, white 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 40%, white 0%, transparent 70%);
  pointer-events: none;
}

/* Large center glow */
.hero::after {
  content: ''; position: absolute; top: 30%; left: 50%;
  width: 900px; height: 600px;
  background: radial-gradient(ellipse, rgba(79,70,229,0.12) 0%, rgba(14,165,233,0.04) 40%, transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  filter: blur(40px);
}

/* Hero decorative elements */
.hero-glow {
  position: absolute; border-radius: 50%; pointer-events: none;
  filter: blur(60px);
}
.hero-glow-1 {
  width: 500px; height: 500px; top: 5%; left: 10%;
  background: radial-gradient(circle, rgba(79,70,229,0.15), transparent 70%);
  animation: heroGlowFloat 12s ease-in-out infinite;
}
.hero-glow-2 {
  width: 400px; height: 400px; top: 30%; right: 5%;
  background: radial-gradient(circle, rgba(14,165,233,0.1), transparent 70%);
  animation: heroGlowFloat 15s ease-in-out infinite 3s;
}
.hero-glow-3 {
  width: 350px; height: 350px; bottom: 15%; left: 30%;
  background: radial-gradient(circle, rgba(139,92,246,0.08), transparent 70%);
  animation: heroGlowFloat 10s ease-in-out infinite 6s;
}

/* Diagonal light streaks */
.hero-line {
  position: absolute; pointer-events: none;
  width: 1px; background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.04), transparent);
}
.hero-line-1 { height: 60%; top: 10%; left: 20%; transform: rotate(15deg); }
.hero-line-2 { height: 50%; top: 20%; right: 25%; transform: rotate(-12deg); }
.hero-line-3 { height: 40%; top: 30%; left: 55%; transform: rotate(8deg); }

/* Subtle rings */
.hero-ring {
  position: absolute; border-radius: 50%; pointer-events: none;
  border: 1px solid rgba(255,255,255,0.03);
}
.hero-ring-1 {
  width: 600px; height: 600px; top: 10%; left: -5%;
  animation: heroRingSpin 60s linear infinite;
}
.hero-ring-2 {
  width: 400px; height: 400px; bottom: 10%; right: -3%;
  border-style: dashed;
  border-color: rgba(79,70,229,0.06);
  animation: heroRingSpin 45s linear infinite reverse;
}

/* Floating particles */
.hero-float-dot {
  position: absolute; border-radius: 50%; pointer-events: none;
  background: rgba(255,255,255,0.15);
}
.hfd-1 { width: 3px; height: 3px; top: 20%; left: 15%; animation: heroDotFloat 8s ease-in-out infinite; }
.hfd-2 { width: 2px; height: 2px; top: 35%; right: 20%; animation: heroDotFloat 6s ease-in-out infinite 1s; }
.hfd-3 { width: 4px; height: 4px; top: 60%; left: 25%; animation: heroDotFloat 10s ease-in-out infinite 2s; background: rgba(79,70,229,0.3); }
.hfd-4 { width: 2px; height: 2px; top: 45%; right: 30%; animation: heroDotFloat 7s ease-in-out infinite 3s; }
.hfd-5 { width: 3px; height: 3px; top: 25%; left: 60%; animation: heroDotFloat 9s ease-in-out infinite 4s; background: rgba(14,165,233,0.25); }
.hfd-6 { width: 2px; height: 2px; top: 70%; right: 15%; animation: heroDotFloat 11s ease-in-out infinite 5s; }

@keyframes heroGlowFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -15px) scale(1.05); }
  66% { transform: translate(-15px, 10px) scale(0.95); }
}
@keyframes heroRingSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
@keyframes heroDotFloat {
  0%, 100% { transform: translateY(0); opacity: 0.3; }
  50% { transform: translateY(-20px); opacity: 0.8; }
}

.hero-content { text-align: center; padding: 80px 0 60px; position: relative; z-index: 2; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 20px; border-radius: 100px;
  font-size: 11px; font-weight: 700; letter-spacing: 3px;
  color: #38BDF8;
  background: rgba(56,189,248,0.08); border: 1px solid rgba(56,189,248,0.15);
  margin-bottom: 32px;
}

.eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%; background: #38BDF8;
  animation: pulse-dot 2s ease-in-out infinite;
  box-shadow: 0 0 8px rgba(56,189,248,0.4);
}
@keyframes pulse-dot { 0%,100%{ opacity:1; transform:scale(1); } 50%{ opacity:0.4; transform:scale(0.7); } }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem); font-weight: 900;
  line-height: 1.0; letter-spacing: -0.04em;
  margin-bottom: 24px;
}
.hero-title-accent {
  display: block; padding-top: 4px;
  background: var(--gradient-text);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  color: rgba(255,255,255,0.55); max-width: 480px; margin: 0 auto 40px; line-height: 1.8;
}

.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px; }
.hero .btn-glass {
  background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.12); color: rgba(255,255,255,0.7);
}
.hero .btn-glass:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.25); color: white; }

/* Hero Social Proof */
.hero-social-proof {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 12px 24px; border-radius: 100px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
}
.proof-avatars { display: flex; }
.proof-avatar {
  width: 30px; height: 30px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.625rem; font-weight: 700; color: white;
  border: 2px solid var(--bg-0); margin-left: -6px;
}
.proof-avatar:first-child { margin-left: 0; }
.proof-text { display: flex; flex-direction: column; gap: 1px; }
.proof-count { font-size: 0.75rem; font-weight: 600; color: rgba(255,255,255,0.9); }
.proof-stars { display: flex; align-items: center; gap: 1px; }
.proof-rating { font-size: 0.6875rem; font-weight: 600; color: rgba(255,255,255,0.4); margin-left: 4px; }

.hero-scroll-indicator { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); }
.scroll-line { width: 1px; height: 48px; background: linear-gradient(to bottom, rgba(79,70,229,0.4), transparent); animation: scrollPulse 2.5s ease-in-out infinite; }
@keyframes scrollPulse { 0%,100%{ opacity:0.2; transform:scaleY(0.5); transform-origin:top; } 50%{ opacity:0.8; transform:scaleY(1); } }

/* ===== PRODUCT CARDS (yew.gg style) ===== */
.product-card {
  border-radius: var(--r-xl); overflow: hidden;
  background: var(--bg-card); border: 1px solid var(--border);
  margin-bottom: 20px;
  box-shadow: var(--shadow-card);
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  max-width: 560px;
}
.product-card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-card-hover), var(--shadow-glow);
  transform: translateY(-4px);
}

/* Banner — image-based */
.pc-banner {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-xl) var(--r-xl) 0 0;
}
.pc-banner-img {
  width: 100%; height: 160px;
  object-fit: cover; object-position: center;
  display: block;
}
.pc-banner-rating {
  position: absolute; top: 24px; right: 28px; z-index: 2;
  display: flex; align-items: center; gap: 5px;
  font-size: 0.75rem; font-weight: 600; color: rgba(255,255,255,0.6);
  background: rgba(0,0,0,0.3); padding: 5px 12px; border-radius: 100px;
  backdrop-filter: blur(8px);
}

/* Body — compact */
.pc-body { padding: 20px 24px 24px; }

.pc-brand {
  display: flex; align-items: center; gap: 10px; margin-bottom: 20px;
}
.pc-logo {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--gradient); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 900; font-size: 0.8125rem; color: white;
  box-shadow: 0 2px 8px var(--brand-glow);
}
.pc-name {
  font-family: var(--font-display); font-size: 1rem; font-weight: 700;
  color: var(--text-1); letter-spacing: 0.5px;
}

.pc-features {
  display: flex; flex-direction: column; gap: 8px;
  margin-bottom: 24px;
}
.pc-features li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.875rem; color: var(--text-2);
}
.pc-features li::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: var(--brand); flex-shrink: 0;
}

.pc-actions { display: flex; gap: 10px; }
.pc-actions .btn { flex: 1; justify-content: center; padding: 12px 24px; }

/* (Banner scenes removed — using images now) */

/* ===== TRUST STRIP ===== */
.trust-strip {
  padding: 48px 0;
  background: linear-gradient(135deg, #0D1B2A 0%, #111D30 100%);
}
.trust-stats {
  display: flex; justify-content: center; align-items: center; gap: 0; flex-wrap: wrap;
}
.trust-stat { flex: 1; text-align: center; padding: 12px 32px; min-width: 140px; }
.trust-number {
  display: block; font-family: var(--font-display); font-size: 1.75rem; font-weight: 800;
  background: linear-gradient(135deg, #818CF8, #38BDF8);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 4px;
}
.trust-label { font-size: 0.75rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.4); }
.trust-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.08); flex-shrink: 0; }

/* ===== REVIEWS ===== */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.review-card {
  padding: 32px; border-radius: var(--r-lg);
  background: var(--bg-card); border: 1px solid var(--border);
  box-shadow: var(--shadow-card); transition: all 0.4s;
}
.review-card:hover { border-color: var(--border-hover); transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }

.review-stars { display: flex; gap: 2px; margin-bottom: 16px; }
.review-text {
  font-size: 0.9375rem; color: var(--text-2); line-height: 1.7;
  margin-bottom: 20px; font-style: italic;
}
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700; color: white;
}
.review-name { font-size: 0.8125rem; font-weight: 600; color: var(--text-1); display: block; }
.review-badge {
  font-size: 0.625rem; font-weight: 700; letter-spacing: 0.5px;
  color: #0EA5E9; background: #F0F9FF; border: 1px solid #E0F2FE;
  padding: 2px 8px; border-radius: 4px;
}

/* ===== GAME DETAIL PANELS ===== */
.game-detail-panel { padding-top: 16px; }
.detail-header { margin-bottom: 48px; }

/* Legacy — hidden */
.game-tabs, .tab-panel, .game-hero-row, .game-label, .game-headline,
.game-features-mini, .game-price-row, .mf-dot { display: none; }

/* ===== FEATURE CARDS ===== */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

.feature-card {
  position: relative; padding: 32px; border-radius: var(--r-lg);
  background: var(--bg-card); border: 1px solid var(--border);
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1); overflow: hidden;
  box-shadow: var(--shadow-card);
}
.feature-card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-card-hover), var(--shadow-glow);
  transform: translateY(-6px);
}

.feature-card-border {
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--gradient); transform: scaleX(0); transition: transform 0.5s; transform-origin: left;
}
.feature-card:hover .feature-card-border { transform: scaleX(1); }
.border-cod { background: linear-gradient(135deg, #F87171, #FB923C); }
.border-fn { background: linear-gradient(135deg, #A78BFA, #22d3ee); }

.feature-tag {
  display: inline-block; padding: 4px 10px; border-radius: 6px;
  font-size: 10px; font-weight: 700; letter-spacing: 1.5px; margin-bottom: 14px;
}
.tag-2k { color: #D97706; background: #FFF8ED; border: 1px solid #FDE8C8; }
.tag-2k-adv { color: var(--brand); background: #EEF2FF; border: 1px solid #E0E7FF; }
.tag-cod { color: #DC2626; background: #FEF2F2; border: 1px solid #FECACA; }
.tag-cod-adv { color: #D97706; background: #FFF8ED; border: 1px solid #FDE8C8; }
.tag-cod-move { color: #0891B2; background: #ECFEFF; border: 1px solid #CFFAFE; }
.tag-fn { color: #7C3AED; background: #F5F0FF; border: 1px solid #E9D5FF; }
.tag-fn-build { color: #0891B2; background: #ECFEFF; border: 1px solid #CFFAFE; }
.tag-fn-move { color: #16A34A; background: #F0FDF4; border: 1px solid #DCFCE7; }

.feature-card h3 {
  font-family: var(--font-display); font-size: 1.125rem; font-weight: 700;
  margin-bottom: 16px; color: var(--text-1);
}

.feature-video { margin-bottom: 16px; }
.video-slot { border-radius: var(--r-md); overflow: hidden; }
.video-slot video { width: 100%; display: block; }
.video-slot-inner {
  aspect-ratio: 16/9;
  background: linear-gradient(145deg, var(--bg-1), #EDF2FF);
  border: 1px solid var(--border); border-radius: var(--r-md);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
  transition: all 0.3s; cursor: pointer;
}
.video-slot-inner:hover { border-color: var(--border-hover); background: linear-gradient(145deg, #EDF2FF, #EEF2FF); }
.play-btn-ring {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1.5px solid rgba(0,0,0,0.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-3); transition: all 0.3s;
}
.video-slot-inner:hover .play-btn-ring { border-color: var(--brand); color: var(--brand); }
.video-label { font-size: 0.625rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-3); }

.feature-card p { font-size: 0.8125rem; color: var(--text-2); line-height: 1.7; margin-bottom: 16px; }

.feature-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.8125rem; color: var(--text-3); padding: 3px 0;
}
.feature-list li::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--brand-light); flex-shrink: 0; }

/* ===== GLASS CARDS (Support) ===== */
.support-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }

.glass-card {
  position: relative; padding: 44px; border-radius: var(--r-lg);
  background: var(--bg-card); border: 1px solid var(--border);
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1); overflow: hidden;
  box-shadow: var(--shadow-card);
}
.glass-card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-card-hover), var(--shadow-glow);
  transform: translateY(-6px);
}

.glass-card-shine {
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--gradient); opacity: 0; transition: opacity 0.4s;
}
.glass-card:hover .glass-card-shine { opacity: 1; }

.card-icon-wrap {
  width: 52px; height: 52px; border-radius: var(--r-sm);
  background: #EEF2FF; border: 1px solid #E0E7FF;
  display: flex; align-items: center; justify-content: center;
  color: var(--brand); margin-bottom: 24px; transition: all 0.3s;
}
.glass-card:hover .card-icon-wrap { box-shadow: 0 0 24px rgba(79,70,229,0.1); }

.glass-card h3 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; margin-bottom: 12px; }
.glass-card p { color: var(--text-2); font-size: 0.9375rem; line-height: 1.7; margin-bottom: 24px; }

.card-features li {
  display: flex; align-items: center; gap: 12px; padding: 5px 0;
  font-size: 0.8125rem; color: var(--text-2);
}
.card-features li::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--brand-light); flex-shrink: 0; }

/* ===== STEPS TIMELINE ===== */
.steps-timeline { position: relative; max-width: 560px; margin: 0 auto; }
.timeline-line {
  position: absolute; left: 28px; top: 0; bottom: 0; width: 1px;
  background: linear-gradient(to bottom, var(--brand), rgba(79,70,229,0.1));
}

.step { display: flex; gap: 28px; align-items: flex-start; padding: 20px 0; position: relative; }
.step-marker {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--bg-2); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; position: relative; z-index: 1; transition: all 0.4s;
}
.step:hover .step-marker { border-color: var(--brand); box-shadow: 0 0 24px var(--brand-glow); }
.step-marker span {
  font-family: var(--font-display); font-size: 0.9375rem; font-weight: 800;
  background: var(--gradient-text);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.step-content { padding-top: 8px; }
.step-content h3 { font-family: var(--font-display); font-size: 1.125rem; font-weight: 700; margin-bottom: 8px; }
.step-content p { font-size: 0.875rem; color: var(--text-2); line-height: 1.7; }

/* ===== FAQ ===== */
.faq-list { display: flex; flex-direction: column; gap: 6px; }

.faq-item {
  border-radius: var(--r-md); background: var(--bg-card); border: 1px solid var(--border);
  overflow: hidden; transition: all 0.3s;
}
.faq-item:hover, .faq-item.active { border-color: var(--border-hover); }

.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; background: none; border: none;
  color: var(--text-1); font-family: var(--font-body); font-size: 0.9375rem; font-weight: 600;
  cursor: pointer; text-align: left; transition: color 0.2s;
}
.faq-question:hover { color: var(--brand-light); }

.faq-icon { width: 18px; height: 18px; position: relative; flex-shrink: 0; }
.faq-icon span { position: absolute; background: var(--text-3); border-radius: 1px; transition: all 0.3s; }
.faq-icon span:first-child { width: 12px; height: 1.5px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.faq-icon span:last-child { width: 1.5px; height: 12px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.faq-item.active .faq-icon span:last-child { transform: translate(-50%,-50%) rotate(90deg); opacity: 0; }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1); }
.faq-item.active .faq-answer { max-height: 200px; }
.faq-answer p { padding: 0 24px 20px; color: var(--text-2); font-size: 0.9375rem; line-height: 1.7; }

/* ===== CHECKOUT / PRICING ===== */
.checkout-wrapper {
  position: relative; border-radius: var(--r-xl);
  background: var(--bg-card); border: 1px solid var(--border);
  padding: 64px; overflow: hidden;
  box-shadow: var(--shadow-card);
}
.checkout-glow {
  position: absolute; top: -150px; right: -150px; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(79,70,229,0.08), transparent 60%); pointer-events: none;
}

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 20px; }

.pricing-card {
  padding: 36px; border-radius: var(--r-lg);
  background: var(--bg-2); border: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 20px;
  transition: all 0.4s; box-shadow: var(--shadow-card);
}
.pricing-card:hover {
  border-color: var(--border-hover); transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover), var(--shadow-glow);
}

.pricing-card-featured {
  border-color: rgba(79,70,229,0.3);
  background: linear-gradient(180deg, rgba(79,70,229,0.08), var(--bg-2));
  position: relative;
}
.pricing-card-featured:hover { box-shadow: var(--shadow-card-hover), 0 0 80px rgba(79,70,229,0.2); }

.featured-badge {
  position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
  padding: 5px 20px; border-radius: 0 0 8px 8px;
  background: var(--gradient);
  font-size: 10px; font-weight: 700; letter-spacing: 2px; color: white;
}

.pricing-game-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
}
.ptag-2k { color: #FB923C; }
.ptag-cod { color: #F87171; }
.ptag-fn { color: #A78BFA; }
.ptag-bundle { color: var(--brand-light); }

.pricing-amount { display: flex; align-items: baseline; gap: 10px; }
.pa-old { font-size: 1rem; color: var(--text-3); text-decoration: line-through; }
.pa-now {
  font-family: var(--font-display); font-size: 2.5rem; font-weight: 900;
  background: var(--gradient-text);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.pa-period { font-size: 0.75rem; color: var(--text-3); }
.pa-mo { font-size: 1.125rem; font-weight: 600; }

.pricing-features { display: flex; flex-direction: column; gap: 8px; flex: 1; }
.pricing-features li {
  font-size: 0.8125rem; color: var(--text-2); padding-left: 16px; position: relative;
}
.pricing-features li::before {
  content: ''; position: absolute; left: 0; top: 8px;
  width: 4px; height: 4px; border-radius: 50%; background: var(--brand-light);
}

.pricing-extra { margin-top: 0; }
.pricing-card-wide {
  padding: 36px; border-radius: var(--r-lg);
  background: var(--bg-2); border: 1px solid var(--border);
  transition: all 0.4s; box-shadow: var(--shadow-card);
}
.pricing-card-wide:hover { border-color: var(--border-hover); box-shadow: var(--shadow-card-hover); }

.pricing-card-wide-inner { display: flex; align-items: center; gap: 48px; flex-wrap: wrap; }
.pricing-card-wide-inner > div { flex-shrink: 0; }
.pricing-card-wide-inner .pricing-features { flex: 1; min-width: 200px; }
.pricing-card-wide-inner .btn { flex-shrink: 0; }

/* ===== FOOTER ===== */
.footer {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  background: var(--bg-1);
}
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 24px; }

.footer-brand { display: flex; align-items: center; }
.footer-logo-img { height: 80px; width: auto; object-fit: contain; }

.footer-links { display: flex; gap: 28px; }
.footer-links a { font-size: 0.8125rem; color: var(--text-3); transition: color 0.2s; }
.footer-links a:hover { color: var(--text-1); }
.footer-copy { font-size: 0.6875rem; color: var(--text-3); }

/* ===== ANIMATIONS ===== */
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes glowPulse {
  0%, 100% { box-shadow: 0 2px 16px var(--brand-glow); }
  50% { box-shadow: 0 4px 32px rgba(79,70,229,0.5); }
}

.hero-social-proof { animation: floatY 6s ease-in-out infinite; }
.hero-eyebrow { animation: floatY 5s ease-in-out infinite; animation-delay: -1s; }

.featured-badge {
  background: linear-gradient(90deg, var(--brand) 0%, var(--cyan) 50%, var(--brand) 100%);
  background-size: 200% 100%;
  animation: shimmer 3s linear infinite;
}

.hero .btn-primary { animation: glowPulse 3s ease-in-out infinite; }

.feature-card:hover { transform: translateY(-6px) rotateX(1deg) rotateY(-0.5deg); }
.glass-card:hover { transform: translateY(-6px) rotateX(1deg) rotateY(-0.5deg); }

.feature-card, .glass-card, .pricing-card {
  transform-style: preserve-3d; perspective: 1000px;
}

/* ===== REVEAL ===== */
[data-reveal] {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
[data-reveal].visible { opacity: 1; transform: translateY(0); }
[data-delay="1"] { transition-delay: 0.1s; }
[data-delay="2"] { transition-delay: 0.2s; }
[data-delay="3"] { transition-delay: 0.3s; }
[data-delay="4"] { transition-delay: 0.4s; }
[data-delay="5"] { transition-delay: 0.5s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .checkout-wrapper { padding: 48px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto 20px; }
  .pc-banner-img { height: 140px; }
}

@media (max-width: 768px) {
  .section { padding: 80px 0; }
  .nav-links {
    display: none; position: absolute; top: var(--nav-h); left: 0; right: 0;
    background: rgba(13,27,42,0.97); backdrop-filter: blur(20px);
    flex-direction: column; padding: 24px; gap: 16px;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .mobile-toggle { display: flex; }
  .support-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: clamp(2.5rem, 9vw, 4rem); }
  .checkout-wrapper { padding: 28px; }
  .pricing-card-wide-inner { flex-direction: column; gap: 24px; }
  .timeline-line { left: 24px; }
  .step-marker { width: 48px; height: 48px; }
  .step { gap: 20px; }
  .pc-banner-img { height: 120px; }
  .pc-actions { flex-direction: column; }
  .trust-stats { flex-direction: column; gap: 0; }
  .trust-divider { width: 80%; height: 1px; margin: 0 auto; }
  .trust-stat { padding: 16px; }
  .reviews-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-content { padding: 48px 0 40px; }
  .pc-banner-img { height: 100px; }
  .hero-social-proof { flex-direction: column; gap: 10px; padding: 16px 20px; border-radius: 20px; }
}
