/* ============================================================
   NARRATO WEBSITE — style.css
   Brand: Orange #F4A300, Teal #00B894, Dark #1B0E00
   Font: Inter (Google Fonts)
   ============================================================ */

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

:root {
  --orange: #F4A300;
  --orange-dark: #C18000;
  --orange-light: #FFB520;
  --peach: #FFD3AC;
  --peach-light: #FFF5E6;
  --teal: #00B894;
  --dark: #1B0E00;
  --brown: #634000;
  --gray: #808080;
  --gray-light: #F5F5F5;
  --white: #FFFFFF;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 999px;
  --shadow: 0 4px 24px rgba(27,14,0,0.08);
  --shadow-lg: 0 12px 48px rgba(27,14,0,0.14);
  --shadow-orange: 0 8px 32px rgba(244,163,0,0.35);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --section-gap: 120px;
}

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

body {
  font-family: var(--font);
  color: var(--dark);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
section { padding: var(--section-gap) 0; }

/* ---- CONTAINER ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-family: var(--font);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
  line-height: 1;
}
.btn:hover { transform: translateY(-2px); }
.btn-icon { width: 18px; height: 18px; flex-shrink: 0; }

.btn-primary { background: var(--orange); color: white; }
.btn-primary:hover { background: var(--orange-dark); box-shadow: var(--shadow-orange); }

.btn-dark { background: var(--dark); color: white; }
.btn-dark:hover { background: #2d1a00; box-shadow: 0 8px 24px rgba(27,14,0,0.25); }

.btn-outline { background: transparent; color: var(--dark); border: 2px solid var(--dark); }
.btn-outline:hover { background: var(--dark); color: white; }

.btn-white { background: white; color: var(--dark); }
.btn-white:hover { background: var(--peach-light); box-shadow: var(--shadow); }

.btn-outline-dark { background: transparent; color: var(--dark); border: 2px solid rgba(27,14,0,0.2); }
.btn-outline-dark:hover { border-color: var(--dark); background: var(--dark); color: white; }

/* ---- WAITLIST FORM ---- */
.waitlist-form {
  display: flex;
  gap: 8px;
  width: 100%;
  max-width: 480px;
}
.waitlist-input {
  flex: 1;
  padding: 14px 20px;
  border-radius: var(--radius-full);
  border: 2px solid rgba(27,14,0,0.15);
  font-family: var(--font);
  font-size: 15px;
  outline: none;
  transition: var(--transition);
  background: white;
  min-width: 0;
}
.waitlist-input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(244,163,0,0.15);
}
.waitlist-btn {
  flex-shrink: 0;
}
@media (max-width: 480px) {
  .waitlist-form { flex-direction: column; }
  .waitlist-btn { width: 100%; justify-content: center; }
}

