/* ============================================
   ALLX Landing Page – Styles
   ============================================ */

/* ---------- Custom Properties ---------- */
:root {
  --bg-primary: #0A0A0A;
  --bg-secondary: #111111;
  --bg-card: #161616;
  --bg-card-hover: #1A1A1A;
  --border: #1F1F1F;
  --border-light: #2A2A2A;
  --text-primary: #FFFFFF;
  --text-secondary: #888888;
  --text-tertiary: #555555;
  --accent: #FF5500;
  --accent-hover: #FF6B2A;
  --accent-glow: rgba(255, 85, 0, 0.2);
  --accent-glow-strong: rgba(255, 85, 0, 0.35);
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --max-width: 1200px;
  --nav-height: 72px;
}

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

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

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Subtle grain overlay */
body::after {
  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='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='256' height='256' filter='url(%23n)' opacity='0.02'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px;
  pointer-events: none;
  z-index: -1;
  opacity: 0.5;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input {
  font-family: inherit;
  border: none;
  outline: none;
  background: none;
}

ul {
  list-style: none;
}

/* ---------- Utilities ---------- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.accent {
  color: var(--accent);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

/* ---------- Background X ---------- */
.bg-x {
  display: none;
}

/* ---------- Floating Orbs ---------- */
.orb {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(80px);
  opacity: 0.12;
  will-change: transform;
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: var(--accent);
  top: -10%;
  right: -10%;
  animation: orbFloat1 20s ease-in-out infinite;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: #8B2FC9;
  bottom: 10%;
  left: -8%;
  animation: orbFloat2 25s ease-in-out infinite;
}

.orb-3 {
  width: 300px;
  height: 300px;
  background: #FF3D00;
  top: 40%;
  right: 15%;
  animation: orbFloat3 18s ease-in-out infinite;
  opacity: 0.06;
}

.orb-4 {
  width: 350px;
  height: 350px;
  background: #FF8A3D;
  bottom: -5%;
  right: 30%;
  animation: orbFloat4 22s ease-in-out infinite;
  opacity: 0.08;
}

@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(-60px, 40px) scale(1.1); }
  50% { transform: translate(-30px, 80px) scale(0.95); }
  75% { transform: translate(40px, 30px) scale(1.05); }
}

@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(50px, -40px) scale(1.08); }
  66% { transform: translate(30px, 50px) scale(0.92); }
}

@keyframes orbFloat3 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-70px, -50px); }
}

@keyframes orbFloat4 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  40% { transform: translate(40px, -60px) scale(1.1); }
  80% { transform: translate(-30px, -30px) scale(0.95); }
}

/* ---------- Mouse Spotlight ---------- */
.mouse-spotlight {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
  background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 85, 0, 0.04), transparent 60%);
}

.mouse-spotlight.active {
  opacity: 1;
}

/* ---------- Animated Gradient Text ---------- */
.gradient-text {
  background: linear-gradient(
    90deg,
    #FFFFFF 0%,
    #FFFFFF 30%,
    var(--accent) 50%,
    #FF8A3D 60%,
    #FFFFFF 70%,
    #FFFFFF 100%
  );
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 6s ease-in-out infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: white;
  padding: 16px 36px;
  box-shadow: 0 0 30px var(--accent-glow), 0 0 60px rgba(255, 85, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transition: none;
}

.btn-primary:hover::before {
  left: 120%;
  transition: left 0.6s ease;
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 0 50px var(--accent-glow-strong), 0 0 80px rgba(255, 85, 0, 0.15);
}

/* Pulse for CTA buttons */
.final-cta .btn-primary {
  animation: ctaPulse 3s ease-in-out infinite;
}

@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 0 30px var(--accent-glow), 0 0 60px rgba(255, 85, 0, 0.1); }
  50% { box-shadow: 0 0 40px var(--accent-glow-strong), 0 0 80px rgba(255, 85, 0, 0.2); }
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  padding: 16px 36px;
  border: 1px solid var(--border-light);
}

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.btn-large {
  padding: 18px 48px;
  font-size: 1.05rem;
}

.btn-nav {
  background: var(--accent);
  color: white;
  padding: 10px 22px;
  font-size: 0.85rem;
  border-radius: 10px;
  box-shadow: 0 0 20px var(--accent-glow);
}

.btn-nav:hover {
  background: var(--accent-hover);
  box-shadow: 0 0 30px var(--accent-glow-strong);
  transform: translateY(-1px);
}


/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  margin-left: auto;
}

.nav-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.02em;
}

.logo-x {
  color: var(--accent);
}

.nav-link {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--text-primary);
}


