/* ============================================================
   AdThorn — Design Tokens
   Extracted from the live brand (adthorn.com + logo mark)
   ============================================================ */
:root {
  --bg: #0a0f0a;
  --bg-elevated: #0f150e;
  --bg-card: #131a11;
  --border: #2c352a;
  --border-hover: #4a5c44;
  --fg: #f5f5f5;
  --fg-muted: #a3ada0;
  --fg-dim: #818c7e;

  --primary: #aaff00;
  --primary-dim: #86cc00;
  --secondary: #2bff00;

  --radius: 0.5rem;
  --radius-lg: 1rem;
  --radius-full: 999px;

  --font-heading: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --container: 1200px;
  --space-section: clamp(4rem, 8vw, 8rem);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ============================================================
   Reset
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

/* Subtle grain for tactile depth — sits above everything, never intercepts clicks */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
@media (prefers-reduced-motion: reduce) { body::after { opacity: 0.02; } }

/* Page-wide cursor spotlight — follows the mouse anywhere, not just over cards */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 700px;
  height: 700px;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(circle, rgba(170, 255, 0, 0.09), transparent 60%);
  /* transform, not a viewport-sized background-position change, so moving the spotlight only re-composites a small layer instead of repainting the full page every frame */
  transform: translate3d(calc(var(--sx, 50vw) - 350px), calc(var(--sy, 50vh) - 350px), 0);
  transition: opacity 400ms var(--ease);
  will-change: transform;
}
html.spotlight-active body::before { opacity: 1; }
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 700; line-height: 1.1; margin: 0; letter-spacing: -0.01em; }
p { margin: 0; }
button { font: inherit; cursor: pointer; }
input, textarea, select { font: inherit; }

:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ============================================================
   Layout
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 768px) { .container { padding: 0 2.5rem; } }

section { padding: var(--space-section) 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 12px var(--primary);
  animation: eyebrow-pulse 2.2s ease-in-out infinite;
}
@keyframes eyebrow-pulse {
  0%, 100% { box-shadow: 0 0 6px var(--primary); opacity: 1; }
  50% { box-shadow: 0 0 16px var(--primary); opacity: 0.55; }
}
@media (prefers-reduced-motion: reduce) { .eyebrow::before { animation: none; } }

.section-head { max-width: 640px; margin-bottom: 3rem; }
.section-head h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
.section-head p { color: var(--fg-muted); margin-top: 1rem; font-size: 1.0625rem; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.9375rem;
  border: 1px solid transparent;
  transition: transform 200ms var(--ease), background 200ms var(--ease), border-color 200ms var(--ease), box-shadow 200ms var(--ease);
  white-space: nowrap;
}
.btn-primary { background: var(--primary); color: #0a0f0a; overflow: hidden; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px -4px rgba(170, 255, 0, 0.45); }
.btn-primary:active { transform: translateY(0) scale(0.97); }
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0; left: -60%;
  width: 40%; height: 100%;
  background: linear-gradient(115deg, transparent, rgba(255,255,255,0.55), transparent);
  transform: skewX(-20deg);
  transition: left 600ms ease;
}
.btn-primary:hover::after { left: 130%; }
.btn-ghost { background: transparent; color: var(--fg); border-color: var(--border); }
.btn-ghost:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-2px); }
.btn-block { width: 100%; }

