/* ================================================
   NeuroGlic Quiz — Cinematic Neon Design System
   Dark Space · Neon Cyan & Green · Glassmorphism
   ================================================ */

:root {
  --bg:        #020817;
  --bg2:       #060d1f;
  --glass:     rgba(8, 20, 48, 0.75);
  --glass2:    rgba(12, 28, 60, 0.6);
  --border:    rgba(0, 240, 255, 0.12);
  --border2:   rgba(0, 240, 255, 0.25);
  --text:      #e2e8f0;
  --text2:     #94a3b8;
  --cyan:      #00f0ff;
  --cyan-dim:  rgba(0, 240, 255, 0.15);
  --green:     #00ff88;
  --green-dim: rgba(0, 255, 136, 0.12);
  --purple:    #7c3aed;
  --purple-dim:rgba(124, 58, 237, 0.15);
  --yellow:    #fbbf24;
  --red:       #ff4466;
  --radius:    16px;
  --radius-sm: 10px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* Neural network canvas background */
#neural-bg {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  z-index: 0;
  pointer-events: none;
  opacity: 0.65;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', sans-serif;
  font-size: 18px;
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── Animated Background ────────────────────────── */

.bg-scene {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,240,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,240,255,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  animation: orbFloat 12s ease-in-out infinite;
}

.orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,240,255,0.07) 0%, transparent 70%);
  top: -150px; left: -150px;
  animation-duration: 14s;
}
.orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,255,136,0.06) 0%, transparent 70%);
  bottom: -100px; right: -100px;
  animation-duration: 18s;
  animation-delay: -6s;
}
.orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(124,58,237,0.08) 0%, transparent 70%);
  top: 40%; left: 55%;
  animation-duration: 10s;
  animation-delay: -3s;
}
.orb-4 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(0,240,255,0.05) 0%, transparent 70%);
  top: 60%; left: 15%;
  animation-duration: 16s;
  animation-delay: -9s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25%       { transform: translate(40px, -40px) scale(1.08); }
  50%       { transform: translate(-20px, 30px) scale(0.95); }
  75%       { transform: translate(30px, 20px) scale(1.03); }
}

/* ── Layout ─────────────────────────────────────── */

.page {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 20px 80px;
}

.container {
  width: 100%;
  max-width: 580px;
}

/* ── Typography ──────────────────────────────────── */