/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  overflow: hidden;
}

/* Hero Canvas */
.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.7;
}

.hero-glow {
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(255, 85, 0, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero-subline {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 440px;
  margin-bottom: 40px;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 20px;
}

.hero-hint {
  font-size: 0.85rem;
  color: var(--text-tertiary);
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ---------- Phone Mockup ---------- */
.hero-mockup {
  display: flex;
  justify-content: center;
}

.phone {
  position: relative;
  perspective: 800px;
  animation: phoneFloat 5s ease-in-out infinite;
}

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

.phone-frame {
  width: 280px;
  height: 580px;
  background: #1A1A1C;
  border-radius: 44px;
  padding: 8px;
  position: relative;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.1),
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 80px rgba(255, 85, 0, 0.08),
    0 0 120px rgba(255, 85, 0, 0.04);
  transition: transform 0.4s ease;
}

.phone:hover .phone-frame {
  transform: rotateY(-5deg) rotateX(2deg);
}

/* Phone glow ring */
.phone::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 46px;
  background: linear-gradient(160deg, rgba(255, 85, 0, 0.3), transparent 40%, transparent 60%, rgba(139, 47, 201, 0.2));
  z-index: -1;
  animation: phoneGlow 4s ease-in-out infinite;
  filter: blur(1px);
}

@keyframes phoneGlow {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.7; }
}

.phone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 26px;
  background: #0A0A0A;
  border-radius: 20px;
  z-index: 10;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: #0A0A0A;
  border-radius: 36px;
  overflow: hidden;
}

.phone-screenshot {
  width: 100%;
  height: 100%;
  object-fit: fill;
  border-radius: 36px;
}

/* App Header */
.app-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding: 0 4px;
}

.app-logo-small {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
}

.app-logo-small span {
  color: var(--accent);
}

.app-bar-icons {
  display: flex;
  gap: 10px;
}

.app-icon-dot,
.app-icon-bell {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-tertiary);
}

/* Highlights */
.app-highlights {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
  padding: 0 2px;
  overflow: hidden;
}

.highlight-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 52px;
}

.highlight-ring {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  padding: 2px;
  background: linear-gradient(135deg, var(--accent), #FF8A3D);
}

.highlight-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #0A0A0A;
}

