/* ============================================================
   BUNDLE WASTE — Website V3 design system
   Palette: paper #f6f6f6 / ink #323232 / forest greens / accent #075e7c
   Type: Geist (display + text) / Geist Mono (labels, data)
   ============================================================ */

:root {
  --paper: #f6f6f6;
  --paper-warm: #e9eaec;
  --card: #f6f6f6;
  --ink: #075e7c;
  --ink-soft: #53565b;
  --ink-faint: #65686d;

  --forest-950: #08090b;
  --forest-900: #101b21;
  --forest-850: #142e3a;
  --forest-800: #075e7c;
  --accent: #075e7c;
  --accent-strong: #075e7c;
  --accent-bright: #248faf;
  --accent-soft: #36a8cd; /* small text on dark greens */
  --paper-dark: #e9eaec; /* body text on dark greens */

  --line: rgba(20,46,58, 0.12);
  --line-soft: rgba(20,46,58, 0.07);
  --line-dark: rgba(246,246,246, 0.14);

  --page-x: clamp(20px, 4vw, 72px);
  --content-w: 1440px;
  --narrow-w: 760px;
  /* how far the home hero island bleeds into the section below (~20% of it) */
  --isle-bleed: clamp(56px, 7.5vw, 112px);

  --r-card: 20px;
  --r-tile: 14px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --t-fast: 150ms;
  --t-med: 250ms;

  --font-sans: "Geist", "Instrument Sans", "Segoe UI", system-ui, sans-serif;
  --font-mono: "Geist Mono", "Cascadia Code", Consolas, monospace;
}

/* ------------------------------------------------------------ reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  overflow-x: clip;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img,
svg,
video {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
}
h1,
h2,
h3,
h4,
blockquote {
  margin: 0;
  text-wrap: balance;
}
p,
li,
figcaption,
dd {
  text-wrap: pretty;
}
p {
  margin: 0;
}
ul,
ol {
  margin: 0;
  padding: 0;
}
::selection {
  background: var(--accent);
  color: var(--paper);
}
:focus-visible {
  outline: 2px solid var(--accent-bright);
  outline-offset: 3px;
  border-radius: 2px;
}

/* film grain, one layer for the whole page */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 90;
  pointer-events: none;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

/* ------------------------------------------------------------ primitives */
.container {
  width: min(100% - 2 * var(--page-x), var(--content-w));
  margin-inline: auto;
}
.narrow {
  max-width: var(--narrow-w);
}

.mono {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  line-height: 1.5;
  text-transform: uppercase;
}
.mono--accent {
  color: var(--accent);
}
.on-dark .mono--accent,
.dark .mono--accent {
  color: var(--accent-soft);
}

.display {
  font-weight: 640;
  font-variation-settings: "wght" 640;
  letter-spacing: -0.035em;
  line-height: 0.94;
  text-transform: uppercase;
  text-wrap: balance;
}
.title-hero {
  font-size: clamp(46px, 9.2vw, 136px);
  letter-spacing: -0.04em;
}
/* section headline — sentence case, one teal accent phrase per headline */
.title-xl {
  font-size: clamp(40px, 5.2vw, 76px);
  font-weight: 680;
  font-variation-settings: "wght" 680;
  letter-spacing: -0.03em;
  line-height: 1.02;
  text-transform: none;
}
/* no self-hosted Geist italic — the accent is colour only */
.accent {
  font-style: normal;
  color: var(--accent);
}
.on-dark .accent,
.dark .accent {
  color: var(--accent-bright);
}
.title-lg {
  font-size: clamp(32px, 4.6vw, 72px);
}
.title-md {
  font-size: clamp(24px, 2.6vw, 40px);
  text-transform: none;
  letter-spacing: -0.025em;
  line-height: 1.04;
  font-weight: 600;
}
.title-sm {
  font-size: clamp(19px, 1.6vw, 24px);
  text-transform: none;
  letter-spacing: -0.02em;
  line-height: 1.15;
  font-weight: 600;
}

.lede {
  font-size: clamp(17px, 1.45vw, 22px);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 640px;
}
.on-dark .lede {
  color: var(--paper-dark);
}

/* ------------------------------------------------------------ buttons */
.btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 8px 8px 8px 26px;
  border: 0;
  border-radius: 999px;
  background: var(--accent);
  color: #f6f6f6;
  font-weight: 560;
  font-size: 15.5px;
  letter-spacing: 0.005em;
  cursor: pointer;
  transition:
    background var(--t-fast) var(--ease-out),
    transform var(--t-fast) var(--ease-out);
}
.btn-pill .btn-orb {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(246,246,246, 0.16);
  transition:
    transform var(--t-fast) var(--ease-out),
    background var(--t-fast) var(--ease-out);
}
.btn-pill .btn-orb svg {
  width: 14px;
  height: 14px;
}
.btn-pill:hover {
  background: var(--accent-strong);
  transform: translateY(-2px);
}
.btn-pill:hover .btn-orb {
  transform: translateX(2px);
  background: rgba(246,246,246, 0.24);
}
.btn-pill--paper {
  background: var(--paper);
  color: var(--forest-900);
}
.btn-pill--paper .btn-orb {
  background: rgba(16,27,33, 0.1);
}
.btn-pill--paper:hover {
  background: #ffffff;
}
.btn-pill--ghost {
  background: transparent;
  color: inherit;
  box-shadow: inset 0 0 0 1px var(--line);
}
.on-dark .btn-pill--ghost {
  box-shadow: inset 0 0 0 1px var(--line-dark);
}
.btn-pill--ghost .btn-orb {
  background: rgba(7,94,124, 0.1);
}
.btn-pill--ghost:hover {
  background: rgba(7,94,124, 0.07);
  transform: translateY(-2px);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 560;
  color: var(--accent);
  transition: gap var(--t-fast) var(--ease-out);
}
.text-link:hover {
  gap: 12px;
}
.on-dark .text-link {
  color: var(--accent-soft);
}

/* ------------------------------------------------------------ header / nav */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  height: 84px;
  display: flex;
  align-items: center;
  color: var(--ink);
  transition:
    height var(--t-med) var(--ease-out),
    background var(--t-med) var(--ease-out),
    color var(--t-med) var(--ease-out),
    box-shadow var(--t-med) var(--ease-out);
}
.site-header.scrolled {
  height: 64px;
  color: var(--paper);
  background: rgba(16,27,33, 0.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(246,246,246, 0.08);
}
.site-header.scrolled .site-nav > a:hover,
.site-header.scrolled .site-nav > a[aria-current="true"] {
  background: rgba(246,246,246, 0.09);
}
.site-header.scrolled .header-cta {
  background: var(--accent);
  color: #f6f6f6;
}
section[id],
footer {
  scroll-margin-top: 84px;
}
.site-header.on-dark {
  color: var(--paper);
}
.site-header.on-dark .header-cta {
  background: rgba(246,246,246, 0.13);
  color: var(--paper);
}
.site-header.on-dark .header-cta:hover {
  background: rgba(246,246,246, 0.22);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 15px;
  font-weight: 660;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  white-space: nowrap;
}
.brand-logo {
  width: 28px;
  height: auto;
  flex: none;
  filter: drop-shadow(0 1px 2px rgba(8,9,11, 0.25));
}
.footer-brand .brand-logo {
  width: 34px;
}
.brand-mark {
  position: relative;
  width: 16px;
  height: 16px;
  flex: none;
}
.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  width: 8.5px;
  height: 8.5px;
  border-radius: 2px;
  background: var(--accent);
  transform: rotate(45deg);
}
.brand-mark::before {
  left: 0;
  bottom: 0;
  opacity: 0.55;
}
.brand-mark::after {
  top: 0;
  right: 0;
}
.on-dark .brand-mark::before,
.on-dark .brand-mark::after {
  background: var(--accent-bright);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.site-nav > a {
  position: relative;
  padding: 10px 13px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 520;
  color: inherit;
  opacity: 0.85;
  transition:
    opacity var(--t-fast),
    background var(--t-fast);
}
.site-nav > a:hover,
.site-nav > a[aria-current="true"] {
  opacity: 1;
  background: rgba(20,46,58, 0.06);
}
.on-dark .site-nav > a:hover,
.on-dark .site-nav > a[aria-current="true"] {
  background: rgba(246,246,246, 0.09);
}

.header-side {
  display: flex;
  align-items: center;
  gap: 18px;
}
.header-phone {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.06em;
  opacity: 0.8;
  white-space: nowrap;
}
.header-phone:hover {
  opacity: 1;
}
.header-cta {
  padding: 11px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #f6f6f6;
  font-size: 14px;
  font-weight: 560;
  white-space: nowrap;
  transition:
    background var(--t-fast),
    transform var(--t-fast);
}
.header-cta:hover {
  background: var(--accent-strong);
  transform: translateY(-1px);
}
.on-dark .header-cta {
  background: rgba(246,246,246, 0.12);
}
.on-dark .header-cta:hover {
  background: rgba(246,246,246, 0.2);
}

.nav-burger {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 12px;
  background: transparent;
  cursor: pointer;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  border-radius: 2px;
  background: currentColor;
  transition:
    transform var(--t-med) var(--ease-out),
    opacity var(--t-fast);
}

/* mobile overlay menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  flex-direction: column;
  padding: 22px 24px 34px;
  background: linear-gradient(175deg, var(--forest-900), var(--forest-950));
  color: var(--paper);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity var(--t-med) var(--ease-out),
    visibility 0s linear var(--t-med);
}
.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}
.mobile-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 44px;
}
.mobile-menu-close {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: rgba(246,246,246, 0.08);
  color: var(--paper);
  font-size: 20px;
  cursor: pointer;
}
.mobile-menu-links {
  display: grid;
  gap: 4px;
  margin-top: 8vh;
}
.mobile-menu-links a {
  padding: 11px 0;
  font-size: clamp(28px, 8vw, 38px);
  font-weight: 620;
  letter-spacing: -0.03em;
  line-height: 1;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 300ms var(--ease-out),
    transform 300ms var(--ease-out);
}
.mobile-menu.open .mobile-menu-links a {
  opacity: 1;
  transform: none;
}
.mobile-menu-links a small {
  margin-right: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--accent-soft);
  letter-spacing: 0.1em;
}
.mobile-menu-foot {
  margin-top: auto;
  display: grid;
  gap: 18px;
}
.mobile-menu-foot .header-phone {
  font-size: 14px;
  opacity: 0.9;
}

/* ------------------------------------------------------------ hero (home, dark)
   Split layout: one column of copy (eyebrow -> h1 -> paragraph -> actions),
   one focal object (the island) that bleeds ~20% into the section below. */
.hero-dark {
  position: relative;
  z-index: 2;
  overflow: visible;
  padding-bottom: 0;
  color: var(--paper);
  background: radial-gradient(
    120% 90% at 50% 0%,
    var(--forest-850) 0%,
    var(--forest-900) 46%,
    var(--forest-950) 100%
  );
}
.hero-home {
  display: grid;
  grid-template-columns: minmax(0, 44fr) minmax(0, 56fr);
  align-items: center;
  gap: clamp(24px, 3vw, 56px);
  min-height: 0;
  padding-top: clamp(112px, 14vh, 156px);
  padding-bottom: 0;
}
.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 34rem;
}
.hero-eyebrow {
  display: block;
  margin-bottom: 22px;
  text-wrap: balance;
}
.hero-h1 {
  font-size: clamp(56px, 7vw, 104px);
  font-weight: 680;
  font-variation-settings: "wght" 680;
  letter-spacing: -0.035em;
  line-height: 1;
  text-wrap: balance;
}
.hero-sub {
  margin-top: 26px;
  max-width: 52ch;
  font-size: clamp(16px, 1.15vw, 18.5px);
  line-height: 1.6;
  color: var(--paper-dark);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}
