/* ==========================================================================
   DAAWATLY - Coming Soon Landing Experience
   Superb Glassmorphic UI & Luxury Design System
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700;800&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Space+Grotesk:wght@500;700&display=swap');

/* --- CSS Variables & Design Tokens --- */
:root {
  /* Color Palette */
  --bg-base: #07080c;
  --bg-surface: rgba(14, 17, 27, 0.7);
  --bg-surface-elevated: rgba(22, 27, 43, 0.75);
  
  /* Glassmorphic Tints */
  --glass-bg: rgba(255, 255, 255, 0.04);
  --glass-bg-hover: rgba(255, 255, 255, 0.08);
  --glass-bg-card: linear-gradient(135deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.015) 100%);
  --glass-border: rgba(255, 255, 255, 0.12);
  --glass-border-hover: rgba(255, 255, 255, 0.28);
  --glass-border-gold: rgba(229, 169, 60, 0.35);
  --glass-inner-specular: inset 0 1px 1px 0 rgba(255, 255, 255, 0.22);
  --glass-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.45);
  --glass-shadow-lg: 0 24px 64px 0 rgba(0, 0, 0, 0.65);
  
  /* Brand Luxury Accents */
  --gold-primary: #e5a93c;
  --gold-light: #f6d186;
  --gold-dark: #b87b1e;
  --gold-glow: rgba(229, 169, 60, 0.3);
  --rose-glow: rgba(232, 93, 117, 0.22);
  --indigo-glow: rgba(108, 92, 231, 0.25);
  --emerald-glow: rgba(46, 204, 113, 0.25);

  /* Text Colors */
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --text-gold: #f3c77c;
  
  /* Typography */
  --font-serif: 'Cinzel', serif;
  --font-sans: 'Plus Jakarta Sans', sans-serif;
  --font-mono: 'Space Grotesk', monospace;
  
  /* Layout */
  --container-max: 1240px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 9999px;
  
  /* Motion */
  --ease-spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --ease-smooth: cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

html {
  font-family: var(--font-sans);
  color: var(--text-primary);
  background-color: var(--bg-base);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  line-height: 1.6;
  background-color: var(--bg-base);
}

/* Subtle physical glass texture overlay */
.noise-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 1;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Ambient Floating Glow Mesh Orbs */
.ambient-glow-container {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  will-change: transform;
  opacity: 0.75;
}

.glow-orb-1 {
  width: 600px;
  height: 600px;
  top: -100px;
  left: 15%;
  background: radial-gradient(circle, var(--gold-glow) 0%, rgba(229, 169, 60, 0) 70%);
  animation: floatOrb 22s ease-in-out infinite alternate;
}

.glow-orb-2 {
  width: 650px;
  height: 650px;
  top: 25%;
  right: -100px;
  background: radial-gradient(circle, var(--rose-glow) 0%, rgba(232, 93, 117, 0) 70%);
  animation: floatOrb 26s ease-in-out 4s infinite alternate;
}

.glow-orb-3 {
  width: 700px;
  height: 700px;
  bottom: 5%;
  left: -150px;
  background: radial-gradient(circle, var(--indigo-glow) 0%, rgba(108, 92, 231, 0) 70%);
  animation: floatOrb 30s ease-in-out 8s infinite alternate;
}

@keyframes floatOrb {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(60px, 40px) scale(1.1); }
  100% { transform: translate(-40px, 70px) scale(0.95); }
}

/* Ambient canvas for starlight / embers */
#particlesCanvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

/* Layout container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 2;
}

/* --- Glassmorphic Primitives --- */
.glass-panel {
  background: var(--glass-bg-card);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow), var(--glass-inner-specular);
  border-radius: var(--radius-lg);
  position: relative;
  transition: all 0.4s var(--ease-smooth);
}

.glass-panel:hover {
  border-color: var(--glass-border-hover);
  box-shadow: var(--glass-shadow-lg), var(--glass-inner-specular);
}

