/* ═══════════════════════════════════════════
   LockD In — Design System & Landing Page
   ═══════════════════════════════════════════ */

/* ── Tokens ── */
:root {
  --bg-primary: #050505;
  --bg-secondary: #0A0A0C;
  --bg-card: #121214;
  --bg-card-hover: #1E1E24;
  --border-subtle: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(255, 255, 255, 0.14);

  --text-primary: #FFFFFF;
  --text-secondary: #9CA3AF;
  --text-muted: #9CA3AF;
  --text-faint: #6B7280;

  --accent: #A855F7;
  --accent-dark: #9333EA;
  --accent-light: #C084FC;
  --accent-glow: rgba(168, 85, 247, 0.20);
  --accent-glow-strong: rgba(168, 85, 247, 0.50);

  /* Mock screen colors */
  --mock-purple: #7B6BF5;
  --mock-green: #10B981;
  --mock-orange: #F59E0B;
  --mock-red: #EF4444;
  --mock-gray: #6B7280;
  --mock-blue: #3B82F6;
  --mock-pink: #EC4899;

  --font-heading: 'Outfit', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  --nav-height: 72px;
  --section-pad: 120px;
  --container: 1120px;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 100px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

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

/* ── Section utility ── */
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.6rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  text-align: center;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  text-align: center;
  max-width: 560px;
  margin: 16px auto 0;
  line-height: 1.7;
}

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

/* ═══════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
   ═══════════════════════════════════════════ */

/* Base reveal state */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

/* Directional variants */
.reveal-left {
  opacity: 0;
  transform: translateX(-48px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal-right {
  opacity: 0;
  transform: translateX(48px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal-left.visible,
.reveal-right.visible,
.reveal-scale.visible {
  opacity: 1;
  transform: translateX(0) scale(1);
}

/* Stagger delays for child elements */
.stagger-1 {
  transition-delay: 0.08s;
}

.stagger-2 {
  transition-delay: 0.16s;
}

.stagger-3 {
  transition-delay: 0.24s;
}

.stagger-4 {
  transition-delay: 0.32s;
}

.stagger-5 {
  transition-delay: 0.40s;
}

.stagger-6 {
  transition-delay: 0.48s;
}

/* Respect user preference for reduced motion */
@media (prefers-reduced-motion: reduce) {

  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-scale {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ═══════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  background: rgba(5, 5, 5, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  transition: background 0.3s ease;
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo-img {
  height: 32px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: screen;
  border-radius: 8px;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  gap: 36px;
}

.nav-link {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color 0.2s ease;
  position: relative;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s var(--ease-out);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: border-color 0.2s ease, color 0.2s ease;
  cursor: pointer;
}

.social-icon:hover {
  border-color: var(--border-hover);
  color: var(--text-primary);
}

.btn-download {
  height: 36px;
  padding: 0 20px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-subtle);
  background: transparent;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  transition: background 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
}

.btn-download:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--border-hover);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
}

.nav-hamburger span {
  display: block;
  height: 2px;
  background: var(--text-muted);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

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

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

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

.mobile-menu {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 32px;
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border-subtle);
}

.mobile-menu.open {
  display: flex;
}

.mobile-link {
  font-size: 1.1rem;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

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

.mobile-social {
  display: flex;
  gap: 12px;
}

.mobile-download {
  width: 100%;
  justify-content: center;
}

/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-height) + 48px) 32px 48px;
  position: relative;
  overflow: hidden;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: var(--container);
  gap: 48px;
  position: relative;
  z-index: 1;
}

.hero-content-left {
  flex: 1;
  max-width: 540px;
}

.hero-content-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  position: relative;
}

.hero-logo {
  margin: 0 0 16px 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  animation: glow-pulse 3s ease-in-out infinite;
}

.hero-logo-img {
  width: clamp(80px, 14vw, 120px);
  height: auto;
  border-radius: var(--radius-xl);
  mix-blend-mode: screen;
  box-shadow: 0 8px 40px rgba(168, 85, 247, 0.25);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 16px;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

.hero-tagline {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: var(--text-muted);
  margin-bottom: 24px;
  letter-spacing: 0.01em;
  line-height: 1.5;
}

/* Waitlist form */
.waitlist-form-wrapper {
  margin-bottom: 16px;
  max-width: 460px;
}

.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.waitlist-input-group {
  display: flex;
  gap: 0;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-subtle);
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.waitlist-input-group:focus-within {
  border-color: var(--accent);
}

.waitlist-input {
  flex: 1;
  padding: 0 24px;
  height: 52px;
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-primary);
}

.waitlist-input::placeholder {
  color: var(--text-faint);
}

.waitlist-btn {
  padding: 0 28px;
  height: 52px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease;
}

.waitlist-btn:hover {
  background: var(--accent-dark);
}

.waitlist-error {
  font-size: 0.82rem;
  color: var(--mock-red);
  padding-left: 24px;
  min-height: 0;
  transition: min-height 0.2s ease;
}

.waitlist-error:empty {
  display: none;
}

.waitlist-success {
  display: none;
  flex-direction: column;
  gap: 16px;
  padding: 28px 32px;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  animation: successFadeIn 0.6s var(--ease-out) both;
  max-width: 460px;
}

@keyframes successFadeIn {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.waitlist-success-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-glow);
  border: 1px solid rgba(168, 85, 247, 0.2);
}