.hero-actions .btn-pill--ghost {
  color: var(--paper);
}
.hero-actions .btn-pill--ghost .btn-orb {
  background: rgba(246,246,246, 0.12);
}
.hero-actions .btn-pill--ghost:hover {
  background: rgba(246,246,246, 0.08);
}
.hero-art {
  position: relative;
  z-index: 2;
  min-width: 0;
  /* bottom-anchored so the island always bleeds by the same amount,
     whichever column is taller */
  align-self: stretch;
  display: grid;
  align-items: end;
}
.hero-island {
  position: relative;
  top: var(--isle-bleed);
  width: min(100%, 800px);
  margin-inline: auto;
  animation: island-float 12s ease-in-out infinite;
  filter: drop-shadow(0 40px 60px rgba(8,9,11, 0.55));
  user-select: none;
  pointer-events: none;
}

/* the light section underneath receives the island's bleed */
.proof-section {
  padding-top: calc(clamp(56px, 6vw, 96px) + var(--isle-bleed));
}

/* logo marquee carousel */
.logo-marquee {
  overflow: clip;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    #000000 8%,
    #000000 92%,
    transparent
  );
  mask-image: linear-gradient(
    to right,
    transparent,
    #000000 8%,
    #000000 92%,
    transparent
  );
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}
.logo-track {
  display: flex;
  align-items: center;
  height: 72px;
  gap: clamp(44px, 5vw, 84px);
  width: max-content;
  animation: marquee 32s linear infinite;
}
.logo-marquee:hover .logo-track {
  animation-play-state: paused;
}
.logo-track img {
  height: 48px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  filter: grayscale(1) contrast(1.2) brightness(0.72);
  opacity: 0.8;
  transition:
    opacity var(--t-fast),
    filter var(--t-fast);
}
.logo-track img:hover {
  filter: none;
  opacity: 1;
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ------------------------------------------------------------ page hero (inner pages, light) */
.page-head {
  position: relative;
  padding: 150px 0 clamp(40px, 6vw, 72px);
}
.page-head .breadcrumbs {
  margin-bottom: 26px;
}
.page-head h1 {
  max-width: 15ch;
}
.page-head .lede {
  margin-top: 24px;
}
.page-head--center {
  text-align: center;
}
.page-head--center h1,
.page-head--center .lede {
  margin-inline: auto;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.breadcrumbs a:hover {
  color: var(--accent);
}
.breadcrumbs__sep {
  opacity: 0.5;
}

.page-head::after,
.tail .page-hero::after {
  content: "";
  position: absolute;
  top: clamp(96px, 10vw, 150px);
  right: clamp(-30px, -1.4vw, -14px);
  width: clamp(84px, 9vw, 150px);
  aspect-ratio: 520 / 546;
  background: url("/assets/deco-bale-cardboard.webp") no-repeat center / contain;
  filter: drop-shadow(0 16px 22px rgba(16,27,33, 0.25));
  rotate: 8deg;
  pointer-events: none;
  animation: deco-drift 9s ease-in-out infinite;
}
.page-head,
.tail .page-hero {
  position: relative;
}
.page-head h1,
.page-hero__title {
  position: relative;
  z-index: 1;
}

/* ------------------------------------------------------------ sections */
.section {
  padding-block: clamp(72px, 9vw, 140px);
}
.section--tight {
  padding-block: clamp(56px, 6vw, 96px);
}
.section-head {
  margin-bottom: clamp(40px, 5vw, 76px);
}
.section-head .mono {
  display: block;
  margin-bottom: 18px;
}
.section-head--center {
  text-align: center;
}
.section-head--center .lede {
  margin-inline: auto;
  margin-top: 22px;
}
.section-head--split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.dark {
  position: relative;
  background:
    radial-gradient(
      110% 70% at 18% 0%,
      rgba(36,143,175, 0.07),
      transparent 52%
    ),
    radial-gradient(
      130% 100% at 50% 100%,
      rgba(8,9,11, 0.55),
      transparent 60%
    ),
    linear-gradient(180deg, var(--forest-900) 0%, var(--forest-950) 100%);
  color: var(--paper);
}
.dark::after {
  content: "";
  position: absolute;
  top: 24px;
  right: 3%;
  width: clamp(180px, 22vw, 380px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px dashed rgba(246,246,246, 0.09);
  pointer-events: none;
}
.dark ::selection {
  background: var(--accent-bright);
}

/* numbered caption grid (reference: О ПРОЕКТЕ layout) */
.num-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  row-gap: clamp(36px, 5vw, 72px);
}
.num-cap {
  max-width: 380px;
}
.num-cap .num {
  display: block;
  margin-bottom: 14px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--accent);
}
.num-cap h3 {
  margin-bottom: 10px;
  font-size: clamp(19px, 1.5vw, 23px);
  font-weight: 620;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.num-cap p {
  color: var(--ink-soft);
  font-size: 15.5px;
}
.on-dark .num-cap p,
.dark .num-cap p {
  color: var(--paper-dark);
}
.num-cap--1 {
  grid-column: 1 / 5;
}
.num-cap--2 {
  grid-column: 9 / 13;
  justify-self: end;
  text-align: right;
}
.num-cap--3 {
  grid-column: 5 / 9;
  justify-self: center;
  text-align: center;
}

/* even 3-up variant — one alignment, no stagger */
.num-grid--even {
  grid-template-columns: repeat(3, 1fr);
  column-gap: clamp(24px, 3vw, 56px);
}
.num-grid--even .num-cap--1,
.num-grid--even .num-cap--2,
.num-grid--even .num-cap--3 {
  grid-column: auto;
  justify-self: start;
  text-align: left;
  max-width: 36ch;
}

/* stat band */
.stat-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 4vw, 64px);
  padding-block: clamp(36px, 4vw, 56px);
  border-block: 1px solid var(--line);
}
.dark .stat-band {
  border-color: var(--line-dark);
}
.stat-band .stat-num {
  font-size: clamp(38px, 4.6vw, 72px);
  font-weight: 640;
  letter-spacing: -0.04em;
  line-height: 1;
}
.stat-band .stat-num sup {
  font-size: 0.45em;
  font-weight: 560;
  vertical-align: super;
}
.stat-band .stat-label {
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: 14.5px;
  max-width: 260px;
}
.dark .stat-band .stat-label {
  color: var(--paper-dark);
}

/* ------------------------------------------------------------ cards */
.card {
  display: flex;
  flex-direction: column;
  padding: clamp(22px, 2vw, 30px);
  border-radius: var(--r-card);
  background: var(--card);
  box-shadow: 0 1px 2px rgba(16,27,33, 0.04);
  transition:
    transform var(--t-fast) var(--ease-out),
    box-shadow var(--t-fast) var(--ease-out);
}
a.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(16,27,33, 0.08);
}
.card .mono {
  color: var(--accent);
  margin-bottom: 16px;
}
.card h3 {
  font-size: clamp(18px, 1.45vw, 22px);
  font-weight: 620;
  letter-spacing: -0.02em;
  line-height: 1.18;
}
.card p {
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: 15px;
  flex: 1;
}
.card .card-go {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 560;
}

.card-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, 1fr);
}
.card--photo {
  padding: 12px 12px 24px;
}
.card--photo .mono,
.card--photo h3,
.card--photo p,
.card--photo .card-go {
  padding-inline: 12px;
}
.card-media {
  display: block;
  overflow: clip;
  border-radius: calc(var(--r-card) - 6px);
  aspect-ratio: 16 / 10;
  margin-bottom: 18px;
  background: var(--paper-warm);
}
.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms var(--ease-out);
}
a.card--photo:hover .card-media img {
  transform: scale(1.04);
}
.card-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}
.card-grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

.photo-band img,
.photo-strip img,
.feature-tile-media img,
.card-media img {
  filter: saturate(0.94) contrast(1.05);
}

/* wide cinematic photo band */
.photo-band {
  position: relative;
  overflow: clip;
  margin: 0 0 clamp(40px, 5vw, 72px);
  border-radius: calc(var(--r-card) + 4px);
  aspect-ratio: 21 / 9;
  background: var(--paper-warm);
}
.photo-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photo-band figcaption {
  position: absolute;
  left: 18px;
  bottom: 14px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(16,27,33, 0.55);
  color: var(--paper);
  backdrop-filter: blur(6px);
}
@media (max-width: 760px) {
  .photo-band {
    aspect-ratio: 4 / 3;
  }
}

/* photo tile strip (services worlds) */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: clamp(36px, 4.5vw, 64px);
}
.photo-strip figure {
  position: relative;
  overflow: clip;
  margin: 0;
  border-radius: var(--r-tile);
  aspect-ratio: 4 / 3;
  background: rgba(246,246,246, 0.06);
}
.photo-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms var(--ease-out);
}
.photo-strip figure:hover img {
  transform: scale(1.04);
}
.photo-strip figcaption {
  position: absolute;
  left: 12px;
  bottom: 10px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(16,27,33, 0.6);
  color: var(--paper);
  backdrop-filter: blur(6px);
}
@media (max-width: 760px) {
  .photo-strip {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
}

/* step icons */
.step-ic {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: rgba(7,94,124, 0.1);
  color: var(--accent);
}
.step-ic svg {
  width: 20px;
  height: 20px;
}

/* photo cards (mobile-ref style gallery) */
.photo-card {
  position: relative;
  overflow: clip;
  border-radius: var(--r-card);
  aspect-ratio: 4 / 3;
  background: var(--paper-warm);
}
.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms var(--ease-out);
}
a.photo-card:hover img {
  transform: scale(1.03);
}

/* list rows (services on dark) */
.stream-worlds {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(24px, 3vw, 56px);
}
.stream-world {
  padding-top: 18px;
  border-top: 1px solid var(--line-dark);
}
@media (min-width: 1181px) {
  .stream-world:nth-child(2) {
    margin-top: 64px;
  }
  .stream-world:nth-child(3) {
    margin-top: 20px;
  }
  .stream-world:nth-child(4) {
    margin-top: 88px;
  }
}
.stream-world .mono {
  color: var(--accent-soft);
}
.stream-world h3 {
  margin: 14px 0 20px;
  font-size: clamp(20px, 1.7vw, 26px);
  font-weight: 620;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.stream-world ul {
  list-style: none;
}
.stream-world li + li {
  margin-top: 2px;
}
.stream-world a {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 7px 0;
  color: var(--paper-dark);
  font-size: 15px;
  border-radius: 6px;
  transition:
    color var(--t-fast),
    transform var(--t-fast) var(--ease-out);
}
.stream-world a::after {
  content: "\2197";
  font-size: 11px;
  color: var(--accent-soft);
  opacity: 0;
  transition: opacity var(--t-fast);
}
.stream-world a:hover {
  color: #ffffff;
  transform: translateX(3px);
}
.stream-world a:hover::after {
  opacity: 1;
}

/* process steps */
.steps-rows {
  display: grid;
  border-top: 1px solid var(--line);
}
.step-row {
  display: grid;
  grid-template-columns: 110px 1fr 1.1fr;
  gap: clamp(20px, 3vw, 56px);
  padding-block: clamp(28px, 3.4vw, 46px);
  border-bottom: 1px solid var(--line);
}
.step-row .step-num {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--accent);
  padding-top: 8px;
}
.step-row h3 {
  font-size: clamp(24px, 2.4vw, 38px);
  font-weight: 620;
  letter-spacing: -0.028em;
  line-height: 1.05;
}
.step-row p {
  color: var(--ink-soft);
  font-size: 16px;
  max-width: 480px;
}
.step-row ul {
  margin-top: 14px;
  list-style: none;
  display: grid;
  gap: 8px;
}
.step-row ul li {
  position: relative;
  padding-left: 22px;
  color: var(--ink-soft);
  font-size: 15px;
}
.step-row ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 2px;
  background: var(--accent);
}

