/* ================================================================
   RESET & BASE
   ================================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg:        #080810;
  --bg-2:      #0e0e1a;
  --surface:   #12121f;
  --surface-2: #1a1a2e;
  --border:    rgba(255,255,255,0.07);
  --border-2:  rgba(255,255,255,0.12);
  --purple: #cba6f7;
  --pink:   #f5bde6;
  --blue:   #89b4fa;
  --green:  #a6e3a1;
  --orange: #fab387;
  --red:    #f38ba8;
  --grad-main: linear-gradient(135deg, #cba6f7 0%, #f5bde6 50%, #89b4fa 100%);
  --grad-btn:  linear-gradient(135deg, #9b59fc 0%, #c44bf9 100%);
  --text:      #cdd6f4;
  --text-muted:#6c7086;
  --text-sub:  #a6adc8;
  --radius:    16px;
  --nav-h:     68px;
  --font:      'Inter', system-ui, sans-serif;
  --font-head: 'Space Grotesk', 'Inter', system-ui, sans-serif;
}
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
/* ================================================================
   NOISE TEXTURE
   ================================================================ */
.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)'/%3E%3C/svg%3E");
  opacity: 0.025;
}
/* ================================================================
   CONTAINER
   ================================================================ */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
/* ================================================================
   REVEAL ANIMATION
   ================================================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
/* ================================================================
   LUCIDE ICON GLOBALS
   ================================================================ */
