/* ═══════════════════════════════════════════════
   ATLAS — Style Sheet
   Print-quality typography · Magazine layout · Glossy
   ═══════════════════════════════════════════════ */

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

:root {
  --ink:       #0a0a0f;
  --ink-2:     #1a1a2e;
  --ink-3:     #2d2d4a;
  --paper:     #f7f5f0;
  --cream:     #faf8f4;
  --gold:      #c9a84c;
  --gold-lt:   #e8d08a;
  --accent:    #5b3cf5;
  --accent-lt: #8b6ff8;
  --blue:      #3b82f6;
  --green:     #22c55e;
  --red-soft:  #ef4444;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;
  --font-mono:  'JetBrains Mono', 'Courier New', monospace;

  --max-w: 1200px;
  --gutter: clamp(1.5rem, 5vw, 4rem);
  --section-gap: clamp(5rem, 10vw, 9rem);
}

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

body {
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── Typography scale ── */
h1, h2, h3 { font-family: var(--font-serif); line-height: 1.15; }
h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); font-weight: 900; }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2vw, 1.5rem); font-weight: 700; }

em { font-style: italic; color: var(--gold); }
strong { font-weight: 600; }
a { color: inherit; text-decoration: none; }

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

/* ═══ NAV ═══ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem var(--gutter);
  transition: background 0.35s ease, backdrop-filter 0.35s ease;
}
#nav.scrolled {
  background: rgba(10,10,15,0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}
.logo-mark {
  color: var(--gold);
  font-size: 1.4rem;
  line-height: 1;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  opacity: 0.7;
  transition: opacity 0.2s;
  letter-spacing: 0.02em;
}
.nav-links a:hover { opacity: 1; }
.nav-cta {
  margin-left: 1rem;
  padding: 0.55rem 1.25rem;
  background: var(--accent);
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
}
.nav-cta:hover { background: var(--accent-lt); transform: translateY(-1px); }

/* ═══ HERO ═══ */
#hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
#gl-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  padding-top: 6rem;
}
.hero-kicker {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}
.hero-headline {
  color: #fff;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.4s forwards;
  text-shadow: 0 2px 40px rgba(0,0,0,0.6);
}
.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  max-width: 600px;
  opacity: 0;
  color: rgba(247,245,240,0.8);
  margin-bottom: 2.5rem;
  animation: fadeUp 0.8s 0.6s forwards;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.8s forwards;
}
.btn-primary {
  display: inline-block;
  padding: 0.85rem 2rem;
  background: var(--accent);
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.01em;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 24px rgba(91,60,245,0.35);
}
.btn-primary:hover {
  background: var(--accent-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(91,60,245,0.5);
}
.btn-ghost {
  display: inline-block;
  padding: 0.85rem 2rem;
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 8px;
  font-weight: 500;
  font-size: 1rem;
  transition: border-color 0.2s, transform 0.15s;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.6); transform: translateY(-2px); }
.hero-badges {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 1s forwards;
}
.hero-badges span {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border: 1px solid rgba(201,168,76,0.35);
  border-radius: 100px;
  color: var(--gold-lt);
}
.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0.4;
  animation: pulse 2.5s ease-in-out infinite;
}

/* ═══ PULL QUOTE ═══ */
.pull-quote-band {
  background: var(--gold);
  padding: clamp(3rem, 6vw, 5rem) var(--gutter);
  text-align: center;
}
.pull-quote-band blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
  max-width: 780px;
  margin: 0 auto;
}
.pull-quote-band em { color: var(--ink-2); font-style: italic; }

/* ═══ SECTION SHARED ═══ */
.section-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.section-title {
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.section-intro {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: rgba(247,245,240,0.7);
  max-width: 680px;
  margin-bottom: 3.5rem;
  line-height: 1.75;
}

/* ═══ WHAT IT DOES ═══ */
.section-what {
  padding: var(--section-gap) 0;
  background: var(--ink-2);
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
}
.feature-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 2.5rem;
  transition: background 0.25s, transform 0.2s;
  position: relative;
  overflow: hidden;
}
.feature-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(91,60,245,0.08) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s;
}
.feature-card:hover { background: rgba(255,255,255,0.055); transform: translateY(-3px); }
.feature-card:hover::after { opacity: 1; }
.fc-large { grid-column: span 1; }
.fc-icon {
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 1.25rem;
  display: block;
}
.feature-card h3 {
  margin-bottom: 0.75rem;
  color: #fff;
  font-size: 1.15rem;
}
.feature-card p { font-size: 0.92rem; color: rgba(247,245,240,0.65); line-height: 1.7; }