/* quotes */
.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.quote-card {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: clamp(24px, 2.2vw, 34px);
  border-radius: var(--r-card);
  background: var(--card);
  box-shadow: 0 1px 2px rgba(16,27,33, 0.04);
}
.quote-card blockquote {
  font-size: clamp(16.5px, 1.3vw, 19px);
  font-weight: 480;
  line-height: 1.45;
  letter-spacing: -0.008em;
}
.quote-card blockquote::before {
  content: "\201C";
  color: var(--accent);
}
.quote-card blockquote::after {
  content: "\201D";
  color: var(--accent);
}
.quote-card figcaption {
  margin-top: auto;
  color: var(--ink-soft);
  font-size: 13.5px;
  line-height: 1.45;
}
.quote-card figcaption b {
  display: block;
  color: var(--ink);
  font-weight: 580;
}

/* logos */
.logo-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px 34px;
}
.logo-strip img {
  height: 40px;
  width: auto;
  max-width: 128px;
  object-fit: contain;
  filter: grayscale(1) contrast(1.2) brightness(0.72);
  opacity: 0.75;
  transition:
    opacity var(--t-fast),
    filter var(--t-fast),
    transform var(--t-fast) var(--ease-out);
}
.logo-strip img:hover {
  filter: none;
  opacity: 1;
  transform: translateY(-2px);
}
.dark .logo-strip img {
  filter: grayscale(1) brightness(10);
  opacity: 0.5;
}
.dark .logo-strip img:hover {
  filter: grayscale(1) brightness(10);
  opacity: 0.95;
}

/* service detail feature tiles */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 14px;
}
.feature-tile {
  display: flex;
  flex-direction: column;
  padding: 12px 12px 24px;
  border-radius: var(--r-card);
  background: var(--card);
  box-shadow: 0 1px 2px rgba(16,27,33, 0.04);
}
.feature-tile-media {
  overflow: clip;
  border-radius: calc(var(--r-card) - 6px);
  aspect-ratio: 16 / 10;
  margin-bottom: 20px;
  background: var(--paper-warm);
}
.feature-tile-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.feature-tile h3 {
  padding-inline: 10px;
  font-size: 18.5px;
  font-weight: 620;
  letter-spacing: -0.015em;
}
.feature-tile p {
  padding-inline: 10px;
  margin-top: 9px;
  color: var(--ink-soft);
  font-size: 14.5px;
  line-height: 1.55;
}

/* light chips */
.chip-group + .chip-group {
  margin-top: 34px;
}
.chip-group > .mono {
  display: block;
  margin-bottom: 16px;
}
.stream-chips--light {
  max-width: none;
}
.stream-chips.stream-chips--light li {
  border-color: rgba(20,46,58, 0.18);
  color: #075e7c;
  background: var(--card);
}
.stream-chips.stream-chips--light li:hover {
  border-color: var(--accent);
  color: var(--ink);
  background: var(--card);
}
.stream-chips.stream-chips--links li {
  padding: 0;
}
.stream-chips--links a {
  display: block;
  padding: 9px 18px;
  color: var(--accent);
  font-weight: 540;
}

/* services centrepiece — totem is the focal object, four world cards flank it */
.totem-stage {
  position: relative;
  display: grid;
  grid-template-columns: 1fr minmax(300px, 460px) 1fr;
  gap: clamp(20px, 2.6vw, 44px);
  align-items: start;
}
.totem-media {
  position: relative;
  display: grid;
  justify-items: center;
  align-items: center;
  align-self: center;
}
.totem-media img {
  width: min(100%, 420px);
  height: auto;
  filter: drop-shadow(0 40px 60px rgba(8,9,11, 0.55));
  animation: deco-drift 10s ease-in-out infinite;
}
.totem-side {
  display: grid;
  grid-auto-rows: min-content;
  gap: clamp(16px, 1.6vw, 22px);
  align-content: start;
}
.world-card {
  display: flex;
  flex-direction: column;
  padding: 28px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255, 0.06);
  background: rgba(255,255,255, 0.04);
  transition:
    border-color var(--t-fast),
    background var(--t-fast);
}
.world-card:hover {
  border-color: rgba(255,255,255, 0.12);
  background: rgba(255,255,255, 0.06);
}
.world-card .world-n {
  display: block;
  margin-bottom: 10px;
  color: var(--accent-soft);
}
.world-card h3 {
  margin-bottom: 12px;
  font-size: clamp(18px, 1.4vw, 21px);
  font-weight: 620;
  letter-spacing: -0.015em;
  line-height: 1.2;
}
.world-card ul {
  list-style: none;
  display: grid;
  align-content: start;
  border-top: 1px solid rgba(255,255,255, 0.07);
}
.world-card li + li {
  border-top: 1px solid rgba(255,255,255, 0.07);
}
.world-card a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 44px;
  padding-block: 6px;
  color: var(--paper-dark);
  font-size: 15px;
  transition: color var(--t-fast);
}
.world-card a svg {
  width: 14px;
  height: 14px;
  flex: none;
  opacity: 0.45;
  transition:
    opacity var(--t-fast),
    translate var(--t-fast) var(--ease-out);
}
.world-card a:hover {
  color: #ffffff;
}
.world-card a:hover svg {
  opacity: 1;
  translate: 3px 0;
}
.services-cta {
  margin-top: clamp(32px, 4vw, 52px);
  text-align: center;
}
@media (max-width: 1024px) {
  .totem-stage {
    grid-template-columns: 1fr;
  }
  .totem-media {
    max-width: 440px;
    margin-inline: auto;
  }
  .totem-side {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}

/* services hub worlds */
.services-worlds-hub {
  display: grid;
  gap: clamp(56px, 7vw, 110px);
}
.world-block .world-head {
  margin-bottom: clamp(24px, 3vw, 40px);
}
.world-block .world-head .mono {
  display: block;
  margin-bottom: 14px;
}
.world-block .world-head .lede {
  margin-top: 14px;
}

/* stream chips */
.stream-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  max-width: 1040px;
}
.stream-chips li {
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid var(--line-dark);
  color: var(--paper-dark);
  font-size: 14px;
  transition:
    border-color var(--t-fast),
    color var(--t-fast),
    background var(--t-fast);
}
.stream-chips li:hover {
  border-color: var(--accent-bright);
  color: #ffffff;
  background: rgba(36,143,175, 0.08);
}

/* timeline (process page, dark) */
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 3vw, 44px);
  list-style: none;
  counter-reset: tl;
}
.timeline li {
  position: relative;
  padding-top: 22px;
  border-top: 1px solid var(--line-dark);
}
.timeline li::before {
  content: "";
  position: absolute;
  top: -4.5px;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent-bright);
}
.timeline li p {
  margin-top: 10px;
  font-size: 15.5px;
  color: var(--paper-dark);
  max-width: 240px;
}
@media (max-width: 760px) {
  .timeline {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .timeline li {
    padding-top: 0;
    padding-left: 24px;
    border-top: 0;
    border-left: 1px solid var(--line-dark);
  }
  .timeline li::before {
    top: 4px;
    left: -5px;
  }
}

/* contact channels */
.contact-channels {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 56px;
  margin-top: 36px;
}
.contact-channels a,
.contact-channels span {
  font-size: 16px;
  font-weight: 540;
}
.contact-channels b {
  display: block;
  margin-bottom: 6px;
}
.contact-channels a:hover {
  color: var(--accent);
}

/* versus columns (purpose page) */
.versus-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vw, 40px);
}
.versus-col {
  padding: clamp(26px, 2.6vw, 40px);
  border-radius: var(--r-card);
  background: rgba(246,246,246, 0.04);
  border: 1px solid rgba(246,246,246, 0.08);
}
.versus-col--with {
  background: rgba(36,143,175, 0.09);
  border-color: rgba(36,143,175, 0.28);
}
.versus-col h3 {
  margin-bottom: 22px;
}
.versus-col ul {
  list-style: none;
  display: grid;
  gap: 13px;
}
.versus-col li {
  position: relative;
  padding-left: 26px;
  font-size: 15.5px;
  color: var(--paper-dark);
}
.versus-col li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 12px;
  height: 2px;
  border-radius: 2px;
  background: rgba(246,246,246, 0.35);
}
.versus-col--with li {
  color: var(--paper);
}
.versus-col--with li::before {
  background: var(--accent-bright);
}
@media (max-width: 760px) {
  .versus-grid {
    grid-template-columns: 1fr;
  }
}

/* dark step rows */
.dark .steps-rows,
.steps-rows--dark {
  border-color: var(--line-dark);
}
.dark .step-row {
  border-color: var(--line-dark);
}
.dark .step-row p {
  color: var(--paper-dark);
}
.dark .step-row .step-num {
  color: var(--accent-soft);
}
.dark .step-row ul li {
  color: var(--paper-dark);
}
.dark .step-row ul li::before {
  background: var(--accent-bright);
}

/* team */
.team-card {
  display: flex;
  flex-direction: column;
  padding: clamp(22px, 2vw, 28px);
  border-radius: var(--r-card);
  background: rgba(246,246,246, 0.05);
  border: 1px solid rgba(246,246,246, 0.08);
}
.team-initials {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: rgba(36,143,175, 0.18);
  color: var(--accent-soft);
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
}
.team-card h3 {
  font-size: 17.5px;
  font-weight: 600;
  letter-spacing: -0.012em;
}
.team-role {
  margin: 5px 0 10px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-soft);
}
.team-card p:not(.team-role) {
  color: var(--paper-dark);
  font-size: 13.5px;
  line-height: 1.5;
}

