/* ============================================
   NPS Is The Best — April Fools 2026
   A loving tribute to the world's greatest metric
   Aesthetic: Corporate Luxury Parody
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --gold: #f5c518;
  --gold-light: #ffd84d;
  --gold-dark: #c9a000;
  --gold-glow: rgba(245, 197, 24, 0.12);
  --navy: #1a1a2e;
  --text-primary: #ede4d4;
  --text-muted: #9e9589;
  --bg-dark: #0d0d17;
  --bg-warm: #100f1a;
  --bg-card: rgba(255, 255, 255, 0.025);
  --border-subtle: rgba(245, 197, 24, 0.07);
  --border-glow: rgba(245, 197, 24, 0.18);
  --red-nps: #e74c3c;
  --red-nps-soft: #c0392b;
  --amber-nps: #f39c12;
  --green-nps: #27ae60;
  --blur: 20px;
  --max-width: 1200px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --header-height: 64px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  scroll-padding-top: calc(var(--header-height) + 2rem);
}

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Animated gradient mesh background */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(ellipse 80% 60% at 20% 30%, rgba(26, 26, 46, 0.8) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 80% 70%, rgba(22, 33, 62, 0.6) 0%, transparent 70%),
    radial-gradient(circle 50% at 50% 50%, rgba(245, 197, 24, 0.015) 0%, transparent 60%),
    radial-gradient(ellipse 70% 50% at 70% 20%, rgba(13, 13, 30, 0.7) 0%, transparent 65%);
  background-size: 200% 200%;
  animation: mesh-drift 35s ease-in-out infinite alternate;
}

@keyframes mesh-drift {
  0%   { background-position: 0% 0%, 100% 100%, 50% 50%, 30% 70%; }
  25%  { background-position: 30% 20%, 70% 80%, 60% 40%, 50% 30%; }
  50%  { background-position: 60% 40%, 40% 60%, 40% 60%, 70% 50%; }
  75%  { background-position: 40% 70%, 60% 30%, 55% 45%, 20% 60%; }
  100% { background-position: 100% 100%, 0% 0%, 45% 55%, 60% 40%; }
}

/* Grain texture overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.03;
  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)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--gold-light);
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

/* --- Announcement Bar --- */
.announcement-bar {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
  color: var(--navy);
  text-align: center;
  padding: 0.55rem 2.5rem 0.55rem 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.015em;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 101;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.announcement-bar.dismissed {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.announcement-bar a {
  color: var(--navy);
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 2px;
}

.announcement-bar .dismiss-btn {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--navy);
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity var(--transition);
  line-height: 1;
  padding: 0.25rem;
}

.announcement-bar .dismiss-btn:hover {
  opacity: 1;
}

/* --- Header --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  backdrop-filter: blur(var(--blur));
  -webkit-backdrop-filter: blur(var(--blur));
  background: rgba(13, 13, 23, 0.82);
  border-bottom: 1px solid var(--border-subtle);
  transition: transform 0.3s ease;
  height: var(--header-height);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  white-space: nowrap;
  flex-shrink: 0;
}

.logo-emoji {
  font-size: 1.6rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-left: 1.5rem;
}

.nav a {
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 500;
  transition: color var(--transition);
  white-space: nowrap;
  position: relative;
  letter-spacing: 0.01em;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav a:hover {
  color: var(--gold);
}

.nav a:hover::after {
  width: 100%;
}

.nav-social {
  display: flex;
  gap: 0.85rem;
  margin-left: 0.5rem;
  padding-left: 1.25rem;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-social a {
  font-size: 1rem;
}

.nav-social a::after {
  display: none;
}

/* Mobile menu */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
}

