/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* PRIMARY */
  --fugu-black: #0a0a0a;
  --fugu-dark: #111111;
  --fugu-card: #1a1a1a;
  --fugu-border: #2a2a2a;

  /* ACCENT — matches logo teal */
  --fugu-gold: #22b8c4;
  --fugu-gold-light: #3dd0dc;
  --fugu-gold-dim: #1a8a93;

  /* TEXT */
  --fugu-white: #ffffff;
  --fugu-gray-100: #e5e5e5;
  --fugu-gray-400: #9ca3af;
  --fugu-gray-600: #4b5563;

  /* SEMANTIC */
  --fugu-green: #22c55e;
  --fugu-red: #ef4444;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--fugu-black);
  color: var(--fugu-white);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

a {
  text-decoration: none;
  color: inherit;
}

/* ===== UTILITIES ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

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

.container--md {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.text-center {
  text-align: center;
}

.text-gold {
  color: var(--fugu-gold);
}

.text-gray {
  color: var(--fugu-gray-400);
}

.text-gray-100 {
  color: var(--fugu-gray-100);
}

.font-mono {
  font-family: 'JetBrains Mono', monospace;
}

/* ===== ANIMATIONS ===== */
@keyframes pulseGold {
  0%, 100% { box-shadow: 0 0 20px rgba(34, 184, 196, 0.2); }
  50% { box-shadow: 0 0 40px rgba(34, 184, 196, 0.5); }
}

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

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

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.animate-on-scroll.visible .stagger-1 { transition-delay: 0.1s; }
.animate-on-scroll.visible .stagger-2 { transition-delay: 0.2s; }
.animate-on-scroll.visible .stagger-3 { transition-delay: 0.3s; }
.animate-on-scroll.visible .stagger-4 { transition-delay: 0.4s; }

/* ===== CTA BUTTONS ===== */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-family: 'Inter', sans-serif;
}

.cta-btn--primary {
  background-color: var(--fugu-gold);
  color: #000;
  animation: pulseGold 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.cta-btn--primary:hover {
  background-color: var(--fugu-gold-light);
}

.cta-btn--secondary {
  background: transparent;
  color: var(--fugu-gold);
  border: 2px solid var(--fugu-gold);
}

.cta-btn--secondary:hover {
  background-color: var(--fugu-gold);
  color: #000;
}

.cta-btn--sm { height: 40px; padding: 0 20px; font-size: 14px; }
.cta-btn--md { height: 48px; padding: 0 24px; font-size: 16px; }
.cta-btn--lg { height: 56px; padding: 0 32px; font-size: 18px; }

/* ===== GOLD DIVIDER ===== */
.gold-divider {
  border: none;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--fugu-gold), transparent);
}

/* ===== SECTION SPACING ===== */
.section {
  padding: 80px 20px;
  position: relative;
  z-index: 2;
}

.section--dark {
  background-color: var(--fugu-dark);
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 18px;
  color: var(--fugu-gray-100);
  max-width: 640px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top center, rgba(34, 184, 196, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero__logo {
  width: 180px;
  margin-bottom: 32px;
  animation: fadeInUp 0.6s ease forwards;
}

.hero__headline {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease 0.2s both;
}

.hero__sub {
  font-size: 18px;
  color: var(--fugu-gray-100);
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.7;
  animation: fadeInUp 0.6s ease 0.4s both;
}

.hero__cta-wrap {
  margin-bottom: 16px;
  animation: fadeInUp 0.6s ease 0.6s both;
}

.hero__note {
  font-size: 14px;
  color: var(--fugu-gray-400);
  margin-bottom: 48px;
  animation: fadeIn 0.6s ease 0.8s both;
}

.hero__image-wrap {
  position: relative;
  max-width: 768px;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  border: 8px solid #1c1c1c;
  background: #1c1c1c;
  box-shadow:
    0 0 0 1.5px rgba(34, 184, 196, 0.4),
    0 0 15px rgba(34, 184, 196, 0.15),
    0 0 40px rgba(34, 184, 196, 0.07),
    0 12px 40px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 0.8s ease 0.6s both;
}

.hero__image-wrap img {
  border-radius: 10px;
}

.hero__image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--fugu-black) 0%, transparent 30%);
  box-shadow:
    inset 0 0 0 2px rgba(34, 184, 196, 0.4),
    inset 0 0 12px rgba(34, 184, 196, 0.1),
    inset 0 0 50px 15px rgba(10, 10, 10, 0.5);
  border-radius: 10px;
  pointer-events: none;
  z-index: 2;
}

