/* ==========================================================================
   PROMPTIXA — Official Landing Page Stylesheet
   Design Philosophy: Premium, Cinematic, Minimal, Typography-Driven, 2026 AI SaaS
   Dual Theme System: Deep Obsidian Dark Mode & Warm Crisp Light Mode
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design Tokens & Automatic / Manual Theme System
   -------------------------------------------------------------------------- */

/* Dark Mode (Default & System Dark) */
:root {
  --theme-mode: dark;

  /* Backgrounds */
  --bg-canvas: #06080e;
  --bg-canvas-subtle: #0a0d18;
  --bg-surface: rgba(14, 18, 34, 0.72);
  --bg-surface-elevated: rgba(20, 26, 48, 0.85);
  --bg-surface-hover: rgba(28, 36, 64, 0.92);
  --bg-surface-active: rgba(36, 46, 80, 0.96);
  --bg-glass-pill: rgba(255, 255, 255, 0.05);

  /* Borders & Dividers */
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-medium: rgba(255, 255, 255, 0.16);
  --border-accent: rgba(99, 102, 241, 0.35);
  --border-accent-strong: rgba(139, 92, 246, 0.6);
  --border-glow: rgba(56, 189, 248, 0.4);

  /* Brand Accents & Gradients */
  --accent-indigo: #6366f1;
  --accent-violet: #8b5cf6;
  --accent-electric: #38bdf8;
  --accent-blue: #2563eb;
  --accent-lavender: #c4b5fd;
  --accent-mint: #34d399;

  --gradient-headline: linear-gradient(135deg, #ffffff 15%, #e0e7ff 50%, #818cf8 80%, #6366f1 100%);
  --gradient-accent-text: linear-gradient(135deg, #a5b4fc 0%, #818cf8 40%, #c084fc 80%, #38bdf8 100%);
  --gradient-card-top: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 100%);
  --gradient-beam: linear-gradient(90deg, #6366f1 0%, #a855f7 50%, #38bdf8 100%);

  /* Typography */
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --text-dim: #475569;
  --text-accent: #a5b4fc;
  
  --font-display: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-brand: 'Righteous', cursive, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', Menlo, Monaco, Consolas, monospace;

  /* Shadows & Depth */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 8px 24px -4px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 16px 40px -8px rgba(0, 0, 0, 0.65);
  --shadow-glow-indigo: 0 0 40px -10px rgba(99, 102, 241, 0.35);
  --shadow-glow-violet: 0 0 40px -10px rgba(139, 92, 246, 0.35);

  /* Surface Specifics */
  --header-bg: rgba(6, 8, 14, 0.82);
  --editorial-card-bg: linear-gradient(180deg, rgba(14, 18, 34, 0.6) 0%, rgba(10, 13, 24, 0.4) 100%);
  --banner-bg: radial-gradient(ellipse at 50% 0%, rgba(99, 102, 241, 0.28) 0%, rgba(14, 18, 36, 0.9) 70%), #060810;
  --footer-bg: #04050a;
  --terminal-bg: #090c18;
  --device-bezel: #0a0d18;
  --device-outer-ring: #0c1020;
  --device-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
  --orb-opacity: 0.55;
  --grid-line-color: rgba(255, 255, 255, 0.02);

  /* Radius & Motion */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  --ease-cinematic: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: all 0.3s var(--ease-cinematic);
  --transition-fast: all 0.18s ease;

  color-scheme: dark;
}

/* Light Mode System */
[data-theme="light"] {
  --theme-mode: light;

  /* Backgrounds */
  --bg-canvas: #f8fafc;
  --bg-canvas-subtle: #f1f5f9;
  --bg-surface: rgba(255, 255, 255, 0.88);
  --bg-surface-elevated: #ffffff;
  --bg-surface-hover: #f1f5f9;
  --bg-surface-active: #e2e8f0;
  --bg-glass-pill: rgba(15, 23, 42, 0.05);

  /* Borders & Dividers */
  --border-subtle: rgba(15, 23, 42, 0.08);
  --border-medium: rgba(15, 23, 42, 0.15);
  --border-accent: rgba(99, 102, 241, 0.25);
  --border-accent-strong: rgba(139, 92, 246, 0.45);
  --border-glow: rgba(56, 189, 248, 0.3);

  /* Brand Accents & Gradients */
  --accent-indigo: #4f46e5;
  --accent-violet: #7c3aed;
  --accent-electric: #0284c7;
  --accent-blue: #1d4ed8;
  --accent-lavender: #4f46e5;
  --accent-mint: #059669;

  --gradient-headline: linear-gradient(135deg, #0f172a 15%, #312e81 60%, #4338ca 100%);
  --gradient-accent-text: linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #0284c7 100%);
  --gradient-card-top: linear-gradient(180deg, rgba(99, 102, 241, 0.04) 0%, rgba(255, 255, 255, 0) 100%);
  --gradient-beam: linear-gradient(90deg, #4f46e5 0%, #7c3aed 50%, #0284c7 100%);

  /* Typography */
  --text-primary: #0f172a;
  --text-secondary: #334155;
  --text-muted: #64748b;
  --text-dim: #94a3b8;
  --text-accent: #4f46e5;

  /* Shadows & Depth */
  --shadow-sm: 0 2px 6px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 8px 24px -4px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 16px 40px -8px rgba(15, 23, 42, 0.12);
  --shadow-glow-indigo: 0 0 35px -10px rgba(99, 102, 241, 0.2);
  --shadow-glow-violet: 0 0 35px -10px rgba(139, 92, 246, 0.2);

  /* Surface Specifics */
  --header-bg: rgba(248, 250, 252, 0.88);
  --editorial-card-bg: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(241, 245, 249, 0.85) 100%);
  --banner-bg: radial-gradient(ellipse at 50% 0%, rgba(99, 102, 241, 0.12) 0%, rgba(241, 245, 249, 0.95) 70%), #ffffff;
  --footer-bg: #f1f5f9;
  --terminal-bg: #0d1222;
  --device-bezel: #1e293b;
  --device-outer-ring: #cbd5e1;
  --device-shadow: 0 25px 60px rgba(15, 23, 42, 0.2);
  --orb-opacity: 0.25;
  --grid-line-color: rgba(15, 23, 42, 0.03);

  color-scheme: light;
}

/* --------------------------------------------------------------------------
   2. Reset & Layout Foundations
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
  background-color: var(--bg-canvas);
  color: var(--text-primary);
  overflow-x: clip;
  width: 100%;
  transition: background-color 0.3s ease, color 0.3s ease;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-canvas);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
  width: 100%;
  position: relative;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* Ambient Canvas */
.ambient-canvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.ambient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: var(--orb-opacity);
  will-change: transform, opacity;
  animation: floatOrb 22s ease-in-out infinite alternate;
  transition: opacity 0.4s ease;
}

.ambient-orb-1 {
  top: -15%;
  left: 20%;
  width: 60vw;
  height: 60vw;
  max-width: 800px;
  max-height: 800px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.22) 0%, rgba(139, 92, 246, 0.1) 45%, transparent 70%);
}