/* ------------------------------------------------------------ FAQ (native details) */
.faq-list {
  display: grid;
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 2px;
  cursor: pointer;
  list-style: none;
  font-size: clamp(16.5px, 1.3vw, 19px);
  font-weight: 560;
  letter-spacing: -0.012em;
  transition: color var(--t-fast);
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary:hover {
  color: var(--accent);
}
.faq-item .faq-icon {
  flex: none;
  position: relative;
  top: 2px;
  width: 18px;
  height: 18px;
  color: var(--accent);
}
.faq-item .faq-icon::before,
.faq-item .faq-icon::after {
  content: "";
  position: absolute;
  inset: 8px 0;
  background: currentColor;
  border-radius: 2px;
  transition: transform var(--t-med) var(--ease-out);
}
.faq-item .faq-icon::after {
  transform: rotate(90deg);
}
.faq-item[open] .faq-icon::after {
  transform: rotate(0deg);
}
.faq-answer {
  padding: 0 44px 24px 2px;
  color: var(--ink-soft);
  font-size: 15.5px;
  max-width: 820px;
}
.faq-answer p + p {
  margin-top: 10px;
}

/* ------------------------------------------------------------ upload zone */
.upload-wrap {
  position: relative;
}
.upload-wrap input[type="file"] {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.upload-zone {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 34px;
  min-height: 240px;
  padding: clamp(24px, 2.4vw, 36px);
  border-radius: var(--r-card);
  border: 1.5px dashed rgba(246,246,246, 0.35);
  background: rgba(246,246,246, 0.04);
  cursor: pointer;
  transition:
    border-color var(--t-fast),
    background var(--t-fast),
    transform var(--t-fast) var(--ease-out);
}
.upload-zone:hover,
.upload-zone:focus-within,
.upload-zone.drag {
  border-color: var(--accent-bright);
  background: rgba(36,143,175, 0.08);
  transform: translateY(-2px);
}
.upload-zone strong {
  font-size: clamp(24px, 2.4vw, 40px);
  font-weight: 620;
  letter-spacing: -0.03em;
  line-height: 1.05;
  max-width: 440px;
}
.upload-zone-foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
}
.upload-zone-foot .mono {
  color: rgba(246,246,246, 0.6);
}
.upload-zone-foot svg {
  width: 30px;
  height: 30px;
  color: var(--accent-bright);
  flex: none;
}

/* lead form */
.lead-form {
  display: grid;
  gap: 12px;
}
.invoice-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(32px, 4vw, 72px);
  align-items: stretch;
}
.invoice-grid .upload-wrap {
  display: grid;
}
.invoice-grid .upload-zone {
  height: 100%;
}
.invoice-fields {
  display: grid;
  gap: 12px;
  align-content: start;
}
.invoice-submit {
  justify-self: start;
  margin-top: 6px;
}
.lead-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.lead-form label {
  display: grid;
  gap: 7px;
  font-size: 13px;
  font-weight: 540;
}
.lead-form input,
.lead-form textarea {
  padding: 13px 16px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--card);
  font-size: 15px;
  transition:
    border-color var(--t-fast),
    box-shadow var(--t-fast);
}
.on-dark .lead-form input,
.on-dark .lead-form textarea {
  border-color: rgba(246,246,246, 0.2);
  background: rgba(246,246,246, 0.06);
  color: var(--paper);
}
.lead-form input:focus,
.lead-form textarea:focus {
  outline: none;
  border-color: var(--accent-bright);
  box-shadow: 0 0 0 3px rgba(36,143,175, 0.15);
}
.lead-form textarea {
  min-height: 96px;
  resize: vertical;
}
.form-note {
  font-size: 12.5px;
  color: var(--ink-faint);
}
.on-dark .form-note {
  color: rgba(246,246,246, 0.5);
}
.form-status {
  font-size: 14.5px;
  font-weight: 540;
}
.form-status.ok {
  color: var(--accent-bright);
}
.form-status.err {
  color: #dd6666;
}
.hp-field {
  position: absolute !important;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

.section.dark > .container {
  position: relative;
  z-index: 1;
}

/* ------------------------------------------------------------ CTA band (pre-footer, dark) */
.cta-band {
  position: relative;
  overflow: visible;
  color: var(--paper);
  background: radial-gradient(
    90% 130% at 82% 110%,
    var(--forest-800) 0%,
    var(--forest-900) 52%,
    var(--forest-950) 100%
  );
}
.cta-band .container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(40px, 6vw, 110px);
  align-items: center;
  padding-block: clamp(72px, 9vw, 130px);
}
.cta-band h2 {
  margin-bottom: 20px;
}
.cta-band .lede {
  color: var(--paper-dark);
}
.cta-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

/* ------------------------------------------------------------ footer */
.site-footer {
  position: relative;
  overflow: clip;
  padding: clamp(64px, 7vw, 104px) 0 34px;
  color: var(--paper);
  background: var(--forest-950);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, minmax(150px, 1fr));
  gap: clamp(32px, 5vw, 80px);
}
.footer-brand p {
  margin-top: 18px;
  max-width: 300px;
  color: rgba(246,246,246, 0.6);
  font-size: 14.5px;
}
.footer-col h4 {
  margin-bottom: 18px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-soft);
}
.footer-col ul {
  list-style: none;
  display: grid;
  gap: 9px;
}
.footer-col a {
  color: rgba(246,246,246, 0.78);
  font-size: 14.5px;
  transition: color var(--t-fast);
}
.footer-col a:hover {
  color: #ffffff;
}
@media (max-width: 940px) {
  .footer-word {
    white-space: normal;
    font-size: clamp(44px, 14vw, 110px);
    line-height: 0.9;
  }
}
.footer-word {
  margin-top: clamp(24px, 4vw, 48px);
  font-size: clamp(56px, 10.6vw, 186px);
  font-weight: 640;
  letter-spacing: -0.035em;
  line-height: 0.85;
  text-transform: uppercase;
  text-align: center;
  color: rgba(246,246,246, 0.08);
  user-select: none;
  white-space: nowrap;
}
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 28px;
  margin-top: clamp(28px, 4vw, 44px);
  padding-top: 24px;
  border-top: 1px solid var(--line-dark);
  color: rgba(246,246,246, 0.5);
}
.footer-legal nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-legal a:hover {
  color: var(--paper);
}

/* ------------------------------------------------------------ tail-page vocabulary (regenerated SEO pages) */
.page-hero {
  position: relative;
  padding: 150px 0 clamp(36px, 5vw, 64px);
}
.page-hero__bg,
.page-hero__overlay,
.cta-logo,
.cta-logo__glow {
  display: none;
}
.page-hero__content {
  width: min(100% - 2 * var(--page-x), var(--content-w));
  margin-inline: auto;
}
.page-hero__title {
  max-width: 22ch;
  font-size: clamp(34px, 5vw, 76px);
  font-weight: 640;
  letter-spacing: -0.035em;
  line-height: 0.98;
  text-transform: uppercase;
  text-wrap: balance;
}
.page-hero__subtitle {
  margin-top: 22px;
  max-width: 640px;
  font-size: clamp(16.5px, 1.4vw, 21px);
  line-height: 1.55;
  color: var(--ink-soft);
}
.page-meta,
.article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 18px;
  margin-top: 24px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.article-tag {
  color: var(--accent);
}

.section .container > .section-title {
  margin-bottom: clamp(28px, 4vw, 48px);
}
.section-title {
  font-size: clamp(26px, 3vw, 44px);
  font-weight: 630;
  letter-spacing: -0.028em;
  line-height: 1.02;
  text-wrap: balance;
}
.label {
  display: block;
  margin-bottom: 14px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}
.gradient-text {
  color: var(--accent);
  background: none;
  -webkit-text-fill-color: currentColor;
}

.stats-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  margin-block: clamp(28px, 4vw, 44px);
}
.stats-bar > div,
.stats-bar > .stat {
  padding: 20px 22px;
  border-radius: var(--r-tile);
  background: var(--card);
  box-shadow: 0 1px 2px rgba(16,27,33, 0.04);
}

/* long-form article body */
.article-content {
  max-width: var(--narrow-w);
  font-size: 16.5px;
  line-height: 1.65;
  color: #075e7c;
}
.article-content h2 {
  margin: clamp(36px, 5vw, 56px) 0 16px;
  font-size: clamp(23px, 2.2vw, 32px);
  font-weight: 630;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--ink);
}
.article-content h3 {
  margin: 30px 0 12px;
  font-size: clamp(18px, 1.5vw, 22px);
  font-weight: 620;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.article-content p {
  margin: 0 0 16px;
}
.article-content ul,
.article-content ol {
  margin: 0 0 18px;
  padding-left: 22px;
  display: grid;
  gap: 8px;
}
.article-content a {
  color: var(--accent);
  font-weight: 540;
  text-decoration: underline;
  text-decoration-color: rgba(7,94,124, 0.3);
  text-underline-offset: 3px;
}
.article-content a:hover {
  text-decoration-color: var(--accent);
}
.article-content img {
  border-radius: var(--r-tile);
  margin-block: 10px;
}
.article-content blockquote {
  margin: 24px 0;
  padding: 18px 24px;
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--r-tile) var(--r-tile) 0;
  background: var(--card);
  font-weight: 480;
}
.article-content table {
  width: 100%;
  margin: 20px 0 24px;
  border-collapse: collapse;
  font-size: 14.5px;
  background: var(--card);
  border-radius: var(--r-tile);
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(16,27,33, 0.04);
}
.article-content th,
.article-content td {
  padding: 12px 16px;
  text-align: left;
}
.article-content th {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
}
.article-content tr:nth-child(even) td {
  background: rgba(20,46,58, 0.025);
}
.table-scroll,
.table-wrap {
  overflow-x: auto;
}
.gloss-link {
  color: var(--accent);
  text-decoration: underline dotted;
  text-underline-offset: 3px;
}

/* related cards */
.related-articles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.related-card {
  display: flex;
  flex-direction: column;
  padding: 24px;
  border-radius: var(--r-card);
  background: var(--card);
  box-shadow: 0 1px 2px rgba(16,27,33, 0.04);
  transition:
    transform var(--t-fast) var(--ease-out),
    box-shadow var(--t-fast) var(--ease-out);
}
.related-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(16,27,33, 0.08);
}
.related-card__tag {
  margin-bottom: 14px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}
.related-card__title {
  font-size: 16.5px;
  font-weight: 590;
  letter-spacing: -0.012em;
  line-height: 1.3;
  flex: 1;
}
.related-card__read {
  margin-top: 18px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.related-articles--4 {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1180px) {
  .related-articles--4 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 1024px) {
  .related-articles--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 760px) {
  .related-articles--4 {
    grid-template-columns: 1fr;
  }
}

/* industries by-area compact rows */
.area-list {
  border-top: 1px solid var(--line);
}
.area-row {
  display: grid;
  grid-template-columns: minmax(200px, 320px) 1fr;
  gap: 12px 32px;
  align-items: baseline;
  padding: 13px 2px;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}
.area-row > span:first-child {
  font-weight: 580;
}
.area-row-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 22px;
}
.area-row-links a {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}
.area-row-links a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}
@media (max-width: 760px) {
  .area-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding-block: 15px;
  }
}

/* resources topic groups */
.res-groups {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(32px, 4vw, 56px) clamp(32px, 5vw, 80px);
}
.res-group h3 {
  margin-bottom: 16px;
}
.res-group ul {
  list-style: none;
  display: grid;
  gap: 2px;
}
.res-group a {
  display: block;
  padding: 8px 2px;
  font-size: 15.5px;
  font-weight: 520;
  line-height: 1.35;
  border-radius: 6px;
  transition:
    color var(--t-fast),
    transform var(--t-fast) var(--ease-out);
}
.res-group a:hover {
  color: var(--accent);
  transform: translateX(3px);
}
@media (max-width: 760px) {
  .res-groups {
    grid-template-columns: 1fr;
  }
}

/* minimal CTA on tail pages */
.cta-minimal {
  padding: clamp(40px, 5vw, 64px);
  border-radius: calc(var(--r-card) + 6px);
  background: linear-gradient(135deg, var(--forest-850), var(--forest-950));
  color: var(--paper);
  text-align: center;
}
.cta-minimal .section-title {
  color: var(--paper);
}
.cta-minimal p {
  margin: 14px auto 0;
  max-width: 520px;
  color: var(--paper-dark);
}
.btn,
.btn--teal {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
  padding: 14px 28px;
  border-radius: 999px;
  background: var(--accent);
  color: #f6f6f6;
  font-weight: 560;
  font-size: 15px;
  transition:
    background var(--t-fast),
    transform var(--t-fast) var(--ease-out);
}
.btn:hover,
.btn--teal:hover {
  background: var(--accent-strong);
  transform: translateY(-2px);
}
.cta-minimal .btn,
.cta-minimal .btn--teal {
  background: var(--paper);
  color: var(--forest-900);
}
.cta-minimal .btn:hover {
  background: #ffffff;
}

