/* ─────────────────────────────────────────────────────────────────────────────
   BettaTube — Marketing Website  |  style.css
   ───────────────────────────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@400;600;700;800;900&display=swap');

:root {
  --bg:        #06060f;
  --bg2:       #0a0a1a;
  --card:      #0d1225;
  --card2:     #111830;
  --border:    rgba(124,108,255,.14);
  --border2:   rgba(255,255,255,.06);
  --accent:    #7c6cff;
  --accent2:   #a78bfa;
  --accent3:   #c4b5fd;
  --green:     #22c55e;
  --green2:    #4ade80;
  --amber:     #f59e0b;
  --red:       #ef4444;
  --yt:        #ff0000;
  --text:      #f1f5f9;
  --muted:     #94a3b8;
  --muted2:    #64748b;
  --radius:    14px;
  --radius-lg: 22px;
  --shadow:    0 4px 30px rgba(0,0,0,.6);
  --glow:      0 0 80px rgba(124,108,255,.18);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

h1,h2,h3,h4,h5 {
  font-family: 'Outfit', sans-serif;
  line-height: 1.15;
  letter-spacing: -.02em;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; outline: none; }
input, textarea, select { font-family: inherit; outline: none; }

/* ── Scrollbar ─────────────────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

/* ── Container ─────────────────────────────────────────────────────────────── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}
.container-sm { max-width: 820px; margin: 0 auto; padding: 0 24px; }

/* ── Gradient text ─────────────────────────────────────────────────────────── */
.gradient-text {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent2) 50%, #e879f9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-text-green {
  background: linear-gradient(135deg, var(--green) 0%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Buttons ───────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  transition: all .22s ease;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, #9333ea 100%);
  color: #fff;
  box-shadow: 0 4px 24px rgba(124,108,255,.45);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(124,108,255,.6);
}
.btn-green {
  background: linear-gradient(135deg, var(--green) 0%, #059669 100%);
  color: #fff;
  box-shadow: 0 4px 24px rgba(34,197,94,.35);
}
.btn-green:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(34,197,94,.5);
}
.btn-ghost {
  background: rgba(255,255,255,.05);
  color: var(--text);
  border: 1px solid var(--border2);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--accent);
  color: var(--accent2);
}
.btn-outline {
  background: transparent;
  color: var(--accent2);
  border: 1.5px solid var(--accent);
}
.btn-outline:hover {
  background: var(--accent);
  color: #fff;
}
.btn-sm { padding: 9px 20px; font-size: 13px; }
.btn-lg { padding: 16px 40px; font-size: 17px; }

/* ── Card ──────────────────────────────────────────────────────────────────── */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow), var(--glow);
  border-color: rgba(124,108,255,.35);
}
.card-sm { padding: 20px 24px; border-radius: var(--radius); }

/* ── Badge ─────────────────────────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(124,108,255,.12);
  border: 1px solid rgba(124,108,255,.3);
  color: var(--accent2);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 22px;
}

/* ── Section header ────────────────────────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header .badge { margin-bottom: 16px; }
.section-header h2 { font-size: clamp(32px, 5vw, 52px); margin-bottom: 16px; }
.section-header p  { font-size: 18px; color: var(--muted); max-width: 580px; margin: 0 auto; }

section { padding: 100px 0; }
section.tight { padding: 60px 0; }

/* ── Orb glows ─────────────────────────────────────────────────────────────── */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
  animation: orb-float 8s ease-in-out infinite alternate;
}
.orb-1 { width: 500px; height: 500px; background: rgba(124,108,255,.22); top: -120px; left: -100px; animation-delay: 0s; }
.orb-2 { width: 400px; height: 400px; background: rgba(233,121,249,.14); top: 100px; right: -80px; animation-delay: 2s; }
.orb-3 { width: 350px; height: 350px; background: rgba(34,197,94,.10); bottom: 0; left: 30%; animation-delay: 4s; }

@keyframes orb-float {
  from { transform: translateY(0) scale(1); }
  to   { transform: translateY(-30px) scale(1.07); }
}

