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

:root {
  --bg: #0b1120;
  --bg-alt: #0f172a;
  --surface: #1e293b;
  --surface-hover: #334155;
  --border: #1e293b;
  --border-light: #334155;
  --text: #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --blue: #3b82f6;
  --blue-glow: rgba(59, 130, 246, 0.15);
  --blue-subtle: rgba(59, 130, 246, 0.08);
  --green: #22c55e;
  --green-subtle: rgba(34, 197, 94, 0.1);
  --red: #ef4444;
  --red-subtle: rgba(239, 68, 68, 0.1);
  --amber: #f59e0b;
  --amber-subtle: rgba(245, 158, 11, 0.1);
  --purple: #a855f7;
  --indigo: #6366f1;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  text-align: center;
}

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

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

/* ───── Navigation ───── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s;
}

.nav--scrolled {
  background: rgba(11, 17, 32, 0.85);
  backdrop-filter: blur(16px);
  border-color: rgba(30, 41, 59, 0.6);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  text-align: left;
}

.nav__logo-icon { width: 22px; height: 22px; color: var(--blue); }

.nav__logo-dim { color: var(--text-muted); font-weight: 400; }

.nav__links { display: flex; align-items: center; gap: 32px; }

.nav__link {
  font-size: 14px;
  color: var(--text-secondary);
  transition: color 0.2s;
  text-align: left;
}

.nav__link:hover { color: var(--text); }

.nav__cta {
  font-size: 13px;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: var(--radius-sm);
  background: var(--blue);
  color: #fff;
  transition: opacity 0.2s, transform 0.2s;
  text-align: left;
}

.nav__cta:hover { opacity: 0.9; transform: translateY(-1px); }

.nav__toggle { display: none; background: none; border: none; color: var(--text-secondary); padding: 4px; }

/* ───── Hero ───── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero__bg { position: absolute; inset: 0; pointer-events: none; }

.hero__bg-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.3;
}

.hero__bg-glow--1 {
  top: -200px;
  right: -200px;
  background: radial-gradient(circle, var(--blue), transparent 70%);
}

.hero__bg-glow--2 {
  bottom: -200px;
  left: -200px;
  background: radial-gradient(circle, var(--purple), transparent 70%);
  opacity: 0.15;
}

.hero__content {
  position: relative;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--blue-subtle);
  color: var(--blue);
  border: 1px solid rgba(59, 130, 246, 0.2);
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

.hero__title {
  font-size: clamp(40px, 7vw, 72px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.hero__subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.hero__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 20px; }

.hero__footnote {
  font-size: 13px;
  color: var(--text-muted);
}

/* ───── Buttons ───── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  transition: all 0.2s;
  border: none;
  white-space: nowrap;
}

.btn--primary { background: var(--blue); color: #fff; }
.btn--primary:hover { opacity: 0.9; transform: translateY(-1px); box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3); }

.btn--ghost {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border-light);
}
.btn--ghost:hover { color: var(--text); border-color: var(--text-muted); }

.btn--outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-light);
}
.btn--outline:hover { border-color: var(--blue); color: var(--blue); }

.btn--lg { padding: 14px 32px; font-size: 16px; }

/* ───── Sections ───── */
.section { padding: 100px 0; }
.section--alt { background: var(--bg-alt); }

.section__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}

.section__title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.section__desc {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ───── Stats ───── */
.stats {
  padding: 0 0 80px;
  margin-top: -40px;
  position: relative;
  z-index: 1;
}

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

.stat-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
}

.stat-card__value {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 4px;
}

.stat-card__label {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
}

/* ───── Steps ───── */
.steps {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  justify-content: center;
}

.step {
  flex: 1;
  max-width: 300px;
  text-align: center;
  padding: 32px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-alt);
  transition: border-color 0.3s, transform 0.3s;
}

.step:hover { border-color: var(--border-light); transform: translateY(-4px); }

.step__number {
  font-size: 11px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.step__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  padding: 12px;
  border-radius: var(--radius-sm);
  background: var(--blue-subtle);
  color: var(--blue);
}

.step__icon svg { width: 100%; height: 100%; }

.step__title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}

.step__desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  text-align: left;
}

.step__arrow {
  width: 40px;
  padding-top: 64px;
  color: var(--text-muted);
  flex-shrink: 0;
}

.step__arrow svg { width: 100%; height: auto; }

/* ───── Features ───── */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  padding: 32px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg);
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  text-align: center;
}

.feature-card:hover {
  border-color: var(--border-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2);
}

.feature-card__icon {
  width: 44px;
  height: 44px;
  padding: 10px;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
}

.feature-card__icon svg { width: 100%; height: 100%; }

.feature-card__icon--blue { background: var(--blue-subtle); color: var(--blue); }
.feature-card__icon--green { background: var(--green-subtle); color: var(--green); }
.feature-card__icon--purple { background: rgba(168, 85, 247, 0.1); color: var(--purple); }
.feature-card__icon--amber { background: var(--amber-subtle); color: var(--amber); }
.feature-card__icon--indigo { background: rgba(99, 102, 241, 0.1); color: var(--indigo); }