/* --- Hero --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 6rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 25% 15%, rgba(245, 197, 24, 0.07) 0%, transparent 50%),
    radial-gradient(ellipse at 75% 85%, rgba(245, 197, 24, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 50% 40%, rgba(245, 197, 24, 0.015) 0%, transparent 60%);
  pointer-events: none;
  animation: hero-glow 12s ease-in-out infinite alternate;
}

@keyframes hero-glow {
  0% { opacity: 1; transform: scale(1); }
  100% { opacity: 0.7; transform: scale(1.05); }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1100px;
}

.hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.12;
  margin-bottom: 1.75rem;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.3);
}

.hero h1 .highlight {
  position: relative;
  display: inline-block;
  color: var(--gold);
}

.hero h1 .highlight::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: -4px;
  right: -4px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  animation: underline-draw 1s ease-out 0.5s both;
  transition: background 0.3s ease;
}

.hero h1 .highlight.flipped::after {
  background: #e74c3c;
}

@keyframes underline-draw {
  from { transform: scaleX(0); transform-origin: left; }
  to { transform: scaleX(1); transform-origin: left; }
}

.hero .subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  letter-spacing: 0.01em;
  line-height: 1.75;
}

/* --- Section Shared --- */
.section {
  padding: 7rem 0;
  position: relative;
}

/* Alternating warm tint on even sections */
.section:nth-of-type(even) {
  background: var(--bg-warm);
}

.section-divider {
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto 2.75rem;
  border-radius: 2px;
}

.section-label {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  opacity: 0.85;
}

.section h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.18;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
  position: relative;
}

.section p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 680px;
  line-height: 1.75;
}

/* --- Glass Card with gradient border --- */
.glass-card {
  position: relative;
  backdrop-filter: blur(var(--blur));
  -webkit-backdrop-filter: blur(var(--blur));
  background: var(--bg-card);
  border-radius: 14px;
  padding: 2.75rem;
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.glass-card:hover {
  box-shadow: inset 0 0 40px rgba(245, 197, 24, 0.02);
}

.glass-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 14px;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(245, 197, 24, 0.12) 0%,
    rgba(245, 197, 24, 0.01) 40%,
    rgba(245, 197, 24, 0.01) 60%,
    rgba(245, 197, 24, 0.08) 100%
  );
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
  pointer-events: none;
}

/* --- History Section --- */
.history {
  text-align: center;
}

.history .glass-card {
  max-width: 780px;
  margin: 0 auto;
}

.history .year {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(3.5rem, 8vw, 5rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.75rem;
  opacity: 0.8;
  text-shadow: 0 0 50px rgba(245, 197, 24, 0.15);
}

/* --- Golden Age Section --- */
.golden-age {
  text-align: center;
}

.golden-age .glass-card {
  max-width: 780px;
  margin: 0 auto;
}

/* --- Reasons Grid --- */
.reasons {
  text-align: center;
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
  perspective: 1000px;
}

.reason-card {
  text-align: left;
  transform: rotate(var(--card-tilt, 0deg));
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  transform-style: preserve-3d;
  will-change: transform;
}

/* Deterministic "random" tilts */
.reason-card:nth-child(1)  { --card-tilt: -1.2deg; }
.reason-card:nth-child(2)  { --card-tilt:  0.8deg; }
.reason-card:nth-child(3)  { --card-tilt: -0.5deg; }
.reason-card:nth-child(4)  { --card-tilt:  1.4deg; }
.reason-card:nth-child(5)  { --card-tilt: -1.0deg; }
.reason-card:nth-child(6)  { --card-tilt:  0.3deg; }
.reason-card:nth-child(7)  { --card-tilt: -1.5deg; }
.reason-card:nth-child(8)  { --card-tilt:  1.1deg; }
.reason-card:nth-child(9)  { --card-tilt: -0.7deg; }
.reason-card:nth-child(10) { --card-tilt:  1.3deg; }
.reason-card:nth-child(11) { --card-tilt: -0.4deg; }

/* Ensure tilt shows after fade-in animation */
.reason-card.fade-in.visible {
  transform: rotate(var(--card-tilt, 0deg));
}

.reason-card:hover,
.reason-card.fade-in.visible:hover {
  transform: rotate(0deg) translateY(-5px);
  border-color: var(--border-glow);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25), inset 0 0 30px rgba(245, 197, 24, 0.02);
}

.reason-card .reason-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 0.6rem;
}

.reason-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--text-primary);
  letter-spacing: -0.005em;
}

.reason-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* --- Testimonials Marquee --- */
.testimonials {
  padding: 6rem 0;
  overflow: hidden;
  position: relative;
}

.testimonials::before,
.testimonials::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 150px;
  z-index: 2;
  pointer-events: none;
}

.testimonials::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-warm), transparent);
}

.testimonials::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-warm), transparent);
}

