/* ============================================================
   GROWTH PARTNERS — Design System
   Navy #0A2A52 · Orange #E8740F · Space Grotesk + Inter
   ============================================================ */

:root {
  --navy-950: #040B18;
  --navy-900: #071527;
  --navy-800: #0A2A52;
  --navy-700: #10386B;
  --navy-600: #1A4A85;
  --orange: #E8740F;
  --orange-bright: #FF8C1F;
  --orange-soft: rgba(232, 116, 15, 0.12);
  --cream: #F4F1EA;
  --white: #FFFFFF;
  --ink: #EAF0F8;
  --ink-dim: rgba(234, 240, 248, 0.62);
  --ink-faint: rgba(234, 240, 248, 0.38);
  --line: rgba(234, 240, 248, 0.10);
  --line-strong: rgba(234, 240, 248, 0.18);

  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);

  --gutter: clamp(1.25rem, 4vw, 4rem);
  --section-pad: clamp(5rem, 12vh, 10rem);
}

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

html {
  scroll-behavior: auto;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--navy-950);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection { background: var(--orange); color: var(--navy-950); }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; border: none; background: none; cursor: pointer; color: inherit; }
ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.02em;
}

/* ---------- Grain overlay ---------- */
.grain {
  position: fixed; inset: -50%;
  width: 200%; height: 200%;
  pointer-events: none;
  z-index: 9000;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 8s steps(10) infinite;
}
@keyframes grain {
  0%, 100% { transform: translate(0,0); }
  10% { transform: translate(-5%,-10%); }
  30% { transform: translate(3%,-15%); }
  50% { transform: translate(12%,9%); }
  70% { transform: translate(9%,4%); }
  90% { transform: translate(-1%,7%); }
}

/* ---------- Custom cursor ---------- */
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  border-radius: 50%;
  will-change: transform;
}
.cursor-dot {
  width: 8px; height: 8px;
  background: var(--orange);
  transform: translate(-50%, -50%);
}
.cursor-ring {
  width: 38px; height: 38px;
  border: 1.5px solid rgba(232, 116, 15, 0.55);
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease-out), height 0.3s var(--ease-out),
              border-color 0.3s, background-color 0.3s;
}
.cursor-ring.is-hover {
  width: 64px; height: 64px;
  background: rgba(232, 116, 15, 0.10);
  border-color: var(--orange);
}
.cursor-ring.is-hover-label {
  width: 88px; height: 88px;
  background: var(--orange);
  border-color: var(--orange);
}
.cursor-label {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--navy-950);
  opacity: 0; transition: opacity 0.2s;
}
.cursor-ring.is-hover-label .cursor-label { opacity: 1; }
@media (hover: none), (max-width: 820px) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* ---------- Preloader ---------- */
.preloader {
  position: fixed; inset: 0;
  background: var(--navy-950);
  z-index: 9500;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 1.5rem;
}
.preloader-mark {
  display: flex; align-items: baseline; gap: 0.6rem;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 600; letter-spacing: -0.02em;
  overflow: hidden;
}
.preloader-mark .tri { align-self: center; }
.preloader-count {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 6rem);
  font-weight: 300;
  color: var(--ink-faint);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.preloader-bar {
  position: absolute; bottom: 0; left: 0;
  height: 3px; width: 0%;
  background: var(--orange);
}

/* ---------- Logo / triangle mark ---------- */
.tri {
  display: inline-block;
  width: 0.55em; height: 0.55em;
  background: var(--orange);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  flex-shrink: 0;
}
.logo {
  display: flex; align-items: center; gap: 0.55rem;
  font-family: var(--font-display);
  font-weight: 600; font-size: 1.15rem;
  letter-spacing: -0.02em; line-height: 1;
  white-space: nowrap;
}
.logo .tri { width: 0.62em; height: 0.62em; transition: transform 0.4s var(--ease-out); }
.logo:hover .tri { transform: rotate(90deg) scale(1.15); }

/* ---------- Navigation ---------- */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 8000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem var(--gutter);
  transition: transform 0.5s var(--ease-out), background-color 0.4s, backdrop-filter 0.4s, padding 0.4s;
}
.site-nav.is-scrolled {
  background: rgba(4, 11, 24, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 0.9rem var(--gutter);
  border-bottom: 1px solid var(--line);
}
.site-nav.is-hidden { transform: translateY(-110%); }

.nav-links {
  display: flex; align-items: center; gap: 2.2rem;
}
.nav-link {
  position: relative;
  font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink-dim);
  transition: color 0.3s;
  padding: 0.3rem 0;
}
.nav-link::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 100%; height: 1.5px;
  background: var(--orange);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.4s var(--ease-out);
}
.nav-link:hover, .nav-link.is-active { color: var(--ink); }
.nav-link:hover::after, .nav-link.is-active::after {
  transform: scaleX(1); transform-origin: left;
}