/* All lucide icons default behaviour */
[data-lucide] { display: inline-flex; align-items: center; justify-content: center; }
/* ================================================================
   BUTTONS
   ================================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 24px;
  border-radius: 50px;
  font-family: var(--font);
  font-size: 15px; font-weight: 600;
  cursor: pointer; border: none; outline: none;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn svg, .btn [data-lucide] svg {
  width: 17px; height: 17px; flex-shrink: 0;
}
.btn--primary {
  background: var(--grad-btn);
  color: #fff;
  box-shadow: 0 0 30px rgba(155,89,252,0.4);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(155,89,252,0.6);
}
.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border-2);
}
.btn--ghost:hover {
  border-color: var(--purple);
  color: var(--purple);
  background: rgba(203,166,247,0.08);
  transform: translateY(-2px);
}
.btn--large { padding: 16px 32px; font-size: 16px; }
/* ================================================================
   NAV
   ================================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  background: rgba(8,8,16,0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s ease;
}
.nav.scrolled { background: rgba(8,8,16,0.95); }
.nav-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; padding: 0 20px;
}
.nav-logo {
  display: flex; align-items: center; gap: 9px;
  font-family: var(--font-head);
  font-size: 18px; font-weight: 700;
  color: var(--text);
  transition: opacity 0.2s;
}
.nav-logo:hover { opacity: 0.85; }
/* Nav logo icon wrapper */
.nav-logo__icon {
  width: 30px; height: 30px;
  background: rgba(203,166,247,0.12);
  border: 1px solid rgba(203,166,247,0.22);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav-logo__icon svg { width: 15px; height: 15px; stroke: var(--purple); stroke-width: 2; }
.nav-links {
  display: flex; align-items: center; gap: 6px;
}
.nav-link {
  padding: 8px 14px;
  font-size: 14px; font-weight: 500;
  color: var(--text-sub);
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover { color: var(--text); background: var(--surface); }
.nav-cta {
  padding: 9px 20px;
  background: var(--grad-btn);
  color: #fff;
  border-radius: 50px;
  font-size: 14px; font-weight: 600;
  transition: all 0.25s ease;
  box-shadow: 0 0 20px rgba(155,89,252,0.3);
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 24px rgba(155,89,252,0.5); }
/* Hamburger */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: all 0.3s ease;
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
/* Mobile menu */
.nav-mobile {
  display: none; flex-direction: column;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 16px 20px 24px; gap: 4px;
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease;
}
.nav-mobile.open { display: flex; max-height: 320px; }
.nav-mobile__link {
  padding: 12px 16px;
  font-size: 15px; font-weight: 500;
  color: var(--text-sub); border-radius: 10px;
  transition: color 0.2s, background 0.2s;
}
.nav-mobile__link:hover { color: var(--text); background: var(--surface); }
.nav-mobile__cta {
  margin-top: 8px; padding: 14px 16px;
  background: var(--grad-btn); color: #fff;
  border-radius: 12px; font-size: 15px; font-weight: 600;
  text-align: center;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.nav-mobile__cta svg { width: 16px; height: 16px; }
/* ================================================================
   HERO
   ================================================================ */
.hero {
  min-height: 100dvh;
  padding-top: var(--nav-h);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  text-align: center;
}
/* ── CSS Fallback orbs (hidden after tubes load) ── */
.orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); pointer-events: none;
  transition: opacity 0.9s ease;
}
.orb--1 { width: 500px; height: 500px; background: rgba(155,89,252,0.18); top:-100px; left:-100px; animation: orbFloat1 12s ease-in-out infinite; }
.orb--2 { width: 400px; height: 400px; background: rgba(245,189,230,0.15); top:30%; right:-80px; animation: orbFloat2 15s ease-in-out infinite; }
.orb--3 { width: 300px; height: 300px; background: rgba(137,180,250,0.12); bottom:0; left:30%; animation: orbFloat3 10s ease-in-out infinite; }
.tubes-loaded .tubes-fallback { opacity: 0; pointer-events: none; }
@keyframes orbFloat1 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(40px,60px); } }
@keyframes orbFloat2 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-30px,-50px); } }
@keyframes orbFloat3 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(20px,-40px); } }
/* ── Tubes Canvas ── */
.tubes-canvas {
  position: absolute; inset: 0;
  width: 100% !important; height: 100% !important;
  display: block; touch-action: none;
  opacity: 0; transition: opacity 1s ease;
  cursor: crosshair; z-index: 0;
}
.tubes-loaded .tubes-canvas { opacity: 1; }
/* ── Click hint toast ── */
.tubes-hint {
  position: absolute; bottom: 88px; left: 50%;
  transform: translateX(-50%) translateY(12px);
  display: flex; align-items: center; gap: 8px;
  padding: 9px 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 50px;
  font-size: 12px; font-weight: 500;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.04em; white-space: nowrap;
  z-index: 3; pointer-events: none;
  opacity: 0; transition: opacity 0.6s ease, transform 0.6s ease;
}
.tubes-hint svg { width: 13px; height: 13px; stroke: rgba(255,255,255,0.6); stroke-width: 1.75; }
.tubes-loaded .tubes-hint {
  opacity: 1; transform: translateX(-50%) translateY(0);
  animation: hintFade 5s 1.5s ease forwards;
}
@keyframes hintFade { 0%,70% { opacity: 1; } 100% { opacity: 0; } }
/* ── Hero inner ── */
.hero-inner {
  position: relative; z-index: 1;
  max-width: 680px; padding: 60px 24px 40px;
  display: flex; flex-direction: column;
  align-items: center; gap: 24px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px;
  background: rgba(203,166,247,0.1);
  border: 1px solid rgba(203,166,247,0.25);
  border-radius: 50px;
  font-size: 13px; font-weight: 500; color: var(--purple);
  animation: fadeUp 0.8s ease both;
}
.hero-badge__dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green); box-shadow: 0 0 8px var(--green);
  animation: pulse 2s ease infinite;
}
@keyframes pulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.4); } }
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(40px,8vw,80px);
  font-weight: 800; line-height: 1.05;
  letter-spacing: -0.03em;
  display: flex; flex-direction: column; gap: 2px;
  animation: fadeUp 0.8s 0.1s ease both;
}
.hero-title__line { color: var(--text); }
.hero-title__gradient {
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  font-size: clamp(15px,2vw,17px); color: var(--text-sub);
  line-height: 1.7; max-width: 520px;
  animation: fadeUp 0.8s 0.2s ease both;
}
.hero-actions {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px;
  animation: fadeUp 0.8s 0.3s ease both;
}
.hero-stats {
  display: flex; align-items: center; gap: 24px;
  padding: 16px 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  animation: fadeUp 0.8s 0.4s ease both;
}
.stat { display: flex; flex-direction: column; align-items: center; }
.stat__num {
  font-family: var(--font-head); font-size: 22px; font-weight: 700;
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat__label { font-size: 11px; color: var(--text-muted); font-weight: 500; letter-spacing: 0.05em; }
.stat-divider { width: 1px; height: 32px; background: var(--border-2); }
/* Scroll cue */
.hero-scroll-cue {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%); z-index: 2;
  animation: fadeUp 1s 1s ease both;
}
.scroll-mouse {
  width: 26px; height: 40px;
  border: 2px solid var(--border-2);
  border-radius: 20px;
  display: flex; justify-content: center; padding-top: 7px;
}
.scroll-mouse__wheel {
  width: 3px; height: 8px;
  background: var(--purple); border-radius: 3px;
  animation: scrollWheel 2s ease-in-out infinite;
}
@keyframes scrollWheel { 0% { transform: translateY(0); opacity: 1; } 100% { transform: translateY(10px); opacity: 0; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
/* ================================================================
   MARQUEE
   ================================================================ */
.marquee-wrap {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-2); padding: 14px 0;
}
.marquee { overflow: hidden; }
.marquee-track {
  display: flex; align-items: center; gap: 24px;
  white-space: nowrap;
  animation: marqueeAnim 30s linear infinite;
  width: max-content;
  font-size: 13px; font-weight: 500;
  color: var(--text-muted); letter-spacing: 0.05em;
}
.marquee-dot { color: var(--purple); font-size: 8px; }
@keyframes marqueeAnim { from { transform: translateX(0); } to { transform: translateX(-50%); } }
/* ================================================================
   SECTION HEADERS
   ================================================================ */
.section-header { text-align: center; margin-bottom: 56px; }
.section-eyebrow {
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--purple); margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(28px,5vw,48px);
  font-weight: 800; line-height: 1.1;
  letter-spacing: -0.02em; color: var(--text); margin-bottom: 16px;
}
.section-sub { font-size: 16px; color: var(--text-sub); }
/* ================================================================
   FEATURE CARDS
   ================================================================ */
