/* ═══════════════════════════════════════════════════
   surf.ai — CISO Survey 2026
   Retro-futuristic / dark neon aesthetic
═══════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Space+Mono:wght@400;700&display=swap');

:root {
  /* ── Brand / neon palette ── */
  --cherry:        #5F0C37;
  --cherry-dark:   #3D0820;
  --neon-pink:     #FF6EB4;
  --neon-pink-dim: #C96B9B;
  --neon-cyan:     #00D4FF;
  --neon-green:    #39D98A;
  --neon-orange:   #F47A14;

  /* ── Deep dark backgrounds ── */
  --bg-void:       #030509;
  --bg-panel:      rgba(4, 8, 22, 0.82);
  --bg-panel-dark: rgba(2, 4, 12, 0.92);
  --bg-option:     rgba(255,255,255,0.04);
  --bg-option-hover: rgba(255,110,180,0.08);
  --bg-option-sel: rgba(255,110,180,0.14);

  /* ── Borders / glows ── */
  --border:        rgba(255,110,180,0.18);
  --border-bright: rgba(255,110,180,0.40);
  --border-cyan:   rgba(0,212,255,0.25);
  --glow-pink:     0 0 20px rgba(255,110,180,0.25), 0 0 60px rgba(255,110,180,0.10);
  --glow-cyan:     0 0 20px rgba(0,212,255,0.20);

  /* ── Text ── */
  --white:         #FFFFFF;
  --text-primary:  rgba(255,255,255,0.95);
  --text-secondary: rgba(255,255,255,0.55);
  --text-muted:    rgba(255,255,255,0.30);
  --text-label:    var(--neon-pink);

  /* ── Error / success ── */
  --error:         #FF6B6B;
  --success:       var(--neon-green);

  --radius:        4px;
  --radius-sm:     3px;
  --radius-pill:   100px;
  --transition:    0.2s cubic-bezier(0.4,0,0.2,1);

  --shadow-panel:  0 8px 40px rgba(0,0,0,0.70), 0 1px 0 rgba(255,110,180,0.08) inset;
}

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

body {
  font-family: 'Archivo', system-ui, -apple-system, sans-serif;
  background: var(--bg-void);
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
}

/* ─────────────────────────────────────────
   VIDEO BACKGROUND
───────────────────────────────────────── */
#video-bg {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
  opacity: 0.55;
}

#video-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(
    160deg,
    rgba(3,5,9,0.80) 0%,
    rgba(4,8,22,0.70) 50%,
    rgba(30,4,18,0.75) 100%
  );
  z-index: 1;
  pointer-events: none;
}

/* ── Scanlines ── */
#scanlines {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0,0,0,0.07) 2px,
    rgba(0,0,0,0.07) 4px
  );
  z-index: 2;
  pointer-events: none;
}

/* ── App ── */
#app {
  position: relative;
  z-index: 3;
  min-height: 100vh;
}

/* ── Screens ── */
.screen {
  display: none;
  min-height: 100vh;
  position: relative;
  animation: fadeIn 0.5s ease;
}
.screen.active { display: flex; flex-direction: column; }
#screen-interlude.active { animation: interludeIn 0.35s cubic-bezier(0.4,0,0.2,1); }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes interludeIn {
  from { transform: scale(1.03); }
  to   { transform: scale(1); }
}

/* ─────────────────────────────────────────
   LOGO
───────────────────────────────────────── */
.logo-wrap { display: flex; align-items: center; margin-bottom: 36px; }
.logo-wrap.logo-sm { margin-bottom: 0; }
.surf-logo-img    { height: 44px; width: auto; }
.surf-logo-img-sm { height: 32px; width: auto; }

/* ─────────────────────────────────────────
   WELCOME SCREEN
───────────────────────────────────────── */
#screen-welcome {
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
}

.welcome-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  width: 100%;
  text-align: center;
  background: var(--bg-panel);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius);
  padding: 56px 52px;
  box-shadow: var(--shadow-panel), var(--glow-pink);
}

/* Corner accent marks */
.welcome-content::before,
.welcome-content::after {
  content: '';
  position: absolute;
  width: 20px; height: 20px;
  border-color: var(--neon-pink);
  border-style: solid;
}
.welcome-content::before {
  top: -1px; left: -1px;
  border-width: 2px 0 0 2px;
}
.welcome-content::after {
  bottom: -1px; right: -1px;
  border-width: 0 2px 2px 0;
}