.marquee {
  display: flex;
  gap: 1.75rem;
  animation: scroll-left 38s linear infinite;
  width: max-content;
}

.marquee:hover {
  animation-play-state: paused;
}

.testimonial-card {
  flex-shrink: 0;
  width: 400px;
  padding: 2rem 2rem 1.75rem;
  backdrop-filter: blur(var(--blur));
  -webkit-backdrop-filter: blur(var(--blur));
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  transition: border-color var(--transition);
  position: relative;
}

.testimonial-card:hover {
  border-color: var(--border-glow);
}

/* Decorative quote mark */
.testimonial-card::after {
  content: '\201C';
  position: absolute;
  top: 0.75rem;
  right: 1.25rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 4rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.08;
  pointer-events: none;
}

.testimonial-card blockquote {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.testimonial-card .attribution {
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

@keyframes scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* --- CTA Sections --- */
.cta-section {
  text-align: center;
  padding: 6rem 0;
}

.cta-section h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.cta-section p {
  margin: 0 auto 2rem;
  text-align: center;
}

.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  font-family: 'DM Sans', sans-serif;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
}

.btn-primary:hover {
  background: var(--gold-light);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(245, 197, 24, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}

.btn-outline:hover {
  background: rgba(245, 197, 24, 0.06);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(245, 197, 24, 0.12);
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   NPS POPUP SURVEY
   ============================================ */
.nps-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 5000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  padding: 1rem;
}

.nps-popup-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.nps-popup {
  background: linear-gradient(160deg, #1c1c30 0%, #0d0d17 100%);
  border: 1px solid var(--border-glow);
  border-radius: 18px;
  padding: 2.5rem 2.5rem 2rem;
  max-width: 560px;
  width: 100%;
  position: relative;
  transform: translateY(20px) scale(0.96);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.5),
    0 0 80px rgba(245, 197, 24, 0.04);
}

.nps-popup-overlay.active .nps-popup {
  transform: translateY(0) scale(1);
}

.nps-popup-close {
  position: absolute;
  top: 0.85rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.25rem;
  cursor: pointer;
  transition: color var(--transition), transform var(--transition);
  padding: 0.5rem;
  line-height: 1;
  opacity: 0.6;
  touch-action: manipulation;
}

.nps-popup-close:hover {
  color: var(--text-primary);
  opacity: 1;
  transform: rotate(90deg);
}

.nps-popup-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  opacity: 0.7;
}

.nps-popup h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1.75rem;
  line-height: 1.35;
  color: var(--text-primary);
  letter-spacing: -0.005em;
}

.nps-scale {
  display: flex;
  gap: 0;
  margin-bottom: 0.5rem;
  justify-content: center;
  max-width: 100%;
}

.nps-scale-btn {
  width: 44px;
  min-width: 0;
  flex: 1 1 0;
  height: 44px;
  border: none;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  font-size: 0.9rem;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.nps-scale-btn:first-child {
  border-radius: 8px 0 0 8px;
}

.nps-scale-btn:last-child {
  border-radius: 0 8px 8px 0;
}

.nps-scale-btn + .nps-scale-btn {
  border-left: 1px solid rgba(255, 255, 255, 0.04);
}

/* NPS color coding on hover — only on pointer devices to prevent double-tap on mobile */
@media (hover: hover) {
  .nps-scale-btn[data-score="0"]:hover,
  .nps-scale-btn[data-score="1"]:hover,
  .nps-scale-btn[data-score="2"]:hover,
  .nps-scale-btn[data-score="3"]:hover,
  .nps-scale-btn[data-score="4"]:hover,
  .nps-scale-btn[data-score="5"]:hover,
  .nps-scale-btn[data-score="6"]:hover {
    background: var(--red-nps);
    color: #fff;
    transform: scale(1.12);
    z-index: 1;
    border-radius: 6px;
    box-shadow: 0 4px 18px rgba(231, 76, 60, 0.4);
  }

  .nps-scale-btn[data-score="7"]:hover,
  .nps-scale-btn[data-score="8"]:hover {
    background: var(--amber-nps);
    color: #fff;
    transform: scale(1.12);
    z-index: 1;
    border-radius: 6px;
    box-shadow: 0 4px 18px rgba(243, 156, 18, 0.4);
  }

  .nps-scale-btn[data-score="9"]:hover,
  .nps-scale-btn[data-score="10"]:hover {
    background: var(--green-nps);
    color: #fff;
    transform: scale(1.12);
    z-index: 1;
    border-radius: 6px;
    box-shadow: 0 4px 18px rgba(39, 174, 96, 0.4);
  }
}

.nps-scale-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.6rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0 0.25rem;
  margin-bottom: 1.5rem;
  opacity: 0.7;
  gap: 1rem;
}