.features { padding: 100px 0; }
.features-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
}
.feat-card--wide { grid-column: 1 / -1; }
.feat-card {
  position: relative; overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.feat-card:hover { border-color: var(--border-2); transform: translateY(-4px); }
/* Glow */
.feat-card__glow {
  position: absolute; top: -60px; right: -60px;
  width: 200px; height: 200px;
  border-radius: 50%; filter: blur(60px);
  pointer-events: none; opacity: 0.45;
  transition: opacity 0.3s;
}
.feat-card:hover .feat-card__glow { opacity: 0.75; }
.feat-card__glow--purple { background: rgba(203,166,247,0.3); }
.feat-card__glow--pink   { background: rgba(245,189,230,0.3); }
.feat-card__glow--blue   { background: rgba(137,180,250,0.3); }
.feat-card__glow--green  { background: rgba(166,227,161,0.3); }
.feat-card__glow--orange { background: rgba(250,179,135,0.3); }
.feat-card__glow--red    { background: rgba(243,139,168,0.3); }
/* ── Feature card icon — Lucide SVG wrapper ── */
.feat-card__icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  animation: iconBounce 3s ease-in-out infinite;
  flex-shrink: 0;
}
.feat-card__icon svg {
  width: 22px; height: 22px; stroke-width: 1.75;
}
/* Per-card icon colours */
#feat-media .feat-card__icon     { background: rgba(203,166,247,0.1); border: 1px solid rgba(203,166,247,0.2); }
#feat-media .feat-card__icon svg { stroke: var(--purple); }
#feat-privacy .feat-card__icon     { background: rgba(245,189,230,0.1); border: 1px solid rgba(245,189,230,0.2); }
#feat-privacy .feat-card__icon svg { stroke: var(--pink); }
#feat-ui .feat-card__icon     { background: rgba(137,180,250,0.1); border: 1px solid rgba(137,180,250,0.2); }
#feat-ui .feat-card__icon svg { stroke: var(--blue); }
#feat-camera .feat-card__icon     { background: rgba(166,227,161,0.1); border: 1px solid rgba(166,227,161,0.2); }
#feat-camera .feat-card__icon svg { stroke: var(--green); }
#feat-rules .feat-card__icon     { background: rgba(250,179,135,0.1); border: 1px solid rgba(250,179,135,0.2); }
#feat-rules .feat-card__icon svg { stroke: var(--orange); }
#feat-experimental .feat-card__icon     { background: rgba(243,139,168,0.1); border: 1px solid rgba(243,139,168,0.2); }
#feat-experimental .feat-card__icon svg { stroke: var(--red); }
@keyframes iconBounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }
.feat-card__title {
  font-family: var(--font-head);
  font-size: 20px; font-weight: 700;
  color: var(--text); margin-bottom: 10px;
}
.feat-card__desc { font-size: 14px; color: var(--text-sub); line-height: 1.65; margin-bottom: 16px; }
.feat-list { display: flex; flex-direction: column; gap: 7px; }
.feat-list li {
  font-size: 13px; color: var(--text-sub);
  padding-left: 18px; position: relative;
}
.feat-list li::before {
  content: '✓'; position: absolute; left: 0;
  color: var(--green); font-weight: 700; font-size: 11px;
}
.feat-card__tag {
  margin-top: 20px; display: inline-block;
  padding: 4px 12px;
  background: rgba(203,166,247,0.12);
  border: 1px solid rgba(203,166,247,0.25);
  border-radius: 50px;
  font-size: 11px; font-weight: 600; color: var(--purple); letter-spacing: 0.05em;
}
/* Chips */
.feat-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.chip {
  padding: 6px 14px;
  background: var(--surface-2);
  border: 1px solid var(--border-2);
  border-radius: 50px;
  font-size: 12px; font-weight: 500; color: var(--text-sub);
  transition: all 0.2s;
}
.chip:hover { border-color: var(--purple); color: var(--purple); background: rgba(203,166,247,0.08); }
/* ================================================================
   AURORA SECTION
   ================================================================ */
