/* ============================================================
   NULL — CYBERPUNK SYSTEM LOG DESIGN SYSTEM
   Background: #000000 | Text: #FFFFFF | Accent: #00F0FF
   ============================================================ */

:root {
  --neon-blue: #00F0FF;
  --neon-green: #39ff8a;
  --neon-pink: #ff2d95;
  --dark-bg: #000000;
  --dark-surface: #050505;
  --dark-card: #0a0a0a;
  --dark-border: #1a1a1a;
  --text-primary: #FFFFFF;
  --text-secondary: #999999;
  --text-muted: #555555;
  --white: #FFFFFF;
}

/* ============================================================
   OPENING ANIMATION — TERMINAL BOOT SEQUENCE
   ============================================================ */
#opening-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: overlayFadeOut 0.5s ease 2.6s forwards;
  overflow: hidden;
}
#opening-overlay .boot-scanline {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg, transparent, transparent 2px,
    rgba(0, 240, 255, 0.015) 2px, rgba(0, 240, 255, 0.015) 4px
  );
  pointer-events: none;
}
#opening-overlay .boot-line {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(0, 240, 255, 0.4), transparent);
  animation: bootScan 1.8s ease-in-out;
}
@keyframes bootScan {
  0%   { top: 0%; opacity: 0; }
  10%  { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}
#opening-overlay .boot-logo {
  font-family: 'Orbitron', monospace;
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 900;
  color: #fff;
  letter-spacing: 16px;
  text-transform: uppercase;
  opacity: 0;
  animation: bootLogoIn 0.4s ease 0.6s forwards;
  position: relative;
}
#opening-overlay .boot-logo .boot-underscore {
  color: var(--neon-blue);
  animation: cursorBlink 0.5s steps(1) infinite;
}
@keyframes bootLogoIn {
  0%   { opacity: 0; transform: scale(0.8); filter: blur(8px); }
  60%  { opacity: 1; transform: scale(1.02); filter: blur(0); }
  80%  { transform: scale(0.99); }
  100% { opacity: 1; transform: scale(1); filter: blur(0); }
}
@keyframes cursorBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}
#opening-overlay .boot-sub {
  font-family: 'Orbitron', monospace;
  font-size: 10px;
  letter-spacing: 6px;
  color: var(--neon-blue);
  margin-top: 16px;
  opacity: 0;
  animation: bootSubIn 0.4s ease 1.2s forwards;
}
@keyframes bootSubIn {
  0%   { opacity: 0; transform: translateY(10px); }
  100% { opacity: 0.7; transform: translateY(0); }
}
#opening-overlay .boot-progress {
  width: clamp(200px, 30vw, 320px);
  height: 2px;
  background: rgba(0, 240, 255, 0.1);
  margin-top: 32px;
  overflow: hidden;
  opacity: 0;
  animation: bootSubIn 0.3s ease 1.0s forwards;
}
#opening-overlay .boot-progress-bar {
  height: 100%;
  width: 0;
  background: var(--neon-blue);
  box-shadow: 0 0 12px var(--neon-blue);
  animation: bootLoad 1.4s ease 1.0s forwards;
}
@keyframes bootLoad {
  0%   { width: 0; }
  30%  { width: 40%; }
  60%  { width: 75%; }
  90%  { width: 95%; }
  100% { width: 100%; }
}
#opening-overlay .boot-glitch {
  position: absolute;
  inset: 0;
  opacity: 0;
  background: rgba(0, 240, 255, 0.03);
  animation: bootGlitch 2.4s steps(1) both;
}
@keyframes bootGlitch {
  0%, 15%, 17%, 30%, 32%, 100% { opacity: 0; }
  16%, 31% { opacity: 1; }
}
@keyframes overlayFadeOut {
  0%   { opacity: 1; pointer-events: auto; }
  100% { opacity: 0; pointer-events: none; visibility: hidden; }
}

/* ============================================================
   BACKGROUND PARTICLE CANVAS
   ============================================================ */
#bg-particles {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

section, footer {
  position: relative;
  z-index: 2;
}

/* ============================================================
   NEON TEXT GLOW EFFECT (toned down for readability)
   ============================================================ */
.neon-text {
  color: var(--neon-blue) !important;
  text-shadow:
    0 0 6px rgba(0, 240, 255, 0.5),
    0 0 16px rgba(0, 240, 255, 0.25);
}

/* ============================================================
   STATS COUNTER SECTION
   ============================================================ */
