/* ═══════════════════════════════════════════════════════════════════════════
   ECOSYSTEM ONBOARDING — DESIGN SYSTEM
   Warm Noir · Vegas Premium · Conversion-Focused
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── Google Fonts ──────────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@600;700;800&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500&display=swap');

/* ─── CSS Variables ──────────────────────────────────────────────────────────── */
:root {
  /* Backgrounds */
  --bg: #07090f;
  --bg-surface: #0c0e1a;
  --bg-card: rgba(255, 255, 255, 0.028);
  --bg-card-hover: rgba(255, 255, 255, 0.045);
  --bg-input: rgba(255, 255, 255, 0.04);

  /* Borders */
  --border: rgba(255, 255, 255, 0.07);
  --border-hover: rgba(255, 255, 255, 0.13);
  --border-active: rgba(200, 135, 46, 0.55);
  --border-focus: rgba(200, 135, 46, 0.7);

  /* Text */
  --text: #f0f2ff;
  --text-muted: rgba(240, 242, 255, 0.58);
  --text-subtle: rgba(240, 242, 255, 0.3);

  /* Accent — warm amber/gold (Vegas warmth) */
  --accent: #c8872e;
  --accent-gold: #d4a64a;
  --accent-orange: #e06030;
  --accent-teal: #1ab8c4;
  --accent-glow: rgba(200, 135, 46, 0.12);

  /* Gradients */
  --gradient-cta: linear-gradient(135deg, #d4924a 0%, #e05e28 100%);
  --gradient-hero: linear-gradient(135deg, #d4a64a 0%, #e06030 55%, #b8427a 100%);
  --gradient-gold: linear-gradient(135deg, #c8872e, #d4a64a);

  /* Status */
  --success: #22c78a;

  /* Typography */
  --font-display: 'Syne', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* Transitions */
  --transition: 200ms ease;
  --transition-slow: 400ms ease;
}

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

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

img, svg, video { display: block; max-width: 100%; }
button { cursor: pointer; font-family: inherit; }
a { color: inherit; }
input, textarea, select { font-family: inherit; }

/* ─── Animated Mesh Background ───────────────────────────────────────────────── */
.mesh-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.28;
}

.orb-1 {
  width: 750px;
  height: 750px;
  background: radial-gradient(circle, rgba(200, 135, 46, 0.45) 0%, transparent 65%);
  top: -250px;
  left: -200px;
  animation: orbFloat1 24s ease-in-out infinite alternate;
}

.orb-2 {
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(185, 70, 38, 0.3) 0%, transparent 65%);
  bottom: -200px;
  right: -200px;
  animation: orbFloat2 19s ease-in-out infinite alternate;
}

.orb-3 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 160, 190, 0.18) 0%, transparent 65%);
  top: 38%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: orbFloat3 28s ease-in-out infinite alternate;
}

@keyframes orbFloat1 {
  0%   { transform: translate(0, 0) scale(1); }
  33%  { transform: translate(70px, 50px) scale(1.08); }
  66%  { transform: translate(-20px, 90px) scale(0.96); }
  100% { transform: translate(90px, -30px) scale(1.04); }
}

@keyframes orbFloat2 {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(-80px, -60px) scale(1.12); }
  100% { transform: translate(50px, 70px) scale(0.92); }
}

@keyframes orbFloat3 {
  0%   { transform: translate(-50%, -50%) scale(1); }
  40%  { transform: translate(-50%, -50%) translate(110px, -70px) scale(1.18); }
  100% { transform: translate(-50%, -50%) translate(-90px, 90px) scale(0.88); }
}

/* Dot grid overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
  z-index: 0;
}

/* ─── Step Header / Progress ─────────────────────────────────────────────────── */
.step-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 24px 0;
  background: linear-gradient(to bottom, rgba(7, 9, 15, 0.97) 0%, transparent 100%);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.step-header[aria-hidden="true"] {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
}

.step-header.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.step-progress {
  height: 2px;
  background: var(--border);
  border-radius: 2px;
  margin-bottom: 14px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background: var(--gradient-cta);
  border-radius: 2px;
  transition: width 500ms cubic-bezier(0.4, 0, 0.2, 1);
  width: 0%;
}

