@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Space+Grotesk:wght@500;600;700&display=swap");

:root {
  /* Modern Color System */
  --gray-50: #fafafa;
  --gray-100: #f5f5f5;
  --gray-200: #e5e5e5;
  --gray-300: #d4d4d4;
  --gray-400: #a3a3a3;
  --gray-500: #737373;
  --gray-600: #525252;
  --gray-700: #404040;
  --gray-800: #262626;
  --gray-900: #171717;
  --gray-950: #0a0a0a;

  /* Brand Colors */
  --primary: #06b6d4;
  --primary-light: #22d3ee;
  --primary-dark: #0891b2;
  --accent: #f97316;
  --accent-light: #fb923c;
  
  /* Semantic Colors */
  --bg: #0f0f0f;
  --bg-elevated: #1a1a1a;
  --bg-card: #1f1f1f;
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.16);
  --text-primary: #fafafa;
  --text-secondary: #a3a3a3;
  --text-tertiary: #737373;
  
  /* Glass Effect */
  --glass-bg: rgba(31, 31, 31, 0.7);
  --glass-border: rgba(255, 255, 255, 0.1);
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 40px rgba(6, 182, 212, 0.3);
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 0.75rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 3rem;
  --spacing-3xl: 4rem;
  --spacing-4xl: 6rem;
  
  /* Border Radius */
  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-2xl: 2rem;
  --radius-full: 9999px;
  
  /* Layout */
  --max-width: 1280px;
  --content-width: 920px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Background Effects */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  background: 
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(6, 182, 212, 0.15), transparent),
    radial-gradient(ellipse 60% 50% at 90% 60%, rgba(249, 115, 22, 0.1), transparent);
  pointer-events: none;
  z-index: 0;
}

.page {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--gray-400) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
}

p {
  line-height: 1.7;
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 50%, var(--primary-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-accent-gradient {
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.trail-quest-word {
  color: #f97316;
}

/* Header/Nav */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(15, 15, 15, 0.8);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}

header.scrolled {
  background: rgba(15, 15, 15, 0.95);
  box-shadow: var(--shadow-lg);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.brand:hover {
  opacity: 0.8;
}

.brand-logo {
  height: 36px;
  width: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  object-fit: contain;
  padding: 4px;
}

.brand-text {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  position: relative;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: var(--radius-full);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  box-shadow: 0 4px 14px 0 rgba(6, 182, 212, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px 0 rgba(6, 182, 212, 0.5);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  color: var(--text-primary);
  border: 1px solid var(--border);
}

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

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  color: var(--text-primary);
  border-color: var(--border-hover);
  background: var(--bg-card);
}

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

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  padding: 0;
  border: 1px solid var(--border);
  background: var(--bg-card);
  border-radius: 12px;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: var(--text-primary);
  border-radius: var(--radius-full);
  transition: all 0.3s ease;
}

.mobile-nav {
  display: none;
}

/* Main Content */
main {
  flex: 1;
  padding-top: 80px;
}

section {
  padding: var(--spacing-4xl) var(--spacing-xl);
  position: relative;
}

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-content {
  max-width: var(--content-width);
  margin: 0 auto;
}

/* Hero Section */
.hero {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  padding: var(--spacing-4xl) var(--spacing-xl);
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 800px;
  text-align: center;
  margin: 0 auto;
  animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary-light);
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.hero h1 {
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease-out 0.3s backwards;
}

.hero-description {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  line-height: 1.6;
  animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.5s backwards;
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
  animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

.stat-card {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  text-align: center;
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-lg);
}

.stat-value {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* Card Components */
.card {
  padding: 2rem;
  border-radius: var(--radius-xl);
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.card-glass {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
}

.card-header {
  margin-bottom: 1.5rem;
}

.card-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.card-title {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.card-description {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Grid Layouts */
.grid {
  display: grid;
  gap: 2rem;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.waitlist-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

/* Bento Box Layout */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.bento-item {
  padding: 2rem;
  border-radius: var(--radius-xl);
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  transition: all 0.3s ease;
  overflow: hidden;
  position: relative;
}

.bento-item:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.bento-large {
  grid-column: span 8;
}

.bento-medium {
  grid-column: span 4;
}

.bento-small {
  grid-column: span 6;
}

/* Feature Cards */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  padding: 2rem;
  border-radius: var(--radius-xl);
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.feature-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.feature-description {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Mock UI Elements */
.mock-ui {
  position: relative;
  border-radius: var(--radius-lg);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  padding: 1.5rem;
  min-height: 300px;
}

.mock-window {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  overflow: hidden;
}

.mock-titlebar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
}

.mock-dot {
  width: 12px;
  height: 12px;
  border-radius: var(--radius-full);
  background: var(--gray-600);
}

.mock-content {
  padding: 1.5rem;
}

.mock-row {
  height: 12px;
  background: var(--gray-800);
  border-radius: var(--radius-sm);
  margin-bottom: 0.75rem;
}

.mock-row.short {
  width: 60%;
}

.mock-row.medium {
  width: 80%;
}

/* Forms */
form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-primary);
}

input,
textarea,
select {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  color: var(--text-primary);
  font-family: inherit;
  font-size: 0.9375rem;
  transition: all 0.2s ease;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

/* Pills/Badges */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 500;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--text-secondary);
}

.pill-primary {
  background: rgba(6, 182, 212, 0.1);
  color: var(--primary-light);
  border-color: rgba(6, 182, 212, 0.3);
}

.pill-accent {
  background: rgba(249, 115, 22, 0.1);
  color: var(--accent-light);
  border-color: rgba(249, 115, 22, 0.3);
}

/* Room Dot Status Tracker */
.status-tracker {
  margin-top: 2rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-xl);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  text-align: left;
}

.status-tracker-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
}

.status-tracker-meta .card-label {
  margin-bottom: 0;
}

.status-current {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(6, 182, 212, 0.35);
  background: rgba(6, 182, 212, 0.1);
  color: var(--primary-light);
  font-size: 0.75rem;
  font-weight: 600;
}

.status-track {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.5rem;
}

.status-step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  text-align: center;
  color: var(--text-tertiary);
  font-size: 0.74rem;
  font-weight: 600;
  line-height: 1.25;
}

.status-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 5px;
  left: calc(50% + 14px);
  width: calc(100% - 28px);
  height: 2px;
  background: color-mix(in srgb, var(--border) 85%, transparent);
}