#stats {
  background: var(--dark-bg);
  position: relative;
  overflow: hidden;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 900px;
  margin: 48px auto 0;
}
.stat-item {
  text-align: center;
  padding: 40px 20px;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  transition: all 0.3s;
}
.stat-item:hover {
  border-color: rgba(0, 240, 255, 0.2);
  background: rgba(0, 240, 255, 0.02);
}
.stat-number {
  font-family: 'Orbitron', monospace;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  color: var(--neon-blue);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 12px;
  color: var(--text-secondary);
  letter-spacing: 2px;
}

/* ============================================================
   PRICING — DAILY COST BREAKDOWN
   ============================================================ */
.pricing-daily {
  margin-top: 8px;
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 1px;
}
.pricing-daily strong {
  color: var(--neon-green);
  font-family: 'Orbitron', monospace;
  font-size: 14px;
  font-weight: 900;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

body {
  background: var(--dark-bg);
  color: var(--text-primary);
  font-family: 'Noto Sans JP', 'Inter', sans-serif;
  overflow-x: hidden;
  width: 100%;
  line-height: 1.7;
}

/* Scanline overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 240, 255, 0.008) 2px,
    rgba(0, 240, 255, 0.008) 4px
  );
  pointer-events: none;
  z-index: 9999;
}

::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: #000; }
::-webkit-scrollbar-thumb { background: var(--neon-blue); border-radius: 0; }
a { color: inherit; text-decoration: none; }

/* ============================================================
   NAVIGATION
   ============================================================ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 48px;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(0, 240, 255, 0.08);
}

.nav-logo {
  font-family: 'Orbitron', monospace;
  font-size: 22px;
  font-weight: 900;
  color: var(--neon-blue);
  letter-spacing: 8px;
  text-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
  position: relative;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  font-size: 11px;
  letter-spacing: 3px;
  transition: color 0.3s;
  font-weight: 400;
  text-transform: uppercase;
  font-family: 'Orbitron', monospace;
}
.nav-links a:hover { color: var(--neon-blue); }

.nav-cta {
  background: transparent;
  border: 1px solid var(--neon-blue);
  color: var(--neon-blue);
  padding: 10px 28px;
  font-size: 11px;
  letter-spacing: 3px;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-block;
  font-family: 'Orbitron', monospace;
}
.nav-cta:hover {
  background: var(--neon-blue);
  color: #000;
  box-shadow: 0 0 40px rgba(0, 240, 255, 0.4);
}

/* ============================================================
   HERO
   ============================================================ */
#hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 70% at 80% 50%, rgba(0, 240, 255, 0.04) 0%, transparent 70%),
    radial-gradient(ellipse 30% 50% at 20% 80%, rgba(0, 240, 255, 0.02) 0%, transparent 60%),
    #000000;
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 240, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 240, 255, 0.02) 1px, transparent 1px);
  background-size: 80px 80px;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 60px 80px 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 240, 255, 0.04);
  border: 1px solid rgba(0, 240, 255, 0.2);
  padding: 8px 20px;
  margin-bottom: 32px;
  font-size: 10px;
  letter-spacing: 4px;
  color: var(--neon-blue);
  text-transform: uppercase;
  font-family: 'Orbitron', monospace;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--neon-blue);
  box-shadow: 0 0 10px var(--neon-blue);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(0.6); }
}

.hero-title {
  font-family: 'Orbitron', monospace;
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 8px;
  color: var(--white);
  letter-spacing: 4px;
}
.hero-title-sub {
  font-size: clamp(18px, 2vw, 26px);
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 300;
  color: var(--text-secondary);
  letter-spacing: 4px;
  display: block;
  margin-bottom: 8px;
}
.hero-title-null {
  color: var(--neon-blue);
  display: block;
  font-size: clamp(72px, 8vw, 120px);
  text-shadow:
    0 0 80px rgba(0, 240, 255, 0.6),
    0 0 160px rgba(0, 240, 255, 0.2);
  animation: glowPulse 4s ease-in-out infinite;
  position: relative;
}
@keyframes glowPulse {
  0%, 100% {
    text-shadow: 0 0 80px rgba(0, 240, 255, 0.6), 0 0 160px rgba(0, 240, 255, 0.15);
  }
  50% {
    text-shadow: 0 0 120px rgba(0, 240, 255, 0.9), 0 0 200px rgba(0, 240, 255, 0.3);
  }
}

.hero-sub {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-weight: 300;
  letter-spacing: 2px;
  font-family: 'Orbitron', monospace;
  font-size: 12px;
}

.hero-catchcopy {
  font-size: clamp(16px, 1.8vw, 22px);
  color: var(--text-primary);
  margin-bottom: 16px;
  font-weight: 500;
  line-height: 2;
  border-left: 2px solid var(--neon-blue);
  padding-left: 24px;
  position: relative;
}
.hero-catchcopy::before {
  content: '';
  position: absolute;
  left: -1px;
  top: 0;
  width: 2px;
  height: 100%;
  background: var(--neon-blue);
  box-shadow: 0 0 12px var(--neon-blue);
}

