/* ===========================
   THE SCOUT in BUSAN — Styles
   =========================== */

:root {
  --black: #0a0a0a;
  --dark: #111111;
  --dark-card: #1a1a1a;
  --gray-dark: #222222;
  --gray: #333333;
  --gray-light: #888888;
  --white: #f0f0f0;
  --white-soft: #cccccc;
  --accent: #00FC0B;
  --accent-dim: #00aa08;
  --accent-glow: rgba(0, 252, 11, 0.3);
  --warning: #FFD600;
  --danger: #FF3333;
  --font-main: 'Pretendard Variable', 'Pretendard', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'Orbitron', 'Courier New', monospace;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.hidden {
  display: none !important;
}

.accent { color: var(--accent); }
.warning { color: var(--warning); }
.danger { color: var(--danger); }


/* ===========================
   HOOK PAGE
   =========================== */

.hook-page {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  z-index: 1000;
  overflow: hidden;
}

.hook-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hook-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.video-fallback {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(0,252,11,0.05) 0%, transparent 70%);
}

/* Scanlines */
.scanlines,
.hero-scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.15) 2px,
    rgba(0, 0, 0, 0.15) 4px
  );
  pointer-events: none;
  z-index: 2;
}

/* Noise overlay */
.noise-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
  pointer-events: none;
}

.hook-content {
  position: relative;
  z-index: 10;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 20px;
  width: 100%;
  max-width: 600px;
}

.hook-logo {
  font-family: var(--font-mono);
  font-size: clamp(40px, 10vw, 80px);
  font-weight: 900;
  letter-spacing: 8px;
  color: var(--white);
  text-shadow: 0 0 20px var(--accent-glow);
}

.hook-subtitle {
  font-family: var(--font-mono);
  font-size: clamp(18px, 4vw, 32px);
  font-weight: 400;
  letter-spacing: 12px;
  color: var(--accent);
  margin-top: -12px;
}

.hook-transmission {
  margin-top: 20px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.typewriter {
  font-family: var(--font-main);
  font-size: clamp(14px, 2.5vw, 18px);
  color: var(--white-soft);
  letter-spacing: 1px;
  line-height: 1.6;
  text-align: center;
}

.blink-cursor {
  display: inline-block;
  width: 2px;
  height: 1em;
  background: var(--accent);
  animation: blink 0.8s infinite;
  vertical-align: text-bottom;
  margin-left: 2px;
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

.hook-enter-btn {
  position: relative;
  margin-top: 32px;
  padding: 16px 48px;
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
  opacity: 0;
  animation: fadeInUp 0.6s 2s forwards;
}

.hook-enter-btn:hover {
  background: var(--accent);
  color: var(--black);
  box-shadow: 0 0 30px var(--accent-glow), 0 0 60px rgba(0,252,11,0.15);
}

.btn-scanline {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0,252,11,0.1), transparent);
  animation: scanBtn 3s infinite;
}

@keyframes scanBtn {
  0% { left: -100%; }
  100% { left: 100%; }
}

.hook-warning {
  margin-top: 40px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 4px;
  color: var(--gray-light);
  opacity: 0;
  animation: fadeIn 1s 2.5s forwards;
}

@keyframes fadeIn {
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Glitch Effect */
.glitch {
  position: relative;
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
}

.glitch::before {
  color: #ff0033;
  z-index: -1;
  animation: glitch1 3s infinite;
}

.glitch::after {
  color: #00ffff;
  z-index: -2;
  animation: glitch2 3s infinite;
}

@keyframes glitch1 {
  0%, 90%, 100% { clip-path: inset(0); transform: translate(0); }
  92% { clip-path: inset(20% 0 60% 0); transform: translate(-4px, 2px); }
  94% { clip-path: inset(50% 0 20% 0); transform: translate(4px, -2px); }
  96% { clip-path: inset(80% 0 5% 0); transform: translate(-2px, 1px); }
  98% { clip-path: inset(10% 0 70% 0); transform: translate(2px, -1px); }
}

@keyframes glitch2 {
  0%, 90%, 100% { clip-path: inset(0); transform: translate(0); }
  91% { clip-path: inset(60% 0 10% 0); transform: translate(4px, -2px); }
  93% { clip-path: inset(10% 0 80% 0); transform: translate(-4px, 2px); }
  95% { clip-path: inset(40% 0 30% 0); transform: translate(2px, -1px); }
  97% { clip-path: inset(70% 0 15% 0); transform: translate(-2px, 1px); }
}

/* Hook page fade out */
.hook-page.fade-out {
  animation: hookFadeOut 0.8s ease forwards;
}

@keyframes hookFadeOut {
  0% { opacity: 1; }
  50% { opacity: 0; filter: brightness(3); }
  100% { opacity: 0; display: none; }
}


/* ===========================
   TOP BAR
   =========================== */

.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray);
}

