:root {
  --ink: #050505;
  --soft-ink: #303030;
  --muted: #6e6e6e;
  --display-font: "Bodoni 72", Didot, "Bodoni MT", "Playfair Display", Georgia, serif;
  --line: rgba(7, 7, 7, 0.13);
  --panel: rgba(255, 255, 255, 0.72);
  --shadow: 0 28px 76px rgba(0, 0, 0, 0.08);
  --ease: cubic-bezier(0.19, 1, 0.22, 1);
  --scroll: 0;
  --hero-progress: 0;
  --hero-base-y: 70px;
  --hero-copy-y: 0px;
  --hero-copy-opacity: 1;
  --hero-copy-scale: 1;
  --supply-drop-y: 0px;
  --ribbon-one-x: 0px;
  --ribbon-one-y: 0px;
  --ribbon-one-rotate: 0deg;
  --ribbon-two-x: 0px;
  --ribbon-two-y: 0px;
  --ribbon-two-rotate: 0deg;
  --ribbon-three-x: 0px;
  --ribbon-three-y: 0px;
  --ribbon-three-rotate: 0deg;
  --ribbon-four-x: 0px;
  --ribbon-four-y: 0px;
  --ribbon-four-rotate: 0deg;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
  scroll-padding-top: 0;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 50% 38%, rgba(255, 255, 255, 0.94), transparent 42%),
    linear-gradient(145deg, #f7f7f7 0%, #ffffff 44%, #f5f5f5 100%);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
  overscroll-behavior-y: contain;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -4;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at 18% 18%, rgba(0, 0, 0, 0.035), transparent 22%),
    radial-gradient(circle at 82% 72%, rgba(0, 0, 0, 0.028), transparent 24%);
  opacity: 0.42;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

svg {
  display: block;
}

.page-shell {
  position: relative;
  min-height: 100svh;
}

.ambient {
  position: fixed;
  inset: 0;
  z-index: -3;
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 1.8s var(--ease), transform 1.8s var(--ease);
}

body.is-loaded .ambient {
  opacity: 1;
  transform: scale(1);
}

.ambient::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 50% 43%, rgba(255, 255, 255, 0.76), transparent 34%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.88), transparent 22%, transparent 78%, rgba(255, 255, 255, 0.88));
}

.ribbon-field {
  width: 118vw;
  height: 118vh;
  min-width: 1220px;
  min-height: 820px;
  transform: translate(-5vw, -7vh);
  opacity: 0.64;
}

.ribbon {
  fill: none;
  stroke: url("#ribbonFade");
  stroke-linecap: round;
  stroke-width: 132;
  filter: url("#ribbonBlur");
  transform-origin: center;
  transition: transform 0.18s linear, opacity 0.4s var(--ease), stroke-width 0.4s var(--ease);
  will-change: transform;
}

.ribbon-one {
  opacity: 0.65;
  transform: translate3d(var(--ribbon-one-x), var(--ribbon-one-y), 0) rotate(var(--ribbon-one-rotate));
}

.ribbon-two {
  opacity: 0.48;
  stroke-width: 116;
  transform: translate3d(var(--ribbon-two-x), var(--ribbon-two-y), 0) rotate(var(--ribbon-two-rotate));
}

.ribbon-three {
  opacity: 0.36;
  stroke-width: 96;
  transform: translate3d(var(--ribbon-three-x), var(--ribbon-three-y), 0) rotate(var(--ribbon-three-rotate));
}

.ribbon-four {
  opacity: 0.26;
  stroke-width: 86;
  transform: translate3d(var(--ribbon-four-x), var(--ribbon-four-y), 0) rotate(var(--ribbon-four-rotate));
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: clamp(18px, 3vw, 38px) clamp(22px, 5vw, 70px);
  color: var(--ink);
  opacity: 0;
  transform: translateY(-18px);
  transition:
    opacity 0.9s var(--ease),
    transform 0.9s var(--ease),
    padding 0.45s var(--ease),
    background 0.45s var(--ease),
    box-shadow 0.45s var(--ease);
}

body.is-loaded .site-header {
  opacity: 1;
  transform: translateY(0);
}

.site-header.is-scrolled {
  padding-top: 14px;
  padding-bottom: 14px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
  text-transform: uppercase;
  font-family: var(--display-font);
  font-size: clamp(16px, 1.4vw, 22px);
  font-weight: 600;
  letter-spacing: 0.16em;
  white-space: nowrap;
}

