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

:root {
  --bg: #050505;
  --bg-surface: #0a0a0a;
  --bg-card: #0f0f0f;
  --bg-elevated: #1a1a1a;
  --border: #1a1a1a;
  --border-light: #252525;
  --accent: #4AE68A;
  --accent-dim: #2a8a52;
  --accent-glow: rgba(74, 230, 138, 0.15);
  --accent-glow-strong: rgba(74, 230, 138, 0.3);
  --red: #FF4444;
  --text: #ffffff;
  --text-secondary: #888888;
  --text-muted: #555555;
  --font: 'Inter', -apple-system, sans-serif;
  --mono: 'JetBrains Mono', monospace;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: opacity 0.2s;
}
a:hover { opacity: 0.8; }

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

.accent { color: var(--accent); }

.gradient-text {
  background: linear-gradient(135deg, var(--accent), #2dd4bf, var(--accent));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

/* ===== INTRO OVERLAY ===== */
.intro-overlay {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: var(--bg);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 1.5s ease-out, visibility 1.5s ease-out;
  cursor: pointer;
}
.intro-overlay.hidden {
  opacity: 0;
  visibility: hidden;
}
.blinking-text {
  font-family: var(--mono);
  color: var(--accent);
  font-size: 18px;
  letter-spacing: 2px;
  animation: blink 1.5s infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.overlay-content {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.overlay-content.hidden {
  display: none !important;
}

/* Weather Decoy */
.decoy-weather {
  background: linear-gradient(180deg, #1A2238 0%, #0F131E 100%);
  color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  justify-content: flex-start;
  padding-top: 10vh;
  position: relative;
}
.weather-top { text-align: center; margin-bottom: 20px; }
.w-city { font-size: 32px; font-weight: 400; margin-top: 4px; }
.w-temp-main { font-size: 96px; font-weight: 200; margin-left: 15px; }
.w-desc { margin-top: 5px; font-size: 20px; font-weight: 400; opacity: 0.9; }
.w-high-low { margin-top: 5px; font-size: 20px; font-weight: 500; }
.w-hint { position: absolute; bottom: 40px; font-family: var(--mono); color: var(--accent); opacity: 0.3; font-size: 12px; letter-spacing: 1px; }

/* Duress PIN Decoy */
.decoy-pin {
  background: #000;
  color: #fff;
  font-family: -apple-system, system-ui, sans-serif;
}
.pin-title { margin-bottom: 24px; font-size: 14px; letter-spacing: 2px; color: #fff; }
.pin-dots { display: flex; gap: 20px; margin-bottom: 60px; }
.pin-dots .dot { width: 14px; height: 14px; border-radius: 50%; border: 1px solid #333; }
.pin-dots .dot.filled { background: #333; }
.pin-grid { display: flex; flex-direction: column; gap: 16px; }
.pin-row { display: flex; gap: 32px; justify-content: center; }
.pin-row span {
  width: 70px; height: 70px; 
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; background: #1a1a1a; font-size: 28px;
  transition: 0.2s;
}
.pin-row span:active { opacity: 0.5; }
.pin-row .neon-zero {
  box-shadow: 0 0 20px rgba(74, 230, 138, 0.4);
  border: 1px solid var(--accent);
  color: var(--accent);
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(5, 5, 5, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 18px;
  color: var(--text);
}

.grid-icon {
  display: grid;
  grid-template-columns: repeat(4, 4px);
  gap: 3px;
}
.grid-icon span {
  width: 4px;
  height: 4px;
  background: var(--accent);
  border-radius: 50%;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); opacity: 1; }

.music-toggle {
  background: none;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: color 0.2s;
  padding: 0;
}
.music-toggle:hover, .music-toggle.playing {
  color: var(--accent);
}

.btn-nav {
  background: var(--accent) !important;
  color: #000 !important;
  padding: 8px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 13px !important;
  transition: transform 0.2s, box-shadow 0.2s !important;
}
.btn-nav:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px var(--accent-glow-strong);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: 0.3s;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 24px 60px;
  max-width: 1200px;
  margin: 0 auto;
  gap: 60px;
}

#gridCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.7;
}

.hero-content {
  flex: 1;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--accent-glow);
  border: 1px solid var(--accent-dim);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.pulse {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 var(--accent-glow-strong); }
  50% { opacity: 0.7; box-shadow: 0 0 0 8px transparent; }
}

.hero h1 {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 520px;
  margin-bottom: 36px;
}
.hero-sub strong { color: var(--text); }

.hero-cta {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #000;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  font-family: var(--font);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--accent-glow-strong);
  color: #000;
  opacity: 1;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid var(--border-light);
  color: var(--text-secondary);
  transition: border-color 0.2s, color 0.2s;
}
.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--text);
  opacity: 1;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}

.stat-value {
  font-size: 20px;
  font-weight: 700;
  font-family: var(--mono);
  color: var(--accent);
}
.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-divider { width: 1px; height: 32px; background: var(--border-light); }

/* Phone mockup */
.hero-visual {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.phone-mockup {
  width: 300px;
  height: 600px;
  background: var(--bg-card);
  border-radius: 36px;
  border: 2px solid var(--border-light);
  padding: 12px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 60px var(--accent-glow);
  position: relative;
  overflow: hidden;
}

.phone-screen {
  background: var(--bg-surface);
  border-radius: 26px;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.mock-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px;
  border-bottom: 1px solid var(--border);
}
.mock-back { display: flex; }
.mock-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-dim), var(--accent));
}
.mock-name { font-size: 14px; font-weight: 600; }
.mock-status {
  font-size: 11px;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 4px;
}
.mock-lock {
  margin-left: auto;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
}

.mock-messages {
  flex: 1;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
}

.msg {
  max-width: 80%;
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 13px;
  line-height: 1.4;
  animation: msgIn 0.5s ease;
}

@keyframes msgIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.msg-sent {
  align-self: flex-end;
  background: var(--bg-elevated);
  border-bottom-right-radius: 4px;
}
.msg-received {
  align-self: flex-start;
  background: var(--border-light);
  border-bottom-left-radius: 4px;
}
.msg.encrypted.msg-sent {
  background: linear-gradient(135deg, #1a3a2a, #2a4a3a);
  box-shadow: 0 0 15px rgba(74, 230, 138, 0.1);
}
.msg.encrypted.msg-received {
  background: #0D1F15;
  border: 1px solid rgba(74, 230, 138, 0.2);
}

.msg-system {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 11px;
  color: var(--accent);
  padding: 6px 12px;
  background: var(--accent-glow);
  border-radius: 100px;
  align-self: center;
  font-weight: 500;
}

.mock-input {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  border-top: 1px solid var(--border);
  gap: 10px;
}
.mock-input span {
  flex: 1;
  font-size: 13px;
  color: var(--text-muted);
}
.mock-send {
  width: 32px;
  height: 32px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
}

/* ===== SECTIONS COMMON ===== */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--accent);
  margin-bottom: 16px;
  font-family: var(--mono);
}