/* ---- TYPOGRAPHY UTILITIES ---- */
.highlight {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.highlight-white {
  color: white;
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-color: rgba(255,255,255,0.45);
}

.section-badge {
  display: inline-block;
  padding: 6px 16px;
  background: var(--peach-light);
  color: var(--orange-dark);
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.light-badge { background: rgba(255,255,255,0.2); color: white; }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 72px;
}
.section-header h2 {
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.section-header p { font-size: 18px; color: var(--gray); line-height: 1.7; }

/* ---- REVEAL ANIMATIONS ---- */
.reveal, .reveal-instant {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.reveal.visible, .reveal-instant.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ---- KEYFRAMES ---- */
@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33%       { transform: translateY(-22px) rotate(-1.5deg); }
  66%       { transform: translateY(-10px) rotate(1deg); }
}
@keyframes float-slow {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-14px); }
}
@keyframes bounce-nora {
  0%, 100% { transform: translateY(0) scale(1); }
  20%       { transform: translateY(-22px) scale(1.02); }
  35%       { transform: translateY(-8px) scale(0.99); }
  50%       { transform: translateY(-16px) scale(1.01); }
  65%       { transform: translateY(0) scale(1); }
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(244,163,0,0.5); }
  50%       { box-shadow: 0 0 0 8px rgba(244,163,0,0); }
}
@keyframes soundWave {
  0%, 100% { transform: scaleY(0.3); }
  50%       { transform: scaleY(1); }
}
@keyframes processing {
  0%   { width: 0%; }
  60%  { width: 85%; }
  100% { width: 95%; }
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.35; transform: scale(1); }
  50%       { opacity: 0.2; transform: scale(1.12); }
}
@keyframes badgePop {
  from { opacity: 0; transform: translateY(6px) scale(0.95); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50%       { transform: translateY(6px); opacity: 0.6; }
}

/* ---- NORA FLOAT CLASSES ---- */
.nora-float { animation: float 5s ease-in-out infinite; }
.nora-float-slow { animation: float-slow 4s ease-in-out infinite; }
.nora-bounce { animation: bounce-nora 3.5s ease-in-out infinite; }

/* ============================================================
   NAVBAR
   ============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}
#navbar.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 13px 0;
  box-shadow: 0 1px 0 rgba(27,14,0,0.08);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 20px;
  flex-shrink: 0;
}
.logo-text { color: var(--orange); }
.logo-icon { font-size: 22px; }
.nav-links {
  display: flex;
  gap: 32px;
  margin-left: auto;
}
.nav-links a {
  font-weight: 500;
  font-size: 15px;
  color: var(--brown);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--orange); }
.nav-cta { margin-left: 8px; padding: 11px 22px; font-size: 14px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  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); }

.mobile-menu { display: none; background: white; box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.mobile-menu.open { display: block; }
.mobile-menu ul { padding: 12px 24px 24px; }
.mobile-menu li { padding: 12px 0; border-bottom: 1px solid var(--peach-light); }
.mobile-menu li:last-child { border: none; margin-top: 8px; }
.mobile-menu a { font-weight: 500; color: var(--dark); display: block; }

/* ============================================================
   HERO
   ============================================================ */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 100px;
  padding-bottom: 60px;
  overflow: hidden;
  position: relative;
}
.hero-bg-blob {
  position: absolute;
  top: -15%;
  right: -8%;
  width: 750px;
  height: 750px;
  background: radial-gradient(circle, var(--peach) 0%, transparent 68%);
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
  animation: glowPulse 6s ease-in-out infinite;
}
.hero-bg-blob-2 {
  position: absolute;
  bottom: 5%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #FFE8CC 0%, transparent 68%);
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}
.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
  flex: 1;
}
.hero-content { max-width: 560px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--peach-light);
  border: 1px solid var(--peach);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  color: var(--orange-dark);
  margin-bottom: 28px;
}
.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  animation: pulse-glow 1.8s ease-in-out infinite;
  flex-shrink: 0;
}
.hero-headline {
  font-size: clamp(40px, 5.5vw, 66px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  color: var(--dark);
}
.hero-sub {
  font-size: 18px;
  color: var(--brown);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero-source-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.source-badge {
  padding: 6px 14px;
  background: var(--gray-light);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 500;
  color: var(--brown);
  border: 1px solid rgba(255,211,172,0.6);
  animation: badgePop 0.4s ease both;
}
.source-badge:nth-child(1) { animation-delay: 0.5s; }
.source-badge:nth-child(2) { animation-delay: 0.65s; }
.source-badge:nth-child(3) { animation-delay: 0.8s; }
.source-badge:nth-child(4) { animation-delay: 0.95s; }

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 520px;
}
.nora-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nora-glow {
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--peach) 0%, transparent 70%);
  animation: glowPulse 4s ease-in-out infinite;
  z-index: 0;
}
.nora-float { position: relative; z-index: 1; width: 380px; max-width: 100%; }

/* Floating UI Cards */
.floating-card {
  position: absolute;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,211,172,0.5);
  border-radius: var(--radius);
  padding: 12px 16px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  z-index: 10;
  animation: cardFloat 3s ease-in-out infinite;
  white-space: nowrap;
}
.card-now-playing {
  bottom: 12%;
  left: -5%;
  animation-delay: 0s;
}
.card-ready {
  top: 8%;
  right: -2%;
  font-size: 13px;
  background: rgba(255,255,255,0.95);
  animation-delay: 1s;
}
.card-speed {
  top: 42%;
  right: -8%;
  flex-direction: column;
  gap: 2px;
  padding: 10px 16px;
  animation-delay: 2s;
}
.now-playing-icon { font-size: 20px; }
.now-playing-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--orange); margin-bottom: 2px; }
.now-playing-title { font-size: 13px; color: var(--dark); }
.ready-text { color: var(--dark); }
.speed-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gray); }
.speed-value { font-size: 18px; font-weight: 800; color: var(--orange); }

