/* ==========================================================================
   BLACKBOXED - Planlos ins Abenteuer
   Mobile-Perfect Premium CSS Design System
   ========================================================================== */

/* --- CSS Variables & Design Tokens --- */
:root {
  /* Brand Palette */
  --bg-dark: #08090d;
  --bg-card: rgba(16, 20, 30, 0.75);
  --bg-card-hover: rgba(26, 32, 48, 0.85);
  --bg-surface: #10131d;
  
  --primary-amber: #f59e0b;
  --primary-amber-glow: rgba(245, 158, 11, 0.4);
  --primary-gold: #fbbf24;
  --accent-emerald: #10b981;
  --accent-cyan: #06b6d4;
  
  --text-main: #f3f4f6;
  --text-muted: #9ca3af;
  --text-dim: #6b7280;
  
  --border-glass: rgba(255, 255, 255, 0.1);
  --border-gold-glow: rgba(245, 158, 11, 0.3);
  
  /* Fonts */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Animations */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Layout */
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --container-width: 1200px;
}

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

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

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

/* Background Canvas */
#particleCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  opacity: 0.3;
}

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  font-weight: 700;
  color: #ffffff;
}

p {
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0;
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-amber) 50%, #f97316 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

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

/* Common Layout Containers */
.section-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.25rem;
  position: relative;
  z-index: 1;
}

section {
  padding: 5rem 0;
  position: relative;
}

.section-header {
  margin-bottom: 3rem;
}

.section-tag {
  display: inline-block;
  padding: 0.35rem 1rem;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid var(--border-gold-glow);
  color: var(--primary-gold);
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.8rem;
}

.section-header h2 {
  font-size: clamp(1.75rem, 5vw, 2.6rem);
  letter-spacing: -0.5px;
  margin-bottom: 0.8rem;
}

.section-desc {
  font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition-normal);
  text-decoration: none;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-amber) 100%);
  color: #000000;
  box-shadow: 0 4px 20px var(--primary-amber-glow);
}

.btn-primary:hover, .btn-primary:active {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.6);
  background: linear-gradient(135deg, #fde047 0%, var(--primary-gold) 100%);
}

.btn-glow {
  position: relative;
  overflow: hidden;
}

.btn-nav {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-glass);
  color: #ffffff;
  padding: 0.6rem 1.2rem;
  font-size: 0.9rem;
}

.btn-nav:hover {
  background: rgba(245, 158, 11, 0.2);
  border-color: var(--primary-amber);
  color: var(--primary-gold);
}

.btn-large {
  padding: 1rem 2.2rem;
  font-size: 1.1rem;
}

.btn-success {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.4);
}

.btn-success:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.6);
}

/* Grids */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* Card Hover */
.glow-on-hover {
  transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.glow-on-hover:hover {
  transform: translateY(-4px);
  border-color: var(--border-gold-glow);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(245, 158, 11, 0.12);
}

/* --- Navigation Navbar --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background-color 0.3s, backdrop-filter 0.3s, border-bottom 0.3s;
  padding: 0.8rem 0;
}

.navbar.scrolled {
  background-color: rgba(8, 9, 13, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-glass);
  padding: 0.6rem 0;
}

.nav-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 42px;
  width: auto;
  border-radius: 8px;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}

.nav-menu {
  display: flex;
  gap: 1.8rem;
  align-items: center;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.nav-link i {
  font-size: 0.85rem;
  color: var(--primary-gold);
}

.nav-link:hover {
  color: #ffffff;
}

.mobile-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-glass);
  color: #ffffff;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  font-size: 1.2rem;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.mobile-only-btn {
  display: none;
}

/* --- Hero Section --- */
.hero-section {
  position: relative;
  padding: 8.5rem 0 4.5rem 0;
  background: radial-gradient(circle at 50% 25%, rgba(245, 158, 11, 0.14) 0%, transparent 65%),
              url('assets/hero_bg.png') center/cover no-repeat;
  text-align: center;
  min-height: 85vh;
  display: flex;
  align-items: center;
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(8, 9, 13, 0.72) 0%, rgba(8, 9, 13, 0.96) 85%, var(--bg-dark) 100%);
  z-index: 1;
}

.hero-container {
  max-width: 850px;
  margin: 0 auto;
  padding: 0 1.25rem;
  position: relative;
  z-index: 2;
  width: 100%;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-glass);
  backdrop-filter: blur(10px);
  padding: 0.4rem 1.1rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.5rem;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background-color: var(--primary-gold);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--primary-gold);
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.3); }
}

