/* ═══════════════════════════════════════════════════════════════
   ORDRE — SHARED STYLESHEET
   index.html + confirmed.html

   Um die Farbe global zu ändern, nur diese 4 Zeilen anpassen:
   --color-primary, --color-primary-lighter, --color-primary-darker
   und --color-primary-rgb (die RGB-Werte derselben Farbe).
   Alle halbtransparenten Varianten leiten sich automatisch ab.

   Beispiel Rot:
     --color-primary:         #c0392b;
     --color-primary-lighter: #e74c3c;
     --color-primary-darker:  #96281b;
     --color-primary-rgb:     192, 57, 43;
═══════════════════════════════════════════════════════════════ */

/* ─── DESIGN TOKENS ─────────────────────────────────────────── */
:root {
  --color-primary:         #f32a59;
  --color-primary-lighter: #fa7db3;
  --color-primary-darker:  #b00b4d;
  --color-primary-rgb:     243, 42, 89; /* ← nur hier ändern */

  /* Abgeleitete Alpha-Varianten */
  --primary-4:  rgba(var(--color-primary-rgb), 0.04);
  --primary-5:  rgba(var(--color-primary-rgb), 0.05);
  --primary-6:  rgba(var(--color-primary-rgb), 0.06);
  --primary-7:  rgba(var(--color-primary-rgb), 0.07);
  --primary-8:  rgba(var(--color-primary-rgb), 0.08);
  --primary-10: rgba(var(--color-primary-rgb), 0.10);
  --primary-12: rgba(var(--color-primary-rgb), 0.12);
  --primary-13: rgba(var(--color-primary-rgb), 0.13);
  --primary-15: rgba(var(--color-primary-rgb), 0.15);
  --primary-18: rgba(var(--color-primary-rgb), 0.18);
  --primary-20: rgba(var(--color-primary-rgb), 0.20);
  --primary-25: rgba(var(--color-primary-rgb), 0.25);
  --primary-28: rgba(var(--color-primary-rgb), 0.28);
  --primary-30: rgba(var(--color-primary-rgb), 0.30);
  --primary-35: rgba(var(--color-primary-rgb), 0.35);
  --primary-40: rgba(var(--color-primary-rgb), 0.40);
  --primary-45: rgba(var(--color-primary-rgb), 0.45);

  --ff-primary:   'Headland One', Georgia, serif;
  --ff-secondary: 'Raleway', sans-serif;

  --bg:        #080807;
  --bg-2:      #0f0f0d;
  --bg-card:   #111110;
  --text:      #f0ead8;
  --text-muted: rgba(240, 234, 216, 0.45);
  --border:    var(--primary-12);
  --radius:    14px;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--ff-secondary);
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* confirmed.html needs min-height */
body.page-confirmed { min-height: 100svh; }

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

/* ─── NAV ────────────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 24px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to bottom, rgba(8,8,7,0.9) 0%, transparent 100%);
}

.nav-logo {
  font-family: var(--ff-primary);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--color-primary);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-badge {
  font-family: var(--ff-secondary);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 100px;
}

/* ─── SHARED REVEAL ──────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── SHARED ANIMATIONS ──────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes slideUp {
  to { transform: translateY(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-16px); }
}
@keyframes shadowPulse {
  0%, 100% { opacity: 0.6; transform: translateX(-50%) scaleX(1); }
  50%       { opacity: 0.3; transform: translateX(-50%) scaleX(0.8); }
}
@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.1); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}
@keyframes heroFloat {
  0%, 100% { transform: translateY(0px) rotate(-1.5deg); }
  50%       { transform: translateY(-18px) rotate(-0.5deg); }
}
@keyframes orbit {
  from { transform: rotate(0deg) translateX(-50%) rotate(0deg); }
  to   { transform: rotate(360deg) translateX(-50%) rotate(-360deg); }
}


/* ════════════════════════════════════════════════════════════════
   INDEX.HTML
════════════════════════════════════════════════════════════════ */

/* ─── HERO ───────────────────────────────────────────────────── */
.hero-outer {
  min-height: 100svh;
  display: flex;
  align-items: stretch;
  position: relative;
  overflow: hidden;
}

.hero-outer::after {
  content: '';
  position: absolute;
  top: 40%; right: 10%;
  width: 600px; height: 600px;
  background: radial-gradient(ellipse, var(--primary-10) 0%, transparent 65%);
  pointer-events: none;
}