.feature-card__title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature-card__desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ───── Preview Panel ───── */
.preview {
  display: flex;
  justify-content: center;
  text-align: left;
}

.preview__panel {
  width: 420px;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(51, 65, 85, 0.4);
  box-shadow: 0 16px 64px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.preview__panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(51, 65, 85, 0.3);
}

.preview__panel-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
}

.preview__panel-icon { width: 16px; height: 16px; color: var(--blue); }

.preview__badge {
  font-size: 9px;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.preview__badge--buy { background: var(--green-subtle); color: var(--green); border: 1px solid rgba(34, 197, 94, 0.3); }

.preview__close { background: none; border: none; color: var(--text-muted); padding: 2px; opacity: 0.5; }

.preview__tabs { display: flex; border-bottom: 1px solid rgba(51, 65, 85, 0.3); }

.preview__tab {
  flex: 1;
  padding: 10px;
  font-size: 10px;
  font-weight: 600;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  color: var(--text-muted);
  transition: color 0.2s, border-color 0.2s;
}

.preview__tab--active { color: var(--blue); border-bottom-color: var(--blue); }

.preview__body { padding: 20px; }

.preview__signal { padding: 14px; border-radius: var(--radius-sm); margin-bottom: 12px; }

.preview__signal--buy { background: var(--green-subtle); border: 1px solid rgba(34, 197, 94, 0.2); }

.preview__signal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.preview__signal-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.preview__signal-value {
  font-size: 11px;
  font-weight: 700;
  color: var(--green);
  padding: 2px 8px;
  border-radius: 4px;
  background: rgba(34, 197, 94, 0.15);
}

.preview__signal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }

.preview__signal-meta {
  display: block;
  font-size: 9px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 2px;
}

.preview__signal-text {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
}

.preview__signal-text--red { color: var(--red); }
.preview__signal-text--green { color: var(--green); }

.preview__reasoning {
  padding: 14px;
  background: rgba(30, 41, 59, 0.5);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(51, 65, 85, 0.2);
}

.preview__reasoning-text {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-top: 6px;
}

.preview__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  border-top: 1px solid rgba(51, 65, 85, 0.3);
}

.preview__footer-text { font-size: 10px; color: var(--text-muted); }

.preview__reload {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: 6px;
  background: rgba(30, 41, 59, 0.6);
  border: none;
  color: var(--text-muted);
  opacity: 0.6;
}

/* ───── Profile ───── */
.profile {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.profile__card {
  padding: 28px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg);
  text-align: left;
}

.profile__card-title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.profile__levels { display: flex; flex-direction: column; gap: 12px; }

.profile__level { display: flex; align-items: flex-start; gap: 10px; }

.profile__level-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid var(--border-light);
  flex-shrink: 0;
  margin-top: 2px;
  transition: border-color 0.2s, background 0.2s;
}

.profile__level-dot--active { border-color: var(--blue); background: var(--blue); }

.profile__level-name {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 1px;
}

.profile__level-desc {
  font-size: 12px;
  color: var(--text-muted);
}

.profile__bar {
  height: 24px;
  background: var(--surface);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 8px;
}

.profile__bar-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), var(--amber), var(--red));
  transition: width 0.6s ease;
}

.profile__bar-labels {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.profile__card-footnote {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ───── Providers ───── */
.providers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.provider-card {
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-alt);
  transition: border-color 0.3s, transform 0.3s;
}

.provider-card:hover { border-color: var(--border-light); transform: translateY(-2px); }

.provider-card__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  padding: 12px;
  border-radius: var(--radius-sm);
  background: var(--blue-subtle);
  color: var(--blue);
}

.provider-card__icon svg { width: 100%; height: 100%; }
.provider-card__icon--orange { background: rgba(249, 115, 22, 0.1); color: #f97316; }
.provider-card__icon--green { background: var(--green-subtle); color: var(--green); }
.provider-card__icon--purple { background: rgba(168, 85, 247, 0.1); color: var(--purple); }

.provider-card__name {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
}

.provider-card__models {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ───── Onboarding ───── */
.onboarding {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  justify-content: center;
}

.onboarding__step {
  flex: 1;
  max-width: 180px;
  text-align: center;
}

.onboarding__num {
  width: 40px;
  height: 40px;
  margin: 0 auto 12px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  background: var(--blue-subtle);
  color: var(--blue);
  border: 2px solid rgba(59, 130, 246, 0.2);
}

.onboarding__content h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}

.onboarding__content p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
  text-align: left;
}

.onboarding__connector {
  flex: 0 0 24px;
  height: 2px;
  background: var(--border-light);
  margin-top: 20px;
}

/* ───── Popup Preview ───── */
.popup-preview {
  max-width: 600px;
  margin: 0 auto;
  background: rgba(15, 23, 42, 0.9);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(51, 65, 85, 0.3);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  text-align: left;
}

.popup-preview__tabs {
  display: flex;
  border-bottom: 1px solid rgba(51, 65, 85, 0.3);
}

