/* ============================================
   PIDGEONBOX — DISCORD CLONE LANDING PAGE CSS
   ============================================ */

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

:root {
  --brand:        #5865F2;
  --brand-hover:  #4752C4;
  --brand-light:  #7289DA;
  --dark:         #23272A;
  --darker:       #1a1d20;
  --darkest:      #0f1012;
  --mid:          #2C2F33;
  --light-text:   #dcddde;
  --muted:        #96989D;
  --white:        #FFFFFF;
  --nitro-gold:   #FF73FA;
  --green:        #57F287;
  --indigo-bg:    #404EED;
  --purple-bg:    #36393f;
  
  --radius:       16px;
  --radius-sm:    8px;
  --transition:   0.25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', system-ui, sans-serif;
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 28px;
  border: none;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--brand);
  color: white;
  box-shadow: 0 4px 20px rgba(88, 101, 242, 0.4);
}
.btn-primary:hover {
  background: var(--brand-hover);
  box-shadow: 0 6px 28px rgba(88, 101, 242, 0.6);
}

.btn-white {
  background: white;
  color: var(--dark);
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}
.btn-white:hover {
  background: #f0f0f0;
}

.btn-ghost {
  background: transparent;
  color: white;
  padding: 10px 20px;
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); }

.btn-glass {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  color: white;
  border: 1px solid rgba(255,255,255,0.2);
}
.btn-glass:hover { background: rgba(255,255,255,0.22); }

.btn-xl {
  padding: 16px 32px;
  font-size: 1.05rem;
}

