/* =========================================================================
   MOROX.AI — single-page marketing site
   Aesthetic: technical brutalist, dark canvas, electric chartreuse accent
   ========================================================================= */

/* ---------- Tokens ---------- */
:root {
  /* color */
  --bg:        #0a0a0a;
  --bg-soft:   #0f0f0f;
  --surface:   #131313;
  --surface-2: #181818;
  --line:      #1f1f1f;
  --line-2:    #2a2a2a;
  --text:      #ececec;
  --text-dim:  #a8a8a8;
  --muted:     #6a6a6a;
  --accent:    #d4ff3d;          /* electric chartreuse */
  --accent-2:  #b6e000;
  --accent-dim:rgba(212, 255, 61, 0.08);
  --danger:    #ff5d5d;
  --success:   #6ee7b7;

  /* type */
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
  --font-sans: "Switzer", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* radius / shadow */
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 14px;
  --r-xl: 22px;

  /* layout */
  --container: 1240px;
  --pad-x: clamp(20px, 4vw, 40px);
  --header-h: 76px;

  /* easing */
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset / base ---------- */
*,*::before,*::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--text);
  background: var(--bg);
  font-feature-settings: "ss01","cv11";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img,svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
input,textarea { font: inherit; color: inherit; }
ul,ol { margin: 0; padding: 0; list-style: none; }

::selection { background: var(--accent); color: #000; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--accent); color: #000; padding: 10px 14px; font: 500 13px var(--font-mono);
}
.skip-link:focus { left: 12px; top: 12px; }

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

/* ---------- Layout helpers ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

.mono { font-family: var(--font-mono); letter-spacing: -0.01em; }
.small { font-size: 12px; }
.muted { color: var(--muted); }
.hl    { color: var(--accent); }

/* ---------- Wordmark ---------- */
.wordmark {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 28px;
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: baseline;
  gap: 0;
  color: var(--text);
}
.wordmark .wm-base { color: var(--text); }
.wordmark .wm-accent { color: var(--accent); }
.wordmark-lg { font-size: clamp(40px, 7vw, 72px); }

/* ---------- Buttons ---------- */
.btn {
  --pad-y: 13px; --pad-x-btn: 18px;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: var(--pad-y) var(--pad-x-btn);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: var(--r-md);
  border: 1px solid transparent;
  transition: transform 220ms var(--ease), background 220ms var(--ease), color 220ms var(--ease), border-color 220ms var(--ease);
  white-space: nowrap;
  user-select: none;
}
.btn-sm { --pad-y: 10px; --pad-x-btn: 16px; font-size: 13px; }
.btn-block { width: 100%; }

.btn-primary {
  background: var(--accent);
  color: #0a0a0a;
}
.btn-primary svg path { stroke: #0a0a0a; }
@media (hover: hover) {
  .btn-primary:hover { background: #fff; transform: translateY(-1px); }
}
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line-2);
}
@media (hover: hover) {
  .btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
}

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  border-bottom: 1px solid transparent;
  transition: background 250ms var(--ease), border-color 250ms var(--ease), backdrop-filter 250ms var(--ease);
}
.site-header.scrolled {
  background: rgba(10,10,10,0.72);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  backdrop-filter: saturate(180%) blur(14px);
  border-color: var(--line);
}
.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px var(--pad-x);
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  height: var(--header-h);
}
.primary-nav {
  display: flex; gap: 32px;
  font-family: var(--font-mono);
  font-size: 16px;
}
.primary-nav a {
  color: var(--text-dim);
  position: relative;
  transition: color 200ms var(--ease);
}
.primary-nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 1px;
  background: var(--accent); transform: scaleX(0); transform-origin: left;
  transition: transform 240ms var(--ease);
}
@media (hover: hover) {
  .primary-nav a:hover { color: var(--text); }
  .primary-nav a:hover::after { transform: scaleX(1); }
}

