/* =============================================
   MISANTHROPIC — Human Avoidance as a Service
   ============================================= */

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

:root {
  --bg:           #09090f;
  --surface:      #111118;
  --surface-2:    #17171f;
  --border:       #1e1e2c;
  --border-2:     #2a2a3a;
  --text:         #e2e2ef;
  --text-2:       #9898b8;
  --text-3:       #5a5a78;
  --accent:       #7c3aed;
  --accent-light: #a78bfa;
  --accent-glow:  rgba(124, 58, 237, 0.18);
  --accent-2:     #06b6d4;
  --green:        #10b981;
  --red:          #ef4444;
  --yellow:       #f59e0b;
  --radius:       12px;
  --radius-sm:    8px;
  --radius-lg:    20px;
  --shadow:       0 4px 24px rgba(0,0,0,0.4);
  --shadow-lg:    0 8px 48px rgba(0,0,0,0.6);
  --transition:   0.2s ease;
  --font:         'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

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

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

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

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 0 0 0 var(--accent-glow);
}
.btn-primary:hover {
  background: #6d28d9;
  box-shadow: 0 0 24px var(--accent-glow);
  transform: translateY(-1px);
}
.btn-outline {
  border: 1px solid var(--border-2);
  color: var(--text);
  background: transparent;
}
.btn-outline:hover {
  border-color: var(--accent-light);
  color: var(--accent-light);
  transform: translateY(-1px);
}
.btn-ghost {
  color: var(--text-2);
  background: transparent;
}
.btn-ghost:hover { color: var(--text); }
.btn-accent {
  background: linear-gradient(135deg, var(--accent), #9333ea);
  color: #fff;
  padding: 10px 22px;
}
.btn-accent:hover { opacity: 0.88; transform: translateY(-1px); }
.btn-lg { padding: 13px 28px; font-size: 15px; }
.btn-full { width: 100%; }

/* ── Nav ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(9, 9, 15, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition);
}
.nav.scrolled { border-bottom-color: var(--border); }
.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  height: 60px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.logo-icon {
  font-size: 22px;
  font-weight: 900;
  color: var(--accent-light);
}
.logo-text {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.3px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--text); }
.nav-ctas {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 60px; left: 0; right: 0;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 20px 24px;
  z-index: 99;
  flex-direction: column;
  gap: 8px;
}
.mobile-menu.open { display: flex; }
.mobile-link {
  display: block;
  padding: 10px 0;
  font-size: 15px;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
  color: var(--text-2);
}
.mobile-link:last-child { border-bottom: none; }

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(124,58,237,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124,58,237,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 40%, transparent 100%);
}
.hero-glow {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(124,58,237,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content { position: relative; text-align: center; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(124,58,237,0.12);
  border: 1px solid rgba(124,58,237,0.3);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent-light);
  margin-bottom: 28px;
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-headline {
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -3px;
  margin-bottom: 24px;
}
.gradient-text {
  background: linear-gradient(135deg, var(--accent-light) 0%, #c4b5fd 50%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--text-2);
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.65;
}
.hero-sub strong { color: var(--text); font-weight: 600; }
.hero-ctas {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.hero-footnote {
  font-size: 12px;
  color: var(--text-3);
  margin-bottom: 56px;
}

/* Dashboard Mockup */
.dashboard {
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg), 0 0 80px rgba(124,58,237,0.08);
  overflow: hidden;
  max-width: 820px;
  margin: 0 auto;
  text-align: left;
}
.dashboard-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
}
.dashboard-dot {
  width: 11px; height: 11px;
  border-radius: 50%;
}
.dashboard-dot.red    { background: #ef4444; }
.dashboard-dot.yellow { background: #f59e0b; }
.dashboard-dot.green  { background: #10b981; }
.dashboard-title {
  font-size: 12px;
  color: var(--text-3);
  font-weight: 500;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: 0.2px;
}
.dashboard-body {
  display: flex;
  min-height: 240px;
}
.dashboard-sidebar {
  width: 160px;
  flex-shrink: 0;
  border-right: 1px solid var(--border);
  padding: 16px 0;
}
.dash-nav-item {
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-3);
  cursor: default;
  transition: all var(--transition);
}
.dash-nav-item.active {
  color: var(--accent-light);
  background: rgba(124,58,237,0.1);
  border-right: 2px solid var(--accent);
}
.dash-nav-item.muted { opacity: 0.4; }
.dashboard-main {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.dash-stats {
  display: flex;
  gap: 20px;
}
.dash-stat {
  flex: 1;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
}
.dash-stat-value {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--text);
}
.dash-stat-label {
  font-size: 11px;
  color: var(--text-3);
  margin-top: 2px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.dash-stat-trend {
  font-size: 11px;
  margin-top: 6px;
  font-weight: 600;
}
.dash-stat-trend.up { color: var(--green); }
.dash-chart {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  flex: 1;
}
.dash-chart-label {
  font-size: 11px;
  color: var(--text-3);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}
.dash-bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 60px;
}
.dash-bar-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  height: 100%;
  justify-content: flex-end;
}
.dash-bar-fill {
  width: 100%;
  background: linear-gradient(180deg, var(--accent) 0%, rgba(124,58,237,0.3) 100%);
  border-radius: 3px 3px 0 0;
  transition: height 1.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.dash-bar-wrap span {
  font-size: 10px;
  color: var(--text-3);
  font-weight: 500;
}
.dash-trend-note {
  font-size: 11px;
  color: var(--green);
  margin-top: 8px;
  font-weight: 600;
}

/* ── Ticker ── */
.ticker-wrap {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  overflow: hidden;
  padding: 12px 0;
}
.ticker-track {
  display: flex;
  gap: 0;
  animation: ticker 32s linear infinite;
  width: max-content;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 32px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  white-space: nowrap;
}
.ticker-dot {
  width: 5px; height: 5px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Sections ── */
.section { padding: 100px 0; }
.section-alt { background: var(--surface); }
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-light);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 17px;
  color: var(--text-2);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ── Features ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent-glow) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.25s;
}
.feature-card:hover {
  border-color: rgba(124,58,237,0.35);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.feature-card:hover::before { opacity: 1; }
.feature-icon {
  font-size: 28px;
  margin-bottom: 14px;
  position: relative;
}
.feature-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  position: relative;
}
.feature-card p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 16px;
  position: relative;
}
.feature-tag {
  display: inline-block;
  background: rgba(124,58,237,0.12);
  border: 1px solid rgba(124,58,237,0.25);
  border-radius: 100px;
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 600;
  color: var(--accent-light);
  position: relative;
}