.ambient-orb-2 {
  top: 35%;
  right: -10%;
  width: 50vw;
  height: 50vw;
  max-width: 650px;
  max-height: 650px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.18) 0%, rgba(56, 189, 248, 0.08) 50%, transparent 70%);
  animation-duration: 28s;
  animation-delay: -7s;
}

.ambient-orb-3 {
  bottom: 5%;
  left: -10%;
  width: 55vw;
  height: 55vw;
  max-width: 700px;
  max-height: 700px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.14) 0%, rgba(99, 102, 241, 0.09) 50%, transparent 70%);
  animation-duration: 25s;
  animation-delay: -14s;
}

.ambient-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(to right, var(--grid-line-color) 1px, transparent 1px),
    linear-gradient(to bottom, var(--grid-line-color) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at 50% 30%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 30%, #000 30%, transparent 80%);
  opacity: 0.7;
}

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

button, a, input {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  font-family: inherit;
}

a {
  color: var(--accent-lavender);
  text-decoration: none;
  transition: var(--transition-fast);
}

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.gradient-text {
  background: var(--gradient-headline);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.gradient-accent {
  background: var(--gradient-accent-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.mono-text {
  font-family: var(--font-mono);
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent-lavender);
  margin-bottom: 0.85rem;
}

.section-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent-indigo);
  box-shadow: 0 0 10px var(--accent-indigo);
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3.5rem;
  position: relative;
  z-index: 1;
}

.section-header h2 {
  font-size: clamp(2rem, 4.2vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.12;
  margin-bottom: 1.15rem;
}

.section-header p {
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  color: var(--text-secondary);
  line-height: 1.65;
  font-weight: 400;
}

/* --------------------------------------------------------------------------
   3. Sticky Navigation Header & Real Brand Logo Handling
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  padding: 0.85rem 1.25rem;
  transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-scrolled {
  background-color: var(--header-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.header-container {
  max-width: 1220px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

/* Brand Link — Natural, Unboxed, Sharp High-DPI Rendering */
.brand-link {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  position: relative;
  z-index: 1002;
}

.brand-logo-img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  display: block;
  border-radius: 22%;
  filter: drop-shadow(0 2px 8px rgba(99, 102, 241, 0.4));
  transition: transform 0.25s ease, filter 0.25s ease;
}

.brand-link:hover .brand-logo-img {
  transform: scale(1.08) rotate(-2deg);
  filter: drop-shadow(0 4px 14px rgba(99, 102, 241, 0.65));
}

.brand-name {
  font-family: var(--font-brand);
  font-weight: 400;
  font-size: 1.45rem;
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--text-primary);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  transition: color 0.3s ease;
}

.brand-badge {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  padding: 0.15rem 0.45rem;
  border-radius: var(--radius-full);
  background: rgba(99, 102, 241, 0.18);
  border: 1px solid var(--border-accent);
  color: var(--accent-lavender);
  font-weight: 600;
  letter-spacing: 0.04em;
  vertical-align: middle;
}

/* Desktop Nav Menu */
.site-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  padding: 0.35rem 0.95rem;
  border-radius: var(--radius-full);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--shadow-sm);
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.nav-link {
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.35rem 0.5rem;
  border-radius: var(--radius-sm);
  transition: color 0.2s ease;
  position: relative;
  white-space: nowrap;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 14px;
  height: 2px;
  background: var(--accent-indigo);
  border-radius: 2px;
  transition: transform 0.2s ease;
}

.nav-link:hover::after,
.nav-link.is-active::after {
  transform: translateX(-50%) scaleX(1);
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Premium Minimal Theme Toggle Button */
.theme-toggle-btn {
  background: var(--bg-surface);
  border: 1px solid var(--border-medium);
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-primary);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.theme-toggle-btn:hover {
  background: var(--bg-surface-hover);
  border-color: var(--accent-indigo);
  transform: scale(1.05);
}

.theme-icon-container {
  width: 18px;
  height: 18px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.theme-icon {
  position: absolute;
  transition: transform 0.35s var(--ease-cinematic), opacity 0.3s ease;
}

/* Dark theme icon state */
:root .theme-icon-moon {
  transform: rotate(0deg) scale(1);
  opacity: 1;
}

:root .theme-icon-sun {
  transform: rotate(-90deg) scale(0.4);
  opacity: 0;
  pointer-events: none;
}

/* Light theme icon state */
[data-theme="light"] .theme-icon-moon {
  transform: rotate(90deg) scale(0.4);
  opacity: 0;
  pointer-events: none;
}

[data-theme="light"] .theme-icon-sun {
  transform: rotate(0deg) scale(1);
  opacity: 1;
}

/* Nav Play Button */
.nav-play-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.18) 0%, rgba(139, 92, 246, 0.18) 100%);
  border: 1px solid var(--border-accent);
  color: var(--text-primary) !important;
  font-size: 0.825rem;
  font-weight: 600;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  transition: var(--transition-smooth);
}

