/* ==========================================================================
   Rapid Reach LLC — design tokens
   Matched precisely to the client's reference (studious-czllno.peachweb.site):
   pure black canvas, white/gray text, DM Sans throughout, no color accent.
   ========================================================================== */

:root {
  --canvas: #000000;
  --surface: #141414;
  --surface-raised: #1c1c1c;
  --border: #2a2a2a;
  --border-soft: #1c1c1c;

  --ink: #ffffff;
  --ink-muted: #a8a8a8;
  --ink-faint: #7d7d7d;

  --gold: #d9a441;
  --gold-bright: #f0c56e;
  --gold-dim: rgba(217, 164, 65, 0.16);
  --gold-ink: #17130a;

  --accent: var(--gold);
  --accent-strong: var(--gold-bright);
  --accent-ink: var(--gold-ink);

  --pop-bg: #ece9e2;
  --pop-ink: #0c0c0c;

  --success: #d9d9d9;

  --font-display: "DM Sans", "Segoe UI", system-ui, sans-serif;
  --font-body: "DM Sans", "Segoe UI", system-ui, sans-serif;

  --container: 1180px;
  --section-pad: 112px;
  --section-pad-mobile: 64px;

  --radius-sm: 8px;
  --radius-md: 10px;
  --radius-lg: 16px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@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;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

/* Fine film-grain overlay — the reference uses grain/noise throughout its
   imagery; this keeps flat black sections from looking dead. */
body::before {
  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='160' height='160'%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");
}

img { max-width: 100%; display: block; }
a { color: inherit; }
button { font-family: inherit; }

/* ---- Scroll progress bar ---- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  z-index: 60;
  pointer-events: none;
}

/* ---- Scroll-triggered reveals ---- */
[data-reveal-scroll] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}
[data-reveal-scroll].is-in { opacity: 1; transform: none; }
[data-reveal-scroll="left"] { transform: translateX(-32px); }
[data-reveal-scroll="right"] { transform: translateX(32px); }
[data-reveal-scroll="scale"] { transform: scale(0.94); }
[data-reveal-scroll="left"].is-in,
[data-reveal-scroll="right"].is-in,
[data-reveal-scroll="scale"].is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal-scroll] { opacity: 1; transform: none; transition: none; }
  .scroll-progress { display: none; }
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0;
}

p { margin: 0; }

.tabular { font-variant-numeric: tabular-nums; }

/* ---- Skip link ---- */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--accent);
  color: var(--accent-ink);
  padding: 12px 20px;
  border-radius: 0 0 8px 0;
  font-weight: 600;
  z-index: 100;
}
.skip-link:focus { left: 0; }

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

/* ---- Layout helpers ---- */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

.section {
  padding-block: var(--section-pad);
  border-bottom: 1px solid var(--border-soft);
}
@media (max-width: 768px) {
  .section { padding-block: var(--section-pad-mobile); }
}

.section-head {
  max-width: 640px;
  margin-bottom: 48px;
}
.section-head.centered {
  max-width: 620px;
  margin-inline: auto;
  text-align: center;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.kicker::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.section-head.centered .kicker { justify-content: center; width: 100%; }

h2.section-title {
  font-size: clamp(28px, 3.4vw, 38px);
}

.section-sub {
  margin-top: 14px;
  color: var(--ink-muted);
  font-weight: 300;
  font-size: 17px;
  max-width: 60ch;
}
.section-head.centered .section-sub { margin-inline: auto; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px 12px 24px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 200ms var(--ease), border-color 200ms var(--ease), transform 150ms var(--ease), opacity 200ms var(--ease);
  min-height: 44px;
}
.btn:active { transform: scale(0.98); }

.btn-primary {
  background: var(--gold);
  color: var(--gold-ink);
}
.btn-primary:hover { background: var(--gold-bright); }

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--ink);
  border-color: transparent;
}
.btn-secondary:hover { background: rgba(255, 255, 255, 0.16); }

.btn-dark {
  background: #000000;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.14);
}
.btn-dark:hover { background: #161616; }

.btn-arrow { padding-right: 8px; }
.btn-arrow .arrow-circle {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.14);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 200ms var(--ease);
  flex-shrink: 0;
}
.btn-secondary .arrow-circle,
.btn-dark .arrow-circle { background: rgba(255, 255, 255, 0.14); }
.btn-arrow:hover .arrow-circle { transform: translateX(2px); }
.btn-arrow .arrow-circle svg { width: 12px; height: 12px; }