.section-header h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.1;
}

.section-sub {
  font-size: 18px;
  color: var(--text-secondary);
  margin-top: 16px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* ===== KILLER FEATURES ===== */
.killer-features {
  padding: 120px 0 60px;
  position: relative;
  z-index: 2;
}

.killer-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.killer-card.animate-in {
  opacity: 0;
  transform: translateY(40px);
}
.killer-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.killer-card:last-child { border-bottom: none; }

.killer-card.reverse {
  direction: rtl;
}
.killer-card.reverse > * {
  direction: ltr;
}

.killer-icon {
  width: 56px;
  height: 56px;
  background: var(--accent-glow);
  border: 1px solid var(--accent-dim);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.killer-text h3 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.killer-text p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.killer-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.killer-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
}
.killer-bullets li svg {
  flex-shrink: 0;
}

.killer-img {
  position: relative;
}
.killer-img img {
  width: 100%;
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 40px var(--accent-glow);
  transition: transform 0.4s ease;
}
.killer-card:hover .killer-img img {
  transform: scale(1.02);
}

/* Shake levels */
.shake-levels {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}
.shake-level {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
  padding: 12px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 12px;
  color: var(--text-secondary);
}
.shake-dots { display: flex; gap: 4px; }
.dot { width: 12px; height: 12px; border-radius: 50%; }
.dot.green { background: var(--accent); box-shadow: 0 0 10px var(--accent-glow-strong); }
.dot.red { background: var(--red); box-shadow: 0 0 10px rgba(255,68,68,0.3); }

/* ===== MORE FEATURES (Compact grid) ===== */
.more-features {
  padding: 80px 0 120px;
  position: relative;
  z-index: 2;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.feature-card.animate-in {
  opacity: 0;
  transform: translateY(30px);
}
.feature-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-dim);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3), 0 0 30px var(--accent-glow);
}