/* tail (article) pages: tighter section rhythm than marketing pages */
.tail .page-hero {
  padding-bottom: 24px;
}
.tail .section {
  padding-block: clamp(36px, 4vw, 56px);
}
.tail .section:last-of-type {
  padding-bottom: clamp(64px, 7vw, 100px);
}

/* footer: the island IS the footer centerpiece */
.footer-scene {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 460px) 1fr;
  align-items: start;
  gap: clamp(20px, 3vw, 48px);
}
.footer-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vw, 44px);
  padding-top: clamp(20px, 3vw, 44px);
}
.footer-island {
  width: 100%;
  margin-bottom: clamp(-90px, -8vw, -40px);
  filter: drop-shadow(0 30px 44px rgba(8,9,11, 0.55));
  animation: deco-drift 11s ease-in-out infinite;
  position: relative;
  z-index: 1;
}
.footer-word {
  position: relative;
  z-index: 0;
}
@media (max-width: 1024px) {
  .footer-scene {
    grid-template-columns: 1fr 1fr;
  }
  .footer-island {
    grid-row: 1;
    grid-column: 1 / -1;
    width: min(64vw, 420px);
    justify-self: center;
    margin-bottom: -20px;
  }
}
@media (max-width: 760px) {
  .footer-scene {
    grid-template-columns: 1fr;
  }
  .footer-cols {
    grid-template-columns: 1fr 1fr;
    text-align: center;
  }
  .footer-island {
    width: min(78vw, 360px);
  }
}

/* redesigned footer composition */
.site-footer {
  overflow: visible;
}
@media (max-width: 760px) {
}
@media (max-width: 430px) {
}

/* ------------------------------------------------------------ decorative organic layer
   Transparent elements anchored to section/card edges, bleeding 10–20% past them
   (never floating in empty space). Pure decoration: no pointer events, hidden from AT. */
.section,
.dark,
.cta-band,
.site-footer,
.section--tight {
  position: relative;
}
.deco {
  position: absolute;
  z-index: 3;
  pointer-events: none;
  user-select: none;
}
.deco--flip {
  transform: scaleX(-1);
}

.clip {
  overflow: clip;
}
.section.has-moss {
  padding-bottom: clamp(130px, 13vw, 200px);
}
.band-wrap {
  position: relative;
  margin-bottom: clamp(40px, 5vw, 72px);
}
.deco-rock--band {
  top: clamp(-70px, -4vw, -36px);
  right: clamp(-20px, -1vw, -8px);
  width: clamp(96px, 11vw, 170px);
  animation-delay: -3.5s;
}
.deco-rock--route {
  top: auto;
  bottom: -70px;
  right: clamp(16px, 8vw, 150px);
  width: clamp(100px, 10vw, 160px);
  z-index: 4;
}

/* floating waste objects — boundary + card anchors */
.deco-boundary {
  bottom: clamp(-90px, -6vw, -50px);
  left: 64%;
  width: clamp(150px, 15vw, 240px);
  z-index: 4;
  filter: drop-shadow(0 22px 26px rgba(16,27,33, 0.28));
  animation: deco-drift 9s ease-in-out infinite;
}
.deco-boundary-2 {
  bottom: clamp(-70px, -4vw, -44px);
  right: clamp(20px, 9vw, 160px);
  width: clamp(90px, 9vw, 140px);
  rotate: -6deg;
  z-index: 4;
  filter: drop-shadow(0 18px 22px rgba(16,27,33, 0.26));
  animation: deco-drift 8s ease-in-out infinite;
  animation-delay: -3s;
}
.deco-card-tr {
  top: clamp(-56px, -3.4vw, -32px);
  right: clamp(-22px, -1.2vw, -10px);
  width: clamp(96px, 10.5vw, 160px);
  rotate: 7deg;
  z-index: 4;
  filter: drop-shadow(0 16px 22px rgba(16,27,33, 0.3));
  animation: deco-drift 9s ease-in-out infinite;
  animation-delay: -4.5s;
}
.deco-card-tr--sm {
  width: clamp(80px, 7.5vw, 116px);
  rotate: -6deg;
}
.deco-invoice {
  top: clamp(-64px, -3.6vw, -34px);
  right: clamp(-18px, -1vw, -8px);
  width: clamp(104px, 11vw, 170px);
  rotate: 6deg;
  z-index: 4;
  filter: drop-shadow(0 18px 24px rgba(8,9,11, 0.45));
  animation: deco-drift 9s ease-in-out infinite;
  animation-delay: -1.5s;
}
.deco-cta-obj--invoice {
  width: clamp(92px, 9vw, 140px);
  rotate: -7deg;
}
.deco-cta-obj {
  top: clamp(-46px, -2.6vw, -26px);
  right: clamp(20px, 7vw, 110px);
  width: clamp(84px, 8vw, 126px);
  rotate: 8deg;
  z-index: 4;
  filter: drop-shadow(0 16px 22px rgba(8,9,11, 0.4));
  animation: deco-drift 9.5s ease-in-out infinite;
  animation-delay: -2s;
}

@keyframes deco-drift {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 10px;
  }
}

@media (max-width: 760px) {
  .deco-rock {
    width: 92px;
    top: -34px;
    right: 10px;
  }
  .deco--hide-m {
    display: none;
  }
}

@keyframes island-float {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -12px;
  }
}
@view-transition {
  navigation: auto;
}
@keyframes page-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
body {
  animation: page-in 280ms ease-out both;
}

/* card hover life */
a.card--photo:hover {
  transform: translateY(-3px) rotate(-0.4deg);
}
.photo-strip figure:hover {
  transform: rotate(0.4deg);
}
.photo-strip figure {
  transition: transform var(--t-med) var(--ease-out);
}

/* ------------------------------------------------------------ reveal animation */
.rv,
[data-rv] {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 500ms var(--ease-out),
    transform 500ms var(--ease-out);
}
.rv.in,
[data-rv].in {
  opacity: 1;
  transform: none;
}

/* ------------------------------------------------------------ responsive */
@media (max-width: 1180px) {
  .stream-worlds {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 44px;
  }
  .card-grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  .site-nav {
    display: none;
  }
  .nav-burger {
    display: block;
  }
  .site-header .header-phone {
    display: none;
  }
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .quote-grid {
    grid-template-columns: 1fr;
    max-width: 620px;
    margin-inline: auto;
  }
  .related-articles {
    grid-template-columns: repeat(2, 1fr);
  }
  .num-cap--1 {
    grid-column: 1 / 7;
  }
  .num-cap--2 {
    grid-column: 7 / 13;
  }
  .num-cap--3 {
    grid-column: 1 / 7;
    justify-self: start;
    text-align: left;
  }
  .step-row {
    grid-template-columns: 70px 1fr;
  }
  .step-row p,
  .step-row ul {
    grid-column: 2;
  }
  .cta-band .container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  :root {
    --page-x: 20px;
  }
  .hero-home {
    padding-top: 92px;
    min-height: auto;
  }
  .page-head {
    padding-top: 122px;
  }
  .page-hero {
    padding-top: 122px;
  }
  .section {
    padding-block: 64px;
  }
  .section-head--split {
    flex-direction: column;
    align-items: flex-start;
  }
  .num-grid {
    grid-template-columns: 1fr;
    row-gap: 30px;
  }
  .num-cap--1,
  .num-cap--2,
  .num-cap--3 {
    grid-column: 1;
    justify-self: start;
    text-align: left;
    max-width: none;
  }
  .stat-band {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .card-grid,
  .card-grid--4,
  .card-grid--2 {
    grid-template-columns: 1fr;
  }
  .stream-worlds {
    grid-template-columns: 1fr;
    row-gap: 36px;
  }
  .step-row {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-block: 26px;
  }
  .step-row p,
  .step-row ul {
    grid-column: 1;
  }
  .related-articles {
    grid-template-columns: 1fr;
  }
  .lead-form .form-row {
    grid-template-columns: 1fr;
  }
  .invoice-grid {
    grid-template-columns: 1fr;
  }
  .logo-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-items: center;
    gap: 26px 18px;
  }
  .logo-strip img {
    height: 32px;
    max-width: 100px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid .footer-brand {
    grid-column: 1 / -1;
  }

  .upload-zone {
    min-height: 200px;
  }
}

@media (max-width: 430px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .header-cta {
    padding: 9px 15px;
    font-size: 13px;
  }
}

/* mobile sticky CTA */
.m-cta {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 55;
  display: none;
  justify-content: center;
  opacity: 0;
  translate: 0 16px;
  transition:
    opacity var(--t-med) var(--ease-out),
    translate var(--t-med) var(--ease-out);
  pointer-events: none;
}
.m-cta .btn-pill {
  width: 100%;
  justify-content: space-between;
  box-shadow: 0 12px 30px rgba(8,9,11, 0.45);
}
.m-cta.show {
  opacity: 1;
  translate: 0 0;
  pointer-events: auto;
}
@media (max-width: 760px) {
  .m-cta {
    display: flex;
  }
  body {
    padding-bottom: 0;
  }

  /* snap galleries */
  .photo-strip {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 12px;
    margin-inline: calc(-1 * var(--page-x));
    padding-inline: var(--page-x);
    scrollbar-width: none;
  }
  .photo-strip::-webkit-scrollbar {
    display: none;
  }
  .photo-strip figure {
    flex: 0 0 72%;
    scroll-snap-align: center;
  }

  /* tighter quiet sections */
  .section {
    padding-block: 56px;
  }
  .section--tight {
    padding-block: 44px;
  }
}

/* quote avatars */
.quote-who {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}
.quote-av {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex: none;
  background: rgba(7,94,124, 0.14);
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
}
.quote-card .quote-who figcaption {
  margin-top: 0;
}

/* FAQ exit row */
.faq-exit {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 26px;
  padding: 20px 24px;
  border-radius: var(--r-tile);
  background: var(--card);
  box-shadow: 0 1px 2px rgba(16,27,33, 0.04);
}
.faq-exit p {
  font-weight: 560;
}
.on-dark .faq-exit,
.dark .faq-exit {
  background: rgba(246,246,246, 0.05);
}

/* scrollbar + selection niceties */
html {
  scrollbar-color: rgba(7,94,124, 0.6) transparent;
  scrollbar-width: thin;
}
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-thumb {
  background: rgba(7,94,124, 0.5);
  border-radius: 5px;
}
::-webkit-scrollbar-track {
  background: transparent;
}

/* article lead paragraph */
.tail .article-content > p:first-of-type {
  font-size: 19px;
  line-height: 1.6;
  color: var(--ink);
}

/* ------------------------------------------------------------ motion safety */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .rv,
  [data-rv] {
    opacity: 1;
    transform: none;
  }
}

/* wordmark wrap below 940px (must follow the base rule) */
@media (max-width: 940px) {
  .footer-word {
    white-space: normal;
    font-size: clamp(40px, 13vw, 100px);
    line-height: 0.9;
  }
}

