/* ════════════════════════════════════════════════════════════
   STACKED — styles.css
   Mobile-first. Breakpoints: 640px | 768px | 1024px | 1280px
════════════════════════════════════════════════════════════ */

/* ── Custom Properties ─────────────────────────────────── */
:root {
  --bg:          #0c0c14;
  --bg2:         #111120;
  --card:        #14141f;
  --border:      rgba(255, 255, 255, 0.07);
  --purple:      #7B6EE8;
  --purple-dim:  rgba(123, 110, 232, 0.15);
  --purple-glow: rgba(123, 110, 232, 0.25);
  --white:       #f0f0f8;
  --gray:        rgba(240, 240, 248, 0.50);
  --gray2:       rgba(240, 240, 248, 0.25);
  --green:       #5ecc8a;
  --red:         rgba(255, 90, 90, 0.85);
  --font:        'Manrope', sans-serif;
  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --transition:  0.2s ease;
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, textarea { font-family: inherit; }
::selection { background: var(--purple); color: #fff; }

/* noise texture */
body::after {
  content: '';
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
}

/* ── Layout Utilities ───────────────────────────────────── */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 600px; }
.section-pad { padding: 80px 0; }
.text-purple { color: var(--purple); }
.body-text { font-size: 16px; color: var(--gray); line-height: 1.75; margin-bottom: 16px; }

/* label above headings */
.label-tag {
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--purple); margin-bottom: 14px;
  display: block;
}

/* ── Scroll Reveal ──────────────────────────────────────── */
.reveal,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal       { transform: translateY(28px); }
.reveal-left  { transform: translateX(-36px); }
.reveal-right { transform: translateX(36px); }
.reveal.visible,
.reveal-left.visible,
.reveal-right.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right { transition: opacity 0.4s ease; transform: none; }
}

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 14px 30px; border-radius: 100px;
  font-size: 15px; font-weight: 700; cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition);
  white-space: nowrap; border: none;
}
.btn--primary {
  background: var(--purple); color: #fff;
  box-shadow: 0 0 28px var(--purple-glow);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 0 44px rgba(123,110,232,0.55); }
.btn--ghost {
  background: transparent; color: var(--white);
  border: 1px solid var(--border);
}
.btn--ghost:hover { border-color: rgba(123,110,232,0.4); background: var(--purple-dim); }
.btn--full { width: 100%; }

/* ── NAV ────────────────────────────────────────────────── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 64px; display: flex; align-items: center;
  justify-content: space-between; padding: 0 24px;
  transition: background 0.4s ease, border-color 0.4s ease, backdrop-filter 0.4s ease;
  border-bottom: 1px solid transparent;
}
#nav.scrolled {
  background: rgba(12, 12, 20, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
}
.nav__logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 19px; letter-spacing: -0.4px;
}
.nav__logo img { width: 34px; height: 34px; border-radius: 7px; object-fit: contain; }
.nav__links { display: flex; align-items: center; gap: 28px; }
.nav__link {
  font-size: 14px; font-weight: 500; color: var(--gray);
  transition: color var(--transition);
}
.nav__link:hover { color: var(--white); }
.nav__cta {
  font-size: 14px; font-weight: 700; color: var(--purple);
  border: 1.5px solid rgba(123,110,232,0.45);
  padding: 8px 20px; border-radius: 100px;
  transition: background var(--transition), border-color var(--transition);
}
.nav__cta:hover { background: var(--purple-dim); border-color: var(--purple); }

/* hide some nav items on very small screens */
@media (max-width: 480px) {
  .nav__link { display: none; }
  .nav__cta { padding: 7px 16px; font-size: 13px; }
}