.top-bar-inner {
  max-width: 768px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-bar-logo {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--white);
  text-decoration: none;
  cursor: pointer;
}

.top-bar-cta {
  padding: 8px 20px;
  background: var(--accent);
  color: var(--black);
  border: none;
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}

.top-bar-cta:hover {
  background: #33ff33;
  box-shadow: 0 0 20px var(--accent-glow);
}

.top-bar-back {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  color: var(--white-soft);
  font-family: var(--font-main);
  font-size: 14px;
  cursor: pointer;
  transition: color 0.2s;
}

.top-bar-back:hover {
  color: var(--accent);
}


/* ===========================
   HERO SECTION
   =========================== */

.hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--black);
  overflow: hidden;
  padding-top: 49px;
}

.hero-scanlines {
  z-index: 2;
}

.hero-key-visual {
  position: relative;
  width: 100%;
  max-width: 768px;
  margin: 0 auto;
  z-index: 1;
  overflow: hidden;
}

/* Static grain noise — always on */
.hero-key-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 100px 100px;
  opacity: 0.28;
  animation: tvStatic 0.06s steps(8) infinite;
}

/* Subtle scanline overlay */
.hero-key-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  background: repeating-linear-gradient(
    0deg,
    transparent 0px,
    transparent 3px,
    rgba(0, 0, 0, 0.15) 3px,
    rgba(0, 0, 0, 0.15) 4px
  );
}

/* Continuous noise band sweeping top → bottom (TV feel) */
.hero-noise-sweep {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  overflow: hidden;
}

.hero-noise-sweep::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 30%;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(255,255,255,0.08) 15%,
    rgba(0,252,11,0.1) 40%,
    rgba(255,255,255,0.06) 70%,
    transparent 100%
  );
  animation: noiseSweep 3.5s linear infinite;
}

.hero-noise-sweep::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 15%;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(255,255,255,0.06) 30%,
    rgba(0,252,11,0.08) 50%,
    transparent 100%
  );
  animation: noiseSweep 5s linear infinite;
  animation-delay: -1.5s;
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  animation: heroGlitchSmooth 10s infinite;
}

/* Slow, smooth glitch — gentle color shift with soft displacement */
@keyframes heroGlitchSmooth {
  0%, 100% { filter: none; transform: translate(0); }
  /* Long calm */
  14% { filter: none; transform: translate(0); }
  /* Gentle burst 1 */
  14.5% { filter: hue-rotate(15deg) saturate(1.2) brightness(1.05); transform: translate(3px, 0); }
  15% { filter: hue-rotate(-10deg) saturate(1.1); transform: translate(-2px, 0); }
  15.5% { filter: brightness(1.08); transform: translate(1px, 0); }
  16.5% { filter: none; transform: translate(0); }
  /* Long calm */
  44% { filter: none; transform: translate(0); }
  /* Gentle burst 2 */
  44.5% { filter: hue-rotate(-20deg) saturate(1.3); transform: translate(-4px, 0); }
  45% { filter: hue-rotate(25deg) brightness(1.1); transform: translate(3px, 1px); }
  45.5% { filter: saturate(1.15); transform: translate(-1px, 0); }
  46.5% { filter: none; transform: translate(0); }
  /* Long calm */
  74% { filter: none; transform: translate(0); }
  /* Gentle burst 3 — slightly stronger */
  74.4% { filter: hue-rotate(30deg) saturate(1.4) brightness(1.08); transform: translate(5px, -1px); }
  74.8% { filter: hue-rotate(-25deg) contrast(1.1); transform: translate(-5px, 1px); }
  75.2% { filter: saturate(1.2) brightness(1.05); transform: translate(2px, 0); }
  76% { filter: none; transform: translate(0); }
}

/* Grain noise jitter */
@keyframes tvStatic {
  0% { background-position: 0 0; }
  25% { background-position: -60px -30px; }
  50% { background-position: 40px -70px; }
  75% { background-position: -30px 50px; }
  100% { background-position: 50px -20px; }
}