/* Specular glare layer on interactive cards */
.glass-interactive {
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.glass-interactive::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(
    600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(255, 255, 255, 0.12),
    transparent 40%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  mix-blend-mode: overlay;
  z-index: 3;
}

.glass-interactive:hover::after {
  opacity: 1;
}

/* --- Header / Navigation --- */
.site-header {
  position: fixed;
  top: 1.25rem;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 0 1.5rem;
}

.nav-wrapper {
  max-width: 1020px;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: var(--radius-pill);
  background: rgba(12, 15, 24, 0.65);
  backdrop-filter: blur(20px) saturate(190%);
  -webkit-backdrop-filter: blur(20px) saturate(190%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35), var(--glass-inner-specular);
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--text-primary);
}

.logo-crest {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f6d186 0%, #e5a93c 60%, #b87b1e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(229, 169, 60, 0.5);
  position: relative;
}

.logo-crest svg {
  width: 18px;
  height: 18px;
  fill: #0d0f17;
}

.brand-name {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  background: linear-gradient(135deg, #ffffff 30%, #e5a93c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.status-dot {
  width: 7px;
  height: 7px;
  background: #2ecc71;
  border-radius: 50%;
  box-shadow: 0 0 10px #2ecc71;
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0% { transform: scale(0.9); opacity: 0.7; }
  50% { transform: scale(1.3); opacity: 1; box-shadow: 0 0 14px #2ecc71; }
  100% { transform: scale(0.9); opacity: 0.7; }
}

.nav-cta-btn {
  background: linear-gradient(135deg, rgba(229, 169, 60, 0.15) 0%, rgba(229, 169, 60, 0.05) 100%);
  border: 1px solid var(--glass-border-gold);
  color: var(--text-gold);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-pill);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s var(--ease-spring);
  backdrop-filter: blur(8px);
}

.nav-cta-btn:hover {
  background: linear-gradient(135deg, rgba(229, 169, 60, 0.35) 0%, rgba(229, 169, 60, 0.15) 100%);
  border-color: rgba(229, 169, 60, 0.6);
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(229, 169, 60, 0.4);
}

/* --- Hero Section --- */
.hero-section {
  padding-top: 6.25rem;
  padding-bottom: 3.5rem;
  min-height: calc(100vh - 1.5rem);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.status-pill-hero {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: rgba(229, 169, 60, 0.08);
  border: 1px solid rgba(229, 169, 60, 0.25);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.04em;
  margin-bottom: 1.1rem;
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(229, 169, 60, 0.12);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4.8vw, 3.8rem);
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: -0.01em;
  margin-bottom: 0.95rem;
  color: #ffffff;
}

.title-gold-gradient {
  background: linear-gradient(135deg, #ffffff 15%, #f6d186 50%, #e5a93c 85%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  text-shadow: 0 0 35px rgba(229, 169, 60, 0.25);
}

.hero-subtitle {
  font-size: clamp(0.95rem, 1.45vw, 1.15rem);
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 1.35rem auto;
}

/* Party Types Pill Ticker */
.party-types-ticker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin: 0 auto 1.35rem auto;
  max-width: 840px;
}

.ticker-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-light);
  opacity: 0.85;
}

.ticker-pills {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.ticker-pill {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  padding: 0.28rem 0.75rem;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 500;
  color: #e2e8f0;
  backdrop-filter: blur(8px);
  transition: all 0.25s ease;
}

.ticker-pill:hover {
  background: rgba(229, 169, 60, 0.12);
  border-color: rgba(229, 169, 60, 0.35);
  color: var(--gold-light);
  transform: translateY(-1px);
}

/* --- Countdown Timer Glass Unit --- */
.countdown-container {
  margin: 1.25rem auto 1.85rem auto;
  max-width: 580px;
}

.countdown-label-tag {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold-light);
  font-weight: 600;
  margin-bottom: 0.75rem;
  opacity: 0.9;
}

.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
}

.countdown-card {
  background: rgba(18, 22, 34, 0.65);
  backdrop-filter: blur(28px) saturate(200%);
  -webkit-backdrop-filter: blur(28px) saturate(200%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 0.95rem 0.5rem;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), var(--glass-inner-specular);
  transition: all 0.3s ease;
}

.countdown-card:hover {
  transform: translateY(-3px);
  border-color: rgba(229, 169, 60, 0.4);
  box-shadow: 0 15px 35px rgba(229, 169, 60, 0.15), var(--glass-inner-specular);
}