.nav-play-btn:hover {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.3) 0%, rgba(139, 92, 246, 0.3) 100%);
  border-color: var(--accent-lavender);
  box-shadow: 0 0 20px rgba(99, 102, 241, 0.35);
  transform: translateY(-1px);
}

.nav-play-btn svg.arrow-icon {
  transition: transform 0.2s ease;
}

.nav-play-btn:hover svg.arrow-icon {
  transform: translateX(3px);
}

.nav-play-btn .google-play-brand-icon {
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.nav-play-btn:hover .google-play-brand-icon {
  transform: scale(1.1);
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
  display: none;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  color: var(--text-primary);
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1002;
  transition: var(--transition-fast);
}

.mobile-nav-toggle:hover {
  border-color: var(--border-medium);
  background: var(--bg-surface-hover);
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  inset: 0;
  background: var(--header-bg);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  padding: 5.5rem 1.75rem 2.5rem;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.35s var(--ease-cinematic), opacity 0.35s ease, visibility 0.35s;
}

.mobile-drawer.is-open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.mobile-nav-link {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border-subtle);
  transition: color 0.2s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.is-active {
  color: var(--text-primary);
}

.mobile-drawer-cta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-theme-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   4. Main Content Layout
   -------------------------------------------------------------------------- */
.landing-main {
  flex: 1;
  width: 100%;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 7rem;
}

.container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
}

/* --------------------------------------------------------------------------
   5. HERO SECTION — Cinematic, High-DPI Visuals, Subtle Motion
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  padding: 3.5rem 0 4.5rem;
  overflow: visible;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 3.5rem;
  position: relative;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.4rem 0.95rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-full);
  font-size: 0.775rem;
  font-weight: 600;
  color: var(--accent-lavender);
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero-badge-sparkle {
  color: var(--accent-electric);
  display: inline-flex;
}

.hero-headline {
  font-size: clamp(2.85rem, 6.2vw, 4.85rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 1.5rem;
}

.hero-line {
  display: block;
}

.hero-word {
  display: inline-block;
}

.hero-subheadline {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 580px;
  font-weight: 400;
  margin-bottom: 2.25rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.15rem;
  margin-bottom: 2.5rem;
}

.playstore-glass-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 2px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(99, 102, 241, 0.3) 100%);
  box-shadow: var(--shadow-md), 0 0 25px rgba(99, 102, 241, 0.2);
  transition: transform 0.25s var(--ease-cinematic), box-shadow 0.25s var(--ease-cinematic);
}

.playstore-glass-wrapper:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg), 0 0 35px rgba(99, 102, 241, 0.4);
}

.playstore-badge-img {
  height: 52px;
  width: auto;
  border-radius: 10px;
  display: block;
}

/* Premium Google Play Primary CTA Button */
.btn-play-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.85rem 1.65rem;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #38bdf8 100%);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff !important;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transition: transform 0.25s var(--ease-cinematic), box-shadow 0.25s var(--ease-cinematic);
}

.btn-play-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(99, 102, 241, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.btn-play-primary .google-play-brand-icon {
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.btn-play-primary:hover .google-play-brand-icon {
  transform: scale(1.1);
}

.btn-play-primary .arrow-icon {
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.btn-play-primary:hover .arrow-icon {
  transform: translateX(4px);
}

.mobile-drawer-play {
  width: 100%;
}

/* Official Google Play Badge-Style CTA (Hero, Final CTA, Mobile Drawer) */
.google-play-badge-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.55rem 1.35rem;
  border-radius: 13px;
  background: linear-gradient(180deg, #141829 0%, #070a14 100%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff !important;
  text-decoration: none;
  box-shadow: 
    0 4px 18px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
  transition: transform 0.25s var(--ease-cinematic), box-shadow 0.25s var(--ease-cinematic), border-color 0.25s ease;
  min-height: 54px;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.google-play-badge-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07) 0%, transparent 100%);
  pointer-events: none;
}

.google-play-badge-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(99, 102, 241, 0.6);
  box-shadow: 
    0 8px 28px rgba(99, 102, 241, 0.35),
    0 0 0 1px rgba(99, 102, 241, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.badge-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.badge-play-icon {
  width: 26px;
  height: 26px;
  color: #ffffff;
  transition: transform 0.22s ease;
}

.google-play-badge-btn:hover .badge-play-icon {
  transform: scale(1.08);
}

.badge-text-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  line-height: 1;
}

.badge-subtitle {
  font-family: var(--font-body);
  font-size: 0.585rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 3px;
  display: block;
}

.badge-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.01em;
  display: block;
  white-space: nowrap;
}