.step-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding-bottom: 12px;
}

.step-dot {
  display: flex;
  align-items: center;
  gap: 0;
  position: relative;
}

.step-dot-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px;
  border-radius: 99px;
  background: transparent;
  border: none;
  color: var(--text-subtle);
  font-size: 0.75rem;
  font-family: var(--font-body);
  font-weight: 500;
  cursor: default;
  transition: color var(--transition);
  white-space: nowrap;
}

.step-dot-num {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  font-family: var(--font-display);
  transition: all var(--transition);
  flex-shrink: 0;
}

.step-dot.active .step-dot-btn { color: var(--accent); }

.step-dot.active .step-dot-num {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
  box-shadow: 0 0 14px rgba(200, 135, 46, 0.55);
}

.step-dot.completed .step-dot-btn { color: var(--text-muted); }

.step-dot.completed .step-dot-num {
  background: rgba(200, 135, 46, 0.2);
  border-color: rgba(200, 135, 46, 0.4);
  color: var(--accent);
}

.step-dot-connector {
  width: 32px;
  height: 1px;
  background: var(--border);
  margin: 0 2px;
}

/* ─── App Layout ──────────────────────────────────────────────────────────────── */
.app-main {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  overflow: hidden;
}

/* ─── Step Panels ────────────────────────────────────────────────────────────── */
.step-panel {
  display: none;
  min-height: 100vh;
  position: relative;
}

.step-panel.active {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Hero panel overrides: scrollable landing page */
#panel-hero.active {
  display: block;
  align-items: initial;
  justify-content: initial;
  overflow-y: auto;
}

.step-panel.entering {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: slideInRight 350ms cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.step-panel.leaving {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: slideOutLeft 350ms cubic-bezier(0.4, 0, 0.2, 1) forwards;
  position: absolute;
  inset: 0;
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(48px); }
  to   { opacity: 1; transform: translateX(0); }
}

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

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-48px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes slideOutRight {
  from { opacity: 1; transform: translateX(0); }
  to   { opacity: 0; transform: translateX(48px); }
}

.step-panel.entering-back {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: slideInLeft 350ms cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.step-panel.leaving-forward {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: slideOutRight 350ms cubic-bezier(0.4, 0, 0.2, 1) forwards;
  position: absolute;
  inset: 0;
}

/* ─── Step Content Container ─────────────────────────────────────────────────── */
.step-content {
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  padding: 80px 24px 48px;
}

.step-label {
  font-size: 0.75rem;
  font-weight: 700;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 12px;
}

.step-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 10px;
}

.step-sub {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 520px;
}

.step-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* ─── Hero: Above-Fold ───────────────────────────────────────────────────────── */
.hero-above-fold {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px 60px;
  position: relative;
}

.hero-content {
  max-width: 660px;
  margin: 0 auto;
  animation: fadeUp 700ms cubic-bezier(0.4, 0, 0.2, 1) both;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 99px;
  border: 1px solid rgba(200, 135, 46, 0.3);
  background: rgba(200, 135, 46, 0.07);
  font-size: 0.72rem;
  font-weight: 700;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-gold);
  margin-bottom: 32px;
  backdrop-filter: blur(8px);
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent), 0 0 16px var(--accent);
  flex-shrink: 0;
  animation: pulse-dot 2.5s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 22px;
}

.gradient-text {
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  color: var(--text-muted);
  line-height: 1.68;
  max-width: 520px;
  margin: 0 auto 32px;
  font-weight: 300;
}

/* Trust Stats Row */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 0 auto 36px;
  flex-wrap: wrap;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  padding: 14px 28px;
  width: fit-content;
  max-width: 520px;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 24px;
  gap: 2px;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.stat-label {
  font-size: 0.72rem;
  color: var(--text-subtle);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.stat-div {
  width: 1px;
  height: 32px;
  background: var(--border);
  flex-shrink: 0;
}

/* CTA group */
.hero-cta-group {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.hero-cta {
  font-size: 1.05rem;
  padding: 16px 40px;
}

.hero-trust {
  font-size: 0.8rem;
  color: var(--text-subtle);
  letter-spacing: 0.01em;
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--text-subtle);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  font-family: var(--font-display);
  animation: scrollBounce 2.5s ease-in-out infinite;
}

.hero-scroll-hint svg {
  width: 18px;
  height: 18px;
  opacity: 0.5;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.5; }
  50% { transform: translateX(-50%) translateY(6px); opacity: 1; }
}