/* Sound Wave */
.sound-wave {
  display: flex;
  align-items: center;
  gap: 2px;
  height: 20px;
  margin-left: 4px;
}
.sound-wave span {
  display: block;
  width: 3px;
  height: 16px;
  background: var(--orange);
  border-radius: 2px;
  transform-origin: center bottom;
  animation: soundWave 0.8s ease-in-out infinite;
}
.sound-wave span:nth-child(1) { animation-delay: 0s; }
.sound-wave span:nth-child(2) { animation-delay: 0.12s; }
.sound-wave span:nth-child(3) { animation-delay: 0.24s; }
.sound-wave span:nth-child(4) { animation-delay: 0.12s; }
.sound-wave span:nth-child(5) { animation-delay: 0s; }

/* Scroll Hint */
.scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--gray);
  font-weight: 500;
  padding-top: 32px;
  position: relative;
  z-index: 1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.scroll-arrow { font-size: 18px; animation: scrollBounce 1.5s ease-in-out infinite; }

/* ============================================================
   STATS
   ============================================================ */
#stats {
  padding: 60px 0;
  background: var(--peach-light);
  border-top: 1px solid var(--peach);
  border-bottom: 1px solid var(--peach);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.stat-item { text-align: center; }
.stat-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}
.stat-number {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  color: var(--orange);
  letter-spacing: -0.03em;
  line-height: 1;
}
.stat-inf { font-size: clamp(44px, 6vw, 64px); }
.stat-unit { font-size: 20px; font-weight: 700; color: var(--orange-dark); }
.stat-label { font-size: 14px; color: var(--brown); font-weight: 500; margin-top: 6px; }

/* ============================================================
   FEATURES
   ============================================================ */
#features { background: white; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.feature-card {
  background: var(--gray-light);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  transition: var(--transition);
  border: 1px solid rgba(27,14,0,0.05);
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.feature-card-accent {
  background: var(--dark);
  color: white;
  border: none;
}
.feature-card-accent h3 { color: white !important; }
.feature-card-accent p { color: rgba(255,255,255,0.75) !important; }
.feature-card-accent .feature-bullets { color: rgba(255,255,255,0.9) !important; }

.feature-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  background: var(--icon-bg, var(--peach-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 26px;
}
.feature-card h3 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  color: var(--dark);
}
.feature-card p { font-size: 15px; color: var(--gray); line-height: 1.7; margin-bottom: 20px; }
.feature-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.feature-tag {
  padding: 4px 12px;
  background: white;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  color: var(--orange-dark);
  border: 1px solid var(--peach);
}
.feature-bullets { padding: 0; }
.feature-bullets li { font-size: 14px; margin-bottom: 6px; font-weight: 500; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
#how-it-works {
  background: linear-gradient(180deg, var(--white) 0%, var(--peach-light) 100%);
}
.steps-container { display: flex; flex-direction: column; gap: 100px; }
.step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.step-reverse { direction: rtl; }
.step-reverse > * { direction: ltr; }
.step-visual { display: flex; justify-content: center; }
.step-img-wrap {
  position: relative;
  width: 300px;
  height: 300px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 60px rgba(244,163,0,0.15);
  border: 3px solid var(--peach);
}
.step-img-wrap img { width: 240px; height: 240px; object-fit: contain; }
.step-number {
  font-size: 72px;
  font-weight: 900;
  color: var(--peach);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.04em;
}
.step-content h3 {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: var(--dark);
}
.step-content p { font-size: 16px; color: var(--brown); line-height: 1.75; margin-bottom: 20px; }