.nav-cta { display: inline-flex; }

/* Burger */
.nav-burger {
  display: none;
  flex-direction: column; gap: 6px;
  padding: 0.5rem; z-index: 8600;
}
.nav-burger span {
  display: block; width: 26px; height: 2px;
  background: var(--ink);
  transition: transform 0.4s var(--ease-out), opacity 0.3s;
}
.nav-burger.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; }
.nav-burger.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0;
  background: var(--navy-900);
  z-index: 8500;
  display: flex; flex-direction: column; justify-content: center;
  padding: var(--gutter);
  clip-path: circle(0% at calc(100% - 3rem) 3rem);
  transition: clip-path 0.8s var(--ease-expo);
  visibility: hidden;
}
.mobile-menu.is-open {
  clip-path: circle(150% at calc(100% - 3rem) 3rem);
  visibility: visible;
}
.mobile-menu .nav-link {
  font-family: var(--font-display);
  font-size: clamp(2rem, 8vw, 3rem);
  font-weight: 600; color: var(--ink);
  padding: 0.6rem 0;
  display: block;
}
.mobile-menu .mobile-cta { margin-top: 2rem; }

@media (max-width: 900px) {
  .site-nav .nav-links, .site-nav .nav-cta, .site-nav .region-switch { display: none; }
  .nav-burger { display: flex; }
}

/* Region (NZ/AU) switcher */
.region-switch { display: inline-flex; border: 1px solid var(--line); border-radius: 100px; overflow: hidden; font-family: var(--font-display); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.08em; }
.region-switch a { padding: 0.35rem 0.75rem; color: var(--ink-faint); transition: background-color 0.3s, color 0.3s; }
.region-switch a:hover:not(.is-active) { color: var(--ink); }
.region-switch a.is-active { background: var(--orange); color: var(--navy-950); }
.mobile-menu .region-switch { margin-top: 1.5rem; align-self: flex-start; }

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex; align-items: center; gap: 0.7rem;
  font-family: var(--font-display);
  font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 1rem 1.9rem;
  border-radius: 100px;
  overflow: hidden;
  transition: color 0.4s var(--ease-out), border-color 0.4s;
  white-space: nowrap;
}
.btn .btn-fill {
  position: absolute; inset: 0;
  border-radius: 100px;
  transform: scaleY(0); transform-origin: bottom;
  transition: transform 0.5s var(--ease-expo);
  z-index: 0;
}
.btn > span:not(.btn-fill), .btn > svg { position: relative; z-index: 1; }
.btn svg { width: 14px; height: 14px; transition: transform 0.4s var(--ease-out); }
.btn:hover svg { transform: translateX(5px); }

.btn-primary {
  background: var(--orange);
  color: var(--navy-950);
}
.btn-primary .btn-fill { background: var(--ink); }
.btn-primary:hover .btn-fill { transform: scaleY(1); }

.btn-ghost {
  border: 1px solid var(--line-strong);
  color: var(--ink);
}
.btn-ghost .btn-fill { background: var(--orange); }
.btn-ghost:hover { color: var(--navy-950); border-color: var(--orange); }
.btn-ghost:hover .btn-fill { transform: scaleY(1); }

.btn-sm { padding: 0.72rem 1.4rem; font-size: 0.75rem; }

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.section { padding: var(--section-pad) 0; position: relative; }

.section-tag {
  display: inline-flex; align-items: center; gap: 0.7rem;
  font-family: var(--font-display);
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.6rem;
}
.section-tag::before {
  content: '';
  width: 2.2rem; height: 1.5px;
  background: var(--orange);
}

.h-display {
  font-size: clamp(2.6rem, 7vw, 5.5rem);
}
.h-xl { font-size: clamp(2.2rem, 5.5vw, 4.2rem); }
.h-lg { font-size: clamp(1.8rem, 4vw, 3rem); }
.h-md { font-size: clamp(1.3rem, 2.4vw, 1.8rem); }

.text-lead {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  line-height: 1.65;
  color: var(--ink-dim);
  max-width: 42em;
}
.text-dim { color: var(--ink-dim); }
.accent { color: var(--orange); }

.word-mask { display: inline-block; overflow: hidden; vertical-align: bottom; }
.word-mask > span { display: inline-block; will-change: transform; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  overflow: hidden;
  padding-top: 6rem;
}
#hero-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 0;
}
.hero-inner { position: relative; z-index: 2; }
.hero-kicker {
  display: flex; align-items: center; gap: 0.8rem;
  font-family: var(--font-display);
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 2rem;
}
.hero-kicker .pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--orange);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(232, 116, 15, 0.6); }
  70% { box-shadow: 0 0 0 12px rgba(232, 116, 15, 0); }
  100% { box-shadow: 0 0 0 0 rgba(232, 116, 15, 0); }
}
.hero-title {
  font-size: clamp(3rem, 9.2vw, 8rem);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin-bottom: 2.2rem;
}
.hero-title .outline {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(234, 240, 248, 0.75);
}
.hero-sub { margin-bottom: 2.8rem; }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-foot {
  position: absolute; bottom: 2rem; left: 0; right: 0;
  z-index: 2;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--gutter);
  font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-faint);
}
.scroll-hint { display: flex; align-items: center; gap: 0.8rem; }
.scroll-hint .line {
  width: 1px; height: 3rem;
  background: linear-gradient(to bottom, var(--orange), transparent);
  animation: scrollhint 2s var(--ease-out) infinite;
  transform-origin: top;
}
@keyframes scrollhint {
  0% { transform: scaleY(0); opacity: 1; }
  60% { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(1); opacity: 0; }
}

