/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  background: #1a0505;
  color: #fff;
  overflow-x: hidden;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
button { border: none; background: none; cursor: pointer; font-family: inherit; font-size: inherit; color: inherit; }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }

/* ===== DESIGN TOKENS ===== */
:root {
  --red-primary: #d32f2f;
  --red-dark: #8b0000;
  --red-darker: #3a0000;
  --red-bg: #2a0000;
  --red-surface: #1a0505;
  --gold: #ffd700;
  --gold-dark: #c5a000;
  --cream: #fff8e1;
  --cream-dark: #fdf5e6;
  --font-display: 'Outfit', 'Noto Sans SC', sans-serif;
  --font-mono: 'Space Grotesk', 'Courier New', monospace;
}

/* ===== TOP BANNER ===== */
.top-banner {
  background: var(--gold);
  color: var(--red-dark);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 0;
  overflow: hidden;
  white-space: nowrap;
}
.banner-scroll {
  display: inline-flex;
  gap: 80px;
  animation: scrollLeft 20s linear infinite;
}
.banner-scroll span { display: inline-block; }
@keyframes scrollLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(26, 5, 5, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 215, 0, 0.15);
  padding: 0 24px;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  border-radius: 6px;
  flex-shrink: 0;
}
.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--gold);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  padding: 8px 20px !important;
  border: 1px solid var(--gold) !important;
  border-radius: 6px;
  color: var(--gold) !important;
  font-weight: 600;
  transition: all 0.2s !important;
}
.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--red-dark) !important;
}

/* ===== SECTION HELPERS ===== */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
}
.section-badge {
  display: inline-block;
  padding: 8px 24px;
  background: var(--red-primary);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  border-radius: 100px;
  margin-bottom: 20px;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 12px;
}
.section-subtitle {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 48px;
}

/* ===== HERO ===== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 24px 60px;
  overflow: hidden;
}
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background: url('images/hero_bg_pattern.png') center / 600px repeat;
  opacity: 0.4;
  z-index: 0;
}
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(58, 0, 0, 0.3) 0%, rgba(26, 5, 5, 0.95) 70%);
  z-index: 1;
}
.hero-float-left, .hero-float-right {
  position: absolute;
  z-index: 2;
  pointer-events: none;
}
.hero-float-left {
  left: 2%;
  top: 20%;
  width: 260px;
  animation: floatBounce 4s ease-in-out infinite;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.5));
}
.hero-float-right {
  right: 2%;
  top: 15%;
  width: 320px;
  animation: floatBounce 5s ease-in-out infinite 1s;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.5));
}
@keyframes floatBounce {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(3deg); }
}
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
}
.hero-badge {
  display: inline-block;
  padding: 8px 28px;
  background: rgba(211, 47, 47, 0.3);
  border: 1px solid rgba(211, 47, 47, 0.5);
  color: var(--gold);
  font-size: 14px;
  font-weight: 500;
  border-radius: 100px;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 16px;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
}
.hero-slogan {
  font-size: clamp(22px, 3.5vw, 36px);
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 16px;
}
.hero-subtitle {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 40px;
  line-height: 1.8;
}
.hero-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.hero-cta-btn {
  display: inline-block;
  padding: 16px 48px;
  background: var(--gold);
  color: var(--red-dark);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  border-radius: 100px;
  transition: all 0.25s;
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
}
.hero-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(255, 215, 0, 0.5);
}
.hero-countdown {
  text-align: left;
}
.countdown-time {
  display: block;
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.countdown-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 215, 0, 0.15);
  flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
}
.stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 4px;
}

/* ===== CASES ===== */
.cases-section {
  background: var(--cream);
  color: #333;
  text-align: center;
  border-top: 4px solid var(--red-primary);
}
.cases-title { color: var(--red-primary); font-size: clamp(28px, 4vw, 44px); }
.cases-section .section-subtitle { color: rgba(0, 0, 0, 0.45); }
.cases-section .section-badge { background: rgba(211, 47, 47, 0.1); color: var(--red-primary); }
.cases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  text-align: left;
}
.case-card {
  background: #fff;
  border: 1px solid #e8ddd6;
  border-radius: 16px;
  padding: 28px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.case-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}