.nps-popup-response {
  text-align: center;
  padding: 1.25rem 0 0.5rem;
  animation: response-appear 0.4s ease-out;
}

.nps-popup-response .response-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
  line-height: 1.55;
}

.nps-popup-response .response-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  opacity: 0.6;
  line-height: 1.5;
}

@keyframes response-appear {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   WOULD YOU RECOMMEND MINI-GAME
   ============================================ */
.mini-game {
  text-align: center;
  overflow: hidden;
}

.mini-game-container {
  max-width: 680px;
  margin: 0 auto;
}

.game-card {
  padding: 3rem;
  text-align: center;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Pulsing border when awaiting input */
.game-card.awaiting {
  animation: card-pulse 2.5s ease-in-out infinite;
}

@keyframes card-pulse {
  0%, 100% { border-color: var(--border-subtle); }
  50% { border-color: rgba(245, 197, 24, 0.2); }
}

.game-progress {
  display: flex;
  gap: 6px;
  margin-bottom: 2rem;
  justify-content: center;
}

.game-progress-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  transition: all var(--transition);
}

.game-progress-dot.completed {
  background: var(--gold);
  box-shadow: 0 0 6px rgba(245, 197, 24, 0.35);
}

.game-progress-dot.active {
  background: var(--gold);
  transform: scale(1.35);
  box-shadow: 0 0 10px rgba(245, 197, 24, 0.45);
}

.game-question {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 2rem;
  color: var(--text-primary);
  animation: question-enter 0.45s ease-out;
  max-width: 530px;
  letter-spacing: -0.005em;
}

@keyframes question-enter {
  from { opacity: 0; transform: translateX(25px); }
  to { opacity: 1; transform: translateX(0); }
}

.game-scale {
  display: flex;
  gap: 0;
  margin-bottom: 0.5rem;
  justify-content: center;
  max-width: 100%;
}

.game-scale-btn {
  width: 44px;
  min-width: 0;
  flex: 1 1 0;
  height: 44px;
  border: none;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  font-size: 0.9rem;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  transition: all 0.2s ease;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.game-scale-btn:first-child {
  border-radius: 8px 0 0 8px;
}

.game-scale-btn:last-child {
  border-radius: 0 8px 8px 0;
}

.game-scale-btn + .game-scale-btn {
  border-left: 1px solid rgba(255, 255, 255, 0.04);
}

@media (hover: hover) {
  .game-scale-btn:hover {
    background: var(--gold);
    color: var(--navy);
    transform: scale(1.12);
    z-index: 1;
    border-radius: 6px;
    box-shadow: 0 4px 18px rgba(245, 197, 24, 0.4);
  }
}

.game-scale-labels {
  display: flex;
  justify-content: space-between;
  width: 484px;
  max-width: 100%;
  font-size: 0.6rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.7;
  gap: 1rem;
}

.game-response {
  margin-top: 1.5rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1rem;
  font-style: italic;
  color: var(--gold);
  animation: response-appear 0.4s ease-out;
  max-width: 480px;
  line-height: 1.55;
}

/* Game completion */
.game-complete {
  text-align: center;
  animation: response-appear 0.6s ease-out;
}

.game-complete .score-display {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 5.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin: 0.75rem 0;
  text-shadow: 0 0 50px rgba(245, 197, 24, 0.25);
}

.game-complete .score-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.65;
  margin-bottom: 0.5rem;
}

.game-complete p {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 420px;
  margin: 0.75rem auto 0;
  text-align: center;
  line-height: 1.7;
}

/* ============================================
   DETRACTOR REHABILITATION CENTER
   ============================================ */
.rehab {
  text-align: center;
}

.rehab-container {
  max-width: 780px;
  margin: 0 auto;
}

.rehab-intro {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin: 0 auto 2.5rem;
  max-width: 600px;
  text-align: center;
  line-height: 1.75;
}

.rehab-card {
  text-align: left;
  padding: 0;
  overflow: hidden;
}

.rehab-card-header {
  background: linear-gradient(135deg, rgba(231, 76, 60, 0.1) 0%, rgba(245, 197, 24, 0.04) 100%);
  padding: 1.5rem 2.25rem;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.rehab-card-header .rehab-icon {
  font-size: 1.35rem;
}

.rehab-card-header h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red-nps);
  opacity: 0.9;
}