/* ---------- Marquee ---------- */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1.4rem 0;
  display: flex;
  background: var(--navy-900);
}
.marquee-track {
  display: flex; gap: 3rem;
  flex-shrink: 0;
  padding-right: 3rem;
  will-change: transform;
}
.marquee-item {
  display: flex; align-items: center; gap: 3rem;
  font-family: var(--font-display);
  font-size: clamp(0.9rem, 1.4vw, 1.15rem);
  font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-dim);
  white-space: nowrap;
}
.marquee-item .tri { width: 0.5em; height: 0.5em; }

/* ---------- Stats ---------- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}
.stat-cell {
  padding: 3rem 2rem 3rem 0;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.stat-cell + .stat-cell { padding-left: 2rem; border-left: 1px solid var(--line); }
.stat-value {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  font-weight: 600; line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 0.8rem;
  font-variant-numeric: tabular-nums;
}
.stat-value .unit { color: var(--orange); font-size: 0.6em; }
.stat-label { font-size: 0.85rem; color: var(--ink-dim); max-width: 16em; }
@media (max-width: 900px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-cell:nth-child(odd) { border-left: none; padding-left: 0; }
  .stat-cell:nth-child(even) { padding-left: 2rem; }
}
@media (max-width: 540px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stat-cell { padding-left: 0 !important; border-left: none !important; }
}

/* ---------- Manifesto ---------- */
.manifesto p {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.6vw, 3.1rem);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.02em;
  max-width: 22em;
}
.manifesto .reveal-word { opacity: 0.16; transition: opacity 0.3s; }

/* ---------- Service cards ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.service-card {
  position: relative;
  display: flex; flex-direction: column;
  justify-content: space-between;
  min-height: clamp(22rem, 46vh, 30rem);
  padding: 2.4rem;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(160deg, rgba(10, 42, 82, 0.35), rgba(7, 21, 39, 0.6));
  overflow: hidden;
  transition: border-color 0.4s, transform 0.5s var(--ease-out);
  will-change: transform;
}
.service-card:hover { border-color: rgba(232, 116, 15, 0.5); }
.service-card .card-glow {
  position: absolute; inset: 0;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 50%), rgba(232, 116, 15, 0.14), transparent 65%);
  opacity: 0; transition: opacity 0.4s;
  pointer-events: none;
}
.service-card:hover .card-glow { opacity: 1; }
.service-num {
  font-family: var(--font-display);
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--orange);
}
.service-card h3 {
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  margin: 1.2rem 0 0.9rem;
}
.service-card p { color: var(--ink-dim); font-size: 0.95rem; max-width: 30em; }
.service-arrow {
  margin-top: 2rem;
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink);
}
.service-arrow svg { width: 16px; height: 16px; transition: transform 0.4s var(--ease-out); }
.service-card:hover .service-arrow svg { transform: translateX(6px); }
.service-card .card-big-num {
  position: absolute; right: -0.5rem; bottom: -2.4rem;
  font-family: var(--font-display);
  font-size: 11rem; font-weight: 700; line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(234, 240, 248, 0.07);
  pointer-events: none;
  user-select: none;
}
@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 18rem; }
}

/* ---------- Horizontal scroll (Growth System) ---------- */
.hscroll-section { position: relative; overflow: hidden; background: var(--navy-900); }
.hscroll-header { padding: var(--section-pad) 0 3rem; }
.hscroll-track {
  display: flex;
  gap: 1.4rem;
  padding: 0 var(--gutter) var(--section-pad);
  will-change: transform;
  width: max-content;
}
.step-card {
  position: relative;
  width: clamp(19rem, 30vw, 26rem);
  min-height: clamp(20rem, 52vh, 26rem);
  flex-shrink: 0;
  padding: 2.2rem;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(4, 11, 24, 0.55);
  display: flex; flex-direction: column;
  transition: border-color 0.4s, background-color 0.4s;
}
.step-card:hover { border-color: rgba(232, 116, 15, 0.55); background: rgba(10, 42, 82, 0.4); }
.step-num {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4vw, 3.6rem);
  font-weight: 700; line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.2px var(--orange);
  margin-bottom: auto;
}
.step-card h3 { font-size: 1.35rem; margin: 1.6rem 0 0.7rem; }
.step-card p { font-size: 0.92rem; color: var(--ink-dim); }
.step-card .step-link {
  margin-top: 1.4rem;
  font-family: var(--font-display);
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--orange);
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.hscroll-progress {
  position: absolute; bottom: 2.4rem; left: var(--gutter); right: var(--gutter);
  height: 2px; background: var(--line);
  border-radius: 2px;
}
.hscroll-progress .bar {
  height: 100%; width: 0%;
  background: var(--orange);
  border-radius: 2px;
}