/* ============================================================
   HOMEPAGE — one focal object per section, one alignment,
   strict eyebrow → headline → paragraph → action reading order.
   Scoped to body.home main so the other 581 pages are untouched.
   ============================================================ */
body.home main .section {
  padding-block: clamp(96px, 10vw, 160px);
}
body.home main .section--tight {
  padding-block: clamp(72px, 7.5vw, 116px);
}
body.home main .proof-section {
  padding-top: calc(clamp(56px, 6vw, 96px) + var(--isle-bleed));
  padding-bottom: clamp(56px, 6vw, 92px);
}
/* no dashed decorative circle on the home dark sections */
body.home .dark::after {
  display: none;
}

/* proof band — four thin-ruled columns */
.proof-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 2.6vw, 40px);
}
.proof-item {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.proof-item .mono {
  display: block;
  margin-bottom: 10px;
  color: var(--accent);
}
.proof-item p {
  color: var(--ink-soft);
  font-size: 15.5px;
  max-width: 30ch;
}

.logos-label {
  margin-top: clamp(52px, 6vw, 88px);
  margin-bottom: 24px;
  text-align: center;
}
body.home .logo-track img {
  height: 48px;
  max-width: 150px;
  opacity: 0.8;
}
body.home .logo-track img:hover {
  opacity: 1;
}

.steps-foot {
  margin-top: 36px;
}
.feedback-eyebrow {
  margin-bottom: 26px;
}

/* ---------- homepage tablet ---------- */
@media (max-width: 1024px) {
  body.home .totem-media {
    order: -1;
  }
  .num-grid--even {
    grid-template-columns: 1fr 1fr;
    row-gap: clamp(28px, 4vw, 44px);
  }
  .proof-band {
    grid-template-columns: 1fr 1fr;
    gap: 28px 24px;
  }
}

/* ---------- homepage mobile ---------- */
@media (max-width: 900px) {
  body.home .hero-dark {
    overflow-x: clip;
    overflow-y: visible;
  }
  .hero-home {
    grid-template-columns: 1fr;
    gap: clamp(28px, 6vw, 48px);
    min-height: 0;
    padding-top: clamp(104px, 16vh, 132px);
  }
  .hero-copy {
    max-width: none;
  }
  .hero-h1 {
    font-size: clamp(46px, 12.5vw, 74px);
  }
  .hero-island {
    width: 115%;
    margin-inline: -7.5%;
    margin-bottom: calc(-1 * var(--isle-bleed));
  }
}

@media (max-width: 760px) {
  body.home main .section {
    padding-block: 72px;
  }
  body.home main .section--tight {
    padding-block: 60px;
  }
  body.home main .proof-section {
    padding-top: calc(40px + var(--isle-bleed));
    padding-bottom: 56px;
  }
  .num-grid--even {
    grid-template-columns: 1fr;
  }
  .num-grid--even .num-cap--1,
  .num-grid--even .num-cap--2,
  .num-grid--even .num-cap--3 {
    max-width: none;
  }
  body.home .totem-side {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .world-card {
    padding: 22px;
  }
  .hero-actions .btn-pill {
    flex: 1 1 auto;
    justify-content: space-between;
  }
}

/* two adjacent light sections must not open a hole between them */
body.home main #process {
  padding-bottom: clamp(48px, 5vw, 80px);
}
body.home main .feedback-section {
  padding-top: clamp(28px, 3.4vw, 52px);
}

/* tighter joins where two same-coloured sections meet */
body.home main .proof-section {
  padding-bottom: clamp(40px, 4vw, 64px);
}
body.home main #model {
  padding-top: clamp(72px, 8vw, 120px);
}
body.home main #invoice {
  padding-bottom: clamp(64px, 7vw, 104px);
}
/* ============================================================
   HOMEPAGE V4 — light-first editorial. Section skeleton from the
   approved landing-v2 concept, rebuilt on the V3 design system.
   Everything is scoped to body.home-v4 so the other 582 pages
   (including the archived /v3/ homepage) are untouched.
   ============================================================ */
body.home-v4 {
  --v4-head: #101b21;
  --v4-body: #075e7c;
  --v4-muted: #53565b;
  --v4-tint: #e9eaec;
  --v4-hair: rgba(16,27,33, 0.1);
  --v4-hair-soft: rgba(16,27,33, 0.07);
  --v4-shadow:
    0 1px 2px rgba(16,27,33, 0.06), 0 12px 32px rgba(16,27,33, 0.06);
  color: var(--v4-body);
}

/* ---------- bands ---------- */
body.home-v4 .v4-sec {
  padding-block: clamp(88px, 9vw, 150px);
}
body.home-v4 .v4-band--white {
  background: #ffffff;
}
body.home-v4 .v4-band--tint {
  background: var(--v4-tint);
}

/* ---------- type ---------- */
body.home-v4 .v4-h1 {
  font-size: clamp(48px, 5.4vw, 84px);
  font-weight: 680;
  font-variation-settings: "wght" 680;
  letter-spacing: -0.035em;
  line-height: 1;
  color: var(--v4-head);
  text-wrap: balance;
}
body.home-v4 .v4-h2 {
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 680;
  font-variation-settings: "wght" 680;
  letter-spacing: -0.03em;
  line-height: 1.02;
  color: var(--v4-head);
  text-wrap: balance;
}
body.home-v4 .v4-h3 {
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 640;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--v4-head);
}
body.home-v4 .v4-lede {
  margin-top: 22px;
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.55;
  color: var(--v4-body);
  max-width: 60ch;
}
body.home-v4 .v4-head {
  margin-bottom: clamp(40px, 5vw, 72px);
}
body.home-v4 .v4-head > .mono,
body.home-v4 .v4-eyebrow {
  display: block;
  margin-bottom: 18px;
  text-wrap: balance;
}
body.home-v4 h3 {
  color: var(--v4-head);
}

/* ---------- card ---------- */
body.home-v4 .v4-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 28px;
  box-shadow: var(--v4-shadow);
}
/* on a pure-white band a white card would vanish — use the paper tone */
body.home-v4 .v4-band--white .v4-card {
  background: var(--paper);
}

/* ---------- icon tile ---------- */
body.home-v4 .v4-ic {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  flex: none;
  border-radius: 14px;
  background: rgba(7,94,124, 0.1);
  color: var(--accent-strong);
}
body.home-v4 .v4-ic svg {
  width: 24px;
  height: 24px;
}

/* ============================ 01 hero ============================ */
body.home-v4 .v4-hero {
  position: relative;
  z-index: 2;
  overflow: visible;
  padding-top: clamp(124px, 14vh, 176px);
  padding-bottom: 0;
}
body.home-v4 .v4-hero-in {
  display: grid;
  grid-template-columns: minmax(0, 48fr) minmax(0, 52fr);
  align-items: center;
  gap: clamp(24px, 3vw, 56px);
}
body.home-v4 .v4-hero-copy {
  position: relative;
  z-index: 3;
  max-width: 38rem;
}
body.home-v4 .v4-hero-sub {
  margin-top: 26px;
  max-width: 52ch;
  font-size: clamp(16px, 1.15vw, 18.5px);
  line-height: 1.6;
  color: var(--v4-body);
}
body.home-v4 .v4-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}
body.home-v4 .v4-hero-art {
  position: relative;
  z-index: 2;
  min-width: 0;
  align-self: stretch;
  display: grid;
  align-items: end;
}
body.home-v4 .v4-island {
  position: relative;
  top: var(--isle-bleed);
  width: min(100%, 820px);
  margin-inline: auto;
  animation: island-float 12s ease-in-out infinite;
  filter: drop-shadow(0 34px 44px rgba(16,27,33, 0.2));
  user-select: none;
  pointer-events: none;
}

/* ============================ 02 logos ============================ */
body.home-v4 .v4-logos {
  padding-top: calc(clamp(36px, 4vw, 64px) + var(--isle-bleed));
  padding-bottom: clamp(40px, 4.5vw, 72px);
}
body.home-v4 .v4-logos-label {
  margin-bottom: 26px;
  text-align: center;
}
body.home-v4 .logo-track {
  height: 64px;
}
body.home-v4 .logo-track img {
  height: 44px;
  max-width: 150px;
  filter: none;
  opacity: 1;
}

/* ============================ 03 trust ============================ */
body.home-v4 .v4-trust {
  padding-top: clamp(24px, 3vw, 48px);
}
body.home-v4 .v4-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 1.6vw, 22px);
}
body.home-v4 .v4-trust-item h3 {
  margin-top: 20px;
  font-size: 17.5px;
  font-weight: 600;
  letter-spacing: -0.015em;
}
body.home-v4 .v4-trust-item p {
  margin-top: 7px;
  font-size: 14.5px;
  color: var(--v4-muted);
}

/* ============================ 04 your bin ============================ */
body.home-v4 .v4-bin-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(20px, 2.4vw, 34px);
  align-items: stretch;
}
body.home-v4 .v4-bin-stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 268px);
  gap: clamp(16px, 2vw, 28px);
  align-items: center;
  padding: clamp(24px, 2.4vw, 36px);
}
body.home-v4 .v4-bin-obj {
  width: 100%;
  max-width: 380px;
  justify-self: center;
  filter: drop-shadow(0 22px 30px rgba(16,27,33, 0.16));
}
body.home-v4 .v4-stream-pills {
  display: grid;
  gap: 10px;
}
body.home-v4 .v4-pill {
  display: flex;
  align-items: center;
  gap: 11px;
  width: 100%;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--paper);
  color: var(--v4-body);
  font-size: 14.5px;
  font-weight: 540;
  text-align: left;
  cursor: pointer;
  transition:
    background var(--t-fast) var(--ease-out),
    color var(--t-fast) var(--ease-out),
    border-color var(--t-fast) var(--ease-out),
    transform var(--t-fast) var(--ease-out);
}
body.home-v4 .v4-pill:hover {
  border-color: rgba(7,94,124, 0.38);
  color: var(--v4-head);
  transform: translateX(2px);
}
body.home-v4 .v4-pill.is-on {
  background: var(--accent);
  border-color: var(--accent);
  color: #f6f6f6;
}
body.home-v4 .v4-pill-dot {
  width: 8px;
  height: 8px;
  flex: none;
  border-radius: 50%;
  background: var(--accent);
}
body.home-v4 .v4-pill.is-on .v4-pill-dot {
  background: rgba(246,246,246, 0.92);
}
body.home-v4 .v4-stream-panel {
  padding: clamp(24px, 2.4vw, 36px);
  align-content: start;
}
body.home-v4 .v4-stream-media {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--paper);
}
body.home-v4 .v4-stream-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
body.home-v4 .v4-stream-media--object {
  display: grid;
  place-items: center;
}
body.home-v4 .v4-stream-media--object img {
  width: auto;
  height: 84%;
  object-fit: contain;
  filter: drop-shadow(0 14px 22px rgba(16,27,33, 0.16));
}
body.home-v4 .v4-stream h3 {
  margin-top: 24px;
  font-size: clamp(21px, 1.8vw, 27px);
  font-weight: 640;
  letter-spacing: -0.025em;
  line-height: 1.1;
}
body.home-v4 .v4-stream p {
  margin-top: 12px;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--v4-body);
  max-width: 52ch;
}
body.home-v4 .v4-tag {
  display: inline-block;
  margin-top: 20px;
  padding: 8px 15px;
  border-radius: 999px;
  background: rgba(7,94,124, 0.1);
  color: var(--accent-strong);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ============================ 05 services ============================ */
body.home-v4 .v4-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
body.home-v4 .v4-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--paper);
  color: var(--v4-head);
  font-size: 15px;
  font-weight: 540;
  transition:
    background var(--t-fast) var(--ease-out),
    transform var(--t-fast) var(--ease-out);
}
body.home-v4 .v4-chip:hover {
  background: rgba(7,94,124, 0.11);
  transform: translateY(-2px);
}
body.home-v4 .v4-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 2.4vw, 40px);
  margin-top: clamp(48px, 5vw, 82px);
  padding-top: clamp(30px, 3vw, 46px);
  border-top: 1px solid var(--v4-hair);
}
body.home-v4 .v4-stat b {
  display: block;
  font-size: clamp(32px, 3.4vw, 52px);
  font-weight: 660;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--v4-head);
  font-variant-numeric: tabular-nums;
}
body.home-v4 .v4-stat span {
  display: block;
  margin-top: 10px;
  font-size: 14px;
  color: var(--v4-muted);
  max-width: 22ch;
}