/* ── HERO ───────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; padding: 100px 24px 80px;
}
.hero__grid {
  position: absolute; inset: -10%; pointer-events: none;
  background-image:
    linear-gradient(rgba(123,110,232,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(123,110,232,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  will-change: transform;
  transition: transform 0.15s ease-out;
}
.hero__orb {
  position: absolute; border-radius: 50%; pointer-events: none;
  will-change: transform; transition: transform 0.2s ease-out;
}
.hero__orb--1 {
  width: clamp(300px, 40vw, 600px); height: clamp(300px, 40vw, 600px);
  background: radial-gradient(circle, rgba(123,110,232,0.22) 0%, transparent 65%);
  top: -10%; left: 10%;
}
.hero__orb--2 {
  width: clamp(250px, 33vw, 500px); height: clamp(250px, 33vw, 500px);
  background: radial-gradient(circle, rgba(123,110,232,0.12) 0%, transparent 65%);
  bottom: -5%; right: 5%;
}
.hero__float {
  position: absolute; object-fit: contain; border-radius: 22%;
  pointer-events: none; display: none;
}
.hero__float--1 { width: 56px; height: 56px; top: 16%; left: 6%; opacity: 0.12; animation: float 4s ease-in-out infinite; }
.hero__float--2 { width: 36px; height: 36px; top: 70%; left: 4%; opacity: 0.08; animation: float 4s ease-in-out 1s infinite; }
.hero__float--3 { width: 48px; height: 48px; top: 20%; right: 5%; opacity: 0.10; animation: float 4s ease-in-out 0.5s infinite; }
.hero__float--4 { width: 30px; height: 30px; top: 75%; right: 8%; opacity: 0.07; animation: float 4s ease-in-out 1.5s infinite; }
@media (min-width: 768px) { .hero__float { display: block; } }

.hero__content {
  position: relative; z-index: 2;
  text-align: center; max-width: 820px; width: 100%;
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--purple-dim); border: 1px solid rgba(123,110,232,0.3);
  border-radius: 100px; padding: 6px 16px; margin-bottom: 28px;
  font-size: 12px; font-weight: 600; color: var(--purple);
  animation: fade-up 0.6s ease both;
}
.hero__badge-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--purple);
  animation: pulse-ring 1.5s ease-out infinite;
  flex-shrink: 0;
}
.hero__title {
  font-size: clamp(44px, 8vw, 88px);
  font-weight: 900; line-height: 1.05; letter-spacing: -3px;
  animation: fade-up 0.7s 0.1s ease both;
  text-wrap: balance;
}
.hero__word { color: var(--purple); transition: opacity 0.3s ease; display: inline-block; }
.hero__title-muted { color: var(--gray); }
.hero__subtitle {
  margin: 24px auto 0; font-size: clamp(16px, 2.5vw, 19px);
  color: var(--gray); line-height: 1.65; max-width: 560px;
  animation: fade-up 0.7s 0.2s ease both;
}
.hero__actions {
  margin-top: 36px; display: flex; gap: 12px;
  justify-content: center; flex-wrap: wrap;
  animation: fade-up 0.7s 0.35s ease both;
}
.hero__scroll-hint {
  position: absolute; bottom: 28px; left: 50%;
  transform: translateX(-50%); display: flex;
  flex-direction: column; align-items: center; gap: 8px;
  color: var(--gray2); font-size: 10px; font-weight: 600;
  letter-spacing: 2px; animation: fade-up 1s 0.8s ease both;
}
.hero__scroll-line {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, var(--gray2), transparent);
}

/* ── MARQUEE ────────────────────────────────────────────── */
.marquee {
  overflow: hidden; padding: 14px 0;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: rgba(123,110,232,0.04);
}
.marquee__track {
  display: flex; gap: 28px; white-space: nowrap;
  animation: marquee 22s linear infinite;
  width: max-content;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item { flex-shrink: 0; }
.marquee__item--label {
  font-size: 12px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--gray);
}
.marquee__item--dot { color: var(--gray2); }