/* ---- Header ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-soft);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 18px;
  color: var(--ink);
}
.brand-mark {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--surface-raised);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
}
.brand-mark svg { width: 16px; height: 16px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  position: relative;
  text-decoration: none;
  color: var(--ink-muted);
  font-size: 14px;
  font-weight: 300;
  transition: color 180ms var(--ease);
  padding-bottom: 4px;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--gold);
  transition: right 220ms var(--ease);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { right: 0; }

.nav-cta { display: flex; align-items: center; gap: 20px; }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  color: var(--ink);
}

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-cta .btn { display: none; }
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px 24px 20px;
  border-top: 1px solid var(--border-soft);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  text-decoration: none;
  color: var(--ink-muted);
  padding: 12px 4px;
  font-size: 16px;
  border-bottom: 1px solid var(--border-soft);
}
.mobile-menu a:last-child { border-bottom: none; }

/* ==========================================================================
   Hero — dark gradient canvas with a CSS-built glossy ring (stands in for
   the reference's proprietary 3D render, which can't be relicensed here)
   ========================================================================== */

.hero {
  position: relative;
  overflow: clip;
  padding-block: 96px 64px;
  background:
    radial-gradient(ellipse 55% 45% at 84% 6%, rgba(217,164,65,0.12) 0%, transparent 65%),
    radial-gradient(ellipse 90% 70% at 70% 20%, #3a3a3a 0%, transparent 60%),
    linear-gradient(160deg, #1c1c1c 0%, #050505 55%, #000000 100%);
  border-bottom: 1px solid var(--border-soft);
}

.hero-ring-wrap {
  position: absolute;
  top: -120px;
  right: -140px;
  width: 640px;
  height: 640px;
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}
@media (max-width: 760px) {
  .hero-ring-wrap { width: 420px; height: 420px; top: -60px; right: -160px; opacity: 0.7; }
}

.hero-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(from 200deg,
    #0a0a0a 0deg, #7a7a7a 35deg, #1a1a1a 70deg, #9a9a9a 110deg,
    #141414 150deg, #6e6e6e 195deg, #0a0a0a 230deg, #8c8c8c 270deg,
    #161616 310deg, #0a0a0a 360deg);
  -webkit-mask: radial-gradient(circle, transparent 52%, black 54%, black 78%, transparent 80%);
  mask: radial-gradient(circle, transparent 52%, black 54%, black 78%, transparent 80%);
  filter: blur(1px) saturate(0);
  animation: ring-spin 50s linear infinite;
  box-shadow: 0 0 120px 20px rgba(255, 255, 255, 0.06) inset;
}
.hero-ring::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.35'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
  -webkit-mask: radial-gradient(circle, transparent 52%, black 54%, black 78%, transparent 80%);
  mask: radial-gradient(circle, transparent 52%, black 54%, black 78%, transparent 80%);
}
.hero-ring-glow {
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217,164,65,0.18), transparent 70%);
  filter: blur(30px);
}
@keyframes ring-spin {
  to { transform: rotate(360deg); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-ring { animation: none; }
}

.hero-content { position: relative; z-index: 1; max-width: 640px; }

.hero h1 {
  font-size: clamp(34px, 4.6vw, 52px);
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.hero-sub {
  margin-top: 18px;
  font-size: 17px;
  font-weight: 400;
  color: var(--ink-muted);
  max-width: 52ch;
}

.hero-avatars {
  display: flex;
  align-items: center;
  margin-top: 22px;
}
.hero-avatars .av {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid #000;
  background: var(--surface-raised);
  margin-left: -10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-faint);
}
.hero-avatars .av:first-child { margin-left: 0; }
.hero-avatars .av svg { width: 14px; height: 14px; }

.hero-desc {
  margin-top: 20px;
  color: var(--ink-muted);
  font-size: 15px;
  max-width: 46ch;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 30px;
  flex-wrap: wrap;
}

/* fade-up-on-load state, used only for the single hero sequence */
.reveal { opacity: 0; transform: translateY(10px); }
.reveal.is-in {
  opacity: 1;
  transform: none;
  transition: opacity 520ms var(--ease), transform 520ms var(--ease);
}

/* ==========================================================================
   Services teaser band (glass panel over the hero canvas) + pipeline mockup
   ========================================================================== */

.teaser {
  position: relative;
  background:
    radial-gradient(ellipse 90% 80% at 30% 0%, #4a4a4a 0%, transparent 65%),
    #0d0d0d;
  border-bottom: 1px solid var(--border-soft);
  padding-block: 56px 0;
}

.teaser-panel {
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: center;
}
@media (max-width: 800px) {
  .teaser-panel { grid-template-columns: 1fr; }
}
.teaser-panel h2 { font-size: clamp(24px, 3vw, 32px); margin-bottom: 16px; }
.teaser-panel .kicker { margin-bottom: 12px; }
.teaser-actions { display: flex; gap: 12px; margin-top: 22px; flex-wrap: wrap; }
.teaser-desc { color: var(--ink-muted); font-size: 15px; }

.teaser-mockup {
  margin-top: 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  border-bottom: none;
  overflow: hidden;
  background: var(--surface);
}

/* ---- Pipeline mockup (our own, relevant to the actual business) ---- */
.pipeline-card { padding: 22px 28px; }
.pipeline-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-soft);
}
.pipeline-card-head span { font-size: 13px; color: var(--ink-faint); }
.live-dot { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; color: var(--ink-muted); }
.live-dot::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: #8fd19e; }

