/* ═══════════════════════════════════════════════════ */
/*  DK Galaxy 100 V2 — Earth Tone Premium Design     */
/*  Version 2.0 — Full Animation & Glassmorphism      */
/* ═══════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;1,400&display=swap');

/* ─── Design Tokens ─── */
:root {
  --sand: #F5F0EB;
  --sand-light: #FAF8F5;
  --sand-dark: #E8DDD2;
  --terracotta: #C2703E;
  --terracotta-glow: #D4844F;
  --sage: #7A8B6F;
  --sage-light: #92A585;
  --mocha: #4A3728;
  --mocha-light: #6B5240;
  --cream: #FFF8F0;
  --bronze: #8B6F47;
  --bronze-glow: rgba(139,111,71,0.4);
  --gold: #C9A96E;
  --charcoal: #2C2420;
  --charcoal-soft: #3D322C;
  --glass: rgba(255,248,240,0.65);
  --glass-border: rgba(139,111,71,0.2);
  --shadow-sm: 0 2px 8px rgba(74,55,40,0.08);
  --shadow-md: 0 8px 30px rgba(74,55,40,0.12);
  --shadow-lg: 0 20px 60px rgba(74,55,40,0.18);
  --shadow-glow: 0 0 40px rgba(194,112,62,0.15);
  --radius: 16px;
  --radius-lg: 24px;
  --transition: 0.2s cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Outfit', sans-serif;
  background: var(--sand);
  color: var(--mocha);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ─── Animated Background Noise + Grain ─── */
.noise {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.5;
}

/* ─── Animated Orbs (Background Blobs) ─── */
.orb {
  position: fixed; border-radius: 50%; filter: blur(80px); pointer-events: none; z-index: 0;
  animation: orbFloat 15s ease-in-out infinite;
}
.orb-1 { width: 500px; height: 500px; top: -100px; right: -100px; background: rgba(194,112,62,0.08); animation-duration: 18s; }
.orb-2 { width: 400px; height: 400px; bottom: -50px; left: -80px; background: rgba(122,139,111,0.08); animation-duration: 22s; animation-delay: -5s; }
.orb-3 { width: 300px; height: 300px; top: 50%; left: 50%; background: rgba(201,169,110,0.06); animation-duration: 16s; animation-delay: -10s; }

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -40px) scale(1.1); }
  50% { transform: translate(-20px, 20px) scale(0.95); }
  75% { transform: translate(15px, 35px) scale(1.05); }
}

/* ─── Navbar ─── */
.navbar {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.8rem 2rem;
  background: rgba(245,240,235,0.75);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--glass-border);
  transition: var(--transition);
}
.navbar.scrolled {
  padding: 0.5rem 2rem;
  box-shadow: var(--shadow-md);
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 600;
  color: var(--mocha); text-decoration: none;
  letter-spacing: -0.02em;
  transition: var(--transition);
}
.nav-logo:hover { color: var(--terracotta); }
.nav-logo .dot { color: var(--terracotta); }
.nav-links {
  display: flex; list-style: none; gap: 0.3rem;
}
.nav-links a {
  text-decoration: none; color: var(--mocha-light);
  padding: 0.5rem 1rem; border-radius: 10px;
  font-weight: 400; font-size: 0.92rem;
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 4px; left: 50%; width: 0; height: 2px;
  background: var(--terracotta); border-radius: 2px;
  transition: var(--transition); transform: translateX(-50%);
}
.nav-links a:hover { color: var(--terracotta); background: rgba(194,112,62,0.06); }
.nav-links a:hover::after { width: 24px; }
.nav-links a.active { color: var(--terracotta); font-weight: 500; }
.nav-links a.active::after { width: 24px; }