h1 {
  font-size: clamp(28px, 6vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.5px;
}

h2 {
  font-size: clamp(20px, 5vw, 28px);
  font-weight: 700;
  line-height: 1.25;
}

h3 { font-size: clamp(16px, 4vw, 20px); font-weight: 700; }

.gradient-text {
  background: linear-gradient(135deg, var(--cyan) 0%, var(--green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-warm {
  background: linear-gradient(135deg, #fbbf24 0%, #f97316 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.subtitle { color: var(--text2); font-size: 16px; margin-top: 8px; line-height: 1.6; }

.label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--cyan);
  opacity: 0.7;
  margin-bottom: 10px;
  display: block;
}

/* ── Glass Card ──────────────────────────────────── */

.card {
  background: var(--glass);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  padding: 24px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow:
    0 4px 24px rgba(0,0,0,0.4),
    inset 0 1px 0 rgba(255,255,255,0.04);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.card:hover {
  border-color: rgba(0,240,255,0.3);
  box-shadow:
    0 8px 32px rgba(0,0,0,0.5),
    0 0 0 1px rgba(0,240,255,0.08),
    inset 0 1px 0 rgba(255,255,255,0.05);
}

.card + .card { margin-top: 14px; }

/* ── Neon Buttons ────────────────────────────────── */

.btn-primary {
  display: block;
  width: 100%;
  background: linear-gradient(135deg, #0d3b6e 0%, #0a2a50 100%);
  color: var(--cyan);
  font-size: 16px;
  font-weight: 800;
  text-align: center;
  padding: 18px 28px;
  border-radius: var(--radius);
  border: 1px solid rgba(0,240,255,0.4);
  cursor: pointer;
  letter-spacing: 0.5px;
  line-height: 1.3;
  position: relative;
  overflow: hidden;
  transition: transform 0.15s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  text-decoration: none;
  box-shadow:
    0 0 20px rgba(0,240,255,0.15),
    0 4px 16px rgba(0,0,0,0.4),
    inset 0 1px 0 rgba(0,240,255,0.1);
  -webkit-tap-highlight-color: transparent;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,240,255,0.08) 0%, rgba(0,255,136,0.05) 100%);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.btn-primary:hover {
  border-color: var(--cyan);
  box-shadow:
    0 0 30px rgba(0,240,255,0.3),
    0 0 60px rgba(0,240,255,0.1),
    0 4px 20px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(0,240,255,0.15);
  transform: translateY(-1px);
}

.btn-primary:hover::before { opacity: 1; }
.btn-primary:active { transform: scale(0.98) translateY(0); }

/* ── Answer Option Buttons ───────────────────────── */

.btn-option {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  background: rgba(8, 20, 48, 0.6);
  color: var(--text);
  font-size: 16px;
  font-weight: 500;
  text-align: left;
  padding: 18px 20px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(0, 240, 255, 0.1);
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    transform 0.15s ease,
    box-shadow 0.2s ease;
  line-height: 1.45;
  margin-bottom: 10px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  -webkit-tap-highlight-color: transparent;
  position: relative;
  overflow: hidden;
}

.btn-option::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--cyan), var(--green));
  opacity: 0;
  transition: opacity 0.2s ease;
  border-radius: 0 2px 2px 0;
}

.btn-option:hover {
  border-color: rgba(0,240,255,0.35);
  background: rgba(0,240,255,0.06);
  transform: translateX(4px);
  box-shadow: 0 0 16px rgba(0,240,255,0.08), inset 0 0 20px rgba(0,240,255,0.03);
}

.btn-option:hover::before { opacity: 1; }

.btn-option.selected {
  border-color: var(--cyan);
  background: rgba(0,240,255,0.1);
  color: #fff;
  font-weight: 700;
  box-shadow:
    0 0 20px rgba(0,240,255,0.2),
    0 0 40px rgba(0,240,255,0.08),
    inset 0 0 20px rgba(0,240,255,0.05);
  transform: translateX(4px) scale(1.01);
}

.btn-option.selected::before { opacity: 1; }

.btn-option.pop {
  animation: btnPop 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes btnPop {
  0%   { transform: translateX(4px) scale(1.01); }
  50%  { transform: translateX(4px) scale(1.05); box-shadow: 0 0 40px rgba(0,240,255,0.4); }
  100% { transform: translateX(4px) scale(1.01); }
}

.option-letter {
  width: 30px;
  height: 30px;
  background: rgba(0,240,255,0.08);
  border: 1px solid rgba(0,240,255,0.2);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  color: var(--cyan);
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s;
}

.btn-option.selected .option-letter {
  background: var(--cyan);
  color: #020817;
  border-color: var(--cyan);
}

/* ── Progress Bar ────────────────────────────────── */

.progress-wrap {
  width: 100%;
  background: rgba(0,240,255,0.06);
  height: 4px;
  border-radius: 99px;
  margin-bottom: 28px;
  overflow: hidden;
  position: relative;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--cyan), var(--green));
  border-radius: 99px;
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 10px rgba(0,240,255,0.6), 0 0 20px rgba(0,240,255,0.2);
  position: relative;
}

.progress-fill::after {
  content: '';
  position: absolute;
  right: 0; top: -3px;
  width: 10px; height: 10px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--cyan), 0 0 16px rgba(0,240,255,0.5);
}

.progress-label {
  font-size: 12px;
  color: var(--text2);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.progress-label span { color: var(--cyan); font-weight: 700; }

/* ── Quiz Card 3D Wrapper ────────────────────────── */

.quiz-stage {
  perspective: 1000px;
  perspective-origin: center center;
}

#q-card {
  transform-style: preserve-3d;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease;
}

#q-card.exit-left {
  transform: perspective(1000px) rotateY(-25deg) translateX(-60px);
  opacity: 0;
}

#q-card.enter-right {
  transform: perspective(1000px) rotateY(25deg) translateX(60px);
  opacity: 0;
  transition: none;
}

#q-card.enter-active {
  transform: perspective(1000px) rotateY(0deg) translateX(0);
  opacity: 1;
}

/* ── Risk Badge ──────────────────────────────────── */