.pipeline-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-soft);
}
.pipeline-row:last-child { border-bottom: none; }

.pipeline-status {
  font-size: 12px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 100px;
  white-space: nowrap;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.08);
  color: var(--ink);
}
.pipeline-detail { flex: 1; min-width: 0; }
.pipeline-name { font-size: 14px; color: var(--ink); font-weight: 400; }
.pipeline-meta { font-size: 13px; color: var(--ink-faint); margin-top: 2px; }
.pipeline-caption { margin-top: 14px; padding: 0 28px 20px; font-size: 12px; color: var(--ink-faint); }

/* ==========================================================================
   Benefits — full-width stacked cards (matches reference exactly)
   ========================================================================== */

.benefit-card {
  border-top: 1px solid var(--border-soft);
  padding-block: 40px;
}
.benefit-card:first-child { border-top: none; padding-top: 0; }
.benefit-card:last-child { padding-bottom: 0; }

.benefit-thumb {
  height: 220px;
  border-radius: var(--radius-lg);
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border-soft);
}
.benefit-thumb .visual-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.1) brightness(0.62);
  transition: transform 500ms var(--ease), filter 500ms var(--ease);
}
.benefit-card:hover .visual-photo {
  transform: scale(1.04);
  filter: grayscale(0.5) contrast(1.1) brightness(0.68);
}
.benefit-thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.35;
  mix-blend-mode: overlay;
}
.benefit-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.55) 100%);
}
.benefit-thumb .plus {
  position: absolute;
  bottom: 16px;
  right: 16px;
  z-index: 2;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
}
.benefit-thumb .plus svg { width: 14px; height: 14px; }

.benefit-card h3 { font-size: 24px; margin-bottom: 8px; }
.benefit-card p { color: var(--ink-muted); max-width: 60ch; }

/* ==========================================================================
   About Our Services — alternating zig-zag deep-dive (normal scroll flow)
   ========================================================================== */

.approach-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.approach-head .section-sub { margin-top: 0; max-width: 34ch; text-align: right; }
@media (max-width: 700px) {
  .approach-head .section-sub { text-align: left; }
}

.deepdive-list { display: flex; flex-direction: column; gap: 56px; }

.deepdive-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.deepdive-row.reverse .deepdive-copy { order: 2; }
.deepdive-row.reverse .deepdive-visual { order: 1; }
@media (max-width: 860px) {
  .deepdive-row, .deepdive-row.reverse { grid-template-columns: 1fr; }
  .deepdive-row.reverse .deepdive-copy,
  .deepdive-row.reverse .deepdive-visual { order: initial; }
}

.deepdive-eyebrow {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.deepdive-copy h3 { font-size: clamp(24px, 2.8vw, 32px); margin-bottom: 14px; }
.deepdive-copy p { color: var(--ink-muted); max-width: 46ch; margin-bottom: 24px; }

.deepdive-visual {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  background: var(--surface);
  position: relative;
  overflow: hidden;
  padding: 20px;
}
.deepdive-visual .visual-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.12) brightness(0.6);
  transition: transform 500ms var(--ease), filter 500ms var(--ease);
}
.deepdive-row:hover .visual-photo {
  transform: scale(1.04);
  filter: grayscale(0.5) contrast(1.12) brightness(0.68);
}
.deepdive-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.35;
  mix-blend-mode: overlay;
}
.deepdive-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, transparent 30%, transparent 70%, rgba(0,0,0,0.5) 100%);
}
.deepdive-num {
  position: relative;
  font-size: 13px;
  color: var(--ink);
  z-index: 2;
  text-shadow: 0 1px 4px rgba(0,0,0,0.8);
}

/* Service 03 visual — a chart instead of a photo slot, sized to the same 4:3
   frame as the other two deep-dive rows. */