/* ─── Buttons ────────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  border: none;
  text-decoration: none;
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn:disabled {
  opacity: 0.38;
  cursor: not-allowed;
  pointer-events: none;
}

.btn-cta {
  background: var(--gradient-cta);
  color: white;
  font-weight: 500;
  box-shadow: 0 4px 24px rgba(200, 135, 46, 0.25);
  padding: 14px 32px;
}

.btn-cta:hover:not(:disabled) {
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 8px 32px rgba(200, 135, 46, 0.4), 0 0 0 1px rgba(200, 135, 46, 0.2);
}

.btn-cta:active:not(:disabled) {
  transform: scale(0.98);
}

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
}

.btn-ghost:hover:not(:disabled) {
  background: var(--bg-card);
  border-color: var(--border-hover);
  color: var(--text);
}

/* ─── Roles Grid ─────────────────────────────────────────────────────────────── */
.roles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
  margin-bottom: 8px;
}

.multi-select-hint {
  font-size: 0.8rem;
  color: var(--text-subtle);
  margin-bottom: 20px;
  text-align: center;
}

.role-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px 16px;
  cursor: pointer;
  transition: all var(--transition);
  user-select: none;
  overflow: hidden;
  border-top: 2px solid var(--role-color, var(--border));
}

.role-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top left, var(--role-color-glow, transparent), transparent 70%);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}

.role-card:hover {
  transform: translateY(-2px);
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.role-card:hover::before { opacity: 0.4; }

.role-card.selected {
  border-color: var(--border-active);
  background: rgba(200, 135, 46, 0.06);
  box-shadow: 0 0 0 1px var(--border-active), 0 8px 24px rgba(200, 135, 46, 0.1);
}

.role-card.selected::before { opacity: 0.6; }

.role-check {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0);
  transition: all 250ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.role-check svg {
  width: 11px;
  height: 11px;
  stroke: white;
  stroke-width: 2.5;
  fill: none;
}

.role-card.selected .role-check {
  opacity: 1;
  transform: scale(1);
}

.role-emoji {
  font-size: 1.75rem;
  margin-bottom: 10px;
  display: block;
  filter: drop-shadow(0 0 8px var(--role-color, transparent));
}

.role-label {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
  line-height: 1.3;
}

.role-tagline {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.roles-selection-count {
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 500;
  display: none;
  margin-bottom: 8px;
}

.roles-selection-count.visible { display: block; }

/* ─── Form Fields ────────────────────────────────────────────────────────────── */
.field-group {
  display: grid;
  gap: 16px;
  margin-bottom: 16px;
}

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

.field label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
}

.field.required label::after {
  content: ' *';
  color: var(--accent);
}

.field-optional {
  font-size: 0.78rem;
  color: var(--text-subtle);
  font-weight: 400;
}

.field input,
.field textarea,
.field select {
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-size: 0.95rem;
  padding: 11px 14px;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
  outline: none;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--text-subtle);
}

.field input:hover,
.field textarea:hover {
  border-color: var(--border-hover);
  background: rgba(255, 255, 255, 0.05);
}

.field input:focus,
.field textarea:focus {
  border-color: var(--border-focus);
  box-shadow: 0 0 0 3px rgba(200, 135, 46, 0.12);
  background: rgba(255, 255, 255, 0.06);
}

.field input.error,
.field textarea.error {
  border-color: #ff4d4d;
  box-shadow: 0 0 0 3px rgba(255, 77, 77, 0.12);
}

.field-error {
  font-size: 0.78rem;
  color: #ff6b6b;
  font-weight: 500;
  min-height: 16px;
  display: block;
}

.field textarea {
  resize: vertical;
  min-height: 90px;
}

/* ─── Optional Toggle ────────────────────────────────────────────────────────── */
.optional-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 500;
  transition: all var(--transition);
  margin-bottom: 0;
  cursor: pointer;
}