.brand-mark,
.supply-mark,
.section-mark {
  display: block;
  height: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.brand-mark {
  width: 54px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(20px, 3vw, 52px);
  font-family: var(--display-font);
  font-size: clamp(13px, 1.1vw, 17px);
  font-weight: 500;
  white-space: nowrap;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  bottom: 1px;
  width: 100%;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.45s var(--ease);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.panel {
  position: relative;
  height: 100svh;
  min-height: 100svh;
  padding: clamp(96px, 12vh, 148px) clamp(24px, 5vw, 86px) clamp(56px, 8vh, 96px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
  --wave-y: 0px;
  --wave-x: 0px;
  --wave-rotate: 0deg;
  --wave-scale: 1;
  --active-amount: 0;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.panel-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1420px;
  margin: 0 auto;
}

.paper-waves {
  position: absolute;
  inset: -2px;
  z-index: 0;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  pointer-events: none;
  opacity: calc(0.72 + (var(--active-amount) * 0.28));
  transform: translate3d(var(--wave-x), var(--wave-y), 0) rotate(var(--wave-rotate)) scale(var(--wave-scale));
  transform-origin: center;
  transition: opacity 0.35s var(--ease), transform 0.12s linear;
  will-change: transform, opacity;
}

.paper-band {
  fill: rgba(248, 248, 248, 0.92);
  filter: drop-shadow(0 16px 26px rgba(0, 0, 0, 0.08));
}

.paper-shadow {
  fill: rgba(223, 223, 223, 0.55);
}

.paper-bright {
  fill: rgba(255, 255, 255, 0.94);
}

.paper-deep {
  fill: rgba(226, 226, 226, 0.64);
}

.paper-line {
  fill: none;
  stroke: rgba(0, 0, 0, 0.055);
  stroke-width: 2;
  filter: drop-shadow(0 14px 18px rgba(0, 0, 0, 0.08));
}

.hero-waves {
  opacity: 1;
}

.solutions-waves {
  opacity: 0.96;
}

.network-waves,
.approach-waves {
  opacity: 0.98;
}

.hero-panel {
  min-height: 100svh;
  align-items: center;
  padding-bottom: clamp(112px, 15vh, 170px);
}

.hero-inner {
  display: grid;
  place-items: center;
  opacity: var(--hero-copy-opacity);
  transform: translate3d(0, calc(var(--hero-base-y) + var(--hero-copy-y)), 0) scale(var(--hero-copy-scale));
  transform-origin: center;
  transition: opacity 0.12s linear, transform 0.12s linear;
  will-change: transform, opacity;
}

.hero-copy h1,
.hero-copy .hairline,
.hero-copy p,
.hero-copy .primary-cta,
.supply-drop-inner {
  opacity: 0;
  transform: translateY(30px);
}

body.is-loaded .hero-copy h1 {
  animation: hero-rise 1.35s 0.28s var(--ease) forwards;
}

body.is-loaded .hero-copy .hairline {
  animation: line-in 1.1s 0.66s var(--ease) forwards;
}

body.is-loaded .hero-copy p {
  animation: hero-rise 1.15s 0.92s var(--ease) forwards;
}

body.is-loaded .hero-copy .primary-cta {
  animation: hero-rise 1.15s 1.12s var(--ease) forwards;
}

body.is-loaded .supply-drop-inner {
  animation: hero-rise 1.15s 1.32s var(--ease) forwards;
}

@keyframes hero-rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes line-in {
  from {
    opacity: 0;
    transform: scaleX(0.18);
  }

  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

.hero-copy,
.section-heading {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  max-width: 1180px;
  text-align: center;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2,
h3 {
  font-family: var(--display-font);
  font-weight: 400;
}

h1 {
  font-size: clamp(64px, 9vw, 154px);
  line-height: 0.92;
  text-transform: uppercase;
  white-space: nowrap;
}

h2 {
  font-size: clamp(46px, 5.5vw, 92px);
  line-height: 1.04;
}

h3 {
  font-size: clamp(32px, 2.9vw, 48px);
  line-height: 1;
  text-transform: capitalize;
}

p {
  color: var(--soft-ink);
  font-size: clamp(16px, 1.25vw, 22px);
  line-height: 1.7;
}

.hero-copy p,
.section-heading > p:not(.eyebrow) {
  width: min(100%, 700px);
  margin: 0 auto;
}

.hairline {
  display: block;
  width: 94px;
  height: 1px;
  margin: clamp(30px, 5vh, 64px) auto clamp(28px, 4vh, 52px);
  background: rgba(0, 0, 0, 0.22);
}

.hero-copy .hairline {
  margin-bottom: clamp(92px, 11vh, 126px);
}

.eyebrow {
  margin-bottom: clamp(14px, 2.5vh, 28px);
  color: var(--ink);
  font-size: clamp(12px, 1vw, 15px);
  font-weight: 700;
  letter-spacing: 0.48em;
  line-height: 1.3;
  text-transform: uppercase;
}

.primary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-width: min(100%, 386px);
  min-height: 88px;
  margin-top: clamp(30px, 5vh, 58px);
  padding: 20px 34px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 11px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), transparent 34%),
    #030303;
  color: white;
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.16);
  font-family: var(--display-font);
  font-size: clamp(23px, 2vw, 34px);
  line-height: 1;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), background 0.45s var(--ease);
}

.primary-cta svg,
.card-link svg,
.carousel-control svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.primary-cta svg {
  width: 32px;
  height: 32px;
  transition: transform 0.45s var(--ease);
}

.primary-cta:hover,
.primary-cta:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 28px 56px rgba(0, 0, 0, 0.22);
}

.primary-cta:hover svg,
.primary-cta:focus-visible svg {
  transform: translateX(6px);
}

.supply-drop {
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 2;
  width: 100vw;
  min-height: 102px;
  opacity: calc(1 - var(--hero-progress));
  transform: translate(-50%, var(--supply-drop-y));
  transition: opacity 0.2s linear;
  will-change: transform, opacity;
}

.supply-drop-inner {
  width: 100%;
  min-height: 102px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 5vw, 84px);
  padding: 20px clamp(20px, 5vw, 84px);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  text-transform: uppercase;
  font-size: clamp(11px, 1.1vw, 15px);
  font-weight: 700;
  letter-spacing: 0.48em;
  line-height: 1.3;
}

.supply-drop-inner span:first-child {
  justify-self: end;
}

.supply-drop-inner span:last-child {
  justify-self: start;
}

.supply-mark {
  width: 70px;
}

.solutions-panel {
  padding-top: clamp(86px, 10vh, 122px);
}

.division-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 2.4vw, 36px);
  margin-top: clamp(34px, 5vh, 58px);
}

.division-card {
  height: clamp(330px, 38vh, 462px);
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(26px, 3.1vw, 48px);
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.54)),
    rgba(255, 255, 255, 0.68);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(18px);
  transition: transform 0.55s var(--ease), box-shadow 0.55s var(--ease), border-color 0.55s var(--ease);
}

.division-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 0, 0, 0.2);
  box-shadow: var(--shadow);
}

.icon-orb {
  width: clamp(62px, 6vw, 86px);
  height: clamp(62px, 6vw, 86px);
  display: grid;
  place-items: center;
  margin-bottom: clamp(22px, 3.4vh, 42px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.08);
}

.icon-orb svg {
  width: clamp(30px, 3vw, 42px);
  height: clamp(30px, 3vw, 42px);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
}

.card-line {
  width: 48px;
  height: 1px;
  margin: clamp(18px, 2.3vh, 26px) 0 clamp(16px, 2.2vh, 24px);
  background: rgba(0, 0, 0, 0.24);
}

.division-card p {
  max-width: 370px;
  font-size: clamp(13px, 0.94vw, 17px);
  line-height: 1.62;
}

.card-link {
  width: 58px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-top: auto;
  color: var(--ink);
  transition: transform 0.45s var(--ease);
}

.card-link svg {
  width: 48px;
  height: 28px;
}

.card-link:hover,
.card-link:focus-visible {
  transform: translateX(10px);
}

.network-panel {
  padding-bottom: clamp(52px, 7vh, 84px);
}

.logo-carousel {
  position: relative;
  min-height: 220px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  margin-top: clamp(52px, 7vh, 74px);
  padding: 32px 20px 44px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.64);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(16px);
  overflow: hidden;
}

.logo-carousel::before,
.logo-carousel::after {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 92px;
  content: "";
  pointer-events: none;
}

.logo-carousel::before {
  left: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.94), transparent);
}

.logo-carousel::after {
  right: 0;
  background: linear-gradient(270deg, rgba(255, 255, 255, 0.94), transparent);
}