.nav-toggle {
  display: none;
  width: 38px; height: 38px;
  border: 1px solid var(--line-2);
  border-radius: var(--r-sm);
  position: relative;
}
.nav-toggle span {
  position: absolute; left: 9px; right: 9px; height: 1.5px; background: var(--text);
  transition: transform 250ms var(--ease), top 250ms var(--ease), opacity 200ms;
}
.nav-toggle span:nth-child(1) { top: 14px; }
.nav-toggle span:nth-child(2) { top: 22px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { top: 18px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { top: 18px; transform: rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px var(--pad-x) 20px;
  border-top: 1px solid var(--line);
  background: rgba(10,10,10,0.95);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  backdrop-filter: saturate(180%) blur(14px);
}
.mobile-nav a {
  font-family: var(--font-mono);
  font-size: 14px;
  padding: 14px 4px;
  border-bottom: 1px solid var(--line);
  color: var(--text-dim);
}
.mobile-nav a.btn { margin-top: 14px; border-bottom: 0; padding: 14px; justify-content: center; }
.mobile-nav.open { display: flex; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  padding: clamp(48px, 9vw, 110px) 0 0;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  flex-direction: column;
}
.hero-bg {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
}
.grid-overlay {
  position: absolute; inset: -1px;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 30% 30%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 30% 30%, #000 30%, transparent 75%);
}
.grid-overlay::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(1200px 600px at -10% -20%, rgba(212,255,61,0.10), transparent 60%),
    radial-gradient(900px 500px at 110% 10%, rgba(212,255,61,0.05), transparent 65%);
}
.noise {
  position: absolute; inset: 0;
  opacity: 0.04;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

.hero-inner { display: flex; flex-direction: column; gap: clamp(20px, 3vw, 36px); position: relative; }

.hero-meta {
  display: inline-flex; align-items: center; gap: 10px;
  align-self: flex-start;
  font-size: 12px; color: var(--text-dim);
  border: 1px solid var(--line-2);
  background: rgba(255,255,255,0.02);
  padding: 8px 12px;
  border-radius: 999px;
}
.hero-meta .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(212,255,61,0.15);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 4px rgba(212,255,61,0.15); }
  50%     { box-shadow: 0 0 0 8px rgba(212,255,61,0.04); }
}

.hero-headline {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: clamp(44px, 8.6vw, 124px);
  line-height: 0.96;
  letter-spacing: -0.035em;
  margin: 0;
  max-width: 16ch;
}
.hero-headline .caret {
  display: inline-block;
  color: var(--accent);
  font-family: var(--font-mono);
  font-weight: 400;
  margin-left: 4px;
  animation: blink 1.05s steps(1) infinite;
  transform: translateY(-0.05em);
}
@keyframes blink { 50% { opacity: 0; } }

.hero-sub {
  max-width: 60ch;
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--text-dim);
  margin: 0;
}

.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: clamp(20px, 3vw, 36px) 0 0;
  border-top: 1px solid var(--line);
  padding-top: clamp(20px, 3vw, 36px);
}
.hero-stats div {
  display: flex; flex-direction: column; gap: 6px;
}
.hero-stats dt {
  font-family: var(--font-mono);
  font-size: clamp(20px, 2.6vw, 30px);
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.02em;
}
.hero-stats dd {
  margin: 0;
  font-size: 13px;
  color: var(--text-dim);
  max-width: 28ch;
}