.optional-toggle:hover {
  border-color: var(--border-hover);
  color: var(--text);
  background: var(--bg-card-hover);
}

.toggle-icon {
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--accent);
  transition: transform var(--transition);
  line-height: 1;
}

.optional-toggle.open .toggle-icon {
  transform: rotate(45deg);
}

.optional-fields {
  margin-top: 12px;
  overflow: hidden;
  transition: all var(--transition-slow);
}

.optional-fields[hidden] { display: none; }

.optional-fields .field-group { padding-top: 4px; }

/* ─── Interest Chips ─────────────────────────────────────────────────────────── */
.interest-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.interest-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 99px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition);
  user-select: none;
}

.interest-chip:hover {
  border-color: var(--border-hover);
  color: var(--text);
  background: var(--bg-card-hover);
}

.interest-chip.selected {
  border-color: var(--accent);
  background: rgba(200, 135, 46, 0.1);
  color: var(--accent);
}

.interest-chip.selected::before {
  content: '✓ ';
  font-size: 0.7rem;
}

/* ─── Consent / Checkbox ─────────────────────────────────────────────────────── */
.consent-row {
  margin-top: 16px;
  margin-bottom: 8px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 0.875rem;
  color: var(--text-muted);
  user-select: none;
  line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.checkbox-custom {
  width: 18px;
  height: 18px;
  min-width: 18px;
  border: 1.5px solid var(--border);
  border-radius: 5px;
  background: var(--bg-input);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  margin-top: 2px;
}

.checkbox-label:hover .checkbox-custom {
  border-color: var(--border-hover);
}

.checkbox-label input:checked ~ .checkbox-custom {
  background: var(--accent);
  border-color: var(--accent);
}

.checkbox-label input:checked ~ .checkbox-custom::after {
  content: '';
  display: block;
  width: 10px;
  height: 6px;
  border-left: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(-45deg) translateY(-1px);
}

.checkbox-label input:focus ~ .checkbox-custom {
  box-shadow: 0 0 0 3px rgba(200, 135, 46, 0.2);
}

/* ─── Honeypot ───────────────────────────────────────────────────────────────── */
.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
  visibility: hidden;
}

/* ─── Extras / Role Questions ────────────────────────────────────────────────── */
.extras-intro-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  margin-bottom: 20px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.extras-note {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  font-style: italic;
}

.extras-question { margin-bottom: 20px; }

.extras-question label,
.extras-question .q-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.multicheck-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.multicheck-chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 99px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition);
  user-select: none;
}

.multicheck-chip:hover {
  border-color: var(--border-hover);
  color: var(--text);
}

.multicheck-chip.selected {
  border-color: var(--accent);
  background: rgba(200, 135, 46, 0.1);
  color: var(--accent);
}

.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.radio-option {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 99px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition);
  user-select: none;
}

.radio-option:hover {
  border-color: var(--border-hover);
  color: var(--text);
}

.radio-option.selected {
  border-color: var(--accent);
  background: rgba(200, 135, 46, 0.1);
  color: var(--accent);
}