.waitlist-success-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.waitlist-success-text {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.waitlist-success-email {
  font-size: 0.82rem;
  color: var(--text-faint);
  margin-top: 2px;
}

.waitlist-success-actions {
  margin-top: 4px;
  padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
}

.waitlist-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 500;
  font-family: var(--font-heading);
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
}

.waitlist-share-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--border-hover);
  color: var(--text-primary);
}

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

.hero-social-proof {
  font-size: 0.95rem;
  color: var(--text-faint);
}

.hero-social-proof strong {
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════
   PHONE MOCKUP BASE — iPhone 16 Pro
   ═══════════════════════════════════════════ */
.phone {
  flex-shrink: 0;
}

.phone-frame {
  background: #000;
  border-radius: 52px;
  padding: 3px;
  position: relative;
  box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.8), 0 0 40px rgba(168, 85, 247, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

/* Titanium frame edge highlight */
.phone-frame::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 53px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1) 0%, transparent 40%, transparent 60%, rgba(255, 255, 255, 0.04) 100%);
  pointer-events: none;
  z-index: 0;
}

/* Side button */
.phone-frame::after {
  content: '';
  position: absolute;
  right: -2px;
  top: 120px;
  width: 3px;
  height: 32px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 0 2px 2px 0;
}

/* Dynamic Island — iPhone 16 Pro (pill shaped, smaller) */
.phone-notch {
  width: 72px;
  height: 22px;
  background: #000000;
  border-radius: 20px;
  margin: 6px auto 0;
  position: relative;
  z-index: 2;
}

.phone-screen {
  background: #000;
  border-radius: 48px;
  padding: 20px 14px;
  margin-top: -14px;
  position: relative;
  min-height: 340px;
  overflow: hidden;
}

/* Hero specific phone */
.hero-phone-wrapper {
  position: relative;
  animation: float 6s ease-in-out infinite;
  transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
}

.phone-hero .phone-frame {
  width: 260px;
  z-index: 3;
}

.phone-hero .phone-screen {
  min-height: 480px;
}

/* Mock UI elements */
.mock-bar {
  height: 10px;
  border-radius: 6px;
  margin-bottom: 6px;
}

.mock-spacer {
  height: 16px;
}

.mock-dots {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.mock-dot {
  width: 24px;
  height: 8px;
  border-radius: 4px;
  background: #D1D5DB;
}

.mock-row {
  display: flex;
  gap: 6px;
  margin-bottom: 6px;
}

/* Phone screen with real screenshots */
.phone-screen-hero {
  padding: 0;
  background: #000;
  display: flex;
  align-items: stretch;
}

.screen-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  border-radius: 0 0 48px 48px;
}

/* ═══════════════════════════════════════════
   FEATURES
   ═══════════════════════════════════════════ */
.features {
  padding: var(--section-pad) 32px;
  background: var(--bg-secondary);
  position: relative;
}

/* subtle top gradient fade */
.features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, var(--bg-primary), var(--bg-secondary));
  pointer-events: none;
}

.feature-row {
  display: flex;
  align-items: stretch;
  max-width: var(--container);
  margin: 0 auto 140px;
  gap: 0;
  border-radius: var(--radius-xl);
  overflow: visible;
  position: relative;
}

.feature-row:last-child {
  margin-bottom: 0;
}

.feature-row.reverse {
  flex-direction: row-reverse;
}