.logo-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(116px, 1fr);
  align-items: center;
  gap: clamp(18px, 2.8vw, 42px);
  color: var(--ink);
  transform: translateX(var(--logo-shift, 0px));
  transition: transform 0.7s var(--ease);
  animation: logo-drift 34s linear infinite;
  will-change: transform;
}

.logo-carousel:hover .logo-track,
.logo-carousel:focus-within .logo-track {
  animation-play-state: paused;
}

@keyframes logo-drift {
  from {
    transform: translateX(var(--logo-shift, 0px));
  }

  to {
    transform: translateX(calc(var(--logo-shift, 0px) - 420px));
  }
}

.logo-word {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 70px;
  color: var(--ink);
  font-size: clamp(20px, 2vw, 34px);
  font-weight: 800;
  line-height: 0.98;
  text-align: center;
  text-transform: uppercase;
  opacity: 0.9;
}

.logo-word small {
  display: block;
  margin-top: 8px;
  font-size: 0.36em;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.logo-word.muted {
  font-family: Georgia, serif;
  font-size: clamp(26px, 2.4vw, 38px);
  opacity: 0.24;
  text-transform: lowercase;
}

.pepsico,
.school,
.forsyth {
  font-family: Georgia, serif;
  text-transform: none;
}

.viva {
  letter-spacing: 0.14em;
}

.duon,
.farmton,
.georgia,
.dragonfi,
.jcpenney {
  font-weight: 700;
  letter-spacing: 0.02em;
}

.carousel-control {
  position: relative;
  z-index: 3;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: background 0.35s var(--ease), transform 0.35s var(--ease);
}

.carousel-control:hover,
.carousel-control:focus-visible {
  background: rgba(0, 0, 0, 0.05);
  transform: scale(1.08);
}

.carousel-control svg {
  width: 28px;
  height: 28px;
  stroke-width: 1.4;
}

.carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 25px;
  display: flex;
  align-items: center;
  gap: 16px;
  transform: translateX(-50%);
}

.carousel-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.18);
}

.carousel-dots .active {
  background: #000;
}

.network-note {
  max-width: 760px;
  margin: clamp(28px, 4vh, 44px) auto 0;
  color: #505050;
  font-size: clamp(13px, 1vw, 16px);
  line-height: 1.75;
  text-align: center;
}

.section-mark {
  width: 72px;
  margin: clamp(22px, 3vh, 34px) auto 0;
}

.approach-panel {
  padding-top: clamp(120px, 15vh, 178px);
}

.approach-inner {
  display: grid;
  justify-items: center;
}

.final-heading {
  max-width: 1180px;
}

.final-heading h2 {
  font-size: clamp(56px, 7.4vw, 118px);
}

.final-heading p:not(.eyebrow) {
  margin-top: clamp(32px, 4vh, 48px);
  max-width: 930px;
  font-size: clamp(18px, 1.45vw, 25px);
}

.operating-standard {
  margin-top: clamp(36px, 5vh, 60px);
  text-align: center;
}

.large-mark {
  width: clamp(82px, 8vw, 112px);
}

.site-footer {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: clamp(62px, 8vw, 110px) clamp(24px, 5vw, 86px);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  background: #070707;
  color: white;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer h2 {
  max-width: 820px;
  margin-top: 12px;
  color: white;
  font-size: clamp(38px, 5vw, 82px);
}

.footer-link {
  flex: 0 0 auto;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.72);
  font-size: clamp(16px, 1.2vw, 20px);
  font-weight: 600;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(38px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.division-card:nth-child(2) {
  transition-delay: 0.1s;
}

.division-card:nth-child(3) {
  transition-delay: 0.2s;
}

/* Refined scale and smoother page transitions */
:root {
  --hero-base-y: 26px;
}

body {
  overscroll-behavior-y: auto;
}

.site-header {
  padding: clamp(16px, 2.2vw, 28px) clamp(22px, 4vw, 58px);
}

.brand {
  gap: 12px;
  font-size: clamp(14px, 1.1vw, 18px);
}

.brand-mark {
  width: 44px;
}

.site-nav {
  gap: clamp(18px, 2.4vw, 40px);
  font-size: clamp(12px, 0.92vw, 15px);
}

.panel {
  padding: clamp(76px, 9vh, 104px) clamp(24px, 4vw, 68px) clamp(40px, 6vh, 64px);
}

.paper-waves {
  opacity: calc(var(--active-amount) * 0.34);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}

.paper-band {
  fill: rgba(248, 248, 248, 0.34);
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.035));
}

.paper-shadow {
  fill: rgba(218, 218, 218, 0.16);
}

.paper-bright {
  fill: rgba(255, 255, 255, 0.58);
}

.paper-deep {
  fill: rgba(226, 226, 226, 0.2);
}

.paper-line {
  stroke: rgba(0, 0, 0, 0.028);
  filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.035));
}

.ribbon {
  transition: transform 0.9s var(--ease), opacity 0.9s var(--ease), stroke-width 0.9s var(--ease);
}

.hero-panel {
  padding-bottom: clamp(84px, 11vh, 118px);
}

.hero-copy,
.section-heading {
  max-width: 1040px;
}

h1 {
  font-size: clamp(52px, 7vw, 118px);
}

h2 {
  font-size: clamp(38px, 4.6vw, 76px);
}

h3 {
  font-size: clamp(25px, 2.1vw, 36px);
}

p {
  font-size: clamp(15px, 1vw, 18px);
  line-height: 1.6;
}

.hero-copy p,
.section-heading > p:not(.eyebrow) {
  width: min(100%, 620px);
}

.hairline {
  width: 76px;
  margin: clamp(22px, 3.4vh, 40px) auto clamp(20px, 3vh, 34px);
}

.hero-copy .hairline {
  margin-bottom: clamp(58px, 7vh, 82px);
}

.primary-cta {
  min-width: min(100%, 316px);
  min-height: 66px;
  margin-top: clamp(22px, 3.4vh, 38px);
  padding: 15px 28px;
  border-radius: 9px;
  font-size: clamp(19px, 1.45vw, 26px);
}

.supply-drop,
.supply-drop-inner {
  min-height: 64px;
}

.supply-drop-inner {
  gap: clamp(16px, 3.4vw, 48px);
  padding: 10px clamp(18px, 3.6vw, 52px);
  font-size: clamp(9px, 0.72vw, 11px);
}

.supply-mark {
  width: 44px;
}

.solutions-panel {
  padding-top: clamp(70px, 8vh, 92px);
}