.feature-icon-svg {
  width: 48px;
  height: 48px;
  background: var(--accent-glow);
  border: 1px solid rgba(74, 230, 138, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
  padding: 120px 0;
  background: rgba(10, 10, 10, 0.85);
  position: relative;
  z-index: 2;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  display: grid;
  grid-template-columns: 80px 1fr 280px;
  gap: 32px;
  align-items: center;
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.step.animate-in {
  opacity: 0;
  transform: translateY(30px);
}
.step.visible { opacity: 1; transform: translateY(0); }
.step:last-child { border-bottom: none; }

.step-number {
  font-size: 48px;
  font-weight: 800;
  font-family: var(--mono);
  color: var(--border-light);
}

.step-content h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}
.step-content p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.step-visual { justify-self: end; }

.mini-chat {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  width: 240px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mini-chat.encrypted-zone {
  border-color: rgba(74, 230, 138, 0.2);
  background: #060D09;
}

.mini-msg {
  padding: 8px 12px;
  border-radius: 12px;
  font-size: 12px;
}
.mini-msg.out { align-self: flex-end; background: var(--bg-elevated); }
.mini-msg.in { align-self: flex-start; background: var(--border-light); }
.mini-msg.enc.out {
  background: linear-gradient(135deg, #1a3a2a, #2a4a3a);
  color: var(--accent);
}
.mini-msg.enc.in {
  background: #0D1F15;
  border: 1px solid rgba(74, 230, 138, 0.15);
  color: #aaddbb;
}
.mini-system {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 10px;
  color: var(--accent);
  font-weight: 500;
}
.mini-wiped {
  text-align: center;
  font-size: 10px;
  color: var(--text-muted);
  padding: 6px;
  border: 1px dashed var(--border-light);
  border-radius: 8px;
  font-style: italic;
}

/* ===== SECURITY ===== */
.security {
  padding: 120px 0;
  position: relative;
  z-index: 2;
}

.security-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 80px;
}

.sec-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  transition: border-color 0.3s, transform 0.3s;
}
.sec-card.animate-in {
  opacity: 0;
  transform: translateY(30px);
}
.sec-card.visible { opacity: 1; transform: translateY(0); }
.sec-card:hover {
  border-color: var(--accent-dim);
  transform: translateY(-3px);
}

.sec-icon-svg {
  width: 44px;
  height: 44px;
  background: var(--accent-glow);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.sec-card h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}
.sec-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Comparison table */
.comparison {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.comparison.animate-in {
  opacity: 0;
  transform: translateY(30px);
}
.comparison.visible { opacity: 1; transform: translateY(0); }

.comparison h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
}

.comparison-table {
  display: flex;
  flex-direction: column;
}

.comp-header, .comp-row {
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  gap: 8px;
  padding: 14px 0;
  align-items: center;
}
.comp-header {
  border-bottom: 2px solid var(--border-light);
  font-weight: 700;
  font-size: 14px;
}
.comp-header span:nth-child(2) { color: var(--accent); }
.comp-row {
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.comp-row:last-child { border-bottom: none; }
.comp-row span:first-child { color: var(--text-secondary); }

.yes { display: flex; justify-content: center; }
.no { display: flex; justify-content: center; }
.partial {
  color: #f59e0b;
  font-size: 12px;
  font-weight: 500;
  text-align: center;
}

/* ===== DOWNLOAD ===== */
.download {
  padding: 120px 0;
  background: rgba(10, 10, 10, 0.85);
  position: relative;
  z-index: 2;
}

.download-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 64px;
  text-align: center;
  overflow: hidden;
}

.download-glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--accent-glow-strong), transparent 70%);
  pointer-events: none;
}