/* ── Grid background ───────────────────────────────────────────────────────── */
.grid-bg {
  background-image:
    linear-gradient(rgba(124,108,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124,108,255,.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* ─────────────────────────────────────────────────────────────────────────────
   NAVIGATION
   ───────────────────────────────────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: background .3s, backdrop-filter .3s, box-shadow .3s;
}
nav.scrolled {
  background: rgba(6,6,15,.85);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -.02em;
  display: flex;
  align-items: center;
  gap: 4px;
}
.logo span.yt { color: var(--yt); }
.logo-icon {
  width: 34px; height: 34px;
  background: linear-gradient(135deg, var(--accent), #9333ea);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  padding: 8px 14px;
  border-radius: 8px;
  transition: color .2s, background .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); background: rgba(255,255,255,.06); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all .3s; }

/* ─────────────────────────────────────────────────────────────────────────────
   HERO
   ───────────────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 100px;
  overflow: hidden;
}
.hero-content { position: relative; z-index: 1; text-align: center; }
.hero h1 {
  font-size: clamp(42px, 7vw, 82px);
  font-weight: 900;
  margin-bottom: 24px;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}
.hero-sub {
  font-size: clamp(16px, 2.5vw, 20px);
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 56px; }
.hero-stats {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
}
.hero-stats .stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-stats .stat-item .val {
  font-family: 'Outfit', sans-serif;
  font-size: 36px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-stats .stat-item .lbl { font-size: 13px; color: var(--muted); margin-top: 2px; }
.hero-divider { width: 1px; height: 40px; background: var(--border2); align-self: center; }

/* App mock ── */
.hero-mock {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}
.hero-mock-frame {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,.7), 0 0 0 1px rgba(255,255,255,.05);
}
.mock-titlebar {
  background: #1a1a2e;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.mock-dot { width: 12px; height: 12px; border-radius: 50%; }
.mock-url {
  flex: 1;
  background: rgba(255,255,255,.07);
  border-radius: 6px;
  padding: 4px 12px;
  font-size: 12px;
  color: var(--muted);
  margin: 0 10px;
}
.mock-body { padding: 24px; }
.mock-grid { display: grid; grid-template-columns: 200px 1fr; gap: 16px; height: 280px; }
.mock-sidebar {
  background: rgba(255,255,255,.03);
  border-radius: 10px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mock-sidebar-item {
  padding: 8px 10px;
  border-radius: 7px;
  font-size: 12px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.mock-sidebar-item.active { background: rgba(124,108,255,.2); color: var(--accent2); }
.mock-main { display: flex; flex-direction: column; gap: 12px; }
.mock-video-thumb {
  background: linear-gradient(135deg, #1a1a3e, #0d2040);
  border-radius: 10px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.mock-yt-play {
  width: 44px; height: 44px;
  background: var(--yt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.mock-badge-row { display: flex; gap: 8px; }
.mock-badge-item {
  flex: 1;
  background: rgba(124,108,255,.12);
  border: 1px solid rgba(124,108,255,.2);
  border-radius: 7px;
  padding: 8px;
  font-size: 11px;
}
.mock-badge-item .mock-label { color: var(--muted); margin-bottom: 3px; }
.mock-badge-item .mock-val { color: var(--accent2); font-weight: 600; }
.mock-bar-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mock-bar {
  height: 8px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--accent), #9333ea);
}

/* Floating chips */
.mock-float-1, .mock-float-2 {
  position: absolute;
  z-index: 2;
  background: var(--card2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 16px;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow);
  animation: chip-float 4s ease-in-out infinite alternate;
}
.mock-float-1 { top: 30px; left: -30px; animation-delay: 0s; }
.mock-float-2 { bottom: 40px; right: -30px; animation-delay: 1.5s; }
@keyframes chip-float {
  from { transform: translateY(0); }
  to   { transform: translateY(-10px); }
}
.chip-dot { width: 8px; height: 8px; border-radius: 50%; }

/* ─────────────────────────────────────────────────────────────────────────────
   LOGO STRIP
   ───────────────────────────────────────────────────────────────────────────── */
/* ── Benefits ticker bar ── */
.benefits-bar {
  border-top: 1px solid var(--border2);
  border-bottom: 1px solid var(--border2);
  background: rgba(124,108,255,.04);
}
.benefits-bar .container {
  position: relative;
}
.benefits-bar .container::before,
.benefits-bar .container::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.benefits-bar .container::before {
  left: 0;
  background: linear-gradient(to right, var(--bg) 50%, transparent 100%);
}
.benefits-bar .container::after {
  right: 0;
  background: linear-gradient(to left, var(--bg) 50%, transparent 100%);
}
.benefits-track {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  width: max-content;
  animation: ticker 36s linear infinite;
  will-change: transform;
}
.benefits-bar:hover .benefits-track { animation-play-state: paused; }
.benefit-pill {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  gap: 9px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  padding: 18px 40px;
  border-right: 1px solid var(--border2);
}
.benefit-pill:last-child { border-right: none; }
.benefit-pill .bp-emoji {
  font-size: 17px;
  line-height: 1;
  flex-shrink: 0;
}
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─────────────────────────────────────────────────────────────────────────────
   FEATURES GRID
   ───────────────────────────────────────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
}
.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all .25s ease;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity .3s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow), var(--glow); border-color: rgba(124,108,255,.3); }
.feature-card:hover::before { opacity: 1; }
.feature-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
}
.feature-card h3 { font-size: 20px; margin-bottom: 10px; }
.feature-card p  { font-size: 14px; color: var(--muted); line-height: 1.7; }
.feature-tag {
  display: inline-flex;
  margin-top: 16px;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 50px;
  background: rgba(124,108,255,.12);
  color: var(--accent2);
}

/* ─────────────────────────────────────────────────────────────────────────────
   HOW IT WORKS
   ───────────────────────────────────────────────────────────────────────────── */
.steps-wrap { display: flex; flex-direction: column; gap: 0; position: relative; }
.steps-wrap::before {
  content: '';
  position: absolute;
  left: 31px; top: 60px; bottom: 60px;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent), #9333ea, transparent);
}
.step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  padding: 30px 0;
  align-items: start;
}
.step-num {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #9333ea);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 22px; font-weight: 800;
  flex-shrink: 0;
  box-shadow: 0 0 30px rgba(124,108,255,.4);
  position: relative; z-index: 1;
}
.step-content h3 { font-size: 22px; margin-bottom: 8px; margin-top: 18px; }
.step-content p  { font-size: 15px; color: var(--muted); line-height: 1.7; }
.step-content .step-chip {
  display: inline-flex; gap: 6px; flex-wrap: wrap; margin-top: 14px;
}
.step-content .step-chip span {
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border2);
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 50px;
  color: var(--muted);
}