/* ============================================================
   Header / Nav
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  transition: padding 250ms var(--ease), background 250ms var(--ease), border-color 250ms var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  padding: 0.75rem 0;
  background: rgba(10, 15, 10, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--border);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }

.brand { display: flex; align-items: center; gap: 0.625rem; }
.brand-mark { width: 36px; height: 36px; flex-shrink: 0; }
.brand-word { font-family: var(--font-heading); font-weight: 700; font-size: 1.125rem; letter-spacing: -0.01em; }

.nav-links { display: none; align-items: center; gap: 2.25rem; }
.nav-links a { position: relative; font-size: 0.9375rem; font-weight: 500; color: var(--fg-muted); transition: color 200ms var(--ease); }
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%; bottom: -6px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: right 280ms var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--fg); }
.nav-links a:hover::after, .nav-links a.active::after { right: 0; }
@media (min-width: 900px) { .nav-links { display: flex; } }

.nav-cta { display: none; }
@media (min-width: 900px) { .nav-cta { display: inline-flex; } }

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
@media (min-width: 900px) { .nav-toggle { display: none; } }
.nav-toggle .bar {
  width: 18px;
  height: 2px;
  background: var(--fg);
  border-radius: 2px;
  transition: transform 250ms var(--ease), opacity 200ms var(--ease);
}
.nav-toggle.is-active .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-active .bar:nth-child(2) { opacity: 0; }
.nav-toggle.is-active .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--bg);
  padding: 6rem 1.5rem 2rem;
  transform: translateY(-100%);
  transition: transform 350ms var(--ease);
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a { font-family: var(--font-heading); font-size: 1.75rem; font-weight: 600; }
@media (min-width: 900px) { .mobile-menu { display: none; } }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  padding-top: clamp(8rem, 16vw, 11rem);
  padding-bottom: 5rem;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  top: -20%;
  left: 50%;
  width: min(900px, 140vw);
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(170, 255, 0, 0.16), transparent 65%);
  pointer-events: none;
  z-index: 0;
  animation: drift-a 16s ease-in-out infinite;
}
.hero-glow::after {
  content: '';
  position: absolute;
  top: 40%;
  right: -10%;
  width: 45%;
  height: 70%;
  background: radial-gradient(circle, rgba(43, 255, 0, 0.14), transparent 70%);
  animation: drift-b 12s ease-in-out infinite;
}
@keyframes drift-a {
  0%, 100% { transform: translateX(-50%) translateY(0) scale(1); }
  50% { transform: translateX(-53%) translateY(3%) scale(1.06); }
}
@keyframes drift-b {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-6%, -8%) scale(1.12); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-glow, .hero-glow::after { animation: none; }
}
.hero .container { position: relative; z-index: 1; }
.hero-content { max-width: 780px; }
.hero h1 {
  font-size: clamp(2.5rem, 6.4vw, 4.75rem);
  overflow: hidden;
}
.hero h1 .word { display: inline-block; overflow: hidden; }
.hero h1 .word span { display: inline-block; }
.hero h1 .accent { color: var(--primary); }
.hero-sub {
  margin-top: 1.5rem;
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  color: var(--fg-muted);
  max-width: 560px;
}
.hero-actions { margin-top: 2.25rem; display: flex; flex-wrap: wrap; gap: 1rem; }

.hero-visual {
  margin-top: 4rem;
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: linear-gradient(160deg, var(--bg-card), var(--bg-elevated));
  overflow: hidden;
  aspect-ratio: 16/7;
}
.hero-visual .grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(170,255,0,0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(170,255,0,0.06) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse at 50% 40%, black 40%, transparent 80%);
}
.hero-visual-bolt {
  position: absolute;
  right: 6%;
  top: 50%;
  width: clamp(80px, 16vw, 160px);
  opacity: 0.9;
  animation: bolt-float 5s ease-in-out infinite;
  /* static glow computed once; the animation itself only touches transform (compositor-only, no repaint) */
  filter: drop-shadow(0 0 12px rgba(170,255,0,0.35));
}
@keyframes bolt-float {
  0%, 100% { transform: translateY(-50%); }
  50% { transform: translateY(-56%); }
}
@media (prefers-reduced-motion: reduce) { .hero-visual-bolt { animation: none; transform: translateY(-50%); } }

/* ============================================================
   Stats strip
   ============================================================ */
.stats-strip { position: relative; overflow: hidden; padding: 3rem 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stats-strip::before {
  content: '';
  position: absolute;
  top: -60%;
  left: 30%;
  width: 500px;
  height: 300px;
  background: radial-gradient(ellipse at center, rgba(43, 255, 0, 0.09), transparent 70%);
  pointer-events: none;
  z-index: 0;
  animation: drift-c 18s ease-in-out infinite;
}
.stats-strip .stats-grid { position: relative; z-index: 1; }
@media (prefers-reduced-motion: reduce) { .stats-strip::before { animation: none; } }
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem 1rem; text-align: center; }
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-num { font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 2.75rem); font-weight: 700; color: var(--primary); }
.stat-num span { display: inline-block; }
.stat-label { margin-top: 0.375rem; font-size: 0.875rem; color: var(--fg-muted); }

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