/* Continuous top-to-bottom sweep */
@keyframes noiseSweep {
  0% { top: -30%; }
  100% { top: 100%; }
}

.hero-overlay {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 32px 20px 40px;
  background: var(--black);
  margin-top: 0;
}

.hero-badge {
  display: inline-block;
  padding: 6px 20px;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 16px;
  animation: fadeInUp 0.6s ease;
}

.hero-tagline {
  font-size: clamp(14px, 2.5vw, 18px);
  color: var(--white-soft);
  letter-spacing: 2px;
  font-weight: 300;
  margin-bottom: 8px;
}

.hero-date {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--gray-light);
  letter-spacing: 2px;
}


/* ===========================
   BENEFITS GRID (4-Split)
   =========================== */

.benefits-grid {
  padding: 60px 20px;
  max-width: 768px;
  margin: 0 auto;
}

.benefits-heading {
  text-align: center;
  font-size: clamp(20px, 4vw, 28px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 32px;
  letter-spacing: 1px;
}

.benefits-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.benefit-card {
  background: var(--white);
  border-radius: 16px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  gap: 16px;
  transition: transform 0.2s;
}

.benefit-card:hover {
  transform: translateY(-2px);
}

.benefit-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.benefit-text strong {
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
  line-height: 1.4;
}

.benefit-text span {
  font-size: 12px;
  color: #666;
  line-height: 1.5;
}

.benefit-icon {
  width: 64px;
  height: 64px;
}

.benefit-icon svg {
  width: 100%;
  height: 100%;
}


/* ===========================
   INDEX NAVIGATION
   =========================== */

.index-nav {
  position: sticky;
  top: 49px;
  z-index: 90;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.index-nav::-webkit-scrollbar {
  display: none;
}

.index-nav-inner {
  max-width: 768px;
  margin: 0 auto;
  display: flex;
  padding: 0 20px;
  gap: 0;
}

.index-link {
  flex-shrink: 0;
  padding: 14px 16px;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  color: var(--gray-light);
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.index-link:hover {
  color: var(--white-soft);
}

.index-link.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}


/* ===========================
   CONTENT SECTIONS (Accordion)
   =========================== */

.content-section {
  max-width: 768px;
  margin: 0 auto;
  border-bottom: 1px solid var(--gray);
}

.section-header {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 20px;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  transition: background 0.2s;
  text-align: left;
}

.section-header:hover {
  background: rgba(255, 255, 255, 0.03);
}

.section-number {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  min-width: 28px;
}

.section-title {
  flex: 1;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.section-toggle {
  color: var(--gray-light);
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
}

.section-header[aria-expanded="true"] .section-toggle {
  transform: rotate(180deg);
}

.section-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.section-body.open {
  max-height: 3000px;
}


/* ===========================
   SECTION 1: WORLDVIEW
   =========================== */

.worldview-container {
  padding: 0 20px 40px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.terminal-window {
  background: var(--dark);
  border: 1px solid var(--gray);
  border-radius: 8px;
  overflow: hidden;
}

.terminal-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--gray-dark);
  border-bottom: 1px solid var(--gray);
}

.terminal-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.terminal-dot.red { background: #ff5f57; }
.terminal-dot.yellow { background: #febc2e; }
.terminal-dot.green { background: #28c840; }

.terminal-title {
  margin-left: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gray-light);
  letter-spacing: 1px;
}

.terminal-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.terminal-line {
  font-family: 'Courier New', monospace;
  font-size: 13px;
  color: var(--white-soft);
  line-height: 1.6;
}

.terminal-prompt {
  color: var(--accent);
  margin-right: 8px;
}

.worldview-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.worldview-intro {
  font-size: 16px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1.6;
}

.worldview-text p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--white-soft);
}

.worldview-divider {
  width: 40px;
  height: 1px;
  background: var(--gray-light);
  margin: 8px 0;
}

.worldview-highlight {
  font-size: 16px !important;
  font-weight: 700 !important;
  color: var(--accent) !important;
  padding-top: 12px;
  border-top: 1px solid var(--gray);
}


/* ===========================
   SECTION 2: HOW TO PLAY
   =========================== */

/* Vertical timeline steps */
.steps-vertical {
  padding: 0 20px 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step-row {
  display: flex;
  gap: 20px;
}

.step-line-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 20px;
  flex-shrink: 0;
}

.step-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  background: var(--black);
  flex-shrink: 0;
  margin-top: 4px;
  box-shadow: 0 0 8px var(--accent-glow);
}

.step-line {
  width: 2px;
  flex: 1;
  background: linear-gradient(180deg, var(--accent), var(--gray));
  margin: 4px 0;
}

.step-content {
  background: var(--dark-card);
  border: 1px solid var(--gray);
  border-radius: 12px;
  padding: 24px 20px;
  flex: 1;
  margin-bottom: 16px;
}

.step-number {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 3px;
  margin-bottom: 12px;
}

.step-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 12px;
}