.step-formats {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.step-formats span {
  padding: 6px 14px;
  background: white;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  border: 1px solid var(--peach);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.processing-bar {
  height: 6px;
  background: var(--peach);
  border-radius: var(--radius-full);
  overflow: hidden;
  margin-bottom: 8px;
}
.processing-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  border-radius: var(--radius-full);
  animation: processing 3s cubic-bezier(0.4,0,0.2,1) infinite alternate;
}
.processing-caption { font-size: 13px; color: var(--orange-dark); font-weight: 600; }
.speed-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.speed-chip {
  padding: 6px 16px;
  background: white;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 600;
  color: var(--gray);
  border: 1px solid #e5e5e5;
  cursor: pointer;
  transition: var(--transition);
}
.speed-chip-active {
  background: var(--orange);
  color: white;
  border-color: var(--orange);
}

/* ============================================================
   MEET NORA
   ============================================================ */
#meet-nora { padding: 0; }
.meet-nora-inner {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  padding: 100px 0;
}
.meet-nora-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.meet-nora-visual {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
}
.meet-nora-visual img { position: relative; z-index: 1; }
.nora-shadow {
  position: absolute;
  bottom: -10px;
  width: 200px;
  height: 30px;
  background: rgba(0,0,0,0.2);
  border-radius: 50%;
  filter: blur(12px);
  z-index: 0;
}
.meet-nora-content h2 {
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 900;
  color: white;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}
.meet-nora-content p {
  font-size: 17px;
  color: rgba(255,255,255,0.88);
  line-height: 1.75;
  margin-bottom: 20px;
}
.meet-nora-sub { font-style: italic; }
.meet-nora-content .btn-white { margin-top: 12px; }

/* ============================================================
   DOWNLOAD CTA
   ============================================================ */
#download { background: white; }
.cta-card {
  position: relative;
  background: linear-gradient(135deg, var(--peach-light) 0%, white 60%);
  border: 2px solid var(--peach);
  border-radius: var(--radius-xl);
  padding: 80px 60px;
  text-align: center;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cta-bg-blob {
  position: absolute;
  top: -30%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--peach) 0%, transparent 70%);
  opacity: 0.5;
  pointer-events: none;
}
.cta-nora {
  position: relative;
  z-index: 1;
  margin-bottom: -20px;
  width: 180px;
}
.cta-content { position: relative; z-index: 1; max-width: 560px; }
.cta-card h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  line-height: 1.15;
}
.cta-card p { font-size: 17px; color: var(--brown); line-height: 1.7; margin-bottom: 36px; }
.cta-buttons { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.cta-sub { margin-top: 16px; font-size: 13px; color: var(--gray); }

/* ============================================================
   FOOTER
   ============================================================ */
#footer { background: #FAFAF8; border-top: 1px solid rgba(27,14,0,0.08); padding: 80px 0 0; }
.footer-container {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 80px;
  padding-bottom: 60px;
}
.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-brand p { font-size: 15px; color: var(--gray); line-height: 1.7; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col-title { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--dark); margin-bottom: 4px; }
.footer-col a { font-size: 14px; color: var(--gray); transition: var(--transition); }
.footer-col a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid rgba(27,14,0,0.08);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--gray);
}
.footer-bottom-links { display: flex; gap: 12px; align-items: center; }
.footer-bottom-links a { color: var(--gray); transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--orange); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-container { gap: 32px; }
  .nora-float { width: 320px; }
  .step { gap: 48px; }
}

@media (max-width: 768px) {
  :root { --section-gap: 80px; }

  /* Nav */
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  /* Hero */
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .hero-content { max-width: 100%; }
  .hero-badge { margin: 0 auto 24px; }
  .hero-sub { margin: 0 auto 28px; }
  .hero-ctas { justify-content: center; }
  .hero-source-badges { justify-content: center; }
  .hero-visual { order: -1; min-height: 320px; }
  .nora-float { width: 260px; }
  .nora-glow { width: 260px; height: 260px; }
  .card-now-playing { bottom: 2%; left: 0; font-size: 11px; padding: 8px 12px; }
  .card-speed { top: 10%; right: 0; }
  .card-ready { top: 5%; right: auto; left: 0; font-size: 12px; }
  .scroll-hint { display: none; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }

  /* Features */
  .features-grid { grid-template-columns: 1fr; }

  /* Steps */
  .step, .step-reverse { grid-template-columns: 1fr; gap: 32px; direction: ltr; text-align: center; }
  .step-img-wrap { width: 220px; height: 220px; margin: 0 auto; }
  .step-img-wrap img { width: 180px; height: 180px; }
  .step-number { font-size: 52px; }
  .step-formats, .speed-chips { justify-content: center; }

  /* Meet Nora */
  .meet-nora-container { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .meet-nora-visual img { width: 240px; height: 240px; margin: 0 auto; }
  .meet-nora-content .btn-white { margin: 12px auto 0; }

  /* CTA */
  .cta-card { padding: 60px 28px; }

  /* Footer */
  .footer-container { grid-template-columns: 1fr; gap: 48px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom-inner { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 36px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-ctas { flex-direction: column; align-items: center; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .footer-links { grid-template-columns: 1fr; }
}