.badge-text {
  font-size: 0.85rem;
  font-weight: 600;
  color: #e5e7eb;
}

.hero-logo-box {
  margin-bottom: 1.2rem;
  display: flex;
  justify-content: center;
}

.hero-logo-img {
  max-width: 320px;
  width: 85%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7), 0 0 25px rgba(245, 158, 11, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-title {
  font-size: clamp(2.2rem, 7vw, 3.8rem);
  letter-spacing: -1px;
  margin-bottom: 1rem;
  text-transform: uppercase;
  font-weight: 900;
  word-break: break-word;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 2.5vw, 1.25rem);
  color: #d1d5db;
  margin-bottom: 2.5rem;
  line-height: 1.6;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.hero-subtitle strong {
  color: #ffffff;
}

/* Waitlist Card */
.waitlist-card {
  background: linear-gradient(135deg, rgba(18, 22, 34, 0.92) 0%, rgba(10, 13, 20, 0.96) 100%);
  border: 1px solid var(--border-gold-glow);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.8), 0 0 25px rgba(245, 158, 11, 0.12);
  border-radius: var(--radius-lg);
  padding: 2.2rem 1.8rem;
  backdrop-filter: blur(20px);
  position: relative;
  max-width: 650px;
  margin: 0 auto;
}

.waitlist-header h3 {
  font-size: clamp(1.2rem, 3.5vw, 1.5rem);
  margin-bottom: 0.4rem;
}

.waitlist-header p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.waitlist-form .input-group {
  display: flex;
  gap: 0.6rem;
  max-width: 580px;
  margin: 0 auto 1.2rem auto;
}

.input-field-wrapper {
  position: relative;
  flex: 1;
}

.input-icon {
  position: absolute;
  left: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 1rem;
  pointer-events: none;
}

.waitlist-form input[type="email"] {
  width: 100%;
  height: 50px;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-pill);
  padding: 0 1rem 0 3rem;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s;
}

.waitlist-form input[type="email"]:focus {
  border-color: var(--primary-gold);
  box-shadow: 0 0 15px rgba(245, 158, 11, 0.25);
}

.social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 0.8rem;
}

.avatar-stack {
  display: flex;
}

.avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 2px solid var(--primary-amber);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--primary-gold);
  margin-left: -8px;
}

.avatar:first-child {
  margin-left: 0;
}

.proof-text {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.proof-text strong {
  color: #ffffff;
}

/* --- Quote Manifesto Section --- */
.quote-section {
  background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(16, 20, 30, 0.5) 100%);
  padding: 3.5rem 0;
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
}

.manifesto-quote {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 3.5vw, 1.7rem);
  font-weight: 500;
  text-align: center;
  color: #f3f4f6;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  line-height: 1.5;
}

.quote-icon {
  display: block;
  font-size: 2rem;
  color: var(--primary-amber);
  opacity: 0.4;
  margin: 0 auto 0.8rem auto;
}

.manifesto-quote cite {
  display: block;
  font-size: 0.95rem;
  font-style: normal;
  color: var(--primary-gold);
  margin-top: 1rem;
  font-weight: 600;
}

/* --- Concept Section --- */
.concept-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 1.8rem;
  backdrop-filter: blur(10px);
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid var(--border-gold-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--primary-gold);
  margin-bottom: 1.2rem;
}

.concept-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
}

.concept-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* --- Interactive Simulator Section --- */
.simulator-section {
  background: rgba(10, 13, 20, 0.8);
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
}

.simulator-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.simulator-intro h2 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  margin-bottom: 1rem;
}

.simulator-intro p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.control-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-gold);
  margin-bottom: 0.8rem;
  text-transform: uppercase;
}

.type-selector {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
  margin-bottom: 1.8rem;
}

.type-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  color: var(--text-muted);
  padding: 0.75rem 0.8rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s;
  touch-action: manipulation;
}

.type-btn i {
  color: var(--primary-amber);
}

.type-btn.active, .type-btn:hover {
  background: rgba(245, 158, 11, 0.15);
  border-color: var(--primary-amber);
  color: #ffffff;
}

/* Simulator Display */
.sim-card-box {
  background: var(--bg-surface);
  border: 2px dashed rgba(245, 158, 11, 0.3);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: inset 0 0 30px rgba(0,0,0,0.5);
  transition: all 0.4s ease;
}

.sim-card-box.revealed {
  border-style: solid;
  border-color: var(--primary-amber);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7), 0 0 25px rgba(245, 158, 11, 0.2);
  background: linear-gradient(135deg, rgba(18, 22, 34, 0.95) 0%, rgba(12, 15, 24, 0.98) 100%);
}