.hero__caption {
  font-size: 12px;
  color: var(--fugu-gray-400);
  margin-top: 12px;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-top: 40px;
  animation: fadeIn 0.6s ease 1s both;
}

/* ===== TRUST BADGE ===== */
.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.trust-badge__img {
  width: 96px;
  height: 48px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.3s ease;
}

.trust-badge:hover .trust-badge__img {
  filter: grayscale(0%);
  opacity: 1;
}

.trust-badge__label {
  font-size: 12px;
  color: var(--fugu-gray-600);
  transition: color 0.3s ease;
}

.trust-badge:hover .trust-badge__label {
  color: var(--fugu-gray-400);
}

/* ===== STAT CARDS (TRUST BAR) ===== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.stat-card {
  background: var(--fugu-card);
  border: 1px solid var(--fugu-border);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
}

.stat-card__value {
  font-size: 28px;
  font-weight: 700;
  font-family: 'JetBrains Mono', monospace;
  color: var(--fugu-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.stat-card__dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.stat-card__dot--green { background: var(--fugu-green); }
.stat-card__dot--red { background: var(--fugu-red); }

.stat-card__label {
  margin-top: 8px;
  font-size: 13px;
  color: var(--fugu-gray-400);
}

/* ===== HOW IT WORKS ===== */
.steps {
  position: relative;
}

.step {
  position: relative;
  padding-left: 64px;
  padding-bottom: 48px;
}

.step:last-child {
  padding-bottom: 0;
}

/* Connecting line */
.step::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 48px;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--fugu-gold), var(--fugu-border));
}

.step:last-child::before {
  display: none;
}

.step__number {
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--fugu-gold);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
}

.step__icon {
  color: var(--fugu-gold);
  margin-bottom: 8px;
}

.step__title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.step__body {
  color: var(--fugu-gray-100);
  margin-bottom: 16px;
  line-height: 1.7;
}

.step__note {
  font-size: 12px;
  color: var(--fugu-gray-400);
  margin-top: 8px;
}

.step--locked {
  opacity: 0.6;
}

.step__lock-note {
  font-size: 12px;
  color: var(--fugu-gold-dim);
  font-style: italic;
  margin-bottom: 12px;
}

/* ===== PERFORMANCE ===== */
.perf-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

.perf-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 8px solid #1c1c1c;
  background: #1c1c1c;
  box-shadow:
    0 0 0 1.5px rgba(34, 184, 196, 0.4),
    0 0 15px rgba(34, 184, 196, 0.15),
    0 0 40px rgba(34, 184, 196, 0.07),
    0 12px 40px rgba(0, 0, 0, 0.5);
  margin-bottom: 8px;
}

.perf-image img {
  border-radius: 10px;
}

.perf-image::after {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow:
    inset 0 0 0 2px rgba(34, 184, 196, 0.4),
    inset 0 0 12px rgba(34, 184, 196, 0.1),
    inset 0 0 50px 15px rgba(10, 10, 10, 0.5);
  pointer-events: none;
  z-index: 1;
  border-radius: 10px;
}

.perf-caption {
  font-size: 12px;
  color: var(--fugu-gray-400);
  text-align: center;
  margin-bottom: 24px;
}

.verify-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: var(--fugu-card);
  border: 1px solid var(--fugu-border);
  border-radius: 12px;
  transition: border-color 0.3s ease;
  margin-bottom: 12px;
}

.verify-card:hover {
  border-color: var(--fugu-gold-dim);
}