.popup-preview__tab {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 8px;
  font-size: 10px;
  font-weight: 600;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  color: var(--text-muted);
  transition: color 0.2s, border-color 0.2s;
}

.popup-preview__tab svg { width: 14px; height: 14px; }

.popup-preview__tab--active { color: var(--blue); border-bottom-color: var(--blue); }

.popup-preview__panel { padding: 20px; }

.popup-preview__profile { display: flex; gap: 6px; margin-bottom: 16px; flex-wrap: wrap; }

.popup-preview__badge {
  font-size: 10px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 4px;
}

.popup-preview__badge--blue { background: var(--blue-subtle); color: var(--blue); border: 1px solid rgba(59, 130, 246, 0.2); }
.popup-preview__badge--green { background: var(--green-subtle); color: var(--green); border: 1px solid rgba(34, 197, 94, 0.2); }
.popup-preview__badge--amber { background: var(--amber-subtle); color: var(--amber); border: 1px solid rgba(245, 158, 11, 0.2); }

.popup-preview__editor {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px;
  margin-bottom: 16px;
}

.popup-preview__editor-line {
  font-size: 11px;
  font-family: 'SF Mono', 'Fira Code', 'Cascadia Code', monospace;
  color: var(--text-secondary);
  padding: 4px 0;
  line-height: 1.6;
}

.popup-preview__editor-label {
  color: var(--blue);
  font-weight: 600;
}

.popup-preview__save {
  text-align: center;
  padding: 10px;
  background: var(--blue);
  color: #fff;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 600;
  opacity: 0.8;
}

/* ───── Privacy ───── */
.privacy__inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.privacy__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  padding: 14px;
  border-radius: var(--radius);
  background: var(--blue-subtle);
  color: var(--blue);
}

.privacy__icon svg { width: 100%; height: 100%; }

.privacy__title {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  margin-bottom: 12px;
}

.privacy__desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 32px;
}

.privacy__points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  text-align: left;
  max-width: 100%;
}

.privacy__point {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid var(--border);
}

.privacy__point svg {
  width: 18px;
  height: 18px;
  color: var(--green);
  flex-shrink: 0;
}

/* ───── Pricing ───── */
.pricing {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: flex-start;
}

.pricing__card {
  flex: 1;
  max-width: 340px;
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-alt);
  position: relative;
  text-align: center;
}

.pricing__card--pro {
  border-color: rgba(59, 130, 246, 0.3);
  background: linear-gradient(180deg, rgba(59, 130, 246, 0.04), transparent);
}

.pricing__popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.pricing__name {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.pricing__price {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}

.pricing__per {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.pricing__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  text-align: left;
}

.pricing__features li {
  font-size: 14px;
  color: var(--text-secondary);
  padding-left: 24px;
  position: relative;
}

.pricing__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 14px;
  height: 14px;
  background: var(--blue-subtle);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing__features li::after {
  content: '✓';
  position: absolute;
  left: 3px;
  top: 4px;
  font-size: 9px;
  font-weight: 700;
  color: var(--blue);
}

.pricing__card .btn { width: 100%; justify-content: center; }

/* ───── CTA ───── */
.cta {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.06), transparent 70%);
  pointer-events: none;
}

.cta__inner { text-align: center; position: relative; }

.cta__title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.cta__desc {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.cta__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ───── Footer ───── */
.footer {
  border-top: 1px solid var(--border);
  padding: 60px 0 32px;
  text-align: left;
}

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

.footer__tagline {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 8px;
}

.footer__links { display: flex; gap: 48px; }

.footer__col h4 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.footer__col a {
  display: block;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 10px;
  transition: color 0.2s;
}

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

.footer__bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
}

/* ───── Animations ───── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ───── Responsive ───── */
@media (max-width: 1024px) {
  .features { grid-template-columns: repeat(2, 1fr); }
  .providers { grid-template-columns: repeat(2, 1fr); }
  .profile { grid-template-columns: repeat(2, 1fr); }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__toggle { display: block; }

  .nav__links--open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(11, 17, 32, 0.98);
    backdrop-filter: blur(16px);
    padding: 16px 24px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
  }

  .steps { flex-direction: column; align-items: center; }
  .step { max-width: 100%; }
  .step__arrow { transform: rotate(90deg); padding-top: 0; width: 24px; }

  .features { grid-template-columns: 1fr; }
  .providers { grid-template-columns: 1fr; }
  .profile { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .onboarding { flex-direction: column; align-items: center; }
  .onboarding__step { max-width: 280px; }
  .onboarding__connector { width: 2px; height: 24px; flex: unset; }
  .pricing { flex-direction: column; align-items: center; }
  .pricing__card { max-width: 100%; }
  .privacy__points { grid-template-columns: 1fr; }
  .footer__inner { flex-direction: column; gap: 32px; }
  .footer__links { flex-wrap: wrap; gap: 32px; }
  .section { padding: 60px 0; }
  .section__header { margin-bottom: 40px; }

  .hero__bg-glow { width: 300px; height: 300px; }
}

@media (max-width: 480px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stat-card { padding: 20px 12px; }
  .stat-card__value { font-size: 22px; }
}