/* ─────────────────────────────────────────────────────────────────────────────
   COMPARISON TABLE
   ───────────────────────────────────────────────────────────────────────────── */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 40px;
}
.compare-table th, .compare-table td {
  padding: 16px 20px;
  text-align: center;
  border-bottom: 1px solid var(--border2);
}
.compare-table th { font-size: 13px; color: var(--muted); font-weight: 600; padding-bottom: 20px; }
.compare-table th.hl { color: var(--accent2); font-size: 15px; }
.compare-table td.feature-name { text-align: left; color: var(--text); font-size: 14px; }
.compare-table .check { color: var(--green); font-size: 18px; }
.compare-table .cross { color: var(--muted2); font-size: 18px; }
.compare-table .hl-col { background: rgba(124,108,255,.07); border-left: 1px solid var(--border); border-right: 1px solid var(--border); }

/* ─────────────────────────────────────────────────────────────────────────────
   PRICING
   ───────────────────────────────────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}
.pricing-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  position: relative;
  transition: all .25s;
}
.pricing-card.popular {
  border-color: var(--accent);
  box-shadow: 0 0 40px rgba(124,108,255,.2);
  transform: scale(1.03);
}
.pricing-card.popular:hover { transform: scale(1.05) translateY(-4px); }
.popular-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent), #9333ea);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 18px;
  border-radius: 50px;
  white-space: nowrap;
}
.pricing-card h3 { font-size: 20px; margin-bottom: 6px; }
.pricing-desc { font-size: 13px; color: var(--muted); margin-bottom: 24px; }
.pricing-price {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  margin-bottom: 6px;
}
.pricing-price .currency { font-size: 22px; font-weight: 700; margin-bottom: 6px; color: var(--muted); }
.pricing-price .amount {
  font-family: 'Outfit', sans-serif;
  font-size: 56px;
  font-weight: 900;
  line-height: 1;
}
.pricing-price .period { font-size: 14px; color: var(--muted); margin-bottom: 8px; }
.pricing-note { font-size: 12px; color: var(--muted2); margin-bottom: 28px; }
.pricing-divider { height: 1px; background: var(--border2); margin: 24px 0; }
.pricing-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.pricing-feature {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--muted);
}
.pricing-feature .tick { color: var(--green); font-size: 16px; flex-shrink: 0; }
.pricing-feature .cross { color: var(--muted2); flex-shrink: 0; }

/* ─────────────────────────────────────────────────────────────────────────────
   TESTIMONIALS
   ───────────────────────────────────────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.testimonial-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all .25s;
}
.testimonial-card:hover { transform: translateY(-3px); border-color: rgba(124,108,255,.3); }
.stars { color: var(--amber); font-size: 14px; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-text { font-size: 15px; color: var(--muted); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #9333ea);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 16px;
}
.author-name { font-weight: 600; font-size: 14px; }
.author-handle { font-size: 12px; color: var(--muted2); }

/* ─────────────────────────────────────────────────────────────────────────────
   FAQ
   ───────────────────────────────────────────────────────────────────────────── */