.step-icon svg {
  width: 100%;
  height: 100%;
}

.step-content h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--white);
}

.step-content p {
  font-size: 13px;
  color: var(--white-soft);
  line-height: 1.6;
}


/* ===========================
   SECTION 3: PRICING
   =========================== */

.pricing-container {
  padding: 0 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-card {
  background: var(--dark-card);
  border: 1px solid var(--gray);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  position: relative;
}

.pricing-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 30px var(--accent-glow);
}

.pricing-badge {
  display: inline-block;
  padding: 4px 16px;
  background: var(--accent);
  color: var(--black);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 3px;
  border-radius: 4px;
  margin-bottom: 20px;
}

/* Early Bird Pricing Tiers */
.pricing-tiers {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.pricing-tier {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.tier-label {
  font-size: 11px;
  color: var(--gray-light);
  font-weight: 500;
}

.tier-price {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-light);
}

.tier-price.strike {
  text-decoration: line-through;
  opacity: 0.5;
}

.tier-price.accent-price {
  color: var(--accent);
  opacity: 1;
  font-size: 15px;
}

.pricing-tier.current .tier-label {
  color: var(--accent);
  font-weight: 700;
}

.pricing-tier-arrow {
  color: var(--gray-light);
  font-size: 14px;
  opacity: 0.4;
  margin-top: 8px;
}

.earlybird-notice {
  font-size: 13px;
  color: var(--warning);
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.pricing-label {
  display: inline-block;
  padding: 4px 12px;
  background: var(--accent);
  color: var(--black);
  font-size: 11px;
  font-weight: 700;
  border-radius: 4px;
  margin-bottom: 12px;
}

.pricing-price {
  margin: 12px 0;
}

.pricing-currency {
  font-size: 18px;
  color: var(--white);
  vertical-align: top;
}

.pricing-amount {
  font-family: var(--font-mono);
  font-size: 40px;
  font-weight: 900;
  color: var(--white);
}

.pricing-unit {
  font-size: 14px;
  color: var(--gray-light);
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 24px 0;
  text-align: left;
  padding: 0 12px;
}

.pricing-features li {
  font-size: 14px;
  color: var(--white-soft);
  padding-left: 24px;
  position: relative;
  line-height: 1.4;
}

.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.pricing-btn {
  width: 100%;
  padding: 14px;
  background: transparent;
  border: 1px solid var(--gray-light);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.2s;
}

.pricing-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.pricing-btn.featured-btn {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--black);
}

.pricing-btn.featured-btn:hover {
  background: #33ff33;
  box-shadow: 0 0 20px var(--accent-glow);
}

.pricing-note {
  padding: 0 20px 32px;
}

.pricing-note p {
  font-size: 12px;
  color: var(--gray-light);
  line-height: 1.8;
}


/* ===========================
   VALUE PROPOSITION (사실상 0원)
   =========================== */

.value-proposition {
  max-width: 768px;
  margin: 0 auto;
  padding: 0 20px 48px;
}

.value-inner {
  background: linear-gradient(135deg, rgba(0, 252, 11, 0.08), rgba(0, 252, 11, 0.02));
  border: 1px solid rgba(0, 252, 11, 0.3);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
}

.value-title {
  font-size: clamp(18px, 4vw, 24px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 28px;
  line-height: 1.4;
}

.value-breakdown {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.value-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: var(--white-soft);
  padding: 0 8px;
}

.value-row.highlight {
  color: var(--accent);
}

.value-label {
  text-align: left;
  flex: 1;
}

.value-amount {
  font-family: var(--font-mono);
  font-weight: 700;
  white-space: nowrap;
  margin-left: 16px;
}

.value-amount.minus {
  color: var(--accent);
}

.value-divider {
  height: 1px;
  background: var(--gray);
  margin: 4px 0;
}

.value-row.total {
  font-size: 18px;
  font-weight: 900;
  color: var(--white);
  padding-top: 4px;
}

.value-amount.zero {
  font-size: 24px;
  color: var(--accent);
  text-shadow: 0 0 20px var(--accent-glow);
}

.value-note {
  font-size: 13px;
  color: var(--gray-light);
  line-height: 1.6;
}


/* ===========================
   SNS EVENT SECTION
   =========================== */

.sns-event-section {
  max-width: 768px;
  margin: 0 auto;
  padding: 0 20px 48px;
}

.sns-event-inner {
  background: var(--dark-card);
  border: 1px solid var(--gray);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
}

.sns-event-badge {
  display: inline-block;
  padding: 4px 16px;
  background: var(--accent);
  color: var(--black);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 3px;
  border-radius: 4px;
  margin-bottom: 16px;
}

.sns-event-title {
  font-size: clamp(18px, 4vw, 24px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.4;
}

.sns-event-desc {
  font-size: 14px;
  color: var(--white-soft);
  line-height: 1.7;
  margin-bottom: 28px;
}

.sns-event-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 28px;
}

.sns-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.sns-step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--black);
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sns-step p {
  font-size: 12px;
  color: var(--white-soft);
  font-weight: 500;
  white-space: nowrap;
}

.sns-step-arrow {
  color: var(--accent);
  margin-top: -20px;
}

.sns-prizes {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 20px;
}

.sns-prize-card {
  background: rgba(0, 252, 11, 0.06);
  border: 1px solid rgba(0, 252, 11, 0.2);
  border-radius: 12px;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex: 1;
  max-width: 160px;
}

.sns-prize-icon {
  width: 48px;
  height: 48px;
}

.sns-prize-icon svg {
  width: 100%;
  height: 100%;
}

.sns-prize-card strong {
  font-size: 14px;
  color: var(--white);
  font-weight: 700;
}

.sns-event-notice {
  font-size: 12px;
  color: var(--gray-light);
}


/* ===========================
   SECTION 4: REVIEWS
   =========================== */

.reviews-container {
  padding: 0 20px 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.review-card {
  background: var(--dark-card);
  border: 1px solid var(--gray);
  border-radius: 12px;
  padding: 24px;
}

.review-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.review-stars {
  color: var(--warning);
  font-size: 16px;
  letter-spacing: 2px;
}

.star-empty {
  opacity: 0.3;
}

.review-tag {
  font-size: 11px;
  padding: 4px 10px;
  background: rgba(0, 252, 11, 0.1);
  color: var(--accent);
  border-radius: 4px;
  font-weight: 500;
}

.review-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--white-soft);
  margin-bottom: 12px;
}