/* ---------- Feature split (DigitalArchitect) ---------- */
.feature-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}
.feature-list { margin-top: 2.2rem; display: flex; flex-direction: column; }
.feature-item {
  display: flex; gap: 1.4rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--line);
}
.feature-item:first-child { border-top: 1px solid var(--line); }
.feature-item .fi-key {
  font-family: var(--font-display);
  font-weight: 700; font-size: 0.95rem;
  color: var(--orange);
  min-width: 4.2rem;
  padding-top: 0.15rem;
  letter-spacing: 0.04em;
}
.feature-item p { font-size: 0.92rem; color: var(--ink-dim); }
.feature-item strong { color: var(--ink); font-weight: 600; }

/* Architect score visual */
.score-visual {
  position: relative;
  aspect-ratio: 1;
  max-width: 30rem;
  margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
}
.score-visual svg { width: 100%; height: 100%; overflow: visible; }
.score-center {
  position: absolute;
  text-align: center;
}
.score-center .score-num {
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 6vw, 5rem);
  font-weight: 600; line-height: 1;
  font-variant-numeric: tabular-nums;
}
.score-center .score-cap {
  font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink-faint); margin-top: 0.5rem;
}
@media (max-width: 900px) {
  .feature-split { grid-template-columns: 1fr; }
}

/* ---------- Quote / testimonial ---------- */
.quote-section blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.4vw, 2.8rem);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.015em;
  max-width: 24em;
}
.quote-section blockquote .accent { color: var(--orange); }
.quote-cite {
  margin-top: 2rem;
  display: flex; align-items: center; gap: 1rem;
  font-size: 0.85rem; color: var(--ink-dim);
}
.quote-cite::before { content: ''; width: 2.4rem; height: 1px; background: var(--orange); }

/* ---------- Pricing ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  align-items: stretch;
}
.price-card {
  position: relative;
  padding: 2.6rem 2.2rem;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(7, 21, 39, 0.5);
  display: flex; flex-direction: column;
  transition: border-color 0.4s, transform 0.5s var(--ease-out), box-shadow 0.5s;
}
.price-card:hover { border-color: rgba(232, 116, 15, 0.45); transform: translateY(-6px); }
.price-card.is-featured {
  border-color: var(--orange);
  background: linear-gradient(170deg, rgba(232, 116, 15, 0.10), rgba(7, 21, 39, 0.65) 55%);
}
.price-badge {
  position: absolute; top: -0.85rem; left: 2.2rem;
  background: var(--orange); color: var(--navy-950);
  font-family: var(--font-display);
  font-size: 0.66rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 0.38rem 0.9rem; border-radius: 100px;
}
.price-name {
  font-family: var(--font-display);
  font-size: 1.15rem; font-weight: 600;
  margin-bottom: 0.4rem;
}
.price-desc { font-size: 0.88rem; color: var(--ink-dim); margin-bottom: 1.8rem; min-height: 3.5em; }
.price-value {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 3.6vw, 3.2rem);
  font-weight: 600; line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 0.3rem;
}
.price-value .per { font-size: 0.42em; color: var(--ink-faint); font-weight: 500; letter-spacing: 0; }
.price-note { font-size: 0.75rem; color: var(--ink-faint); margin-bottom: 1.8rem; }
.price-features { display: flex; flex-direction: column; gap: 0.7rem; margin-bottom: 2.2rem; }
.price-features li {
  display: flex; gap: 0.7rem; align-items: flex-start;
  font-size: 0.88rem; color: var(--ink-dim);
}
.price-features li::before {
  content: '';
  width: 0.5em; height: 0.5em;
  margin-top: 0.42em;
  background: var(--orange);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  flex-shrink: 0;
}
.price-card .btn { margin-top: auto; justify-content: center; }
@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; }
}

/* ---------- Offer banner ---------- */
.offer-banner {
  border: 1px solid rgba(232, 116, 15, 0.4);
  border-radius: 20px;
  padding: clamp(2rem, 4vw, 3.2rem);
  background:
    radial-gradient(600px circle at 15% 0%, rgba(232, 116, 15, 0.16), transparent 60%),
    rgba(7, 21, 39, 0.6);
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
}
.offer-banner h3 { font-size: clamp(1.4rem, 2.6vw, 2rem); margin-bottom: 0.6rem; }
.offer-banner p { color: var(--ink-dim); max-width: 36em; }