.countdown-value {
  font-family: var(--font-mono);
  font-size: clamp(1.75rem, 3.2vw, 2.35rem);
  font-weight: 700;
  line-height: 1;
  color: #ffffff;
  margin-bottom: 0.25rem;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.countdown-unit {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  font-weight: 600;
}

/* --- Hero Explore CTA --- */
.hero-actions {
  display: flex;
  justify-content: center;
  margin-top: 2.2rem;
}

.btn-explore-hero {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.95rem 2.2rem;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, rgba(229, 169, 60, 0.22) 0%, rgba(229, 169, 60, 0.08) 100%);
  border: 1px solid rgba(229, 169, 60, 0.45);
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35), 0 0 25px rgba(229, 169, 60, 0.25), inset 0 1px 1px rgba(255, 255, 255, 0.2);
  transition: all 0.35s var(--ease-spring);
  cursor: pointer;
}

.btn-explore-hero:hover {
  background: linear-gradient(135deg, rgba(229, 169, 60, 0.45) 0%, rgba(229, 169, 60, 0.2) 100%);
  border-color: rgba(229, 169, 60, 0.75);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.4), 0 0 35px rgba(229, 169, 60, 0.45), inset 0 1px 1px rgba(255, 255, 255, 0.3);
  color: #ffffff;
}

.btn-explore-hero svg {
  transition: transform 0.3s ease;
}

.btn-explore-hero:hover svg {
  transform: translateY(3px);
}

/* --- Waitlist Form & Interactive Role Select --- */
.waitlist-card {
  max-width: 660px;
  margin: 0 auto;
  padding: 1.6rem 2rem;
  border-radius: var(--radius-lg);
  background: rgba(16, 20, 32, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 1px 1px rgba(255, 255, 255, 0.2);
}

.role-selector-wrapper {
  margin-bottom: 1.15rem;
}

.role-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
  margin-bottom: 0.6rem;
  display: block;
}

.role-pill-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.role-pill {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.4rem 0.95rem;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.25s ease;
  user-select: none;
}

.role-pill:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
  border-color: rgba(255, 255, 255, 0.2);
}

.role-pill.active {
  background: linear-gradient(135deg, rgba(229, 169, 60, 0.2) 0%, rgba(229, 169, 60, 0.06) 100%);
  border-color: var(--gold-primary);
  color: var(--gold-light);
  box-shadow: 0 0 15px rgba(229, 169, 60, 0.25);
  font-weight: 600;
}

/* Glass input and button */
.waitlist-form {
  display: flex;
  gap: 0.75rem;
  position: relative;
}

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

.input-glass {
  width: 100%;
  background: rgba(8, 10, 16, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-pill);
  padding: 0.85rem 1.4rem;
  font-size: 0.92rem;
  font-family: var(--font-sans);
  color: #ffffff;
  outline: none;
  transition: all 0.3s ease;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.input-glass::placeholder {
  color: var(--text-muted);
}

.input-glass:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 3px rgba(229, 169, 60, 0.25), inset 0 2px 4px rgba(0, 0, 0, 0.4);
  background: rgba(10, 13, 22, 0.85);
}

.btn-vip-submit {
  background: linear-gradient(135deg, #f6d186 0%, #e5a93c 60%, #b87b1e 100%);
  border: none;
  border-radius: var(--radius-pill);
  padding: 0 1.65rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 700;
  color: #0b0d14;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.35s var(--ease-spring);
  box-shadow: 0 8px 25px rgba(229, 169, 60, 0.35);
  white-space: nowrap;
}

.btn-vip-submit:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 32px rgba(229, 169, 60, 0.55);
  filter: brightness(1.08);
}

.btn-vip-submit:active {
  transform: translateY(1px);
}

.form-feedback {
  min-height: 1.2rem;
  font-size: 0.78rem;
  margin-top: 0.5rem;
  transition: all 0.3s ease;
}

.form-feedback.error {
  color: #ff6b6b;
}

.form-feedback.success {
  color: #2ecc71;
}