.prize-banner {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(244,122,20,0.10);
  border: 1px solid rgba(244,122,20,0.35);
  border-radius: var(--radius);
  padding: 10px 20px;
  margin-bottom: 32px;
  font-size: 13px;
  color: #FFB86C;
  text-align: left;
  font-family: 'Space Mono', monospace;
}
.prize-banner strong { display: block; font-weight: 700; font-size: 13px; color: #FFD4A0; }
.prize-banner span   { opacity: 0.75; font-size: 12px; }
.prize-icon { font-size: 18px; flex-shrink: 0; }

.welcome-title {
  font-size: clamp(36px, 5.5vw, 60px);
  font-weight: 800;
  line-height: 1.06;
  color: var(--white);
  letter-spacing: -2px;
  margin-bottom: 20px;
  text-shadow: 0 0 40px rgba(255,110,180,0.30);
}

.welcome-subtitle {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 28px;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}

.welcome-meta {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.meta-pill {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 6px 14px;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--text-secondary);
  font-family: 'Space Mono', monospace;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.privacy-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(95,12,55,0.20);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.60;
  margin-bottom: 28px;
  text-align: left;
}
.privacy-note strong { color: var(--neon-pink); font-weight: 600; }
.privacy-note .icon-sm { flex-shrink: 0; margin-top: 2px; color: var(--neon-pink-dim); }

/* ─────────────────────────────────────────
   BUTTONS
───────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--neon-pink);
  color: var(--bg-void);
  font-family: 'Space Mono', monospace;
  font-size: 13.5px;
  font-weight: 700;
  padding: 14px 32px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 0 24px rgba(255,110,180,0.50), 0 4px 16px rgba(0,0,0,0.40);
  white-space: nowrap;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.btn-primary:hover:not(:disabled) {
  background: var(--white);
  color: var(--cherry-dark);
  box-shadow: 0 0 40px rgba(255,110,180,0.70), 0 4px 20px rgba(0,0,0,0.50);
  transform: translateY(-2px);
}
.btn-primary:active:not(:disabled) { transform: translateY(0); }
.btn-primary:disabled {
  opacity: 0.25;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.btn-primary.btn-lg { font-size: 14px; padding: 16px 40px; }
.btn-primary.btn-full { width: 100%; justify-content: center; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: var(--text-secondary);
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  font-weight: 700;
  padding: 12px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.btn-ghost:hover {
  border-color: var(--neon-pink);
  color: var(--neon-pink);
  box-shadow: 0 0 12px rgba(255,110,180,0.20);
}

/* ─────────────────────────────────────────
   SURVEY HEADER
───────────────────────────────────────── */
.survey-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px;
  background: var(--bg-panel-dark);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

/* ─────────────────────────────────────────
   BOTTOM PROGRESS BAR
───────────────────────────────────────── */
.bottom-progress {
  position: sticky;
  bottom: 0;
  z-index: 100;
  background: var(--bg-panel-dark);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
  padding: 12px 28px 14px;
}

.bottom-progress-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--neon-pink);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
  text-align: center;
  font-family: 'Space Mono', monospace;
}

.bottom-progress-track {
  width: 100%;
  height: 3px;
  background: rgba(255,255,255,0.08);
  overflow: hidden;
}

.bottom-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--neon-pink), var(--neon-cyan));
  transition: width 0.5s cubic-bezier(0.4,0,0.2,1);
  width: 0%;
  box-shadow: 0 0 10px rgba(255,110,180,0.80);
}

/* ─────────────────────────────────────────
   CARD
───────────────────────────────────────── */
.card-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}
.card {
  background: var(--bg-panel);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: var(--radius);
  box-shadow: var(--shadow-panel);
  padding: 44px 48px;
  max-width: 640px;
  width: 100%;
  border: 1px solid var(--border);
  position: relative;
}

/* Corner marks on card */
.card::before, .card::after {
  content: '';
  position: absolute;
  width: 14px; height: 14px;
  border-color: var(--neon-pink);
  border-style: solid;
  opacity: 0.5;
}
.card::before { top: -1px; left: -1px; border-width: 2px 0 0 2px; }
.card::after  { bottom: -1px; right: -1px; border-width: 0 2px 2px 0; }

.card.slide-in        { animation: slideIn 0.4s cubic-bezier(0.4,0,0.2,1); }
.card.slide-in-right  { animation: slideInRight 0.35s cubic-bezier(0.4,0,0.2,1); }
.card.slide-out-left  { animation: slideOutLeft 0.3s cubic-bezier(0.4,0,0.2,1) forwards; }

@keyframes slideIn      { from { opacity: 0; transform: translateX(40px); } to { opacity: 1; transform: translateX(0); } }
@keyframes slideOutLeft { from { opacity: 1; transform: translateX(0); }    to { opacity: 0; transform: translateX(-40px); } }
@keyframes slideInRight { from { opacity: 0; transform: translateX(-40px); } to { opacity: 1; transform: translateX(0); } }

.card-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.card-subtitle {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.70;
  margin-bottom: 32px;
}