/* ---------- Steps (vertical, in-depth pages) ---------- */
.depth-section {
  padding: clamp(4rem, 9vh, 7rem) 0;
  border-top: 1px solid var(--line);
}
.depth-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.depth-sticky { position: sticky; top: 7rem; }
.depth-step-num {
  font-family: var(--font-display);
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 700; line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(232, 116, 15, 0.8);
  margin-bottom: 1.2rem;
}
.depth-kicker {
  font-family: var(--font-display);
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
}
.depth-grid h2 { font-size: clamp(1.7rem, 3vw, 2.5rem); margin-bottom: 1.2rem; }
.depth-body > p { color: var(--ink-dim); margin-bottom: 1.6rem; font-size: 1.02rem; line-height: 1.7; }
.depth-body h4 {
  font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink); margin: 2rem 0 1rem;
  display: flex; align-items: center; gap: 0.7rem;
}
.depth-body h4::after { content: ''; flex: 1; height: 1px; background: var(--line); }
.check-list { display: flex; flex-direction: column; }
.check-list li {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem; color: var(--ink-dim);
}
.check-list li strong { color: var(--ink); font-weight: 600; }
.check-list li::before {
  content: '';
  width: 0.55em; height: 0.55em;
  margin-top: 0.45em;
  background: var(--orange);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  flex-shrink: 0;
}
.depth-cta { margin-top: 2.2rem; }
@media (max-width: 900px) {
  .depth-grid { grid-template-columns: 1fr; }
  .depth-sticky { position: static; }
}

/* ---------- FAQ accordion ---------- */
.faq-list { border-top: 1px solid var(--line); max-width: 52rem; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem;
  padding: 1.6rem 0;
  text-align: left;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  font-weight: 600;
  transition: color 0.3s;
}
.faq-q:hover { color: var(--orange); }
.faq-q .faq-icon {
  position: relative; flex-shrink: 0;
  width: 34px; height: 34px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  transition: background-color 0.4s, border-color 0.4s, transform 0.5s var(--ease-out);
}
.faq-q .faq-icon::before, .faq-q .faq-icon::after {
  content: '';
  position: absolute; top: 50%; left: 50%;
  width: 12px; height: 1.5px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform 0.4s var(--ease-out);
}
.faq-q .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item.is-open .faq-icon { background: var(--orange); border-color: var(--orange); color: var(--navy-950); transform: rotate(180deg); }
.faq-item.is-open .faq-icon::after { transform: translate(-50%, -50%) rotate(0deg); }
.faq-a { overflow: hidden; height: 0; }
.faq-a p { padding: 0 3rem 1.8rem 0; color: var(--ink-dim); max-width: 44em; }

/* ---------- Big CTA ---------- */
.big-cta {
  position: relative;
  padding: clamp(6rem, 16vh, 12rem) 0;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(800px circle at 50% 120%, rgba(232, 116, 15, 0.22), transparent 65%),
    var(--navy-900);
}
.big-cta h2 {
  font-size: clamp(2.6rem, 7vw, 6rem);
  letter-spacing: -0.03em;
  margin-bottom: 1.6rem;
}
.big-cta p { margin: 0 auto 2.8rem; }
.big-cta .tri-float {
  position: absolute;
  background: var(--orange);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  opacity: 0.14;
  pointer-events: none;
}

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 4rem 0 2rem;
  background: var(--navy-950);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
.footer-grid h5 {
  font-family: var(--font-display);
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 1.2rem;
}
.footer-grid ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-grid a { font-size: 0.9rem; color: var(--ink-dim); transition: color 0.3s; }
.footer-grid a:hover { color: var(--orange); }
.footer-tagline { margin-top: 1.2rem; color: var(--ink-dim); font-size: 0.92rem; max-width: 24em; }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 1.6rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
  font-size: 0.75rem; color: var(--ink-faint);
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  position: relative;
  padding: clamp(9rem, 22vh, 14rem) 0 clamp(3rem, 8vh, 6rem);
  overflow: hidden;
}
.page-hero .h-display { max-width: 11em; }
.page-hero .text-lead { margin-top: 1.8rem; }
.page-hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(900px circle at 80% -10%, rgba(232, 116, 15, 0.12), transparent 60%),
    radial-gradient(700px circle at 10% 110%, rgba(26, 74, 133, 0.25), transparent 60%);
  pointer-events: none;
}