.division-grid {
  gap: clamp(16px, 2vw, 28px);
  margin-top: clamp(24px, 3.6vh, 38px);
}

.division-card {
  height: clamp(280px, 34vh, 370px);
  padding: clamp(20px, 2.3vw, 34px);
}

.icon-orb {
  width: clamp(52px, 4.8vw, 68px);
  height: clamp(52px, 4.8vw, 68px);
  margin-bottom: clamp(16px, 2.5vh, 26px);
}

.icon-orb svg {
  width: clamp(26px, 2.4vw, 34px);
  height: clamp(26px, 2.4vw, 34px);
}

.card-line {
  width: 40px;
}

.division-card p {
  font-size: clamp(12px, 0.86vw, 15px);
  line-height: 1.5;
}

.logo-carousel {
  min-height: 174px;
  margin-top: clamp(28px, 4vh, 42px);
  padding: 22px 16px 36px;
}

.logo-word {
  min-height: 54px;
  font-size: clamp(17px, 1.5vw, 26px);
}

.network-note {
  margin-top: clamp(18px, 2.8vh, 30px);
}

.section-mark {
  width: 56px;
  margin-top: clamp(14px, 2.1vh, 24px);
}

.approach-panel {
  padding-top: clamp(92px, 11vh, 128px);
}

.final-heading h2 {
  font-size: clamp(44px, 5.4vw, 86px);
}

.final-heading p:not(.eyebrow) {
  max-width: 760px;
  margin-top: clamp(20px, 3vh, 32px);
  font-size: clamp(15px, 1.05vw, 19px);
}

.operating-standard {
  margin-top: clamp(24px, 3.4vh, 40px);
}

.large-mark {
  width: clamp(60px, 5vw, 80px);
}

.site-footer {
  min-height: auto;
  display: block;
  padding: clamp(54px, 6vw, 84px) clamp(24px, 5vw, 86px) clamp(28px, 4vw, 48px);
  background: #050505;
  color: white;
}

.footer-main {
  width: min(100%, 1420px);
  display: grid;
  grid-template-columns: minmax(300px, 1.6fr) repeat(3, minmax(150px, 0.7fr));
  gap: clamp(28px, 4vw, 70px);
  margin: 0 auto;
}

.footer-brand,
.footer-email,
.footer-column a {
  color: inherit;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--display-font);
  font-size: clamp(18px, 1.3vw, 24px);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-brand img {
  width: 52px;
  filter: invert(1);
}

.footer-brand-block p {
  max-width: 520px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(13px, 0.95vw, 16px);
  line-height: 1.72;
}

.footer-email {
  display: inline-block;
  margin-top: 22px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  font-size: clamp(14px, 1vw, 17px);
  font-weight: 600;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-column h2 {
  margin: 0 0 8px;
  color: white;
  font-family: Inter, system-ui, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.32em;
  line-height: 1.3;
  text-transform: uppercase;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(13px, 0.95vw, 15px);
  line-height: 1.35;
  transition: color 0.35s var(--ease), transform 0.35s var(--ease);
}

.footer-column a:hover,
.footer-column a:focus-visible,
.footer-email:hover,
.footer-email:focus-visible {
  color: white;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  transform: translateX(4px);
}

.footer-legal {
  width: min(100%, 1420px);
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: clamp(18px, 3vw, 44px);
  margin: clamp(46px, 6vw, 72px) auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.footer-legal p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  line-height: 1.65;
}

[data-reveal] {
  transform: translateY(20px);
  transition: opacity 1.15s var(--ease), transform 1.15s var(--ease);
}

@media (min-width: 900px) {
  main {
    scroll-snap-type: y mandatory;
  }

  .panel {
    scroll-snap-align: start;
  }
}

@media (max-width: 1180px) {
  .site-header {
    align-items: flex-start;
  }

  .site-nav {
    justify-content: flex-end;
    max-width: 60vw;
    flex-wrap: wrap;
    row-gap: 4px;
  }

  .division-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }

  .division-card {
    height: clamp(300px, 36vh, 380px);
    padding: clamp(22px, 2.5vw, 32px);
  }

  .division-card h3 {
    font-size: clamp(24px, 2.8vw, 34px);
  }

  .division-card p {
    font-size: clamp(12px, 1.35vw, 15px);
    line-height: 1.5;
  }

  .icon-orb {
    width: 58px;
    height: 58px;
    margin-bottom: 20px;
  }
}

@media (max-width: 760px) {
  :root {
    --hero-base-y: 0px;
  }

  .site-header {
    gap: 14px;
    padding: 18px 18px;
  }

  .site-header.is-scrolled {
    padding: 12px 18px;
  }

  .brand {
    gap: 10px;
    font-size: 13px;
    letter-spacing: 0.1em;
  }

  .brand-mark {
    width: 42px;
  }

  .site-nav {
    display: none;
  }

  .panel {
    height: 100svh;
    min-height: 100svh;
    overflow-y: auto;
    padding: 112px 18px 76px;
  }

  .hero-panel {
    min-height: 100svh;
    padding-bottom: 132px;
  }

  h1 {
    font-size: clamp(48px, 15vw, 72px);
    white-space: normal;
  }

  h2,
  .final-heading h2 {
    font-size: clamp(43px, 13vw, 66px);
  }

  p {
    font-size: 16px;
  }

  .eyebrow {
    font-size: 11px;
    letter-spacing: 0.34em;
  }

  .hairline {
    margin: 28px auto 26px;
  }

  .hero-copy .hairline {
    margin-bottom: 34px;
  }

  .primary-cta {
    width: min(100%, 340px);
    min-width: 0;
    min-height: 70px;
    margin-top: 30px;
    padding: 18px 24px;
    border-radius: 9px;
    font-size: 23px;
  }

  .primary-cta svg {
    width: 26px;
    height: 26px;
  }

  .supply-drop {
    min-height: 110px;
  }

  .supply-drop-inner {
    min-height: 110px;
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 14px 18px 18px;
    font-size: 10px;
    letter-spacing: 0.32em;
    text-align: center;
  }

  .supply-drop-inner span:first-child,
  .supply-drop-inner span:last-child {
    justify-self: center;
  }

  .supply-mark {
    width: 56px;
  }

  .division-grid {
    grid-template-columns: 1fr;
    margin-top: 28px;
  }

  .division-card {
    height: auto;
    min-height: 0;
    padding: 24px;
  }

  .icon-orb {
    width: 72px;
    height: 72px;
    margin-bottom: 32px;
  }

  .icon-orb svg {
    width: 34px;
    height: 34px;
  }

  .logo-carousel {
    grid-template-columns: 40px 1fr 40px;
    min-height: 210px;
    margin-top: 38px;
    padding: 28px 4px 42px;
  }

  .logo-track {
    grid-auto-columns: 132px;
    gap: 14px;
    overflow: hidden;
  }

  .logo-word {
    font-size: 20px;
  }

  .logo-carousel::before,
  .logo-carousel::after {
    width: 34px;
  }

  .network-note {
    margin-top: 34px;
  }

  .operating-standard {
    margin-top: 42px;
  }

  .site-footer {
    min-height: auto;
    display: grid;
    padding: 58px 22px;
  }

  .site-footer h2 {
    font-size: 40px;
  }
}