.hero-desc {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 2;
}

.hero-zero-badge {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  background: rgba(0, 240, 255, 0.03);
  border: 1px solid rgba(0, 240, 255, 0.15);
  padding: 20px 32px;
  margin-bottom: 40px;
}
.hero-zero-number {
  font-family: 'Orbitron', monospace;
  font-size: 42px;
  font-weight: 900;
  color: var(--neon-blue);
  line-height: 1;
  text-shadow: 0 0 30px rgba(0, 240, 255, 0.5);
}
.hero-zero-text {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.5;
  letter-spacing: 1px;
}
.hero-zero-text strong {
  display: block;
  color: var(--text-primary);
  font-size: 14px;
  margin-bottom: 4px;
  letter-spacing: 2px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 100vh;
}
.hero-image-wrap img {
  height: 90vh;
  max-height: 800px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 80px rgba(0, 240, 255, 0.3));
  animation: floatY 6s ease-in-out infinite;
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
.hero-image-glow {
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 500px; height: 250px;
  background: radial-gradient(ellipse at center bottom, rgba(0, 240, 255, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  background: var(--neon-blue);
  color: #000;
  padding: 16px 40px;
  font-family: 'Orbitron', monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-block;
  text-transform: uppercase;
}
.btn-primary:hover {
  box-shadow: 0 0 50px rgba(0, 240, 255, 0.5), 0 0 100px rgba(0, 240, 255, 0.2);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  padding: 16px 40px;
  font-family: 'Orbitron', monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 3px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
  transition: all 0.3s;
  display: inline-block;
  text-transform: uppercase;
}
.btn-secondary:hover {
  border-color: var(--neon-blue);
  color: var(--neon-blue);
  transform: translateY(-2px);
}

.btn-line {
  background: #06C755;
  color: #fff;
  padding: 16px 40px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn-line:hover {
  box-shadow: 0 0 30px rgba(6, 199, 85, 0.5);
  transform: translateY(-2px);
}

/* ============================================================
   SECTIONS COMMON
   ============================================================ */
section { position: relative; }

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 48px;
}

.section-label {
  font-family: 'Orbitron', monospace;
  font-size: 10px;
  letter-spacing: 5px;
  color: var(--neon-blue);
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  opacity: 0.8;
}
.section-label::before {
  content: '>';
  color: var(--neon-blue);
  font-size: 12px;
}
.section-label::after {
  content: '';
  height: 1px;
  width: 60px;
  background: linear-gradient(90deg, var(--neon-blue), transparent);
}

.section-title {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
  color: var(--white);
  text-align: center;
}

.section-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 2;
  max-width: 640px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.neon-line-h {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 240, 255, 0.3), transparent);
}

/* ============================================================
   PROBLEM & SOLUTION
   ============================================================ */
#problem { background: var(--dark-surface); }

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 80px;
}

.problem-image {
  position: relative;
  overflow: hidden;
}
.problem-image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: center 30%;
  filter: grayscale(30%) brightness(0.8);
  transition: all 0.5s;
}
.problem-image:hover img {
  filter: grayscale(0%) brightness(1);
}
.problem-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.05) 0%, transparent 60%);
  border: 1px solid rgba(0, 240, 255, 0.1);
}

.problem-points {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.problem-point {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-left: 2px solid var(--neon-blue);
  transition: all 0.3s;
}
.problem-point:hover {
  border-color: rgba(0, 240, 255, 0.3);
  background: rgba(0, 240, 255, 0.03);
  transform: translateX(4px);
}
.problem-icon {
  font-size: 28px;
  flex-shrink: 0;
  width: 48px;
  text-align: center;
}
.problem-point-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
  letter-spacing: 1px;
}
.problem-point-text {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.8;
}

.solution-banner {
  margin-top: 64px;
  padding: 48px;
  background: rgba(0, 240, 255, 0.03);
  border: 1px solid rgba(0, 240, 255, 0.15);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.solution-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--neon-blue), transparent);
}
.solution-banner h3 {
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 700;
  color: var(--neon-blue);
  margin-bottom: 16px;
}
.solution-banner p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 2;
}

/* ============================================================
   FEATURES
   ============================================================ */
#features { background: var(--dark-bg); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 80px;
}