/* ─── Hamburger ─── */
.hamburger {
  display: none; background: none; border: none; cursor: pointer; padding: 6px;
  flex-direction: column; gap: 5px;
}
.hamburger span {
  display: block; width: 22px; height: 2px; background: var(--mocha);
  border-radius: 2px; transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ─── Hero Section ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 6rem 2rem 4rem;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(194,112,62,0.08) 0%, transparent 50%),
              radial-gradient(ellipse at 70% 80%, rgba(122,139,111,0.06) 0%, transparent 50%);
}
.hero-content { position: relative; z-index: 1; max-width: 720px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.4rem 1rem; border-radius: 100px;
  background: rgba(194,112,62,0.1); border: 1px solid rgba(194,112,62,0.2);
  color: var(--terracotta); font-size: 0.82rem; font-weight: 500;
  margin-bottom: 1.5rem;
  animation: fadeSlideUp 0.35s ease both;
}
.hero-badge .pulse {
  width: 8px; height: 8px; border-radius: 50%; background: var(--terracotta);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 600; line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 1rem;
  animation: fadeSlideUp 0.35s ease 0.05s both;
}
.hero h1 .gradient-text {
  background: linear-gradient(135deg, var(--terracotta), var(--gold), var(--terracotta-glow));
  background-size: 200% auto;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 3s ease-in-out infinite;
}
@keyframes shimmer {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}
.hero p {
  font-size: 1.15rem; color: var(--mocha-light);
  max-width: 520px; margin: 0 auto 2rem;
  animation: fadeSlideUp 0.35s ease 0.1s both;
}
.hero-actions {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  animation: fadeSlideUp 0.35s ease 0.15s both;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1.8rem; border-radius: 12px;
  font-family: 'Outfit', sans-serif; font-size: 0.95rem; font-weight: 500;
  text-decoration: none; cursor: pointer; border: none;
  transition: var(--transition); position: relative; overflow: hidden;
}
.btn-primary {
  background: linear-gradient(135deg, var(--terracotta), var(--terracotta-glow));
  color: white;
  box-shadow: 0 4px 15px rgba(194,112,62,0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(194,112,62,0.4);
}
.btn-secondary {
  background: var(--glass);
  color: var(--mocha);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
}
.btn-secondary:hover {
  transform: translateY(-2px);
  background: rgba(255,248,240,0.9);
  box-shadow: var(--shadow-md);
}

/* ─── Scroll indicator ─── */
.scroll-indicator {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  animation: fadeSlideUp 0.35s ease 0.2s both;
}
.scroll-indicator span { font-size: 0.75rem; color: var(--mocha-light); letter-spacing: 0.1em; text-transform: uppercase; }
.scroll-mouse {
  width: 24px; height: 38px; border: 2px solid var(--bronze); border-radius: 12px;
  position: relative;
}
.scroll-mouse::after {
  content: ''; position: absolute; top: 6px; left: 50%; transform: translateX(-50%);
  width: 3px; height: 8px; background: var(--terracotta); border-radius: 3px;
  animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown {
  0% { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(12px); }
}

/* ─── Sections ─── */
main { position: relative; z-index: 1; }

.section {
  padding: 5rem 2rem;
  position: relative;
}
.section-alt {
  background: linear-gradient(180deg, var(--sand-dark) 0%, var(--sand) 100%);
}
.container { max-width: 1000px; margin: 0 auto; }

.page-header {
  text-align: center;
  padding: 7rem 2rem 3rem;
}
.page-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--charcoal); margin-bottom: 0.5rem;
}
.page-header p {
  font-size: 1.1rem; color: var(--mocha-light); max-width: 500px; margin: 0 auto;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem; color: var(--charcoal);
  margin-bottom: 0.5rem;
}
.section-subtitle {
  color: var(--mocha-light); font-size: 1rem;
  margin-bottom: 2rem;
}