/* ── Full card container — text side ── */
.feature-text-col {
  flex: 1.2;
  padding: 72px 80px;
  border-radius: var(--radius-xl);
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: box-shadow 0.3s ease;
}

/* ── Per-feature color matching (from screenshots) ── */

/* Stats: purple/violet (radar chart, goal borders) */
.feature-stats .feature-text-col {
  background: rgba(168, 85, 247, 0.06);
  border: 1px solid rgba(168, 85, 247, 0.15);
  box-shadow: 0 8px 40px rgba(168, 85, 247, 0.08);
}
.feature-stats .phone-frame {
  box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.8), 0 0 50px rgba(168, 85, 247, 0.2);
}

/* Streaks: vivid purple (heatmap dots, activity) */
.feature-streaks .feature-text-col {
  background: rgba(139, 92, 246, 0.06);
  border: 1px solid rgba(139, 92, 246, 0.15);
  box-shadow: 0 8px 40px rgba(139, 92, 246, 0.08);
}
.feature-streaks .phone-frame {
  box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.8), 0 0 50px rgba(139, 92, 246, 0.2);
}

/* Quests: green (progress rings, check marks, borders) */
.feature-quests .feature-text-col {
  background: rgba(34, 197, 94, 0.06);
  border: 1px solid rgba(34, 197, 94, 0.15);
  box-shadow: 0 8px 40px rgba(34, 197, 94, 0.08);
}
.feature-quests .phone-frame {
  box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.8), 0 0 50px rgba(34, 197, 94, 0.2);
}

/* Timer: emerald green (timer display, ring, workout text) */
.feature-timer .feature-text-col {
  background: rgba(16, 185, 129, 0.06);
  border: 1px solid rgba(16, 185, 129, 0.15);
  box-shadow: 0 8px 40px rgba(16, 185, 129, 0.08);
}
.feature-timer .phone-frame {
  box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.8), 0 0 50px rgba(16, 185, 129, 0.2);
}

/* Skills: teal/dark green (hexagon nodes, skill tree) */
.feature-skills .feature-text-col {
  background: rgba(20, 184, 166, 0.06);
  border: 1px solid rgba(20, 184, 166, 0.15);
  box-shadow: 0 8px 40px rgba(20, 184, 166, 0.08);
}
.feature-skills .phone-frame {
  box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.8), 0 0 50px rgba(20, 184, 166, 0.2);
}

/* Goals: amber/orange (goal titles, XP labels, progress bars) */
.feature-goals .feature-text-col {
  background: rgba(245, 158, 11, 0.06);
  border: 1px solid rgba(245, 158, 11, 0.15);
  box-shadow: 0 8px 40px rgba(245, 158, 11, 0.08);
}
.feature-goals .phone-frame {
  box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.8), 0 0 50px rgba(245, 158, 11, 0.2);
}

/* ── Phone column — pops out from under card ── */
.feature-img-col {
  flex: 0.8;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
  z-index: 2;
  margin-right: -60px;
  align-self: flex-end;
  margin-bottom: -60px;
}

.feature-row.reverse .feature-img-col {
  margin-right: 0;
  margin-left: -60px;
}

/* Phone sizing — feature sections */
.feature-img-col .phone-frame {
  width: 260px;
}

.phone-screen-feat {
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0;
  background: #000;
}

.feature-heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  line-height: 1.2;
}

.feature-paragraph {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  color: var(--text-muted);
  line-height: 1.6;
}

/* Chart mock */
.mock-chart {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 120px;
  padding: 12px 0;
}

.chart-bar {
  flex: 1;
  background: linear-gradient(180deg, var(--mock-purple), rgba(123, 107, 245, 0.3));
  border-radius: 4px 4px 0 0;
  min-width: 14px;
}

/* Streak mock */
.mock-streak {
  display: flex;
  gap: 8px;
  justify-content: center;
}

.streak-day {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: #E5E7EB;
}

.streak-day.active {
  background: var(--mock-green);
}

/* Progress ring */
.mock-progress-ring {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 0 auto;
}

.ring-label {
  position: absolute;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  color: #333;
}

/* ═══════════════════════════════════════════
   CREATOR
   ═══════════════════════════════════════════ */
.creator {
  padding: var(--section-pad) 32px;
  background: var(--bg-primary);
  position: relative;
  display: flex;
  justify-content: center;
}