.cadence-card {
  position: absolute;
  inset: 20px;
  z-index: 2;
  padding: 20px 22px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-soft);
  background: rgba(20, 20, 20, 0.72);
  backdrop-filter: blur(6px);
  display: flex;
  will-change: transform;
}
.cadence-card--chart-only { align-items: stretch; }
.cadence-chart { display: flex; flex-direction: column; width: 100%; }
.chart-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 20px; }
.chart-title { font-size: 12px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-faint); }
.chart-illustrative { font-size: 10.5px; color: var(--ink-faint); opacity: 0.7; font-style: italic; }
.chart-bars {
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-soft);
}
.chart-col { display: flex; flex-direction: column; align-items: center; gap: 8px; flex: 1; height: 100%; justify-content: flex-end; }
.chart-val { font-size: 12px; color: var(--ink-faint); font-variant-numeric: tabular-nums; }
.chart-val.is-peak { color: var(--gold-bright); font-weight: 600; }
.chart-bar {
  width: 22px;
  max-width: 60%;
  height: var(--h);
  border-radius: 4px 4px 0 0;
  background: var(--ink);
  opacity: var(--o);
}
.chart-bar.is-peak {
  background: var(--gold);
  opacity: 1;
  box-shadow: 0 0 24px -6px var(--gold-dim);
}
.chart-label { font-size: 10.5px; letter-spacing: 0.03em; color: var(--ink-faint); white-space: nowrap; }
.chart-footnote { margin-top: 14px; font-size: 12px; line-height: 1.5; color: var(--ink-faint); }
@media (max-width: 600px) {
  .deepdive-visual.cadence-visual { aspect-ratio: auto; min-height: 400px; }
  .cadence-card { padding: 16px 18px; }
  .chart-head { margin-bottom: 14px; }
}

/* bento hover grid, reused inside deep-dive visuals */
.bento {
  position: relative;
  z-index: 1;
  height: calc(100% - 24px);
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.bento-tile {
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-faint);
  transition: background-color 220ms var(--ease), border-color 220ms var(--ease), color 220ms var(--ease), transform 220ms var(--ease);
}
.bento-tile svg { width: 16px; height: 16px; }
.bento-tile:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--ink);
  transform: scale(1.06);
}

/* ==========================================================================
   Solutions — sticky heading left, cards simply stack past on the right
   ========================================================================== */

.solutions-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 56px;
}
@media (max-width: 900px) {
  .solutions-grid { grid-template-columns: 1fr; }
}

.solutions-sticky {
  position: sticky;
  top: 100px;
  align-self: start;
  height: fit-content;
}
@media (max-width: 900px) { .solutions-sticky { position: relative; top: 0; } }

.solutions-cards { display: flex; flex-direction: column; gap: 20px; }

.solutions-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.solutions-card h3 { font-size: 21px; margin-bottom: 10px; }
.solutions-card p { color: var(--ink-muted); font-size: 15px; }
.solutions-card-visual {
  aspect-ratio: 16/9;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-soft);
  margin-bottom: 18px;
  position: relative;
  overflow: hidden;
}
.solutions-card-visual .visual-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.1) brightness(0.6);
  transition: transform 500ms var(--ease), filter 500ms var(--ease);
}
.solutions-card:hover .visual-photo {
  transform: scale(1.04);
  filter: grayscale(0.5) contrast(1.1) brightness(0.68);
}
.solutions-card-visual::before {
  content: "";
  position: absolute; inset: 0;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.35;
  mix-blend-mode: overlay;
}

/* ==========================================================================
   Process (kept from earlier build — not in reference, but useful)
   ========================================================================== */

.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
@media (max-width: 860px) { .process-list { grid-template-columns: 1fr; } }

.process-step {
  border-left: 1px solid var(--border);
  padding-left: 24px;
}
.process-list > .process-step:first-child { border-left: none; padding-left: 0; }
@media (max-width: 860px) {
  .process-step {
    border-left: none; padding-left: 0; padding-bottom: 32px;
    border-bottom: 1px solid var(--border); margin-bottom: 32px;
  }
  .process-list > .process-step:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
}
.process-num { font-size: 14px; color: var(--gold); margin-bottom: 14px; }
.process-step h3 { font-size: 18px; margin-bottom: 10px; }
.process-step p { color: var(--ink-muted); font-size: 15px; }

/* ==========================================================================
   Differentiators ("Impact") — sticky heading left, stacked cards right,
   first card inverted to a light "pop" card like the reference.
   ========================================================================== */

#differentiators {
  position: relative;
  background: radial-gradient(ellipse 60% 50% at 14% 0%, rgba(217,164,65,0.08) 0%, transparent 65%);
}
.impact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 56px;
  position: relative;
  z-index: 1;
}
@media (max-width: 900px) { .impact-grid { grid-template-columns: 1fr; } }