/* Light Theme Google Play Badge */
[data-theme="light"] .google-play-badge-btn {
  background: linear-gradient(180deg, #111728 0%, #060913 100%);
  border-color: rgba(15, 23, 42, 0.35);
  box-shadow: 
    0 4px 18px rgba(15, 23, 42, 0.16),
    0 0 0 1px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

[data-theme="light"] .google-play-badge-btn:hover {
  border-color: var(--accent-indigo);
  box-shadow: 
    0 8px 28px rgba(79, 70, 229, 0.28),
    0 0 0 1px var(--accent-indigo),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

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

.btn-glass-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.75rem 1.4rem;
  min-height: 54px;
  box-sizing: border-box;
  border-radius: 13px;
  background: var(--bg-surface);
  border: 1px solid var(--border-medium);
  color: var(--text-primary);
  font-size: 0.925rem;
  font-weight: 600;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: var(--transition-smooth);
}

.btn-glass-secondary:hover {
  background: var(--bg-surface-hover);
  border-color: var(--accent-lavender);
  color: var(--text-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.btn-glass-secondary svg {
  transition: transform 0.2s ease;
}

.btn-glass-secondary:hover svg {
  transform: translateX(3px);
}

.hero-feature-pills {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-subtle);
  width: 100%;
}

.hero-pill-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8125rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.hero-pill-item svg {
  color: var(--accent-electric);
  flex-shrink: 0;
}

/* Hero Device Visual — Refined Realistic Mockup */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.hero-glow-underlay {
  position: absolute;
  width: 120%;
  height: 120%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(99, 102, 241, 0.2) 0%, rgba(139, 92, 246, 0.1) 35%, transparent 70%);
  filter: blur(50px);
  pointer-events: none;
  z-index: 0;
}

.hero-phone-container {
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 25px 45px rgba(0, 0, 0, 0.45));
  animation: floatPhone 8s ease-in-out infinite alternate;
}

@keyframes floatPhone {
  0% { transform: translateY(0px) rotate(0deg); }
  100% { transform: translateY(-10px) rotate(0.6deg); }
}

.device-frame {
  width: 310px;
  height: 620px;
  background: var(--device-bezel);
  border-radius: 44px;
  padding: 10px;
  position: relative;
  box-shadow: 
    0 0 0 1px var(--border-medium),
    0 0 0 4px var(--device-outer-ring),
    var(--device-shadow);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.device-notch {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 14px;
  background: #000000;
  border-radius: 50%;
  z-index: 10;
  box-shadow: inset 0 0 2px rgba(255, 255, 255, 0.2);
}

.device-screen-crop {
  width: 100%;
  height: 100%;
  border-radius: 36px;
  overflow: hidden;
  position: relative;
  background: #090e1a;
}

.device-screen-crop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* Floating Micro Cards */
.floating-glass-card {
  position: absolute;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-accent);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-md);
  padding: 0.65rem 0.95rem;
  box-shadow: var(--shadow-md), 0 0 20px rgba(99, 102, 241, 0.15);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 5;
  transition: transform 0.3s ease;
}

.floating-card-top {
  top: 14%;
  left: -18%;
  animation: floatSlow 6s ease-in-out infinite alternate;
}

.floating-card-bottom {
  bottom: 12%;
  right: -16%;
  animation: floatSlow 7s ease-in-out infinite alternate-reverse;
}

@keyframes floatSlow {
  0% { transform: translateY(0); }
  100% { transform: translateY(-8px); }
}

.card-icon-pill {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(99, 102, 241, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-electric);
  flex-shrink: 0;
}

.card-text-block {
  display: flex;
  flex-direction: column;
}

.card-label {
  font-size: 0.6875rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.card-value {
  font-size: 0.8125rem;
  color: var(--text-primary);
  font-weight: 600;
}

.card-logos-row {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.card-mini-logo {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

/* --------------------------------------------------------------------------
   6. SECTION 2 — PRODUCT INTRODUCTION & CLARIFICATION
   -------------------------------------------------------------------------- */
.intro-section {
  position: relative;
  padding: 2rem 0;
}

.intro-editorial-wrapper {
  background: var(--editorial-card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: clamp(2.5rem, 5vw, 4rem);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.intro-editorial-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20%;
  right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.4), transparent);
}

.intro-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  margin-bottom: 3rem;
}

.intro-statement h2 {
  font-size: clamp(2.2rem, 4vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.intro-statement p {
  font-size: 1.075rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.intro-duo-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.clarity-box {
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  position: relative;
  transition: var(--transition-smooth);
}

.clarity-box-is {
  background: var(--bg-surface);
  border: 1px solid var(--border-accent);
}

.clarity-box-is:hover {
  border-color: var(--border-accent-strong);
  transform: translateY(-2px);
}

.clarity-box-not {
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-subtle);
}

.clarity-box-not:hover {
  border-color: var(--border-medium);
  transform: translateY(-2px);
}

.clarity-header {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
}

.clarity-badge {
  font-size: 0.725rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-full);
}

.clarity-badge-yes {
  background: rgba(52, 211, 153, 0.18);
  color: var(--accent-mint);
  border: 1px solid rgba(52, 211, 153, 0.35);
}

.clarity-badge-no {
  background: rgba(248, 113, 113, 0.15);
  color: #ef4444;
  border: 1px solid rgba(248, 113, 113, 0.3);
}

.clarity-box h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
}

.clarity-box p {
  font-size: 0.925rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   7. SECTION 3 — DISCOVER ("Start with a better idea.")
   -------------------------------------------------------------------------- */
.discover-section {
  position: relative;
}

.discover-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 4rem;
}

.discover-narrative {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.discover-pillars {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.pillar-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.1rem;
  border-radius: var(--radius-md);
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  transition: var(--transition-smooth);
}

.pillar-item:hover {
  background: var(--bg-surface-hover);
  border-color: var(--border-accent);
  transform: translateX(4px);
}

.pillar-icon-box {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(99, 102, 241, 0.15);
  border: 1px solid rgba(99, 102, 241, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-lavender);
  flex-shrink: 0;
}

.pillar-text h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--text-primary);
}

.pillar-text p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

.category-stream-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.cat-chip {
  font-size: 0.775rem;
  font-weight: 500;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-full);
  background: var(--bg-glass-pill);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  transition: var(--transition-fast);
}

.cat-chip:hover {
  background: rgba(99, 102, 241, 0.18);
  border-color: var(--accent-indigo);
  color: var(--text-primary);
}

.discover-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.discover-device-frame {
  width: 320px;
  height: 630px;
  border-radius: 42px;
  background: var(--device-bezel);
  border: 1px solid var(--border-medium);
  padding: 8px;
  box-shadow: var(--shadow-lg), 0 0 35px rgba(99, 102, 241, 0.2);
  overflow: hidden;
  position: relative;
}

.discover-device-frame img {
  width: 100%;
  height: 100%;
  border-radius: 34px;
  object-fit: cover;
  object-position: center top;
}

/* --------------------------------------------------------------------------
   8. SECTION 4 — AI CREATIVITY ("One idea. Infinite directions.")
   -------------------------------------------------------------------------- */
.creativity-section {
  position: relative;
  padding: 2rem 0;
}

.creativity-editorial-card {
  background: var(--editorial-card-bg);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-xl);
  padding: clamp(2.5rem, 5vw, 4.5rem);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease;
}

.creativity-editorial-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 65%);
  filter: blur(60px);
  pointer-events: none;
}