.case-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.case-avatar-info {
  display: flex;
  align-items: center;
  gap: 12px;
}
.case-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #e8ddd6;
}
.case-name {
  font-weight: 700;
  font-size: 15px;
  color: #2a1f1a;
}
.case-duration {
  font-size: 12px;
  color: #999;
}
.case-amount {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--red-primary);
  background: rgba(211, 47, 47, 0.06);
  padding: 6px 16px;
  border-radius: 8px;
}
.case-quote {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 16px;
}
.case-detail {
  font-size: 12px;
  color: #666;
  background: rgba(255, 215, 0, 0.15);
  padding: 10px 14px;
  border-radius: 8px;
  border-left: 3px solid var(--gold-dark);
}

/* ===== FEATURES ===== */
.features-section {
  background: var(--red-darker);
  text-align: center;
}
.features-title { color: var(--gold); font-size: clamp(28px, 4vw, 44px); }
.features-subtitle { color: rgba(255, 255, 255, 0.4); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
}
.feature-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 28px;
  transition: transform 0.2s, border-color 0.3s;
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 215, 0, 0.2);
}
.feature-icon-wrap {
  width: 72px;
  height: 72px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  overflow: hidden;
}
.feature-icon {
  width: 56px;
  height: 56px;
  object-fit: contain;
}
.feature-name {
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.feature-tag {
  font-size: 11px;
  font-weight: 600;
  padding: 2px 10px;
  border-radius: 100px;
  white-space: nowrap;
}
.tag-green { background: #1b5e20; color: #66bb6a; }
.tag-blue { background: #0d47a1; color: #64b5f6; }
.tag-red { background: #b71c1c; color: #ef9a9a; }
.tag-orange { background: #e65100; color: #ffcc80; }
.tag-purple { background: #4a148c; color: #ce93d8; }
.tag-gold { background: rgba(255, 215, 0, 0.2); color: var(--gold); }
.feature-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
}

/* ===== PARTNER PLAN ===== */
.partner-section {
  background: var(--cream);
  color: #333;
  text-align: center;
  border-top: 4px solid var(--red-primary);
}
.partner-title { color: #2a1f1a; font-size: clamp(28px, 4vw, 44px); }
.partner-section .section-subtitle { color: rgba(0, 0, 0, 0.45); }
.partner-section .section-badge { background: var(--red-primary); color: #fff; }
.pyramid {
  max-width: 700px;
  margin: 0 auto 48px;
}
.pyramid-level {
  padding: 24px 32px;
  border-radius: 12px;
  margin-bottom: -4px;
  position: relative;
}
.level-1 {
  background: var(--red-primary);
  color: #fff;
  width: 55%;
  margin-left: auto;
  margin-right: auto;
  z-index: 3;
}
.level-2 {
  background: #c62828;
  color: #fff;
  width: 75%;
  margin-left: auto;
  margin-right: auto;
  z-index: 2;
}
.level-3 {
  background: var(--red-dark);
  color: #fff;
  width: 95%;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}
.level-label {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  opacity: 0.8;
  margin-bottom: 6px;
}
.level-rate {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 4px;
}
.level-detail {
  font-size: 13px;
  opacity: 0.7;
}
.income-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
}
.income-card {
  padding: 28px;
  border-radius: 16px;
  border: 2px solid;
}
.income-basic {
  background: #fff;
  border-color: var(--red-primary);
}
.income-growth {
  background: var(--red-primary);
  color: #fff;
}
.income-freedom {
  background: var(--red-dark);
  color: #fff;
}
.income-mode {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 6px;
}
.income-basic .income-mode { color: var(--red-primary); }
.income-growth .income-mode { color: var(--gold); }
.income-freedom .income-mode { color: var(--gold); }
.income-desc {
  font-size: 13px;
  opacity: 0.7;
  margin-bottom: 16px;
}
.income-amount {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 6px;
}
.income-basic .income-amount { color: var(--red-primary); }
.income-growth .income-amount { color: var(--gold); }
.income-freedom .income-amount { color: var(--gold); }
.income-note {
  font-size: 12px;
  opacity: 0.5;
}

/* ===== PURCHASE (FREE BAIT) ===== */
.purchase-section {
  position: relative;
  padding: 80px 24px;
  text-align: center;
  overflow: hidden;
}
.purchase-bg-pattern {
  position: absolute;
  inset: 0;
  background: url('images/hero_bg_pattern.png') center / 600px repeat;
  opacity: 0.35;
}
.purchase-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(58, 0, 0, 0.4) 0%, rgba(26, 5, 5, 0.95) 70%);
}
.purchase-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}
.notification-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  padding: 10px 24px;
  margin-bottom: 40px;
  overflow: hidden;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.notif-dot {
  width: 8px;
  height: 8px;
  background: #4caf50;
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.notif-scroll {
  display: flex;
  gap: 40px;
  animation: scrollLeft 25s linear infinite;
  white-space: nowrap;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}
.purchase-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 900;
  color: #fff;
  margin-bottom: 12px;
}
.purchase-subtitle {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 32px;
}
.quota-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  margin-bottom: 8px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.quota-left { color: var(--gold); }
.quota-right { color: var(--gold); }
.quota-bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  overflow: hidden;
  max-width: 500px;
  margin: 0 auto 24px;
}
.quota-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--red-primary), #ff6b6b);
  border-radius: 100px;
  width: 97.7%;
  transition: width 1s;
}
.purchase-countdown {
  margin-bottom: 28px;
}
.purchase-countdown .countdown-time {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 800;
  color: var(--gold);
}
.countdown-suffix {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  margin-left: 8px;
}
.purchase-cta {
  display: inline-block;
  padding: 20px 80px;
  background: var(--gold);
  color: var(--red-dark);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  border-radius: 100px;
  margin-bottom: 20px;
  transition: all 0.25s;
  box-shadow: 0 4px 24px rgba(255, 215, 0, 0.3);
  animation: ctaPulse 2s ease-in-out infinite;
}
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 4px 24px rgba(255, 215, 0, 0.3); }
  50% { box-shadow: 0 4px 40px rgba(255, 215, 0, 0.6); }
}
.purchase-cta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 40px rgba(255, 215, 0, 0.5);
}
.trust-badges {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}
.badge-dot {
  width: 8px;
  height: 8px;
  background: #4caf50;
  border-radius: 50%;
}
.purchase-disclaimer {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.15);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ===== GLITCH TRANSITION ===== */
.glitch-section {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
}
.glitch-scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    transparent 0px,
    transparent 2px,
    rgba(255, 255, 255, 0.015) 2px,
    rgba(255, 255, 255, 0.015) 4px
  );
  pointer-events: none;
  z-index: 1;
}
.glitch-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 2;
}
.glitch-line-top {
  top: 12%;
  background: linear-gradient(90deg, transparent, #ff003c, transparent);
}
.glitch-line-bottom {
  bottom: 8%;
  background: linear-gradient(90deg, transparent, #ff003c, transparent);
}
.glitch-content {
  position: relative;
  z-index: 3;
  padding: 24px;
}
.glitch-error {
  font-family: var(--font-display);
  font-size: clamp(64px, 12vw, 140px);
  font-weight: 900;
  color: #ff003c;
  line-height: 1;
  margin-bottom: 16px;
  position: relative;
  animation: glitchText 3s infinite;
}
@keyframes glitchText {
  0%, 92%, 100% { text-shadow: none; transform: none; }
  93% { text-shadow: -4px 0 #00ff41, 4px 0 #0ff; transform: skewX(-2deg); }
  94% { text-shadow: 4px 0 #ff003c, -4px 0 #0ff; transform: skewX(2deg); }
  95% { text-shadow: none; transform: none; }
  96% { text-shadow: -2px 0 #00ff41, 2px 0 #ff003c; transform: skewX(-1deg); }
}
.glitch-code {
  font-family: var(--font-mono);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.15em;
  margin-bottom: 24px;
}
.glitch-terminal {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 20px 32px;
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}
.terminal-line {
  font-family: var(--font-mono);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 8px;
  opacity: 0;
  animation: terminalReveal 0.3s forwards;
}
.terminal-line:last-child { margin-bottom: 0; }
@keyframes terminalReveal {
  to { opacity: 1; }
}
.glitch-message {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 28px;
}
.glitch-cta {
  display: inline-block;
  padding: 14px 40px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  margin-bottom: 12px;
  transition: all 0.2s;
}
.glitch-cta:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}
.glitch-hint {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.25);
}
/* Green scan lines on glitch */
.glitch-line-top {
  background: linear-gradient(90deg, transparent 15%, #00ff41 50%, transparent 85%);
}
.glitch-line-bottom {
  background: linear-gradient(90deg, transparent 15%, #ff003c 50%, transparent 85%);
}
/* Additional glitch line in middle */
.glitch-content::before {
  content: '';
  position: fixed;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 20%, #00ff41 50%, transparent 80%);
  opacity: 0.4;
}

/* ===== SIMULATOR (QUESTIONNAIRE) ===== */
.simulator-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 24px;
  text-align: center;
  overflow: hidden;
}
.simulator-bg-pattern {
  position: absolute;
  inset: 0;
  background: url('images/hero_bg_pattern.png') center / 600px repeat;
  opacity: 0.3;
}
.simulator-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(100, 0, 0, 0.3) 0%, rgba(26, 5, 5, 0.95) 70%);
  z-index: 1;
}
.simulator-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  width: 100%;
}
.simulator-badge {
  display: inline-block;
  padding: 8px 24px;
  background: var(--red-primary);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  border-radius: 100px;
  margin-bottom: 20px;
}
.simulator-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 12px;
}
.simulator-subtitle {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 36px;
  line-height: 1.7;
}
.quiz-card {
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 215, 0, 0.15);
  border-radius: 20px;
  padding: 32px;
  text-align: left;
  backdrop-filter: blur(12px);
}
.quiz-progress {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
.quiz-step {
  width: 36px;
  height: 36px;
  background: var(--gold);
  color: var(--red-dark);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}
.quiz-progress-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  white-space: nowrap;
}
.quiz-progress-bar {
  flex: 1;
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  overflow: hidden;
}
.quiz-progress-fill {
  height: 100%;
  background: var(--gold);
  border-radius: 100px;
  transition: width 0.4s ease;
  width: 0%;
}
.quiz-story {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin-bottom: 16px;
}
.quiz-quote {
  font-size: 14px;
  color: var(--gold);
  background: rgba(255, 215, 0, 0.06);
  border-left: 3px solid var(--gold);
  padding: 12px 16px;
  margin-bottom: 20px;
  border-radius: 0 8px 8px 0;
  line-height: 1.6;
}
.quiz-question {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.6;
}
.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.quiz-option {
  display: block;
  width: 100%;
  text-align: left;
  padding: 14px 20px;
  background: rgba(211, 47, 47, 0.15);
  border: 1px solid rgba(211, 47, 47, 0.25);
  border-radius: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
  cursor: pointer;
  transition: all 0.2s;
}
.quiz-option:hover {
  background: rgba(211, 47, 47, 0.35);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateX(4px);
}
.quiz-option:active {
  transform: translateX(2px);
}
.quiz-option-selected {
  background: rgba(255, 215, 0, 0.15) !important;
  border-color: var(--gold) !important;
  color: var(--gold) !important;
}
/* Early ending display */
.quiz-ending {
  text-align: center;
  padding: 20px 0;
}
.quiz-ending-emoji {
  font-size: 48px;
  margin-bottom: 16px;
}
.quiz-ending-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 12px;
}
.quiz-ending-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 20px;
}
.quiz-continue-btn {
  padding: 12px 32px;
  background: var(--gold);
  color: var(--red-dark);
  font-weight: 700;
  border-radius: 100px;
  font-size: 14px;
  transition: all 0.2s;
}
.quiz-continue-btn:hover { transform: translateY(-2px); }