.feature-card {
  background: var(--dark-card);
  padding: 48px 36px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s;
  border: 1px solid var(--dark-border);
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--neon-blue), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.feature-card:hover::before { opacity: 1; }
.feature-card:hover {
  background: rgba(0, 240, 255, 0.03);
  transform: translateY(-4px);
}

.feature-number {
  font-family: 'Orbitron', monospace;
  font-size: 10px;
  letter-spacing: 4px;
  color: var(--neon-blue);
  margin-bottom: 24px;
  opacity: 0.6;
}

.feature-icon-wrap {
  width: 64px; height: 64px;
  background: rgba(0, 240, 255, 0.05);
  border: 1px solid rgba(0, 240, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  font-size: 28px;
}

.feature-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.4;
}
.feature-title span {
  display: block;
  font-size: 11px;
  color: var(--neon-blue);
  font-family: 'Orbitron', monospace;
  letter-spacing: 3px;
  font-weight: 400;
  margin-bottom: 8px;
}

.feature-text {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 2;
}

.feature-detail {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--dark-border);
  font-size: 11px;
  color: var(--neon-blue);
  letter-spacing: 1px;
  opacity: 0.7;
}

.features-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 2px;
}
.feature-img-cell {
  height: 280px;
  overflow: hidden;
  position: relative;
}
.feature-img-cell img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 25%;
  transition: transform 0.6s;
  filter: brightness(0.6) saturate(0.8);
}
.feature-img-cell:hover img {
  transform: scale(1.05);
  filter: brightness(0.85) saturate(1);
}
.feature-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, transparent 60%);
}

/* ============================================================
   DEMO — MINI-GAME ROULETTE
   ============================================================ */
#demo { background: var(--dark-bg); }

.demo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 60px;
}

.demo-visual {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  padding: 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.demo-visual img {
  width: 100%;
  max-width: 500px;
  border: 1px solid var(--dark-border);
}

.demo-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--white);
}
.demo-info p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 2;
  margin-bottom: 16px;
}

.demo-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.demo-features-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--text-primary);
  padding: 14px 20px;
  background: rgba(0, 240, 255, 0.03);
  border: 1px solid rgba(0, 240, 255, 0.08);
  transition: all 0.3s;
}
.demo-features-list li:hover {
  background: rgba(0, 240, 255, 0.06);
  border-color: rgba(0, 240, 255, 0.2);
}
.demo-features-list li .df-icon {
  font-size: 20px;
  width: 36px;
  text-align: center;
  flex-shrink: 0;
}

/* Roulette — Premium Design */
.roulette-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding: 48px 20px;
}

.roulette-wheel-wrap {
  position: relative;
  width: 360px; height: 360px;
}

.roulette-pointer {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  width: 0; height: 0;
  border-left: 18px solid transparent;
  border-right: 18px solid transparent;
  border-top: 36px solid var(--neon-blue);
  filter: drop-shadow(0 0 12px rgba(0, 240, 255, 0.8));
  animation: pointerPulse 1.5s ease-in-out infinite;
}
@keyframes pointerPulse {
  0%, 100% { filter: drop-shadow(0 0 12px rgba(0, 240, 255, 0.8)); }
  50% { filter: drop-shadow(0 0 24px rgba(0, 240, 255, 1)); }
}

.roulette-wheel {
  width: 360px; height: 360px;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  border: 4px solid var(--neon-blue);
  box-shadow:
    0 0 50px rgba(0, 240, 255, 0.25),
    0 0 100px rgba(0, 240, 255, 0.08),
    inset 0 0 40px rgba(0, 240, 255, 0.06);
  transition: transform 5s cubic-bezier(0.15, 0.60, 0.08, 1.0);
}

.roulette-wheel canvas {
  width: 100%; height: 100%;
  display: block;
}

.roulette-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px;
  background: radial-gradient(circle, #111 0%, #000 100%);
  border: 3px solid var(--neon-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Orbitron', monospace;
  font-size: 10px;
  color: var(--neon-blue);
  letter-spacing: 2px;
  z-index: 5;
  box-shadow:
    0 0 20px rgba(0, 240, 255, 0.4),
    inset 0 0 10px rgba(0, 240, 255, 0.1);
  text-shadow: 0 0 10px rgba(0, 240, 255, 0.6);
}

.roulette-btn {
  background: transparent;
  border: 2px solid var(--neon-blue);
  color: var(--neon-blue);
  padding: 16px 64px;
  font-family: 'Orbitron', monospace;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 6px;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}
.roulette-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(0, 240, 255, 0.1), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s;
}
.roulette-btn:hover::before { transform: translateX(100%); }
.roulette-btn:hover {
  background: var(--neon-blue);
  color: #000;
  box-shadow: 0 0 50px rgba(0, 240, 255, 0.5), 0 0 100px rgba(0, 240, 255, 0.15);
}
.roulette-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.roulette-btn:disabled:hover {
  background: transparent;
  color: var(--neon-blue);
  box-shadow: none;
}