.hero-outer::before {
  content: '';
  position: absolute;
  top: 30%; left: 5%;
  width: 400px; height: 400px;
  background: radial-gradient(ellipse, var(--primary-4) 0%, transparent 70%);
  pointer-events: none;
}

.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 120px 72px 80px;
  position: relative;
  overflow: hidden;
  gap: 48px;
  max-width: 1280px;
  margin: 0 auto;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  z-index: 1;
}

.hero-mockup-col {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  opacity: 0;
  animation: fadeUp 1s ease 1.0s forwards;
}

.hero-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.2s forwards;
}

.hero-headline {
  font-family: var(--ff-primary);
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 28px;
}

.hero-headline .line { display: block; overflow: hidden; }
.hero-headline .line span {
  display: block;
  transform: translateY(110%);
  animation: slideUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero-headline .line:nth-child(1) span { animation-delay: 0.35s; }
.hero-headline .line:nth-child(2) span { animation-delay: 0.5s; }
.hero-headline .line:nth-child(3) span { animation-delay: 0.65s; }
.hero-headline em { font-style: italic; color: var(--color-primary); }

.hero-sub {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.7;
  max-width: 400px;
  margin: 0 0 52px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.9s forwards;
}

/* ─── HERO PHONE ─────────────────────────────────────────────── */
.hero-phone-wrap { position: relative; width: 240px; }

.hero-phone-wrap::before {
  content: '';
  position: absolute;
  bottom: -30px; left: 50%;
  transform: translateX(-50%);
  width: 160px; height: 40px;
  background: radial-gradient(ellipse, var(--primary-35) 0%, transparent 70%);
  filter: blur(14px);
  animation: shadowPulse 5s ease-in-out infinite;
}

.hero-phone-wrap .phone-frame {
  width: 240px; height: 490px;
  border: 2px solid var(--primary-28);
  border-radius: 38px;
  background: var(--bg-card);
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.6), 0 50px 100px rgba(0,0,0,0.7), inset 0 1px 0 rgba(255,255,255,0.06);
  animation: heroFloat 7s ease-in-out infinite;
}

.hero-menu-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--primary-8);
  opacity: 0;
  animation: fadeUp 0.6s ease forwards;
}
.hero-menu-item:nth-child(1) { animation-delay: 1.4s; }
.hero-menu-item:nth-child(2) { animation-delay: 1.6s; }
.hero-menu-item:nth-child(3) { animation-delay: 1.8s; }
.hero-menu-item:nth-child(4) { animation-delay: 2.0s; }
.hero-menu-item:nth-child(5) { animation-delay: 2.2s; }

.menu-img-placeholder {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary-15), var(--primary-5));
  border: 1px solid var(--primary-12);
  flex-shrink: 0;
}

.menu-text { flex: 1; }
.menu-text .mt { font-size: 0.72rem; color: var(--text); font-weight: 400; margin-bottom: 3px; }
.menu-text .ms { font-size: 0.62rem; color: var(--text-muted); }
.menu-price { font-family: var(--ff-primary); font-size: 1rem; color: var(--color-primary); white-space: nowrap; }

.hero-phone-status { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; padding: 0 2px; }
.hero-phone-status .time { font-size: 0.72rem; font-weight: 500; color: var(--text); }
.status-icons { display: flex; gap: 5px; align-items: center; }
.status-icons span { display: block; background: var(--text); border-radius: 1px; }
.status-bar1 { width: 3px; height: 6px; opacity: 0.4; }
.status-bar2 { width: 3px; height: 9px; opacity: 0.6; }
.status-bar3 { width: 3px; height: 12px; opacity: 0.9; }

.hero-phone-header { margin-bottom: 16px; }
.hero-phone-header .resto-name { font-family: var(--ff-primary); font-size: 1.3rem; font-weight: 400; color: var(--text); margin-bottom: 2px; }
.hero-phone-header .resto-cat { font-size: 0.65rem; color: var(--color-primary); letter-spacing: 0.16em; text-transform: uppercase; }

