/* Design System for Snapback Landing Page */

:root {
  /* Colors - Premium macOS Native Feel */
  --primary-accent: #0A66C2; /* Deep professional indigo/blue */
  --primary-hover: #084E96;
  --success-green: #34C759;
  --alert-amber: #FF9500;
  
  /* Light Theme Defaults - Ultra Clean */
  --bg-color: #FAFAFC;
  --surface-color: #FFFFFF;
  --card-bg: rgba(255, 255, 255, 0.8);
  --card-border: rgba(0, 0, 0, 0.04);
  --nav-bg: rgba(250, 250, 252, 0.85);
  
  --text-primary: #111111;
  --text-secondary: #707075;
  --text-inverse: #FFFFFF;
  
  /* Effects */
  --glass-blur: blur(24px);
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 12px 32px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.08);
  --shadow-hero: 0 40px 100px -20px rgba(0, 0, 0, 0.1), 0 20px 40px -10px rgba(0, 0, 0, 0.03);
  
  /* Typography */
  --font-sans: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  
  /* Spacing */
  --container-width: 1000px; /* Narrower container for better readability */
  --section-padding: 160px 24px; /* Massive whitespace */
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg-color: #000000;
    --surface-color: #1C1C1E;
    --card-bg: rgba(28, 28, 30, 0.7);
    --card-border: rgba(255, 255, 255, 0.1);
    --nav-bg: rgba(0, 0, 0, 0.8);
    
    --text-primary: #F5F5F7;
    --text-secondary: #A1A1A6;
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.4);
    --shadow-hero: 0 32px 64px rgba(0, 0, 0, 0.6);
  }
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-color);
  color: var(--text-primary);
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

p {
  color: var(--text-secondary);
  font-size: 1.15rem;
  line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

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

ul {
  list-style: none;
}

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

/* Utilities */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: var(--primary-accent);
  color: var(--text-inverse);
  box-shadow: 0 4px 14px rgba(0, 122, 255, 0.3);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 122, 255, 0.4);
}

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

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

.btn-sm {
  padding: 8px 16px;
  font-size: 0.95rem;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 16px 0;
  background-color: var(--nav-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  z-index: 1000;
  border-bottom: 1px solid var(--card-border);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.05em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  overflow: hidden;
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a:not(.btn) {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s;
}

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

/* Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle .bar {
  width: 100%;
  height: 2px;
  background-color: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Toggle Animation */
.menu-toggle.active .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active .bar:nth-child(2) {
  opacity: 0;
  transform: translateX(-20px);
}

.menu-toggle.active .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}



/* Hero Section */
.hero {
  padding: 200px 24px 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  height: 1000px;
  background: radial-gradient(circle, rgba(10,102,194,0.08) 0%, transparent 70%);
  z-index: -1;
}

.hero h1 {
  font-size: clamp(3.5rem, 7vw, 5.5rem);
  max-width: 800px;
  margin-bottom: 24px;
  color: var(--text-primary);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.hero p {
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  color: var(--text-secondary);
  max-width: 560px;
  margin-bottom: 48px;
  font-weight: 400;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  margin-bottom: 80px;
}

/* Hero Animation - Mac Desktop Metaphor */
/* Shared Mac Mockup Aesthetics */
.mac-mockup {
  position: relative;
  width: 100%;
  background: var(--surface-color);
  border-radius: 20px;
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-hero);
  padding: 12px 12px 16px; 
}

.mac-camera {
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--text-primary);
  opacity: 0.2;
}

.hero-mac-container {
  max-width: 900px;
  margin: 0 auto;
}

.hero-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  background: var(--bg-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: inset 0 0 20px rgba(0,0,0,0.05);
}