.review-author {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--gray-light);
}


/* ===========================
   SECTION 5: FAQ
   =========================== */

.faq-container,
.notice-container {
  padding: 0 20px 32px;
}

.faq-section-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--gray);
}

.faq-item {
  border-bottom: 1px solid var(--gray);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
  gap: 12px;
  transition: color 0.2s;
}

.faq-question:hover {
  color: var(--accent);
}

.faq-question svg {
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-question.active svg {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.open {
  max-height: 200px;
}

.faq-answer p {
  padding: 0 0 16px 0;
  font-size: 13px;
  color: var(--white-soft);
  line-height: 1.7;
}

.notice-container {
  margin-top: 16px;
}

.notice-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.notice-list li {
  font-size: 13px;
  color: var(--white-soft);
  line-height: 1.6;
  padding-left: 16px;
  position: relative;
}

.notice-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--gray-light);
}

.notice-list.refund li {
  padding-left: 0;
}

.notice-list.refund li::before {
  display: none;
}

.notice-list.refund li strong {
  color: var(--white);
  margin-right: 8px;
}


/* ===========================
   STICKY CTA (Coupang Style)
   =========================== */

.bottom-spacer {
  height: 80px;
}

.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--gray);
  padding: 12px 0;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.sticky-cta.visible {
  transform: translateY(0);
}

.sticky-cta-inner {
  max-width: 768px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.sticky-cta-info {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.sticky-cta-price {
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 900;
  color: var(--white);
}

.sticky-cta-label {
  font-size: 13px;
  color: var(--gray-light);
}

.sticky-cta-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--accent);
  color: var(--black);
  border: none;
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.2s;
  white-space: nowrap;
}

.sticky-cta-btn:hover {
  background: #33ff33;
  box-shadow: 0 0 20px var(--accent-glow);
}