.hero-phone-tabs { display: flex; gap: 6px; margin-bottom: 18px; }
.tab-pill { font-size: 0.6rem; letter-spacing: 0.08em; text-transform: uppercase; padding: 5px 12px; border-radius: 100px; font-family: var(--ff-secondary); }
.tab-pill.active { background: var(--color-primary); color: #0a0a08; }
.tab-pill.inactive { border: 1px solid var(--border); color: var(--text-muted); }

/* ─── EMAIL FORM ─────────────────────────────────────────────── */
.waitlist-form {
  display: flex;
  max-width: 440px;
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 100px;
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(12px);
  padding: 6px 6px 6px 22px;
  opacity: 0;
  animation: fadeUp 0.8s ease 1.1s forwards;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.waitlist-form:focus-within {
  border-color: var(--primary-40);
  box-shadow: 0 0 0 4px var(--primary-6);
}
.waitlist-form input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--text);
  font-family: var(--ff-secondary);
  font-size: 0.9rem;
  font-weight: 300;
  min-width: 0;
}
.waitlist-form input::placeholder { color: var(--text-muted); }

/* ─── BUTTONS ────────────────────────────────────────────────── */
.btn-primary {
  background: var(--color-primary);
  color: #0a0a08;
  border: none;
  border-radius: 100px;
  padding: 13px 24px;
  font-family: var(--ff-secondary);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.25s ease, transform 0.2s ease;
  position: relative;
  overflow: hidden;
}
.btn-primary::after { content: ''; position: absolute; inset: 0; border-radius: 100px; }
.btn-primary:hover { background: var(--color-primary-lighter); transform: scale(1.02); }
.btn-primary:active { transform: scale(0.98); }

.hero-footnote {
  margin-top: 18px;
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  opacity: 0;
  animation: fadeUp 0.8s ease 1.3s forwards;
}

/* ─── SCROLL INDICATOR ───────────────────────────────────────── */
.scroll-hint {
  position: absolute; bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: 0;
  animation: fadeUp 0.8s ease 1.8s forwards;
}
.scroll-hint span { font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); }
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--color-primary), transparent);
  animation: scrollPulse 2s ease-in-out 2s infinite;
}

/* ─── MOCKUP SECTION ─────────────────────────────────────────── */
.mockup-section {
  padding: 120px 24px 140px;
  display: flex; flex-direction: column; align-items: center;
  position: relative; overflow: hidden;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-label {
  font-size: 0.68rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--color-primary); margin-bottom: 20px;
}
.section-title {
  font-family: var(--ff-primary);
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 300; text-align: center; line-height: 1.1;
  margin-bottom: 48px; max-width: 580px;
}
.section-title em { font-style: italic; color: var(--color-primary); }

/* ─── VIEW TOGGLE ────────────────────────────────────────────── */
.view-toggle {
  display: flex; align-items: center;
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 4px;
  background: rgba(255,255,255,0.02);
  margin-bottom: 72px;
  position: relative;
}
.toggle-btn {
  font-family: var(--ff-secondary);
  font-size: 0.72rem; font-weight: 400;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 9px 22px;
  border: none; background: transparent;
  color: var(--text-muted);
  cursor: pointer; border-radius: 100px;
  transition: color 0.3s ease;
  position: relative; z-index: 1;
}
.toggle-btn.active { color: #0a0a08; }
.toggle-pill {
  position: absolute; top: 4px; bottom: 4px; left: 4px;
  border-radius: 100px;
  background: var(--color-primary);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), width 0.3s ease;
  z-index: 0;
}

/* ─── DEVICES STAGE ──────────────────────────────────────────── */
.devices-stage {
  width: 100%; max-width: 1100px;
  position: relative;
  display: flex; align-items: flex-end; justify-content: center;
  gap: 32px; min-height: 480px;
}

.device-laptop { position: relative; flex-shrink: 0; animation: float 8s ease-in-out infinite; }
.device-tablet { position: relative; flex-shrink: 0; animation: float 6s ease-in-out 1s infinite; align-self: center; }
.device-phone  { position: relative; flex-shrink: 0; animation: float 5s ease-in-out 0.5s infinite; }

.laptop-body {
  width: 520px;
  background: #1a1a18;
  border-radius: 12px 12px 0 0;
  border: 2px solid var(--primary-20); border-bottom: none;
  padding: 16px 16px 0;
  box-shadow: 0 -20px 60px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.05);
  position: relative;
}
.laptop-screen-area {
  width: 100%; height: 300px;
  background: var(--bg-card);
  border-radius: 6px 6px 0 0;
  overflow: hidden; position: relative;
}
.laptop-base {
  width: 560px; height: 16px;
  background: #222220;
  border-radius: 0 0 6px 6px;
  border: 2px solid var(--primary-15); border-top: none;
  position: relative; margin-left: -20px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
}
.laptop-base::after {
  content: '';
  position: absolute; top: 4px; left: 50%; transform: translateX(-50%);
  width: 60px; height: 4px;
  background: var(--primary-15); border-radius: 100px;
}
.laptop-camera { width: 6px; height: 6px; border-radius: 50%; background: var(--primary-20); margin: 0 auto 8px; }