/* The Animated Windows */
.animated-window {
  position: absolute;
  background: var(--card-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transition: all 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
}

.window-header {
  height: 28px;
  border-bottom: 1px solid var(--card-border);
  display: flex;
  align-items: center;
  padding: 0 12px;
  gap: 6px;
}

.window-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.dot-red { background: #FF5F56; }
.dot-yellow { background: #FFBD2E; }
.dot-green { background: #27C93F; }

/* Setup Animation States */
/* 1. Messy State */
.hero-visual[data-state="messy"] .win-1 {
  top: 10%; left: 20%; width: 45%; height: 50%;
  transform: rotate(-3deg);
  opacity: 1; z-index: 3;
}
.hero-visual[data-state="messy"] .win-2 {
  top: 30%; left: 45%; width: 45%; height: 55%;
  transform: rotate(2deg);
  opacity: 1; z-index: 2;
}
.hero-visual[data-state="messy"] .win-3 {
  top: 45%; left: 10%; width: 40%; height: 45%;
  transform: rotate(-1deg);
  opacity: 1; z-index: 4;
}

/* 2. pos-1 State (Stage Layout) */
.hero-visual[data-state="pos-1"] .win-1 {
  top: 15%; left: 15%; width: 70%; height: 75%;
  transform: rotate(0);
  opacity: 1; z-index: 4;
}
.hero-visual[data-state="pos-1"] .win-2 {
  top: 25%; left: -5%; width: 30%; height: 50%;
  transform: rotate(-5deg);
  opacity: 0.6; z-index: 2;
}
.hero-visual[data-state="pos-1"] .win-3 {
  top: 25%; left: 75%; width: 30%; height: 50%;
  transform: rotate(5deg);
  opacity: 0.6; z-index: 2;
}

/* 3. pos-2 State (Split Layout) */
.hero-visual[data-state="pos-2"] .win-1 {
  top: 2%; left: 2%; width: 47%; height: 96%;
  transform: rotate(0);
  opacity: 1; z-index: 3;
}
.hero-visual[data-state="pos-2"] .win-2 {
  top: 2%; left: 51%; width: 47%; height: 96%;
  transform: rotate(0);
  opacity: 1; z-index: 3;
}
.hero-visual[data-state="pos-2"] .win-3 {
  top: 50%; left: 50%; width: 0%; height: 0%;
  transform: rotate(0) scale(0);
  opacity: 0; z-index: 1;
}

/* 4. pos-3 State (Grid Layout) */
.hero-visual[data-state="pos-3"] .win-1 {
  top: 2%; left: 2%; width: 47%; height: 96%;
  transform: rotate(0);
  opacity: 1; z-index: 1;
}
.hero-visual[data-state="pos-3"] .win-2 {
  top: 2%; left: 51%; width: 47%; height: 47%;
  transform: rotate(0);
  opacity: 1; z-index: 1;
}
.hero-visual[data-state="pos-3"] .win-3 {
  top: 51%; left: 51%; width: 47%; height: 47%;
  transform: rotate(0);
  opacity: 1; z-index: 1;
}

/* Shortcut Visibility Mapping */
.hero-visual[data-state^="shortcut"] .shortcut-overlay {
  transform: translateX(-50%) scale(1);
  opacity: 1;
}

/* Keep previous positions during shortcut phase */
.hero-visual[data-state="shortcut-1"] .animated-window { transition: none; opacity: 1; }
.hero-visual[data-state="shortcut-1"] .win-1 { top: 10%; left: 20%; width: 45%; height: 50%; transform: rotate(-3deg); z-index: 3; }
.hero-visual[data-state="shortcut-1"] .win-2 { top: 30%; left: 45%; width: 45%; height: 55%; transform: rotate(2deg); z-index: 2; }
.hero-visual[data-state="shortcut-1"] .win-3 { top: 45%; left: 10%; width: 40%; height: 45%; transform: rotate(-1deg); z-index: 4; }

.hero-visual[data-state="shortcut-2"] .animated-window { transition: none; opacity: 1; }
.hero-visual[data-state="shortcut-2"] .win-1 { top: 15%; left: 15%; width: 70%; height: 75%; transform: rotate(0); z-index: 4; }
.hero-visual[data-state="shortcut-2"] .win-2 { top: 25%; left: -5%; width: 30%; height: 50%; transform: rotate(-5deg); opacity: 0.6; z-index: 2; }
.hero-visual[data-state="shortcut-2"] .win-3 { top: 25%; left: 75%; width: 30%; height: 50%; transform: rotate(5deg); opacity: 0.6; z-index: 2; }

.hero-visual[data-state="shortcut-3"] .animated-window { transition: none; opacity: 1; }
.hero-visual[data-state="shortcut-3"] .win-1 { top: 2%; left: 2%; width: 47%; height: 96%; transform: rotate(0); z-index: 3; }
.hero-visual[data-state="shortcut-3"] .win-2 { top: 2%; left: 51%; width: 47%; height: 96%; transform: rotate(0); z-index: 3; }
.hero-visual[data-state="shortcut-3"] .win-3 { top: 50%; left: 50%; width: 0%; height: 0%; transform: rotate(0) scale(0); opacity: 0; z-index: 1; }

/* ============================================
   SECTION STYLES — Premium Apple Aesthetic
   ============================================ */

/* Shared Section Styles */
.text-center { text-align: center; }

.experience-section,
.display-section,
.native-section,
.workflow-section,
.pricing-section,
.final-cta {
  padding: var(--section-padding);
}

.experience-section h2,
.display-section h2,
.native-section h2,
.workflow-section h2,
.pricing-section h2,
.final-cta h2 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}

.experience-section p,
.display-section p,
.native-section p,
.workflow-section p,
.pricing-section p {
  max-width: 520px;
  margin: 0 auto 60px;
}

/* --- Keyboard Shortcut Overlay (Hero) --- */
.shortcut-overlay {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) scale(0);
  display: flex;
  gap: 8px;
  z-index: 10;
  opacity: 0;
  transition: all 0.25s ease;
}

.hero-visual .shortcut-overlay {
  transform: translateX(-50%) scale(0);
  opacity: 0;
}

.key {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--surface-color);
  border: 1px solid var(--card-border);
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  box-shadow: var(--shadow-sm), 0 2px 0 var(--card-border);
}

/* --- Skeleton Line & Block Helpers --- */
.window-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.skel-line {
  height: 10px;
  border-radius: 5px;
  background: var(--card-border);
}
.skel-line.w-50 { width: 50%; }
.skel-line.w-65 { width: 65%; }
.skel-line.w-80 { width: 80%; }
.skel-line.w-90 { width: 90%; }
.skel-line.w-95 { width: 95%; }
.skel-line.w-full { width: 100%; }

.skel-block {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--card-border);
  display: inline-block;
}
.skel-block.accent { background: rgba(10, 102, 194, 0.15); }