/* ── ABOUT ──────────────────────────────────────────────── */
.about__grid {
  display: grid; gap: 48px;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .about__grid { grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
}
.about__heading {
  font-size: clamp(28px, 4vw, 48px); font-weight: 900;
  letter-spacing: -2px; line-height: 1.1; margin-bottom: 24px;
}
.about__author {
  margin-top: 32px; display: flex; align-items: center; gap: 14px;
}
.about__avatar {
  width: 48px; height: 48px; border-radius: 50%; flex-shrink: 0;
  background: var(--purple-dim); border: 2px solid rgba(123,110,232,0.4);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 800; color: var(--purple);
}
.about__author strong { display: block; font-size: 15px; margin-bottom: 2px; }
.about__author p { font-size: 13px; color: var(--gray); }

/* comparison cards */
.about__comparison { position: relative; }
.savings-badge {
  position: absolute; top: -18px; right: -12px; z-index: 2;
  background: var(--purple); color: #fff;
  font-size: 13px; font-weight: 800;
  padding: 10px 18px; border-radius: 14px;
  box-shadow: 0 8px 28px rgba(123,110,232,0.5);
  animation: float 3s ease-in-out infinite;
}
.compare-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px; margin-bottom: 14px;
  position: relative; overflow: hidden;
}
.compare-card__bar { position: absolute; top: 0; left: 0; right: 0; height: 2px; }
.compare-card__bar--bad { background: rgba(255, 80, 80, 0.5); }
.compare-card__bar--good { background: linear-gradient(90deg, var(--purple), transparent); }
.compare-card--good { border-color: rgba(123,110,232,0.3); box-shadow: 0 0 36px rgba(123,110,232,0.08); }
.compare-card__label { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 14px; }
.compare-card__label--bad { color: rgba(255, 90, 90, 0.8); }
.compare-card__label--good { color: var(--purple); }
.compare-list { margin-bottom: 12px; }
.compare-list li { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 14px; color: var(--gray); }
.compare-list li.no-border { border-bottom: none; }
.cost-bad { color: rgba(255, 100, 100, 0.85); font-weight: 600; }
.cost-bad--total { font-size: 15px; }
.cost-good { color: var(--green); font-weight: 600; }
.compare-total { display: flex; justify-content: space-between; align-items: center; font-size: 14px; font-weight: 700; padding-top: 10px; border-top: 1px solid var(--border); }

/* ── TOOLS ──────────────────────────────────────────────── */