.verify-card__img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  flex-shrink: 0;
}

.verify-card__icon {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--fugu-dark);
  border-radius: 8px;
  color: var(--fugu-gold);
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 14px;
}

.verify-card__name {
  font-weight: 600;
  transition: color 0.3s ease;
}

.verify-card:hover .verify-card__name {
  color: var(--fugu-gold);
}

.verify-card__desc {
  font-size: 14px;
  color: var(--fugu-gray-400);
}

.quote-block {
  border-left: 4px solid var(--fugu-gold);
  padding: 16px 24px;
  margin-top: 32px;
}

.quote-block__text {
  color: var(--fugu-gray-100);
  font-style: italic;
  line-height: 1.7;
}

.quote-block__cite {
  color: var(--fugu-gold);
  font-size: 14px;
  margin-top: 8px;
  font-style: normal;
}

/* ===== PHILOSOPHY PILLARS ===== */
.pillars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.pillar-card {
  background: var(--fugu-card);
  border: 1px solid var(--fugu-border);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
}

.pillar-card__icon {
  color: var(--fugu-gold);
  margin-bottom: 16px;
}

.pillar-card__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.pillar-card__text {
  color: var(--fugu-gray-100);
  line-height: 1.7;
  font-size: 15px;
}

/* ===== SOCIAL BAR ===== */
.social-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
  animation: fadeIn 0.6s ease 1.2s both;
}

.social-bar__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--fugu-border);
  color: var(--fugu-gray-400);
  transition: all 0.3s ease;
}

.social-bar__link:hover {
  border-color: var(--fugu-gold);
  color: var(--fugu-gold);
}

.social-bar__icon {
  width: 20px;
  height: 20px;
}

/* ===== FOOTER SOCIAL ===== */
.compliance-footer__social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
}

.compliance-footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--fugu-border);
  color: var(--fugu-gray-400);
  transition: all 0.3s ease;
}

.compliance-footer__social a:hover {
  border-color: var(--fugu-gold);
  color: var(--fugu-gold);
}

/* ===== STRATEGIES ===== */
.strategy-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.strategy-card {
  position: relative;
  background: #1c1c1c;
  border: 8px solid #1c1c1c;
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 0 0 1.5px rgba(34, 184, 196, 0.4),
    0 0 15px rgba(34, 184, 196, 0.15),
    0 0 40px rgba(34, 184, 196, 0.07),
    0 12px 40px rgba(0, 0, 0, 0.5);
}

.strategy-card__image {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
}

.strategy-card__body {
  position: relative;
  z-index: 2;
}

.strategy-card::before {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow:
    inset 0 0 0 2px rgba(34, 184, 196, 0.4),
    inset 0 0 12px rgba(34, 184, 196, 0.1),
    inset 0 0 50px 15px rgba(10, 10, 10, 0.4);
  pointer-events: none;
  z-index: 1;
  border-radius: 10px;
}

.strategy-card__body {
  padding: 24px;
}

.strategy-card__tag {
  display: inline-block;
  font-size: 12px;
  font-family: 'JetBrains Mono', monospace;
  color: var(--fugu-gold);
  background: rgba(34, 184, 196, 0.1);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.strategy-card__title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.strategy-card__desc {
  color: var(--fugu-gray-100);
  margin-bottom: 16px;
  line-height: 1.7;
}

/* ===== WHY FUGU ===== */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.feature-card {
  background: var(--fugu-card);
  border: 1px solid var(--fugu-border);
  border-radius: 12px;
  padding: 24px;
}

.feature-card__icon {
  color: var(--fugu-gold);
  margin-bottom: 16px;
}

.feature-card__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature-card__desc {
  color: var(--fugu-gray-100);
  line-height: 1.7;
}

/* ===== VIDEO SECTION ===== */
.video-container {
  background: var(--fugu-card);
  border: 1px solid var(--fugu-border);
  border-radius: 12px;
  padding: 16px;
}

.video-placeholder {
  aspect-ratio: 16/9;
  background: var(--fugu-dark);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fugu-gray-400);
}