/* ── How It Works ── */
.steps {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.step {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 32px 0;
}
.step-num {
  font-size: 48px;
  font-weight: 900;
  color: rgba(124,58,237,0.2);
  line-height: 1;
  flex-shrink: 0;
  width: 72px;
  text-align: right;
  letter-spacing: -2px;
}
.step-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  margin-top: 6px;
}
.step-content p {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.65;
}
.step-divider {
  height: 1px;
  background: var(--border);
  margin-left: 100px;
}

/* ── Pricing ── */
.pricing-toggle {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 48px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 4px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.toggle-btn {
  padding: 7px 20px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-3);
  transition: all var(--transition);
}
.toggle-btn.active {
  background: var(--surface-2);
  color: var(--text);
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.toggle-savings {
  font-size: 11px;
  background: rgba(16,185,129,0.15);
  color: var(--green);
  border-radius: 100px;
  padding: 1px 7px;
  margin-left: 6px;
  font-weight: 700;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
  margin-bottom: 24px;
}
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.pricing-featured {
  border-color: var(--accent);
  background: linear-gradient(160deg, rgba(124,58,237,0.08) 0%, var(--surface) 50%);
  box-shadow: 0 0 40px rgba(124,58,237,0.12);
}
.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 4px 12px;
  border-radius: 100px;
  white-space: nowrap;
}
.plan-name {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-3);
  margin-bottom: 8px;
}
.plan-price {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  margin-bottom: 12px;
}
.price-amount {
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1;
}
.price-amount.enterprise {
  font-size: 32px;
  letter-spacing: -1px;
}
.price-period {
  font-size: 14px;
  color: var(--text-3);
  margin-bottom: 6px;
}
.plan-desc {
  font-size: 14px;
  color: var(--text-2);
  margin-bottom: 24px;
  line-height: 1.55;
}
.plan-features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.plan-features li {
  font-size: 13px;
  color: var(--text-2);
  font-weight: 500;
}
.plan-features li.muted { color: var(--text-3); }
.plan-support-note {
  font-size: 11px;
  color: var(--text-3);
  font-style: italic;
  margin-bottom: 20px;
}

/* Lifetime Banner */
.lifetime-banner {
  background: linear-gradient(135deg, rgba(124,58,237,0.12) 0%, rgba(6,182,212,0.08) 100%);
  border: 1px solid rgba(124,58,237,0.25);
  border-radius: var(--radius);
  padding: 20px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 24px;
}
.lifetime-content {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  color: var(--text-2);
}
.lifetime-icon { font-size: 24px; flex-shrink: 0; }
.lifetime-content strong { color: var(--text); }