.aurora-section { padding: 0 0 100px; }
.aurora-card {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #13132a 0%, #1a1030 100%);
  border: 1px solid rgba(203,166,247,0.2);
  border-radius: 24px; padding: 60px 48px;
}
.aurora-orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); pointer-events: none;
}
.aurora-orb--1 { width: 400px; height: 400px; background: rgba(155,89,252,0.3); top:-100px; right:-100px; animation: orbFloat1 8s ease-in-out infinite; }
.aurora-orb--2 { width: 300px; height: 300px; background: rgba(245,189,230,0.2); bottom:-100px; left:-50px; animation: orbFloat2 10s ease-in-out infinite; }
.aurora-content { position: relative; z-index: 1; max-width: 640px; }
.aurora-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 14px;
  background: rgba(203,166,247,0.15);
  border: 1px solid rgba(203,166,247,0.3);
  border-radius: 50px;
  font-size: 12px; font-weight: 600; color: var(--purple); margin-bottom: 20px;
}
.aurora-badge svg { width: 13px; height: 13px; stroke: var(--purple); stroke-width: 2; }
.aurora-title {
  font-family: var(--font-head);
  font-size: clamp(28px,4vw,44px);
  font-weight: 800; line-height: 1.1; letter-spacing: -0.02em;
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; margin-bottom: 16px;
}
.aurora-desc { font-size: 15px; color: var(--text-sub); line-height: 1.75; margin-bottom: 32px; }
.aurora-stats { display: flex; gap: 40px; }
.aurora-stat { display: flex; flex-direction: column; }
.aurora-stat__num { font-family: var(--font-head); font-size: 28px; font-weight: 800; color: var(--purple); }
.aurora-stat__label { font-size: 12px; color: var(--text-muted); font-weight: 500; }
/* ================================================================
   INSTALL
   ================================================================ */