/* ========== 2. Experience Section ========== */
.experience-block {
  padding: 100px 0;
}

.experience-block + .experience-block {
  border-top: 1px solid var(--card-border);
}

/* 2a. Snap Demo Visual */
.snap-demo-visual {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.snap-mac-container {
  max-width: 700px;
  margin: 0 auto;
}

.snap-screen {
  aspect-ratio: 16/10;
  background: var(--bg-color);
  position: relative;
  /* Removed 24px padding to match Hero style */
}

.snap-window {
  position: absolute;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 10px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.animated-snap-win {
  top: 4%; left: 4%; width: 44%; height: 92%;
  transition: all 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Snap Grid Guides */
.snap-grid-guides {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none;
}

.grid-line {
  position: absolute;
  top: 4%;
  bottom: 4%;
  width: 1px;
  background: var(--card-border);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-left: 1px dashed var(--text-secondary);
}

/* Guide Visibility Logic */
.snap-demo-visual[data-state="half"] .line-half { opacity: 0.3; }
.snap-demo-visual[data-state="vertical-half"] .line-v-half { opacity: 0.3; }
.snap-demo-visual[data-state="third"] .line-third-1,
.snap-demo-visual[data-state="third"] .line-third-2 { opacity: 0.3; }
.snap-demo-visual[data-state="fourth"] .line-fourth-1,
.snap-demo-visual[data-state="fourth"] .line-fourth-2,
.snap-demo-visual[data-state="fourth"] .line-fourth-3 { opacity: 0.3; }

.line-half { left: 50%; }
.line-v-half { top: 50%; width: 96%; height: 1px; left: 2%; border-left: none; border-top: 1px dashed var(--text-secondary); }
.line-third-1 { left: 33.33%; }
.line-third-2 { left: 66.66%; }
.line-fourth-1 { left: 25%; }
.line-fourth-2 { left: 50%; }
.line-fourth-3 { left: 75%; }

/* Snap Demo States */
.snap-demo-visual[data-state="half"] .animated-snap-win {
  top: 2%; left: 2%; width: 47%; height: 96%;
}
.snap-demo-visual[data-state="vertical-half"] .animated-snap-win {
  top: 2%; left: 2%; width: 96%; height: 47%;
}
.snap-demo-visual[data-state="third"] .animated-snap-win {
  top: 2%; left: 2%; width: 30.66%; height: 96%;
}
.snap-demo-visual[data-state="fourth"] .animated-snap-win {
  top: 2%; left: 2%; width: 22.5%; height: 96%;
}

.floating-keys {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 24px;
}

/* 2c. Customization Visual */
.customize-visual {
  display: flex;
  justify-content: center;
  gap: 24px;
  max-width: 700px;
  margin: 0 auto;
}

.customize-card {
  flex: 1;
  max-width: 320px;
  background: var(--surface-color);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.customize-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--card-border);
  margin-bottom: 4px;
  color: var(--text-secondary);
}

.customize-header span {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-primary);
}

.shortcut-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--card-border);
}