.roulette-result {
  font-family: 'Orbitron', monospace;
  font-size: 20px;
  font-weight: 700;
  color: var(--neon-blue);
  letter-spacing: 3px;
  min-height: 32px;
  text-shadow: 0 0 30px rgba(0, 240, 255, 0.6);
  transition: all 0.3s;
}

/* Win celebration */
@keyframes resultGlow {
  0% { transform: scale(1); }
  50% { transform: scale(1.08); }
  100% { transform: scale(1); }
}
.roulette-result.win {
  animation: resultGlow 0.6s ease-in-out 3;
}

/* ============================================================
   COMPARISON
   ============================================================ */
#comparison { background: var(--dark-surface); }

.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 60px;
}
.compare-table thead th {
  padding: 20px 16px;
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--text-muted);
  text-align: center;
  border-bottom: 1px solid var(--dark-border);
  font-family: 'Orbitron', monospace;
}
.compare-table thead th:first-child { text-align: left; }
.compare-table thead th.highlight {
  color: var(--neon-blue);
  font-weight: 700;
  background: rgba(0, 240, 255, 0.03);
  border-bottom: 1px solid var(--neon-blue);
}
.compare-table tbody td {
  padding: 18px 16px;
  font-size: 13px;
  color: var(--text-secondary);
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}
.compare-table tbody td:first-child {
  text-align: left;
  color: var(--text-primary);
  font-weight: 500;
}
.compare-table tbody td.highlight {
  background: rgba(0, 240, 255, 0.02);
  color: var(--neon-blue);
  font-weight: 700;
}
.compare-table .check { color: var(--neon-green); }
.compare-table .cross { color: #ff2d55; }
.compare-table .partial { color: #ff9500; }

/* ============================================================
   TEMPLATES
   ============================================================ */
#templates { background: var(--dark-bg); }

.templates-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 60px;
}

.template-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  overflow: hidden;
  transition: all 0.4s;
  cursor: pointer;
}
.template-card:hover {
  border-color: rgba(0, 240, 255, 0.3);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6);
}

.template-thumb {
  height: 200px;
  background: var(--dark-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.template-info { padding: 24px; }
.template-info h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.template-info p {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.7;
}
.template-badge {
  display: inline-block;
  font-size: 9px;
  padding: 3px 10px;
  background: rgba(0, 240, 255, 0.06);
  border: 1px solid rgba(0, 240, 255, 0.2);
  color: var(--neon-blue);
  letter-spacing: 2px;
  margin-top: 10px;
  font-family: 'Orbitron', monospace;
}

/* ============================================================
   PRICING
   ============================================================ */
#pricing { background: var(--dark-surface); }

.pricing-header {
  text-align: center;
  margin-bottom: 80px;
}
.pricing-header .section-label {
  justify-content: center;
}
.pricing-header .section-label::after { display: none; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.pricing-card {
  background: var(--dark-card);
  padding: 40px 28px;
  border: 1px solid var(--dark-border);
  position: relative;
  transition: all 0.4s;
  display: flex;
  flex-direction: column;
}
.pricing-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 240, 255, 0.2);
}

.pricing-card.featured {
  background: linear-gradient(160deg, rgba(0, 240, 255, 0.06) 0%, rgba(0, 0, 0, 0.9) 100%);
  border-color: rgba(0, 240, 255, 0.3);
  box-shadow:
    0 0 60px rgba(0, 240, 255, 0.08),
    inset 0 0 60px rgba(0, 240, 255, 0.02);
}
.pricing-card.featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--neon-blue);
  box-shadow: 0 0 20px var(--neon-blue);
}
.pricing-card.featured::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--neon-blue);
  box-shadow: 0 0 20px var(--neon-blue);
  opacity: 0.5;
}

.pricing-recommend {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--neon-blue);
  color: #000;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 2px;
  padding: 6px 20px;
  white-space: nowrap;
  font-family: 'Orbitron', monospace;
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.4);
}

.pricing-plan-id {
  font-family: 'Orbitron', monospace;
  font-size: 9px;
  letter-spacing: 4px;
  color: var(--neon-blue);
  margin-bottom: 16px;
  opacity: 0.6;
}

.pricing-plan-name {
  font-family: 'Orbitron', monospace;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 28px;
  letter-spacing: 4px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
}