/* ---------- Use-case grid ---------- */
.usecase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}
.usecase-card {
  padding: 1.8rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(7, 21, 39, 0.5);
  transition: border-color 0.4s, transform 0.4s var(--ease-out), background-color 0.4s;
}
.usecase-card:hover {
  border-color: rgba(232, 116, 15, 0.5);
  transform: translateY(-5px);
  background: rgba(10, 42, 82, 0.4);
}
.usecase-card .uc-icon {
  width: 2.6rem; height: 2.6rem;
  border-radius: 10px;
  background: var(--orange-soft);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
  color: var(--orange);
}
.usecase-card .uc-icon svg { width: 1.2rem; height: 1.2rem; }
.usecase-card h3 { font-size: 1.02rem; margin-bottom: 0.5rem; }
.usecase-card p { font-size: 0.84rem; color: var(--ink-dim); }
@media (max-width: 1100px) { .usecase-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .usecase-grid { grid-template-columns: 1fr; } }

/* ---------- Numbered how-it-works ---------- */
.hiw-list { counter-reset: hiw; display: grid; gap: 1rem; }
.hiw-item {
  counter-increment: hiw;
  display: grid;
  grid-template-columns: 4.5rem 1fr;
  gap: 1.5rem; align-items: center;
  padding: 1.7rem 2rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(7, 21, 39, 0.45);
  transition: border-color 0.4s, background-color 0.4s;
}
.hiw-item:hover { border-color: rgba(232, 116, 15, 0.45); background: rgba(10, 42, 82, 0.35); }
.hiw-item::before {
  content: '0' counter(hiw);
  font-family: var(--font-display);
  font-size: 2.2rem; font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1.2px var(--orange);
}
.hiw-item h3 { font-size: 1.15rem; margin-bottom: 0.3rem; }
.hiw-item p { font-size: 0.9rem; color: var(--ink-dim); }

/* ---------- Editor demo (website builder) ---------- */
.editor-demo {
  border: 1px solid var(--line-strong);
  border-radius: 20px;
  background: var(--navy-900);
  overflow: hidden;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.45);
}
.editor-bar {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.9rem 1.2rem;
  border-bottom: 1px solid var(--line);
}
.editor-bar .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--line-strong); }
.editor-bar .dot:first-child { background: var(--orange); }
.editor-bar .url {
  margin-left: 1rem;
  font-size: 0.72rem; color: var(--ink-faint);
  background: rgba(234, 240, 248, 0.05);
  padding: 0.35rem 1rem; border-radius: 100px;
  letter-spacing: 0.04em;
}
.editor-body { padding: clamp(1.5rem, 3vw, 2.6rem); min-height: 16rem; }
.editor-page-headline {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.4vw, 2.6rem);
  font-weight: 600;
  transition: color 0.4s;
  min-height: 1.2em;
}
.editor-page-headline .type-caret {
  display: inline-block; width: 3px; height: 0.95em;
  background: var(--orange);
  vertical-align: -0.12em;
  animation: caret 0.9s steps(1) infinite;
  margin-left: 2px;
}
@keyframes caret { 50% { opacity: 0; } }
.editor-chat {
  margin-top: 2.4rem;
  display: flex; flex-direction: column; gap: 0.8rem;
}
.chat-bubble {
  max-width: 34em;
  padding: 0.85rem 1.2rem;
  border-radius: 16px;
  font-size: 0.88rem;
  opacity: 0;
  transform: translateY(12px);
}
.chat-bubble.user {
  align-self: flex-end;
  background: var(--orange);
  color: var(--navy-950);
  border-bottom-right-radius: 4px;
  font-weight: 500;
}
.chat-bubble.agent {
  align-self: flex-start;
  background: rgba(234, 240, 248, 0.07);
  border-bottom-left-radius: 4px;
  color: var(--ink-dim);
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}
.contact-info-list { display: flex; flex-direction: column; margin-top: 2.4rem; }
.contact-info-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
}
.contact-info-item:first-child { border-top: 1px solid var(--line); }
.contact-info-item h5 {
  font-family: var(--font-display);
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink-faint); margin-bottom: 0.5rem;
}
.contact-info-item a, .contact-info-item p {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 500;
  transition: color 0.3s;
}
.contact-info-item a:hover { color: var(--orange); }
.contact-form { display: flex; flex-direction: column; gap: 1.4rem; }
.form-field { position: relative; }
.form-field label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 0.6rem;
}
.form-field input, .form-field textarea, .form-field select {
  width: 100%;
  background: rgba(234, 240, 248, 0.04);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1rem 1.2rem;
  color: var(--ink);
  font: inherit; font-size: 0.95rem;
  transition: border-color 0.3s, background-color 0.3s;
  appearance: none;
}
.form-field select { cursor: pointer; }
.form-field select option { background: var(--navy-900); color: var(--ink); }
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  outline: none;
  border-color: var(--orange);
  background: rgba(234, 240, 248, 0.06);
}
.form-field textarea { min-height: 8rem; resize: vertical; }
.form-note { font-size: 0.78rem; color: var(--ink-faint); }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

/* ---------- Reveal defaults (JS adds motion) ---------- */
.reveal, .reveal-stagger > * { will-change: transform, opacity; }

/* ============================================================
   DESIGN SYSTEM v2 — page-variety components
   Added to break the "same-same" template. Each page type
   composes a distinct subset of these.
   ============================================================ */