/* ─── Glass Cards ─── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.card {
  background: var(--glass);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--terracotta), var(--gold), var(--sage));
  opacity: 0; transition: var(--transition);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(194,112,62,0.3);
}
.card:hover::before { opacity: 1; }
.card-icon {
  font-size: 2.5rem; margin-bottom: 1rem;
  display: inline-block;
  animation: float 2s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.card h3 {
  font-size: 1.15rem; font-weight: 600;
  color: var(--charcoal); margin-bottom: 0.5rem;
}
.card p { color: var(--mocha-light); font-size: 0.92rem; }

/* ─── Feature Stats ─── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}
.stat-item {
  text-align: center; padding: 1.5rem;
  background: var(--glass);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  transition: var(--transition);
}
.stat-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem; font-weight: 600;
  background: linear-gradient(135deg, var(--terracotta), var(--gold));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-label {
  font-size: 0.82rem; color: var(--mocha-light);
  margin-top: 0.3rem; text-transform: uppercase; letter-spacing: 0.05em;
}

/* ─── Steps ─── */
.steps { display: flex; flex-direction: column; gap: 1.2rem; }
.step {
  display: flex; gap: 1.2rem; align-items: flex-start;
  background: var(--glass);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: var(--transition);
}
.step:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
  border-left: 3px solid var(--terracotta);
}
.step-number {
  flex-shrink: 0; width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--terracotta), var(--terracotta-glow));
  color: white; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 1rem;
}
.step h3 { font-size: 1rem; font-weight: 600; color: var(--charcoal); margin-bottom: 0.3rem; }
.step p { font-size: 0.9rem; color: var(--mocha-light); }

/* ─── Callouts ─── */
.callout {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.2rem 1.5rem; border-radius: var(--radius);
  border: 1px solid var(--glass-border);
  font-size: 0.92rem;
}
.callout-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.callout-tip { background: rgba(122,139,111,0.08); border-color: rgba(122,139,111,0.2); }
.callout-info { background: rgba(139,111,71,0.08); border-color: rgba(139,111,71,0.2); }
.callout-warn { background: rgba(194,112,62,0.08); border-color: rgba(194,112,62,0.2); }

/* ─── Specs Table ─── */
.specs-table {
  width: 100%; border-collapse: separate; border-spacing: 0;
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--glass-border);
  background: var(--glass);
  backdrop-filter: blur(10px);
}
.specs-table th, .specs-table td {
  padding: 0.9rem 1.2rem; text-align: left;
  border-bottom: 1px solid var(--glass-border);
  font-size: 0.92rem;
}
.specs-table th {
  background: rgba(74,55,40,0.05);
  color: var(--mocha); font-weight: 500;
  white-space: nowrap;
}
.specs-table td { color: var(--mocha-light); }
.specs-table tr:last-child th, .specs-table tr:last-child td { border-bottom: none; }
.specs-table tr:hover td { background: rgba(194,112,62,0.04); }

/* ─── Videos ─── */
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.video-card {
  background: var(--glass);
  backdrop-filter: blur(15px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.video-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: var(--shadow-lg);
}
.video-wrap {
  position: relative; padding-top: 177.78%; /* 9:16 for Shorts */
  background: var(--charcoal);
}
.video-wrap iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%; border: none;
}
.video-info { padding: 1.2rem 1.5rem; }
.video-info h3 { font-size: 1rem; font-weight: 600; color: var(--charcoal); margin-bottom: 0.3rem; }
.video-info p { font-size: 0.85rem; color: var(--mocha-light); }

/* ─── Nav Cards (Links) ─── */
.nav-card {
  display: flex; align-items: center; gap: 1rem;
  text-decoration: none; color: var(--mocha);
  background: var(--glass);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 1.2rem 1.5rem;
  transition: var(--transition);
}
.nav-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(194,112,62,0.3);
}
.nav-card .icon { font-size: 2rem; }
.nav-card h3 { font-size: 0.95rem; font-weight: 600; color: var(--charcoal); }
.nav-card p { font-size: 0.82rem; color: var(--mocha-light); margin-top: 2px; }