/* ═══ MAGAZINE SPREAD ═══ */
.magazine-spread {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  background: var(--cream);
  color: var(--ink);
}
.spread-left {
  padding: clamp(4rem, 8vw, 8rem) clamp(3rem, 6vw, 6rem);
  border-right: 1px solid rgba(10,10,15,0.12);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.spread-right {
  padding: clamp(4rem, 8vw, 8rem) clamp(3rem, 6vw, 6rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2.5rem;
  background: #fff;
}
.spread-vol {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  border-top: 2px solid var(--ink);
  padding-top: 0.75rem;
}
.spread-headline {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}
.spread-drop-cap::first-letter {
  float: left;
  font-family: var(--font-serif);
  font-size: 5.5em;
  line-height: 0.72;
  padding-right: 0.12em;
  padding-top: 0.1em;
  color: var(--ink-3);
  font-weight: 900;
}
.spread-left p {
  font-size: 1rem;
  color: var(--ink-3);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.spread-left p em { color: var(--ink); font-style: italic; }
.spread-stat-block { display: flex; flex-direction: column; gap: 1.5rem; }
.stat { display: flex; align-items: baseline; gap: 1rem; padding-bottom: 1.25rem; border-bottom: 1px solid rgba(10,10,15,0.1); }
.stat:last-child { border-bottom: none; }
.stat-num {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 900;
  color: var(--ink);
  line-height: 1;
  white-space: nowrap;
}
.stat-num small { font-size: 0.5em; color: var(--gold); }
.stat-label { font-size: 0.88rem; color: var(--ink-3); line-height: 1.45; }
.chart-caption {
  font-size: 0.72rem;
  color: rgba(10,10,15,0.45);
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
  margin-top: 0.5rem;
}
.section-why .chart-caption,
.section-numbers .chart-caption { color: rgba(247,245,240,0.4); }

/* ═══ WHY IT MATTERS ═══ */
.section-why {
  padding: var(--section-gap) 0;
  background: var(--ink);
}
.why-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 4rem;
}
.why-prose p {
  font-size: 1.05rem;
  color: rgba(247,245,240,0.75);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.why-prose strong { color: #fff; }
.why-prose em { color: var(--gold); }
.why-chart-wrap { position: relative; }

/* Comparison table */
.comparison-table {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  overflow: hidden;
}
.ct-header, .ct-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  padding: 1rem 1.5rem;
  gap: 1rem;
  align-items: center;
  font-size: 0.9rem;
}
.ct-header {
  background: rgba(255,255,255,0.05);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(247,245,240,0.5);
}
.ct-row { border-top: 1px solid rgba(255,255,255,0.05); }
.ct-row:hover { background: rgba(255,255,255,0.025); }
.ct-row span:first-child { color: rgba(247,245,240,0.8); font-weight: 500; }
.no { color: rgba(247,245,240,0.25); }
.partial { color: rgba(201,168,76,0.6); font-size: 0.85rem; }
.yes { color: var(--green); font-weight: 600; }
.ct-atlas { color: var(--accent-lt) !important; }
.ct-header .ct-atlas { color: var(--accent-lt) !important; font-weight: 700; }

/* ═══ HOW IT WORKS ═══ */
.section-how {
  padding: var(--section-gap) 0;
  background: var(--ink-2);
}
.arch-grid {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-bottom: 5rem;
}
.arch-layer {
  flex: 1;
  padding: 2.5rem 2rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  position: relative;
}
.arch-layer h3 { color: #fff; margin-bottom: 0.75rem; }
.arch-layer p { font-size: 0.9rem; color: rgba(247,245,240,0.65); line-height: 1.7; }
.arch-num {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.arch-arrow {
  display: flex;
  align-items: center;
  padding: 0 0.4rem;
  font-size: 1.4rem;
  color: rgba(201,168,76,0.4);
  flex-shrink: 0;
}

/* Terminal */
.terminal-demo {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.08);
}
.term-bar {
  background: #1e1e2e;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.term-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  display: inline-block;
}
.term-dot.red    { background: #ff5f57; }
.term-dot.yellow { background: #febc2e; }
.term-dot.green  { background: #28c840; }
.term-title {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: rgba(247,245,240,0.3);
  letter-spacing: 0.05em;
}
.term-body {
  background: #0e0e1a;
  padding: 2rem 1.75rem;
  overflow-x: auto;
}
.term-body code {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  line-height: 1.85;
  color: rgba(247,245,240,0.85);
  white-space: pre;
}
.t-dim    { color: rgba(247,245,240,0.35); }
.t-green  { color: #4ade80; }
.t-yellow { color: #fbbf24; }
.t-blue   { color: #60a5fa; }
.t-user   { color: var(--accent-lt); font-weight: 600; }

/* ═══ NUMBERS ═══ */
.section-numbers {
  padding: var(--section-gap) 0;
  background: var(--ink);
}
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 4rem;
}
.number-card {
  background: rgba(10,10,15,0.9);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: background 0.25s;
}
.number-card:hover { background: rgba(91,60,245,0.08); }
.number-big {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 4vw, 4rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.03em;
}
.number-unit {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(247,245,240,0.5);
  margin-bottom: 0.75rem;
}
.number-desc { font-size: 0.82rem; color: rgba(247,245,240,0.45); line-height: 1.55; }
.numbers-chart-wrap { position: relative; }

/* ═══ TESTIMONIALS ═══ */
.section-testimonials {
  padding: var(--section-gap) 0;
  background: var(--ink-2);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 1.5rem;
  align-items: start;
}
.tcard {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 2rem;
}
.tcard-featured {
  background: rgba(91,60,245,0.12);
  border-color: rgba(91,60,245,0.3);
  padding: 2.5rem;
}
.tcard-quote {
  font-family: var(--font-serif);
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  line-height: 1.7;
  color: rgba(247,245,240,0.9);
  margin-bottom: 1.5rem;
}
.tcard-featured .tcard-quote { font-size: clamp(1.05rem, 1.6vw, 1.2rem); }
.tcard-byline { display: flex; align-items: center; gap: 1rem; }
.tcard-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
}
.tcard-featured .tcard-avatar { background: var(--gold); color: var(--ink); }
.tcard-byline strong { display: block; font-size: 0.9rem; color: #fff; }
.tcard-byline span { font-size: 0.78rem; color: rgba(247,245,240,0.45); }

/* ═══ ECOSYSTEM MARQUEE ═══ */
.section-ecosystem {
  padding: 3rem 0;
  background: var(--cream);
  overflow: hidden;
}
.eco-label {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(10,10,15,0.4);
  margin-bottom: 1.5rem;
}
.marquee-wrap { overflow: hidden; }
.marquee-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marquee 32s linear infinite;
}
.marquee-track span {
  padding: 0.65rem 2rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-3);
  border-right: 1px solid rgba(10,10,15,0.1);
  white-space: nowrap;
  letter-spacing: 0.04em;
}

/* ═══ PRICING ═══ */
.section-pricing {
  padding: var(--section-gap) 0;
  background: var(--ink);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}
.plan-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 2.5rem;
  position: relative;
  transition: transform 0.2s;
}
.plan-card:hover { transform: translateY(-4px); }
.plan-featured {
  background: rgba(91,60,245,0.1);
  border-color: rgba(91,60,245,0.4);
  box-shadow: 0 0 0 1px rgba(91,60,245,0.25), 0 24px 60px rgba(91,60,245,0.2);
}
.plan-badge {
  position: absolute;
  top: -1px; left: 50%; transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 0 0 8px 8px;
}
.plan-tier {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.plan-price {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.75rem;
  letter-spacing: -0.03em;
}
.plan-price small { font-size: 0.4em; color: rgba(247,245,240,0.45); }
.plan-desc { font-size: 0.88rem; color: rgba(247,245,240,0.55); margin-bottom: 2rem; line-height: 1.6; }
.plan-features { list-style: none; margin-bottom: 2.5rem; display: flex; flex-direction: column; gap: 0.65rem; }
.plan-features li {
  font-size: 0.88rem;
  color: rgba(247,245,240,0.75);
  padding-left: 1.4rem;
  position: relative;
}
.plan-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}
.plan-btn {
  display: block;
  text-align: center;
  padding: 0.85rem 1.5rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.2s;
}
.plan-btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 20px rgba(91,60,245,0.35);
}
.plan-btn-primary:hover { background: var(--accent-lt); transform: translateY(-1px); }
.plan-btn-ghost { border: 1.5px solid rgba(255,255,255,0.2); }
.plan-btn-ghost:hover { border-color: rgba(255,255,255,0.5); }

/* ═══ CTA ═══ */
.section-cta {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}
#cta-canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
}
.cta-content {
  position: relative;
  z-index: 2;
  padding: 0 var(--gutter);
  max-width: 700px;
}
.cta-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 30px rgba(0,0,0,0.5);
}
.cta-sub { font-size: 1.1rem; color: rgba(247,245,240,0.75); margin-bottom: 2.5rem; line-height: 1.7; }
.cta-form {
  display: flex;
  gap: 0.75rem;
  max-width: 480px;
  margin: 0 auto 1rem;
}
.cta-form input {
  flex: 1;
  padding: 0.85rem 1.25rem;
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  color: #fff;
  font-size: 0.95rem;
  font-family: var(--font-sans);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.cta-form input::placeholder { color: rgba(247,245,240,0.4); }
.cta-form input:focus {
  border-color: var(--accent-lt);
  background: rgba(255,255,255,0.14);
}
.cta-form button {
  padding: 0.85rem 1.75rem;
  background: var(--gold);
  color: var(--ink);
  border: none;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
  font-family: var(--font-sans);
}
.cta-form button:hover { background: var(--gold-lt); transform: translateY(-2px); }
.cta-fine { font-size: 0.78rem; color: rgba(247,245,240,0.35); }

/* ═══ FOOTER ═══ */
.site-footer {
  background: var(--ink-2);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 4rem var(--gutter) 2rem;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .logo-mark { font-size: 1.6rem; color: var(--gold); }
.footer-brand .logo-text { font-weight: 700; font-size: 1.1rem; }
.footer-brand p { font-size: 0.85rem; color: rgba(247,245,240,0.4); margin-top: 0.75rem; }
.footer-links { display: contents; }
.footer-col { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col strong {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(247,245,240,0.4);
  margin-bottom: 0.35rem;
}
.footer-col a { font-size: 0.88rem; color: rgba(247,245,240,0.65); transition: color 0.2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: rgba(247,245,240,0.3);
}

/* ═══ ANIMATIONS ═══ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { opacity: 0.4; transform: translateX(-50%) translateY(0); }
  50%       { opacity: 0.7; transform: translateX(-50%) translateY(6px); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Scroll-triggered fade-in */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1024px) {
  .feature-grid        { grid-template-columns: repeat(2, 1fr); }
  .numbers-grid        { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid        { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .testimonials-grid   { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
  .magazine-spread     { grid-template-columns: 1fr; min-height: auto; }
  .spread-right        { border-top: 1px solid rgba(10,10,15,0.12); }
  .footer-inner        { grid-template-columns: 1fr 1fr; }
  .arch-grid           { flex-direction: column; }
  .arch-arrow          { transform: rotate(90deg); align-self: center; padding: 0.2rem 0; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .feature-grid { grid-template-columns: 1fr; }
  .numbers-grid { grid-template-columns: 1fr 1fr; }
  .why-layout   { grid-template-columns: 1fr; }
  .comparison-table { overflow-x: auto; }
  .ct-header, .ct-row { grid-template-columns: 1.5fr 1fr 1fr 1.2fr; font-size: 0.78rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; align-items: center; }
  .cta-form { flex-direction: column; }
}
@media (max-width: 480px) {
  .numbers-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
}
