:root {
  --bg: #07070a;
  --bg-2: #0f0f14;
  --bg-3: #16161d;
  --border: #1f1f28;
  --border-2: #2a2a36;
  --text: #ffffff;
  --text-muted: #a1a1b3;
  --text-dim: #6b6b7d;
  --primary: #5b8cff;
  --primary-2: #7aa6ff;
  --primary-3: #a8c2ff;
  --primary-glow: rgba(91, 140, 255, 0.4);
  --accent-1: #a855f7;   /* purple */
  --accent-2: #06d6a0;   /* mint */
  --accent-3: #ff8a4c;   /* orange */
  --accent-4: #ff5e87;   /* pink */
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --container: 1200px;
  --shadow-glow: 0 0 80px -20px var(--primary-glow);
  --shadow-card: 0 30px 60px -20px rgba(0, 0, 0, 0.6);
  --shadow-card-hover: 0 40px 80px -20px rgba(91, 140, 255, 0.25);

  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.2s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  background-image:
    radial-gradient(ellipse 1200px 800px at 50% -200px, rgba(91, 140, 255, 0.15), transparent 60%),
    radial-gradient(ellipse 800px 600px at 100% 100%, rgba(168, 85, 247, 0.08), transparent 60%);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   EMOJI SYSTEM (PNG icons)
   ============================================ */
.emoji {
  width: 1.25em;
  height: 1.25em;
  display: inline-block;
  vertical-align: -0.25em;
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
}

.emoji-sm  { width: 1.1em;  height: 1.1em; }
.emoji-inline { width: 1.05em; height: 1.05em; vertical-align: -0.18em; }
.emoji-lg  { width: 36px; height: 36px; vertical-align: middle; }
.emoji-xl  { width: 64px; height: 64px; vertical-align: middle; filter: drop-shadow(0 10px 30px rgba(91,140,255,0.35)); }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: var(--transition);
  background: rgba(7, 7, 10, 0.5);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  border-bottom-color: var(--border);
  background: rgba(7, 7, 10, 0.85);
  padding: 12px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
}

.logo-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--primary), var(--accent-1));
  border-radius: 11px;
  box-shadow: 0 8px 24px -6px var(--primary-glow);
  position: relative;
  overflow: hidden;
}

.logo-mark::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent 50%);
}

.logo-mark .emoji {
  width: 22px;
  height: 22px;
  vertical-align: middle;
  position: relative;
  z-index: 1;
}

.nav-links {
  display: flex;
  gap: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px;
  backdrop-filter: blur(20px);
}

.nav-links a {
  padding: 8px 18px;
  border-radius: 999px;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition-fast);
}

.nav-links a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

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

.menu-toggle {
  display: none;
  font-size: 1.4rem;
  color: var(--text);
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-sm { padding: 10px 18px; font-size: 0.875rem; gap: 6px; }

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--accent-1));
  color: white;
  box-shadow: 0 12px 30px -10px var(--primary-glow);
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.25), transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 50px -12px var(--primary-glow);
}

.btn-primary:hover::before { opacity: 1; }

.btn-ghost {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  border: 1px solid var(--border-2);
  backdrop-filter: blur(20px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: var(--primary);
  transform: translateY(-2px);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  padding: 160px 0 100px;
  text-align: center;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  height: 800px;
  background:
    radial-gradient(ellipse 50% 40% at 30% 50%, rgba(91, 140, 255, 0.4), transparent 60%),
    radial-gradient(ellipse 50% 40% at 70% 50%, rgba(168, 85, 247, 0.3), transparent 60%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

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

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-2);
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  backdrop-filter: blur(10px);
  font-weight: 500;
}

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

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
  font-size: clamp(2.8rem, 8vw, 5.8rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin-bottom: 28px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent-1) 50%, var(--primary-3) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 200%;
  animation: gradientShift 6s ease infinite;
}

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

.hero-sub {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 40px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.hero-actions.center { margin: 24px 0 0; }

.hero-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-dim);
  margin-bottom: 80px;
}

/* ============================================
   PHONE MOCKUP — improved
   ============================================ */
.phone-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  perspective: 2000px;
  margin-top: 60px;
}

.phone-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--primary-glow), transparent 60%);
  filter: blur(60px);
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}

.phone {
  position: relative;
  z-index: 1;
  width: 320px;
  height: 640px;
  background: linear-gradient(145deg, #2e2e3d, #15151c);
  border-radius: 50px;
  padding: 10px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow:
    0 70px 140px -30px rgba(0, 0, 0, 0.85),
    0 0 100px -10px var(--primary-glow),
    inset 0 0 0 2px rgba(255,255,255,0.04),
    inset 0 -20px 40px rgba(0,0,0,0.5);
  transform: rotateX(8deg) rotateY(-6deg);
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  animation: float 6s ease-in-out infinite;
}

.phone:hover { transform: rotateX(0) rotateY(0) translateY(-10px); }

@keyframes float {
  0%, 100% { transform: rotateX(8deg) rotateY(-6deg) translateY(0); }
  50% { transform: rotateX(8deg) rotateY(-6deg) translateY(-12px); }
}

/* Side buttons */
.phone::before,
.phone::after {
  content: '';
  position: absolute;
  background: #1a1a22;
  border-radius: 2px;
}
.phone::before { /* power */
  right: -2px;
  top: 160px;
  width: 3px;
  height: 60px;
}
.phone::after { /* volume */
  left: -2px;
  top: 130px;
  width: 3px;
  height: 100px;
  box-shadow: 0 60px 0 #1a1a22;
}

.phone-notch {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 30px;
  background: #000;
  border-radius: 18px;
  z-index: 3;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #0e0f1a 0%, #07070d 100%);
  border-radius: 42px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
}

/* Status bar */
.status-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 28px 6px;
  font-size: 0.7rem;
  font-weight: 600;
  color: #fff;
  height: 44px;
  flex-shrink: 0;
}