/* ===========================
   PURCHASE PAGE
   =========================== */

.purchase-page {
  padding-top: 60px;
  min-height: 100vh;
  background: var(--black);
}

.purchase-benefits {
  padding-top: 20px;
}

.purchase-container {
  max-width: 768px;
  margin: 0 auto;
  padding: 40px 20px 60px;
}

.purchase-title {
  font-size: 24px;
  font-weight: 900;
  text-align: center;
  margin-bottom: 32px;
  color: var(--white);
}

.purchase-form {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
}

.ticket-info-card {
  background: var(--dark-card);
  border: 2px solid var(--accent);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 0 20px var(--accent-glow);
}

.ticket-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ticket-option {
  cursor: pointer;
}

.ticket-option input {
  display: none;
}

.ticket-card {
  background: var(--dark-card);
  border: 2px solid var(--gray);
  border-radius: 12px;
  padding: 20px;
  transition: all 0.2s;
  position: relative;
}

.ticket-option input:checked + .ticket-card {
  border-color: var(--accent);
  box-shadow: 0 0 20px var(--accent-glow);
}

.ticket-badge-sm {
  position: absolute;
  top: -10px;
  right: 16px;
  padding: 3px 10px;
  background: var(--accent);
  color: var(--black);
  font-size: 10px;
  font-weight: 700;
  border-radius: 4px;
  letter-spacing: 1px;
}

.ticket-name {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 2px;
  margin-bottom: 4px;
}

.ticket-desc {
  font-size: 12px;
  color: var(--gray-light);
  margin-bottom: 8px;
}

.ticket-price {
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 900;
  color: var(--white);
}

.ticket-price span {
  font-size: 13px;
  font-weight: 400;
  color: var(--gray-light);
}

.quantity-selector {
  display: flex;
  align-items: center;
  gap: 16px;
}

.qty-btn {
  width: 40px;
  height: 40px;
  background: var(--dark-card);
  border: 1px solid var(--gray);
  color: var(--white);
  font-size: 20px;
  cursor: pointer;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.qty-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.qty-value {
  font-family: var(--font-mono);
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  min-width: 40px;
  text-align: center;
}

.qty-note {
  font-size: 12px;
  color: var(--gray-light);
}

.form-input {
  padding: 12px 16px;
  background: var(--dark-card);
  border: 1px solid var(--gray);
  border-radius: 8px;
  color: var(--white);
  font-family: var(--font-main);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}

.form-input:focus {
  border-color: var(--accent);
}

.purchase-summary {
  background: var(--dark-card);
  border: 1px solid var(--gray);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--white-soft);
}

.summary-row.total {
  padding-top: 12px;
  border-top: 1px solid var(--gray);
  font-weight: 700;
  font-size: 18px;
  color: var(--white);
}

.summary-row.total span:last-child {
  font-family: var(--font-mono);
  color: var(--accent);
}

.purchase-btn {
  width: 100%;
  padding: 18px;
  background: var(--accent);
  color: var(--black);
  border: none;
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  border-radius: 12px;
  transition: all 0.2s;
}

.purchase-btn:hover {
  background: #33ff33;
  box-shadow: 0 0 30px var(--accent-glow);
}

.purchase-notice {
  text-align: center;
  font-size: 12px;
  color: var(--gray-light);
}


/* ===========================
   ANIMATIONS
   =========================== */

.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ===========================
   RESPONSIVE
   =========================== */

@media (max-width: 480px) {
  .benefits-cards {
    gap: 8px;
  }

  .benefit-card {
    padding: 16px 12px;
  }

  .benefit-text strong {
    font-size: 13px;
  }

  .benefit-text span {
    font-size: 11px;
  }

  .benefit-icon {
    width: 48px;
    height: 48px;
  }

  .steps-vertical {
    padding: 0 16px 32px;
  }

  .pricing-container {
    padding: 0 16px 24px;
  }

  .hero-title {
    letter-spacing: 2px;
  }

  .hero-location {
    letter-spacing: 6px;
  }

  .sticky-cta-btn {
    padding: 12px 20px;
    font-size: 14px;
  }
}

@media (min-width: 769px) {
  .pricing-container {
    flex-direction: row;
    align-items: flex-start;
  }

  .pricing-card {
    flex: 1;
  }

  .steps-vertical {
    max-width: 500px;
    margin: 0 auto;
  }
}