.sim-placeholder-state {
  text-align: center;
  color: var(--text-muted);
}

.box-3d-icon {
  font-size: 3.5rem;
  color: var(--primary-amber);
  margin-bottom: 0.8rem;
  animation: floatBox 3s ease-in-out infinite;
}

@keyframes floatBox {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.sim-placeholder-state h4 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.sim-active-state {
  width: 100%;
}

.sim-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgba(16, 185, 129, 0.2);
  border: 1px solid var(--accent-emerald);
  color: var(--accent-emerald);
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.sim-title {
  font-size: clamp(1.3rem, 3.5vw, 1.7rem);
  margin-bottom: 0.6rem;
}

.sim-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.2rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--border-glass);
}

.sim-meta i {
  color: var(--primary-gold);
}

.sim-story-box, .sim-challenge-box {
  background: rgba(0, 0, 0, 0.35);
  border-left: 3px solid var(--primary-amber);
  padding: 0.8rem 1rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-bottom: 0.8rem;
  font-size: 0.9rem;
}

.sim-challenge-box {
  border-left-color: var(--accent-emerald);
}

.story-label, .challenge-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary-gold);
  margin-bottom: 0.2rem;
}

.challenge-label {
  color: var(--accent-emerald);
}

.sim-actions {
  margin-top: 1.2rem;
}

.sim-actions .btn {
  width: 100%;
}

.hidden {
  display: none !important;
}

/* --- Features Section --- */
.feature-box {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 2rem;
  display: flex;
  gap: 1.2rem;
  backdrop-filter: blur(10px);
  transition: all var(--transition-normal);
}

.feature-box:hover {
  border-color: var(--border-gold-glow);
}

.feature-icon-glow {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.2) 0%, rgba(245, 158, 11, 0.05) 100%);
  border: 1px solid var(--border-gold-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--primary-gold);
}

.feature-content h3 {
  font-size: 1.35rem;
  margin-bottom: 0.6rem;
}

.feature-content p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.feature-list {
  list-style: none;
}

.feature-list li {
  font-size: 0.88rem;
  color: #d1d5db;
  margin-bottom: 0.4rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.feature-list li i {
  color: var(--accent-emerald);
  font-size: 0.85rem;
  margin-top: 0.2rem;
}

/* --- Ablauf / Timeline Section --- */
.steps-timeline {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.8rem;
  transition: transform var(--transition-fast);
}

.step-item:hover {
  transform: translateX(6px);
  border-color: var(--border-gold-glow);
}

.step-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary-amber);
  opacity: 0.6;
  min-width: 45px;
  line-height: 1;
}

.step-card h4 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.step-card h4 i {
  color: var(--primary-gold);
}

.step-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
}

/* --- Audience Section --- */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.aud-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 1.6rem 1.2rem;
  text-align: center;
  transition: all var(--transition-normal);
}

.aud-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary-amber);
}

.aud-icon {
  font-size: 2rem;
  color: var(--primary-gold);
  margin-bottom: 1rem;
}

.aud-card h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.aud-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* --- FAQ Accordion --- */
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.3s;
}

.faq-question {
  width: 100%;
  padding: 1.2rem 1.4rem;
  background: none;
  border: none;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
}

.faq-icon {
  color: var(--primary-gold);
  transition: transform 0.3s;
  font-size: 0.9rem;
  min-width: 16px;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 1.4rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 1.4rem 1.2rem 1.4rem;
}

/* --- CTA Section --- */
.cta-box {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.15) 0%, rgba(16, 20, 30, 0.95) 100%);
  border: 1px solid var(--border-gold-glow);
  border-radius: var(--radius-lg);
  padding: 3.5rem 1.5rem;
  backdrop-filter: blur(15px);
  position: relative;
}

.cta-box h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 0.8rem;
}

.cta-box p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 550px;
  margin: 0 auto;
}

.margin-top-lg {
  margin-top: 1.8rem;
}

.margin-top-md {
  margin-top: 1rem;
}

/* --- Footer --- */
.footer {
  background: #040507;
  border-top: 1px solid var(--border-glass);
  padding: 4rem 0 2rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-logo {
  height: 38px;
  width: auto;
  border-radius: 6px;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 1.2rem;
}

.footer-socials {
  display: flex;
  gap: 0.8rem;
}

.footer-socials a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s;
  font-size: 0.9rem;
}

.footer-socials a:hover {
  background: var(--primary-amber);
  color: #000000;
}