.creator-container {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.creator-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 48px;
  display: flex;
  gap: 48px;
  align-items: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  position: relative;
}

.creator-avatar-wrapper {
  position: relative;
  flex-shrink: 0;
  width: 160px;
  height: 160px;
}

.creator-avatar-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: var(--accent);
  filter: blur(60px);
  opacity: 0.6;
  z-index: 0;
}

.creator-avatar-img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  position: relative;
  z-index: 1;
  border: 5px solid var(--bg-primary);
  background: linear-gradient(135deg, #1A0F2E 0%, #2D1B4E 100%);
}

.creator-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.creator-label {
  color: #8b5cf6;
  /* Match typical accent color */
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.creator-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.creator-text {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 12px;
}

.creator-text:last-of-type {
  margin-bottom: 24px;
}

.creator-socials {
  display: flex;
  align-items: center;
  gap: 12px;
}

.socials-label {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-right: 4px;
}

.creator-social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all 0.2s ease;
  background: transparent;
}

.creator-social-icon:hover {
  color: var(--text-primary);
  border-color: var(--border-hover);
  background: rgba(255, 255, 255, 0.05);
}

@media (max-width: 768px) {
  .creator-card {
    flex-direction: column;
    padding: 40px 24px;
    gap: 32px;
    text-align: center;
  }

  .creator-socials {
    justify-content: center;
  }
}

/* ═══════════════════════════════════════════
   PRIVACY
   ═══════════════════════════════════════════ */
.privacy {
  padding: var(--section-pad) 32px;
}

.privacy-container {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 80px;
  align-items: center;
}

.privacy-left {
  flex: 1;
  max-width: 540px;
}

.privacy-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.privacy-header {
  margin-bottom: 48px;
  text-align: left;
}

.privacy-header .section-title,
.privacy-header .section-subtitle {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.privacy-features {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.privacy-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.privacy-icon-badge {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, #150D2E, #1A1127);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.privacy-item-text h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.privacy-item-text p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Privacy card */
.privacy-card {
  width: 100%;
  max-width: 480px;
  background: rgba(18, 18, 20, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  text-align: center;
}

.privacy-card-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, #150D2E, #1A1127);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
}

.privacy-card-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.privacy-card-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 340px;
  margin: 0 auto;
}

.privacy-card-divider {
  width: 100%;
  height: 1px;
  background: var(--border-subtle);
  margin: 28px 0;
}

.privacy-card-badges {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.privacy-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════ */
.faq {
  padding: var(--section-pad) 32px;
  background: var(--bg-secondary);
  position: relative;
}

.faq::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, var(--bg-primary), var(--bg-secondary));
  pointer-events: none;
}

.faq-header {
  margin-bottom: 56px;
  position: relative;
  z-index: 1;
}

.faq-list {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  transition: border-color 0.2s ease;
}

.faq-item:hover {
  border-color: var(--border-hover);
}

.faq-item.open {
  border-color: rgba(168, 85, 247, 0.25);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-primary);
  text-align: left;
  cursor: pointer;
  transition: color 0.2s ease;
}

.faq-question:hover {
  color: var(--accent);
}

.faq-chevron {
  flex-shrink: 0;
  transition: transform 0.3s var(--ease-out);
  color: var(--text-faint);
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  color: var(--accent);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out), padding 0.4s var(--ease-out);
}

.faq-item.open .faq-answer {
  max-height: 200px;
  padding: 0 28px 24px;
}

.faq-answer p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.footer {
  padding: 80px 32px 32px;
  border-top: 1px solid var(--border-subtle);
}

.footer-top {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo-img {
  height: 28px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: screen;
  border-radius: 6px;
}

.footer-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 360px;
}

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

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-faint);
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

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

.footer-bottom {
  max-width: var(--container);
  margin: 48px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
  text-align: center;
}

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

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