.video-container iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 12px;
  border: none;
}

.video-ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
  align-items: center;
}

.video-tip {
  font-size: 12px;
  color: var(--fugu-gray-400);
  text-align: center;
  margin-top: 16px;
}

/* ===== FAQ ===== */
.faq-list {
  background: var(--fugu-card);
  border: 1px solid var(--fugu-border);
  border-radius: 12px;
  padding: 24px;
}

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

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

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  background: none;
  border: none;
  color: var(--fugu-white);
  font-size: 16px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  text-align: left;
}

.faq-chevron {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--fugu-gold);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
}

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

.faq-answer__inner {
  padding-bottom: 20px;
  color: var(--fugu-gray-100);
  line-height: 1.7;
}

/* ===== FINAL CTA ===== */
.final-cta {
  position: relative;
  padding: 80px 20px;
  text-align: center;
  z-index: 2;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--fugu-gold), transparent);
}

.final-cta__buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  margin-bottom: 32px;
}

.final-cta__note {
  font-size: 12px;
  color: var(--fugu-gray-400);
  max-width: 480px;
  margin: 0 auto;
}

/* ===== COMPLIANCE FOOTER ===== */
.compliance-footer {
  background: var(--fugu-dark);
  border-top: 1px solid var(--fugu-border);
  padding: 48px 20px;
  z-index: 2;
  position: relative;
}

.compliance-footer__warning-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--fugu-gray-400);
  margin-bottom: 16px;
}

.compliance-footer__warning-title span {
  color: var(--fugu-red);
}

.compliance-footer__text {
  font-size: 12px;
  color: var(--fugu-gray-400);
  line-height: 1.8;
  margin-bottom: 12px;
}

.compliance-footer__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  color: var(--fugu-gray-400);
  margin: 32px 0;
}

.compliance-footer__links a {
  transition: color 0.3s ease;
}

.compliance-footer__links a:hover {
  color: var(--fugu-gray-100);
}

.compliance-footer__links span {
  color: var(--fugu-border);
}

.compliance-footer__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.compliance-footer__logo {
  width: 96px;
  opacity: 0.6;
}

.compliance-footer__copy {
  font-size: 12px;
  color: var(--fugu-gray-600);
}

/* ===== RESPONSIVE ===== */
@media (min-width: 768px) {
  .hero__headline {
    font-size: 56px;
  }

  .hero__sub {
    font-size: 20px;
  }

  .section-title {
    font-size: 40px;
  }

  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .stat-card__value {
    font-size: 32px;
  }

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

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

  .pillars-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .video-ctas {
    flex-direction: row;
    justify-content: center;
  }

  .video-container {
    padding: 24px;
  }

  .final-cta__buttons {
    flex-direction: row;
    justify-content: center;
  }

  .faq-list {
    padding: 32px;
  }
}

@media (min-width: 1024px) {
  .strategy-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1280px) {
  .stat-card__value {
    font-size: 36px;
  }
}

/* ===== WIZARD ===== */
.wizard {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px 80px;
  min-height: 100vh;
  position: relative;
  z-index: 2;
}

.wizard__header {
  text-align: center;
  margin-bottom: 48px;
}

.wizard__logo {
  width: 140px;
  display: inline-block;
}

/* Progress indicator */
.wizard__progress {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 48px;
}

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

.wizard__progress-dot {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--fugu-card);
  border: 2px solid var(--fugu-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  color: var(--fugu-gray-400);
  transition: all 0.4s ease;
}

.wizard__progress-step--active .wizard__progress-dot,
.wizard__progress-step--completed .wizard__progress-dot {
  background: var(--fugu-gold);
  border-color: var(--fugu-gold);
  color: #000;
}

.wizard__progress-label {
  font-size: 12px;
  color: var(--fugu-gray-600);
  transition: color 0.3s ease;
  white-space: nowrap;
}

.wizard__progress-step--active .wizard__progress-label {
  color: var(--fugu-gold);
  font-weight: 600;
}