.highlight-img span {
  font-family: var(--font-display);
  font-size: 0.5rem;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.highlight-label {
  font-size: 0.5rem;
  color: var(--text-secondary);
  text-align: center;
  max-width: 52px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Section Label */
.app-section-label {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 10px;
  padding: 0 4px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* App Event Cards */
.app-events {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.event-card-app {
  background: var(--bg-card);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.event-card-img {
  height: 90px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 10px 12px;
}

.event-card-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: var(--accent);
  color: white;
  font-size: 0.45rem;
  font-family: var(--font-display);
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.event-card-overlay h4 {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: white;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

.event-card-overlay p {
  font-size: 0.55rem;
  color: rgba(255,255,255,0.8);
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.event-card-footer {
  padding: 8px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.creator-bubbles {
  display: flex;
  align-items: center;
  gap: 0;
}

.creator-bubbles .bubble {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--bg-card);
  margin-right: -6px;
}

.creator-bubbles span {
  font-size: 0.5rem;
  color: var(--text-secondary);
  margin-left: 10px;
}

.event-btn-small {
  font-family: var(--font-display);
  font-size: 0.55rem;
  font-weight: 600;
  background: var(--accent);
  color: white;
  padding: 5px 14px;
  border-radius: 8px;
}


/* ============================================
   PROBLEM SECTION
   ============================================ */
.problem {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

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

.problem-old {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 16px;
  margin-bottom: 32px;
}

.strikethrough {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: var(--text-secondary);
  text-decoration: line-through;
  text-decoration-color: var(--text-secondary);
}

.problem-new {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
}


/* ============================================
   STEPS SECTION
   ============================================ */
.steps {
  padding: 120px 0;
  position: relative;
  z-index: 1;
}

.steps .section-title {
  text-align: center;
  margin-bottom: 80px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.step {
  text-align: center;
}

.step-visual {
  margin-bottom: 28px;
}

.step-screen {
  width: 200px;
  height: 260px;
  margin: 0 auto;
  background: rgba(22, 22, 22, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  padding: 12px;
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.step-screen:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 40px rgba(255, 85, 0, 0.05);
}

/* Light reflex on step cards */
.step-screen::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent);
  pointer-events: none;
  border-radius: 20px 20px 0 0;
}

.screen-header {
  padding: 0 0 10px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 10px;
}

.screen-title {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-primary);
}

/* Step 1: Feed */
.screen-feed {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mini-card {
  height: 56px;
  border-radius: 10px;
  display: flex;
  align-items: flex-end;
  padding: 8px 10px;
}

.mini-card span {
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 600;
  color: white;
  text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}

/* Step 2: Confirm */
.screen-confirm {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: calc(100% - 40px);
  gap: 10px;
}

.confirm-text {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
}

.confirm-bubbles {
  display: flex;
  justify-content: center;
}

.confirm-bubbles .bubble {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid var(--bg-card);
  margin-right: -6px;
}

.confirm-count {
  font-size: 0.6rem;
  color: var(--text-secondary);
}

/* Step 3: Ticket */
.screen-ticket {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: calc(100% - 40px);
  gap: 6px;
}

.ticket-event {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
}

.ticket-detail {
  font-size: 0.55rem;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.ticket-qr {
  width: 80px;
  height: 80px;
  background: white;
  border-radius: 8px;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qr-grid {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.qr-row {
  display: flex;
  gap: 2px;
}

.qr-row i {
  display: block;
  width: 7px;
  height: 7px;
  background: transparent;
  border-radius: 1px;
}

.qr-row i.q {
  background: #0A0A0A;
}

.ticket-note {
  font-size: 0.55rem;
  color: var(--text-tertiary);
  margin-top: 2px;
}

/* Step Meta */
.step-number {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

.step-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.step-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  max-width: 280px;
  margin: 0 auto;
  line-height: 1.5;
}


/* ============================================
   SOCIAL PROOF
   ============================================ */
.social-proof {
  padding: 80px 0;
  text-align: center;
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.proof-label {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 40px;
}

/* Marquee */
.marquee-wrapper {
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
  mask-image: linear-gradient(90deg, transparent, black 15%, black 85%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 15%, black 85%, transparent);
}

.marquee-track {
  display: flex;
  gap: 32px;
  animation: marqueeScroll 20s linear infinite;
  width: max-content;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.partner-logo {
  padding: 20px 40px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  background: rgba(22, 22, 22, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  flex-shrink: 0;
}

.partner-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-secondary);
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.proof-note {
  font-size: 0.85rem;
  color: var(--text-tertiary);
}


/* ============================================
   FOMO SECTION
   ============================================ */
.fomo {
  padding: 120px 0;
  position: relative;
  z-index: 1;
}

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

.fomo-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-top: 24px;
  max-width: 420px;
  line-height: 1.6;
}

.fomo-card {
  background: rgba(22, 22, 22, 0.5);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.fomo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 50px rgba(255, 85, 0, 0.06);
}

/* Subtle gradient border */
.fomo-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 25px;
  background: linear-gradient(160deg, rgba(255, 85, 0, 0.25), transparent 40%, transparent 60%, rgba(139, 47, 201, 0.15));
  z-index: -1;
  animation: borderPulse 4s ease-in-out infinite;
}

@keyframes borderPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.6; }
}

/* Light reflex */
.fomo-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
  pointer-events: none;
  border-radius: 24px 24px 0 0;
}

.fomo-event-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.fomo-event-img {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  flex-shrink: 0;
}

.fomo-event-header h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
}

.fomo-event-header p {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.fomo-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 18px;
}

.fomo-attending-label {
  font-size: 0.8rem;
  color: var(--text-tertiary);
  margin-bottom: 16px;
  font-family: var(--font-display);
  font-weight: 500;
}

.fomo-creators {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.fomo-creator {
  display: flex;
  align-items: center;
  gap: 8px;
}

.creator-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  flex-shrink: 0;
}

.fomo-creator span {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.creator-avatar-more {
  background: var(--bg-secondary) !important;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.creator-avatar-more span {
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--accent);
}


/* ============================================
   VERANSTALTER SECTION
   ============================================ */
.veranstalter {
  padding: 120px 0;
  position: relative;
  z-index: 1;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.veranstalter-content {
  max-width: 640px;
}

.veranstalter-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: rgba(255, 85, 0, 0.08);
  padding: 6px 16px;
  border-radius: 8px;
  border: 1px solid rgba(255, 85, 0, 0.15);
  margin-bottom: 24px;
}

.veranstalter .section-title {
  margin-bottom: 36px;
}

.veranstalter-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.veranstalter-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.list-icon {
  flex-shrink: 0;
  margin-top: 3px;
}


/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
  padding: 120px 0;
  position: relative;
  z-index: 1;
  text-align: center;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 85, 0, 0.08) 0%, transparent 70%);
  animation: ctaGlow 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes ctaGlow {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
  50% { transform: translate(-50%, -50%) scale(1.2); opacity: 1; }
}

.cta-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.cta-sub {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 48px;
}

.waitlist-form {
  max-width: 520px;
  margin: 0 auto;
}

.form-row {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.form-input {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 20px;
  color: var(--text-primary);
  font-size: 0.95rem;
  transition: border-color 0.3s ease;
}

.form-input::placeholder {
  color: var(--text-tertiary);
}

.form-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.waitlist-form .btn-primary {
  width: 100%;
}

.waitlist-success {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 40px 0;
}

.waitlist-success.show {
  display: flex;
}

.waitlist-form.hidden {
  display: none;
}

.success-text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.5;
}

.cta-note {
  margin-top: 24px;
  font-size: 0.85rem;
  color: var(--text-tertiary);
  font-family: var(--font-display);
}


/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 60px 0 32px;
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.footer-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
}

.footer-tagline {
  font-size: 0.8rem;
  color: var(--text-tertiary);
  margin-top: 4px;
}

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

.footer-links a {
  font-size: 0.85rem;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

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

.footer-social {
  display: flex;
  gap: 16px;
}

.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  transition: all 0.2s ease;
}

.social-link:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.footer-bottom {
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-tertiary);
}


/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 9999;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.hidden {
  opacity: 0;
  transform: translateX(-50%) translateY(20px);
  pointer-events: none;
}

.cookie-banner p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  white-space: nowrap;
}

.btn-cookie {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  background: rgba(255, 85, 0, 0.08);
  border: 1px solid rgba(255, 85, 0, 0.2);
  padding: 8px 20px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-cookie:hover {
  background: rgba(255, 85, 0, 0.15);
}


/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              filter 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  filter: blur(4px);
}

[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* Scale-up animation for steps */
.step[data-animate] {
  transform: translateY(40px) scale(0.95);
}

.step[data-animate].visible {
  transform: translateY(0) scale(1);
}

/* Subtle 3D rotation for cards */
.fomo-visual[data-animate] {
  transform: translateY(30px) perspective(600px) rotateX(5deg);
}

.fomo-visual[data-animate].visible {
  transform: translateY(0) perspective(600px) rotateX(0);
}


/* ============================================
   RESPONSIVE – TABLET
   ============================================ */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 48px;
  }

  .hero-subline {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta {
    justify-content: center;
  }

  .fomo-content {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .fomo-desc {
    margin-left: auto;
    margin-right: auto;
  }

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


/* ============================================
   RESPONSIVE – MOBILE
   ============================================ */
@media (max-width: 768px) {
  :root {
    --nav-height: 64px;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--nav-height) + 40px);
    padding-bottom: 60px;
  }

  .hero-headline {
    font-size: clamp(2.5rem, 10vw, 3.5rem);
  }

  .hero-subline {
    font-size: 1.05rem;
  }

  .phone-frame {
    width: 240px;
    height: 500px;
    border-radius: 38px;
  }

  .phone-screen {
    border-radius: 30px;
  }

  .phone-notch {
    width: 76px;
    height: 22px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .problem {
    padding: 80px 0;
  }

  .steps,
  .fomo,
  .veranstalter,
  .final-cta {
    padding: 80px 0;
  }

  .steps .section-title {
    margin-bottom: 56px;
  }

  .orb-1 { width: 300px; height: 300px; }
  .orb-2 { width: 250px; height: 250px; }
  .orb-3 { width: 200px; height: 200px; }
  .orb-4 { width: 200px; height: 200px; }

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

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

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

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .cookie-banner {
    left: 16px;
    right: 16px;
    transform: none;
    bottom: 16px;
    flex-direction: column;
    gap: 12px;
  }

  .cookie-banner.hidden {
    transform: translateY(20px);
  }

  .cookie-banner p {
    white-space: normal;
    text-align: center;
  }

  .bg-x {
    font-size: 100vw;
  }
}

@media (max-width: 480px) {
  .hero-headline {
    font-size: 2.5rem;
  }

  .hero-cta {
    flex-direction: column;
    gap: 12px;
  }

  .hero-hint {
    order: -1;
  }

  .phone-frame {
    width: 220px;
    height: 460px;
    border-radius: 34px;
  }

  .phone-screen {
    border-radius: 28px;
  }

  .phone-notch {
    width: 68px;
    height: 20px;
    top: 10px;
  }

  .step-screen {
    width: 180px;
    height: 240px;
  }

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

  .veranstalter .section-title {
    font-size: clamp(1.6rem, 5vw, 2.5rem);
  }
}