/* Tablet */
@media (max-width: 1024px) {
  :root {
    --section-pad: 80px;
  }

  .hero-container {
    flex-direction: column;
    text-align: center;
    gap: 32px;
  }

  .hero-content-left {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

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

  .waitlist-form-wrapper {
    margin-left: auto;
    margin-right: auto;
  }

  .feature-row,
  .feature-row.reverse {
    flex-direction: column;
    text-align: center;
    margin-bottom: 100px;
  }

  .feature-img-col,
  .feature-row.reverse .feature-img-col {
    margin: 0 0 -60px 0;
    align-self: center;
  }

  .feature-text-col {
    padding: 80px 40px 48px;
  }

  .privacy-container {
    flex-direction: column;
    text-align: center;
    gap: 60px;
  }

  .privacy-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 100%;
  }

  .privacy-header,
  .privacy-header .section-title,
  .privacy-header .section-subtitle {
    text-align: center;
  }

  .privacy-right {
    justify-content: center;
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --section-pad: 64px;
    --nav-height: 64px;
  }

  .nav-links,
  .nav-actions {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

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

  .hero-title {
    font-size: clamp(1.75rem, 7vw, 2.2rem);
  }

  .phone-hero .phone-frame {
    width: 240px;
  }

  .phone-hero .phone-screen {
    min-height: 440px;
  }

  .waitlist-input-group {
    flex-direction: column;
    border-radius: var(--radius-lg);
  }

  .waitlist-input {
    height: 48px;
    text-align: center;
    border-bottom: 1px solid var(--border-subtle);
  }

  .waitlist-btn {
    height: 48px;
    border-radius: 0;
  }

  .waitlist-success {
    font-size: 0.84rem;
    border-radius: var(--radius-lg);
    text-align: center;
    justify-content: center;
  }

  .feature-row {
    margin-bottom: 80px;
  }

  .feature-text-col {
    padding: 72px 24px 36px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .footer-brand-col {
    align-items: center;
  }

  .footer-desc {
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-col {
    align-items: center;
  }

  .privacy-card-badges {
    gap: 16px;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .phone-hero .phone-frame {
    width: 200px;
  }

  .phone-hero .phone-screen {
    min-height: 380px;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .feature-row {
    margin-bottom: 60px;
  }

  .feature-img-col .phone-frame {
    width: 220px;
  }
}

/* ═══════════════════════════════════════════
   NEBULA BACKGROUND
   ═══════════════════════════════════════════ */
.nebula-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.nebula-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  will-change: transform;
}

.nebula-orb-1 {
  width: 600px;
  height: 600px;
  top: -10%;
  left: -5%;
  background: radial-gradient(ellipse, rgba(168, 85, 247, 0.22) 0%, transparent 70%);
  animation: nebula-drift-1 18s ease-in-out infinite alternate;
}

.nebula-orb-2 {
  width: 500px;
  height: 500px;
  top: 20%;
  right: -10%;
  background: radial-gradient(ellipse, rgba(147, 51, 234, 0.18) 0%, transparent 70%);
  animation: nebula-drift-2 22s ease-in-out infinite alternate;
}

.nebula-orb-3 {
  width: 400px;
  height: 400px;
  bottom: 5%;
  left: 30%;
  background: radial-gradient(ellipse, rgba(192, 132, 252, 0.12) 0%, transparent 65%);
  animation: nebula-drift-3 26s ease-in-out infinite alternate;
}

.nebula-orb-4 {
  width: 350px;
  height: 350px;
  top: 50%;
  left: 60%;
  background: radial-gradient(ellipse, rgba(99, 102, 241, 0.10) 0%, transparent 60%);
  animation: nebula-drift-4 20s ease-in-out infinite alternate;
}

@keyframes nebula-drift-1 {
  0% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(60px, 40px) scale(1.08);
  }

  66% {
    transform: translate(20px, 80px) scale(0.95);
  }

  100% {
    transform: translate(80px, 20px) scale(1.05);
  }
}

@keyframes nebula-drift-2 {
  0% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(-50px, 60px) scale(1.1);
  }

  66% {
    transform: translate(-80px, 20px) scale(0.92);
  }

  100% {
    transform: translate(-30px, 70px) scale(1.06);
  }
}

@keyframes nebula-drift-3 {
  0% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(-40px, -50px) scale(1.12);
  }

  100% {
    transform: translate(50px, -20px) scale(0.94);
  }
}

@keyframes nebula-drift-4 {
  0% {
    transform: translate(0, 0) scale(1);
  }

  40% {
    transform: translate(-60px, 40px) scale(1.08);
  }

  100% {
    transform: translate(30px, -60px) scale(0.96);
  }
}

@keyframes glow-pulse {

  0%,
  100% {
    filter: drop-shadow(0 0 30px rgba(168, 85, 247, 0.25));
  }

  50% {
    filter: drop-shadow(0 0 55px rgba(168, 85, 247, 0.50));
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}