/* ─────────────────────────────────────────
   FORM FIELDS
───────────────────────────────────────── */
.field-group { margin-bottom: 22px; }
.field-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  color: var(--neon-pink);
  margin-bottom: 8px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: 'Space Mono', monospace;
}
.required { color: var(--neon-cyan); }
.field-input {
  width: 100%;
  font-family: inherit;
  font-size: 15px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--white);
  outline: none;
  transition: var(--transition);
}
.field-input::placeholder { color: var(--text-muted); }
.field-input:focus {
  border-color: var(--neon-pink);
  background: rgba(255,110,180,0.06);
  box-shadow: 0 0 0 3px rgba(255,110,180,0.12), var(--glow-pink);
}
.field-input.error { border-color: var(--error); }
.field-hint  { font-size: 11px; color: var(--text-muted); margin-top: 6px; font-family: 'Space Mono', monospace; }
.field-error { font-size: 11px; color: var(--error); font-weight: 700; margin-top: 6px; min-height: 18px; font-family: 'Space Mono', monospace; }

/* ── HubSpot form embed ── */
#hs-form-wrap { width: 100%; }
#hs-form-wrap .hs-form-frame { width: 100%; min-height: 300px; border: none; }

/* HubSpot field overrides */
#hs-form-wrap .hs-form-field label,
.hs-form-field label {
  font-family: 'Archivo', sans-serif !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  color: var(--text-muted) !important;
  letter-spacing: 0.2px !important;
}
#hs-form-wrap .hs-input,
.hs-form .hs-input {
  font-family: 'Archivo', sans-serif !important;
  font-size: 15px !important;
  padding: 12px 16px !important;
  background: var(--cherry-tint-2) !important;
  border: 1.5px solid var(--border) !important;
  border-radius: var(--radius-sm) !important;
  color: var(--text) !important;
  width: 100% !important;
  box-sizing: border-box !important;
}
#hs-form-wrap .hs-input:focus,
.hs-form .hs-input:focus {
  border-color: var(--cherry-rose) !important;
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(212,121,156,0.15) !important;
}
#hs-form-wrap .hs-button,
.hs-form .hs-button {
  font-family: 'Archivo', sans-serif !important;
  font-size: 15.5px !important;
  font-weight: 700 !important;
  background: var(--cherry-rose) !important;
  color: white !important;
  border: none !important;
  border-radius: var(--radius-pill) !important;
  padding: 14px 30px !important;
  cursor: pointer !important;
  width: 100% !important;
  box-shadow: 0 4px 16px rgba(212,121,156,0.40) !important;
}
#hs-form-wrap .hs-button:hover,
.hs-form .hs-button:hover {
  background: var(--cherry-mid) !important;
}
#hs-form-wrap .hs-error-msgs,
.hs-form .hs-error-msgs {
  color: var(--error) !important;
  font-size: 12px !important;
  font-family: 'Archivo', sans-serif !important;
}

.demographics-privacy {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(95,12,55,0.18);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 11.5px;
  color: var(--text-secondary);
  line-height: 1.60;
  margin-bottom: 24px;
}

/* ─────────────────────────────────────────
   QUESTION
───────────────────────────────────────── */
.section-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--neon-cyan);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: 'Space Mono', monospace;
  margin-bottom: 10px;
  opacity: 0.75;
}

.question-num {
  font-size: 11px;
  font-weight: 700;
  color: var(--neon-pink);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-family: 'Space Mono', monospace;
}
.question-text {
  font-size: clamp(17px, 2.4vw, 22px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.50;
  letter-spacing: -0.2px;
  margin-bottom: 28px;
}

/* ── Option cards ── */
.options-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 8px;
}
.option-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 18px;
  background: var(--bg-option);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  user-select: none;
}
.option-card:hover {
  border-color: var(--neon-pink-dim);
  background: var(--bg-option-hover);
  transform: translateX(4px);
  box-shadow: 0 0 16px rgba(255,110,180,0.12);
}
.option-card.selected {
  border-color: var(--neon-pink);
  background: var(--bg-option-sel);
  box-shadow: 0 0 20px rgba(255,110,180,0.18), 0 0 0 1px rgba(255,110,180,0.15);
}
.option-card.selected .option-radio {
  background: var(--neon-pink);
  border-color: var(--neon-pink);
  box-shadow: 0 0 12px rgba(255,110,180,0.60);
}
.option-card.selected .option-radio::after { opacity: 1; }
.option-card.selected .option-text { color: var(--white); font-weight: 600; }

.option-radio {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.20);
  background: transparent;
  flex-shrink: 0;
  transition: var(--transition);
  position: relative;
}
.option-radio::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 6px; height: 6px;
  background: var(--bg-void);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.option-text { font-size: 14px; color: var(--text-secondary); line-height: 1.50; }

/* ── Follow-up ── */
.follow-up-wrap { margin-top: 12px; margin-bottom: 8px; }
.follow-up-wrap.hidden { display: none; }

