/* ==========================================================================
   doEdits • Premium White Theme & Modern Mobile-Friendly Design System
   ========================================================================== */

:root {
  /* Color Palette - Modern Clean White Base with Vibrant Accents */
  --bg: #ffffff;
  --bg-subtle: #f8fafc;
  --bg-card: rgba(255, 255, 255, 0.72);
  --text-main: #0f172a;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  
  /* Primary & Accent Colors */
  --purple-primary: #7c3aed;
  --purple-dark: #6d28d9;
  --purple-light: #a78bfa;
  --purple-glow: rgba(124, 58, 237, 0.35);
  
  --cyan-accent: #06b6d4;
  --blue-accent: #3b82f6;
  --indigo-accent: #4f46e5;
  --magenta-accent: #ec4899;
  --emerald-accent: #10b981;
  
  /* Glassmorphism & Borders */
  --glass-bg: rgba(255, 255, 255, 0.75);
  --glass-border: rgba(15, 23, 42, 0.08);
  --glass-border-hover: rgba(124, 58, 237, 0.25);
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 12px 32px -8px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 24px 48px -12px rgba(124, 58, 237, 0.12), 0 8px 24px -6px rgba(0, 0, 0, 0.04);
  
  /* Radii & Layout */
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-full: 9999px;
  
  /* Fonts */
  --font-display: 'Outfit', 'Syne', sans-serif;
  --font-body: 'Outfit', 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Transition Timings */
  --tr-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --tr-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --tr-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ---------- Global Resets ---------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background: var(--purple-primary);
  color: #ffffff;
}

a {
  color: inherit;
  text-decoration: none;
}

button, input {
  font-family: inherit;
  font-size: inherit;
}

/* ---------- Moving Background Objects (Ref 2 Inspired on White Canvas) ---------- */
.bg-motion-container {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background-color: #ffffff;
}

.bg-grid-overlay {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(15, 23, 42, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.7;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.5;
  will-change: transform;
  transition: transform 0.8s ease-out;
}

.blob-1 {
  width: 520px;
  height: 520px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.32), rgba(79, 70, 229, 0.28));
  top: -160px;
  left: -160px;
  animation: morphBlob1 22s ease-in-out infinite alternate;
}

.blob-2 {
  width: 580px;
  height: 580px;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.28), rgba(16, 185, 129, 0.22));
  top: 18%;
  right: -200px;
  animation: morphBlob2 26s ease-in-out infinite alternate;
}

.blob-3 {
  width: 480px;
  height: 480px;
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.25), rgba(124, 58, 237, 0.25));
  bottom: 10%;
  left: 20%;
  animation: morphBlob3 20s ease-in-out infinite alternate;
}

.blob-4 {
  width: 440px;
  height: 440px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.25), rgba(6, 182, 212, 0.25));
  top: 60%;
  right: 15%;
  animation: morphBlob4 24s ease-in-out infinite alternate;
}

@keyframes morphBlob1 {
  0% { transform: translate(0, 0) scale(1) rotate(0deg); border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
  50% { transform: translate(60px, 80px) scale(1.12) rotate(90deg); border-radius: 70% 30% 50% 50% / 30% 60% 40% 70%; }
  100% { transform: translate(-40px, 40px) scale(0.95) rotate(180deg); border-radius: 50% 50% 30% 70% / 60% 40% 70% 30%; }
}

@keyframes morphBlob2 {
  0% { transform: translate(0, 0) scale(1) rotate(0deg); border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
  50% { transform: translate(-80px, 60px) scale(1.08) rotate(-120deg); border-radius: 30% 70% 70% 30% / 50% 40% 60% 50%; }
  100% { transform: translate(40px, -50px) scale(0.92) rotate(-240deg); border-radius: 70% 30% 40% 60% / 40% 70% 30% 60%; }
}

@keyframes morphBlob3 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(70px, -60px) scale(1.15); }
  100% { transform: translate(-50px, -30px) scale(0.9); }
}

@keyframes morphBlob4 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-60px, -80px) scale(1.1); }
  100% { transform: translate(50px, 30px) scale(0.95); }
}

/* Pause background motion when user toggles or prefers reduced motion */
body.reduce-motion .blob,
.bg-motion-container.paused .blob {
  animation-play-state: paused !important;
}

/* ---------- Sticky Navigation Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  padding: 16px 5%;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--glass-border);
  transition: var(--tr-fast);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.logo-img {
  height: 38px;
  width: auto;
  object-fit: contain;
}

.logo-text, .drawer-title, .footer-logo-text {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.5px;
}

.dot {
  color: var(--purple-primary);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--tr-fast);
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: var(--text-main);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--purple-primary);
  border-radius: 2px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Button Component Tokens */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--purple-primary), var(--indigo-accent));
  color: #ffffff;
  font-weight: 700;
  font-size: 15px;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 25px -5px var(--purple-glow);
  transition: var(--tr-smooth);
  white-space: nowrap;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px -4px var(--purple-glow);
  background: linear-gradient(135deg, var(--purple-dark), var(--purple-primary));
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-sm {
  padding: 10px 22px;
  font-size: 14px;
}