/* Section rhythm — alternate backgrounds so pages don't read flat */
.section--alt  { background: var(--navy-900); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section--tight { padding-block: clamp(3rem, 7vh, 5rem); }

/* Chip / category tag */
.chip {
  display: inline-flex; align-items: center;
  font-family: var(--font-display);
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--orange); background: var(--orange-soft);
  padding: 0.35rem 0.8rem; border-radius: 100px;
}

/* Breadcrumb */
.breadcrumb { display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center; font-size: 0.8rem; color: var(--ink-faint); margin-bottom: 1.4rem; }
.breadcrumb a { color: var(--ink-dim); transition: color 0.3s; }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb span.sep { opacity: 0.5; }

/* Page-hero variants */
.page-hero--center { text-align: center; }
.page-hero--center .h-display, .page-hero--center .text-lead { margin-left: auto; margin-right: auto; }
.page-hero--center .hero-ctas { justify-content: center; }
.page-hero .hero-stat { display: inline-flex; align-items: baseline; gap: 0.5rem; margin-top: 1.6rem; }
.page-hero .hero-stat b { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.6rem); color: var(--orange); }
.page-hero .hero-stat span { color: var(--ink-dim); font-size: 0.9rem; max-width: 14em; }

/* Zig-zag media rows */
.split-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.split-row + .split-row { margin-top: clamp(3rem, 7vh, 6rem); }
.split-row.reverse .split-media { order: -1; }
.split-media { border: 1px solid var(--line); border-radius: 20px; overflow: hidden; background: var(--navy-900); }
.split-media img { width: 100%; height: 100%; display: block; object-fit: cover; }
.split-text h3 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); margin-bottom: 0.9rem; }
.split-text p { color: var(--ink-dim); }
@media (max-width: 860px) { .split-row { grid-template-columns: 1fr; } .split-row.reverse .split-media { order: 0; } }

/* Long-form article / prose */
.article { max-width: 46rem; margin: 0 auto; }
.article-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem 1rem; color: var(--ink-dim); font-size: 0.88rem; margin-top: 1.2rem; }
.article-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--ink-faint); }
.article-figure { border: 1px solid var(--line); border-radius: 20px; overflow: hidden; margin: clamp(2rem, 5vw, 3.5rem) 0; }
.article-figure img { width: 100%; display: block; }
.prose { font-size: 1.05rem; line-height: 1.8; color: rgba(234, 240, 248, 0.76); }
.prose > *:first-child { margin-top: 0; }
.prose h2 { font-family: var(--font-display); color: var(--ink); font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 600; margin: 2.6rem 0 1rem; letter-spacing: -0.01em; }
.prose h3 { font-family: var(--font-display); color: var(--ink); font-size: 1.25rem; font-weight: 600; margin: 2rem 0 0.7rem; }
.prose h4 { color: var(--ink); font-weight: 600; margin: 1.6rem 0 0.5rem; }
.prose p { margin-bottom: 1.3rem; }
.prose ul, .prose ol { margin: 0 0 1.4rem 0; padding-left: 1.3rem; display: flex; flex-direction: column; gap: 0.55rem; }
.prose li { padding-left: 0.3rem; }
.prose li::marker { color: var(--orange); }
.prose strong { color: var(--ink); font-weight: 600; }
.prose a { color: var(--orange); text-decoration: underline; text-underline-offset: 2px; }
.prose blockquote { margin: 2rem 0; padding-left: 1.4rem; border-left: 3px solid var(--line-strong); color: var(--ink-dim); font-style: italic; }

/* Pull-quote (in-article accent) */
.pullquote { font-family: var(--font-display); font-size: clamp(1.35rem, 2.8vw, 1.9rem); line-height: 1.35; color: var(--ink); border-left: 3px solid var(--orange); padding: 0.2rem 0 0.2rem 1.5rem; margin: 2.6rem 0; }

/* Related posts / card grid */
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.post-card {
  display: flex; flex-direction: column;
  border: 1px solid var(--line); border-radius: 16px; overflow: hidden;
  background: rgba(7, 21, 39, 0.5); transition: border-color 0.4s, transform 0.4s var(--ease-out);
}
.post-card:hover { border-color: rgba(232, 116, 15, 0.5); transform: translateY(-5px); }
.post-card .post-thumb { aspect-ratio: 16 / 9; overflow: hidden; background: var(--navy-900); }
.post-card .post-thumb img { width: 100%; height: 100%; object-fit: cover; }
.post-card .post-body { padding: 1.4rem 1.5rem 1.6rem; display: flex; flex-direction: column; gap: 0.6rem; flex: 1; }
.post-card h3 { font-size: 1.05rem; line-height: 1.35; }
.post-card p { font-size: 0.86rem; color: var(--ink-dim); }
.post-card .post-more { margin-top: auto; color: var(--orange); font-size: 0.82rem; font-weight: 600; }
.post-card.is-featured { grid-column: span 3; }
.post-card.is-featured .post-body { padding: clamp(1.6rem, 3vw, 2.6rem); }
.post-card.is-featured h3 { font-size: clamp(1.4rem, 3vw, 2.1rem); }
@media (max-width: 900px) { .related-grid { grid-template-columns: 1fr 1fr; } .post-card.is-featured { grid-column: span 2; } }
@media (max-width: 600px) { .related-grid { grid-template-columns: 1fr; } .post-card.is-featured { grid-column: span 1; } }