.tablet-frame {
  width: 200px; height: 270px;
  background: #1a1a18; border-radius: 16px;
  border: 2px solid var(--primary-20);
  padding: 14px 10px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.04);
}
.tablet-screen-area { width: 100%; height: 100%; background: var(--bg-card); border-radius: 8px; overflow: hidden; position: relative; }
.tablet-home-btn { width: 28px; height: 4px; background: var(--primary-20); border-radius: 100px; margin: 8px auto 0; }

.phone-frame-d {
  width: 120px; height: 240px;
  background: #1a1a18; border-radius: 22px;
  border: 2px solid var(--primary-20);
  padding: 28px 8px 14px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.04);
  position: relative;
}
.phone-notch-d {
  position: absolute; top: 10px; left: 50%; transform: translateX(-50%);
  width: 36px; height: 10px; background: var(--bg); border-radius: 100px;
}
.phone-screen-d { width: 100%; height: 100%; background: var(--bg-card); border-radius: 12px; overflow: hidden; position: relative; }

/* ─── SCREEN CONTENT ─────────────────────────────────────────── */
.screen-content {
  position: absolute; inset: 0;
  transition: opacity 0.45s ease, transform 0.45s cubic-bezier(0.16,1,0.3,1);
}
.screen-content.view-user { opacity: 1; transform: translateY(0); }
.screen-content.view-chef { opacity: 0; transform: translateY(12px); pointer-events: none; }
.devices-stage.is-chef .screen-content.view-user { opacity: 0; transform: translateY(-12px); }
.devices-stage.is-chef .screen-content.view-chef { opacity: 1; transform: translateY(0); }

/* Hover interaction */
.device-laptop:hover .screen-content.view-user,
.device-laptop.touched .screen-content.view-user,
.device-tablet:hover .screen-content.view-user,
.device-tablet.touched .screen-content.view-user,
.device-phone:hover .screen-content.view-user,
.device-phone.touched .screen-content.view-user  { opacity: 0; transform: translateY(-10px); }

.device-laptop:hover .screen-content.view-chef,
.device-laptop.touched .screen-content.view-chef,
.device-tablet:hover .screen-content.view-chef,
.device-tablet.touched .screen-content.view-chef,
.device-phone:hover .screen-content.view-chef,
.device-phone.touched .screen-content.view-chef   { opacity: 1; transform: translateY(0); }

.devices-stage.is-chef .device-laptop:hover .screen-content.view-user,
.devices-stage.is-chef .device-tablet:hover .screen-content.view-user,
.devices-stage.is-chef .device-phone:hover  .screen-content.view-user  { opacity: 0; transform: translateY(-12px); }
.devices-stage.is-chef .device-laptop:hover .screen-content.view-chef,
.devices-stage.is-chef .device-tablet:hover .screen-content.view-chef,
.devices-stage.is-chef .device-phone:hover  .screen-content.view-chef  { opacity: 1; transform: translateY(0); }

/* Shimmer blocks */
.s-block {
  background: linear-gradient(90deg, var(--primary-5) 0%, var(--primary-13) 45%, var(--primary-5) 90%);
  background-size: 200% 100%;
  border-radius: 4px;
  animation: shimmer 2.8s ease-in-out infinite;
}

/* Glow under devices */
.device-laptop::after,
.device-tablet::after,
.device-phone::after {
  content: '';
  position: absolute; bottom: -20px; left: 50%; transform: translateX(-50%);
  height: 30px;
  background: radial-gradient(ellipse, var(--primary-20) 0%, transparent 70%);
  filter: blur(10px); pointer-events: none;
}
.device-laptop::after { width: 420px; }
.device-tablet::after { width: 160px; }
.device-phone::after  { width: 90px; }

.hover-hint {
  font-size: 0.65rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--text-muted); margin-top: 52px;
  display: flex; align-items: center; gap: 8px;
}
.hover-hint::before, .hover-hint::after { content: ''; display: block; width: 28px; height: 1px; background: var(--border); }