@media (max-width: 900px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand-block {
    grid-column: 1 / -1;
  }

  .footer-legal {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-footer {
    padding: 48px 22px 34px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-brand {
    font-size: 18px;
  }

  .footer-brand img {
    width: 44px;
  }

  .footer-column h2 {
    font-size: 11px;
  }

  .footer-column a,
  .footer-brand-block p,
  .footer-email {
    font-size: 14px;
  }

  .footer-legal {
    margin-top: 34px;
  }
}

/* Final footer and viewport guardrails */
html {
  scroll-snap-type: y mandatory;
}

body .paper-waves {
  opacity: calc(0.18 + (var(--active-amount) * 0.32));
}

body .paper-band {
  fill: rgba(248, 248, 248, 0.58);
}

body .paper-shadow {
  fill: rgba(216, 216, 216, 0.3);
}

body .paper-bright {
  fill: rgba(255, 255, 255, 0.7);
}

body .paper-deep {
  fill: rgba(226, 226, 226, 0.36);
}

footer.site-footer {
  height: 100svh;
  min-height: 720px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(96px, 10vh, 118px) clamp(24px, 5vw, 86px) clamp(34px, 4vw, 52px);
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

footer.site-footer .footer-main {
  grid-template-columns: minmax(310px, 1.4fr) repeat(3, minmax(140px, 0.72fr));
  align-items: start;
}

footer.site-footer .footer-column h2 {
  margin: 0 0 10px !important;
  color: rgba(255, 255, 255, 0.95) !important;
  font-family: Inter, system-ui, sans-serif !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.32em !important;
  line-height: 1.2 !important;
  text-transform: uppercase !important;
}

footer.site-footer .footer-column a {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  font-family: Inter, system-ui, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.55;
}

footer.site-footer .footer-legal {
  grid-template-columns: 1.15fr 1fr 1fr;
  margin-top: clamp(34px, 4.2vh, 52px);
}

footer.site-footer .footer-legal p {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  font-size: 12px;
}

/* Network, contact, and final scale polish */
.network-panel {
  padding-top: clamp(70px, 8vh, 96px);
}

.network-panel .section-heading {
  max-width: 980px;
}

.network-panel .section-heading > p:not(.eyebrow) {
  width: min(100%, 650px);
}

.logo-carousel {
  min-height: 156px;
  grid-template-columns: 38px minmax(0, 1fr) 38px;
  gap: 8px;
  width: min(100%, 1330px);
  margin: clamp(24px, 3.4vh, 38px) auto 0;
  padding: 16px 10px 30px;
}

.logo-viewport {
  min-width: 0;
  overflow: hidden;
  scroll-behavior: smooth;
}

.logo-marquee {
  display: block;
  width: 100%;
  overflow: hidden;
}

.logo-track {
  position: relative;
  left: 0;
  display: flex;
  align-items: stretch;
  gap: clamp(12px, 1.5vw, 20px);
  width: max-content;
  transform: none;
  transition: left 340s linear 4s;
  animation: none;
  will-change: left;
}

.network-panel.is-active .logo-track {
  left: -660px;
}

.logo-marquee .logo-track,
.network-panel.is-active .logo-marquee .logo-track {
  position: static;
  left: auto;
  transform: none;
  transition: none;
  animation: none;
}

.logo-carousel:hover .logo-track,
.logo-carousel:focus-within .logo-track {
  transition-duration: 520s;
}

.network-logo {
  width: clamp(120px, 11vw, 164px);
  min-height: 102px;
  display: grid;
  grid-template-rows: 58px auto;
  place-items: center;
  align-content: center;
  gap: 11px;
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.055);
  scroll-snap-align: center;
}

.network-logo img {
  width: 96px;
  height: 56px;
  object-fit: contain;
}

.network-logo span {
  max-width: 100%;
  color: rgba(0, 0, 0, 0.82);
  font-size: clamp(10px, 0.72vw, 12px);
  font-weight: 700;
  line-height: 1.18;
  text-align: center;
}

.carousel-control {
  width: 36px;
  height: 36px;
}

.carousel-control svg {
  width: 24px;
  height: 24px;
}

.carousel-dots {
  bottom: 15px;
  gap: 10px;
}

.carousel-dots span {
  width: 5px;
  height: 5px;
}

.network-note {
  max-width: 600px;
  margin-top: clamp(12px, 1.8vh, 20px);
  color: rgba(0, 0, 0, 0.5);
  font-size: clamp(10px, 0.68vw, 12px);
  line-height: 1.5;
}

.network-panel .network-note {
  max-width: 330px;
  margin-top: clamp(5px, 0.8vh, 9px);
  color: rgba(0, 0, 0, 0.28);
  font-size: clamp(5px, 0.34vw, 6.5px);
  line-height: 1.24;
}

.network-panel .section-mark {
  width: clamp(42px, 3.4vw, 54px);
  margin-top: clamp(10px, 1.8vh, 18px);
}

.contact-panel {
  align-items: center;
  padding-top: clamp(82px, 10vh, 118px);
}

.contact-waves {
  opacity: calc(0.16 + (var(--active-amount) * 0.38));
}

.contact-inner {
  display: grid;
  justify-items: center;
  gap: clamp(28px, 4vh, 44px);
}

.contact-heading {
  max-width: 1000px;
}

.contact-heading h2 {
  font-size: clamp(42px, 5vw, 80px);
}

.contact-heading > p:not(.eyebrow) {
  width: min(100%, 640px);
}

.contact-grid {
  width: min(100%, 1050px);
  display: grid;
  grid-template-columns: 1.3fr repeat(2, 1fr);
  gap: clamp(14px, 1.7vw, 24px);
}

.contact-card {
  min-height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  padding: clamp(20px, 2.2vw, 30px);
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(16px);
  transition: transform 0.55s var(--ease), border-color 0.55s var(--ease), box-shadow 0.55s var(--ease);
}

.contact-card:hover,
.contact-card:focus-visible {
  transform: translateY(-6px);
  border-color: rgba(0, 0, 0, 0.22);
  box-shadow: var(--shadow);
}

.contact-card span {
  color: rgba(0, 0, 0, 0.55);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.contact-card strong {
  color: var(--ink);
  font-size: clamp(15px, 1.15vw, 19px);
  line-height: 1.45;
}

.primary-contact strong {
  overflow-wrap: anywhere;
  font-size: clamp(17px, 1.35vw, 22px);
}

.contact-form {
  width: min(100%, 980px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px 16px;
  padding: clamp(18px, 2vw, 26px);
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.58), 0 18px 52px rgba(0, 0, 0, 0.055);
  backdrop-filter: blur(16px);
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form label span {
  color: rgba(0, 0, 0, 0.58);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.28em;
  line-height: 1.2;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 42px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  font: 500 14px/1.35 Inter, system-ui, sans-serif;
  outline: none;
  padding: 10px 12px;
  transition: border-color 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease);
}

.contact-form textarea {
  min-height: 86px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(0, 0, 0, 0.48);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.06);
}

.form-wide {
  grid-column: 1 / -1;
}

.form-submit {
  grid-column: 1 / -1;
  justify-self: center;
  min-width: 230px;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 0;
  border-radius: 8px;
  background: #030303;
  color: white;
  cursor: pointer;
  font: 700 14px/1 Inter, system-ui, sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}

.form-submit svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.form-submit:hover,
.form-submit:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.form-honey {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 18px;
  color: rgba(0, 0, 0, 0.58);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}

.contact-panel .contact-inner {
  gap: clamp(20px, 3vh, 30px);
}

.contact-panel .contact-heading h2 {
  font-size: clamp(38px, 4.3vw, 68px);
}

.contact-panel .contact-heading > p:not(.eyebrow) {
  width: min(100%, 600px);
  font-size: clamp(13px, 0.92vw, 16px);
}

footer.site-footer {
  min-height: 100svh;
}

footer.site-footer .footer-main[data-reveal],
footer.site-footer .footer-legal[data-reveal] {
  transition-delay: 0.08s;
}

@media (max-width: 1180px) {
  .contact-grid {
    grid-template-columns: 1fr;
    max-width: 760px;
  }
}

@media (max-width: 760px) {
  .logo-carousel {
    min-height: 160px;
    grid-template-columns: 34px minmax(0, 1fr) 34px;
    padding: 16px 2px 30px;
  }

  .network-logo {
    width: 136px;
    min-height: 112px;
  }

  .network-logo img {
    width: 92px;
    height: 54px;
  }

  .contact-panel {
    padding-top: 98px;
  }

  .contact-card {
    min-height: 122px;
  }

  .contact-form {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 18px;
  }

  .form-submit {
    width: 100%;
  }
}

@media (max-width: 900px) {
  footer.site-footer {
    height: auto;
    min-height: 100svh;
    justify-content: flex-start;
  }

  footer.site-footer .footer-main,
  footer.site-footer .footer-legal {
    grid-template-columns: 1fr;
  }
}

/* Hard contact form finish: keep this last so the form never falls back to browser defaults. */
body .contact-panel {
  align-items: center;
}

body .contact-panel .contact-inner {
  width: min(100%, 1120px);
  display: grid;
  justify-items: center;
  gap: clamp(22px, 3vh, 32px);
}

body .contact-panel .contact-heading {
  max-width: 840px;
}

body .contact-panel .contact-heading h2 {
  font-size: clamp(46px, 4.8vw, 74px);
  line-height: 1.02;
}

body form.contact-form {
  width: min(100%, 980px) !important;
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 13px 16px !important;
  margin: 0 auto !important;
  padding: clamp(18px, 2vw, 26px) !important;
  border: 1px solid rgba(0, 0, 0, 0.12) !important;
  border-radius: 8px !important;
  background: rgba(255, 255, 255, 0.74) !important;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.58), 0 18px 52px rgba(0, 0, 0, 0.055) !important;
  backdrop-filter: blur(16px);
}

body form.contact-form label {
  display: grid !important;
  gap: 8px !important;
  margin: 0 !important;
}

body form.contact-form label span {
  display: block !important;
  color: rgba(0, 0, 0, 0.58) !important;
  font: 800 10px/1.2 Inter, system-ui, sans-serif !important;
  letter-spacing: 0.28em !important;
  text-transform: uppercase !important;
}

body form.contact-form input,
body form.contact-form select,
body form.contact-form textarea {
  width: 100% !important;
  min-height: 42px !important;
  margin: 0 !important;
  padding: 10px 12px !important;
  border: 1px solid rgba(0, 0, 0, 0.14) !important;
  border-radius: 7px !important;
  background: rgba(255, 255, 255, 0.86) !important;
  color: var(--ink) !important;
  font: 500 14px/1.35 Inter, system-ui, sans-serif !important;
  outline: none !important;
}

body form.contact-form textarea {
  min-height: 86px !important;
  resize: vertical;
}

body form.contact-form .form-wide {
  grid-column: 1 / -1 !important;
}

body form.contact-form .form-submit {
  grid-column: 1 / -1 !important;
  justify-self: center !important;
  min-width: 230px !important;
  min-height: 50px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 8px !important;
  background: #030303 !important;
  color: white !important;
  cursor: pointer !important;
  font: 700 14px/1 Inter, system-ui, sans-serif !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
}

body form.contact-form .form-submit svg {
  width: 21px !important;
  height: 21px !important;
}

body form.contact-form .form-status {
  grid-column: 1 / -1 !important;
  margin: 0 !important;
  color: rgba(0, 0, 0, 0.58) !important;
  font: 700 12px/1.4 Inter, system-ui, sans-serif !important;
  text-align: center !important;
}

@media (max-width: 760px) {
  body form.contact-form {
    grid-template-columns: 1fr !important;
    padding: 18px !important;
  }

  body form.contact-form .form-submit {
    width: 100% !important;
  }
}

/* Standalone content pages */
html.content-document {
  scroll-snap-type: none;
}

body.content-page {
  min-height: 100svh;
  overflow-x: hidden;
  overscroll-behavior-y: auto;
}

body.content-page .page-shell {
  min-height: 100svh;
}

body.content-page .site-header {
  opacity: 1;
  transform: none;
}

body.content-page .ambient {
  opacity: 1;
  transform: scale(1);
}

.subpage-main {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  padding: clamp(126px, 14vh, 168px) clamp(24px, 5vw, 86px) clamp(60px, 8vh, 96px);
}

.subpage-hero,
.subpage-section {
  width: min(100%, 1180px);
  margin: 0 auto;
}

.subpage-hero {
  text-align: center;
}

.subpage-hero h1 {
  font-size: clamp(56px, 7vw, 112px);
  line-height: 0.98;
  text-transform: none;
  white-space: normal;
}

.subpage-hero p {
  width: min(100%, 720px);
  margin: clamp(20px, 3vh, 34px) auto 0;
}

.subpage-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: clamp(26px, 4vh, 44px);
  flex-wrap: wrap;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 2px;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
  text-decoration-color: rgba(0, 0, 0, 0.3);
  transition: text-decoration-color 0.3s var(--ease), color 0.3s var(--ease);
}