.status-node {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid color-mix(in srgb, var(--border) 90%, transparent);
  background: var(--bg-card);
  z-index: 1;
}

.status-step.is-complete {
  color: var(--text-secondary);
}

.status-step.is-complete .status-node {
  border-color: var(--primary-dark);
  background: var(--primary-dark);
}

.status-step.is-complete:not(:last-child)::after {
  background: linear-gradient(90deg, var(--primary-dark), color-mix(in srgb, var(--border) 85%, transparent));
}

.status-step.is-current {
  color: var(--text-primary);
}

.status-step.is-current .status-node {
  width: 14px;
  height: 14px;
  border-color: var(--primary);
  background: var(--primary);
  box-shadow: 0 0 0 7px rgba(6, 182, 212, 0.14);
  animation: statusPulse 2.8s ease-in-out infinite;
}

.status-step.is-current:not(:last-child)::after {
  background: linear-gradient(90deg, rgba(6, 182, 212, 0.45), color-mix(in srgb, var(--border) 85%, transparent));
  animation: statusShimmer 3.6s linear infinite;
}

.status-updated {
  margin-top: 0.85rem;
  font-size: 0.75rem;
  color: var(--text-tertiary);
}

.status-tracker-side {
  margin-top: 1.5rem;
}

.status-tracker-side .status-track {
  grid-template-columns: 1fr;
  gap: 0.55rem;
}

.status-tracker-side .status-step {
  display: block;
  min-height: 1.15rem;
  padding-left: 1.35rem;
  text-align: left;
}

.status-tracker-side .status-node {
  position: absolute;
  left: 0;
  top: 0.22rem;
}

.status-tracker-side .status-step .status-text {
  display: inline-block;
  padding-top: 0;
}

.status-tracker-side .status-step:not(:last-child)::after {
  top: 1rem;
  left: 5px;
  width: 2px;
  height: calc(100% + 8px);
}

.status-tracker-side .status-step.is-current .status-node {
  width: 12px;
  height: 12px;
  box-shadow: 0 0 0 4px rgba(6, 182, 212, 0.16);
}

@keyframes statusPulse {
  0%, 100% {
    box-shadow: 0 0 0 7px rgba(6, 182, 212, 0.12);
  }
  50% {
    box-shadow: 0 0 0 11px rgba(6, 182, 212, 0.18);
  }
}