/* ─── Submit Overlay ─────────────────────────────────────────────────────────── */
.submit-overlay {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(7, 9, 15, 0.88);
  backdrop-filter: blur(14px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.submit-overlay[hidden] { display: none; }

.submit-spinner {
  width: 44px;
  height: 44px;
  border: 3px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 700ms linear infinite;
}

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

/* ─── Error Banner ───────────────────────────────────────────────────────────── */
.submit-error-banner {
  background: rgba(255, 77, 77, 0.1);
  border: 1px solid rgba(255, 77, 77, 0.3);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.875rem;
  color: #ff9494;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 12px;
}

.submit-error-banner button {
  background: none;
  border: 1px solid rgba(255, 77, 77, 0.4);
  color: #ff9494;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 0.8rem;
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--transition);
}

.submit-error-banner button:hover {
  background: rgba(255, 77, 77, 0.15);
}

/* ─── Orange Rabbit Guide ────────────────────────────────────────────────────── */
.orange-rabbit {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 200;
  animation: rabbitAppear 500ms cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.orange-rabbit[hidden] { display: none; }

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

.or-bubble {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 12px 16px;
  max-width: 240px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(200, 135, 46, 0.1);
  backdrop-filter: blur(16px);
  position: relative;
}

.or-bubble::after {
  content: '';
  position: absolute;
  bottom: -6px;
  right: 20px;
  width: 10px;
  height: 10px;
  background: var(--bg-surface);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transform: rotate(45deg);
}

.or-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.or-text {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
  transition: opacity 200ms ease;
}

/* ─── Form Layout ────────────────────────────────────────────────────────────── */
#universalForm { width: 100%; }
#universalForm .step-actions { flex-direction: row; }
#extras-fields { width: 100%; }

/* ─── Selection count badge ──────────────────────────────────────────────────── */
.selection-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: 99px;
  background: rgba(200, 135, 46, 0.15);
  border: 1px solid rgba(200, 135, 46, 0.3);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  margin-left: 8px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   LANDING PAGE SECTIONS
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── Shared section layout ──────────────────────────────────────────────────── */
.landing-section {
  position: relative;
  z-index: 1;
  padding: 88px 24px;
  border-top: 1px solid var(--border);
}

.landing-section--alt {
  background: rgba(255, 255, 255, 0.012);
}

.section-inner {
  max-width: 960px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 52px;
}

.section-header--left {
  text-align: left;
}

.section-header--split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  text-align: left;
  flex-wrap: wrap;
}

.section-badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 99px;
  background: rgba(200, 135, 46, 0.1);
  border: 1px solid rgba(200, 135, 46, 0.22);
  color: var(--accent-gold);
  font-size: 0.7rem;
  font-weight: 700;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto;
  font-weight: 300;
}

/* ─── Audience Section ───────────────────────────────────────────────────────── */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.audience-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.audience-card:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.3);
}

.audience-card--sponsor {
  border-color: rgba(200, 135, 46, 0.3);
  background: rgba(200, 135, 46, 0.04);
  grid-column: span 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 40px;
  align-items: start;
}

.audience-card--sponsor::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-gold);
}

.audience-card--sponsor:hover {
  border-color: rgba(200, 135, 46, 0.5);
}

.sponsor-card-left {}
.sponsor-card-right {}

.audience-emoji {
  font-size: 1.8rem;
  margin-bottom: 12px;
  display: block;
  filter: drop-shadow(0 0 10px rgba(200, 135, 46, 0.3));
}

.audience-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.3;
}

.audience-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.sponsor-card-label {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-gold);
  background: rgba(200, 135, 46, 0.1);
  border: 1px solid rgba(200, 135, 46, 0.2);
  padding: 3px 10px;
  border-radius: 99px;
  margin-bottom: 12px;
}

.sponsor-card-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 10px;
  line-height: 1.2;
}

.sponsor-card-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
  font-weight: 300;
}

.sponsor-card-metrics {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.sponsor-mini-metric {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sponsor-mini-num {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text);
}

.sponsor-mini-label {
  font-size: 0.68rem;
  color: var(--text-subtle);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.sponsor-card-cta-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
}

.audience-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 28px;
  border-radius: var(--radius-md);
  background: var(--gradient-cta);
  color: white;
  font-size: 0.9rem;
  font-weight: 500;
  font-family: var(--font-body);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(200, 135, 46, 0.25);
  text-decoration: none;
  white-space: nowrap;
}

.audience-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(200, 135, 46, 0.4);
}

.audience-cta--ghost {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
  box-shadow: none;
}

.audience-cta--ghost:hover {
  border-color: var(--border-hover);
  color: var(--text);
  box-shadow: none;
}

/* ─── Why Join Section ───────────────────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.why-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gradient-gold);
  opacity: 0;
  transition: opacity var(--transition);
}

.why-card:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  transform: translateY(-2px);
}

.why-card:hover::after { opacity: 0.5; }

.why-icon {
  font-size: 1.6rem;
  margin-bottom: 16px;
  background: var(--gradient-cta);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1;
}

.why-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.3;
}

.why-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
  font-weight: 300;
}

/* ─── Events Preview Section ─────────────────────────────────────────────────── */
.events-preview-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.event-preview-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  display: grid;
  grid-template-columns: 68px 1fr auto;
  gap: 20px;
  align-items: center;
  transition: all var(--transition);
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
}