.text-link:hover,
.text-link:focus-visible {
  text-decoration-color: rgba(0, 0, 0, 0.78);
}

.text-link-arrow {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.3s var(--ease);
}

.text-link:hover .text-link-arrow,
.text-link:focus-visible .text-link-arrow {
  transform: translateX(-3px);
}

.subpage-section {
  margin-top: clamp(50px, 8vh, 84px);
}

.subpage-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 26px);
}

.subpage-card {
  min-height: 220px;
  padding: clamp(22px, 2.4vw, 34px);
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(16px);
}

.subpage-card h2,
.subpage-card h3 {
  font-size: clamp(24px, 2.4vw, 36px);
}

.subpage-card p,
.subpage-card li,
.legal-copy p,
.legal-copy li {
  color: var(--soft-ink);
  font-size: clamp(14px, 0.98vw, 17px);
  line-height: 1.68;
}

.detail-list {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.detail-list li {
  padding-left: 18px;
  border-left: 1px solid rgba(0, 0, 0, 0.2);
}

.legal-copy {
  width: min(100%, 900px);
  margin: clamp(44px, 6vh, 70px) auto 0;
  display: grid;
  gap: 24px;
}

.legal-copy h2 {
  font-size: clamp(30px, 3.2vw, 48px);
}

@media (max-width: 900px) {
  .subpage-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   Division pages — extended layout & motion (v: divisions-19)
   ============================================================ */

.subpage-block {
  margin-top: clamp(56px, 9vh, 104px);
}

.subpage-block-head {
  width: min(100%, 800px);
  margin: 0 auto clamp(28px, 4vh, 48px);
  text-align: center;
}

.subpage-block-head h2 {
  margin-top: 12px;
  font-size: clamp(34px, 4.2vw, 62px);
  line-height: 1.03;
}

.subpage-block-head p {
  margin-top: 18px;
  color: var(--soft-ink);
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.7;
}

/* Process steps */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(218px, 1fr));
  gap: clamp(16px, 2vw, 26px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-step {
  position: relative;
  padding: clamp(24px, 2.6vw, 36px);
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(16px);
  transition: opacity 1s var(--ease), transform 0.55s var(--ease),
    box-shadow 0.55s var(--ease), border-color 0.55s var(--ease);
}

.process-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.22);
}