.creativity-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  position: relative;
  z-index: 1;
}

.creativity-media {
  display: flex;
  justify-content: center;
  position: relative;
}

.creativity-phone-wrap {
  width: 310px;
  height: 615px;
  border-radius: 40px;
  background: var(--device-bezel);
  border: 1px solid var(--border-medium);
  padding: 8px;
  box-shadow: var(--shadow-lg), 0 0 45px rgba(139, 92, 246, 0.25);
  overflow: hidden;
  position: relative;
  transition: transform 0.4s var(--ease-cinematic);
}

.creativity-phone-wrap:hover {
  transform: scale(1.02) rotate(-0.5deg);
}

.creativity-phone-wrap img {
  width: 100%;
  height: 100%;
  border-radius: 32px;
  object-fit: cover;
  object-position: center top;
}

.art-floating-pill {
  position: absolute;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-accent-strong);
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-full);
  font-family: var(--font-mono);
  font-size: 0.775rem;
  color: var(--accent-lavender);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  pointer-events: none;
}

.art-pill-1 {
  top: 16%;
  right: -12%;
  animation: floatSlow 6.5s ease-in-out infinite alternate;
}

.art-pill-2 {
  bottom: 20%;
  left: -14%;
  animation: floatSlow 8s ease-in-out infinite alternate-reverse;
}

.creativity-info h2 {
  font-size: clamp(2.3rem, 4vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.1;
  margin-bottom: 1.35rem;
}

.creativity-info p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.art-variables-breakdown {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.15rem;
}

.art-variable-cell {
  background: var(--bg-glass-pill);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1rem;
  transition: var(--transition-smooth);
}

.art-variable-cell:hover {
  background: rgba(99, 102, 241, 0.1);
  border-color: var(--border-accent);
}

.var-tag {
  font-family: var(--font-mono);
  font-size: 0.825rem;
  color: var(--accent-electric);
  display: block;
  margin-bottom: 0.35rem;
  font-weight: 600;
}

.var-desc {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.45;
}

/* --------------------------------------------------------------------------
   9. SECTION 5 — DYNAMIC VARIABLES ("Make a prompt yours.")
   -------------------------------------------------------------------------- */
.variables-section {
  position: relative;
}

.variables-container-box {
  background: var(--editorial-card-bg);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 5vw, 3.75rem);
  box-shadow: var(--shadow-lg), 0 0 40px rgba(99, 102, 241, 0.12);
  position: relative;
  overflow: hidden;
}

.variables-header-text {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3rem;
}

.variables-header-text h2 {
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.variables-header-text p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.6;
}

.variable-terminal {
  background: var(--terminal-bg);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1), var(--shadow-md);
  margin-bottom: 2rem;
}

.terminal-topbar {
  background: rgba(18, 24, 46, 0.85);
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.terminal-dots {
  display: flex;
  gap: 6px;
}

.terminal-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot-red { background: #ef4444; }
.dot-yellow { background: #f59e0b; }
.dot-green { background: #10b981; }

.terminal-title {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: #94a3b8;
  letter-spacing: 0.05em;
}

.terminal-badge {
  font-size: 0.7rem;
  font-family: var(--font-mono);
  color: var(--accent-lavender);
  background: rgba(99, 102, 241, 0.2);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}

.terminal-body {
  padding: clamp(1.75rem, 3.5vw, 2.5rem);
  font-family: var(--font-mono);
  font-size: clamp(1.05rem, 2.2vw, 1.4rem);
  line-height: 1.8;
  color: #cbd5e1;
}

.var-slot {
  display: inline-block;
  padding: 0.15rem 0.6rem;
  border-radius: 6px;
  background: rgba(99, 102, 241, 0.25);
  border: 1px solid var(--border-accent);
  color: #ffffff;
  font-weight: 600;
  transition: all 0.35s ease;
  position: relative;
}

.var-slot.is-changing {
  transform: translateY(-2px);
  background: rgba(139, 92, 246, 0.45);
  border-color: var(--accent-lavender);
  color: #ffffff;
  box-shadow: 0 0 16px rgba(139, 92, 246, 0.6);
}

.preset-selector {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.preset-chip {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  color: var(--text-secondary);
  font-size: 0.825rem;
  font-weight: 600;
  padding: 0.55rem 1.15rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition-fast);
}

.preset-chip:hover {
  background: var(--bg-surface-hover);
  color: var(--text-primary);
}

.preset-chip.active {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.35) 0%, rgba(139, 92, 246, 0.35) 100%);
  border-color: var(--accent-lavender);
  color: var(--text-primary);
  box-shadow: 0 0 16px rgba(99, 102, 241, 0.25);
}

.variable-disclaimer-note {
  text-align: center;
  margin-top: 1.75rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   10. SECTION 6 — WORKFLOW (01 Discover → 02 Customize → 03 Launch)
   -------------------------------------------------------------------------- */
.workflow-section {
  position: relative;
}

.journey-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}

.journey-beam-line {
  position: absolute;
  top: 42px;
  left: 10%;
  right: 10%;
  height: 3px;
  background: linear-gradient(90deg, 
    rgba(99, 102, 241, 0.2) 0%, 
    rgba(139, 92, 246, 0.5) 50%, 
    rgba(56, 189, 248, 0.3) 100%
  );
  z-index: 0;
  border-radius: 3px;
}

.journey-beam-pulse {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 30%;
  background: linear-gradient(90deg, transparent, #38bdf8, #a855f7, transparent);
  filter: blur(1px);
  animation: pulseBeam 4s linear infinite;
}

@keyframes pulseBeam {
  0% { left: -20%; }
  100% { left: 100%; }
}

.journey-step-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.75rem;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.journey-step-card:hover {
  background: var(--bg-surface-hover);
  border-color: var(--border-accent);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg), 0 0 30px rgba(99, 102, 241, 0.15);
}

.journey-number-badge {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-surface-elevated);
  border: 2px solid var(--accent-indigo);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 16px rgba(99, 102, 241, 0.3);
}

.journey-step-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
  color: var(--text-primary);
}