.event-preview-card:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.event-preview-card--featured {
  border-color: rgba(200, 135, 46, 0.25);
}

.event-preview-card--featured::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gradient-gold);
}

.event-date-block {
  text-align: center;
  flex-shrink: 0;
}

.event-month {
  font-size: 0.65rem;
  font-weight: 700;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
}

.event-day {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
  color: var(--text);
}

.event-day--sm {
  font-size: 1.2rem;
  margin-top: 4px;
}

.event-body {}

.event-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
  line-height: 1.3;
}

.event-subtitle {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.event-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.event-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 2px 8px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  color: var(--text-subtle);
}

.event-tag--sponsor {
  background: rgba(200, 135, 46, 0.08);
  border-color: rgba(200, 135, 46, 0.2);
  color: var(--accent-gold);
}

.event-cta-col {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.event-type-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 3px 10px;
  border-radius: 99px;
  white-space: nowrap;
}

.event-type-badge--networking { background: rgba(0, 180, 160, 0.1); border: 1px solid rgba(0, 180, 160, 0.25); color: #1ab8c4; }
.event-type-badge--conference { background: rgba(200, 135, 46, 0.1); border: 1px solid rgba(200, 135, 46, 0.25); color: var(--accent-gold); }
.event-type-badge--exclusive  { background: rgba(155, 80, 200, 0.1); border: 1px solid rgba(155, 80, 200, 0.25); color: #b07ccc; }
.event-type-badge--virtual    { background: rgba(80, 140, 220, 0.1); border: 1px solid rgba(80, 140, 220, 0.25); color: #7baaec; }
.event-type-badge--workshop   { background: rgba(60, 180, 120, 0.1); border: 1px solid rgba(60, 180, 120, 0.25); color: #4ec895; }

/* ─── Sponsor Trust Section ──────────────────────────────────────────────────── */
.proof-event-card {
  background: var(--bg-card);
  border: 1px solid rgba(200, 135, 46, 0.2);
  border-radius: var(--radius-xl);
  padding: 32px;
  margin-bottom: 28px;
  position: relative;
  overflow: hidden;
}

.proof-event-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-gold);
}

.proof-event-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.proof-event-label {
  font-size: 0.7rem;
  font-weight: 700;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-gold);
  margin-bottom: 6px;
}

.proof-event-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}

.proof-verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  border-radius: 99px;
  background: rgba(34, 199, 138, 0.1);
  border: 1px solid rgba(34, 199, 138, 0.25);
  color: var(--success);
  font-size: 0.7rem;
  font-weight: 700;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.proof-verified-badge::before {
  content: '✓';
}

.proof-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.proof-metric {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.proof-num {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 800;
  line-height: 1;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.proof-metric-label {
  font-size: 0.75rem;
  color: var(--text-subtle);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.proof-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}

.proof-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.proof-check {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(34, 199, 138, 0.12);
  border: 1px solid rgba(34, 199, 138, 0.25);
  color: var(--success);
  font-size: 0.68rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.proof-cta-row {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

/* ─── Contact Section ────────────────────────────────────────────────────────── */
.contact-section {
  background: rgba(200, 135, 46, 0.03);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.contact-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.contact-sub {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.68;
  margin-bottom: 24px;
  font-weight: 300;
}

.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--accent-gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(200, 135, 46, 0.3);
  padding-bottom: 2px;
  transition: all var(--transition);
}

.contact-email:hover {
  color: var(--text);
  border-bottom-color: var(--accent);
}

.contact-email::before {
  content: '✉';
  font-size: 0.9rem;
}

.or-teaser-card {
  background: var(--bg-card);
  border: 1px solid rgba(224, 96, 48, 0.2);
  border-radius: var(--radius-xl);
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.or-teaser-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #e06030, #d4924a);
}

.or-teaser-emoji {
  font-size: 2.4rem;
  margin-bottom: 14px;
  display: block;
  filter: drop-shadow(0 0 16px rgba(224, 96, 48, 0.4));
}

.or-teaser-label {
  font-size: 0.68rem;
  font-weight: 700;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-orange);
  margin-bottom: 8px;
}

.or-teaser-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
}

.or-teaser-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
  font-weight: 300;
}

/* ─── Site Footer ────────────────────────────────────────────────────────────── */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 40px 24px;
  position: relative;
  z-index: 1;
}