/* ===== RESULT CARD ===== */
.result-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 60px 24px;
  overflow: hidden;
}
.result-bg-pattern {
  position: absolute;
  inset: 0;
  background: url('images/hero_bg_pattern.png') center / 600px repeat;
  opacity: 0.25;
}
.result-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(100, 0, 0, 0.3) 0%, rgba(26, 5, 5, 0.95) 70%);
  z-index: 1;
}
.result-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  width: 100%;
  text-align: center;
}
.result-card {
  background: rgba(0, 0, 0, 0.6);
  border: 2px solid rgba(255, 215, 0, 0.25);
  border-radius: 24px;
  padding: 40px;
  margin-bottom: 28px;
  backdrop-filter: blur(16px);
}
.result-header-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 8px;
}
.result-title-text {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 8px;
}
.result-tagline {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 32px;
}
/* Score circle + bars layout */
.result-body {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 20px;
}
.result-circle {
  flex-shrink: 0;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 4px solid rgba(255, 215, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
}
.result-circle-pct {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.result-circle-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 4px;
}
.result-bars {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.result-bar-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.bar-label {
  font-size: 13px;
  font-weight: 600;
  width: 48px;
  text-align: right;
  flex-shrink: 0;
}
.bar-track {
  flex: 1;
  height: 8px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  overflow: hidden;
}
.bar-fill {
  height: 100%;
  border-radius: 100px;
  transition: width 1.5s ease;
  width: 0%;
}
.bar-fill-greed { background: #ff4757; }
.bar-fill-anxiety { background: #ff6b81; }
.bar-fill-herd { background: #2ed573; }
.bar-fill-impulse { background: #70a1ff; }
.bar-fill-fantasy { background: #a29bfe; }
.bar-value {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  width: 28px;
  text-align: left;
  flex-shrink: 0;
}
.result-rank {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
}
.result-rank strong {
  color: var(--gold);
}
.result-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.result-share-btn {
  padding: 14px 36px;
  background: var(--gold);
  color: var(--red-dark);
  font-weight: 700;
  font-size: 15px;
  border-radius: 100px;
  transition: all 0.2s;
  box-shadow: 0 4px 16px rgba(255, 215, 0, 0.3);
}
.result-share-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 215, 0, 0.4);
}
.result-retry-btn {
  padding: 14px 36px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
  font-size: 15px;
  border-radius: 100px;
  transition: all 0.2s;
}
.result-retry-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

/* ===== FOOTER ===== */
.site-footer {
  padding: 32px 24px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-disclaimer {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.2);
  margin-bottom: 8px;
  line-height: 1.6;
}
.footer-copy {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.15);
}
.footer-copy a {
  color: rgba(255, 255, 255, 0.35);
  text-decoration: underline;
  transition: color 0.2s;
}
.footer-copy a:hover {
  color: var(--gold);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}

/* Screen shake for glitch */
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  10% { transform: translateX(-8px) rotate(-0.5deg); }
  20% { transform: translateX(8px) rotate(0.5deg); }
  30% { transform: translateX(-6px); }
  40% { transform: translateX(6px); }
  50% { transform: translateX(-4px); }
  60% { transform: translateX(4px); }
  70% { transform: translateX(-2px); }
  80% { transform: translateX(2px); }
}
.shake { animation: shake 0.5s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .income-grid { grid-template-columns: 1fr; }
  .hero-float-left { width: 160px; left: -2%; }
  .hero-float-right { width: 200px; right: -2%; }
  .result-body { flex-direction: column; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .cases-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .hero-float-left, .hero-float-right { display: none; }
  .hero-stats { gap: 24px; }
  .level-1 { width: 80%; }
  .level-2 { width: 90%; }
  .level-3 { width: 100%; }
  .purchase-cta { padding: 16px 48px; font-size: 18px; }
  .quiz-card { padding: 20px; }
  .result-card { padding: 24px; }
  .result-circle { width: 140px; height: 140px; }
  .result-circle-pct { font-size: 36px; }
}
@media (max-width: 480px) {
  .hero-stats { flex-direction: column; gap: 16px; }
  .trust-badges { flex-direction: column; gap: 8px; }
}