.journey-step-card p {
  font-size: 0.925rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.journey-pill-tag {
  margin-top: auto;
  padding-top: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.775rem;
  color: var(--accent-lavender);
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   11. SECTION 7 — INTEGRATIONS (ChatGPT + Google Gemini)
   -------------------------------------------------------------------------- */
.integrations-section {
  position: relative;
}

.integration-hub-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2.5rem;
  margin-top: 2rem;
}

.integration-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.integration-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg), 0 0 35px rgba(99, 102, 241, 0.15);
}

.integration-card-header {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  margin-bottom: 1.25rem;
}

.integration-icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-medium);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  box-shadow: var(--shadow-sm);
}

.integration-icon-wrap img,
.integration-icon-wrap svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.integration-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-primary);
}

.integration-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.integration-hub-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.hub-center-node {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: radial-gradient(circle, #6366f1 0%, #4338ca 100%);
  border: 3px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px rgba(99, 102, 241, 0.5);
  position: relative;
}

.hub-center-node img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 22%;
}

.hub-beam-arrow {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent-lavender);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* --------------------------------------------------------------------------
   12. SECTION 8 — COMMUNITY ("Built by people who prompt.")
   -------------------------------------------------------------------------- */
.community-section {
  position: relative;
}

.community-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 4.5rem;
}

.community-narrative h2 {
  font-size: clamp(2.2rem, 4vw, 3.3rem);
  font-weight: 800;
  margin-bottom: 1.25rem;
}

.community-narrative p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 2rem;
}

.community-perks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.perk-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  transition: var(--transition-smooth);
}

.perk-card:hover {
  background: var(--bg-surface-hover);
  border-color: var(--border-accent);
  transform: translateY(-2px);
}

.perk-icon {
  color: var(--accent-lavender);
  margin-bottom: 0.6rem;
}

.perk-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--text-primary);
}

.perk-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 0;
}

.community-visual-stack {
  position: relative;
  display: flex;
  justify-content: center;
}

.stack-card-back {
  position: absolute;
  right: -5%;
  top: 8%;
  width: 260px;
  height: 520px;
  border-radius: 36px;
  background: var(--device-bezel);
  border: 1px solid var(--border-subtle);
  padding: 6px;
  box-shadow: var(--shadow-md);
  opacity: 0.6;
  transform: rotate(5deg) scale(0.92);
  z-index: 0;
  overflow: hidden;
}

.stack-card-front {
  position: relative;
  width: 290px;
  height: 580px;
  border-radius: 38px;
  background: var(--device-bezel);
  border: 1px solid var(--border-medium);
  padding: 8px;
  box-shadow: var(--shadow-lg), 0 0 45px rgba(99, 102, 241, 0.2);
  z-index: 1;
  overflow: hidden;
  transform: rotate(-1deg);
  transition: transform 0.35s ease;
}

.stack-card-front:hover {
  transform: rotate(0deg) scale(1.02);
}

.stack-card-back img,
.stack-card-front img {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  object-fit: cover;
  object-position: center top;
}

/* --------------------------------------------------------------------------
   13. SECTION 9 — RE-ENGINEERED MULTI-DEVICE PRODUCT SHOWCASE
   -------------------------------------------------------------------------- */
.showcase-section {
  position: relative;
}

.showcase-section .section-header {
  margin-bottom: 1.5rem;
}

/* Control Hub: Device Switcher + Screen Tabs */
.showcase-control-hub {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

/* Premium Device Switcher Pill Control */
.device-switcher {
  display: inline-flex;
  align-items: center;
  background: var(--bg-surface);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-full);
  padding: 4px;
  gap: 4px;
  box-shadow: var(--shadow-sm);
}

.device-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.15rem;
  border-radius: var(--radius-full);
  border: none;
  background: transparent;
  color: var(--text-secondary);
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
}

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

.device-btn.active {
  background: var(--accent-indigo);
  color: #ffffff !important;
  box-shadow: 0 2px 10px rgba(99, 102, 241, 0.4);
}

.device-btn svg {
  flex-shrink: 0;
}

/* Screen Category Tabs */
.showcase-tab-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.showcase-tab {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius-full);
  color: var(--text-secondary);
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  transition: var(--transition-fast);
}

.showcase-tab .tab-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text-muted);
  transition: background 0.2s ease;
}

.showcase-tab:hover {
  background: var(--bg-surface-hover);
  color: var(--text-primary);
}

.showcase-tab.active {
  background: var(--bg-surface-elevated);
  border-color: var(--accent-indigo);
  color: var(--text-primary);
  box-shadow: 0 0 16px rgba(99, 102, 241, 0.25);
}

.showcase-tab.active .tab-dot {
  background: var(--accent-electric);
  box-shadow: 0 0 8px var(--accent-electric);
}

/* MULTI-DEVICE STAGE CONTAINER */
.showcase-stage-container {
  position: relative;
  min-height: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.showcase-stage-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.2) 0%, rgba(139, 92, 246, 0.08) 40%, transparent 70%);
  filter: blur(50px);
  pointer-events: none;
  z-index: 0;
}

/* 1. Mobile Multi-Device Stage (3D Perspective Composition) */
.showcase-mobile-stage {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  max-width: 1000px;
  perspective: 1200px;
  z-index: 1;
}

/* Flanking Secondary Phones */
.flank-device {
  width: 219px;
  height: 438px;
  background: var(--device-bezel);
  border-radius: 30px;
  padding: 6px;
  border: 1px solid var(--border-medium);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: absolute;
  cursor: pointer;
  transition: all 0.5s var(--ease-cinematic);
  opacity: 0.65;
  filter: brightness(0.85);
}

.flank-device:hover {
  opacity: 0.95;
  filter: brightness(1);
}

.flank-device img {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  object-fit: cover;
  object-position: center top;
}

.flank-device-left {
  left: 10%;
  transform: rotateY(20deg) rotateZ(-3deg) scale(0.84) translateZ(-50px);
  z-index: 1;
}