.rehab-steps {
  padding: 1.5rem 2.25rem;
  list-style: none;
  counter-reset: step;
}

.rehab-steps li {
  counter-increment: step;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.025);
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.55;
  transition: color var(--transition);
}

.rehab-steps li:last-child {
  border-bottom: none;
}

.rehab-steps li:hover {
  color: var(--text-primary);
}

.rehab-steps li::before {
  content: counter(step, decimal-leading-zero);
  font-family: 'JetBrains Mono', 'SF Mono', 'Fira Code', monospace;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--red-nps);
  opacity: 0.5;
  min-width: 26px;
  padding-top: 0.2rem;
  letter-spacing: 0.05em;
}

.rehab-cta {
  padding: 1.75rem 2.25rem;
  border-top: 1px solid var(--border-subtle);
  text-align: center;
}

.btn-rehab {
  background: linear-gradient(135deg, var(--red-nps), var(--red-nps-soft));
  color: #fff;
  padding: 0.85rem 2rem;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: 0.01em;
}

.btn-rehab:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(231, 76, 60, 0.3);
  background: linear-gradient(135deg, #e74c3c, #e74c3c);
}

/* Rehab success modal */
.rehab-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 5000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  padding: 1rem;
}

.rehab-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.rehab-modal {
  background: linear-gradient(160deg, #1c1c30 0%, #0d0d17 100%);
  border: 1px solid rgba(39, 174, 96, 0.25);
  border-radius: 18px;
  padding: 2.75rem;
  max-width: 460px;
  width: 100%;
  text-align: center;
  transform: translateY(20px) scale(0.96);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.5);
}

.rehab-modal-overlay.active .rehab-modal {
  transform: translateY(0) scale(1);
}

.rehab-modal .modal-emoji {
  font-size: 2.75rem;
  margin-bottom: 0.75rem;
}

.rehab-modal h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  color: var(--green-nps);
  letter-spacing: -0.01em;
}

.rehab-modal p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.rehab-modal .score-adjusted {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--green-nps);
  text-shadow: 0 0 35px rgba(39, 174, 96, 0.25);
}

.rehab-modal-close {
  margin-top: 1.25rem;
  background: none;
  border: 1px solid rgba(39, 174, 96, 0.25);
  color: var(--green-nps);
  padding: 0.55rem 1.5rem;
  border-radius: 6px;
  font-size: 0.85rem;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  transition: all var(--transition);
}

.rehab-modal-close:hover {
  background: rgba(39, 174, 96, 0.08);
}

/* --- SVG Line Art Decorations --- */
.svg-decoration {
  position: absolute;
  pointer-events: none;
  color: var(--gold);
  opacity: 0.05;
  z-index: 0;
}

.svg-trophy {
  width: 160px;
  right: 5%;
  top: 12%;
}

.svg-chart {
  width: 220px;
  left: -1%;
  top: 10%;
}

.svg-clipboard {
  width: 130px;
  right: 3%;
  bottom: 12%;
}

/* --- Glow Phrases --- */
.glow-phrase {
  transition: text-shadow 0.8s ease-out;
}

.glow-phrase.glowing {
  animation: phrase-glow 2s ease-in-out forwards;
}

@keyframes phrase-glow {
  0%   { text-shadow: none; }
  30%  { text-shadow: 0 0 12px rgba(245, 197, 24, 0.6), 0 0 24px rgba(245, 197, 24, 0.3); }
  60%  { text-shadow: 0 0 8px rgba(245, 197, 24, 0.3), 0 0 16px rgba(245, 197, 24, 0.15); }
  100% { text-shadow: 0 0 6px rgba(245, 197, 24, 0.2), 0 0 12px rgba(245, 197, 24, 0.08); }
}