.install { padding: 100px 0; background: var(--bg-2); }
.steps { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 56px; flex-wrap: wrap; }
.step {
  flex: 1; min-width: 200px;
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px;
  transition: border-color 0.3s, transform 0.3s;
}
.step:hover { border-color: var(--purple); transform: translateY(-3px); }
.step__num {
  flex-shrink: 0; width: 36px; height: 36px;
  background: var(--grad-btn); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 800; color: #fff;
}
.step__title { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.step__desc  { font-size: 13px; color: var(--text-sub); line-height: 1.6; }
.step-arrow {
  font-size: 18px; color: var(--purple);
  align-self: center; flex-shrink: 0; opacity: 0.5;
}
.step-arrow svg { width: 20px; height: 20px; stroke: var(--purple); stroke-width: 2; }
.install-cta { text-align: center; }
.install-note { margin-top: 14px; font-size: 13px; color: var(--text-muted); }
/* ================================================================
   COMMUNITY
   ================================================================ */
.community { padding: 100px 0; }
.community-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.community-card {
  display: flex; flex-direction: column;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px; gap: 10px;
  transition: all 0.3s ease; cursor: pointer;
}
.community-card:hover { border-color: var(--purple); transform: translateY(-4px); background: var(--surface-2); }
.community-card__icon {
  width: 54px; height: 54px;
  display: flex; align-items: center; justify-content: center;
  background: var(--surface-2); border-radius: 14px; margin-bottom: 6px;
  color: var(--text-sub);
}
.community-card__icon svg {
  width: 24px; height: 24px;
  stroke: var(--text-sub); stroke-width: 1.75;
}
#community-github .community-card__icon svg { fill: var(--text-sub); stroke: none; }
.community-card__title { font-size: 18px; font-weight: 700; color: var(--text); }
.community-card__desc  { font-size: 14px; color: var(--text-sub); flex: 1; }
.community-card__arrow { color: var(--purple); transition: transform 0.2s; }
.community-card__arrow svg { width: 18px; height: 18px; stroke: var(--purple); stroke-width: 2; }
.community-card:hover .community-card__arrow svg { transform: translateX(4px); }
/* ================================================================
   FOOTER
   ================================================================ */
.footer { background: var(--bg-2); border-top: 1px solid var(--border); padding: 60px 0 0; }
.footer-inner {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 40px; flex-wrap: wrap;
  padding-bottom: 40px; border-bottom: 1px solid var(--border);
}
.footer-logo {
  font-family: var(--font-head);
  font-size: 20px; font-weight: 700; color: var(--text);
  display: flex; align-items: center; gap: 8px; margin-bottom: 10px;
}
.footer-logo svg { width: 18px; height: 18px; stroke: var(--purple); stroke-width: 2; }
.footer-tagline { font-size: 14px; color: var(--text-muted); line-height: 1.65; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: var(--text-sub); transition: color 0.2s; }
.footer-links a:hover { color: var(--purple); }
.footer-bottom { padding: 20px 0; text-align: center; }
.footer-bottom p { font-size: 13px; color: var(--text-muted); display: flex; align-items: center; justify-content: center; gap: 5px; flex-wrap: wrap; }
.footer-heart { display: inline-flex; }
.footer-heart svg { width: 14px; height: 14px; stroke: var(--red); stroke-width: 2; }
/* ================================================================
   RESPONSIVE — MOBILE FIRST
   ================================================================ */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .features-grid { grid-template-columns: 1fr; }
  .feat-card--wide { grid-column: 1; }
  .steps { flex-direction: column; }
  .step-arrow { display: none; }
  .community-grid { grid-template-columns: 1fr; }
  .aurora-card { padding: 40px 24px; }
  .aurora-stats { gap: 24px; }
  .hero-stats { flex-direction: column; gap: 12px; width: 100%; }
  .stat-divider { width: 80%; height: 1px; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 36px; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .btn--large { padding: 14px 24px; font-size: 15px; }
  .feat-card { padding: 24px 20px; }
  .footer-inner { flex-direction: column; }
}