.download-card h2 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 16px;
  position: relative;
}
.download-card > p {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  position: relative;
}

.download-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto 32px;
  position: relative;
}

.email-input {
  flex: 1;
  padding: 14px 20px;
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  color: var(--text);
  font-size: 15px;
  font-family: var(--font);
  outline: none;
  transition: border-color 0.3s;
}
.email-input:focus { border-color: var(--accent); }
.email-input::placeholder { color: var(--text-muted); }

.store-badges {
  display: flex;
  gap: 16px;
  justify-content: center;
  position: relative;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  color: var(--text);
  font-weight: 600;
  font-size: 14px;
  transition: border-color 0.3s, transform 0.2s;
}
.store-badge:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  color: var(--text);
  opacity: 1;
}

.download-note {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 20px;
  position: relative;
}

/* ===== FOOTER ===== */
.footer {
  padding: 64px 0 32px;
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 2;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand { max-width: 300px; }
.footer-brand .nav-logo { margin-bottom: 12px; }
.footer-brand p { font-size: 14px; color: var(--text-muted); }

.footer-links { display: flex; gap: 64px; }

.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.footer-col a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--text); opacity: 1; }

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.footer-bottom p {
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
}

/* ===== LAUNCH TIMER ===== */
.launch-timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 32px 0 40px;
  background: var(--bg-card);
  border: 1px solid var(--accent-dim);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 0 30px var(--accent-glow);
}

.time-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 60px;
}

.t-val {
  font-family: var(--mono);
  font-size: 36px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.t-label {
  font-size: 11px;
  text-transform: uppercase;
  color: var(--text-secondary);
  letter-spacing: 1px;
}

.time-col {
  font-size: 32px;
  color: var(--border-light);
  font-weight: bold;
  margin-top: -16px;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(5, 5, 5, 0.98);
    backdrop-filter: blur(20px);
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--border);
  }

  .hero {
    flex-direction: column;
    text-align: center;
    padding-top: 120px;
    gap: 40px;
  }
  .hero-sub { margin: 0 auto 36px; }
  .hero-cta { justify-content: center; flex-wrap: wrap; }
  .hero-stats { justify-content: center; }
  .hero-visual { display: none; }

  .killer-card {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 48px 0;
  }
  .killer-card.reverse { direction: ltr; }

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

  .step {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .step-number { font-size: 32px; }
  .step-visual { justify-self: start; }

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

  .comp-header, .comp-row {
    grid-template-columns: 1.5fr repeat(4, 1fr);
    font-size: 11px;
    gap: 4px;
  }

  .download-card { padding: 40px 24px; }
  .download-card h2 { font-size: 28px; }
  .download-form { flex-direction: column; }
  .store-badges { flex-direction: column; align-items: center; }

  .footer-inner { flex-direction: column; }
  .footer-links { flex-wrap: wrap; gap: 32px; }
}

@media (max-width: 480px) {
  .security-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .shake-levels { flex-direction: column; }

  .hero-stats {
    gap: 12px;
    flex-wrap: wrap;
  }
  .stat-value {
    font-size: 16px;
  }
  .stat-label {
    font-size: 10px;
  }
  .stat-divider {
    height: 24px;
  }
}