.btn-lg {
  padding: 16px 34px;
  font-size: 16px;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 34px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--glass-border);
  color: var(--text-main);
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: var(--tr-smooth);
}

.btn-outline:hover {
  background: #ffffff;
  border-color: var(--purple-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Mobile Hamburger Menu Toggle Button */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(15, 23, 42, 0.05);
  border: 1px solid var(--glass-border);
  cursor: pointer;
  transition: var(--tr-fast);
}

.hamburger-bar {
  width: 20px;
  height: 2px;
  background-color: var(--text-main);
  border-radius: 2px;
  transition: var(--tr-fast);
}

.mobile-toggle.active .hamburger-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-toggle.active .hamburger-bar:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active .hamburger-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Mobile Navigation Drawer (Ref 2 Slide Menu) ---------- */
.mobile-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 199;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.mobile-drawer-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 320px;
  max-width: 85vw;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 200;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-drawer.active {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--glass-border);
}

.drawer-close {
  background: rgba(15, 23, 42, 0.06);
  border: none;
  font-size: 28px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  transition: var(--tr-fast);
}

.drawer-close:hover {
  background: rgba(15, 23, 42, 0.12);
}

.drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 32px 0;
}

.drawer-link {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-main);
  transition: var(--tr-fast);
}

.drawer-link:hover {
  color: var(--purple-primary);
  transform: translateX(6px);
}

.drawer-footer {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.drawer-btn {
  width: 100%;
  text-align: center;
}

.drawer-socials {
  display: flex;
  justify-content: center;
  gap: 16px;
  color: var(--text-muted);
}

.drawer-socials a:hover {
  color: var(--purple-primary);
}

/* ---------- Hero Section (Ref 1 + Ref 2 Fusion) ---------- */
.hero-section {
  position: relative;
  z-index: 1;
  padding: 60px 5% 100px;
  max-width: 1280px;
  margin: 0 auto;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center; /* Vertically centers right-hand side orbit badge with hero content! */
  margin: 0 auto;
  position: relative;
}

.hero-content {
  max-width: 820px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-sm);
  margin-bottom: 28px;
  backdrop-filter: blur(12px);
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--purple-primary);
  box-shadow: 0 0 10px var(--purple-primary);
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

.badge-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-main);
  letter-spacing: 0.2px;
}

/* High-Impact Condensed Title (Ref 1 Inspired) */
.hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.02;
  letter-spacing: -1.5px;
  margin-bottom: 28px;
}

.title-sub {
  display: block;
  font-size: clamp(22px, 3.5vw, 36px);
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: -0.5px;
  margin-bottom: 8px;
  text-transform: none;
}

.title-main {
  display: block;
  font-size: clamp(42px, 7vw, 92px);
  color: var(--text-main);
}

.title-highlight {
  display: block;
  font-size: clamp(42px, 7vw, 92px);
  background: linear-gradient(135deg, var(--purple-primary), var(--indigo-accent), var(--magenta-accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.accent-excl {
  color: var(--purple-primary);
  -webkit-text-fill-color: var(--purple-primary);
}

.hero-description {
  font-size: clamp(16px, 1.8vw, 20px);
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 680px;
  margin: 0 0 36px 0;
  text-align: left;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

/* Countdown Timer Cards */
.countdown-grid {
  display: flex;
  justify-content: flex-start;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.countdown-card {
  min-width: 100px;
  padding: 18px 22px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--tr-smooth);
}

.countdown-card:hover {
  transform: translateY(-3px);
  border-color: var(--purple-light);
  box-shadow: var(--shadow-md);
}

.countdown-num {
  display: block;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1;
}

.countdown-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 1px;
  margin-top: 6px;
}

/* Hero Bottom Social & Scroll Bar (Ref 1 Inspired) */
.hero-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--glass-border);
  width: 100%;
  max-width: 680px;
  margin: 0;
}

.social-pills {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-pill {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  transition: var(--tr-smooth);
  box-shadow: var(--shadow-sm);
}

.social-pill:hover {
  background: var(--purple-primary);
  color: #ffffff;
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px -5px var(--purple-glow);
}

.scroll-arrow-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  transition: var(--tr-smooth);
  animation: bounceArrow 2s infinite;
}

.scroll-arrow-link:hover {
  background: var(--text-main);
  color: #ffffff;
}

@keyframes bounceArrow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* Rotating Orbit Circular Emblem Badge (Ref 1 Signature Badge) */
.hero-orbit-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  align-self: center; /* Vertically centers the orbit badge on the right side! */
}

.orbit-badge {
  position: relative;
  width: 180px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.orbit-ring {
  width: 100%;
  height: 100%;
  animation: spinRing 20s linear infinite;
}

.orbit-text {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  fill: var(--text-main);
  text-transform: uppercase;
}

.orbit-center {
  position: absolute;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple-primary);
  transition: var(--tr-bounce);
}

.orbit-badge:hover .orbit-center {
  transform: scale(1.15) rotate(45deg);
  background: var(--purple-primary);
  color: #ffffff;
  box-shadow: 0 14px 28px var(--purple-glow);
}