/* ============================================
   COOKIE BANNER PARODY
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 1rem;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-banner-inner {
  max-width: 900px;
  margin: 0 auto;
  background: linear-gradient(160deg, #1c1c30 0%, #0d0d17 100%);
  border: 1px solid var(--border-glow);
  border-radius: 14px;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(var(--blur));
  -webkit-backdrop-filter: blur(var(--blur));
}

.cookie-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
  flex: 1;
}

.cookie-buttons {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cookie-accept,
.cookie-manage {
  touch-action: manipulation;
  white-space: nowrap;
  font-size: 0.85rem;
  padding: 0.65rem 1.25rem;
}

/* ============================================
   TOAST NOTIFICATION
   ============================================ */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: linear-gradient(160deg, #1c1c30 0%, #0d0d17 100%);
  border: 1px solid var(--border-glow);
  border-radius: 10px;
  padding: 0.85rem 1.5rem;
  font-size: 0.88rem;
  color: var(--text-primary);
  z-index: 5001;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  text-align: center;
  max-width: 90vw;
}

.toast.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

/* ============================================
   NPS EVANGELIST PLEDGE
   ============================================ */
.evangelist-section {
  text-align: center;
}

.evangelist-container {
  max-width: 680px;
  margin: 0 auto;
}

.evangelist-card {
  padding: 2.75rem;
}

.pledge-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--text-primary);
  margin-bottom: 2rem;
  text-align: center;
  opacity: 0.9;
}

.pledge-form {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.pledge-input,
.testimony-input,
.testimony-textarea {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  font-family: 'DM Sans', sans-serif;
  color: var(--text-primary);
  transition: border-color var(--transition), box-shadow var(--transition);
  touch-action: manipulation;
}

.pledge-input:focus,
.testimony-input:focus,
.testimony-textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(245, 197, 24, 0.1);
}

.pledge-input::placeholder,
.testimony-input::placeholder,
.testimony-textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.6;
}

.pledge-input {
  flex: 1;
  min-width: 200px;
  max-width: 320px;
}

.pledge-btn {
  touch-action: manipulation;
}

/* Certificate */
.certificate {
  text-align: center;
  animation: response-appear 0.6s ease-out;
}

.certificate-card {
  border: 2px solid var(--gold);
  border-radius: 14px;
  padding: 2.5rem 2rem;
  position: relative;
  background: linear-gradient(160deg, rgba(245, 197, 24, 0.04) 0%, rgba(245, 197, 24, 0.01) 100%);
}

.certificate-card::before {
  content: '';
  position: absolute;
  inset: 6px;
  border: 1px solid rgba(245, 197, 24, 0.15);
  border-radius: 10px;
  pointer-events: none;
}

.certificate-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
  margin-bottom: 0.75rem;
}

.certificate-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.certificate-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  font-style: italic;
}

.certificate-class {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.certificate-motto {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1rem;
  font-style: italic;
  color: var(--gold);
  opacity: 0.7;
}

.certificate-share {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1.75rem;
  flex-wrap: wrap;
}

.certificate-share .btn {
  touch-action: manipulation;
  font-size: 0.85rem;
  padding: 0.65rem 1.25rem;
}

/* ============================================
   SOCIAL SHARE SECTION
   ============================================ */
.share-section {
  text-align: center;
}

.share-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  max-width: 960px;
  margin: 0 auto;
}

.share-card {
  text-align: left;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
}

.share-card-platform {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.share-card-platform span {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.share-card-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex: 1;
  font-style: italic;
}

.share-btn {
  align-self: flex-start;
  touch-action: manipulation;
  font-size: 0.82rem;
  padding: 0.6rem 1.2rem;
}

/* ============================================
   PROMOTER / DETRACTOR MODE TOGGLE
   ============================================ */
.mode-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 0.25rem;
  padding-left: 1.25rem;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.mode-label {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
  white-space: nowrap;
}

.mode-label.detractor {
  color: var(--red-nps);
}

.toggle-switch {
  width: 36px;
  height: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  position: relative;
  cursor: pointer;
  transition: all var(--transition);
  padding: 0;
  touch-action: manipulation;
}

.toggle-knob {
  width: 14px;
  height: 14px;
  background: var(--gold);
  border-radius: 50%;
  position: absolute;
  top: 2px;
  left: 2px;
  transition: all var(--transition);
}

.toggle-switch.active {
  background: rgba(231, 76, 60, 0.2);
  border-color: rgba(231, 76, 60, 0.4);
}

.toggle-switch.active .toggle-knob {
  left: 18px;
  background: var(--red-nps);
}

/* Detractor mode overlay */
.detractor-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13, 13, 23, 0.96);
  z-index: 8000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.detractor-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.detractor-message {
  text-align: center;
  padding: 2rem;
}