.footer-inner {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 32px;
  align-items: center;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.01em;
}

.footer-tagline {
  font-size: 0.75rem;
  color: var(--text-subtle);
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.82rem;
  color: var(--text-subtle);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--text-muted);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.footer-email {
  font-size: 0.82rem;
  color: var(--accent-gold);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-email:hover {
  color: var(--text);
}

.footer-copy {
  font-size: 0.72rem;
  color: var(--text-subtle);
}

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════════════ */

@media (max-width: 640px) {
  .step-content { padding: 72px 18px 40px; }

  .roles-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .role-card { padding: 14px 12px; }
  .role-emoji { font-size: 1.4rem; margin-bottom: 8px; }
  .role-label { font-size: 0.85rem; }
  .role-tagline { font-size: 0.72rem; }

  .step-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .step-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .step-dots {
    overflow-x: auto;
    padding: 0 12px 12px;
    justify-content: flex-start;
    scrollbar-width: none;
  }

  .step-dots::-webkit-scrollbar { display: none; }

  .step-dot-btn span:not(.step-dot-num) { display: none; }

  .step-dot-connector { width: 16px; }

  .orange-rabbit { bottom: 16px; right: 16px; }
  .or-bubble { max-width: 200px; padding: 10px 12px; }

  .hero-headline { font-size: 2.6rem; }
  .hero-cta { width: 100%; }
  .hero-cta-group { flex-direction: column; }
  .hero-cta-group .btn { width: 100%; }

  .hero-stats {
    padding: 12px 16px;
    gap: 0;
  }

  .hero-stat { padding: 0 14px; }
  .stat-num { font-size: 1.1rem; }
  .hero-scroll-hint { display: none; }

  /* Landing sections mobile */
  .landing-section { padding: 60px 18px; }

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

  .audience-card--sponsor {
    grid-column: span 1;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .why-grid { grid-template-columns: 1fr; gap: 12px; }

  .event-preview-card {
    grid-template-columns: 56px 1fr;
    gap: 14px;
  }

  .event-cta-col { display: none; }

  .proof-metrics { grid-template-columns: repeat(2, 1fr); }

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

  .contact-inner { grid-template-columns: 1fr; gap: 32px; }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }

  .footer-contact { align-items: center; }
  .footer-links { justify-content: center; }

  .proof-cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .proof-cta-row .btn { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .roles-grid { grid-template-columns: 1fr 1fr; }
  .interest-grid { gap: 6px; }
  .interest-chip { font-size: 0.78rem; padding: 5px 11px; }
  .audience-grid { grid-template-columns: 1fr; }
}

@media (min-width: 641px) and (max-width: 900px) {
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .audience-card--sponsor { grid-column: span 2; }
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .proof-metrics { grid-template-columns: repeat(2, 1fr); }
  .contact-inner { grid-template-columns: 1fr; gap: 32px; }
}

@media (min-width: 768px) {
  .field-group {
    grid-template-columns: 1fr 1fr;
  }

  .field-group .field:first-child:nth-last-child(odd) {
    grid-column: 1 / -1;
  }

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

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

/* ─── Accessibility ──────────────────────────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.role-card:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.skip-to-content {
  position: absolute;
  top: -999px;
  left: -999px;
  background: var(--accent);
  color: white;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  z-index: 9999;
  text-decoration: none;
}

.skip-to-content:focus {
  top: 8px;
  left: 8px;
}

/* ─── Reduced Motion ─────────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .orb { animation: none; }
}

/* ─── Scrollbar ──────────────────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg-surface); }
::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, 0.1); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255, 255, 255, 0.18); }

::selection {
  background: rgba(200, 135, 46, 0.3);
  color: var(--text);
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.skeleton {
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  animation: pulse 1.5s ease infinite;
}