.faq-item {
  border-bottom: 1px solid var(--border2);
  padding: 22px 0;
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  gap: 20px;
  user-select: none;
}
.faq-q .icon { font-size: 20px; color: var(--accent); flex-shrink: 0; transition: transform .3s; }
.faq-item.open .faq-q .icon { transform: rotate(45deg); }
.faq-a {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s;
}
.faq-item.open .faq-a { max-height: 400px; padding-top: 14px; }

/* ─────────────────────────────────────────────────────────────────────────────
   CTA BANNER
   ───────────────────────────────────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, #0d0d2e 0%, #1a0a3e 50%, #0a1a2e 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 72px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(124,108,255,.2), transparent 70%);
  pointer-events: none;
}
.cta-banner h2 { font-size: clamp(30px, 5vw, 50px); margin-bottom: 16px; }
.cta-banner p  { font-size: 17px; color: var(--muted); margin-bottom: 36px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ─────────────────────────────────────────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────────────────────────────────────────── */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--border2);
  padding: 60px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand p { font-size: 14px; color: var(--muted); margin: 12px 0 20px; line-height: 1.7; }
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--border2);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  transition: all .2s;
}
.social-btn:hover { background: var(--accent); border-color: var(--accent); }
.footer-col h4 { font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 16px; letter-spacing: .05em; text-transform: uppercase; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 14px; color: var(--muted); transition: color .2s; }
.footer-col ul li a:hover { color: var(--accent2); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid var(--border2);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 13px; color: var(--muted2); }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 13px; color: var(--muted2); transition: color .2s; }
.footer-links a:hover { color: var(--accent2); }

/* ─────────────────────────────────────────────────────────────────────────────
   FORMS (sign up / sign in)
   ───────────────────────────────────────────────────────────────────────────── */
.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 24px 60px;
  position: relative;
}
.auth-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px;
  width: 100%;
  max-width: 460px;
  position: relative;
  z-index: 1;
}
.auth-logo { text-align: center; margin-bottom: 28px; }
.auth-card h2 { font-size: 28px; text-align: center; margin-bottom: 6px; }
.auth-card .auth-sub { font-size: 14px; color: var(--muted); text-align: center; margin-bottom: 32px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--muted); margin-bottom: 8px; }
.form-group input {
  width: 100%;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border2);
  border-radius: 10px;
  padding: 13px 16px;
  font-size: 15px;
  color: var(--text);
  transition: border-color .2s, box-shadow .2s;
}
.form-group input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(124,108,255,.15);
}
.form-group input::placeholder { color: var(--muted2); }
.form-check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 22px;
}
.form-check input[type=checkbox] { width: 16px; height: 16px; accent-color: var(--accent); cursor: pointer; }
.form-check a { color: var(--accent2); }
.auth-divider { display: flex; align-items: center; gap: 14px; margin: 20px 0; color: var(--muted2); font-size: 13px; }
.auth-divider::before, .auth-divider::after { content: ''; flex: 1; height: 1px; background: var(--border2); }
.btn-google {
  width: 100%;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--border2);
  color: var(--text);
  border-radius: 10px;
  padding: 12px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all .2s;
}
.btn-google:hover { background: rgba(255,255,255,.12); border-color: var(--border); }
.auth-footer-text { text-align: center; font-size: 14px; color: var(--muted); margin-top: 20px; }
.auth-footer-text a { color: var(--accent2); font-weight: 600; }