.card {
  position: relative;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: border-color 250ms var(--ease), transform 250ms var(--ease), box-shadow 250ms var(--ease);
}
.card:hover { border-color: var(--border-hover); transform: translateY(-4px); box-shadow: 0 16px 40px -12px rgba(0,0,0,0.5); }
.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 280px;
  height: 280px;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(circle, rgba(170, 255, 0, 0.16), transparent 70%);
  opacity: 0;
  /* transform (not background-position) so the browser only has to re-composite this layer, not repaint it, on every pointer-move frame */
  transform: translate3d(calc(var(--mx, 140px) - 140px), calc(var(--my, 140px) - 140px), 0);
  transition: opacity 350ms var(--ease);
  will-change: transform;
}
.card:hover::before { opacity: 1; }
.card > * { position: relative; z-index: 1; }
.card-icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(170,255,0,0.1);
  border-radius: var(--radius);
  color: var(--primary);
  margin-bottom: 1.5rem;
  transition: background 300ms var(--ease);
  animation: icon-idle 4.5s ease-in-out infinite;
  animation-delay: var(--idle-delay, 0s);
}
.card:hover .card-icon { background: rgba(170,255,0,0.18); animation-play-state: paused; transform: scale(1.08) rotate(-4deg); }
@keyframes icon-idle {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-5px) rotate(-3deg); }
}
@media (prefers-reduced-motion: reduce) { .card-icon { animation: none; } }
.card-icon svg { width: 24px; height: 24px; }
.card h3 { font-size: 1.375rem; margin-bottom: 0.75rem; }
.card p { color: var(--fg-muted); font-size: 0.9375rem; }
.card ul { margin-top: 1.25rem; display: flex; flex-direction: column; gap: 0.625rem; }
.card ul li { display: flex; align-items: center; gap: 0.625rem; font-size: 0.875rem; color: var(--fg-muted); }
.card ul li svg { width: 16px; height: 16px; color: var(--primary); flex-shrink: 0; }
.card .btn { margin-top: 1.5rem; }

.process-grid { position: relative; }
.process-grid::before {
  content: '';
  position: absolute;
  left: 0; right: 0; top: 1.25rem;
  height: 1px;
  background: var(--border);
  display: none;
}
.process-grid .connector-line {
  position: absolute;
  left: 0; top: 1.25rem;
  height: 1px;
  width: 0;
  background: var(--primary);
  box-shadow: 0 0 8px rgba(170,255,0,0.6);
  display: none;
}
@media (min-width: 768px) {
  .process-grid::before, .process-grid .connector-line { display: block; }
}
.process-step { position: relative; padding-left: 3.5rem; }
.process-step .step-num {
  position: absolute;
  z-index: 1;
  left: 0; top: 0;
  width: 2.5rem; height: 2.5rem;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-weight: 700; color: var(--primary);
  background: var(--bg);
  font-size: 0.9375rem;
}
.process-step h3 { font-size: 1.125rem; margin-bottom: 0.5rem; }
.process-step p { color: var(--fg-muted); font-size: 0.9375rem; }

/* ============================================================
   CTA band
   ============================================================ */
.cta-band {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: linear-gradient(135deg, var(--bg-card), var(--bg-elevated));
  padding: clamp(2.5rem, 6vw, 4.5rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(170,255,0,0.14), transparent 70%);
  top: -200px; right: -150px;
  pointer-events: none;
  animation: drift-b 13s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) { .cta-band::before { animation: none; } }