/* ─── Footer ─── */
.footer {
  text-align: center; padding: 3rem 2rem;
  border-top: 1px solid var(--glass-border);
  font-size: 0.85rem; color: var(--mocha-light);
  position: relative; z-index: 1;
}
.personal-badge {
  display: inline-block; padding: 0.3rem 1rem;
  background: rgba(194,112,62,0.08); border: 1px solid rgba(194,112,62,0.15);
  border-radius: 100px; font-size: 0.75rem; color: var(--terracotta);
  margin-bottom: 0.8rem; font-weight: 500;
}

/* ─── Reveal Animations ─── */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.reveal.visible {
  opacity: 1; transform: translateY(0);
}
.reveal.delay-1 { transition-delay: 0.05s; }
.reveal.delay-2 { transition-delay: 0.1s; }
.reveal.delay-3 { transition-delay: 0.15s; }

/* ─── Marquee / Ticker ─── */
.ticker-wrap {
  overflow: hidden;
  padding: 0.8rem 0;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  background: rgba(74,55,40,0.02);
}
.ticker {
  display: flex; gap: 3rem;
  animation: ticker 15s linear infinite;
  white-space: nowrap;
}
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ticker span {
  font-size: 0.85rem; color: var(--mocha-light);
  font-weight: 400; letter-spacing: 0.03em;
}

/* ─── Parallax Keyboard Visual ─── */
.keyboard-visual {
  position: relative; width: 100%; max-width: 600px; margin: 2rem auto;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--charcoal), var(--charcoal-soft));
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255,255,255,0.05);
}
.keyboard-visual::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 40%, rgba(194,112,62,0.15) 0%, transparent 60%);
}
.keyboard-visual .kb-text {
  position: relative; z-index: 1;
  font-family: 'Playfair Display', serif;
  font-size: 2rem; color: rgba(255,248,240,0.9);
  text-align: center;
}
.keyboard-visual .kb-text small {
  display: block; font-family: 'Outfit', sans-serif;
  font-size: 0.85rem; color: rgba(255,248,240,0.5);
  margin-top: 0.3rem; font-weight: 300; letter-spacing: 0.15em;
}

/* ─── Glow Line Separator ─── */
.glow-line {
  width: 80px; height: 3px; margin: 1.5rem auto;
  background: linear-gradient(90deg, transparent, var(--terracotta), transparent);
  border-radius: 3px;
}

/* ─── Mobile Bottom Tab Bar ─── */
.mobile-tab-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: rgba(44,36,32,0.95);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-top: 1px solid rgba(201,169,110,0.2);
  padding: 0.5rem 0 calc(0.5rem + env(safe-area-inset-bottom));
  box-shadow: 0 -4px 30px rgba(0,0,0,0.25);
}
.mobile-tab-bar .tabs {
  display: flex; justify-content: space-around; align-items: center;
  list-style: none; margin: 0; padding: 0;
}
.mobile-tab-bar a {
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  text-decoration: none; color: rgba(255,248,240,0.5);
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.02em;
  padding: 0.5rem 0.8rem; border-radius: 12px;
  transition: 0.15s ease;
  position: relative;
  min-width: 56px;
  -webkit-tap-highlight-color: transparent;
}
.mobile-tab-bar a .tab-icon { font-size: 1.6rem; line-height: 1; }
.mobile-tab-bar a.active {
  color: var(--gold);
  background: rgba(201,169,110,0.1);
}
.mobile-tab-bar a.active::before {
  content: '';
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 24px; height: 3px; border-radius: 3px;
  background: linear-gradient(90deg, var(--terracotta), var(--gold));
}
.mobile-tab-bar a:active { transform: scale(0.92); background: rgba(201,169,110,0.15); }