.process-num {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(34px, 3.4vw, 50px);
  line-height: 1;
  color: rgba(0, 0, 0, 0.2);
}

.process-step h3 {
  margin: 14px 0 10px;
  font-size: clamp(19px, 1.6vw, 24px);
}

.process-step p {
  color: var(--soft-ink);
  font-size: clamp(14px, 0.98vw, 16px);
  line-height: 1.66;
}

/* Stat / fact band */
.stat-band {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: clamp(14px, 1.8vw, 24px);
  padding: clamp(26px, 3.4vw, 46px);
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(16px);
  text-align: center;
}

.stat-num {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(26px, 2.7vw, 38px);
  line-height: 1.06;
}

.stat-label {
  display: block;
  margin-top: 8px;
  color: var(--soft-ink);
  font-size: clamp(12px, 0.9vw, 14px);
  line-height: 1.5;
}

/* Tag pills */
.tag-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tag {
  padding: 9px 16px;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
  font-size: clamp(12px, 0.9vw, 14px);
  font-weight: 600;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease),
    background 0.4s var(--ease);
}

.tag:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 0, 0, 0.32);
  background: rgba(255, 255, 255, 0.92);
}

/* CTA band */
.cta-band {
  text-align: center;
  padding: clamp(40px, 6vw, 78px) clamp(24px, 4vw, 60px);
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.55),
    0 18px 52px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(16px);
}

.cta-band h2 {
  font-size: clamp(30px, 3.6vw, 54px);
  line-height: 1.03;
}

.cta-band p {
  width: min(100%, 560px);
  margin: 16px auto 26px;
  color: var(--soft-ink);
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.68;
}

/* Inquiry section */
.inquiry-section {
  margin-top: clamp(56px, 9vh, 104px);
}

.relationship-note {
  width: min(100%, 780px);
  margin: clamp(28px, 4vh, 46px) auto 0;
  color: rgba(0, 0, 0, 0.5);
  font-size: clamp(12px, 0.86vw, 13px);
  line-height: 1.62;
  text-align: center;
}

/* Staggered reveal for grids */
.subpage-grid > [data-reveal]:nth-child(2),
.process-grid > [data-reveal]:nth-child(2) {
  transition-delay: 0.08s;
}
.subpage-grid > [data-reveal]:nth-child(3),
.process-grid > [data-reveal]:nth-child(3) {
  transition-delay: 0.16s;
}
.process-grid > [data-reveal]:nth-child(4) {
  transition-delay: 0.24s;
}
.process-grid > [data-reveal]:nth-child(5) {
  transition-delay: 0.32s;
}

/* Card hover lift */
.subpage-card {
  transition: opacity 1s var(--ease), transform 0.55s var(--ease),
    box-shadow 0.55s var(--ease), border-color 0.55s var(--ease);
}
.subpage-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.22);
}

@media (max-width: 900px) {
  .subpage-block-head h2 {
    font-size: clamp(30px, 8vw, 44px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .process-step,
  .subpage-card,
  .tag {
    transition: opacity 0.4s var(--ease);
  }
  .process-step:hover,
  .subpage-card:hover,
  .tag:hover {
    transform: none;
  }
}

/* ============================================================
   Media, product & certification components (v: divisions-21)
   ============================================================ */

.media-figure {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 14px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5), 0 18px 50px rgba(0, 0, 0, 0.07);
  background: rgba(255, 255, 255, 0.5);
}

.media-figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Partnership banner — full-width image with overlaid copy */
.partner-banner {
  position: relative;
  margin-top: clamp(40px, 6vh, 72px);
  display: flex;
  align-items: flex-end;
  min-height: clamp(320px, 46vw, 520px);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
}

.partner-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.partner-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 28%, rgba(0, 0, 0, 0.68) 100%);
}

