/* ============================================
   SPAC.TACULAR — Global Stylesheet
   ============================================ */

/* --- Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Space+Grotesk:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

/* --- Reset & Variables --- */
:root {
  --purple: #5B21B6;
  --deep-purple: #3B0764;
  --teal: #0D9488;
  --coral: #F97316;
  --gold: #FBBF24;
  --dark: #1E1B4B;
  --near-black: #0F0A2A;
  --light: #FAFAF9;
  --off-white: #F5F3FF;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-800: #1F2937;
  --white: #FFFFFF;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --max-w: 1200px;
  --nav-h: 80px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); line-height: 1.2; font-weight: 700; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }

/* --- Utility --- */
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.text-purple { color: var(--purple); }
.text-teal { color: var(--teal); }
.text-coral { color: var(--coral); }
.text-gold { color: var(--gold); }
.text-gray { color: var(--gray-500); }
.bg-dark { background: var(--dark); color: var(--white); }
.bg-light { background: var(--light); }
.bg-off-white { background: var(--off-white); }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gray-200);
  transition: var(--transition);
}
.nav.scrolled {
  background: rgba(255,255,255,0.98);
  box-shadow: 0 4px 30px rgba(0,0,0,0.08);
}
.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
}
.nav__logo .spac { color: var(--purple); }
.nav__logo .dot { color: var(--coral); font-size: 1.8rem; line-height: 1; }
.nav__logo .tacular { color: var(--teal); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav__links a {
  padding: 0.5rem 0.9rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-600);
  border-radius: 8px;
  transition: var(--transition);
  white-space: nowrap;
}
.nav__links a:hover, .nav__links a.active {
  color: var(--purple);
  background: var(--off-white);
}
.nav__cta {
  margin-left: 0.75rem;
  padding: 0.6rem 1.4rem !important;
  background: var(--purple) !important;
  color: var(--white) !important;
  border-radius: 10px !important;
  font-weight: 600 !important;
  transition: var(--transition);
}
.nav__cta:hover {
  background: var(--deep-purple) !important;
  transform: translateY(-1px);
}

/* Mobile nav */
.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 32px;
  position: relative;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  position: absolute;
  left: 4px;
  transition: var(--transition);
}
.nav__toggle span:nth-child(1) { top: 8px; }
.nav__toggle span:nth-child(2) { top: 15px; }
.nav__toggle span:nth-child(3) { top: 22px; }

@media (max-width: 960px) {
  .nav__toggle { display: block; }
  .nav__links {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--gray-200);
    transform: translateY(-120%);
    transition: var(--transition);
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  }
  .nav__links.open { transform: translateY(0); }
  .nav__links a { padding: 0.75rem 1rem; width: 100%; }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
  background: linear-gradient(135deg, var(--near-black) 0%, var(--dark) 40%, var(--deep-purple) 100%);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 600px 600px at 20% 50%, rgba(91,33,182,0.2) 0%, transparent 70%),
    radial-gradient(ellipse 400px 400px at 80% 30%, rgba(13,148,136,0.15) 0%, transparent 70%),
    radial-gradient(ellipse 300px 300px at 60% 80%, rgba(249,115,22,0.1) 0%, transparent 70%);
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}
.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s ease both;
}
.hero__tag::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--coral);
  border-radius: 50%;
}
.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease 0.15s both;
}
.hero h1 .highlight-teal { color: var(--teal); }
.hero h1 .highlight-coral { color: var(--coral); }
.hero h1 .highlight-gold { color: var(--gold); }
.hero__sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.6);
  max-width: 600px;
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.8s ease 0.3s both;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.45s both;
}

/* Floating grid pattern */
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridDrift 20s linear infinite;
}

@keyframes gridDrift {
  0% { transform: translate(0, 0); }
  100% { transform: translate(60px, 60px); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: var(--coral);
  color: var(--white);
}
.btn--primary:hover {
  background: #EA6C10;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(249,115,22,0.3);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.25);
}
.btn--outline:hover {
  border-color: var(--teal);
  color: var(--teal);
}
.btn--dark {
  background: var(--dark);
  color: var(--white);
}
.btn--dark:hover {
  background: var(--near-black);
  transform: translateY(-2px);
}
.btn--teal {
  background: var(--teal);
  color: var(--white);
}
.btn--teal:hover {
  background: #0B8277;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(13,148,136,0.3);
}
.btn--ghost {
  background: transparent;
  color: var(--purple);
  border: 1.5px solid var(--gray-200);
}
.btn--ghost:hover {
  border-color: var(--purple);
  background: var(--off-white);
}

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 3rem 0;
}
.stats-bar__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat__number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--purple);
  letter-spacing: -0.02em;
}
.stat__number span { color: var(--coral); }
.stat__label {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-top: 0.25rem;
  font-weight: 500;
}
@media (max-width: 640px) {
  .stats-bar__inner { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: 6rem 0;
}
.section--lg { padding: 8rem 0; }
.section__header {
  max-width: 680px;
  margin-bottom: 4rem;
}
.section__header.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1rem;
}
.section__eyebrow::before {
  content: '';
  width: 24px; height: 2px;
  background: var(--coral);
}
.section__title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--dark);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.bg-dark .section__title { color: var(--white); }
.section__desc {
  font-size: 1.05rem;
  color: var(--gray-500);
  line-height: 1.8;
}
.bg-dark .section__desc { color: rgba(255,255,255,0.6); }