.status-time { font-variant-numeric: tabular-nums; }

.status-icons {
  display: flex;
  gap: 6px;
  font-size: 0.65rem;
  align-items: center;
}

.status-icons i:nth-child(3) { font-size: 0.8rem; }

/* Chat header */
.chat-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: linear-gradient(180deg, rgba(91,140,255,0.06), transparent);
  flex-shrink: 0;
}

.chat-back {
  color: var(--primary-2);
  font-size: 1rem;
  padding: 4px;
}

.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-1), var(--accent-4));
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: white;
  flex-shrink: 0;
  position: relative;
}

.avatar-online {
  position: absolute;
  bottom: -1px;
  right: -1px;
  width: 11px;
  height: 11px;
  background: var(--accent-2);
  border: 2px solid #0e0f1a;
  border-radius: 50%;
}

.chat-meta { flex: 1; min-width: 0; }
.chat-name {
  font-weight: 600;
  font-size: 0.85rem;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.chat-status {
  font-size: 0.68rem;
  color: var(--accent-2);
  font-weight: 500;
}

.chat-actions { display: flex; gap: 4px; align-items: center; }

.chat-icon-btn {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--primary-2);
  font-size: 0.85rem;
  transition: var(--transition-fast);
}
.chat-icon-btn:hover { background: rgba(91,140,255,0.12); }

/* Chat body */
.chat-body {
  flex: 1;
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow: hidden;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(91,140,255,0.04), transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(168,85,247,0.04), transparent 40%);
}

.chat-day {
  align-self: center;
  font-size: 0.65rem;
  color: var(--text-dim);
  background: rgba(255,255,255,0.05);
  padding: 4px 10px;
  border-radius: 999px;
  margin: 4px 0 8px;
}

.msg-row {
  display: flex;
  width: 100%;
}
.msg-row.in { justify-content: flex-start; }
.msg-row.out { justify-content: flex-end; }

.msg {
  max-width: 78%;
  padding: 8px 12px 6px;
  border-radius: 18px;
  font-size: 0.78rem;
  line-height: 1.35;
  animation: msgIn 0.5s ease forwards;
  opacity: 0;
  word-wrap: break-word;
  position: relative;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 4px 6px;
}

.msg-row:nth-child(2) .msg { animation-delay: 0.4s; }
.msg-row:nth-child(3) .msg { animation-delay: 0.9s; }
.msg-row:nth-child(4) .msg { animation-delay: 1.4s; }
.msg-row:nth-child(5) .msg { animation-delay: 1.9s; }

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

.msg-in {
  background: #1c1f2e;
  color: #e7e7f0;
  border-bottom-left-radius: 6px;
}

.msg-out {
  background: linear-gradient(135deg, var(--primary), var(--accent-1));
  color: white;
  border-bottom-right-radius: 6px;
  box-shadow: 0 6px 18px -6px var(--primary-glow);
}

.msg-time {
  font-size: 0.58rem;
  opacity: 0.65;
  margin-left: 4px;
  white-space: nowrap;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.msg-time i { font-size: 0.6rem; }

.msg-typing {
  padding: 12px 14px !important;
  gap: 4px;
}

.msg-typing span {
  width: 6px;
  height: 6px;
  background: white;
  border-radius: 50%;
  animation: typing 1.4s infinite;
}

.msg-typing span:nth-child(2) { animation-delay: 0.2s; }
.msg-typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing {
  0%, 60%, 100% { opacity: 0.3; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-4px); }
}

/* Input bar */
.chat-input-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px 14px;
  border-top: 1px solid rgba(255,255,255,0.05);
  background: rgba(255,255,255,0.02);
  flex-shrink: 0;
}

.chat-input-btn {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--text-muted);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.chat-input-btn.primary {
  background: linear-gradient(135deg, var(--primary), var(--accent-1));
  color: white;
  box-shadow: 0 4px 12px -4px var(--primary-glow);
}

.chat-input {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.75rem;
  color: var(--text-dim);
}

/* ============================================
   SECTIONS
   ============================================ */
.section { padding: 120px 0; position: relative; }

.section-head {
  text-align: center;
  margin-bottom: 72px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--primary-2);
  letter-spacing: 0.18em;
  margin-bottom: 18px;
  text-transform: uppercase;
  padding: 6px 14px;
  background: rgba(91, 140, 255, 0.1);
  border: 1px solid rgba(91, 140, 255, 0.2);
  border-radius: 999px;
}