.shortcut-row:last-child {
  border-bottom: none;
}

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

.shortcut-keys {
  display: flex;
  gap: 4px;
}

.key.small {
  width: 32px;
  height: 32px;
  font-size: 0.85rem;
  border-radius: 8px;
}

.toggle-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--card-border);
}

.toggle-row:last-child {
  border-bottom: none;
}

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

.toggle-switch {
  width: 44px;
  height: 26px;
  border-radius: 13px;
  background: var(--card-border);
  position: relative;
  cursor: pointer;
  transition: background 0.2s;
}

.toggle-switch.on {
  background: var(--primary-accent);
}

.toggle-knob {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: white;
  position: absolute;
  top: 2px;
  left: 2px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
  transition: transform 0.2s;
}

.toggle-switch.on .toggle-knob {
  transform: translateX(18px);
}

/* 2b. Workspace Panel */
.workspace-panel {
  max-width: 480px;
  margin: 0 auto;
  background: var(--surface-color);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  border-bottom: 1px solid var(--card-border);
}

.panel-title {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-primary);
}

.panel-action {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-accent);
  cursor: pointer;
}

.workspace-entry {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  border-bottom: 1px solid var(--card-border);
  transition: background 0.15s;
}

.workspace-entry:last-child {
  border-bottom: none;
}

.workspace-entry.active {
  background: rgba(10, 102, 194, 0.04);
}

.workspace-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.workspace-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-primary);
}