.flank-device-right {
  right: 10%;
  transform: rotateY(-20deg) rotateZ(3deg) scale(0.84) translateZ(-50px);
  z-index: 1;
}

/* Center Hero Phone in Mobile Stage */
.center-hero-device {
  width: 251px;
  height: 502px;
  border-radius: 36px;
  background: var(--device-bezel);
  border: 1px solid var(--border-medium);
  padding: 8px;
  box-shadow: 
    0 22px 55px rgba(0, 0, 0, 0.5),
    0 0 0 4px var(--device-outer-ring),
    0 0 40px rgba(99, 102, 241, 0.25);
  position: relative;
  z-index: 3;
  overflow: hidden;
  transform: scale(1);
  transition: all 0.45s var(--ease-cinematic);
}

.center-hero-device .device-screen-wrap {
  width: 100%;
  height: 100%;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  background: #080d1a;
}

.showcase-mobile-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
  transform: scale(0.97);
}

.showcase-mobile-img.is-active {
  opacity: 1;
  transform: scale(1);
  position: relative;
}

.showcase-tablet-tabs {
  margin-bottom: -0.25rem;
}

/* --------------------------------------------------------------------------
   TABLET SHOWCASE STAGE (Portrait Play Store Tablet Presentation)
   Isolate Tablet-Specific Styles to Preserve Mobile Behavior Exactly
   -------------------------------------------------------------------------- */
.showcase-tablet-stage {
  display: none;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  max-width: 1000px;
  perspective: 1200px;
  z-index: 1;
  animation: fadeInStage 0.4s ease forwards;
  margin-top: -0.65rem;
  margin-bottom: -0.45rem;
}

/* Flanking Secondary Tablets */
.tablet-flank {
  width: 259px;
  aspect-ratio: 1440 / 2199;
  background: var(--device-bezel);
  border-radius: 24px;
  padding: 8px;
  border: 1px solid var(--border-medium);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: absolute;
  cursor: pointer;
  transition: all 0.5s var(--ease-cinematic);
  opacity: 0.6;
  filter: brightness(0.85);
}

.tablet-flank:hover {
  opacity: 0.95;
  filter: brightness(1);
}

.tablet-flank-inner {
  width: 100%;
  height: 100%;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  background: #080d1a;
}

.tablet-flank img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
}

.tablet-flank-left {
  left: 8%;
  transform: rotateY(18deg) rotateZ(-2.5deg) scale(0.82) translateZ(-60px);
  z-index: 1;
}

.tablet-flank-right {
  right: 8%;
  transform: rotateY(-18deg) rotateZ(2.5deg) scale(0.82) translateZ(-60px);
  z-index: 1;
}

/* Center Primary Hero Tablet Device */
.tablet-hero-device {
  width: 332px;
  max-width: 90vw;
  aspect-ratio: 1440 / 2199;
  border-radius: 28px;
  background: var(--device-bezel);
  border: 1px solid var(--border-medium);
  padding: 9px;
  box-shadow: 
    0 22px 55px rgba(0, 0, 0, 0.55),
    0 0 0 4px var(--device-outer-ring),
    0 0 45px rgba(99, 102, 241, 0.25);
  position: relative;
  z-index: 3;
  overflow: hidden;
  transform: scale(1);
  transition: all 0.45s var(--ease-cinematic);
}

.tablet-top-sensor {
  position: absolute;
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background: #000000;
  border-radius: 50%;
  box-shadow: inset 0 0 2px rgba(255, 255, 255, 0.3);
  z-index: 5;
}

.tablet-screen-wrap {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  background: #080d1a;
}

.showcase-tablet-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
  transform: scale(0.98);
}

.showcase-tablet-img.is-active {
  opacity: 1;
  transform: scale(1);
  position: relative;
}

@keyframes fadeInStage {
  from { opacity: 0; transform: translateY(12px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* SCREENSHOT PREVIEW STRIP (Visual Thumbnails) */
.showcase-preview-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.75rem;
  margin-top: 1rem;
  width: 100%;
  max-width: 820px;
}

.preview-thumb-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-align: center;
}

.preview-thumb-card:hover {
  background: var(--bg-surface-hover);
  border-color: var(--border-accent);
  transform: translateY(-3px);
}

.preview-thumb-card.active {
  background: var(--bg-surface-elevated);
  border-color: var(--accent-indigo);
  box-shadow: 0 0 16px rgba(99, 102, 241, 0.35);
  transform: translateY(-4px);
}

.preview-thumb-img-wrap {
  width: 100%;
  height: 70px;
  border-radius: 6px;
  overflow: hidden;
  background: #090e1a;
}

.preview-thumb-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.preview-thumb-title {
  font-size: 0.725rem;
  font-weight: 600;
  color: var(--text-secondary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.preview-thumb-card.active .preview-thumb-title {
  color: var(--text-primary);
}

/* Tablet Specific Thumbnail Preview Strip */
.showcase-tablet-strip {
  grid-template-columns: repeat(5, 1fr);
  max-width: 680px;
  margin-top: 0.65rem;
}

.tablet-thumb-wrap {
  height: 80px;
}

.tablet-thumb-wrap img {
  object-fit: contain;
  object-position: center center;
}

/* Showcase Caption */
.showcase-caption {
  margin-top: 0.85rem;
  text-align: center;
  max-width: 520px;
}

.showcase-caption h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--text-primary);
}

.showcase-caption p {
  font-size: 0.925rem;
  color: var(--text-secondary);
}

/* --------------------------------------------------------------------------
   14. SECTION 10 — FINAL CTA ("Find your next great prompt.")
   -------------------------------------------------------------------------- */
.cta-section {
  position: relative;
  padding: 4rem 0 2rem;
}

.cta-banner-wrapper {
  background: var(--banner-bg);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-xl);
  padding: clamp(3rem, 6vw, 5rem) 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 50px rgba(99, 102, 241, 0.15);
}

.cta-banner-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 30%;
  right: 30%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #38bdf8, #818cf8, transparent);
}

.cta-banner-content {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-banner-content h2 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.08;
  margin-bottom: 1.25rem;
}