/* ---- NAVBAR ---- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 4vw;
  background: transparent;
  transition: background 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease;
}
.navbar.scrolled {
  background: rgba(35, 39, 42, 0.9);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-icon { width: 40px; height: 40px; flex-shrink: 0; }
.logo-text {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: white;
}

.nav-links {
  display: flex;
  gap: 4px;
  flex: 1;
}
.nav-link {
  padding: 8px 14px;
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.nav-link:hover { color: white; background: rgba(255,255,255,0.1); }

.nav-actions { display: flex; align-items: center; gap: 8px; margin-left: auto; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 12px 16px 20px;
  background: rgba(35, 39, 42, 0.98);
  border-top: 1px solid rgba(255,255,255,0.08);
  gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-link {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: background var(--transition);
}
.mobile-link:hover { background: rgba(255,255,255,0.08); color: white; }
.mobile-cta { margin-top: 8px; text-align: center; }

/* ---- ORB BACKGROUNDS ---- */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  opacity: 0.5;
}
.orb-1 { width: 600px; height: 600px; background: radial-gradient(circle, #5865F2, transparent); top: -200px; left: -150px; animation: orbFloat 8s ease-in-out infinite; }
.orb-2 { width: 400px; height: 400px; background: radial-gradient(circle, #EB459E, transparent); top: 100px; right: -100px; animation: orbFloat 10s ease-in-out infinite reverse; }
.orb-3 { width: 300px; height: 300px; background: radial-gradient(circle, #57F287, transparent); bottom: 0; left: 40%; animation: orbFloat 12s ease-in-out infinite 2s; opacity: 0.3; }

@keyframes orbFloat {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(30px,-40px) scale(1.05); }
  66% { transform: translate(-20px, 25px) scale(0.95); }
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  padding: 100px 8vw 60px;
  overflow: hidden;
  background: linear-gradient(160deg, #1a1e40 0%, #23272A 60%);
}
.hero-bg-orbs { position: absolute; inset: 0; z-index: 0; }

.hero-content {
  position: relative;
  z-index: 2;
}
.hero-title {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -2px;
  background: linear-gradient(135deg, #fff 30%, #7289DA 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
}
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--light-text);
  max-width: 500px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }

.hero-image-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ---- MOCKUP UI ---- */
.mockup-container { position: relative; animation: floatUp 6s ease-in-out infinite; }
@keyframes floatUp {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.mockup-ui {
  display: flex;
  width: 560px;
  height: 380px;
  background: #1e2124;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.06);
}

.mockup-sidebar {
  display: flex;
  background: #1e2124;
  flex-shrink: 0;
}

.server-list {
  width: 64px;
  background: #1a1d20;
  padding: 12px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.server-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #36393f;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  transition: border-radius 0.25s, background 0.25s;
}
.server-icon:hover, .server-icon.active {
  border-radius: 30%;
  background: var(--brand);
}
.server-icon.add-icon { background: #36393f; color: var(--green); font-size: 1.5rem; font-weight: 300; }
.server-icon.add-icon:hover { border-radius: 30%; background: var(--green); color: white; }
.server-divider { width: 32px; height: 2px; background: rgba(255,255,255,0.1); border-radius: 2px; margin: 4px 0; }

.channel-list {
  width: 180px;
  background: #2f3136;
  padding: 16px 8px;
  overflow-y: auto;
}
.channel-header {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  padding: 8px 8px 4px;
}
.channel {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 8px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  color: var(--muted);
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}
.channel:hover, .channel.active { background: rgba(255,255,255,0.08); color: white; }
.channel.active { background: rgba(255,255,255,0.14); }
.channel-hash { font-size: 0.9rem; }
.channel.voice { font-size: 0.82rem; }

.mockup-chat {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: #36393f;
}
.chat-header {
  padding: 0 16px;
  height: 48px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(0,0,0,0.2);
  flex-shrink: 0;
}
.chat-hash { color: var(--muted); font-size: 1.1rem; }
.chat-members { margin-left: auto; font-size: 0.75rem; color: var(--muted); font-weight: 400; }

.chat-messages {
  flex: 1;
  padding: 12px 16px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.message { display: flex; gap: 10px; align-items: flex-start; }
.avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.85rem;
  flex-shrink: 0;
}
.av-purple { background: var(--brand); }
.av-blue   { background: #1DA0F2; }
.av-green  { background: var(--green); color: #000; }
.av-orange { background: #F96854; }

.msg-body { display: flex; flex-direction: column; gap: 2px; flex: 1; }
.msg-author { font-size: 0.82rem; font-weight: 700; }
.msg-time { font-size: 0.68rem; color: var(--muted); }
.msg-text { font-size: 0.83rem; color: var(--light-text); }

.typing-dots {
  display: flex; gap: 4px; align-items: center; padding: 6px 0;
}
.typing-dots span {
  width: 6px; height: 6px; border-radius: 50%; background: var(--muted);
  animation: typingBounce 1.2s ease-in-out infinite;
}
.typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.typing-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingBounce {
  0%,60%,100% { transform: translateY(0); }
  30% { transform: translateY(-6px); }
}

.chat-input-wrap {
  margin: 8px 12px 12px;
  background: #40444b;
  border-radius: 10px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.chat-input { flex: 1; font-size: 0.82rem; color: var(--muted); }
.chat-icons { display: flex; gap: 8px; }
.chat-icon { font-size: 0.75rem; color: var(--muted); cursor: pointer; padding: 2px 6px; background: rgba(255,255,255,0.06); border-radius: 4px; font-weight: 600; }

.float-notif {
  position: absolute;
  bottom: -20px;
  right: -30px;
  background: #18191c;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
  animation: notifPop 0.5s cubic-bezier(0.175,0.885,0.32,1.275) 1.5s both;
}
@keyframes notifPop {
  from { opacity: 0; transform: scale(0.7) translateY(10px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.notif-avatar { font-size: 1.4rem; }

/* ---- FEATURE SECTIONS ---- */
.feature-section { padding: 100px 8vw; }
.feature-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}
.feature-inner.reverse { direction: rtl; }
.feature-inner.reverse > * { direction: ltr; }

.bg-indigo { background: linear-gradient(160deg, #404EED 0%, #3944d4 100%); }
.bg-dark    { background: var(--darker); }
.bg-purple  { background: linear-gradient(160deg, #2d2b55 0%, #23272A 100%); }

.section-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(255,255,255,0.12);
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}

.feat-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 1.2rem;
}
.feat-desc {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.85);
  max-width: 480px;
}

.feat-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 1.5rem; }
.tag {
  padding: 8px 18px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 20px;
  font-size: 0.88rem;
  font-weight: 500;
  transition: background var(--transition), transform var(--transition);
  cursor: default;
}
.tag:hover { background: rgba(255,255,255,0.2); transform: translateY(-2px); }

/* ---- FEATURE CARDS ---- */
.feature-card-stack { position: relative; padding: 20px 0 40px; }
.feat-card {
  background: #18191c;
  border-radius: 16px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}
.fc-1 { position: relative; z-index: 2; }
.fc-2 {
  position: absolute;
  bottom: 0; right: -20px;
  width: 220px;
  z-index: 3;
  background: #2f3136;
}
.fc-row { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.fc-avatars { display: flex; }
.fc-av {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.85rem;
  margin-left: -8px;
  border: 2px solid #18191c;
}
.fc-av:first-child { margin-left: 0; }
.fc-av.speaking {
  box-shadow: 0 0 0 3px var(--green);
  animation: speakPulse 1.5s ease-in-out infinite;
}
@keyframes speakPulse {
  0%,100% { box-shadow: 0 0 0 3px var(--green); }
  50% { box-shadow: 0 0 0 6px rgba(87,242,135,0.3); }
}

.fc-info { flex: 1; }
.fc-title { font-size: 0.9rem; font-weight: 700; }
.fc-sub { font-size: 0.75rem; color: var(--muted); margin-top: 2px; }
.fc-msg { font-size: 0.82rem; color: var(--light-text); display: flex; align-items: center; gap: 6px; }
.fc-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.fc-dot.online { background: var(--green); box-shadow: 0 0 6px var(--green); }
.fc-label { font-size: 0.8rem; font-weight: 700; color: var(--muted); margin-bottom: 12px; }
.fc-speakers { display: flex; gap: 16px; }
.fc-speaker { display: flex; flex-direction: column; align-items: center; gap: 6px; font-size: 0.75rem; color: var(--muted); }

/* ---- COMMUNITY CARDS ---- */
.community-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.community-card {
  background: #18191c;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.07);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}
.community-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.cc-banner {
  height: 70px;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
}
.cc-body { padding: 12px 14px; }
.cc-name { font-weight: 700; font-size: 0.9rem; }
.cc-meta { font-size: 0.72rem; color: var(--muted); margin-top: 4px; }

/* ---- VOICE VISUALIZER ---- */
.voice-visualizer {
  position: relative;
  width: 300px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.voice-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(88, 101, 242, 0.3);
  animation: ringPulse 2s ease-in-out infinite;
}
.ring-outer { width: 240px; height: 240px; animation-delay: 0.3s; border-color: rgba(88,101,242,0.2); }
.ring-middle { width: 180px; height: 180px; animation-delay: 0s; }
@keyframes ringPulse {
  0%,100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.06); opacity: 1; }
}
.voice-avatar-wrap {
  width: 100px; height: 100px;
  background: linear-gradient(135deg, var(--brand), var(--brand-light));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
  box-shadow: 0 0 0 6px rgba(88,101,242,0.25), 0 16px 40px rgba(88,101,242,0.4);
  z-index: 2;
}
.voice-bars {
  position: absolute;
  bottom: 40px;
  display: flex;
  gap: 4px;
  align-items: flex-end;
}
.vbar {
  width: 5px;
  background: var(--brand);
  border-radius: 3px;
  animation: barAnim 1.2s ease-in-out infinite;
}
.vbar:nth-child(1) { height: 12px; animation-delay: 0s; }
.vbar:nth-child(2) { height: 24px; animation-delay: 0.1s; }
.vbar:nth-child(3) { height: 18px; animation-delay: 0.2s; }
.vbar:nth-child(4) { height: 32px; animation-delay: 0.15s; }
.vbar:nth-child(5) { height: 20px; animation-delay: 0.25s; }
.vbar:nth-child(6) { height: 14px; animation-delay: 0.05s; }
.vbar:nth-child(7) { height: 28px; animation-delay: 0.3s; }
@keyframes barAnim {
  0%,100% { transform: scaleY(1); opacity: 0.7; }
  50% { transform: scaleY(1.8); opacity: 1; }
}
.voice-label {
  position: absolute;
  bottom: 0;
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 500;
}

/* ---- NITRO SECTION ---- */
.nitro-section {
  padding: 100px 8vw;
  background: linear-gradient(160deg, #1a0d2e 0%, #23272A 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.nitro-section::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(235,69,158,0.2), transparent 60%);
  pointer-events: none;
}
.nitro-inner { max-width: 900px; margin: 0 auto; position: relative; z-index: 1; }
.nitro-badge {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(135deg, #FF73FA, #5865F2);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}
.nitro-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -1.5px;
  margin-bottom: 12px;
}
.nitro-sub { font-size: 1.1rem; color: rgba(255,255,255,0.7); margin-bottom: 48px; }

.nitro-cards {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}
.nitro-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 32px 28px;
  width: 280px;
  text-align: left;
  transition: transform var(--transition), box-shadow var(--transition);
}
.nitro-card:hover { transform: translateY(-8px); box-shadow: 0 24px 60px rgba(0,0,0,0.4); }
.nitro-card.featured {
  background: linear-gradient(160deg, rgba(88,101,242,0.3), rgba(235,69,158,0.15));
  border-color: var(--brand);
  box-shadow: 0 0 0 1px var(--brand), 0 20px 60px rgba(88,101,242,0.3);
  position: relative;
}
.nc-popular {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--brand), #EB459E);
  padding: 5px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
}
.nc-tier { font-size: 1rem; font-weight: 700; color: var(--muted); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.05em; }
.nc-price { font-size: 2.5rem; font-weight: 900; margin-bottom: 24px; }
.nc-price span { font-size: 1rem; font-weight: 500; color: var(--muted); }
.nc-perks { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.nc-perks li { font-size: 0.9rem; color: rgba(255,255,255,0.85); }

/* ---- SAFETY ---- */
.safety-features { display: flex; flex-direction: column; gap: 20px; margin-top: 2rem; }
.safety-item { display: flex; gap: 16px; align-items: flex-start; }
.safety-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.safety-item strong { display: block; font-size: 1rem; margin-bottom: 4px; }
.safety-item p { font-size: 0.9rem; color: rgba(255,255,255,0.7); }

.shield-display { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.shield-svg-wrap { filter: drop-shadow(0 16px 40px rgba(88,101,242,0.5)); animation: floatUp 5s ease-in-out infinite; }
.shield-stats { display: flex; flex-direction: column; gap: 10px; }
.stat-pill {
  padding: 10px 20px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  text-align: center;
}

/* ---- STATS ---- */
.stats-section {
  padding: 80px 8vw;
  background: var(--darkest);
}
.stats-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}
.stat-item { padding: 32px 20px; }
.stat-number {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 900;
  letter-spacing: -2px;
  background: linear-gradient(135deg, #fff, #7289DA);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label { font-size: 1rem; color: rgba(255,255,255,0.7); }

/* ---- CTA ---- */
.cta-section {
  position: relative;
  padding: 120px 8vw;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(160deg, #5865F2 0%, #3944d4 50%, #23272A 100%);
}
.cta-bg-orbs { position: absolute; inset: 0; pointer-events: none; }
.orb-cta-1 { width: 500px; height: 500px; background: radial-gradient(circle, rgba(235,69,158,0.4), transparent); top: -200px; right: -100px; }
.orb-cta-2 { width: 400px; height: 400px; background: radial-gradient(circle, rgba(87,242,135,0.2), transparent); bottom: -100px; left: 0; }

.cta-inner { position: relative; z-index: 2; }
.cta-mascot {
  display: flex; justify-content: center;
  margin-bottom: 24px;
  animation: floatUp 4s ease-in-out infinite;
}
.cta-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  letter-spacing: -2px;
  margin-bottom: 16px;
}
.cta-sub { font-size: 1.1rem; color: rgba(255,255,255,0.85); margin-bottom: 40px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---- FOOTER ---- */
.footer {
  background: var(--darkest);
  padding: 60px 8vw 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  padding-bottom: 48px;
}
.footer-logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 1.3rem; font-weight: 800;
  margin-bottom: 12px;
}
.footer-brand p { font-size: 0.9rem; color: var(--muted); }

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h4 { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--brand); margin-bottom: 6px; }
.footer-col a { font-size: 0.9rem; color: var(--muted); transition: color var(--transition); }
.footer-col a:hover { color: white; }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.85rem;
  color: var(--muted);
}
.footer-socials { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  transition: background var(--transition), transform var(--transition);
}
.social-btn:hover { background: var(--brand); transform: translateY(-2px); }

/* ---- SCROLL REVEAL ---- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 120px; padding-bottom: 60px; text-align: center; }
  .hero-subtitle { margin: 0 auto 2rem; }
  .hero-actions { justify-content: center; }
  .hero-image-wrap { display: none; }
  .feature-inner, .feature-inner.reverse { grid-template-columns: 1fr; gap: 48px; direction: ltr; text-align: center; }
  .feat-desc { margin: 0 auto; }
  .feat-tags { justify-content: center; }
  .safety-features { text-align: left; }
  .feature-image-side { display: flex; justify-content: center; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .stats-inner { grid-template-columns: 1fr; gap: 16px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .btn-ghost { display: none; }
  .hamburger { display: flex; }
  .nitro-cards { flex-direction: column; align-items: center; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .community-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .footer-links { grid-template-columns: 1fr; }
  .btn-xl { padding: 13px 24px; font-size: 0.95rem; }
}