.wizard__progress-step--completed .wizard__progress-label {
  color: var(--fugu-gray-100);
}

.wizard__progress-line {
  flex: 1;
  height: 2px;
  background: var(--fugu-border);
  margin: 21px 16px 0;
  position: relative;
  max-width: 120px;
  min-width: 40px;
}

.wizard__progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: var(--fugu-gold);
  transition: width 0.5s ease;
}

/* Step panels */
.wizard__step {
  display: none;
}

.wizard__step--active {
  display: block;
  animation: fadeInUp 0.4s ease;
}

.wizard__step-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
  text-align: center;
}

.wizard__step-desc {
  color: var(--fugu-gray-100);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

/* Action card */
.wizard__action-card {
  background: var(--fugu-card);
  border: 1px solid var(--fugu-border);
  border-radius: 12px;
  padding: 40px 24px;
  text-align: center;
  margin-bottom: 24px;
}

.wizard__action-icon {
  color: var(--fugu-gold);
  margin-bottom: 20px;
}

.wizard__action-text {
  color: var(--fugu-gray-100);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.wizard__action-hint {
  font-size: 13px;
  color: var(--fugu-gray-400);
  margin-top: 16px;
}

/* Confirmation checkbox */
.wizard__confirm {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--fugu-card);
  border: 2px solid var(--fugu-border);
  border-radius: 10px;
  margin-bottom: 28px;
  cursor: pointer;
  transition: border-color 0.3s ease;
  user-select: none;
}

.wizard__confirm:hover {
  border-color: var(--fugu-gold-dim);
}

.wizard__confirm-checkbox {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.wizard__confirm-check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border: 2px solid var(--fugu-gray-600);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.wizard__confirm-check::after {
  content: '';
  display: block;
  width: 6px;
  height: 11px;
  border: solid transparent;
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg) translate(-1px, -1px);
  transition: border-color 0.2s ease;
}

.wizard__confirm-checkbox:checked ~ .wizard__confirm-check {
  background: var(--fugu-gold);
  border-color: var(--fugu-gold);
}

.wizard__confirm-checkbox:checked ~ .wizard__confirm-check::after {
  border-color: #000;
}

.wizard__confirm-checkbox:checked ~ .wizard__confirm-label {
  color: var(--fugu-white);
}

.wizard__confirm-label {
  font-size: 16px;
  font-weight: 600;
  color: var(--fugu-gray-400);
  transition: color 0.2s ease;
}

/* Disabled next button */
.wizard__next-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  animation: none;
}

/* Instructions */
.wizard__instructions {
  background: var(--fugu-card);
  border: 1px solid var(--fugu-border);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 32px;
}

.wizard__instructions-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--fugu-gold);
}

.wizard__instructions-list {
  padding-left: 20px;
  color: var(--fugu-gray-100);
  line-height: 2.2;
}

.wizard__instructions-list li {
  padding-left: 8px;
}

.wizard__instructions-list li::marker {
  color: var(--fugu-gold);
  font-weight: 700;
}

/* Navigation */
.wizard__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Success / Step 3 */
.wizard__success {
  text-align: center;
  padding: 48px 0;
}

.wizard__success-icon {
  margin-bottom: 32px;
}

.wizard__success-title {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 16px;
}

.wizard__success-desc {
  color: var(--fugu-gray-100);
  margin-bottom: 32px;
  line-height: 1.7;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.wizard__success-summary {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 400px;
  margin: 0 auto 32px;
}

.wizard__summary-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: var(--fugu-card);
  border: 1px solid var(--fugu-border);
  border-radius: 8px;
  text-align: left;
}

.wizard__summary-check {
  color: var(--fugu-green);
  font-weight: 700;
  font-size: 20px;
  flex-shrink: 0;
}

.wizard__success-note {
  color: var(--fugu-gray-400);
  font-size: 14px;
  margin-bottom: 40px;
  line-height: 1.7;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== LEAD CAPTURE (Step 1) ===== */

/* Phase toggle */
.wizard__lead-phase--hidden {
  display: none;
}

/* Form layout */
.wizard__lead-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
  max-width: 400px;
  margin: 0 auto;
}