/* — Mobile / Tablet: vertical stack — */
.tools-outer { padding: 60px 0; background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.tools-sticky { padding: 0 24px; }
.tools-section-label, .tools-progress { display: none; }

.tools-track { display: flex; flex-direction: column; gap: 40px; max-width: 1200px; margin: 0 auto; }

.tool-panel {
  display: grid; gap: 36px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .tool-panel { grid-template-columns: 1fr 1fr; align-items: center; gap: 48px; }
}

.tool-panel__meta { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.tool-panel__num  { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; }
.tool-panel__category { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gray2); }
.tool-panel__name { font-size: clamp(28px, 4vw, 44px); font-weight: 900; letter-spacing: -1.5px; line-height: 1.05; margin-bottom: 16px; }
.tool-panel__quote { font-size: 17px; font-weight: 300; font-style: italic; line-height: 1.4; margin-bottom: 18px; }
.tool-panel__desc { font-size: 15px; color: var(--gray); line-height: 1.75; margin-bottom: 24px; }
.tool-panel__features { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.tool-panel__features li {
  font-size: 12px; font-weight: 600; color: var(--gray);
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  padding: 5px 13px; border-radius: 100px;
}
.tool-panel__status {
  display: inline-block; font-size: 11px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 5px 13px; border-radius: 100px;
}
.tool-panel__status--live {
  color: var(--green); background: rgba(94,204,138,0.1);
  border: 1px solid rgba(94,204,138,0.3);
}
.tool-panel__status--soon {
  color: var(--gray2); background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
}

/* — Desktop: pinned horizontal scroll — */
@media (min-width: 1024px) {
  .tools-outer {
    height: calc(3 * 100vh);
    padding: 0; background: var(--bg2);
  }
  .tools-sticky {
    position: sticky; top: 0; height: 100vh;
    overflow: hidden; padding: 0;
  }
  .tools-section-label {
    display: block; position: absolute; top: 28px; left: 48px;
    font-size: 11px; font-weight: 700; letter-spacing: 2px;
    text-transform: uppercase; color: var(--gray2); z-index: 10;
  }
  .tools-progress {
    display: flex; position: absolute; top: 28px; right: 48px;
    gap: 8px; align-items: center; z-index: 10;
  }
  .tools-progress__dot {
    height: 8px; border-radius: 100px; background: var(--border);
    transition: width 0.3s ease, background 0.3s ease;
    width: 8px; display: block;
  }
  .tools-progress__dot.active { width: 24px; }

  .tools-track {
    display: flex; flex-direction: row;
    width: calc(3 * 100vw); height: 100vh;
    flex-direction: row; gap: 0;
    will-change: transform;
  }
  .tool-panel {
    width: 100vw; height: 100vh; flex-shrink: 0;
    display: grid; grid-template-columns: 1fr 1fr;
    align-items: center; gap: 80px;
    padding: 80px 80px 80px 80px;
    max-width: none;
    transition: opacity 0.4s ease;
  }
  .tool-panel.dim { opacity: 0.4; }
}

/* ── MOCK WINDOW UI ─────────────────────────────────────── */
.mock-window {
  background: var(--card); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 18px; overflow: hidden;
  box-shadow: 0 0 50px rgba(0,0,0,0.3), 0 0 40px color-mix(in srgb, var(--accent, #7B6EE8) 10%, transparent);
}
.mock-window__header {
  padding: 14px 18px; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent, #7B6EE8) 12%, transparent), transparent);
}
.mock-window__dots { display: flex; gap: 6px; }
.mock-window__dots span { width: 11px; height: 11px; border-radius: 50%; }
.mock-window__bar { flex: 1; height: 20px; background: rgba(255,255,255,0.05); border-radius: 6px; margin-left: 6px; }
.mock-window__body { padding: 20px; }
.mock-section-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--gray2); margin-bottom: 14px; }

/* calendar */
.mock-calendar { margin-bottom: 16px; }
.mock-calendar__days { display: grid; grid-template-columns: repeat(7,1fr); gap: 3px; margin-bottom: 4px; }
.mock-calendar__days span { text-align: center; font-size: 9px; font-weight: 600; color: var(--gray2); }
.mock-calendar__grid { display: grid; grid-template-columns: repeat(7,1fr); gap: 3px; }
.mock-calendar__grid span {
  height: 28px; border-radius: 5px; font-size: 9px; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.03); color: var(--gray2);
  border: 1px solid transparent;
}
.mock-calendar__grid span:empty { color: transparent; }
.mock-calendar__cell--active {
  background: rgba(123,110,232,0.18) !important;
  border-color: rgba(123,110,232,0.4) !important;
  color: var(--purple) !important;
}

/* posts */
.mock-posts { display: flex; flex-direction: column; gap: 0; }
.mock-post {
  display: flex; align-items: center; gap: 9px; padding: 8px 0;
  border-bottom: 1px solid var(--border); font-size: 12px; color: var(--gray);
}
.mock-post:last-child { border-bottom: none; }
.mock-post__dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }

/* trend bars */
.mock-bars { display: flex; flex-direction: column; gap: 10px; }
.mock-bar-row { display: flex; align-items: center; gap: 10px; }
.mock-bar-label { font-size: 11px; color: var(--gray); width: 130px; flex-shrink: 0; }
.mock-bar-track { flex: 1; height: 4px; background: rgba(255,255,255,0.07); border-radius: 4px; overflow: hidden; }
.mock-bar-fill { height: 100%; border-radius: 4px; transition: width 0.4s ease; }
.mock-bar-pct { font-size: 11px; font-weight: 700; width: 36px; text-align: right; flex-shrink: 0; }

/* finance metrics */
.mock-metrics { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-bottom: 16px; }
.mock-metric { background: rgba(255,255,255,0.03); border-radius: 10px; padding: 12px; border: 1px solid var(--border); }
.mock-metric__label { font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--gray2); display: block; margin-bottom: 6px; }
.mock-metric__value { font-size: 16px; font-weight: 800; display: block; margin-bottom: 3px; }
.mock-metric__delta { font-size: 10px; font-weight: 600; }
.mock-invoices { display: flex; flex-direction: column; }
.mock-invoice { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 12px; color: var(--gray); }
.mock-invoice.no-border { border-bottom: none; }

/* ── PHILOSOPHY ─────────────────────────────────────────── */
.philosophy { background: var(--bg2); }
.philosophy__intro { text-align: center; margin-bottom: 56px; }
.philosophy__heading {
  font-size: clamp(28px, 4vw, 50px); font-weight: 900;
  letter-spacing: -2px; line-height: 1.1; max-width: 680px; margin: 0 auto;
}
.philosophy__grid {
  display: grid; gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px)  { .philosophy__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .philosophy__grid { grid-template-columns: repeat(4, 1fr); } }