/* ─── Responsive ─── */
@media (max-width: 768px) {
  /* FORCE hide desktop nav — all states */
  .nav-links,
  .navbar .nav-links,
  .nav-links.open,
  ul.nav-links { display: none !important; visibility: hidden !important; }
  .hamburger { display: none !important; visibility: hidden !important; }
  .mobile-tab-bar { display: block; }

  /* Bottom padding so content doesn't hide behind tab bar */
  body { padding-bottom: 80px; }
  .footer { padding-bottom: calc(3rem + 80px); }

  /* Navbar mobile — just logo centered */
  .navbar {
    justify-content: center;
    padding: 0.6rem 1.5rem;
  }
  .nav-logo { font-size: 1.3rem; }

  /* Hero */
  .hero { min-height: 80vh; padding: 5rem 1.5rem 3rem; }
  .hero h1 { font-size: clamp(1.8rem, 8vw, 2.5rem); }
  .hero p { font-size: 1rem; }
  .hero-badge { font-size: 0.75rem; margin-bottom: 1rem; }
  .hero-actions { gap: 0.8rem; }
  .btn { padding: 0.65rem 1.4rem; font-size: 0.88rem; }

  /* Sections */
  .section { padding: 2.5rem 1.2rem; }
  .page-header { padding: 5rem 1.5rem 2rem; }
  .page-header h1 { font-size: clamp(1.6rem, 7vw, 2.2rem); }
  .page-header p { font-size: 0.95rem; }
  .section-title { font-size: 1.4rem; }
  .section-subtitle { font-size: 0.9rem; }

  /* Grids */
  .card-grid { grid-template-columns: 1fr; gap: 1rem; }
  .video-grid { grid-template-columns: 1fr; gap: 1.2rem; }
  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 1rem; }

  /* Cards - more compact */
  .card { padding: 1.5rem; border-radius: var(--radius); }
  .card-icon { font-size: 2rem; margin-bottom: 0.6rem; }
  .card h3 { font-size: 1.05rem; }

  /* Steps */
  .step { padding: 1.2rem; gap: 1rem; }
  .step-number { width: 34px; height: 34px; font-size: 0.9rem; border-radius: 10px; }
  .step h3 { font-size: 0.95rem; }
  .step p { font-size: 0.85rem; }

  /* Stats */
  .stat-item { padding: 1.2rem 0.8rem; }
  .stat-number { font-size: 1.8rem; }
  .stat-label { font-size: 0.7rem; }

  /* Keyboard visual */
  .keyboard-visual { aspect-ratio: 3/2; border-radius: var(--radius); }
  .keyboard-visual .kb-text { font-size: 1.5rem; }
  .keyboard-visual .kb-text small { font-size: 0.7rem; }

  /* Video Shorts — 16:9 on mobile so they're not ridiculously tall */
  .video-wrap { padding-top: 100%; }

  /* Scroll indicator */
  .scroll-indicator { bottom: 1.5rem; }

  /* Ticker */
  .ticker-wrap { padding: 0.6rem 0; }
  .ticker span { font-size: 0.78rem; }

  /* Table */
  .specs-table th, .specs-table td { padding: 0.7rem 0.8rem; font-size: 0.82rem; }

  /* Nav cards */
  .nav-card { padding: 1rem 1.2rem; }
  .nav-card .icon { font-size: 1.6rem; }
  .nav-card h3 { font-size: 0.88rem; }
  .nav-card p { font-size: 0.75rem; }

  /* Callout */
  .callout { padding: 1rem 1.2rem; font-size: 0.85rem; }

  /* Footer */
  .footer { padding: 2rem 1.5rem; font-size: 0.8rem; }

  /* Hide orbs on mobile for performance */
  .orb { display: none; }
}

/* Extra small phones */
@media (max-width: 380px) {
  .hero h1 { font-size: 1.6rem; }
  .stats-row { grid-template-columns: 1fr 1fr; gap: 0.8rem; }
  .stat-number { font-size: 1.5rem; }
  .mobile-tab-bar a { font-size: 0.6rem; }
  .mobile-tab-bar a .tab-icon { font-size: 1.1rem; }
}