.detractor-message h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.5rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.detractor-message p {
  font-size: 1.2rem;
  color: var(--text-muted);
}

/* Glitch effect */
@keyframes glitch {
  0% { transform: translate(0); filter: hue-rotate(0deg); }
  10% { transform: translate(-3px, 2px) skew(1deg); filter: hue-rotate(90deg); }
  20% { transform: translate(3px, -1px) skew(-0.5deg); filter: hue-rotate(180deg); }
  30% { transform: translate(-1px, 3px); filter: hue-rotate(270deg); }
  40% { transform: translate(2px, -2px) skew(0.5deg); filter: hue-rotate(360deg); }
  50% { transform: translate(0); filter: hue-rotate(0deg); }
  100% { transform: translate(0); filter: hue-rotate(0deg); }
}

body.glitching {
  animation: glitch 0.5s ease-out;
}

/* ============================================
   TESTIMONIAL SUBMISSION FORM
   ============================================ */
.testimony-submit {
  text-align: center;
}

.testimony-form-container {
  max-width: 560px;
  margin: 0 auto;
}

.testimony-form-card {
  padding: 2rem;
}

.testimony-textarea {
  width: 100%;
  min-height: 100px;
  resize: vertical;
  margin-bottom: 0.25rem;
}

.testimony-counter {
  text-align: right;
  font-size: 0.7rem;
  color: var(--text-muted);
  opacity: 0.5;
  margin-bottom: 0.75rem;
}

.testimony-input {
  width: 100%;
  margin-bottom: 1rem;
}

.testimony-submit-btn {
  touch-action: manipulation;
  width: 100%;
}

.testimony-success {
  text-align: center;
  animation: response-appear 0.5s ease-out;
  padding: 1rem 0;
}

.testimony-success p {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  line-height: 1.55;
}

.testimony-success .note {
  font-size: 0.8rem;
  color: var(--text-muted);
  opacity: 0.5;
  font-style: normal;
  font-family: 'DM Sans', sans-serif;
}

/* --- Disclaimer --- */
.disclaimer {
  text-align: center;
  padding: 3rem 0 2rem;
  border-top: 1px solid var(--border-subtle);
}

.disclaimer p {
  font-size: 0.8rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.65;
  opacity: 0.7;
}

.disclaimer .wink {
  font-size: 1.1rem;
  margin-top: 0.4rem;
  display: block;
}

/* --- Footer --- */
.footer {
  position: relative;
  padding: 3.5rem 0 3rem;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-subtle), transparent);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-col {
  font-size: 0.85rem;
  color: var(--text-muted);
  opacity: 0.8;
}

.footer-col a {
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--gold);
}

.footer .tagline {
  font-style: italic;
  color: var(--gold);
  opacity: 0.65;
}

/* --- Scroll Animations --- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Staggered children */
.fade-in-stagger .fade-in:nth-child(1) { transition-delay: 0.04s; }
.fade-in-stagger .fade-in:nth-child(2) { transition-delay: 0.08s; }
.fade-in-stagger .fade-in:nth-child(3) { transition-delay: 0.12s; }
.fade-in-stagger .fade-in:nth-child(4) { transition-delay: 0.16s; }
.fade-in-stagger .fade-in:nth-child(5) { transition-delay: 0.2s; }
.fade-in-stagger .fade-in:nth-child(6) { transition-delay: 0.24s; }
.fade-in-stagger .fade-in:nth-child(7) { transition-delay: 0.28s; }
.fade-in-stagger .fade-in:nth-child(8) { transition-delay: 0.32s; }
.fade-in-stagger .fade-in:nth-child(9) { transition-delay: 0.36s; }
.fade-in-stagger .fade-in:nth-child(10) { transition-delay: 0.4s; }
.fade-in-stagger .fade-in:nth-child(11) { transition-delay: 0.44s; }