/* ============================================
   CARDS
   ============================================ */
.card-grid {
  display: grid;
  gap: 1.5rem;
}
.card-grid--2 { grid-template-columns: repeat(2, 1fr); }
.card-grid--3 { grid-template-columns: repeat(3, 1fr); }
.card-grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 768px) {
  .card-grid--2, .card-grid--3, .card-grid--4 {
    grid-template-columns: 1fr;
  }
}

.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.card:hover {
  border-color: var(--gray-300);
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
  transform: translateY(-4px);
}
.card__icon {
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}
.card__icon--purple { background: var(--off-white); color: var(--purple); }
.card__icon--teal { background: #ECFDF5; color: var(--teal); }
.card__icon--coral { background: #FFF7ED; color: var(--coral); }
.card__icon--gold { background: #FFFBEB; color: var(--gold); }
.card__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}
.card__text {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.7;
}
.card__number {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gray-100);
  line-height: 1;
}

/* Dark card variant */
.card--dark {
  background: var(--dark);
  border-color: rgba(255,255,255,0.08);
}
.card--dark:hover {
  border-color: rgba(255,255,255,0.15);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.card--dark .card__title { color: var(--white); }
.card--dark .card__text { color: rgba(255,255,255,0.6); }

/* Accent border top */
.card--accent-purple { border-top: 3px solid var(--purple); }
.card--accent-teal { border-top: 3px solid var(--teal); }
.card--accent-coral { border-top: 3px solid var(--coral); }
.card--accent-gold { border-top: 3px solid var(--gold); }

/* ============================================
   TIMELINE
   ============================================ */
.timeline {
  position: relative;
  padding-left: 3rem;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--purple), var(--teal), var(--coral));
}
.timeline__item {
  position: relative;
  padding-bottom: 3rem;
}
.timeline__item:last-child { padding-bottom: 0; }
.timeline__item::before {
  content: '';
  position: absolute;
  left: -3rem;
  top: 0.4rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--purple);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--purple);
}
.timeline__step {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal);
  margin-bottom: 0.25rem;
}
.timeline__title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}
.timeline__text {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ============================================
   COMPARISON TABLE
   ============================================ */
.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--gray-200);
}
.comparison-table thead th {
  background: var(--dark);
  color: var(--white);
  padding: 1.25rem 1.5rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  text-align: left;
}
.comparison-table thead th:first-child { border-radius: 16px 0 0 0; }
.comparison-table thead th:last-child { border-radius: 0 16px 0 0; }
.comparison-table thead th.highlight { background: var(--purple); }
.comparison-table tbody td {
  padding: 1rem 1.5rem;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--gray-100);
  color: var(--gray-600);
}
.comparison-table tbody tr:hover td { background: var(--off-white); }
.comparison-table tbody td:first-child {
  font-weight: 600;
  color: var(--dark);
}
.comparison-table .check { color: var(--teal); font-weight: 700; }
.comparison-table .cross { color: var(--coral); font-weight: 700; }

/* ============================================
   BIO / TEAM
   ============================================ */
.bio-card {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 3rem;
  align-items: start;
}
.bio-card__photo {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--purple), var(--teal));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
}
.bio-card__name {
  font-size: 2rem;
  color: var(--dark);
  margin-bottom: 0.25rem;
}
.bio-card__role {
  font-size: 1rem;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.bio-card__text {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.9;
  margin-bottom: 1.5rem;
}
.bio-card__credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.credential-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.9rem;
  background: var(--off-white);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--purple);
}
@media (max-width: 768px) {
  .bio-card { grid-template-columns: 1fr; }
  .bio-card__photo { max-width: 250px; }
}

/* ============================================
   PAGE HEADER (inner pages)
   ============================================ */