/* ============================ 06 material trio ============================ */
body.home-v4 .v4-trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.2vw, 32px);
}
body.home-v4 .v4-plinth {
  position: relative;
  display: grid;
  place-items: center;
  height: clamp(220px, 20vw, 286px);
  margin-bottom: 26px;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(180deg, #f6f6f6 0%, #e9eaec 100%);
}
body.home-v4 .v4-plinth img {
  position: relative;
  z-index: 1;
  max-height: 78%;
  width: auto;
}
body.home-v4 .v4-plinth::after {
  content: "";
  position: absolute;
  bottom: 15%;
  left: 50%;
  transform: translateX(-50%);
  width: 54%;
  height: 20px;
  border-radius: 50%;
  background: radial-gradient(
    closest-side,
    rgba(16,27,33, 0.2),
    transparent 100%
  );
}
body.home-v4 .v4-plinth--photo img {
  max-height: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
body.home-v4 .v4-plinth--photo::after {
  display: none;
}
body.home-v4 .v4-mat h3 {
  font-size: clamp(20px, 1.6vw, 24px);
  font-weight: 620;
  letter-spacing: -0.02em;
}
body.home-v4 .v4-mat p {
  margin-top: 8px;
  font-size: 15px;
  color: var(--v4-muted);
}

/* ============================ 07 invoice / savings ============================ */
body.home-v4 .v4-inv-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(18px, 2.2vw, 32px);
  align-items: stretch;
}
body.home-v4 .v4-inv-obj {
  display: grid;
  place-items: center;
  padding: clamp(28px, 3vw, 46px);
}
body.home-v4 .v4-inv-obj img {
  width: min(100%, 300px);
  filter: drop-shadow(0 20px 32px rgba(16,27,33, 0.16));
}
body.home-v4 .v4-inv-lines {
  display: grid;
  align-content: center;
  padding: clamp(26px, 2.6vw, 42px);
}
body.home-v4 .v4-inv-line {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
  border-bottom: 1px solid var(--v4-hair-soft);
  font-size: 15.5px;
  color: var(--v4-body);
}
body.home-v4 .v4-inv-vals {
  display: inline-flex;
  align-items: baseline;
  gap: 14px;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
body.home-v4 .v4-inv-vals s {
  color: var(--v4-muted);
  text-decoration-thickness: 1px;
}
body.home-v4 .v4-inv-vals b {
  color: var(--accent);
  font-weight: 600;
}
body.home-v4 .v4-inv-total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  margin-top: 20px;
  padding-top: 22px;
  border-top: 1px solid var(--v4-hair);
}
body.home-v4 .v4-inv-total > span:first-child {
  font-weight: 600;
  color: var(--v4-head);
}
body.home-v4 .v4-inv-big {
  font-size: clamp(26px, 2.4vw, 36px);
  letter-spacing: -0.03em;
}
body.home-v4 .v4-inv-total small {
  font-size: 13px;
  color: var(--v4-muted);
}
body.home-v4 .v4-calc {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(28px, 3vw, 56px);
  align-items: center;
  margin-top: clamp(18px, 2.2vw, 32px);
  padding: clamp(28px, 3vw, 46px);
}
body.home-v4 .v4-calc .mono {
  display: block;
  margin-bottom: 14px;
}
body.home-v4 .v4-range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  margin-top: 28px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    var(--accent) var(--fill, 21%),
    rgba(16,27,33, 0.12) var(--fill, 21%)
  );
  cursor: pointer;
}
body.home-v4 .v4-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent);
  border: 4px solid #ffffff;
  box-shadow: 0 2px 8px rgba(16,27,33, 0.28);
  cursor: grab;
}
body.home-v4 .v4-range::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent);
  border: 4px solid #ffffff;
  box-shadow: 0 2px 8px rgba(16,27,33, 0.28);
  cursor: grab;
}
body.home-v4 .v4-calc-bill {
  margin-top: 18px;
  font-size: 14.5px;
  color: var(--v4-muted);
}
body.home-v4 .v4-calc-bill b {
  font-size: 22px;
  font-weight: 640;
  letter-spacing: -0.02em;
  color: var(--v4-head);
  font-variant-numeric: tabular-nums;
}
body.home-v4 .v4-calc-right {
  padding-left: clamp(24px, 2.4vw, 42px);
  border-left: 1px solid var(--v4-hair);
}
body.home-v4 .v4-calc-right .mono {
  margin-bottom: 0;
  color: var(--v4-muted);
}
body.home-v4 .v4-calc-right > b {
  display: block;
  margin: 12px 0;
  font-size: clamp(34px, 3.6vw, 54px);
  font-weight: 660;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}
body.home-v4 .v4-calc-sub {
  display: block;
  max-width: 34ch;
  font-size: 14.5px;
  color: var(--v4-muted);
}

/* ============================ 08 three steps ============================ */
body.home-v4 .v4-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 3.4vw, 60px);
}
body.home-v4 .v4-step {
  position: relative;
  padding-top: 22px;
}
body.home-v4 .v4-ghost {
  position: absolute;
  top: -22px;
  left: -6px;
  z-index: 0;
  font-size: clamp(72px, 7vw, 112px);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1;
  color: rgba(16,27,33, 0.07);
  pointer-events: none;
}
body.home-v4 .v4-step > .v4-ic,
body.home-v4 .v4-step h3,
body.home-v4 .v4-step p {
  position: relative;
  z-index: 1;
}
body.home-v4 .v4-step h3 {
  margin-top: 24px;
  font-size: clamp(20px, 1.7vw, 26px);
  font-weight: 630;
  letter-spacing: -0.025em;
  line-height: 1.12;
  max-width: 18ch;
}
body.home-v4 .v4-step p {
  margin-top: 13px;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--v4-muted);
  max-width: 38ch;
}

/* ============================ 09 the switch ============================ */
body.home-v4 .v4-switch {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(32px, 4vw, 76px);
  align-items: center;
}
body.home-v4 .v4-frame {
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--v4-shadow);
}
body.home-v4 .v4-frame img {
  width: 100%;
}

/* ============================ 10 journey ============================ */
body.home-v4 .v4-journey {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 28px);
}
body.home-v4 .v4-jcard {
  position: relative;
  display: grid;
  min-height: clamp(340px, 33vw, 460px);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--v4-shadow);
}
body.home-v4 .v4-jcard > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
body.home-v4 .v4-jcap {
  position: relative;
  align-self: end;
  padding: clamp(22px, 2.2vw, 30px);
  padding-top: clamp(90px, 11vw, 150px);
  color: #f6f6f6;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(8,9,11, 0.34) 34%,
    rgba(8,9,11, 0.9) 100%
  );
}
body.home-v4 .v4-jcap .mono {
  display: block;
  margin-bottom: 12px;
  color: var(--accent-soft);
}
body.home-v4 .v4-jcap h3 {
  font-size: clamp(21px, 1.8vw, 27px);
  font-weight: 630;
  letter-spacing: -0.02em;
  line-height: 1.12;
  color: #f6f6f6;
}
body.home-v4 .v4-jcap p {
  margin-top: 10px;
  max-width: 30ch;
  font-size: 14.5px;
  line-height: 1.5;
  color: rgba(246,246,246, 0.84);
}

/* ============================ 11 industries ============================ */
body.home-v4 .v4-inds {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 1.6vw, 20px);
}
body.home-v4 .v4-ind {
  display: grid;
  gap: 18px;
  align-content: start;
  padding: 24px;
  transition:
    transform var(--t-fast) var(--ease-out),
    box-shadow var(--t-fast) var(--ease-out);
}
body.home-v4 .v4-ind:hover {
  transform: translateY(-3px);
  box-shadow:
    0 1px 2px rgba(16,27,33, 0.07),
    0 18px 40px rgba(16,27,33, 0.1);
}
body.home-v4 .v4-ind-name {
  font-size: 16px;
  font-weight: 560;
  letter-spacing: -0.01em;
  color: var(--v4-head);
}
body.home-v4 .v4-inds-foot {
  margin-top: clamp(28px, 3vw, 44px);
}

/* ============================ 12 commodity ============================ */
body.home-v4 .v4-commodity {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 4vw, 72px);
  align-items: center;
}
body.home-v4 .v4-comm-visual {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 186px);
  gap: clamp(16px, 2vw, 26px);
  align-items: center;
}
body.home-v4 .v4-seeds img {
  width: 100%;
}
body.home-v4 .v4-comm-stats {
  display: grid;
  gap: 12px;
}
body.home-v4 .v4-comm-stat {
  padding: 18px 20px;
}
body.home-v4 .v4-comm-stat b {
  display: block;
  font-size: 23px;
  font-weight: 660;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--v4-head);
  font-variant-numeric: tabular-nums;
}
body.home-v4 .v4-comm-stat span {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  line-height: 1.4;
  color: var(--v4-muted);
}
body.home-v4 .v4-comm-cta {
  margin-top: clamp(28px, 3vw, 40px);
}