.wizard__form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.wizard__form-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--fugu-gray-100);
}

.wizard__form-input {
  height: 48px;
  padding: 0 16px;
  border-radius: 8px;
  border: 2px solid var(--fugu-border);
  background: var(--fugu-dark);
  color: var(--fugu-white);
  font-size: 16px;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.2s ease;
  outline: none;
}

.wizard__form-input::placeholder {
  color: var(--fugu-gray-600);
}

.wizard__form-input:focus {
  border-color: var(--fugu-gold);
}

.wizard__form-input--error {
  border-color: var(--fugu-red);
}

.wizard__form-error {
  font-size: 13px;
  color: var(--fugu-red);
  min-height: 18px;
}

/* Send code & verify buttons */
.wizard__send-code-btn,
.wizard__verify-btn {
  width: 100%;
  max-width: 400px;
  margin: 8px auto 0;
  position: relative;
}

.wizard__send-code-btn:disabled,
.wizard__verify-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  animation: none;
}

/* Button spinner — hidden by default, shown via JS removing [hidden] */
.wizard__btn-spinner[hidden] {
  display: none !important;
}

.wizard__btn-spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(0, 0, 0, 0.2);
  border-top-color: #000;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  margin-left: 8px;
  vertical-align: middle;
}

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

/* Code sent message */
.wizard__code-sent-msg {
  color: var(--fugu-gray-100);
  font-size: 15px;
  margin-bottom: 24px;
}

.wizard__code-sent-msg strong {
  color: var(--fugu-gold);
}

/* 6-digit code inputs */
.wizard__code-inputs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 8px;
}

.wizard__code-box {
  width: 52px;
  height: 60px;
  border-radius: 8px;
  border: 2px solid var(--fugu-border);
  background: var(--fugu-dark);
  color: var(--fugu-white);
  font-size: 24px;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  text-align: center;
  outline: none;
  transition: border-color 0.2s ease, transform 0.2s ease;
  caret-color: var(--fugu-gold);
}

.wizard__code-box:focus {
  border-color: var(--fugu-gold);
}

.wizard__code-box--filled {
  border-color: var(--fugu-gray-400);
}

.wizard__code-box--error {
  border-color: var(--fugu-red);
  animation: shakeBox 0.4s ease;
}

.wizard__code-box--success {
  border-color: var(--fugu-green);
}

@keyframes shakeBox {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-6px); }
  40% { transform: translateX(6px); }
  60% { transform: translateX(-4px); }
  80% { transform: translateX(4px); }
}

/* Code error message */
.wizard__code-error {
  display: block;
  text-align: center;
  margin-bottom: 16px;
}

/* Resend row */
.wizard__resend {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
  font-size: 14px;
}

.wizard__resend-sep {
  color: var(--fugu-gray-600);
}

.wizard__resend-btn,
.wizard__change-email-btn {
  background: none;
  border: none;
  color: var(--fugu-gold);
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  transition: color 0.2s ease;
}

.wizard__resend-btn:hover,
.wizard__change-email-btn:hover {
  color: var(--fugu-gold-light);
}

.wizard__resend-btn:disabled {
  color: var(--fugu-gray-600);
  cursor: not-allowed;
}

/* ===== LEAD CAPTURE RESPONSIVE ===== */
@media (max-width: 400px) {
  .wizard__code-inputs {
    gap: 6px;
  }

  .wizard__code-box {
    width: 44px;
    height: 52px;
    font-size: 20px;
  }
}

@media (max-width: 520px) {
  .wizard__progress-line {
    max-width: 60px;
  }
}

/* Wizard responsive */
@media (min-width: 768px) {
  .wizard {
    padding: 60px 20px 100px;
  }

  .wizard__step-title {
    font-size: 36px;
  }

  .wizard__action-card {
    padding: 48px 32px;
  }

  .wizard__instructions {
    padding: 32px;
  }

  .wizard__success-title {
    font-size: 44px;
  }
}