/* Social proof Tastemakers Cluster */
.social-proof-bar {
  margin-top: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.avatar-stack {
  display: flex;
  align-items: center;
}

.avatar-circle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid #111420;
  margin-left: -8px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

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

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

.social-proof-count {
  color: #ffffff;
  font-weight: 700;
}

/* --- Section Dividers & Headers --- */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem auto;
}

.section-eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 0.75rem;
  display: inline-block;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-description {
  font-size: 1.05rem;
  color: var(--text-secondary);
}

/* --- Feature Showcase: The Daawatly Experience --- */
.showcase-section {
  padding: 5rem 0 6rem 0;
  position: relative;
}

.showcase-dual-grid {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.showcase-hero-card {
  border-radius: var(--radius-lg);
  background: rgba(14, 18, 28, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), var(--glass-inner-specular);
}

#featureChefCard {
  grid-template-columns: 1fr 1.15fr;
}

#featureChefCard .showcase-content {
  order: -1;
}

.showcase-image-wrapper {
  position: relative;
  min-height: 380px;
  overflow: hidden;
}

.showcase-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-smooth);
}

.showcase-hero-card:hover .showcase-image {
  transform: scale(1.04);
}

.showcase-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 50%, rgba(14, 18, 28, 0.9) 100%),
              linear-gradient(to top, rgba(14, 18, 28, 0.8) 0%, transparent 60%);
  pointer-events: none;
}

.showcase-content {
  padding: 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.badge-luxury {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(229, 169, 60, 0.12);
  border: 1px solid rgba(229, 169, 60, 0.3);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-light);
  width: fit-content;
  margin-bottom: 1.25rem;
}

.showcase-title {
  font-family: var(--font-serif);
  font-size: 2.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.25;
}

.showcase-desc {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 1.75rem;
  line-height: 1.65;
}

.feature-pill-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.feature-pill-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: #e2e8f0;
}

.pill-icon-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(229, 169, 60, 0.15);
  border: 1px solid rgba(229, 169, 60, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* Feature 3-Grid Glass Cards */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.feature-glass-card {
  padding: 2.25rem 2rem;
  border-radius: var(--radius-lg);
  background: rgba(15, 19, 31, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), var(--glass-inner-specular);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.4s var(--ease-spring);
}

.feature-glass-card:hover {
  transform: translateY(-8px);
  border-color: rgba(229, 169, 60, 0.4);
  background: rgba(19, 24, 40, 0.75);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.6), 0 0 25px rgba(229, 169, 60, 0.15);
}

.card-icon-glass {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--gold-light);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.3), var(--glass-inner-specular);
}

.card-icon-glass svg {
  width: 26px;
  height: 26px;
  stroke: var(--gold-light);
}

.card-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.card-body {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.card-footer-tag {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* --- VIP Founding Member Privilege Strip --- */
.vip-privileges-section {
  padding: 4rem 0 6rem 0;
}

.privilege-glass-banner {
  border-radius: var(--radius-lg);
  padding: 3rem 3.5rem;
  background: linear-gradient(135deg, rgba(22, 27, 43, 0.75) 0%, rgba(13, 16, 26, 0.8) 100%);
  border: 1px solid rgba(229, 169, 60, 0.25);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 1px 1px rgba(255, 255, 255, 0.2);
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3rem;
  align-items: center;
}

.privilege-intro h3 {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.privilege-intro p {
  color: var(--text-secondary);
  font-size: 0.98rem;
  line-height: 1.6;
}

.privilege-perks-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.perk-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  transition: all 0.3s ease;
}

.perk-item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(229, 169, 60, 0.3);
  transform: translateY(-2px);
}

.perk-header {
  font-weight: 700;
  color: #ffffff;
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.perk-desc {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* --- FAQ / Teaser Accordion --- */
.faq-section {
  padding: 3rem 0 6rem 0;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: rgba(16, 20, 32, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

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

.faq-toggle-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
  color: var(--gold-light);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.75rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  transition: max-height 0.4s var(--ease-smooth), padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding-bottom: 1.5rem;
}

/* --- VIP Access Pass Modal --- */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(4, 5, 8, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

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

.modal-card {
  width: 100%;
  max-width: 520px;
  background: rgba(14, 18, 30, 0.88);
  border: 1px solid rgba(229, 169, 60, 0.35);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.8), 0 0 40px rgba(229, 169, 60, 0.15), var(--glass-inner-specular);
  position: relative;
  transform: scale(0.92) translateY(20px);
  transition: all 0.4s var(--ease-spring);
  text-align: center;
}

.modal-backdrop.active .modal-card {
  transform: scale(1) translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-secondary);
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.modal-close-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

/* Iridescent Glass VIP Ticket Badge */
.vip-pass-card {
  margin: 1.75rem auto 1.5rem auto;
  border-radius: var(--radius-md);
  padding: 1.75rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(229, 169, 60, 0.05) 50%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(229, 169, 60, 0.4);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
  text-align: left;
}

.vip-pass-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 40%,
    rgba(255, 255, 255, 0.15) 50%,
    transparent 60%
  );
  transform: rotate(25deg);
  animation: ticketSheen 6s infinite;
  pointer-events: none;
}

@keyframes ticketSheen {
  0% { transform: translateX(-100%) rotate(25deg); }
  25%, 100% { transform: translateX(100%) rotate(25deg); }
}

.pass-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}

.pass-brand {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold-light);
}