/* ─── FEATURES ───────────────────────────────────────────────── */
.features-section {
  padding: 100px 24px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.features-grid {
  max-width: 900px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
}
.feature-card {
  padding: 48px 36px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition: background 0.3s ease, border-color 0.3s ease;
  cursor: default;
}
.feature-card:hover { background: var(--primary-4); border-color: var(--primary-25); }
.feature-icon { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; margin-bottom: 28px; opacity: 0.7; }
.feature-icon--primary { color: var(--color-primary); }
.feature-icon__svg { width: 36px; height: 36px; flex-shrink: 0; }
.feature-card h3 { font-family: var(--ff-primary); font-size: 1.5rem; font-weight: 400; margin-bottom: 12px; line-height: 1.2; }
.feature-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; font-weight: 300; }

/* ─── COUNTER ────────────────────────────────────────────────── */
.counter-section { padding: 120px 24px; text-align: center; }
.counter-number {
  font-family: var(--ff-primary);
  font-size: clamp(5rem, 18vw, 13rem);
  font-weight: 300; line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--primary-35);
  letter-spacing: -0.02em; user-select: none;
}
.counter-label { font-size: 0.78rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--text-muted); margin-top: 16px; }
.counter-label strong { color: var(--color-primary); font-weight: 400; }

/* ─── FINAL CTA ──────────────────────────────────────────────── */
.cta-section { padding: 120px 24px 100px; text-align: center; position: relative; overflow: hidden; }
.cta-section::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 1px; height: 80px;
  background: linear-gradient(to bottom, transparent, var(--border));
}
.cta-section h2 {
  font-family: var(--ff-primary);
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 300; line-height: 1.1;
  margin-bottom: 48px; max-width: 600px;
  margin-left: auto; margin-right: auto;
}
.cta-section h2 em { font-style: italic; color: var(--color-primary); }

/* ─── FOOTER ─────────────────────────────────────────────────── */
footer {
  padding: 32px 48px;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
footer a {
  color: var(--color-primary);
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  font-weight: 400;
  line-height: 1.6;
  transition: color 0.2s ease;

}
footer a:hover {
  color: var(--color-primary-lighter);
  text-decoration: none;
}
footer .logo { font-family: var(--ff-primary); font-size: 1.1rem; color: var(--color-primary); letter-spacing: 0.1em; text-transform: uppercase; }
footer p { font-size: 0.75rem; color: var(--text-muted); letter-spacing: 0.04em; }

/* ─── SUCCESS STATE ──────────────────────────────────────────── */
.success-msg {
  display: none; align-items: center; gap: 10px;
  font-size: 0.85rem; color: var(--color-primary);
  padding: 14px 24px;
  border: 1px solid var(--primary-30);
  border-radius: 100px;
  background: var(--primary-6);
  animation: fadeUp 0.5s ease forwards;
}
.success-msg.visible { display: flex; }
.success-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--color-primary); animation: pulse 2s ease-in-out infinite; }


/* ════════════════════════════════════════════════════════════════
   MODAL (index.html)
════════════════════════════════════════════════════════════════ */

.modal__overlay {
  position: fixed; inset: 0;
  background: rgba(5,5,4,0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  display: flex; align-items: center; justify-content: center;
  z-index: 9000; padding: 20px;
}

#modal-waitlist:not(.is-open) { display: none; }
#modal-waitlist.is-open { display: block; }

.modal__container {
  background: var(--bg-2);
  border: 1px solid var(--primary-18);
  border-radius: 24px;
  width: 100%; max-width: 480px;
  padding: 0; position: relative; overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.7), inset 0 1px 0 rgba(255,255,255,0.04);
}
.modal__container::before {
  content: ''; position: absolute; top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
}

.modal-progress { display: flex; gap: 6px; padding: 28px 32px 0; }
.progress-dot { flex: 1; height: 2px; border-radius: 100px; background: var(--primary-15); transition: background 0.4s ease; overflow: hidden; }
.progress-dot.active { background: var(--primary-40); }
.progress-dot.done { background: var(--color-primary); }
.progress-dot.done::after { content: ''; display: block; height: 100%; background: var(--color-primary); animation: progressFill 0.4s ease forwards; }
@keyframes progressFill { from { width: 0; } to { width: 100%; } }

.modal-header { padding: 24px 32px 0; }
.modal-step-label { font-size: 0.64rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--color-primary); margin-bottom: 8px; display: block; }
.modal-title { font-family: var(--ff-primary); font-size: 2rem; font-weight: 300; line-height: 1.1; color: var(--text); }
.modal-title em { font-style: italic; color: var(--color-primary); }
.modal-sub { font-size: 0.82rem; color: var(--text-muted); margin-top: 6px; line-height: 1.6; }