.cta-band h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); position: relative; }
.cta-band p { margin-top: 1rem; color: var(--fg-muted); max-width: 480px; margin-left: auto; margin-right: auto; position: relative; }
.cta-band .btn { margin-top: 2rem; position: relative; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { position: relative; overflow: hidden; padding: 4rem 0 2rem; border-top: 1px solid var(--border); }
.site-footer::before {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -10%;
  width: 480px;
  height: 400px;
  background: radial-gradient(ellipse at center, rgba(170, 255, 0, 0.08), transparent 70%);
  pointer-events: none;
  z-index: 0;
  animation: drift-b 20s ease-in-out infinite;
}
.site-footer .container { position: relative; z-index: 1; }
@media (prefers-reduced-motion: reduce) { .site-footer::before { animation: none; } }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-brand p { margin-top: 1rem; color: var(--fg-muted); font-size: 0.9375rem; max-width: 320px; }
.footer-col h4 { font-size: 0.8125rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--fg-dim); margin-bottom: 1.25rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.875rem; }
.footer-col a { color: var(--fg-muted); font-size: 0.9375rem; transition: color 200ms var(--ease); }
.footer-col a:hover { color: var(--primary); }
.footer-bottom { margin-top: 3.5rem; padding-top: 2rem; border-top: 1px solid var(--border); display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; color: var(--fg-dim); font-size: 0.8125rem; }
.social-row { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.social-row a { width: 36px; height: 36px; border: 1px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all 200ms var(--ease); }
.social-row a:hover { border-color: var(--primary); color: var(--primary); }
.social-row svg { width: 16px; height: 16px; }

/* ============================================================
   Forms (Contact)
   ============================================================ */
.form-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 640px) { .form-grid.cols-2 { grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; gap: 0.5rem; min-width: 0; }
.field input, .field textarea, .field select { width: 100%; min-width: 0; }
.field label { font-size: 0.875rem; font-weight: 500; color: var(--fg-muted); }
.field input, .field textarea, .field select {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.875rem 1rem;
  color: var(--fg);
  transition: border-color 200ms var(--ease), box-shadow 200ms var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(170,255,0,0.15);
}
.field textarea { resize: vertical; min-height: 140px; }
.field-error { font-size: 0.8125rem; color: #ff6b6b; min-height: 1em; }
.form-note { font-size: 0.8125rem; color: var(--fg-dim); margin-top: 0.75rem; }

.contact-info-card { display: flex; flex-direction: column; gap: 1.75rem; }
.contact-info-card:hover .card-icon { transform: none; background: rgba(170,255,0,0.1); }
.contact-info-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-info-item .card-icon { margin-bottom: 0; flex-shrink: 0; }
.contact-info-item:hover .card-icon { transform: scale(1.1) rotate(-4deg); background: rgba(170,255,0,0.18); }
.contact-info-item h4 { font-size: 0.9375rem; margin-bottom: 0.25rem; }
.contact-info-item p, .contact-info-item a { color: var(--fg-muted); font-size: 0.9375rem; }
.contact-info-item a:hover { color: var(--primary); }

/* ============================================================
   Page hero (interior pages)
   ============================================================ */
.page-hero { position: relative; overflow: hidden; padding-top: clamp(8rem, 14vw, 10rem); padding-bottom: 3rem; }
.page-hero::before {
  content: '';
  position: absolute;
  top: -35%;
  left: 5%;
  width: min(560px, 90vw);
  height: 420px;
  background: radial-gradient(ellipse at center, rgba(170, 255, 0, 0.14), transparent 68%);
  pointer-events: none;
  z-index: 0;
  animation: drift-c 16s ease-in-out infinite;
}
@keyframes drift-c {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(4%, 5%) scale(1.08); }
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); max-width: 700px; }
.page-hero p { margin-top: 1.25rem; color: var(--fg-muted); font-size: 1.125rem; max-width: 560px; }
@media (prefers-reduced-motion: reduce) { .page-hero::before { animation: none; } }

.breadcrumb { display: flex; align-items: center; gap: 0.5rem; font-size: 0.8125rem; color: var(--fg-dim); margin-bottom: 1.5rem; }
.breadcrumb a { position: relative; transition: color 200ms var(--ease); }
.breadcrumb a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%; bottom: -2px;
  height: 1px;
  background: var(--primary);
  transition: right 220ms var(--ease);
}
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb a:hover::after { right: 0; }

/* ============================================================
   Ghost numerals (services.html section breaks)
   ============================================================ */
#website, #marketing { position: relative; overflow: hidden; }
.ghost-num {
  position: absolute;
  top: -2rem;
  right: 2%;
  font-family: var(--font-heading);
  font-size: clamp(6rem, 18vw, 13rem);
  font-weight: 700;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(170, 255, 0, 0.14);
  z-index: -1;
  pointer-events: none;
  user-select: none;
}

/* ============================================================
   Reveal / scroll animation base states
   ============================================================ */
.reveal { opacity: 0; }
.no-js .reveal { opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ============================================================
   Marquee (logos / trust strip)
   ============================================================ */
.marquee { overflow: hidden; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 2rem 0; }
.marquee-track { display: flex; gap: 4rem; width: max-content; animation: marquee 28s linear infinite; }
.marquee-track span { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 600; color: var(--fg-dim); white-space: nowrap; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* ============================================================
   Utility
   ============================================================ */
.text-center { text-align: center; }
.mt-lg { margin-top: 3rem; }
.divider { height: 1px; background: var(--border); border: none; margin: 0; }