.pricing-price-init {
  font-size: 11px;
  color: var(--neon-green);
  background: rgba(57, 255, 138, 0.06);
  border: 1px solid rgba(57, 255, 138, 0.2);
  padding: 4px 12px;
  letter-spacing: 1px;
  margin-bottom: 20px;
  display: inline-block;
  font-weight: 700;
  font-family: 'Orbitron', monospace;
  font-size: 9px;
}

.price-currency {
  font-size: 18px;
  color: var(--text-muted);
  font-weight: 300;
}
.price-value {
  font-family: 'Orbitron', monospace;
  font-size: clamp(28px, 2.5vw, 38px);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.pricing-card.featured .price-value {
  color: var(--neon-blue);
  text-shadow: 0 0 30px rgba(0, 240, 255, 0.5);
}
.price-unit {
  font-size: 12px;
  color: var(--text-muted);
}

.pricing-divider {
  height: 1px;
  background: var(--dark-border);
  margin: 28px 0;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.pricing-features li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.7;
}
.pricing-features li::before {
  content: '—';
  color: rgba(0, 240, 255, 0.4);
  flex-shrink: 0;
  font-size: 10px;
  margin-top: 2px;
}

.pricing-cta {
  margin-top: 32px;
  display: block;
  text-align: center;
  padding: 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  cursor: pointer;
  transition: all 0.3s;
  border: 1px solid rgba(0, 240, 255, 0.2);
  color: var(--neon-blue);
  font-family: 'Orbitron', monospace;
}
.pricing-cta:hover {
  background: rgba(0, 240, 255, 0.08);
  border-color: rgba(0, 240, 255, 0.4);
}

.pricing-card.featured .pricing-cta {
  background: var(--neon-blue);
  color: #000;
  border-color: var(--neon-blue);
}
.pricing-card.featured .pricing-cta:hover {
  box-shadow: 0 0 40px rgba(0, 240, 255, 0.4);
}

.pricing-note {
  text-align: center;
  margin-top: 48px;
  font-size: 12px;
  color: var(--text-muted);
  line-height: 2;
  letter-spacing: 1px;
}

.premium-highlight {
  margin-top: 60px;
  padding: 48px;
  background: rgba(0, 240, 255, 0.02);
  border: 1px solid rgba(0, 240, 255, 0.1);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
}
.premium-highlight::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 240, 255, 0.4), transparent);
}

.premium-highlight h3 {
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.5;
}
.premium-highlight h3 em {
  color: var(--neon-blue);
  font-style: normal;
}
.premium-highlight p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 2;
}

.premium-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.premium-features-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: var(--text-primary);
  padding: 14px 20px;
  background: rgba(0, 240, 255, 0.03);
  border: 1px solid rgba(0, 240, 255, 0.08);
}
.premium-features-list li .pf-icon {
  font-size: 20px;
  width: 36px;
  text-align: center;
  flex-shrink: 0;
}

/* ============================================================
   CTA
   ============================================================ */
#cta {
  background: var(--dark-bg);
  position: relative;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(0, 240, 255, 0.04) 0%, transparent 70%);
}
.cta-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 120px 48px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta-image-wrap {
  width: 220px; height: 300px;
  margin: 0 auto 48px;
  position: relative;
}
.cta-image-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
  filter: drop-shadow(0 0 50px rgba(0, 240, 255, 0.4));
}
.cta-image-glow {
  position: absolute;
  bottom: -20px; left: 50%;
  transform: translateX(-50%);
  width: 200px; height: 60px;
  background: radial-gradient(ellipse, rgba(0, 240, 255, 0.25) 0%, transparent 70%);
}