/* ── Question actions ── */
.question-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 28px;
  gap: 12px;
}

/* ─────────────────────────────────────────
   INTERLUDE SCREEN
───────────────────────────────────────── */
#screen-interlude {
  align-items: center;
  justify-content: center;
}
.interlude-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 40px;
  text-align: center;
}
.interlude-animation { position: relative; }

.interlude-gif {
  width: 320px;
  height: 240px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 0 40px rgba(255,110,180,0.30), 0 16px 56px rgba(0,0,0,0.60), 0 0 0 1px var(--border);
  animation: gifPop 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes gifPop {
  from { transform: scale(0.75); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

.interlude-text {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  max-width: 360px;
  line-height: 1.45;
  text-shadow: 0 0 30px rgba(255,110,180,0.40);
}

/* ── Dots ── */
.interlude-dots { display: flex; gap: 8px; align-items: center; }
.dot {
  width: 6px; height: 6px;
  background: var(--neon-pink);
  border-radius: 50%;
  animation: dotBounce 1.2s ease-in-out infinite;
  box-shadow: 0 0 8px rgba(255,110,180,0.60);
}
.dot:nth-child(2) { animation-delay: 0.2s; background: var(--neon-cyan); box-shadow: 0 0 8px rgba(0,212,255,0.60); }
.dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes dotBounce {
  0%, 80%, 100% { transform: scale(0.7); opacity: 0.4; }
  40%           { transform: scale(1.2); opacity: 1; }
}

/* ─────────────────────────────────────────
   COMPLETE SCREEN
───────────────────────────────────────── */
#screen-complete {
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
}
.complete-content {
  position: relative; z-index: 1;
  max-width: 540px; width: 100%;
  text-align: center;
  background: var(--bg-panel);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius);
  padding: 56px 48px;
  box-shadow: var(--shadow-panel), var(--glow-pink);
}
.complete-content::before, .complete-content::after {
  content: '';
  position: absolute;
  width: 20px; height: 20px;
  border-color: var(--neon-pink);
  border-style: solid;
}
.complete-content::before { top: -1px; left: -1px; border-width: 2px 0 0 2px; }
.complete-content::after  { bottom: -1px; right: -1px; border-width: 0 2px 2px 0; }

.complete-icon { width: 80px; height: 80px; margin: 0 auto 28px; }
.checkmark-circle {
  stroke: var(--neon-green);
  stroke-width: 2;
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  animation: circleStroke 0.6s cubic-bezier(0.65,0,0.45,1) 0.1s forwards;
}
.checkmark-check {
  stroke: var(--neon-green);
  stroke-width: 2.5;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  stroke-linecap: round; stroke-linejoin: round;
  animation: checkStroke 0.4s cubic-bezier(0.65,0,0.45,1) 0.7s forwards;
}
@keyframes circleStroke { to { stroke-dashoffset: 0; } }
@keyframes checkStroke  { to { stroke-dashoffset: 0; } }

.complete-title {
  font-size: 36px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1px;
  margin-bottom: 14px;
  text-shadow: 0 0 30px rgba(255,110,180,0.30);
}
.complete-subtitle {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 28px;
}
.complete-prize {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(244,122,20,0.08);
  border: 1px solid rgba(244,122,20,0.30);
  border-radius: var(--radius);
  padding: 18px 22px;
  text-align: left;
  margin-bottom: 28px;
}
.complete-prize strong { display: block; font-weight: 700; font-size: 14px; color: #FFD4A0; }
.complete-prize span   { font-size: 13px; color: #FFB86C; line-height: 1.55; }
.complete-footer { font-size: 12.5px; color: var(--text-muted); line-height: 1.65; font-family: 'Space Mono', monospace; }

/* ─────────────────────────────────────────
   ICONS
───────────────────────────────────────── */
.icon-sm { width: 18px; height: 18px; flex-shrink: 0; }

/* ─────────────────────────────────────────
   CONFETTI
───────────────────────────────────────── */
.confetti-container {
  position: fixed; top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none; z-index: 9999; overflow: hidden;
}
.confetti-piece {
  position: absolute; width: 10px; height: 10px;
  top: -20px;
  animation: confettiFall linear forwards;
}
@keyframes confettiFall {
  0%   { transform: translateY(0) rotate(0deg); opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translateY(110vh) rotate(720deg); opacity: 0; }
}

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 600px) {
  .welcome-content { padding: 36px 24px; }
  .complete-content { padding: 36px 24px; }
  .card { padding: 28px 22px; }
  .survey-header { padding: 12px 16px; }
  .question-actions { flex-direction: column-reverse; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; }
  .prize-banner { flex-direction: column; text-align: center; }
  .interlude-gif { width: 260px; height: 195px; }
  .bottom-progress { padding: 10px 16px 12px; }
}