.modal-body { padding: 28px 32px 32px; }
.modal-step { display: none; flex-direction: column; gap: 18px; }
.modal-step.is-active { display: flex; }
.modal-step.slide-in-right { animation: slideInRight 0.35s cubic-bezier(0.16,1,0.3,1) forwards; }
.modal-step.slide-in-left  { animation: slideInLeft  0.35s cubic-bezier(0.16,1,0.3,1) forwards; }
@keyframes slideInRight { from { opacity: 0; transform: translateX(40px); }  to { opacity: 1; transform: translateX(0); } }
@keyframes slideInLeft  { from { opacity: 0; transform: translateX(-40px); } to { opacity: 1; transform: translateX(0); } }

.type-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.type-option {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px; padding: 14px 8px;
  border: 1px solid var(--border); border-radius: 12px;
  background: transparent; cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.15s ease;
  color: var(--text-muted);
}
.type-option:hover { border-color: var(--primary-30); background: var(--primary-4); color: var(--text); transform: translateY(-2px); }
.type-option.selected { border-color: var(--color-primary); background: var(--primary-8); color: var(--text); }
.type-option .type-icon { display: inline-flex; align-items: center; justify-content: center; font-size: 1.4rem; line-height: 1; }
.type-icon--primary { color: var(--color-primary); }
.type-icon__svg { width: 1.4rem; height: 1.4rem; flex-shrink: 0; }
.type-option .type-label { font-size: 0.62rem; letter-spacing: 0.06em; text-align: center; font-weight: 400; line-height: 1.3; }

.field-group { display: flex; flex-direction: column; gap: 6px; }
.field-label { font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); }
.field-optional { font-size: 0.6rem; color: rgba(240,234,216,0.25); letter-spacing: 0.06em; margin-left: 6px; text-transform: none; }
.field-input {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border); border-radius: 10px;
  padding: 13px 16px; color: var(--text);
  font-family: var(--ff-secondary); font-size: 0.9rem; font-weight: 300;
  outline: none; width: 100%;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.field-input::placeholder { color: rgba(240,234,216,0.25); }
.field-input:focus { border-color: var(--primary-45); background: var(--primary-4); box-shadow: 0 0 0 3px var(--primary-7); }

.modal-footer { display: flex; align-items: center; justify-content: space-between; padding: 0 32px 32px; gap: 12px; }
.btn-modal-back {
  background: transparent; border: 1px solid var(--border);
  color: var(--text-muted); font-family: var(--ff-secondary);
  font-size: 0.78rem; font-weight: 400; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 12px 20px; border-radius: 100px; cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.btn-modal-back:hover { border-color: var(--primary-30); color: var(--text); }

.btn-modal-next {
  flex: 1; background: var(--color-primary); border: none; color: #0a0a08;
  font-family: var(--ff-secondary); font-size: 0.8rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 14px 28px; border-radius: 100px; cursor: pointer;
  transition: background 0.25s ease, transform 0.15s ease; position: relative; overflow: hidden;
}
.btn-modal-next:hover { background: var(--color-primary-lighter); transform: scale(1.01); }
.btn-modal-next:active { transform: scale(0.98); }
.btn-modal-next:disabled { opacity: 0.35; cursor: not-allowed; transform: none; }

.modal__close {
  position: absolute; top: 20px; right: 20px;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,0.05); border: 1px solid var(--border);
  color: var(--text-muted); font-size: 1rem; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, color 0.2s; z-index: 10;
}
.modal__close:hover { background: var(--primary-10); color: var(--text); }