/* ── Testimonials ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}
.testimonial-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color var(--transition);
}
.testimonial-card:hover { border-color: var(--border-2); }
.stars {
  color: var(--yellow);
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
blockquote {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.65;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, #9333ea 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.author-name {
  font-size: 13px;
  font-weight: 700;
}
.author-title {
  font-size: 12px;
  color: var(--text-3);
  margin-top: 2px;
}

/* Social Proof Stats */
.social-proof {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 32px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.proof-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.proof-num {
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -1px;
  background: linear-gradient(135deg, var(--text) 0%, var(--text-2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.proof-label {
  font-size: 12px;
  color: var(--text-3);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.proof-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ── FAQ ── */
.faq-container { max-width: 720px; }
.faq-list { display: flex; flex-direction: column; gap: 2px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: rgba(124,58,237,0.35); }
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  background: var(--surface);
  text-align: left;
  transition: background var(--transition);
}
.faq-question:hover { background: var(--surface-2); }
.faq-chevron {
  font-size: 16px;
  color: var(--text-3);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease;
  background: var(--surface);
}
.faq-answer.open {
  max-height: 300px;
  border-top: 1px solid var(--border);
}
.faq-answer p {
  padding: 16px 20px;
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.65;
}
.faq-answer p strong { color: var(--text); }

/* ── CTA Section ── */
.cta-section { padding: 80px 0; }
.cta-card {
  position: relative;
  background: linear-gradient(135deg, rgba(124,58,237,0.12) 0%, rgba(9,9,15,0) 60%);
  border: 1px solid rgba(124,58,237,0.25);
  border-radius: var(--radius-lg);
  padding: 72px 40px;
  text-align: center;
  overflow: hidden;
}
.cta-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(124,58,237,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.cta-card h2 {
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
  position: relative;
}
.cta-card p {
  font-size: 17px;
  color: var(--text-2);
  max-width: 480px;
  margin: 0 auto 32px;
  line-height: 1.6;
  position: relative;
}
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 14px;
  flex-wrap: wrap;
  position: relative;
}
.cta-footnote {
  font-size: 12px;
  color: var(--text-3);
  position: relative;
}

/* ── Footer ── */
.footer {
  border-top: 1px solid var(--border);
  background: var(--surface);
  padding: 56px 0 32px;
}
.footer-top {
  display: flex;
  gap: 64px;
  margin-bottom: 48px;
}
.footer-brand { flex-shrink: 0; max-width: 220px; }
.footer-tagline {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 10px;
  margin-bottom: 8px;
}
.footer-sub {
  font-size: 13px;
  color: var(--text-3);
  line-height: 1.6;
}
.footer-links-grid {
  display: flex;
  gap: 48px;
  flex: 1;
  justify-content: flex-end;
}
.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-3);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 14px;
  color: var(--text-2);
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.footer-bottom p {
  font-size: 13px;
  color: var(--text-3);
}
.footer-socials {
  display: flex;
  gap: 16px;
}
.footer-socials a {
  font-size: 16px;
  color: var(--text-3);
  transition: color var(--transition);
  font-weight: 700;
}
.footer-socials a:hover { color: var(--text); }

/* ── Modal ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(8px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.modal-box {
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 480px;
  width: 100%;
  position: relative;
  transform: translateY(16px) scale(0.98);
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: var(--shadow-lg);
}
.modal-overlay.open .modal-box {
  transform: translateY(0) scale(1);
}
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--surface-2);
  color: var(--text-2);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  line-height: 1;
}
.modal-close:hover { background: var(--border); color: var(--text); }
.modal-content .modal-icon { font-size: 40px; margin-bottom: 12px; }
.modal-content h3 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}
.modal-content p {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.65;
  margin-bottom: 12px;
}
.modal-content .modal-note {
  font-size: 12px;
  color: var(--text-3);
  font-style: italic;
}
.modal-content .modal-btn-row {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

/* ── Toast ── */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--surface-2);
  border: 1px solid var(--border-2);
  border-radius: 100px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  box-shadow: var(--shadow);
  z-index: 300;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s;
  opacity: 0;
  white-space: nowrap;
}
.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ── Scroll Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 500px; margin-left: auto; margin-right: auto; }
  .footer-top { flex-direction: column; gap: 32px; }
  .footer-brand { max-width: 100%; }
  .footer-links-grid { justify-content: flex-start; }
  .social-proof { flex-wrap: wrap; gap: 24px; }
}
@media (max-width: 680px) {
  .nav-links, .nav-ctas { display: none; }
  .nav-mobile-toggle { display: flex; margin-left: auto; }
  .features-grid { grid-template-columns: 1fr; }
  .dashboard-sidebar { display: none; }
  .dash-stats { flex-direction: column; }
  .hero-headline { letter-spacing: -2px; }
  .lifetime-banner { flex-direction: column; text-align: center; }
  .footer-links-grid { flex-wrap: wrap; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .step { flex-direction: column; gap: 8px; }
  .step-num { text-align: left; width: auto; font-size: 32px; }
  .step-divider { margin-left: 0; }
}