/* --- Easter Egg Overlay --- */
.easter-egg-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13, 13, 23, 0.96);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.easter-egg-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.easter-egg-content {
  text-align: center;
  max-width: 480px;
  padding: 2rem;
}

.easter-egg-content h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.25rem;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.easter-egg-content p {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.easter-egg-content .close-egg {
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--gold);
  background: none;
  border: 1px solid var(--gold);
  padding: 0.55rem 1.5rem;
  border-radius: 6px;
  font-family: 'DM Sans', sans-serif;
  transition: all var(--transition);
}

.easter-egg-content .close-egg:hover {
  background: rgba(245, 197, 24, 0.08);
}

/* Confetti */
.confetti-piece {
  position: fixed;
  width: 10px;
  height: 10px;
  top: -10px;
  z-index: 10000;
  pointer-events: none;
}

/* --- Nav close button (mobile) --- */
.nav-close {
  display: none;
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 2rem;
  cursor: pointer;
  z-index: 301;
}

.nav.open .nav-close {
  display: block;
}

/* --- Mobile --- */
@media (max-width: 768px) {
  :root {
    --header-height: 52px;
  }

  .svg-decoration {
    display: none;
  }

  .nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(13, 13, 23, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.75rem;
    z-index: 200;
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    font-size: 1.2rem;
  }

  .nav a::after {
    display: none;
  }

  .nav-social {
    border-left: none;
    padding-left: 0;
    margin-left: 0;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .menu-toggle {
    display: block;
    z-index: 300;
  }

  .hero {
    min-height: 100svh;
    padding-top: 9rem;
    padding-bottom: 3rem;
  }

  .hero h1 {
    font-size: clamp(1.8rem, 8vw, 2.8rem);
  }

  .hero h1 br {
    display: none;
  }

  .hero .subtitle br {
    display: none;
  }

  .section {
    padding: 3.5rem 0;
  }

  .glass-card {
    padding: 1.75rem 1.5rem;
  }

  .reasons-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    width: 300px;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .header-inner {
    padding: 0 1.25rem;
  }

  /* NPS popup mobile */
  .nps-popup {
    padding: 2rem 1.5rem 1.5rem;
  }

  .nps-scale-btn,
  .game-scale-btn {
    width: 36px;
    height: 40px;
    font-size: 0.8rem;
  }

  .game-scale-labels {
    width: auto;
  }

  /* Rehab mobile */
  .rehab-card-header {
    padding: 1.25rem 1.5rem;
  }

  .rehab-steps {
    padding: 1.25rem 1.5rem;
  }

  .rehab-cta {
    padding: 1.25rem 1.5rem;
  }

  .rehab-steps li {
    font-size: 0.88rem;
    gap: 1rem;
    padding: 0.75rem 0;
  }

  /* Game mobile */
  .game-card {
    padding: 2rem 1.5rem;
    min-height: 280px;
  }

  .game-question {
    font-size: 1.1rem;
  }

  /* Cookie banner mobile */
  .cookie-banner-inner {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
  }

  .cookie-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cookie-accept,
  .cookie-manage {
    width: 100%;
    padding: 0.75rem 1rem;
  }

  /* Mode toggle — move into mobile nav */
  .mode-toggle {
    border-left: none;
    padding-left: 0;
    margin-left: 0;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  /* Pledge mobile */
  .pledge-text {
    font-size: 1rem;
  }

  .pledge-form {
    flex-direction: column;
  }

  .pledge-input {
    max-width: none;
    width: 100%;
  }

  .certificate-title {
    font-size: 1.3rem;
  }

  .certificate-name {
    font-size: 1.4rem;
  }

  /* Share grid mobile */
  .share-grid {
    grid-template-columns: 1fr;
  }

  /* Testimony mobile */
  .testimony-form-card {
    padding: 1.5rem;
  }
}

@media (max-width: 420px) {
  .nps-scale-btn,
  .game-scale-btn {
    width: 30px;
    height: 36px;
    font-size: 0.75rem;
  }

  .nps-popup h3 {
    font-size: 1.1rem;
  }
}