.risk-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 99px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.risk-badge.green {
  background: rgba(0,255,136,0.1);
  color: var(--green);
  border: 1px solid rgba(0,255,136,0.3);
  box-shadow: 0 0 20px rgba(0,255,136,0.15), inset 0 0 20px rgba(0,255,136,0.05);
}

.risk-badge.yellow {
  background: rgba(251,191,36,0.1);
  color: var(--yellow);
  border: 1px solid rgba(251,191,36,0.3);
  box-shadow: 0 0 20px rgba(251,191,36,0.15), inset 0 0 20px rgba(251,191,36,0.05);
}

.risk-badge.red {
  background: rgba(255,68,102,0.1);
  color: var(--red);
  border: 1px solid rgba(255,68,102,0.3);
  box-shadow: 0 0 20px rgba(255,68,102,0.2), inset 0 0 20px rgba(255,68,102,0.05);
}

/* ── Score Display ───────────────────────────────── */

.score-display {
  text-align: center;
  padding: 32px 24px;
  border-radius: var(--radius);
  margin-bottom: 0;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.score-display::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 0%, currentColor, transparent 70%);
  opacity: 0.05;
}

.score-display.green {
  background: rgba(0,255,136,0.05);
  border: 1px solid rgba(0,255,136,0.2);
  box-shadow: 0 0 40px rgba(0,255,136,0.1), inset 0 0 40px rgba(0,255,136,0.03);
}

.score-display.yellow {
  background: rgba(251,191,36,0.05);
  border: 1px solid rgba(251,191,36,0.2);
  box-shadow: 0 0 40px rgba(251,191,36,0.1), inset 0 0 40px rgba(251,191,36,0.03);
}

.score-display.red {
  background: rgba(255,68,102,0.05);
  border: 1px solid rgba(255,68,102,0.2);
  box-shadow: 0 0 40px rgba(255,68,102,0.1), inset 0 0 40px rgba(255,68,102,0.03);
}

.score-number {
  font-size: 64px;
  font-weight: 900;
  line-height: 1;
  margin: 10px 0 6px;
  letter-spacing: -2px;
}

.score-display.green  .score-number {
  color: var(--green);
  text-shadow: 0 0 30px rgba(0,255,136,0.5), 0 0 60px rgba(0,255,136,0.2);
}

.score-display.yellow .score-number {
  color: var(--yellow);
  text-shadow: 0 0 30px rgba(251,191,36,0.5), 0 0 60px rgba(251,191,36,0.2);
}

.score-display.red    .score-number {
  color: var(--red);
  text-shadow: 0 0 30px rgba(255,68,102,0.5), 0 0 60px rgba(255,68,102,0.2);
}

/* ── Loading Screen ──────────────────────────────── */

.loading-screen {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  text-align: center;
  padding: 40px 20px;
  position: relative;
  z-index: 1;
}

.loading-screen.active { display: flex; }

.spinner-wrap {
  position: relative;
  width: 80px;
  height: 80px;
  margin-bottom: 36px;
}

.spinner-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid transparent;
  animation: spinRing 1.4s linear infinite;
}

.ring-1 {
  border-top-color: var(--cyan);
  box-shadow: 0 0 12px rgba(0,240,255,0.4);
}

.ring-2 {
  inset: 8px;
  border-right-color: var(--green);
  animation-duration: 1s;
  animation-direction: reverse;
  box-shadow: 0 0 8px rgba(0,255,136,0.3);
}

.ring-3 {
  inset: 18px;
  border-bottom-color: rgba(124,58,237,0.8);
  animation-duration: 1.8s;
}

.spinner-dot {
  position: absolute;
  inset: 33px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--cyan);
  animation: dotPulse 1.4s ease-in-out infinite;
}

@keyframes spinRing { to { transform: rotate(360deg); } }

@keyframes dotPulse {
  0%, 100% { transform: scale(0.8); opacity: 0.6; }
  50%       { transform: scale(1.2); opacity: 1; }
}

.loading-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
  text-align: left;
  width: 100%;
  max-width: 320px;
}

.loading-step {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text2);
  opacity: 0;
  transform: translateX(-16px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.loading-step.visible {
  opacity: 1;
  transform: translateX(0);
}

.step-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border2);
  flex-shrink: 0;
  transition: background 0.3s, box-shadow 0.3s;
}