/* Category filter chips */
.filter-bar { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 2.5rem; }
.filter-chip { font-family: var(--font-display); font-size: 0.8rem; font-weight: 500; color: var(--ink-dim); border: 1px solid var(--line); border-radius: 100px; padding: 0.5rem 1.1rem; cursor: pointer; transition: all 0.3s; background: none; }
.filter-chip:hover, .filter-chip.is-active { color: var(--navy-950); background: var(--orange); border-color: var(--orange); }

/* Vertical timeline */
.timeline { counter-reset: tl; display: flex; flex-direction: column; gap: 1.6rem; position: relative; padding-left: 3.2rem; }
.timeline::before { content: ''; position: absolute; left: 1.05rem; top: 0.6rem; bottom: 0.6rem; width: 2px; background: var(--line); }
.timeline-item { counter-increment: tl; position: relative; }
.timeline-item::before {
  content: counter(tl); position: absolute; left: -3.2rem; top: -0.2rem;
  width: 2.1rem; height: 2.1rem; border-radius: 50%;
  background: var(--navy-800); border: 1px solid var(--orange); color: var(--orange);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 0.85rem;
}
.timeline-item h3 { font-size: 1.15rem; margin-bottom: 0.35rem; }
.timeline-item p { color: var(--ink-dim); font-size: 0.92rem; }

/* Checklist / pain-points */
.checklist { display: grid; gap: 0.9rem; }
.checklist li { display: flex; gap: 0.8rem; align-items: flex-start; color: var(--ink-dim); font-size: 0.95rem; }
.checklist li::before { content: '✓'; color: var(--orange); font-weight: 700; flex-shrink: 0; }
.checklist.is-pain li::before { content: '✕'; color: var(--ink-faint); }

/* Metric band — big results numbers on an accent band */
.metric-band {
  background: linear-gradient(135deg, var(--navy-800), var(--navy-900));
  border: 1px solid var(--line-strong); border-radius: 24px;
  padding: clamp(2rem, 5vw, 3.5rem);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
}
.metric-band .metric-num { font-family: var(--font-display); font-weight: 700; font-size: clamp(2rem, 5vw, 3rem); color: var(--orange); line-height: 1; }
.metric-band .metric-label { color: var(--ink-dim); font-size: 0.85rem; margin-top: 0.6rem; }
@media (max-width: 820px) { .metric-band { grid-template-columns: 1fr 1fr; gap: 1.5rem; } }

/* Testimonial spotlight */
.testi-spotlight { border: 1px solid var(--line); border-radius: 24px; padding: clamp(2rem, 5vw, 3.5rem); background: var(--navy-900); }
.testi-spotlight blockquote { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.3rem, 2.6vw, 1.9rem); line-height: 1.4; color: var(--ink); }
.testi-spotlight .cite { margin-top: 1.5rem; color: var(--ink-dim); font-size: 0.9rem; }
.testi-spotlight .result { display: inline-block; margin-top: 0.8rem; color: var(--orange); font-weight: 600; font-size: 0.95rem; }

/* Area-served chips */
.area-grid { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.area-chip { border: 1px solid var(--line); border-radius: 100px; padding: 0.5rem 1.1rem; font-size: 0.86rem; color: var(--ink-dim); }

/* Logo / trust strip */
.logo-strip { display: flex; flex-wrap: wrap; gap: clamp(1.5rem, 4vw, 3rem); align-items: center; justify-content: center; }
.logo-strip img { height: 2rem; width: auto; opacity: 0.55; filter: grayscale(1) brightness(1.6); transition: opacity 0.3s; }
.logo-strip img:hover { opacity: 0.9; }

/* Comparison table */
.compare-table { width: 100%; border-collapse: collapse; font-size: 0.92rem; }
.compare-table th, .compare-table td { text-align: left; padding: 1rem 1.2rem; border-bottom: 1px solid var(--line); }
.compare-table thead th { font-family: var(--font-display); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-faint); }
.compare-table thead th.is-us { color: var(--orange); }
.compare-table td { color: var(--ink-dim); }
.compare-table td.is-us { color: var(--ink); }
.compare-wrap { overflow-x: auto; }

/* Reduced motion: kill the fancy stuff */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    transition-duration: 0.001s !important;
  }
  .grain { display: none; }
}