.hero-marquee {
  margin-top: auto;
  padding-top: clamp(28px, 5vw, 56px);
  border-block: 1px solid var(--line);
  overflow: hidden;
  padding: 14px 0;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--muted);
  mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
}
.marquee-track {
  display: inline-flex; gap: 28px;
  white-space: nowrap;
  animation: marquee 36s linear infinite;
  padding-left: 28px;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Section heads ---------- */
section { padding: clamp(72px, 9vw, 130px) 0; position: relative; }
.section-head {
  display: flex; flex-direction: column; gap: 14px;
  margin-bottom: clamp(40px, 5vw, 64px);
  max-width: 800px;
}
.section-head h2,
.about h2,
.voice-headline {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: clamp(34px, 5.5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 0;
}
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
}

/* ---------- Services ---------- */
.services { background: var(--bg); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.service-card {
  background: var(--surface);
  padding: clamp(24px, 2.4vw, 36px);
  display: flex; flex-direction: column; gap: 16px;
  position: relative;
  transition: background 260ms var(--ease);
  min-height: 260px;
}
.service-card header { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; }
.service-card .card-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.service-card h3 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: clamp(20px, 1.8vw, 24px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0;
}
.service-card p {
  margin: 0;
  color: var(--text-dim);
  font-size: 15px;
  flex: 1;
}
.card-tags {
  display: flex; flex-wrap: wrap; gap: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
}
.card-tags li {
  padding: 4px 8px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
}
.service-card::before {
  content: "";
  position: absolute; inset: 0;
  border-bottom: 2px solid transparent;
  pointer-events: none;
  transition: border-color 220ms var(--ease);
}
@media (hover: hover) {
  .service-card:hover { background: var(--surface-2); }
  .service-card:hover::before { border-bottom-color: var(--accent); }
  .service-card:hover h3 { color: var(--accent); }
}

/* ---------- Voice (flagship) ---------- */
.voice {
  background: linear-gradient(180deg, #0a0a0a 0%, #0d0d0d 100%);
  border-block: 1px solid var(--line);
  position: relative;
}
.voice::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(900px 500px at 80% 20%, rgba(212,255,61,0.07), transparent 60%);
  pointer-events: none;
}
.voice-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
  position: relative;
}
.voice-copy .eyebrow { display: inline-block; margin-bottom: 14px; }
.voice-headline { margin-bottom: 22px; }
.voice-lead {
  font-size: clamp(16px, 1.3vw, 18px);
  color: var(--text-dim);
  max-width: 52ch;
  margin: 0 0 28px;
}
.capability-list {
  display: flex; flex-direction: column; gap: 14px;
  margin-bottom: 32px;
}
.capability-list li {
  display: grid; grid-template-columns: 22px 1fr; gap: 12px;
  font-size: 15px;
  color: var(--text-dim);
}
.capability-list strong { color: var(--text); font-weight: 600; }
.capability-list .check {
  font-family: var(--font-mono);
  color: var(--accent);
  font-size: 14px;
  line-height: 1.5;
}

.voice-panel {
  background: #0e0e0e;
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 30px 80px -40px rgba(0,0,0,0.9), 0 0 0 1px rgba(212,255,61,0.04) inset;
  position: relative;
}
.vp-head {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  background: #0a0a0a;
}
.vp-dots { display: flex; gap: 6px; }
.vp-dots span { width: 10px; height: 10px; border-radius: 50%; background: var(--line-2); }
.vp-dots span:nth-child(1) { background: #3a3a3a; }
.vp-dots span:nth-child(2) { background: #2a2a2a; }
.vp-dots span:nth-child(3) { background: #2a2a2a; }
.vp-head .mono { color: var(--muted); }

.transcript {
  padding: 22px 22px 8px;
  display: flex; flex-direction: column; gap: 14px;
  font-size: 14px;
}
.transcript p { margin: 0; color: var(--text-dim); }
.transcript .role {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  padding: 2px 7px;
  border-radius: 4px;
  margin-right: 10px;
  vertical-align: 2px;
}
.transcript .role.agent  { background: rgba(212,255,61,0.12); color: var(--accent); }
.transcript .role.caller { background: rgba(255,255,255,0.06); color: var(--text-dim); }
.typing-dots { display: inline-flex; gap: 4px; vertical-align: middle; }
.typing-dots i {
  width: 6px; height: 6px; border-radius: 50%; background: var(--text-dim);
  animation: typing 1.2s ease-in-out infinite;
}
.typing-dots i:nth-child(2) { animation-delay: .15s; }
.typing-dots i:nth-child(3) { animation-delay: .30s; }
@keyframes typing { 0%,80%,100% { transform: translateY(0); opacity: .3; } 40% { transform: translateY(-3px); opacity: 1; } }

.audio-block {
  margin: 12px 22px 22px;
  padding: 16px;
  border: 1px dashed var(--line-2);
  border-radius: var(--r-md);
  display: flex; flex-direction: column; gap: 10px;
}
.audio-block figcaption { color: var(--text-dim); }
.audio-block audio { width: 100%; }

.vp-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  margin: 0;
}
.vp-stats div {
  padding: 18px 16px;
  border-right: 1px solid var(--line);
}
.vp-stats div:last-child { border-right: 0; }
.vp-stats dt {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}
.vp-stats dd { margin: 0; font-size: 12px; color: var(--text-dim); }

/* ---------- Process ---------- */
.process-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.process-list li {
  background: var(--surface);
  padding: clamp(28px, 3vw, 44px);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: start;
}
.step-num {
  font-family: var(--font-mono);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 600;
  color: transparent;
  -webkit-text-stroke: 1px var(--accent);
  letter-spacing: -0.04em;
  line-height: 0.9;
}
.process-list h3 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: clamp(20px, 1.8vw, 24px);
  letter-spacing: -0.02em;
  margin: 0 0 8px;
}
.process-list p { margin: 0; color: var(--text-dim); font-size: 15px; max-width: 48ch; }

/* ---------- Contact ---------- */
.contact { background: var(--bg-soft); border-block: 1px solid var(--line); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.contact-copy h2 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin: 14px 0 18px;
}
.contact-points {
  display: flex; flex-direction: column; gap: 10px;
  margin-top: 22px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-dim);
}
.contact-points li::before { content: "▸ "; color: var(--accent); }

.contact-form {
  background: var(--surface);
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
  padding: clamp(22px, 2.6vw, 36px);
  display: flex; flex-direction: column; gap: 18px;
  position: relative;
  overflow: hidden;
}
.contact-form::before {
  content: "";
  position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--accent);
  opacity: 0.6;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dim);
}
.field input,
.field textarea {
  background: #0a0a0a;
  border: 1px solid var(--line-2);
  border-radius: var(--r-md);
  padding: 13px 14px;
  font-size: 15px;
  color: var(--text);
  font-family: var(--font-sans);
  transition: border-color 200ms var(--ease), background 200ms var(--ease);
  resize: vertical;
}
.field textarea { min-height: 120px; line-height: 1.5; }
.field input::placeholder,
.field textarea::placeholder { color: var(--muted); }
.field input:focus,
.field textarea:focus {
  outline: 0;
  border-color: var(--accent);
  background: #0c0c0c;
}
.field input.invalid,
.field textarea.invalid { border-color: var(--danger); }