.step-thanks { text-align: center; padding: 16px 0 8px; }
.thanks-icon {
  width: 64px; height: 64px; margin: 0 auto 24px; border-radius: 50%;
  background: var(--primary-10); border: 1px solid var(--primary-30);
  display: flex; align-items: center; justify-content: center; font-size: 1.8rem;
  animation: popIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
.thanks-icon--primary { color: var(--color-primary); }
.thanks-icon__svg { width: 2rem; height: 2rem; flex-shrink: 0; }
@keyframes popIn { from { transform: scale(0.4); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.thanks-title { font-family: var(--ff-primary); font-size: 2.2rem; font-weight: 300; margin-bottom: 12px; line-height: 1.1; }
.thanks-title em { font-style: italic; color: var(--color-primary); }
.thanks-sub { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; max-width: 300px; margin: 0 auto; }
.thanks-detail {
  margin-top: 24px; padding: 14px 20px;
  border: 1px solid var(--border); border-radius: 12px;
  background: var(--primary-4); font-size: 0.78rem; color: var(--text-muted);
  display: flex; align-items: center; gap: 10px;
}
.thanks-detail-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--color-primary); flex-shrink: 0; animation: pulse 2s infinite; }

#modal-waitlist.is-open .modal__container { animation: modalIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
@keyframes modalIn { from { opacity: 0; transform: scale(0.93) translateY(20px); } to { opacity: 1; transform: scale(1) translateY(0); } }


/* ════════════════════════════════════════════════════════════════
   CONFIRMED.HTML
════════════════════════════════════════════════════════════════ */

.glow-top {
  position: fixed; top: -200px; left: 50%; transform: translateX(-50%);
  width: 900px; height: 600px;
  background: radial-gradient(ellipse, var(--primary-7) 0%, transparent 65%);
  pointer-events: none; z-index: 0;
}
.glow-bottom {
  position: fixed; bottom: -150px; right: -100px;
  width: 600px; height: 500px;
  background: radial-gradient(ellipse, var(--primary-5) 0%, transparent 60%);
  pointer-events: none; z-index: 0;
}

.page {
  position: relative; z-index: 1;
  min-height: 100svh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 60px 24px 80px;
}

.ticket {
  width: 100%; max-width: 560px;
  background: var(--bg-2);
  border: 1px solid var(--primary-20);
  border-radius: 24px; overflow: hidden; position: relative;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.4), 0 60px 120px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.04);
  opacity: 0;
  animation: ticketIn 1s cubic-bezier(0.16,1,0.3,1) 0.4s forwards;
}
.ticket::before {
  content: ''; position: absolute; top: 0; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
}
@keyframes ticketIn { from { opacity: 0; transform: translateY(40px) scale(0.96); } to { opacity: 1; transform: translateY(0) scale(1); } }

.ticket-top { padding: 44px 44px 36px; text-align: center; position: relative; }

.position-badge {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--primary-20); border-radius: 100px;
  padding: 6px 16px 6px 8px; background: var(--primary-5);
  font-size: 0.72rem; color: var(--text-muted); margin-bottom: 28px;
}
.badge-dot {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--primary-15); border: 1px solid var(--primary-30);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-primary); font-size: 0.78rem; color: var(--color-primary); font-weight: 400;
}

.check-ring {
  width: 72px; height: 72px; border-radius: 50%;
  border: 1.5px solid var(--primary-40); background: var(--primary-6);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 28px; position: relative;
  animation: ringPop 0.6s cubic-bezier(0.34,1.56,0.64,1) 0.9s both;
}
@keyframes ringPop { from { transform: scale(0.5); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.check-ring svg { width: 28px; height: 28px; }
.check-path {
  stroke: var(--color-primary); stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round; fill: none;
  stroke-dasharray: 40; stroke-dashoffset: 40;
  animation: drawCheck 0.5s ease 1.4s forwards;
}
@keyframes drawCheck { to { stroke-dashoffset: 0; } }
.check-ring::after {
  content: ''; position: absolute;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--color-primary);
  top: -3px; left: 50%; transform-origin: 0 39px;
  animation: orbit 4s linear 1.8s infinite;
}

.ticket-eyebrow { font-size: 0.65rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--color-primary); margin-bottom: 12px; opacity: 0; animation: fadeUp 0.6s ease 1.2s forwards; }
.ticket-title { font-family: var(--ff-primary); font-size: clamp(2.4rem, 6vw, 3.6rem); font-weight: 300; line-height: 1.05; margin-bottom: 14px; opacity: 0; animation: fadeUp 0.7s ease 1.35s forwards; }
.ticket-title em { font-style: italic; color: var(--color-primary); }
.ticket-sub { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; max-width: 340px; margin: 0 auto; opacity: 0; animation: fadeUp 0.6s ease 1.5s forwards; }

.ticket-divider {
  position: relative; height: 1px; margin: 0 -1px;
  background: var(--primary-12);
  display: flex; align-items: center;
  opacity: 0; animation: fadeIn 0.5s ease 1.8s forwards;
}
@keyframes fadeIn { to { opacity: 1; } }
.ticket-divider::before,
.ticket-divider::after {
  content: ''; position: absolute;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--bg); border: 1px solid var(--primary-20);
  top: 50%; transform: translateY(-50%);
}
.ticket-divider::before { left: -12px; }
.ticket-divider::after  { right: -12px; }
.ticket-divider-dashes { position: absolute; left: 20px; right: 20px; top: 50%; border-top: 1.5px dashed var(--primary-15); }