.page-header {
  padding: calc(var(--nav-h) + 4rem) 0 4rem;
  background: linear-gradient(135deg, var(--near-black), var(--dark));
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 500px 500px at 30% 60%, rgba(91,33,182,0.15) 0%, transparent 70%),
    radial-gradient(ellipse 300px 300px at 70% 40%, rgba(13,148,136,0.1) 0%, transparent 70%);
}
.page-header__content {
  position: relative;
  z-index: 2;
}
.page-header h1 {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}
.page-header p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.55);
  max-width: 600px;
  line-height: 1.8;
}
.page-header .breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1.5rem;
}
.page-header .breadcrumb a { color: rgba(255,255,255,0.5); }
.page-header .breadcrumb a:hover { color: var(--teal); }

/* ============================================
   PROS/CONS
   ============================================ */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
@media (max-width: 768px) { .pros-cons { grid-template-columns: 1fr; } }

.pros-list, .cons-list { list-style: none; }
.pros-list li, .cons-list li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
  font-size: 0.95rem;
  color: var(--gray-600);
  border-bottom: 1px solid var(--gray-100);
}
.pros-list li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 0.75rem;
  font-weight: 700;
  color: var(--teal);
}
.cons-list li::before {
  content: '✗';
  position: absolute;
  left: 0; top: 0.75rem;
  font-weight: 700;
  color: var(--coral);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--purple) 0%, var(--teal) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 400px 400px at 20% 80%, rgba(249,115,22,0.2) 0%, transparent 70%),
    radial-gradient(ellipse 300px 300px at 80% 20%, rgba(251,191,36,0.15) 0%, transparent 70%);
}
.cta-section h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: var(--white);
  margin-bottom: 1rem;
  position: relative;
}
.cta-section p {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  position: relative;
}
.cta-section .btn { position: relative; }

/* ============================================
   FORM
   ============================================ */
.form-group {
  margin-bottom: 1.5rem;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--gray-800);
  background: var(--white);
  transition: var(--transition);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(91,33,182,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--near-black);
  color: rgba(255,255,255,0.5);
  padding: 4rem 0 2rem;
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer__logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.footer__logo .spac { color: var(--white); }
.footer__logo .dot { color: var(--coral); }
.footer__logo .tacular { color: var(--gold); }
.footer__desc {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}
.footer__heading {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer__links a {
  display: block;
  font-size: 0.875rem;
  padding: 0.3rem 0;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}
.footer__links a:hover { color: var(--teal); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer__legal a {
  margin-left: 1.5rem;
  color: rgba(255,255,255,0.4);
}
.footer__legal a:hover { color: var(--teal); }

@media (max-width: 768px) {
  .footer__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer__inner { grid-template-columns: 1fr; }
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}
.legal-content h2 {
  font-size: 1.4rem;
  color: var(--dark);
  margin: 2.5rem 0 0.75rem;
}
.legal-content h3 {
  font-size: 1.1rem;
  color: var(--dark);
  margin: 2rem 0 0.5rem;
}
.legal-content p {
  font-size: 0.95rem;
  color: var(--gray-600);
  margin-bottom: 1rem;
  line-height: 1.8;
}
.legal-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.legal-content ul li {
  font-size: 0.95rem;
  color: var(--gray-600);
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered children */
.stagger > * { transition-delay: calc(var(--i, 0) * 0.1s); }

/* ============================================
   SCROLL REVEAL SECTIONS
   ============================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   DISCLAIMER BAR
   ============================================ */
.disclaimer {
  background: var(--gray-100);
  padding: 1rem 0;
  font-size: 0.75rem;
  color: var(--gray-500);
  text-align: center;
  line-height: 1.6;
}

/* ============================================
   MARQUEE
   ============================================ */
.marquee {
  overflow: hidden;
  padding: 1.5rem 0;
  background: var(--dark);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.marquee__track {
  display: flex;
  gap: 3rem;
  animation: marqueeScroll 30s linear infinite;
  white-space: nowrap;
}
.marquee__item {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.marquee__item::after {
  content: '◆';
  font-size: 0.5rem;
  color: var(--coral);
}
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   TWO COLUMN LAYOUT
   ============================================ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.two-col--reverse { direction: rtl; }
.two-col--reverse > * { direction: ltr; }
@media (max-width: 768px) {
  .two-col, .two-col--reverse { grid-template-columns: 1fr; direction: ltr; }
}

/* Feature list inside two-col */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.feature-item__icon {
  width: 40px; height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 1.1rem;
}
.feature-item__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.2rem;
}
.feature-item__text {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ============================================
   NUMBER HIGHLIGHT
   ============================================ */
.number-callout {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.number-callout__value {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--purple);
}
.number-callout__suffix {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--teal);
}

/* ============================================
   RESPONSIVE TWEAKS
   ============================================ */
@media (max-width: 480px) {
  .section { padding: 4rem 0; }
  .container { padding: 0 1.25rem; }
}