.section-title {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.section-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-top: 8px;
}

/* ============================================
   FEATURES
   ============================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: linear-gradient(180deg, var(--bg-2), var(--bg-3));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.feature-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, var(--primary-glow), transparent 50%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

.feature-card:hover {
  transform: translateY(-12px);
  border-color: rgba(91, 140, 255, 0.4);
  box-shadow: var(--shadow-card-hover);
}

.feature-card:hover::before { opacity: 1; }
.feature-card:hover::after { opacity: 0.15; }

.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  background: linear-gradient(135deg, rgba(91, 140, 255, 0.15), rgba(168, 85, 247, 0.1));
  border: 1px solid rgba(91, 140, 255, 0.2);
  position: relative;
  z-index: 1;
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  transform: scale(1.08) rotate(-4deg);
  border-color: rgba(91, 140, 255, 0.4);
}

.feature-icon .emoji {
  filter: drop-shadow(0 4px 12px rgba(91, 140, 255, 0.3));
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
  position: relative;
  z-index: 1;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  position: relative;
  z-index: 1;
}

/* ============================================
   STATS
   ============================================ */
.stats {
  padding: 70px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background:
    linear-gradient(180deg, var(--bg-2), var(--bg)),
    radial-gradient(ellipse at center, rgba(91, 140, 255, 0.05), transparent);
  position: relative;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-num {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--accent-1));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

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

/* ============================================
   ABOUT
   ============================================ */
.about-inner {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.about-text {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-top: 28px;
  line-height: 1.8;
}

.value-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 36px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-2);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  transition: var(--transition-fast);
}

.pill:hover {
  background: rgba(91,140,255,0.1);
  border-color: var(--primary);
  transform: translateY(-2px);
}

/* ============================================
   CTA
   ============================================ */
.cta { padding: 80px 0 120px; }

.cta-inner {
  position: relative;
  text-align: center;
  background:
    linear-gradient(135deg, #14141d 0%, #0a0a12 100%);
  border: 1px solid var(--border-2);
  border-radius: 32px;
  padding: 80px 40px;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background:
    radial-gradient(circle, var(--primary-glow) 0%, transparent 60%);
  filter: blur(80px);
  opacity: 0.5;
  pointer-events: none;
}

.cta-inner > *:not(.cta-glow) { position: relative; z-index: 1; }

.cta-emoji-wrap {
  width: 96px;
  height: 96px;
  margin: 0 auto 28px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(91,140,255,0.18), rgba(168,85,247,0.12));
  border: 1px solid rgba(91,140,255,0.3);
  border-radius: 28px;
  box-shadow: 0 20px 50px -10px var(--primary-glow);
}

.cta-rocket {
  width: 56px;
  height: 56px;
  display: block;
  filter: drop-shadow(0 8px 20px rgba(255, 138, 76, 0.4));
  animation: rocketFloat 4s ease-in-out infinite;
  transform-origin: center;
}

@keyframes rocketFloat {
  0%, 100% { transform: translateY(0) rotate(-8deg); }
  50% { transform: translateY(-6px) rotate(2deg); }
}

.cta-inner h2 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.025em;
}

.cta-inner > p {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 540px;
  margin: 0 auto;
}

.cta-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 28px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.cta-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.dot-sep {
  width: 4px !important;
  height: 4px;
  background: var(--text-dim);
  border-radius: 50%;
  display: inline-block !important;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  border-top: 1px solid var(--border);
  padding: 50px 0;
  background: var(--bg-2);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-top: 12px;
}

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

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color 0.2s;
}

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

.socials {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

.socials a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-2);
  color: var(--text-muted);
  transition: var(--transition);
}

.socials a:hover {
  color: white;
  background: linear-gradient(135deg, var(--primary), var(--accent-1));
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px -8px var(--primary-glow);
}

/* ============================================
   REVEAL ANIMATION
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 980px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 16px;
    right: 16px;
    flex-direction: column;
    gap: 0;
    background: rgba(15, 15, 20, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 12px;
  }

  .nav-links.open { display: flex; }
  .nav-links a {
    padding: 14px 16px;
    border-radius: 10px;
  }
  .nav-links a:hover { background: rgba(91, 140, 255, 0.1); }

  .menu-toggle { display: grid; place-items: center; }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 24px;
  }

  .footer-brand .logo { justify-content: center; }
  .socials { justify-content: center; }

  .cta-inner { padding: 60px 24px; }
  .section { padding: 80px 0; }
  .hero { padding: 130px 0 70px; }
}

@media (max-width: 560px) {
  .features-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .phone { width: 280px; height: 580px; border-radius: 44px; }
  .phone-screen { border-radius: 36px; }
  .phone-notch { width: 96px; height: 26px; }
  .nav-actions .btn-sm { padding: 8px 14px; font-size: 0.8rem; }
  .cta-emoji-wrap { width: 80px; height: 80px; }
  .cta-rocket { width: 46px; height: 46px; }
}