.loading-step.visible .step-dot {
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
}

/* ── Offer Items ─────────────────────────────────── */

.offer-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: rgba(0,240,255,0.03);
  border-radius: var(--radius-sm);
  padding: 18px;
  margin-bottom: 10px;
  border: 1px solid rgba(0,240,255,0.08);
  transition: border-color 0.2s, background 0.2s;
}

.offer-item:hover {
  border-color: rgba(0,240,255,0.2);
  background: rgba(0,240,255,0.05);
}

.offer-item.featured {
  border-color: rgba(251,191,36,0.25);
  background: rgba(251,191,36,0.04);
  box-shadow: 0 0 20px rgba(251,191,36,0.08);
}

.offer-item.featured:hover {
  border-color: rgba(251,191,36,0.4);
  background: rgba(251,191,36,0.07);
}

.offer-icon {
  font-size: 30px;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}

.offer-item h3 { font-size: 15px; margin-bottom: 5px; }
.offer-item p  { font-size: 13px; color: var(--text2); line-height: 1.55; }

.format-tag {
  display: inline-block;
  background: rgba(0,240,255,0.1);
  color: var(--cyan);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  margin-left: 6px;
  vertical-align: middle;
  border: 1px solid rgba(0,240,255,0.2);
}

.featured-tag {
  display: inline-block;
  background: rgba(251,191,36,0.12);
  color: var(--yellow);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  margin-top: 6px;
  border: 1px solid rgba(251,191,36,0.25);
}

/* ── Bonus Items ─────────────────────────────────── */

.bonus-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0,240,255,0.06);
}

.bonus-item:last-child { border-bottom: none; }

.bonus-check {
  color: var(--green);
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 1px;
  font-weight: 700;
  text-shadow: 0 0 8px var(--green);
}

.bonus-item h3 { font-size: 14px; margin-bottom: 3px; color: var(--text); }
.bonus-item p  { font-size: 13px; color: var(--text2); line-height: 1.5; }

/* ── CTA Block ───────────────────────────────────── */

.cta-block {
  background: linear-gradient(135deg, rgba(0,240,255,0.05) 0%, rgba(0,255,136,0.03) 100%);
  border: 1px solid rgba(0,240,255,0.25);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  margin-top: 14px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
  box-shadow:
    0 0 40px rgba(0,240,255,0.08),
    inset 0 1px 0 rgba(0,240,255,0.08);
}

.cta-block::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
}

.price-original {
  color: var(--text2);
  font-size: 15px;
  text-decoration: line-through;
  margin-bottom: 4px;
  opacity: 0.6;
}

.price-current {
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -2px;
  margin-bottom: 22px;
  line-height: 1;
}

.price-current .amount {
  background: linear-gradient(135deg, var(--cyan) 0%, var(--green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  filter: drop-shadow(0 0 20px rgba(0,240,255,0.4));
}

.cta-seals {
  margin-top: 16px;
  font-size: 12px;
  color: var(--text2);
  line-height: 2;
  opacity: 0.7;
}

/* ── Divider ─────────────────────────────────────── */

.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,240,255,0.15), transparent);
  margin: 32px 0;
}

/* ── Entry Page ──────────────────────────────────── */

.hero {
  text-align: center;
  padding: 64px 0 40px;
}

.hero-icon {
  width: 88px;
  height: 88px;
  background: rgba(0,240,255,0.07);
  border: 1px solid rgba(0,240,255,0.2);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  margin: 0 auto 28px;
  box-shadow:
    0 0 30px rgba(0,240,255,0.15),
    inset 0 0 30px rgba(0,240,255,0.05);
  animation: iconGlow 3s ease-in-out infinite;
}

@keyframes iconGlow {
  0%, 100% { box-shadow: 0 0 30px rgba(0,240,255,0.15), inset 0 0 30px rgba(0,240,255,0.05); }
  50%       { box-shadow: 0 0 50px rgba(0,240,255,0.3), inset 0 0 40px rgba(0,240,255,0.08); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,240,255,0.07);
  color: var(--cyan);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 99px;
  border: 1px solid rgba(0,240,255,0.2);
  margin-bottom: 20px;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--green);
  animation: blink 2s ease-in-out infinite;
}

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