.banner-copy {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding: clamp(24px, 4vw, 54px);
  color: #fff;
}

.banner-copy .eyebrow {
  color: rgba(255, 255, 255, 0.82);
}

.banner-copy h2 {
  margin-top: 10px;
  color: #fff;
  font-size: clamp(28px, 3.4vw, 50px);
  line-height: 1.05;
}

.banner-copy p {
  margin-top: 14px;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(14px, 1.05vw, 17px);
  line-height: 1.62;
}

/* Split media + text */
.media-split {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: clamp(20px, 3vw, 50px);
  align-items: center;
}

.media-split .media-figure {
  aspect-ratio: 4 / 3;
}

.split-copy h2 {
  font-size: clamp(28px, 3.2vw, 46px);
  line-height: 1.05;
}

.split-copy p {
  margin-top: 16px;
  color: var(--soft-ink);
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.7;
}

.split-copy .detail-list {
  margin-top: 20px;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(12px, 1.6vw, 20px);
}

.gallery-grid .media-figure {
  aspect-ratio: 1 / 1;
}

.gallery-grid .wide {
  grid-column: span 2;
  aspect-ratio: 16 / 10;
}

/* Product cards */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(16px, 2vw, 26px);
}

.product-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(16px);
  transition: opacity 1s var(--ease), transform 0.55s var(--ease),
    box-shadow 0.55s var(--ease), border-color 0.55s var(--ease);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 0, 0, 0.22);
}

.product-photo {
  aspect-ratio: 16 / 11;
  overflow: hidden;
}

.product-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.product-card:hover .product-photo img {
  transform: scale(1.04);
}

.product-body {
  padding: clamp(16px, 1.6vw, 22px);
}

.product-body h3 {
  font-size: clamp(18px, 1.5vw, 22px);
}

.product-meta {
  margin-top: 12px;
  display: grid;
  gap: 6px;
}

.product-meta div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 5px;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.12);
  color: var(--soft-ink);
  font-size: clamp(12px, 0.9vw, 13.5px);
  line-height: 1.4;
}

.product-meta div span:first-child {
  font-weight: 700;
  color: rgba(0, 0, 0, 0.6);
  letter-spacing: 0.02em;
}

/* Certifications */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: clamp(14px, 1.8vw, 22px);
}

.cert-card {
  padding: clamp(20px, 2.2vw, 30px);
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(16px);
}

.cert-card h3 {
  font-size: clamp(16px, 1.3vw, 20px);
}

.cert-card p {
  margin-top: 8px;
  color: var(--soft-ink);
  font-size: clamp(13px, 0.95vw, 15px);
  line-height: 1.6;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.badge {
  padding: 8px 14px;
  border: 1px dashed rgba(0, 0, 0, 0.28);
  border-radius: 999px;
  color: rgba(0, 0, 0, 0.62);
  font-size: clamp(11px, 0.85vw, 13px);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.badge span {
  font-weight: 600;
  opacity: 0.62;
}

.storage-strip {
  margin-top: clamp(18px, 2.4vh, 26px);
  padding: 16px 20px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.55);
  color: var(--soft-ink);
  font-size: clamp(12.5px, 0.95vw, 14px);
  line-height: 1.6;
  text-align: center;
}

@media (max-width: 820px) {
  .media-split {
    grid-template-columns: 1fr;
  }
  .gallery-grid .wide {
    grid-column: span 1;
    aspect-ratio: 1 / 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-card {
    transition: opacity 0.4s var(--ease);
  }
  .product-card:hover {
    transform: none;
  }
  .product-card:hover .product-photo img {
    transform: none;
  }
}

/* ============================================================
   Founder / profile (v: divisions-22)
   ============================================================ */

.founder {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(24px, 4vw, 60px);
  align-items: center;
}

.founder-photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 18px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5), 0 24px 64px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.5);
}

.founder-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-role {
  margin-top: 14px;
  color: rgba(0, 0, 0, 0.55);
  font: 800 11px/1.2 Inter, system-ui, sans-serif;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.founder-name {
  margin-top: 8px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.0;
}

.founder-quote {
  margin-top: clamp(18px, 2.4vh, 26px);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.4;
  color: var(--ink);
}

.founder-bio {
  margin-top: 18px;
  display: grid;
  gap: 14px;
}

.founder-bio p {
  color: var(--soft-ink);
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.72;
}

.founder-links {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.link-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(16px, 2vw, 26px);
}

.link-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: clamp(22px, 2.4vw, 32px);
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(16px);
  transition: opacity 1s var(--ease), transform 0.55s var(--ease),
    box-shadow 0.55s var(--ease), border-color 0.55s var(--ease);
}

.link-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.22);
}

.link-card h3 {
  font-size: clamp(22px, 2vw, 30px);
}

.link-card p {
  color: var(--soft-ink);
  font-size: clamp(14px, 0.98vw, 16px);
  line-height: 1.62;
}

.link-card .text-link {
  margin-top: auto;
}

@media (max-width: 820px) {
  .founder {
    grid-template-columns: 1fr;
  }
  .founder-photo {
    max-width: 360px;
    margin: 0 auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .link-card {
    transition: opacity 0.4s var(--ease);
  }
  .link-card:hover {
    transform: none;
  }
}

/* ============================================================
   Network logo carousel — controlled scroll (v: divisions-23)
   Replaces the old <marquee> + CSS `left` auto-scroll so the
   prev/next arrows, dots, and timed pauses work via JS.
   ============================================================ */

.network-panel .logo-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: none;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.network-panel .logo-viewport::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

.network-panel .network-logo {
  scroll-snap-align: none;
}

.network-panel .logo-track,
.network-panel.is-active .logo-track,
.logo-carousel:hover .logo-track,
.logo-carousel:focus-within .logo-track {
  position: static !important;
  left: 0 !important;
  transform: none !important;
  transition: none !important;
  animation: none !important;
  will-change: auto;
}

/* ============================================================
   About hero tagline (v: divisions-24)
   ============================================================ */

.hero-tagline {
  width: 100%;
  margin: clamp(16px, 2.2vh, 26px) auto 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(18px, 1.9vw, 27px);
  line-height: 1.35;
  color: var(--ink);
}

.hero-tagline span {
  white-space: nowrap;
}