.ticket-bottom { padding: 32px 44px 40px; display: flex; flex-direction: column; gap: 0; opacity: 0; animation: fadeUp 0.6s ease 2s forwards; }
.ticket-row { display: flex; align-items: flex-start; gap: 18px; padding: 18px 0; border-bottom: 1px solid var(--primary-7); }
.ticket-row:last-child { border-bottom: none; }
.row-step {
  width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid var(--primary-25); background: var(--primary-6);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-family: var(--ff-primary); font-size: 0.95rem; color: var(--color-primary); margin-top: 2px;
}
.row-title { font-size: 0.88rem; font-weight: 500; color: var(--text); margin-bottom: 3px; letter-spacing: 0.01em; }
.row-desc  { font-size: 0.78rem; color: var(--text-muted); line-height: 1.6; }

.ticket-footer { padding: 20px 44px 28px; border-top: 1px solid var(--primary-7); display: flex; align-items: center; justify-content: space-between; gap: 12px; opacity: 0; animation: fadeUp 0.5s ease 2.3s forwards; }
.ticket-number { font-family: var(--ff-primary); font-size: 0.78rem; color: var(--text-muted); letter-spacing: 0.2em; }
.ticket-number strong { color: var(--color-primary); font-weight: 400; }
.ticket-share { display: flex; gap: 8px; }
.share-btn {
  background: transparent; border: 1px solid var(--border); color: var(--text-muted);
  font-family: var(--ff-secondary); font-size: 0.7rem; font-weight: 400;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 8px 16px; border-radius: 100px; cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s; text-decoration: none; display: inline-block;
}
.share-btn:hover { border-color: var(--primary-40); color: var(--text); background: var(--primary-5); }

.below-ticket { margin-top: 36px; text-align: center; opacity: 0; animation: fadeUp 0.6s ease 2.5s forwards; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.back-link { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); text-decoration: none; transition: color 0.2s; display: flex; align-items: center; gap: 6px; }
.back-link:hover { color: var(--color-primary); }

.particles { position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.particle { position: absolute; border-radius: 50%; background: var(--color-primary); opacity: 0; animation: particleFloat var(--dur) ease-in var(--delay) infinite; }
@keyframes particleFloat { 0% { opacity: 0; transform: translateY(0) scale(0); } 10% { opacity: 0.6; transform: translateY(-20px) scale(1); } 100% { opacity: 0; transform: translateY(-120px) scale(0.3); } }


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

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding: 120px 32px 80px; text-align: center; }
  .hero-content { align-items: center; }
  .hero-sub { margin: 0 auto 52px; }
  .hero-mockup-col { display: none; }
}

@media (max-width: 860px) {
  .device-laptop { display: none; }
  .devices-stage { gap: 20px; min-height: 300px; }
}

@media (max-width: 640px) {
  nav { padding: 20px 24px; }
  .waitlist-form { flex-direction: column; border-radius: 16px; padding: 14px; gap: 10px; }
  .waitlist-form input { padding: 8px 10px; font-size: 1rem; }
  .btn-primary { text-align: center; padding: 14px; border-radius: 10px; }
  footer { padding: 24px; }
  footer p { font-size: 0.7rem; }
}

@media (max-width: 600px) {
  .ticket-top    { padding: 32px 24px 28px; }
  .ticket-bottom { padding: 24px 24px 28px; }
  .ticket-footer { padding: 16px 24px 22px; flex-direction: column; align-items: flex-start; gap: 14px; }
  .ticket-row    { gap: 14px; }
}

@media (max-width: 540px) {
  .device-tablet { display: none; }
}

@media (max-width: 520px) {
  .modal__container { border-radius: 18px; }
  .modal-body, .modal-footer, .modal-header, .modal-progress { padding-left: 22px; padding-right: 22px; }
  .type-grid { gap: 6px; }
  .type-option { padding: 10px 4px; }
  .type-option .type-icon { font-size: 1.2rem; }
  .type-option .type-icon__svg { width: 1.2rem; height: 1.2rem; }
  .type-option .type-label { font-size: 0.56rem; }
}