/* ============================ 13 faq ============================ */
body.home-v4 .v4-faq {
  max-width: 940px;
  border-top: 1px solid var(--v4-hair);
}
body.home-v4 .v4-faq-item {
  border-bottom: 1px solid var(--v4-hair);
}
body.home-v4 .v4-faq-item h3 {
  margin: 0;
  font: inherit;
}
body.home-v4 .v4-faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: 100%;
  padding: 25px 0;
  border: 0;
  background: none;
  text-align: left;
  cursor: pointer;
  font-size: clamp(17px, 1.4vw, 21px);
  font-weight: 570;
  letter-spacing: -0.015em;
  line-height: 1.3;
  color: var(--v4-head);
  transition: color var(--t-fast) var(--ease-out);
}
body.home-v4 .v4-faq-q:hover {
  color: var(--accent);
}
body.home-v4 .v4-faq-ic {
  position: relative;
  width: 20px;
  height: 20px;
  flex: none;
}
body.home-v4 .v4-faq-ic::before,
body.home-v4 .v4-faq-ic::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 1.8px;
  border-radius: 2px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform var(--t-med) var(--ease-out);
}
body.home-v4 .v4-faq-ic::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
body.home-v4 .v4-faq-q[aria-expanded="true"] {
  color: var(--accent);
}
body.home-v4 .v4-faq-q[aria-expanded="true"] .v4-faq-ic::after {
  transform: translate(-50%, -50%) rotate(180deg);
}
body.home-v4 .v4-faq-a {
  padding-bottom: 28px;
  max-width: 74ch;
  animation: v4-fade 260ms var(--ease-out) both;
}
body.home-v4 .v4-faq-a p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--v4-body);
}
@keyframes v4-fade {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* ============================ 14 contact (the one dark band) ============================ */
body.home-v4 .v4-contact {
  position: relative;
  background: radial-gradient(
    120% 100% at 14% 0%,
    var(--forest-850) 0%,
    var(--forest-900) 46%,
    var(--forest-950) 100%
  );
  color: var(--paper);
}
body.home-v4 .v4-contact .v4-h2,
body.home-v4 .v4-contact h3 {
  color: var(--paper);
}
body.home-v4 .v4-contact .v4-lede {
  color: var(--paper-dark);
}
body.home-v4 .v4-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(36px, 4.5vw, 84px);
  align-items: start;
}
body.home-v4 .v4-checks {
  list-style: none;
  display: grid;
  gap: 13px;
  margin-top: clamp(28px, 3vw, 40px);
}
body.home-v4 .v4-checks li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15.5px;
  color: var(--paper-dark);
}
body.home-v4 .v4-checks svg {
  width: 18px;
  height: 18px;
  flex: none;
  margin-top: 3px;
  color: var(--accent-bright);
}
body.home-v4 .v4-quotes {
  display: grid;
  gap: 12px;
  margin-top: clamp(32px, 3.4vw, 46px);
}
body.home-v4 .v4-quote {
  margin: 0;
  padding: 20px 22px;
  border-radius: 16px;
  background: rgba(246,246,246, 0.05);
  box-shadow: inset 0 0 0 1px rgba(246,246,246, 0.09);
}
body.home-v4 .v4-quote blockquote {
  font-size: 15.5px;
  line-height: 1.5;
  color: var(--paper);
}
body.home-v4 .v4-quote figcaption {
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(246,246,246, 0.5);
}
body.home-v4 .v4-quote figcaption b {
  display: block;
  margin-bottom: 4px;
  color: var(--accent-soft);
}
body.home-v4 .v4-contact-direct {
  margin-top: clamp(26px, 3vw, 36px);
  font-size: 14.5px;
  color: rgba(246,246,246, 0.62);
}
body.home-v4 .v4-contact-direct a {
  color: var(--accent-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
}
body.home-v4 .v4-form-col {
  position: relative;
}
body.home-v4 .v4-form-deco {
  position: absolute;
  top: -52px;
  right: -22px;
  z-index: 3;
  width: clamp(118px, 12vw, 170px);
  transform: rotate(6deg);
  filter: drop-shadow(0 22px 34px rgba(8,9,11, 0.55));
  pointer-events: none;
}
body.home-v4 .v4-form-card {
  position: relative;
  z-index: 2;
  grid-template-columns: 1fr;
  gap: 20px;
  padding: clamp(26px, 2.8vw, 40px);
  border-radius: 24px;
  background: rgba(246,246,246, 0.055);
  box-shadow: inset 0 0 0 1px rgba(246,246,246, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
body.home-v4 .v4-form-card .upload-zone {
  min-height: 168px;
  gap: 22px;
}
body.home-v4 .v4-form-card .upload-zone strong {
  font-size: clamp(20px, 1.7vw, 26px);
}

/* ============================ responsive ============================ */
@media (max-width: 1180px) {
  body.home-v4 .v4-inds {
    grid-template-columns: repeat(3, 1fr);
  }
  body.home-v4 .v4-commodity {
    grid-template-columns: 1fr;
    gap: clamp(30px, 4vw, 46px);
  }
  body.home-v4 .v4-comm-visual {
    grid-template-columns: minmax(0, 1fr) minmax(0, 200px);
  }
}

@media (max-width: 1024px) {
  body.home-v4 .v4-bin-grid,
  body.home-v4 .v4-inv-grid,
  body.home-v4 .v4-calc,
  body.home-v4 .v4-switch,
  body.home-v4 .v4-contact-grid {
    grid-template-columns: 1fr;
  }
  body.home-v4 .v4-calc-right {
    padding-left: 0;
    padding-top: 26px;
    border-left: 0;
    border-top: 1px solid var(--v4-hair);
  }
  body.home-v4 .v4-inv-obj img {
    width: min(100%, 240px);
  }
  body.home-v4 .v4-trust-grid,
  body.home-v4 .v4-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  body.home-v4 .v4-form-deco {
    top: -44px;
    right: -8px;
  }
}

@media (max-width: 900px) {
  body.home-v4 .v4-hero {
    overflow-x: clip;
    overflow-y: visible;
    padding-top: clamp(108px, 16vh, 136px);
  }
  body.home-v4 .v4-hero-in {
    grid-template-columns: 1fr;
    gap: clamp(28px, 6vw, 48px);
  }
  body.home-v4 .v4-hero-copy {
    max-width: none;
  }
  body.home-v4 .v4-h1 {
    font-size: clamp(44px, 12vw, 74px);
  }
  body.home-v4 .v4-island {
    width: 115%;
    margin-inline: -7.5%;
    margin-bottom: calc(-1 * var(--isle-bleed));
  }
  body.home-v4 .v4-steps {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  body.home-v4 .v4-step h3,
  body.home-v4 .v4-step p {
    max-width: 46ch;
  }
  body.home-v4 .v4-inds {
    grid-template-columns: repeat(2, 1fr);
  }
  body.home-v4 .v4-form-deco {
    display: none;
  }
  /* horizontal snap rows where three columns stop fitting */
  body.home-v4 .v4-trio,
  body.home-v4 .v4-journey {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: 78%;
    gap: 14px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  body.home-v4 .v4-trio::-webkit-scrollbar,
  body.home-v4 .v4-journey::-webkit-scrollbar,
  body.home-v4 .v4-stream-pills::-webkit-scrollbar {
    display: none;
  }
  body.home-v4 .v4-trio > *,
  body.home-v4 .v4-journey > * {
    scroll-snap-align: start;
  }
}

@media (max-width: 768px) {
  body.home-v4 .v4-sec {
    padding-block: 74px;
  }
  body.home-v4 .v4-head {
    margin-bottom: 36px;
  }
  body.home-v4 .v4-card {
    padding: 22px;
  }
  body.home-v4 .v4-bin-stage {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  body.home-v4 .v4-bin-obj {
    max-width: 260px;
  }
  body.home-v4 .v4-stream-pills {
    display: flex;
    gap: 9px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  body.home-v4 .v4-pill {
    flex: 0 0 auto;
    width: auto;
    scroll-snap-align: start;
  }
  body.home-v4 .v4-hero-actions .btn-pill {
    flex: 1 1 auto;
    justify-content: space-between;
  }
  body.home-v4 .v4-inv-line,
  body.home-v4 .v4-inv-total {
    gap: 14px;
    font-size: 14.5px;
  }
  body.home-v4 .v4-jcard {
    min-height: 320px;
  }
  body.home-v4 .v4-comm-visual {
    grid-template-columns: 1fr;
  }
  body.home-v4 .v4-comm-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  body.home-v4 .v4-comm-stat b {
    font-size: 19px;
  }
  body.home-v4 .v4-comm-stat span {
    font-size: 12px;
  }
}

@media (max-width: 430px) {
  body.home-v4 .v4-trust-grid {
    gap: 12px;
  }
  body.home-v4 .v4-comm-stats {
    grid-template-columns: 1fr;
  }
  body.home-v4 .v4-trio,
  body.home-v4 .v4-journey {
    grid-auto-columns: 86%;
  }
}
/* ---------- v4 homepage: typographic + layout corrections after screenshot review ---------- */

body.home-v4 .v4-commodity .v4-h2 {
  font-size: clamp(34px, 3.6vw, 52px);
}

/* faq — head and list side by side so the band is not half empty */
body.home-v4 .v4-faq-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(32px, 4vw, 72px);
  align-items: start;
}
body.home-v4 .v4-faq-wrap .v4-head {
  position: sticky;
  top: 112px;
  margin-bottom: 0;
}
body.home-v4 .v4-faq {
  max-width: none;
}

/* contact — the breakout invoice must clear the upload zone's label and icon */
body.home-v4 .v4-form-deco {
  top: -84px;
  right: -30px;
  width: clamp(104px, 10vw, 140px);
}
body.home-v4 .v4-contact-direct {
  overflow-wrap: anywhere;
}

@media (max-width: 1024px) {
  body.home-v4 .v4-faq-wrap {
    grid-template-columns: 1fr;
  }
  body.home-v4 .v4-faq-wrap .v4-head {
    position: static;
    margin-bottom: clamp(32px, 4vw, 56px);
  }
  body.home-v4 .v4-form-deco {
    top: -74px;
    right: -10px;
  }
}

@media (max-width: 768px) {
  body.home-v4 .v4-h2 {
    font-size: clamp(31px, 8.4vw, 42px);
  }
  body.home-v4 .v4-commodity .v4-h2 {
    font-size: clamp(31px, 8.4vw, 42px);
  }
  body.home-v4 .v4-chip {
    gap: 8px;
    padding: 10px 15px;
    font-size: 13.5px;
  }
  body.home-v4 .v4-trust-item h3 {
    margin-top: 16px;
    font-size: 16.5px;
  }
  body.home-v4 .v4-trust-item p {
    font-size: 13.5px;
  }
  body.home-v4 .v4-bin-obj {
    max-width: 250px;
  }
}

/* breakout invoice: anchored to the form card's top-right corner (bleeds past
   the edge, never floats free) and clear of the upload zone's label and icon */
body.home-v4 .v4-form-deco {
  top: -46px;
  right: -26px;
  width: clamp(100px, 9.5vw, 132px);
}
@media (max-width: 1024px) {
  body.home-v4 .v4-form-deco {
    top: -42px;
    right: -18px;
  }
}

/* ---------- v4: sticky header reads light on the light page ----------
   The shared .scrolled state is a dark glass bar; on body.home-v4 that
   clashes with the off-white ground, so it becomes light frosted glass and
   flips back to the dark glass only while a dark band (#contact / footer)
   is under it — toggled by .over-dark in js/home.js. */
body.home-v4 .site-header.scrolled {
  color: var(--v4-head);
  background: rgba(246,246,246, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(16,27,33, 0.08);
}
body.home-v4 .site-header.scrolled .site-nav > a:hover,
body.home-v4 .site-header.scrolled .site-nav > a[aria-current="true"] {
  background: rgba(16,27,33, 0.06);
}
body.home-v4 .site-header.scrolled.over-dark {
  color: var(--paper);
  background: rgba(16,27,33, 0.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(246,246,246, 0.08);
}
body.home-v4 .site-header.scrolled.over-dark .site-nav > a:hover,
body.home-v4 .site-header.scrolled.over-dark .site-nav > a[aria-current="true"] {
  background: rgba(246,246,246, 0.09);
}
body.home-v4 .site-header.scrolled.over-dark .brand-mark::before,
body.home-v4 .site-header.scrolled.over-dark .brand-mark::after {
  background: var(--accent-bright);
}

/* ---------- v4 #commodity: transparent cut-out seed cluster (no CSS mask) ---------- */
/* only while the section is two columns — below that the visual already has
   the full container width and a bump would push past the page gutter */
@media (min-width: 1181px) {
  body.home-v4 .v4-seeds img {
    width: 118%;
    max-width: none;
    margin-inline: -9%;
  }
}