.impact-sticky { position: sticky; top: 100px; align-self: start; height: fit-content; }
@media (max-width: 900px) { .impact-sticky { position: relative; top: 0; } }
.impact-sticky h2 { font-size: clamp(28px, 3.6vw, 40px); }

.impact-cards { display: flex; flex-direction: column; gap: 20px; }
.impact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.impact-card.pop { background: var(--pop-bg); color: var(--pop-ink); }
.impact-card.pop .impact-label { color: rgba(12,12,12,0.7); }
.impact-card.pop .impact-label strong { color: var(--pop-ink); }

.impact-value {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--gold);
}
.impact-card.pop .impact-value { color: var(--pop-ink); }
.impact-label { margin-top: 12px; color: var(--ink-muted); font-size: 15px; }
.impact-label strong { color: var(--ink); }

/* ---- About / proof ---- */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 860px) { .about-grid { grid-template-columns: 1fr; gap: 36px; } }
.about-copy p + p { margin-top: 16px; }
.about-copy p { color: var(--ink-muted); }

.about-note {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.about-note h3 { font-size: 16px; color: var(--ink); margin-bottom: 10px; }
.about-note p { color: var(--ink-muted); font-size: 15px; }
.about-note p + p { margin-top: 12px; }
.accent-link { color: var(--gold); border-bottom: 1px solid var(--gold-dim); }
.accent-link:hover { border-color: var(--gold-bright); color: var(--gold-bright); }

.fine-print { margin-top: 32px; font-size: 13px; color: var(--ink-faint); }

/* ---- FAQ (static two-column, not accordion) ---- */
.faq-list { display: flex; flex-direction: column; }
.faq-item {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 32px;
  padding-block: 28px;
  border-top: 1px solid var(--border-soft);
}
.faq-item:last-child { padding-bottom: 0; }
@media (max-width: 720px) { .faq-item { grid-template-columns: 1fr; gap: 10px; } }
.faq-q { font-weight: 500; font-size: 17px; }
.faq-a { color: var(--ink-muted); }

/* ---- Final CTA band — flat black with a warm gold glow ---- */
.cta-band {
  background:
    radial-gradient(ellipse 70% 90% at 90% 50%, rgba(217,164,65,0.10) 0%, transparent 65%),
    #000000;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-inner h2 { font-size: clamp(28px, 3.6vw, 40px); max-width: 20ch; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---- Contact ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
}
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }
.contact-info dl { margin: 24px 0 0; }
.contact-info dt { font-size: 13px; color: var(--ink-faint); margin-top: 18px; }
.contact-info dt:first-child { margin-top: 0; }
.contact-info dd { margin: 4px 0 0; font-size: 16px; color: var(--ink); }
.contact-info a { text-decoration: none; color: var(--ink); border-bottom: 1px solid var(--border); }
.contact-info a:hover { border-color: var(--ink); }

.field { margin-bottom: 18px; }
.field label { display: block; font-size: 14px; color: var(--ink-muted); margin-bottom: 8px; }
.field input, .field textarea {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  color: var(--ink);
  font-family: inherit;
  font-size: 15px;
  min-height: 44px;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--ink-muted); }
.form-note { font-size: 13px; color: var(--ink-faint); margin-top: 12px; }

/* ---- Footer ---- */
.site-footer { padding-block: 56px; background: #000000; }
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  padding-bottom: 40px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--border-soft);
}
.footer-brand h3 { font-size: 20px; margin-bottom: 10px; }
.footer-brand a { color: var(--ink-muted); text-decoration: none; }
.footer-brand a:hover { color: var(--ink); }
.footer-cols { display: flex; gap: 64px; }
.footer-col h4 {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  text-decoration: none;
  color: var(--ink-muted);
  font-size: 15px;
  padding: 6px 0;
}
.footer-col a:hover { color: var(--ink); }
.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-links { display: flex; gap: 24px; list-style: none; padding: 0; margin: 0; }
.footer-links a { text-decoration: none; color: var(--ink-faint); font-size: 14px; }
.footer-links a:hover { color: var(--ink-muted); }
.footer-meta { font-size: 14px; color: var(--ink-faint); }

/* ---- Simple legal pages ---- */
.legal-page main { padding-block: 72px; }
.legal-page h1 { font-size: 32px; margin-bottom: 24px; }
.legal-page h2 { font-size: 20px; margin: 32px 0 12px; }
.legal-page p, .legal-page li { color: var(--ink-muted); }
.legal-page p + p { margin-top: 14px; }
.legal-page ul { padding-left: 20px; }