.pass-pill {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: rgba(229, 169, 60, 0.2);
  border: 1px solid rgba(229, 169, 60, 0.5);
  color: var(--gold-light);
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-pill);
}

.pass-user-info {
  margin-bottom: 1.25rem;
}

.pass-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.pass-email {
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
  word-break: break-all;
}

.pass-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-top: 1px dashed rgba(255, 255, 255, 0.12);
  padding-top: 0.85rem;
}

.pass-num-val {
  font-family: var(--font-mono);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold-light);
}

.pass-qr-mockup {
  display: flex;
  gap: 2px;
  height: 24px;
  align-items: flex-end;
}

.qr-bar {
  width: 3px;
  background: var(--gold-light);
  opacity: 0.8;
  border-radius: 1px;
}

/* Modal action buttons */
.modal-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
}

.btn-modal-action {
  flex: 1;
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-copy-code {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #ffffff;
}

.btn-copy-code:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-share-invite {
  background: linear-gradient(135deg, #f6d186 0%, #e5a93c 100%);
  border: none;
  color: #0b0d14;
  font-weight: 700;
}

.btn-share-invite:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
}

/* Confetti Celebration Canvas */
#confettiCanvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1001;
}

/* --- Footer --- */
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(9, 11, 18, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 3rem 0;
  position: relative;
  z-index: 10;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

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

.footer-social-links {
  display: flex;
  gap: 0.75rem;
}

.social-glass-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-glass-btn:hover {
  background: rgba(229, 169, 60, 0.15);
  border-color: rgba(229, 169, 60, 0.4);
  color: var(--gold-light);
  transform: translateY(-2px);
}

.social-glass-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* --- Responsive Media Queries --- */
@media (max-width: 992px) {
  .showcase-hero-card,
  #featureChefCard {
    grid-template-columns: 1fr;
  }
  
  #featureChefCard .showcase-content {
    order: 0;
  }
  
  .showcase-image-wrapper {
    min-height: 280px;
  }
  
  .showcase-content {
    padding: 2.25rem 2rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  
  .privilege-glass-banner {
    grid-template-columns: 1fr;
    padding: 2.25rem 1.75rem;
    gap: 2rem;
  }
}

@media (max-width: 640px) {
  .site-header {
    top: 0.75rem;
    padding: 0 1rem;
  }
  
  .nav-wrapper {
    padding: 0.6rem 1rem;
  }
  
  .nav-status {
    display: none;
  }
  
  .hero-section {
    padding-top: 7rem;
  }
  
  .countdown-grid {
    gap: 0.5rem;
  }
  
  .countdown-card {
    padding: 0.85rem 0.25rem;
  }
  
  .waitlist-card {
    padding: 1.5rem 1.25rem;
  }
  
  .waitlist-form {
    flex-direction: column;
  }
  
  .btn-vip-submit {
    width: 100%;
    padding: 0.95rem 1.5rem;
    justify-content: center;
  }
  
  .privilege-perks-list {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }
}