.form-status { margin: 0; font-family: var(--font-mono); font-size: 13px; min-height: 18px; }
.form-status.success { color: var(--success); }
.form-status.error   { color: var(--danger); }

.contact-form.is-submitting .btn-label::after {
  content: "…";
  animation: dots 1.2s steps(3) infinite;
}
@keyframes dots { 0% { content: "·"; } 33% { content: "··"; } 66% { content: "···"; } }

.contact-form.success-state .field,
.contact-form.success-state #cfSubmit,
.contact-form.success-state .form-status { display: none; }
.success-message {
  display: none;
  font-family: var(--font-sans);
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.4;
  color: var(--text);
  padding: 24px 6px;
}
.success-message .check-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--accent); color: #000;
  font-family: var(--font-mono); font-weight: 700;
  margin-bottom: 14px;
}
.contact-form.success-state .success-message { display: block; }

/* ---------- Testimonials ---------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.t-card {
  background: var(--surface);
  margin: 0;
  padding: clamp(26px, 2.4vw, 36px);
  display: flex; flex-direction: column; gap: 22px;
  min-height: 240px;
  transition: background 260ms var(--ease);
}
@media (hover: hover) { .t-card:hover { background: var(--surface-2); } }
.t-card blockquote {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.45;
  color: var(--text);
  letter-spacing: -0.005em;
}
.t-card blockquote::before {
  content: "“";
  font-family: var(--font-mono);
  color: var(--accent);
  font-size: 24px;
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}
.t-card figcaption {
  display: flex; flex-direction: column; gap: 2px;
  font-size: 14px;
  margin-top: auto;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.t-card figcaption strong { font-weight: 600; }

/* ---------- About ---------- */
.about { background: var(--bg); }
.about-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.1fr;
  gap: clamp(32px, 5vw, 80px);
}
.about h2 { margin: 14px 0 0; }
.about-copy p {
  margin: 0 0 18px;
  font-size: clamp(15px, 1.15vw, 17px);
  color: var(--text-dim);
  max-width: 60ch;
}
.about-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 28px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
}
.about-facts li {
  background: var(--surface);
  padding: 18px 16px;
  display: flex; flex-direction: column; gap: 6px;
}
.about-facts strong {
  font-family: var(--font-mono);
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
}

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--line);
  background: #070707;
  padding: clamp(48px, 6vw, 80px) 0 32px;
}
.footer-inner {
  display: flex; flex-direction: column; gap: 40px;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  border-block: 1px solid var(--line);
  padding-block: 32px;
}
.footer-cols > div {
  display: flex; flex-direction: column; gap: 8px;
  font-family: var(--font-mono);
  font-size: 13px;
}
.footer-cols a { color: var(--text-dim); }
@media (hover: hover) { .footer-cols a:hover { color: var(--accent); } }

.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}

/* ---------- Reveal animation ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
  will-change: opacity, transform;
}
[data-reveal].in {
  opacity: 1;
  transform: translateY(0);
}
.hero-inner > [data-reveal]:nth-child(1) { transition-delay: 60ms; }
.hero-inner > [data-reveal]:nth-child(2) { transition-delay: 140ms; }
.hero-inner > [data-reveal]:nth-child(3) { transition-delay: 220ms; }
.hero-inner > [data-reveal]:nth-child(4) { transition-delay: 280ms; }
.hero-inner > [data-reveal]:nth-child(5) { transition-delay: 340ms; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .primary-nav,
  .header-inner > .btn { display: none; }
  .nav-toggle { display: block; }

  .services-grid,
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .voice-grid,
  .contact-grid,
  .about-grid { grid-template-columns: 1fr; }
  .process-list { grid-template-columns: 1fr; }
  .vp-stats { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .services-grid,
  .testimonial-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr; gap: 18px; }
  .footer-cols,
  .about-facts { grid-template-columns: 1fr; }
  .about-facts li { padding: 14px 16px; }
  .hero-headline { font-size: clamp(40px, 12vw, 64px); }
  .vp-stats { grid-template-columns: 1fr 1fr; }
  .vp-stats div:nth-child(2) { border-right: 0; }
  .vp-stats div:nth-child(3) { grid-column: 1 / -1; border-top: 1px solid var(--line); }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .marquee-track { animation: none; }
  [data-reveal] { opacity: 1; transform: none; }
}