/* ─────────────────────────────────────────────────────────────────────────────
   LEGAL PAGES
   ───────────────────────────────────────────────────────────────────────────── */
.legal-page { padding: 140px 0 80px; }
.legal-page h1 { font-size: clamp(28px, 5vw, 48px); margin-bottom: 10px; }
.legal-meta { font-size: 13px; color: var(--muted2); margin-bottom: 48px; }
.legal-body { display: grid; grid-template-columns: 220px 1fr; gap: 60px; align-items: start; }
.legal-toc { position: sticky; top: 100px; }
.legal-toc h4 { font-size: 12px; font-weight: 700; color: var(--muted2); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 14px; }
.legal-toc ul { display: flex; flex-direction: column; gap: 8px; }
.legal-toc ul li a { font-size: 13px; color: var(--muted); transition: color .2s; display: block; padding: 4px 0; border-left: 2px solid transparent; padding-left: 10px; transition: all .2s; }
.legal-toc ul li a:hover { color: var(--accent2); border-left-color: var(--accent); }
.legal-content h2 { font-size: 22px; margin: 40px 0 12px; padding-top: 40px; border-top: 1px solid var(--border2); }
.legal-content h2:first-child { border-top: none; padding-top: 0; margin-top: 0; }
.legal-content h3 { font-size: 17px; margin: 24px 0 10px; color: var(--accent2); }
.legal-content p { font-size: 15px; color: var(--muted); line-height: 1.8; margin-bottom: 14px; }
.legal-content ul { display: flex; flex-direction: column; gap: 8px; margin: 12px 0 20px 20px; }
.legal-content ul li { font-size: 15px; color: var(--muted); line-height: 1.7; list-style: disc; }
.legal-content a { color: var(--accent2); text-decoration: underline; }
.legal-highlight {
  background: rgba(124,108,255,.08);
  border: 1px solid rgba(124,108,255,.2);
  border-left: 4px solid var(--accent);
  border-radius: 0 10px 10px 0;
  padding: 16px 20px;
  margin: 20px 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* ─────────────────────────────────────────────────────────────────────────────
   INNER PAGE HERO (features, pricing, legal, etc.)
   ───────────────────────────────────────────────────────────────────────────── */
.page-hero {
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero h1 { font-size: clamp(36px, 6vw, 64px); margin-bottom: 18px; }
.page-hero p  { font-size: 18px; color: var(--muted); max-width: 580px; margin: 0 auto; }

/* ─────────────────────────────────────────────────────────────────────────────
   ANIMATIONS
   ───────────────────────────────────────────────────────────────────────────── */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fade-up .6s ease forwards; }
.delay-1 { animation-delay: .1s; opacity: 0; }
.delay-2 { animation-delay: .2s; opacity: 0; }
.delay-3 { animation-delay: .3s; opacity: 0; }
.delay-4 { animation-delay: .4s; opacity: 0; }
.delay-5 { animation-delay: .5s; opacity: 0; }

/* ─────────────────────────────────────────────────────────────────────────────
   RESPONSIVE
   ───────────────────────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .legal-body { grid-template-columns: 1fr; }
  .legal-toc { display: none; }
  .mock-grid { grid-template-columns: 1fr; height: auto; }
  .mock-sidebar { display: none; }
  .pricing-card.popular { transform: scale(1); }
}
@media (max-width: 680px) {
  .nav-links, .nav-cta .btn:not(.btn-primary) { display: none; }
  .hamburger { display: flex; }
  .hero h1 { font-size: 36px; }
  .hero-stats .hero-divider { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .steps-wrap::before { display: none; }
  section { padding: 64px 0; }
  .cta-banner { padding: 48px 24px; }
  .auth-card { padding: 32px 24px; }
  .mock-float-1, .mock-float-2 { display: none; }
}

/* ─────────────────────────────────────────────────────────────────────────────
   UTILITY
   ───────────────────────────────────────────────────────────────────────────── */
.text-accent  { color: var(--accent2); }
.text-green   { color: var(--green); }
.text-muted   { color: var(--muted); }
.text-center  { text-align: center; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-40 { margin-bottom: 40px; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-12 { gap: 12px; }
.w-full { width: 100%; }