.cta-title {
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.4;
}
.cta-title em {
  color: var(--neon-blue);
  font-style: normal;
}
.cta-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 2;
  margin-bottom: 48px;
}
.cta-btns {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.cta-note {
  margin-top: 24px;
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 1px;
}
.line-add-wrap { margin-top: 32px; }
.line-add-wrap img { height: 36px; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  background: #000;
  padding: 48px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
}
.footer-logo {
  font-family: 'Orbitron', monospace;
  font-size: 18px;
  font-weight: 900;
  color: var(--neon-blue);
  letter-spacing: 8px;
  opacity: 0.5;
  margin-bottom: 16px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 12px;
  color: var(--text-muted);
  transition: color 0.3s;
  letter-spacing: 1px;
}
.footer-links a:hover { color: var(--neon-blue); }

.footer-copy {
  font-size: 10px;
  color: var(--text-muted);
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  text-align: center;
  letter-spacing: 2px;
  font-family: 'Orbitron', monospace;
}

/* Legal links — subtle, Stripe-compliant but not prominent */
.footer-legal-sub {
  text-align: center;
  margin-top: 16px;
}
.footer-legal-sub a {
  font-size: 9px;
  color: #333;
  letter-spacing: 1px;
  transition: color 0.3s;
  margin: 0 12px;
}
.footer-legal-sub a:hover {
  color: #666;
}

/* ============================================================
   MEDIA / SNS SECTION
   ============================================================ */
#media {
  background: var(--dark-bg);
}
.media-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.media-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  overflow: hidden;
  transition: all 0.4s;
  display: flex;
  flex-direction: column;
}
.media-card:hover {
  border-color: rgba(0, 240, 255, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}
.media-card-img {
  overflow: hidden;
}
.media-card-img img {
  width: 100%;
  height: auto;
  display: block;
  transition: all 0.5s;
}
.media-card:hover .media-card-img img {
  transform: scale(1.05);
  filter: brightness(1.1);
}
.media-card-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.media-card-icon {
  font-size: 28px;
  margin-bottom: 12px;
}
.media-card-body h3 {
  font-family: 'Orbitron', monospace;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 4px;
  margin-bottom: 12px;
}
.media-card-body p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
  flex: 1;
}
.media-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--neon-blue);
  letter-spacing: 2px;
  font-weight: 600;
  transition: all 0.3s;
  border-bottom: 1px solid rgba(0, 240, 255, 0.2);
  padding-bottom: 4px;
  align-self: flex-start;
}
.media-link:hover {
  color: var(--white);
  border-color: var(--white);
}

/* ============================================================
   VIDEO SECTION
   ============================================================ */
#trailer {
  background: var(--dark-bg);
  position: relative;
  overflow: hidden;
}
#trailer .section-inner {
  text-align: center;
}
.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 48px auto 0;
  padding-top: 56.25%;
  background: var(--dark-card);
  border: 1px solid rgba(0, 240, 255, 0.15);
  box-shadow:
    0 0 60px rgba(0, 240, 255, 0.06),
    inset 0 0 60px rgba(0, 240, 255, 0.02);
  overflow: hidden;
}
.video-wrapper iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}
.video-wrapper::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--neon-blue), transparent);
  z-index: 2;
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
#faq {
  background: var(--dark-surface);
}

.faq-list {
  max-width: 800px;
  margin: 60px auto 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.faq-item {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq-item:hover,
.faq-item.active {
  border-color: rgba(0, 240, 255, 0.2);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.5px;
  transition: background 0.3s;
  user-select: none;
  gap: 16px;
}
.faq-question:hover {
  background: rgba(0, 240, 255, 0.02);
}
.faq-question .faq-q-label {
  font-family: 'Orbitron', monospace;
  font-size: 11px;
  color: var(--neon-blue);
  letter-spacing: 3px;
  flex-shrink: 0;
  width: 28px;
}
.faq-question .faq-toggle {
  font-family: 'Orbitron', monospace;
  font-size: 18px;
  color: var(--neon-blue);
  flex-shrink: 0;
  transition: transform 0.3s;
  line-height: 1;
}
.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 28px;
}
.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 28px 28px;
}
.faq-answer p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 2;
  border-left: 2px solid rgba(0, 240, 255, 0.2);
  padding-left: 20px;
}

/* ============================================================
   STICKY MOBILE LINE BUTTON
   ============================================================ */
.sticky-line-btn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9990;
  background: #06C755;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 4px 20px rgba(6, 199, 85, 0.5),
    0 0 40px rgba(6, 199, 85, 0.2);
  transition: all 0.3s;
  text-decoration: none;
  animation: stickyPulse 2s ease-in-out infinite;
}
.sticky-line-btn:hover {
  transform: scale(1.1);
  box-shadow:
    0 4px 30px rgba(6, 199, 85, 0.7),
    0 0 60px rgba(6, 199, 85, 0.3);
}
.sticky-line-btn svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}
@keyframes stickyPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(6, 199, 85, 0.5), 0 0 40px rgba(6, 199, 85, 0.2); }
  50% { box-shadow: 0 4px 30px rgba(6, 199, 85, 0.7), 0 0 60px rgba(6, 199, 85, 0.4); }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