.cta-banner-content p {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.cta-actions-group {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.25rem;
}

/* --------------------------------------------------------------------------
   15. DISCLAIMERS & PRODUCT TRANSPARENCY STRIP
   -------------------------------------------------------------------------- */
.disclaimers-strip {
  padding: 2rem 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  margin-top: 2rem;
}

.disclaimers-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.65;
}

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

/* --------------------------------------------------------------------------
   16. EDITORIAL FOOTER & REAL BRAND LOGO
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--footer-bg);
  border-top: 1px solid var(--border-subtle);
  padding: 4.5rem 0 2.5rem;
  position: relative;
  z-index: 1;
  transition: background-color 0.3s ease;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 4rem;
  margin-bottom: 3.5rem;
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
}

.footer-logo-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  display: block;
  border-radius: 22%;
  filter: drop-shadow(0 2px 8px rgba(99, 102, 241, 0.4));
}

.footer-brand-title {
  font-family: var(--font-brand);
  font-weight: 400;
  font-size: 1.45rem;
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--text-primary);
}

.footer-tagline {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 340px;
}

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

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

.footer-nav-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-col h4 {
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
  font-weight: 700;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-col a {
  font-size: 0.875rem;
  color: var(--text-secondary);
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-block;
}

.footer-col a:hover {
  color: var(--text-primary);
  transform: translateX(3px);
  text-decoration: none;
}

.footer-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   17. SCROLL REVEALS & ANIMATIONS
   -------------------------------------------------------------------------- */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s var(--ease-cinematic), transform 0.75s var(--ease-cinematic);
  will-change: opacity, transform;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* --------------------------------------------------------------------------
   18. RESPONSIVE DESIGN BREAKPOINTS
   -------------------------------------------------------------------------- */
@media (max-width: 1180px) {
  .header-container {
    gap: 1rem;
  }

  .site-nav {
    gap: 0.85rem;
    padding: 0.3rem 0.8rem;
  }

  .nav-link {
    font-size: 0.8125rem;
    padding: 0.25rem 0.45rem;
  }

  .nav-link-secondary {
    display: none;
  }
}

@media (max-width: 1120px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
    text-align: center;
  }

  .hero-content {
    align-items: center;
  }

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

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

  .hero-feature-pills {
    justify-content: center;
  }

  .floating-card-top {
    left: -4%;
  }

  .floating-card-bottom {
    right: -4%;
  }

  .integration-hub-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .integration-hub-center {
    flex-direction: row;
    padding: 1rem 0;
  }

  .hub-beam-arrow {
    display: none;
  }

  .flank-device-left {
    left: 2%;
  }

  .flank-device-right {
    right: 2%;
  }
}

@media (max-width: 960px) {
  .site-nav {
    display: none;
  }

  .mobile-nav-toggle {
    display: inline-flex;
  }

  .header-actions {
    gap: 0.65rem;
  }

  .intro-content-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .discover-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .discover-visual {
    order: -1;
  }

  .creativity-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .journey-track {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .journey-beam-line {
    display: none;
  }

  .community-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .community-visual-stack {
    order: -1;
  }

  .showcase-preview-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .tablet-flank {
    width: 202px;
  }

  .tablet-hero-device {
    width: 283px;
  }
}

@media (max-width: 768px) {
  .site-nav {
    display: none;
  }

  .mobile-nav-toggle {
    display: inline-flex;
  }

  .landing-main {
    gap: 5rem;
  }

  .hero-headline {
    font-size: 2.5rem;
  }

  .device-frame {
    width: 270px;
    height: 540px;
  }

  .floating-glass-card {
    display: none;
  }

  .intro-duo-cards {
    grid-template-columns: 1fr;
  }

  .art-variables-breakdown {
    grid-template-columns: 1fr;
  }

  .community-perks {
    grid-template-columns: 1fr;
  }

  .flank-device {
    display: none;
  }

  .tablet-flank {
    display: none;
  }

  .showcase-stage-container {
    min-height: 0;
  }

  .center-hero-device {
    width: 219px;
    height: 438px;
  }

  .tablet-hero-device {
    width: 251px;
  }

  .showcase-preview-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .showcase-tablet-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-nav-columns {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .disclaimers-content {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .footer-bottom-bar {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }
}

@media (max-width: 480px) {
  .site-header {
    padding: 0.75rem 0.85rem;
  }

  .header-container {
    gap: 0.5rem;
  }

  .brand-name {
    font-size: 1.25rem;
    line-height: 1;
  }

  .brand-badge {
    display: none;
  }

  .nav-play-btn span,
  .nav-play-btn .arrow-icon {
    display: none;
  }

  .nav-play-btn {
    padding: 0;
    width: 38px;
    height: 38px;
    justify-content: center;
    border-radius: 50%;
  }

  .header-actions {
    gap: 0.45rem;
  }

  .hero-headline {
    font-size: 2.15rem;
    letter-spacing: -0.03em;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .playstore-glass-wrapper,
  .google-play-badge-btn,
  .btn-play-primary,
  .btn-glass-secondary {
    width: 100%;
    justify-content: center;
  }

  .device-frame {
    width: 250px;
    height: 500px;
  }

  .discover-device-frame {
    width: 260px;
    height: 520px;
  }

  .creativity-phone-wrap {
    width: 260px;
    height: 520px;
  }

  .center-hero-device {
    width: 202px;
    height: 404px;
  }

  .tablet-hero-device {
    width: 210px;
  }

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

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

  .stack-card-front {
    width: 240px;
    height: 480px;
  }

  .stack-card-back {
    display: none;
  }
}

/* --------------------------------------------------------------------------
   19. REDUCED MOTION (ACCESSIBILITY COMPLIANCE)
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal-on-scroll {
    opacity: 1 !important;
    transform: none !important;
  }

  .ambient-orb,
  .hero-phone-container,
  .floating-card-top,
  .floating-card-bottom,
  .art-pill-1,
  .art-pill-2,
  .journey-beam-pulse {
    animation: none !important;
    transform: none !important;
  }
}