.philosophy__card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.philosophy__card:hover {
  border-color: rgba(123,110,232,0.4);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(123,110,232,0.1);
}
.philosophy__icon { font-size: 28px; margin-bottom: 14px; }
.philosophy__card h3 { font-size: 17px; font-weight: 800; margin-bottom: 10px; letter-spacing: -0.3px; }
.philosophy__card p { font-size: 14px; color: var(--gray); line-height: 1.7; }

/* ── SIGN UP ────────────────────────────────────────────── */
.signup { position: relative; overflow: hidden; }
.signup__glow {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 600px; height: 600px; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(123,110,232,0.12) 0%, transparent 65%);
}
.signup__intro { text-align: center; margin-bottom: 40px; }
.signup__heading {
  font-size: clamp(30px, 5vw, 52px); font-weight: 900;
  letter-spacing: -2px; line-height: 1.1; margin-bottom: 16px;
}
.signup__sub { font-size: 16px; color: var(--gray); line-height: 1.65; }
.signup__card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: clamp(24px, 5vw, 44px);
  box-shadow: 0 0 40px rgba(0,0,0,0.2);
  position: relative; z-index: 1;
}
/* form */
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block; font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--gray2); margin-bottom: 8px;
}
.required { color: var(--purple); }
.form-group input {
  width: 100%; background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 14px 18px;
  font-size: 15px; color: var(--white); outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus {
  border-color: rgba(123,110,232,0.6);
  box-shadow: 0 0 0 3px rgba(123,110,232,0.1);
}
.form-group input::placeholder { color: var(--gray2); }
.form-error { display: block; font-size: 12px; color: #ff6b6b; margin-top: 6px; min-height: 18px; }
.form-check {
  display: flex; gap: 12px; align-items: flex-start;
  margin-bottom: 24px;
}
.form-check input[type="checkbox"] {
  width: 17px; height: 17px; accent-color: var(--purple);
  flex-shrink: 0; margin-top: 2px; cursor: pointer;
}
.form-check label { font-size: 14px; color: var(--gray); line-height: 1.5; cursor: pointer; }
.form-note { text-align: center; margin-top: 14px; font-size: 12px; color: var(--gray2); }

/* loading state */
.btn__loading { display: none; }
.btn--loading .btn__label { display: none; }
.btn--loading .btn__loading { display: inline; }

/* success */
.signup-success { text-align: center; padding: 48px 24px; }
.signup-success__icon { font-size: 48px; margin-bottom: 16px; }
.signup-success h3 { font-size: 26px; font-weight: 800; margin-bottom: 10px; }
.signup-success p { font-size: 16px; color: var(--gray); line-height: 1.6; }

/* ── FOOTER ─────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border); padding: 36px 24px;
  display: flex; flex-wrap: wrap; gap: 12px;
  justify-content: space-between; align-items: center;
}
.footer__brand { display: flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 700; }
.footer__brand img { width: 28px; height: 28px; border-radius: 6px; object-fit: contain; }
.footer__url { font-size: 14px; color: var(--gray2); font-weight: 400; }
.footer__copy { font-size: 13px; color: var(--gray2); }

/* ── ANIMATIONS ─────────────────────────────────────────── */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgba(123,110,232,0.6); }
  100% { box-shadow: 0 0 0 6px rgba(123,110,232,0); }
}

/* ── RESPONSIVE UTILITIES ───────────────────────────────── */
@media (min-width: 1024px) {
  .section-pad { padding: 120px 0; }
  #nav { padding: 0 48px; height: 68px; }
  .container { padding: 0 48px; }
}

@media (max-width: 640px) {
  .hero__title { letter-spacing: -2px; }
  .hero__actions { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 320px; }
  .compare-card { padding: 18px; }
  .savings-badge { top: -12px; right: 0; font-size: 12px; padding: 8px 14px; }
  .footer { flex-direction: column; text-align: center; gap: 8px; }
}