.hero h1 { margin-bottom: 16px; }

.hero .subtitle {
  font-size: 18px;
  max-width: 460px;
  margin: 0 auto 36px;
}

.trust-row {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text2);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 99px;
  padding: 6px 14px;
}

/* ── Steps ───────────────────────────────────────── */

.steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 20px 0;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 15px;
  color: var(--text2);
}

.step-num {
  width: 34px;
  height: 34px;
  background: rgba(0,240,255,0.08);
  border: 1px solid rgba(0,240,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  font-weight: 800;
  font-size: 13px;
  flex-shrink: 0;
  box-shadow: 0 0 12px rgba(0,240,255,0.1);
}

/* ── Warning strip ───────────────────────────────── */

.warning-strip {
  background: rgba(255,68,102,0.05);
  border: 1px solid rgba(255,68,102,0.2);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 24px 0;
}

.warning-strip p {
  font-size: 14px;
  color: rgba(255, 180, 190, 0.9);
  line-height: 1.65;
}

/* ── Cause Block ─────────────────────────────────── */

.cause-block {
  background: rgba(0,255,136,0.03);
  border: 1px solid rgba(0,255,136,0.15);
  border-radius: var(--radius);
  padding: 22px;
  margin-bottom: 14px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.cause-block .label { color: var(--green); }

.cause-block p {
  font-size: 15px;
  color: rgba(220,255,240,0.85);
  line-height: 1.75;
}

.cause-block strong { color: #fff; }

/* ── Result Header ───────────────────────────────── */

.result-header {
  padding: 52px 0 24px;
  text-align: center;
}

.result-header h2 {
  margin-top: 18px;
  font-size: clamp(18px, 4vw, 24px);
}

/* ── Section ─────────────────────────────────────── */

.section-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text2);
  margin-bottom: 16px;
  display: block;
  opacity: 0.6;
}

/* ── Disclaimer ──────────────────────────────────── */

.disclaimer {
  font-size: 12px;
  color: var(--text2);
  text-align: center;
  margin-top: 16px;
  line-height: 1.65;
  opacity: 0.5;
}

/* ── Utilities ───────────────────────────────────── */

.mt-14 { margin-top: 14px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.text-center { text-align: center; }

/* ── Entrance animations ─────────────────────────── */

.fade-up {
  animation: fadeUp 0.5s ease forwards;
}

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

.fade-up:nth-child(1) { animation-delay: 0.05s; }
.fade-up:nth-child(2) { animation-delay: 0.12s; }
.fade-up:nth-child(3) { animation-delay: 0.19s; }
.fade-up:nth-child(4) { animation-delay: 0.26s; }
.fade-up:nth-child(5) { animation-delay: 0.33s; }
.fade-up:nth-child(6) { animation-delay: 0.40s; }

/* ── Responsive ──────────────────────────────────── */

/* iPad / tablet (768px – 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
  .container  { max-width: 600px; }
  body        { font-size: 18px; }
  h1          { font-size: 36px; }
  h2          { font-size: 26px; }
  .btn-primary { font-size: 17px; padding: 20px 32px; }
  .btn-option  { font-size: 17px; padding: 20px 22px; }
  .score-number { font-size: 72px; }
  .price-current { font-size: 52px; }
  .card { padding: 28px; }
  .cta-block { padding: 36px 32px; }
}

/* iPhone / small mobile (≤ 480px) */
@media (max-width: 480px) {
  body        { font-size: 16px; }
  .page       { padding: 0 16px 60px; }
  .container  { max-width: 100%; }

  /* Scale down the hero mark on small screens */
  .neuro-mark { width: 230px !important; height: 230px !important; }
  .nm-ring-1  { width: 228px !important; height: 228px !important; }
  .nm-ring-2  { width: 192px !important; height: 192px !important; }
  .nm-ring-3  { width: 150px !important; height: 150px !important; }
  .nm-orbit   { width: 192px !important; height: 192px !important; }
  .nm-dot     { transform: rotate(var(--deg)) translateY(-96px) !important; }
  .nm-svg     { width: 160px !important; height: 160px !important; }
  /* Hide far-reaching particles on small screens */
  .nm-particle { display: none; }

  h1 { font-size: 26px; }
  h2 { font-size: 20px; }

  .btn-primary { font-size: 15px; padding: 18px 20px; }
  .btn-option  { font-size: 15px; padding: 16px 14px; min-height: 56px; }
  .option-letter { width: 26px; height: 26px; font-size: 11px; }

  .price-current  { font-size: 36px; }
  .score-number   { font-size: 52px; }

  .stat-row       { gap: 8px; }
  .stat-item      { padding: 12px 10px; min-width: 70px; }
  .stat-num       { font-size: 20px; }

  .card           { padding: 18px; }
  .cta-block      { padding: 24px 18px; }
  .offer-item     { padding: 14px; }
  .offer-icon     { font-size: 24px; }

  .result-header  { padding: 36px 0 18px; }
  .score-display  { padding: 22px 16px; }
}

/* Very small (≤ 360px — Samsung Galaxy S8 etc.) */
@media (max-width: 360px) {
  .neuro-mark { width: 200px !important; height: 200px !important; }
  .nm-ring-1  { width: 198px !important; height: 198px !important; }
  .nm-ring-2  { width: 165px !important; height: 165px !important; }
  .nm-ring-3  { width: 128px !important; height: 128px !important; }
  .nm-orbit   { width: 165px !important; height: 165px !important; }
  .nm-dot     { transform: rotate(var(--deg)) translateY(-82px) !important; }
  .nm-svg     { width: 140px !important; height: 140px !important; }
  h1          { font-size: 23px; }
  .btn-primary { font-size: 14px; padding: 16px 16px; }
}

/* ── Urgency Bar ─────────────────────────────────── */
.urgency-bar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(90deg, rgba(239,68,68,0.9), rgba(220,38,38,0.9));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  text-align: center;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.3px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.urgency-bar strong { font-weight: 800; }
.urgency-bar .price-highlight {
  background: rgba(255,255,255,0.2);
  padding: 2px 8px;
  border-radius: 4px;
  margin: 0 4px;
}

/* ── Profile Archetype ───────────────────────────── */
.profile-archetype {
  text-align: center;
  padding: 28px 24px;
  border-radius: var(--radius);
  margin-bottom: 0;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.profile-archetype.red    { background: rgba(255,68,102,0.05);  border: 2px solid rgba(255,68,102,0.3);  box-shadow: 0 0 40px rgba(255,68,102,0.12); }
.profile-archetype.yellow { background: rgba(251,191,36,0.05);  border: 2px solid rgba(251,191,36,0.3);  box-shadow: 0 0 40px rgba(251,191,36,0.10); }
.profile-archetype.green  { background: rgba(0,255,136,0.04);   border: 2px solid rgba(0,255,136,0.25);  box-shadow: 0 0 40px rgba(0,255,136,0.10); }

.profile-name {
  font-size: clamp(26px, 6vw, 38px);
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1.1;
  margin: 10px 0 6px;
}
.profile-archetype.red    .profile-name { color: var(--red);    text-shadow: 0 0 30px rgba(255,68,102,0.5); }
.profile-archetype.yellow .profile-name { color: var(--yellow); text-shadow: 0 0 30px rgba(251,191,36,0.5); }
.profile-archetype.green  .profile-name { color: var(--green);  text-shadow: 0 0 30px rgba(0,255,136,0.5); }

.profile-tagline {
  font-size: 14px;
  opacity: 0.65;
  margin-bottom: 14px;
}

/* ── Testimonials ────────────────────────────────── */
.testimonials-section { margin-top: 14px; }

.testimonial-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px;
  margin-bottom: 10px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.testimonial-stars { color: #fbbf24; font-size: 13px; margin-bottom: 8px; letter-spacing: 2px; }
.testimonial-text  { font-size: 14px; color: var(--text2); line-height: 1.65; margin-bottom: 10px; font-style: italic; }
.testimonial-text strong { color: var(--text); font-style: normal; }
.testimonial-author { font-size: 12px; color: var(--text2); opacity: 0.55; font-weight: 700; }

@media (max-width: 480px) {
  .urgency-bar { font-size: 12px; padding: 9px 14px; }
  .profile-name { font-size: 26px; }
}