.workspace-meta {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.workspace-shortcut {
  display: flex;
  gap: 4px;
}

/* 2c. Restore Visual (Multi-Monitor) */
.restore-visual {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 16px;
  max-width: 600px;
  margin: 0 auto;
}

.monitor {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.monitor-screen {
  background: var(--bg-color);
  border: 1px solid var(--card-border);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.monitor-main .monitor-screen {
  width: 320px;
  height: 200px;
}

.monitor-side .monitor-screen {
  width: 200px;
  height: 125px;
}

.monitor-stand {
  width: 40px;
  height: 24px;
  background: var(--card-border);
  margin-top: -1px;
  border-radius: 0 0 6px 6px;
}

.restore-win {
  position: absolute;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 6px;
}
.rw-1 { top: 8%; left: 4%; width: 55%; height: 84%; }
.rw-2 { top: 8%; left: 62%; width: 34%; height: 84%; }
.rw-3 { top: 8%; left: 8%; width: 84%; height: 84%; }

/* ========== 3. Multi-Display Intelligence ========== */
.display-section {
  background: var(--surface-color);
}

.display-content {
  display: flex;
  align-items: center;
  gap: 80px;
}

.display-text {
  flex: 1;
}

.display-text h2 {
  text-align: left;
  font-size: clamp(2rem, 4vw, 3rem);
}

.display-text p {
  text-align: left;
  margin: 0;
  max-width: 100%;
}

.display-visual {
  flex: 1.2;
  position: relative;
}

.display-setup {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 12px;
}

.display-screen {
  background: var(--bg-color);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.display-monitor.big .display-screen { width: 180px; height: 112px; }
.display-monitor.small .display-screen { width: 140px; height: 88px; }
.display-laptop .display-screen { width: 160px; height: 100px; }

.display-stand {
  width: 30px;
  height: 16px;
  background: var(--card-border);
  border-radius: 0 0 4px 4px;
  margin: 0 auto;
}

.laptop-base {
  width: 180px;
  height: 8px;
  background: var(--card-border);
  border-radius: 0 0 8px 8px;
  margin: -1px auto 0;
}

.display-win {
  position: absolute;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 4px;
}
.dw-1 { top: 8%; left: 4%; width: 55%; height: 84%; }
.dw-2 { top: 8%; left: 62%; width: 34%; height: 84%; }
.dw-3 { top: 8%; left: 8%; width: 84%; height: 84%; }
.dw-4 { top: 8%; left: 8%; width: 84%; height: 84%; }

.display-glow {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 60px;
  background: radial-gradient(ellipse, rgba(10,102,194,0.12) 0%, transparent 70%);
  pointer-events: none;
}

/* ========== 4. Crafted for macOS ========== */
.native-section {
  background: var(--bg-color);
}

.native-features {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: nowrap;
  max-width: 900px;
  margin: 0 auto;
}

.native-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.native-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--surface-color);
  border: 1px solid var(--card-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
}

.native-item span {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-primary);
}

/* ========== 5. How It Works — 3 Steps ========== */
.steps-section {
  padding: var(--section-padding);
  background: var(--surface-color);
}

.steps-section h2 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}

.steps-section > .container:first-child p {
  max-width: 520px;
  margin: 0 auto 60px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
}

.step-item {
  text-align: center;
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary-accent);
  color: white;
  font-weight: 700;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.step-item h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.step-item p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 100%;
  margin: 0;
}

/* ========== 6. Pricing ========== */
.pricing-section {
  background: var(--bg-color);
}

.pricing-cards {
  display: flex;
  justify-content: center;
  gap: 24px;
  max-width: 700px;
  margin: 0 auto;
}

.pricing-card {
  flex: 1;
  max-width: 320px;
  background: var(--surface-color);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  padding: 40px 32px;
  text-align: center;
}

.pricing-card.featured {
  border-color: var(--primary-accent);
  box-shadow: 0 0 0 2px rgba(10, 102, 194, 0.08), var(--shadow-lg);
}

.pricing-card h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.pricing-price {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  color: var(--text-primary);
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  text-align: left;
}

.pricing-features li {
  padding: 10px 0;
  border-bottom: 1px solid var(--card-border);
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.pricing-features li:last-child {
  border-bottom: none;
}

/* ========== 7. Final CTA ========== */
.final-cta {
  padding: 200px 24px;
  background: var(--surface-color);
}

.final-cta h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 40px;
}

.btn-lg {
  padding: 18px 48px;
  font-size: 1.15rem;
}

.cta-subtext {
  margin-top: 20px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* ========== Footer ========== */
footer {
  padding: 48px 24px;
  text-align: center;
  border-top: 1px solid var(--card-border);
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.footer-credit {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
}

.footer-links a {
  color: var(--text-secondary);
  transition: color 0.2s;
}

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

/* ========== FAQ Section ========== */
.faq-section {
  padding: var(--section-padding);
  background: var(--bg-color);
}

.faq-section h2 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}

.faq-section > .container:first-child p {
  max-width: 520px;
  margin: 0 auto 60px;
}

.faq-list {
  max-width: 680px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--card-border);
}

.faq-item summary {
  padding: 24px 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.2s;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--text-secondary);
  transition: transform 0.2s;
}

.faq-item[open] summary::after {
  content: '\2212';
}

.faq-item summary:hover {
  color: var(--primary-accent);
}

.faq-answer {
  padding: 0 0 24px;
}

.faq-answer p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 100%;
  margin: 0;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.2rem;
  color: var(--text-secondary);
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(250px, auto);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.bento-card {
  border-radius: 32px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  color: #1D1D1F; /* Dark text for all light pastel cards */
}

.bento-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.bento-card h3 {
  font-size: 1.8rem;
  margin-bottom: 12px;
  z-index: 2;
  letter-spacing: -0.03em;
}