.footer-col h4 {
  font-size: 1rem;
  margin-bottom: 1.2rem;
  color: #ffffff;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.7rem;
}

.footer-col ul li a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.3s;
}

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

.footer-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
}

.badge-status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--accent-emerald);
  background: rgba(16, 185, 129, 0.1);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-pill);
}

.status-indicator {
  width: 6px;
  height: 6px;
  background-color: var(--accent-emerald);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent-emerald);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 1.8rem;
  color: var(--text-dim);
  font-size: 0.82rem;
}

/* --- Modals --- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(12px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

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

.modal-content {
  background: #10131d;
  border: 1px solid var(--border-gold-glow);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9);
  border-radius: var(--radius-lg);
  max-width: 500px;
  width: 100%;
  padding: 2.2rem 1.8rem;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  max-height: 85vh;
  overflow-y: auto;
}

.modal-overlay.active .modal-content {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.6rem;
  cursor: pointer;
}

.modal-icon {
  font-size: 3rem;
  color: var(--accent-emerald);
  margin-bottom: 0.8rem;
}

/* ==========================================================================
   SMARTPHONE & TABLET RESPONSIVE STYLES (Mobile First Overhaul)
   ========================================================================== */

@media (max-width: 992px) {
  section {
    padding: 4rem 0;
  }
  
  .grid-3 {
    grid-template-columns: 1fr;
  }

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

  .simulator-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

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

@media (max-width: 768px) {
  section {
    padding: 3.2rem 0;
  }

  .section-header {
    margin-bottom: 2.2rem;
  }

  /* Header & Navigation */
  .navbar {
    padding: 0.6rem 0;
  }

  .desktop-only-btn {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    height: calc(100vh - 60px);
    background: rgba(8, 9, 13, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: flex-start;
    padding: 2.5rem 1.5rem;
    gap: 1.8rem;
    border-bottom: 1px solid var(--border-glass);
    transform: translateY(-120%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
  }

  .nav-menu.mobile-open {
    transform: translateY(0);
  }

  .nav-link {
    font-size: 1.2rem;
    padding: 0.6rem 0;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .mobile-only-btn {
    display: flex;
    width: 100%;
    margin-top: 1rem;
    padding: 1rem;
    font-size: 1.1rem;
  }

  /* Hero Mobile Adjustments */
  .hero-section {
    padding: 6.5rem 0 3rem 0;
    min-height: auto;
  }

  .hero-logo-img {
    max-width: 250px;
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  /* Waitlist Form Mobile */
  .waitlist-card {
    padding: 1.5rem 1.2rem;
    border-radius: var(--radius-md);
  }

  .waitlist-form .input-group {
    flex-direction: column;
    gap: 0.8rem;
  }

  .input-field-wrapper {
    width: 100%;
  }

  .waitlist-form input[type="email"] {
    height: 48px;
    font-size: 0.95rem;
  }

  .waitlist-form .btn-primary {
    width: 100%;
    height: 48px;
    font-size: 1rem;
  }

  .social-proof {
    flex-direction: column;
    gap: 0.4rem;
  }

  /* Simulator Mobile */
  .type-selector {
    grid-template-columns: 1fr 1fr;
  }

  .type-btn {
    padding: 0.7rem 0.5rem;
    font-size: 0.82rem;
  }

  .sim-card-box {
    padding: 1.2rem;
    min-height: 320px;
    border-radius: var(--radius-md);
  }

  .sim-meta {
    flex-direction: column;
    gap: 0.4rem;
  }

  .simulator-intro .btn-large {
    width: 100%;
    font-size: 1rem;
    padding: 0.9rem 1.5rem;
  }

  /* Timeline Mobile */
  .step-item {
    padding: 1.2rem;
    gap: 1rem;
  }

  .step-number {
    font-size: 1.5rem;
    min-width: 30px;
  }

  .step-card h4 {
    font-size: 1.05rem;
  }

  .step-card p {
    font-size: 0.88rem;
  }

  /* Audience & Footer Mobile */
  .audience-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer-brand p {
    max-width: 400px;
    margin: 0 auto 1.2rem auto;
  }

  .footer-socials {
    justify-content: center;
  }

  .badge-status {
    margin: 0 auto;
  }

  .cta-box {
    padding: 2.5rem 1.2rem;
  }

  .cta-box .btn-large {
    width: 100%;
  }
}

@media (max-width: 380px) {
  .type-selector {
    grid-template-columns: 1fr;
  }
  
  .hero-logo-img {
    max-width: 210px;
  }
}