/* Glitch effect for headings */
@keyframes glitch {
  0%, 100% { text-shadow: 2px 0 var(--neon-blue), -2px 0 var(--neon-pink); }
  25% { text-shadow: -2px -1px var(--neon-blue), 2px 1px var(--neon-pink); }
  50% { text-shadow: 1px 2px var(--neon-blue), -1px -2px var(--neon-pink); }
  75% { text-shadow: -1px 1px var(--neon-blue), 1px -1px var(--neon-pink); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  #hero { grid-template-columns: 1fr; min-height: auto; padding-top: 60px; }
  .hero-image-wrap {
    height: auto;
    padding: 0 0 40px;
    overflow: hidden;
    display: flex;
    justify-content: center;
  }
  .hero-image-wrap img {
    height: auto;
    max-height: 400px;
    width: 75%;
    max-width: 350px;
    object-fit: cover;
    object-position: center 25%;
    border: 1px solid rgba(0, 240, 255, 0.1);
    filter: drop-shadow(0 0 30px rgba(0, 240, 255, 0.2));
  }
  .hero-image-glow { display: none; }
  .hero-content { padding: 80px 28px 40px; }
  .features-grid, .features-images { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .problem-grid, .premium-highlight, .demo-grid { grid-template-columns: 1fr; }
  .templates-grid { grid-template-columns: repeat(2, 1fr); }
  .compare-table { font-size: 12px; }
  nav { padding: 16px 24px; }
  .nav-links { display: none; }
  .footer-inner { grid-template-columns: 1fr; }
  .sticky-line-btn { display: flex; }
}

@media (max-width: 640px) {
  .section-inner { padding: 60px 16px; }
  .pricing-grid, .features-images, .templates-grid { grid-template-columns: 1fr; }
  .cta-btns { flex-direction: column; align-items: center; }
  .compare-table { display: block; overflow-x: auto; }
  .roulette-wheel-wrap { width: 280px; height: 280px; }
  .roulette-wheel { width: 280px; height: 280px; }
  .roulette-btn { padding: 14px 40px; font-size: 14px; letter-spacing: 4px; }
  #opening-overlay .boot-logo { letter-spacing: 8px; }
  .stats-grid { grid-template-columns: 1fr; }
  .media-grid { grid-template-columns: 1fr; }
  .hero-content { padding: 72px 20px 32px; }
  .hero-badge { font-size: 9px; letter-spacing: 2px; padding: 6px 14px; }
  .hero-title { font-size: clamp(36px, 10vw, 48px); }
  .hero-sub { font-size: 11px; }
  .hero-catchcopy { font-size: 14px; }
  .hero-desc { font-size: 12px; }
  .hero-zero-badge { flex-direction: column; text-align: center; gap: 8px; padding: 16px; }
  .hero-zero-number { font-size: 36px; }
  .hero-btns { flex-direction: column; gap: 12px; width: 100%; }
  .hero-btns a { width: 100%; text-align: center; }
  .section-title { font-size: clamp(20px, 5vw, 28px); }
  .section-desc { font-size: 13px; }
  .section-label { font-size: 9px; letter-spacing: 3px; }
  nav { padding: 12px 16px; }
  .nav-logo { font-size: 18px; letter-spacing: 5px; }
  .nav-cta { padding: 8px 16px; font-size: 10px; letter-spacing: 2px; }

  /* --- FAQ Mobile Optimization --- */
  .faq-list { gap: 1px; }
  .faq-question {
    padding: 18px 16px;
    font-size: 13px;
    gap: 10px;
    line-height: 1.6;
  }
  .faq-question .faq-q-label {
    font-size: 10px;
    width: 24px;
    letter-spacing: 2px;
  }
  .faq-question .faq-toggle {
    font-size: 16px;
  }
  .faq-answer {
    padding: 0 16px;
  }
  .faq-item.active .faq-answer {
    padding: 0 16px 18px;
    max-height: 400px;
  }
  .faq-answer p {
    font-size: 12.5px;
    line-height: 1.9;
    padding-left: 14px;
  }

  /* --- Pricing Mobile --- */
  .pricing-card { padding: 28px 20px; }
  .pricing-plan-name { font-size: 14px; }
  .price-value { font-size: clamp(28px, 7vw, 36px); }
  .pricing-features li { font-size: 12px; }
  .premium-highlight { padding: 28px 20px; font-size: 13px; }
  .premium-features-list li { font-size: 12px; }

  /* --- Feature Cards Mobile --- */
  .feature-card { padding: 28px 20px; }
  .feature-title { font-size: 14px; }
  .feature-text { font-size: 12.5px; }

  /* --- CTA Mobile --- */
  .cta-title { font-size: clamp(20px, 5vw, 26px); }
  .cta-desc { font-size: 13px; }

  /* --- Media Cards Mobile --- */
  .media-card-body { padding: 20px; }
  .media-card-body h3 { font-size: 13px; }
  .media-card-body p { font-size: 12px; }

  /* --- Footer Mobile --- */
  footer { padding: 32px 16px; }
  .footer-inner { gap: 28px; }

  /* --- Neon line overflow fix --- */
  .neon-line-h { overflow: hidden; }
}