@keyframes spinRing {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ---------- Features / Showcase Grid Section ---------- */
.section-padding {
  padding: 100px 5%;
  position: relative;
  z-index: 1;
}

.section-container {
  max-width: 1280px;
  margin: 0 auto;
}

.text-center {
  text-align: center;
}

.section-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--purple-primary);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4.5vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-main);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 60px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.feature-card {
  position: relative;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
  transition: var(--tr-smooth);
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
}

.feature-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.feature-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.95);
  border-color: var(--glass-border-hover);
  box-shadow: var(--shadow-lg);
}

.card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(124, 58, 237, 0.06), transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.feature-card:hover .card-glow {
  opacity: 1;
}

.card-icon-box {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  background: rgba(124, 58, 237, 0.08);
  color: var(--purple-primary);
  border: 1px solid rgba(124, 58, 237, 0.16);
  transition: var(--tr-bounce);
}

.feature-card:hover .card-icon-box {
  transform: scale(1.08) rotate(-4deg);
  background: var(--purple-primary);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 10px 24px -4px var(--purple-glow);
}

.card-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 12px;
}

.card-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 28px;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--glass-border);
}

.card-tag {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 1px;
}

.card-arrow {
  font-size: 18px;
  color: var(--purple-primary);
  transition: transform 0.3s ease;
}

.feature-card:hover .card-arrow {
  transform: translateX(6px);
}

/* ---------- Metrics Showcase Section ---------- */
.metrics-section {
  padding: 60px 5%;
}

.metrics-wrapper {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 48px 32px;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 32px;
}

.metric-item {
  text-align: center;
}

.metric-value {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 900;
  color: var(--text-main);
  line-height: 1;
}

.metric-unit {
  color: var(--purple-primary);
}

.metric-label {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-muted);
  margin-top: 8px;
}

.metric-divider {
  width: 1px;
  height: 60px;
  background: var(--glass-border);
}

/* ---------- Notify / Waitlist Section ---------- */
.notify-card {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 64px 40px;
  backdrop-filter: blur(24px);
  box-shadow: var(--shadow-lg);
}

.notify-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 800;
  margin-bottom: 16px;
}

.notify-desc {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto 36px;
}

.notify-form {
  max-width: 520px;
  margin: 0 auto;
}

.input-group {
  display: flex;
  gap: 12px;
  background: #ffffff;
  padding: 6px;
  border-radius: var(--radius-full);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-sm);
  transition: var(--tr-smooth);
}

.input-group:focus-within {
  border-color: var(--purple-primary);
  box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.12);
}

.input-group input {
  flex: 1;
  padding: 14px 24px;
  border: none;
  outline: none;
  background: transparent;
  color: var(--text-main);
  font-size: 15px;
}

.input-group input::placeholder {
  color: var(--text-light);
}

.form-privacy {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 16px;
}

/* ---------- Footer ---------- */
.site-footer {
  position: relative;
  z-index: 1;
  padding: 60px 5% 40px;
  border-top: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}

.footer-tagline {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 6px;
}

.footer-links {
  display: flex;
  gap: 32px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
}

.footer-links a:hover {
  color: var(--purple-primary);
}

.footer-copy {
  font-size: 13px;
  color: var(--text-light);
  padding-top: 20px;
  border-top: 1px solid var(--glass-border);
  width: 100%;
}

/* ---------- Motion Widget & Toast ---------- */
.motion-widget {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 90;
}

.motion-toggle-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(12px);
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-main);
  transition: var(--tr-smooth);
}

.motion-toggle-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  border-color: var(--purple-light);
}

.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.toast {
  padding: 14px 24px;
  border-radius: var(--radius-md);
  background: #0f172a;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 10px;
  pointer-events: auto;
  animation: slideToast 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideToast {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* ---------- Responsive Breakpoints ---------- */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
    margin: 0 auto;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions, .countdown-grid {
    justify-content: center;
  }

  .hero-bottom-bar {
    margin: 0 auto;
  }

  .hero-orbit-wrapper {
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  .desktop-nav, .desk-only {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .hero-section {
    padding-top: 40px;
    padding-bottom: 60px;
  }

  .countdown-card {
    min-width: 76px;
    padding: 14px 16px;
  }

  .countdown-num {
    font-size: 24px;
  }

  .metric-divider {
    display: none;
  }

  .metrics-wrapper {
    flex-direction: column;
    gap: 24px;
  }

  .input-group {
    flex-direction: column;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
  }

  .input-group input {
    background: #ffffff;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-full);
    padding: 16px 24px;
    box-shadow: var(--shadow-sm);
  }

  .input-group input:focus {
    border-color: var(--purple-primary);
  }

  .form-submit-btn {
    width: 100%;
  }

  .notify-card {
    padding: 40px 20px;
  }

  .motion-widget {
    bottom: 16px;
    left: 16px;
  }
}

@media (max-width: 480px) {
  .orbit-badge {
    width: 140px;
    height: 140px;
  }

  .orbit-center {
    width: 52px;
    height: 52px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
    margin-bottom: 20px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .btn-primary, .btn-outline {
    width: 100%;
  }
}