@keyframes statusShimmer {
  0% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.2);
  }
  100% {
    filter: brightness(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .status-step.is-current .status-node,
  .status-step.is-current:not(:last-child)::after {
    animation: none;
  }
}

/* Footer */
footer {
  border-top: 1px solid var(--border);
  padding: 3rem 2rem;
  background: var(--bg-elevated);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

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

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  font-size: 1rem;
}

.footer-logo {
  height: 32px;
  width: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  object-fit: contain;
  padding: 4px;
}

.footer-legal {
  color: var(--text-tertiary);
  font-size: 0.9375rem;
}

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

/* Utility Classes */
.text-center {
  text-align: center;
}

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

.text-secondary {
  color: var(--text-secondary);
}

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

.mt-2 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }
.mt-8 { margin-top: 4rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-8 { margin-bottom: 4rem; }

/* Responsive */
@media (max-width: 1024px) {
  .bento-large,
  .bento-medium,
  .bento-small {
    grid-column: span 12;
  }
}

/* App Icon Showcase */
.app-icon-showcase {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  perspective: 1000px;
}

.app-icon-hero {
  width: 400px;
  height: 400px;
  border-radius: 28%;
  position: relative;
  z-index: 2;
  animation: iconFloat 6s ease-in-out infinite;
  box-shadow: 
    0 20px 60px rgba(6, 182, 212, 0.4),
    0 40px 80px rgba(6, 182, 212, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease;
}

.app-icon-hero:hover {
  animation-play-state: paused;
  transform: scale(1.05) translateY(-10px);
}

.icon-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.3) 0%, transparent 70%);
  animation: glowPulse 4s ease-in-out infinite;
  z-index: 1;
  border-radius: 50%;
  filter: blur(40px);
}

@keyframes iconFloat {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  25% {
    transform: translateY(-15px) rotate(1deg);
  }
  50% {
    transform: translateY(-10px) rotate(0deg);
  }
  75% {
    transform: translateY(-15px) rotate(-1deg);
  }
}

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

/* Screenshot showcase responsive */
@media (max-width: 968px) {
  .grid.grid-2 > div[style*="order: 1"] {
    order: 2 !important;
  }
  
  .grid.grid-2 > div[style*="order: 2"] {
    order: 1 !important;
  }
  
  .app-icon-hero {
    width: 280px;
    height: 280px;
  }
  
  .icon-glow {
    width: 400px;
    height: 400px;
  }
}

@media (max-width: 768px) {
  .nav-inner {
    padding: 0.875rem 1rem;
    gap: 0.75rem;
  }

  .brand {
    min-width: 0;
  }

  .brand-text {
    font-size: 1rem;
    line-height: 1.1;
  }

  .brand-logo {
    border: none;
    background: transparent;
    padding: 2px;
  }

  .nav-inner > .btn {
    display: none;
  }

  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  header.mobile-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  header.mobile-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  header.mobile-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(15, 15, 15, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 1rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  header.mobile-open .mobile-nav {
    display: block;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-nav a {
    display: block;
    padding: 1rem;
    color: var(--text-secondary);
    text-decoration: none;
    border-bottom: 1px solid var(--border);
    transition: all 0.2s ease;
  }

  .mobile-nav a:hover,
  .mobile-nav a.active {
    color: var(--text-primary);
    background: var(--bg-card);
  }

  .mobile-nav a:last-child {
    border-bottom: none;
  }

  section {
    padding: var(--spacing-2xl) var(--spacing-md);
  }

  .hero {
    min-height: auto;
    padding: calc(80px + var(--spacing-xl)) var(--spacing-md) var(--spacing-3xl) var(--spacing-md);
  }

  .hero-label {
    pointer-events: none;
    -webkit-tap-highlight-color: transparent;
  }

  .hero-actions {
    flex-direction: column;
  }

  .contact-form-sticky {
    position: static !important;
  }

  .btn {
    width: 100%;
  }

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

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

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

  /* Scale down UI mockups on mobile */
  body {
    overflow-x: hidden;
  }

  section {
    overflow-x: hidden;
  }

  .ui-mockup-section {
    transform: scale(0.85);
    transform-origin: top center;
    margin: -2rem 0;
  }

  .waitlist-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .status-tracker {
    margin-top: 1.5rem;
    padding: 0.95rem 1rem;
  }

  .status-tracker-meta {
    margin-bottom: 0.75rem;
  }

  .status-current {
    font-size: 0.7rem;
  }

  .status-track {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .status-step {
    align-items: flex-start;
    flex-direction: row;
    gap: 0.65rem;
    padding-left: 0.25rem;
    text-align: left;
  }

  .status-step .status-text {
    padding-top: 0.05rem;
  }

  .status-step:not(:last-child)::after {
    top: 14px;
    left: 6px;
    width: 2px;
    height: calc(100% + 10px);
  }

  .status-step.is-current .status-node {
    box-shadow: 0 0 0 6px rgba(6, 182, 212, 0.14);
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }

  .hero-description {
    font-size: 1rem;
  }

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

  .app-icon-hero {
    width: 220px !important;
    height: 220px !important;
  }

  .icon-glow {
    width: 280px !important;
    height: 280px !important;
  }
}