.bento-card p {
  color: rgba(0,0,0,0.6);
  font-size: 1.05rem;
  line-height: 1.5;
  z-index: 2;
  max-width: 90%;
}

/* Bento Sizes */
.bento-tall {
  grid-column: span 1;
  grid-row: span 2;
}

.bento-wide {
  grid-column: span 2;
  grid-row: span 1;
}

/* Feature 3, 4, 6 are standard 1x1 cells */

/* Bento Colors (Based on reference image) */
.card-purple { background-color: #BDB2E8; }
.card-pink { background-color: #F782A7; }
.card-green { background-color: #BDE498; }
.card-yellow { background-color: #FCDF71; }
.card-orange { background-color: #FCA774; }
.card-blue { background-color: #ADC8D5; }

/* Bento Visuals */
.bento-visual {
  margin-top: 32px;
  flex: 1;
  position: relative;
  z-index: 1;
}

.bento-icon {
  margin-top: auto;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1D1D1F;
}

.bento-icon svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

/* Mini visual elements for cards */
.bento-window {
  position: absolute;
  bottom: -20px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.win-left { width: 45%; height: 150px; left: 0; }
.win-right { width: 45%; height: 180px; right: 0; }

.visual-horizontal {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.bento-btn {
  background: white;
  padding: 12px 24px;
  border-radius: 24px;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.bento-mac-dock {
  background: rgba(255,255,255,0.4);
  backdrop-filter: blur(10px);
  padding: 12px;
  border-radius: 20px;
  display: flex;
  gap: 12px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.dock-icon {
  width: 40px; height: 40px;
  background: white;
  border-radius: 10px;
}
.dock-icon.active {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transform: scale(1.1);
}

@media (max-width: 900px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .bento-grid {
    grid-template-columns: 1fr;
  }
  .bento-tall, .bento-wide {
    grid-column: span 1;
    grid-row: span 1;
  }
}

/* Comparison Section (Versus Bento Cards) */
.comparison {
  padding: var(--section-padding);
  background: var(--bg-color);
  position: relative;
}

.comparison::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--card-border), transparent);
}

.vs-bento-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.vs-card {
  background: var(--surface-color);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  padding: 32px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vs-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 122, 255, 0.2);
}

.vs-header {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 24px;
  color: var(--text-primary);
  text-align: left;
}

.vs-comparison {
  display: flex;
  align-items: stretch;
  background: var(--bg-color);
  border-radius: 16px;
  border: 1px solid var(--card-border);
  overflow: hidden;
  flex: 1;
}

.old-way, .snapback-way {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.snapback-way {
  background: rgba(0, 122, 255, 0.05);
  position: relative;
}

.snapback-way::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid var(--primary-accent);
  border-radius: 16px;
  opacity: 0.5;
  pointer-events: none;
}

.way-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
  margin-bottom: 8px;
  font-weight: 600;
}

.way-content {
  font-size: 1.1rem;
  font-weight: 500;
}

.vs-divider {
  width: 1px;
  background: var(--card-border);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vs-divider::after {
  content: 'VS';
  position: absolute;
  background: var(--surface-color);
  padding: 4px 8px;
  border: 1px solid var(--card-border);
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: bold;
  color: var(--text-secondary);
}

.check { color: var(--success-green); font-weight: 600; }
.cross { color: var(--alert-red); opacity: 0.8; }

@media (max-width: 768px) {
  .vs-bento-grid {
    grid-template-columns: 1fr;
  }
}


/* Interactive Workspaces Demo (Live Mac Simulator) */
.workspaces-demo {
  padding: var(--section-padding);
  background: var(--surface-color);
}

.demo-mac-container {
  max-width: 1000px;
  margin: 0 auto;
  background: var(--bg-color);
  border-radius: 24px;
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-hero);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.demo-controls {
  display: flex;
  justify-content: center;
  gap: 16px;
  padding: 24px;
  border-bottom: 1px solid var(--card-border);
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(10px);
  z-index: 10;
}

.demo-pill {
  background: var(--surface-color);
  border: 1px solid var(--card-border);
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
}

.demo-pill:hover {
  background: var(--bg-color);
  color: var(--text-primary);
}

.demo-pill.active {
  background: var(--primary-accent);
  color: white;
  border-color: var(--primary-accent);
  box-shadow: 0 4px 12px rgba(0, 122, 255, 0.3);
}

.demo-screen {
  height: 600px;
  position: relative;
  background: #E8E8ED;
  overflow: hidden;
}

.demo-wallpaper {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(0,122,255,0.05) 0%, transparent 70%);
}

.app-window {
  position: absolute;
  background: rgba(255,255,255,0.85);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  /* Smooth CSS Spring Animation Replacement */
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1); 
}

.app-header {
  height: 28px;
  background: rgba(255,255,255,0.5);
  border-bottom: 1px solid var(--card-border);
  display: flex;
  align-items: center;
  padding: 0 12px;
  gap: 6px;
}

.app-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Fake UI Blocks */
.skeleton-line {
  height: 12px;
  border-radius: 6px;
  background: rgba(0,0,0,0.05);
}
.w-full { width: 100%; }
.w-80 { width: 80%; }
.w-60 { width: 60%; }

.chat-mode { justify-content: flex-end; }
.chat-bubble {
  height: 24px;
  border-radius: 12px;
  width: 70%;
}
.chat-bubble.left {
  background: rgba(0,0,0,0.05);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}
.chat-bubble.right {
  background: var(--primary-accent);
  opacity: 0.8;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.grid-mode {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.grid-box {
  background: rgba(0,0,0,0.05);
  border-radius: 8px;
  height: 40px;
}
.grid-box.fill {
  grid-column: span 2;
  height: auto;
  flex: 1;
}

/* Layout States */
/* Morning Focus (Main center, columns right) */
.demo-screen[data-layout="morning"] .app-main {
  top: 4%; left: 4%; width: 60%; height: 92%; z-index: 2;
}
.demo-screen[data-layout="morning"] .app-side1 {
  top: 4%; right: 4%; width: 30%; height: 44%; z-index: 1;
}
.demo-screen[data-layout="morning"] .app-side2 {
  bottom: 4%; right: 4%; width: 30%; height: 44%; z-index: 1;
}

/* Deep Work (Focus app centered, others hidden slightly) */
.demo-screen[data-layout="deepwork"] .app-main {
  top: 10%; left: 15%; width: 70%; height: 80%; z-index: 3;
}
.demo-screen[data-layout="deepwork"] .app-side1 {
  top: 50%; left: -5%; width: 25%; height: 40%; z-index: 1; opacity: 0.3;
}
.demo-screen[data-layout="deepwork"] .app-side2 {
  top: 50%; right: -5%; width: 25%; height: 40%; z-index: 1; opacity: 0.3;
}

/* Meetings (Video wide top, chat bottom right, notes bottom left) */
.demo-screen[data-layout="meetings"] .app-main {
  top: 4%; left: 4%; width: 92%; height: 50%; z-index: 1;
}
.demo-screen[data-layout="meetings"] .app-side1 {
  bottom: 4%; right: 4%; width: 44%; height: 40%; z-index: 2;
}
.demo-screen[data-layout="meetings"] .app-side2 {
  bottom: 4%; left: 4%; width: 44%; height: 40%; z-index: 2;
}
  width: 70%;
}
.chat-bubble.left {
  background: rgba(0,0,0,0.05);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}
.chat-bubble.right {
  background: var(--primary-accent);
  opacity: 0.8;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.grid-mode {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.grid-box {
  background: rgba(0,0,0,0.05);
  border-radius: 8px;
  height: 40px;
}
.grid-box.fill {
  grid-column: span 2;
  height: auto;
  flex: 1;
}

/* Layout States */
/* Morning Focus (Main center, columns right) */
.demo-screen[data-layout="morning"] .app-main {
  top: 4%; left: 4%; width: 60%; height: 92%; z-index: 2;
}
.demo-screen[data-layout="morning"] .app-side1 {
  top: 4%; right: 4%; width: 30%; height: 44%; z-index: 1;
}
.demo-screen[data-layout="morning"] .app-side2 {
  bottom: 4%; right: 4%; width: 30%; height: 44%; z-index: 1;
}

/* Deep Work (Focus app centered, others hidden slightly) */
.demo-screen[data-layout="deepwork"] .app-main {
  top: 10%; left: 15%; width: 70%; height: 80%; z-index: 3;
}
.demo-screen[data-layout="deepwork"] .app-side1 {
  top: 50%; left: -5%; width: 25%; height: 40%; z-index: 1; opacity: 0.3;
}
.demo-screen[data-layout="deepwork"] .app-side2 {
  top: 50%; right: -5%; width: 25%; height: 40%; z-index: 1; opacity: 0.3;
}

/* Meetings (Video wide top, chat bottom right, notes bottom left) */
.demo-screen[data-layout="meetings"] .app-main {
  top: 4%; left: 4%; width: 92%; height: 50%; z-index: 1;
}
.demo-screen[data-layout="meetings"] .app-side1 {
  bottom: 4%; right: 4%; width: 44%; height: 40%; z-index: 2;
}
.demo-screen[data-layout="meetings"] .app-side2 {
  bottom: 4%; left: 4%; width: 44%; height: 40%; z-index: 2;
}

/* Social Proof */
.social-proof {
  padding: var(--section-padding);
  background: var(--surface-color);
  text-align: center;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.testimonial {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  padding: 32px;
  border-radius: 16px;
  text-align: left;
}

.testimonial p {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 24px;
  line-height: 1.6;
}

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

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-accent);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

/* CTA Footer */
.cta-section {
  padding: 120px 24px;
  text-align: center;
  background: linear-gradient(180deg, var(--bg-color) 0%, var(--surface-color) 100%);
}

.cta-section h2 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  margin-bottom: 24px;
}

.cta-section p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

footer {
  padding: 40px 24px;
  text-align: center;
  background: var(--surface-color);
  border-top: 1px solid var(--card-border);
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 16px;
}

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

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .demo-container {
    flex-direction: column;
    padding: 32px;
  }
  .demo-visual {
    width: 100%;
    min-height: 300px;
  }
}

@media (max-width: 768px) {
  .hero-ctas {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
  }
  .comparison-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}

/* Video Modal */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.modal-overlay.active {
  display: flex;
}

.modal-content {
  position: relative;
  width: 90%;
  max-width: 1000px;
  background: black;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-hero);
}

.close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s;
}

.close-btn:hover {
  background: rgba(255, 255, 255, 0.4);
}

#promo-video {
  display: block;
  outline: none;
}
/* ========== RESPONSIVENESS ========== */

@media (max-width: 1024px) {
  :root {
    --section-padding: 100px 24px;
  }
  
  .display-content {
    flex-direction: column;
    text-align: center;
    gap: 60px;
  }
  
  .display-text {
    max-width: 600px;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 3rem;
  }
  
  .hero-mac-container {
    max-width: 100%;
    padding: 8px 8px 12px;
  }
  
  .app-mockups {
    flex-direction: column;
    align-items: center;
  }
  
  .app-mock {
    width: 100%;
    max-width: 400px;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: var(--nav-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    flex-direction: column;
    padding: 100px 40px;
    gap: 32px;
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    border-left: 1px solid var(--card-border);
    align-items: flex-start;
    display: none; /* Hidden by default on mobile */
  }

  .nav-links.nav-active {
    display: flex; /* Visible when active */
    transform: translateX(0);
    opacity: 1;
  }

  .menu-toggle {
    display: flex;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .display-setup {
    transform: scale(0.8);
  }
  
  .native-features {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  
  .native-item {
    flex: 1 1 150px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding-top: 140px;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero-ctas {
    flex-direction: column;
    width: 100%;
    max-width: 280px;
  }
  
  .hero-ctas .btn {
    width: 100%;
  }
  
  .display-setup {
    transform: scale(0.6);
  }
  
  .footer-links {
    flex-direction: column;
    gap: 12px;
  }

  /* Fix for squished windows on mobile */
  .window-header {
    height: 20px;
    padding: 0 8px;
    gap: 4px;
  }
  
  .window-dot {
    width: 7px;
    height: 7px;
  }
  
  .window-body {
    padding: 10px;
    overflow: hidden;
  }

  .skel-block {
    width: 32px;
    height: 32px;
  }
}
