@font-face {
  font-family: "CHEDROS";
  src: url("assets/fonts/CHEDROS-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Sora";
  src: url("assets/fonts/Sora-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Sora";
  src: url("assets/fonts/Sora-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Sora";
  src: url("assets/fonts/Sora-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Sora";
  src: url("assets/fonts/Sora-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --font-sans: "Sora", system-ui, sans-serif;
  --type-body-size: 1rem;
  --type-body-leading: 1.6;
  --type-reading-measure: 68ch;
  font-family: "Sora", system-ui, sans-serif;
}

@property --stroke-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

:root {
  --ink: #191615;
  --muted: #70645d;
  --paper: #f2f0ef;
  --surface: #ffffff;
  --line: rgba(87, 53, 35, 0.14);
  --green: #173f3e;
  --teal: #547f76;
  --lime: #d8e895;
  --coral: #d80b22;
  --amber: #f2c78d;
  --brand-red: #d80b22;
  --brand-red-dark: #a90618;
  --warm-cream: #f5f3f2;
  --warm-line: rgba(200, 75, 52, 0.18);
  --hero-bg: #f4f2f1;
  --tint: #f3f1f0;
  --mesh-grid-a: rgba(0, 0, 0, 0.075);
  --mesh-grid-b: rgba(0, 0, 0, 0.055);
  --mesh-warm: rgba(255, 255, 255, 0);
  --mesh-red: rgba(255, 255, 255, 0);
  --shadow: 0 24px 60px rgba(86, 48, 26, 0.08);
  --radius: 8px;
  color: var(--ink);
  background: var(--paper);
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    linear-gradient(90deg, var(--mesh-grid-a) 1px, transparent 1px),
    linear-gradient(0deg, var(--mesh-grid-b) 1px, transparent 1px),
    linear-gradient(180deg, var(--paper) 0%, var(--paper) 100%);
  background-attachment: fixed, fixed, fixed;
  background-size: 96px 96px, 96px 96px, auto;
}

main,
main > section {
  background-color: transparent;
}

body.nav-open {
  overflow: hidden;
}

body.is-loading {
  overflow: hidden;
}

@media (hover: hover) and (pointer: fine) {
  .custom-cursor {
    display: none;
  }
}

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 28% 24%, rgba(184, 245, 0, 0.18), transparent 26%),
    radial-gradient(circle at 72% 68%, rgba(22, 140, 255, 0.24), transparent 30%),
    linear-gradient(135deg, rgba(4, 31, 38, 0.98), rgba(8, 63, 70, 0.96));
  color: #fff;
  transition: opacity 0.5s ease, visibility 0.5s ease, transform 0.5s ease;
}

.site-loader::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 54px 54px;
  content: "";
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 82%, transparent);
}

.loader-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  width: min(720px, 100%);
  padding: clamp(24px, 5vw, 52px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 18% 18%, rgba(184, 245, 0, 0.08), transparent 28%),
    radial-gradient(circle at 82% 76%, rgba(22, 140, 255, 0.14), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.06)),
    rgba(255, 255, 255, 0.08);
  box-shadow:
    0 32px 90px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.32);
  backdrop-filter: blur(28px) saturate(170%);
  -webkit-backdrop-filter: blur(28px) saturate(170%);
  text-align: center;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.loader-card:hover {
  border-color: rgba(184, 245, 0, 0.42);
  box-shadow:
    0 36px 100px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(184, 245, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.38);
  transform: translateY(-4px);
}

.loader-visual {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: 100%;
  min-width: 260px;
  height: 260px;
  align-self: center;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent 38%),
    radial-gradient(circle at 20% 18%, rgba(184, 245, 0, 0.18), transparent 22%),
    radial-gradient(circle at 78% 30%, rgba(22, 140, 255, 0.2), transparent 28%),
    rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 18px 42px rgba(0, 0, 0, 0.16);
}

.loader-visual::before {
  position: absolute;
  inset: 18px;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: calc(var(--radius) - 6px);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 42px 42px;
  content: "";
  opacity: 0.38;
}

.loader-visual::after {
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: 82px;
  z-index: 0;
  height: 58px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(22, 140, 255, 0), rgba(22, 140, 255, 0.42), rgba(184, 245, 0, 0.28), rgba(22, 140, 255, 0));
  content: "";
  filter: blur(22px);
  opacity: 0.58;
}

.loader-process-card {
  position: absolute;
  z-index: 2;
  width: 62px;
  height: 62px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0.08)),
    rgba(255, 255, 255, 0.1);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.32),
    0 18px 36px rgba(0, 0, 0, 0.14);
  transition: border-color 0.25s ease, transform 0.25s ease, background 0.25s ease;
}

.loader-card:hover .loader-process-card {
  border-color: rgba(184, 245, 0, 0.46);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0.12)),
    rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
}

.loader-process-card::before,
.loader-process-card::after {
  position: absolute;
  content: "";
}

.loader-process-card::before {
  left: 14px;
  right: 14px;
  bottom: 12px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
}

.loader-process-card b {
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: -23px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.loader-process-card::after {
  left: 50%;
  top: 17px;
  width: 20px;
  height: 20px;
  transform: translateX(-50%);
}

.loader-process-formula {
  left: 8%;
  top: 44px;
}

.loader-process-formula::after {
  border: 2px solid var(--lime);
  border-radius: 999px;
  box-shadow:
    -12px 14px 0 -6px var(--lime),
    12px 14px 0 -6px var(--cyan),
    0 -10px 0 -6px #fff;
}

.loader-process-blend {
  left: 36%;
  top: 32px;
  animation-delay: 0.18s;
}

.loader-process-blend::after {
  width: 26px;
  height: 26px;
  border: 3px solid rgba(255, 255, 255, 0.86);
  border-top-color: var(--lime);
  border-radius: 999px;
}

.loader-process-fill {
  right: 28%;
  top: 54px;
  animation-delay: 0.36s;
}

.loader-process-fill::after {
  top: 15px;
  width: 18px;
  height: 28px;
  border: 2px solid rgba(255, 255, 255, 0.88);
  border-radius: 6px 6px 10px 10px;
  background: linear-gradient(0deg, var(--cyan) 0 68%, transparent 68% 100%);
}

.loader-process-qc {
  right: 8%;
  top: 42px;
  animation-delay: 0.54s;
}

.loader-process-qc::after {
  top: 19px;
  width: 25px;
  height: 14px;
  border-right: 4px solid var(--lime);
  border-bottom: 4px solid var(--lime);
  transform: translateX(-50%) rotate(40deg);
}

.loader-conveyor {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 56px;
  z-index: 2;
  height: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.16) 0 18px, transparent 18px 34px),
    rgba(4, 31, 38, 0.62);
}

.loader-conveyor i {
  position: absolute;
  inset: 5px 0;
  display: block;
  background: repeating-linear-gradient(90deg, transparent 0 32px, rgba(184, 245, 0, 0.76) 32px 46px, transparent 46px 70px);
}

.loader-particles {
  display: none;
}

.loader-particles i:nth-child(1) {
  left: 20%;
  top: 118px;
}

.loader-particles i:nth-child(2) {
  left: 30%;
  top: 126px;
  animation-delay: 0.22s;
}

.loader-particles i:nth-child(3) {
  left: 41%;
  top: 116px;
  animation-delay: 0.44s;
}

.loader-particles i:nth-child(4) {
  left: 52%;
  top: 128px;
  animation-delay: 0.66s;
}

.loader-particles i:nth-child(5) {
  left: 62%;
  top: 118px;
  animation-delay: 0.88s;
}

.loader-capsule-fill {
  position: absolute;
  left: 20%;
  bottom: 78px;
  z-index: 4;
  width: 78px;
  height: 30px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  transform: rotate(-8deg);
}

.loader-capsule-fill i {
  position: absolute;
  inset: 0;
  display: block;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--lime) 0 50%, #fff 50% 100%);
  transform: translateX(0);
}

.loader-bottle-fill {
  position: absolute;
  right: 25%;
  bottom: 70px;
  z-index: 4;
  width: 44px;
  height: 78px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 10px 10px 15px 15px;
  background: rgba(255, 255, 255, 0.08);
}

.loader-bottle-fill::before {
  position: absolute;
  top: -15px;
  left: 12px;
  width: 18px;
  height: 17px;
  border-radius: 5px 5px 2px 2px;
  background: rgba(255, 255, 255, 0.78);
  content: "";
}

.loader-bottle-fill i {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  height: 100%;
  background: linear-gradient(180deg, var(--cyan), var(--teal));
  transform: translateY(18%);
}

.loader-qc-check {
  position: absolute;
  right: 9%;
  bottom: 88px;
  z-index: 5;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(184, 245, 0, 0.42);
  border-radius: 999px;
  background: rgba(184, 245, 0, 0.11);
  box-shadow: 0 0 26px rgba(184, 245, 0, 0.22);
}

.loader-qc-check::before {
  position: absolute;
  left: 15px;
  top: 11px;
  width: 15px;
  height: 24px;
  border-right: 4px solid var(--lime);
  border-bottom: 4px solid var(--lime);
  content: "";
  transform: rotate(42deg);
}

.loader-copy {
  min-width: 0;
}

.loader-kicker {
  display: block;
  margin-bottom: 18px;
  color: var(--lime);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.loader-copy p {
  max-width: 520px;
  margin: 0 auto 14px;
  color: #fff;
  font-size: clamp(1.65rem, 4vw, 3.45rem);
  font-weight: 700;
  line-height: 1;
}

.loader-copy small {
  display: block;
  min-height: 1.5em;
  max-width: 42ch;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
}

.loader-bottom {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
}

.loader-track {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}

.loader-track span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--lime), var(--teal), var(--coral));
  box-shadow: 0 0 28px rgba(184, 245, 0, 0.32);
  transform: scaleX(1);
  transform-origin: left;
}

.loader-percent {
  min-width: 46px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  font-weight: 700;
  text-align: right;
  font-variant-numeric: tabular-nums;
}

body.is-loaded .site-loader {
  visibility: hidden;
  opacity: 0;
  transform: translateY(-10px) scale(1.01);
  pointer-events: none;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 110;
  padding: 12px 16px;
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(11, 31, 58, 0.16);
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

img {
  display: block;
  max-width: 100%;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(184, 245, 0, 0.86);
  outline-offset: 3px;
}

.scroll-meter {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 100;
  width: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--coral), var(--lime));
}

.site-header {
  position: fixed;
  top: 26px;
  left: 50%;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(100% - clamp(40px, 6vw, 100px));
  min-height: 88px;
  padding: 12px 18px 12px 36px;
  border: 1px solid rgba(196, 80, 58, 0.23);
  border-radius: var(--radius);
  background: rgba(255, 253, 247, 0.82);
  box-shadow:
    0 18px 46px rgba(62, 30, 20, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  isolation: isolate;
  opacity: 1;
  transform: translateX(-50%);
  transition: background 0.25s ease, top 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
}

.site-header::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.54), rgba(255, 255, 255, 0.1));
  content: "";
  opacity: 0.72;
  pointer-events: none;
}

.site-header::after {
  content: none;
}

.site-header.scrolled {
  top: 14px;
  background: rgba(255, 253, 247, 0.92);
  box-shadow: 0 14px 38px rgba(62, 30, 20, 0.09);
}

.site-header.nav-hidden {
  opacity: 0;
  transform: translate(-50%, -24px);
  pointer-events: none;
}

.brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 154px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 4px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  color: rgba(28, 26, 28, 0.92);
  font-size: 0.96rem;
  font-weight: 600;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  border-color: rgba(216, 11, 34, 0.12);
  background: rgba(216, 11, 34, 0.05);
  color: var(--brand-red);
  transform: translateY(-1px);
}

.site-nav .nav-cta {
  min-height: 46px;
  padding: 0 24px;
  border-color: rgba(216, 11, 34, 0.58);
  background: linear-gradient(180deg, #e10d28, #c8071c);
  box-shadow: 0 14px 30px rgba(216, 11, 34, 0.2);
  color: #fff;
  font-weight: 700;
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  background: linear-gradient(180deg, #f01a34, #b90619);
  color: #fff;
}

.header-actions {
  display: none;
  align-items: center;
  gap: 14px;
  margin-left: auto;
}

.header-cta {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid rgba(216, 11, 34, 0.58);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #e10d28, #c8071c);
  box-shadow: 0 14px 30px rgba(216, 11, 34, 0.2);
  color: #fff;
  font-size: 0.98rem;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  background: linear-gradient(180deg, #f01a34, #b90619);
  box-shadow: 0 18px 34px rgba(216, 11, 34, 0.24);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(216, 11, 34, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.58);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.76),
    0 10px 24px rgba(216, 11, 34, 0.08);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.25s ease;
}

.nav-toggle span + span {
  margin-top: -12px;
}

.nav-open .nav-toggle span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav-open .nav-toggle span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.hero {
  position: relative;
  display: block;
  min-height: max(860px, 100vh);
  overflow: hidden;
  padding: 0;
  background: var(--warm-cream);
  color: #211f22;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), transparent 34%, transparent 100%);
  content: "";
  pointer-events: none;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("assets/hero-bottle-wide-20260705.png");
  background-position: left top;
  background-size: cover;
  background-repeat: no-repeat;
  content: "";
  pointer-events: none;
}

.hero-content {
  position: absolute;
  left: clamp(70px, 5.9vw, 112px);
  top: clamp(178px, 21.2vh, 218px);
  z-index: 2;
  width: min(780px, 45.5vw);
  margin: 0;
  padding: 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brief-section .eyebrow {
  color: var(--lime);
}

.hero .eyebrow {
  margin-bottom: 24px;
  color: var(--brand-red);
  font-size: clamp(0.88rem, 0.95vw, 1rem);
  font-weight: 700;
}

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

h1,
h2 {
  font-weight: 700;
  line-height: 1.04;
}

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: clamp(2.75rem, 4.85vw, 4.8rem);
  line-height: 1.03;
}

.hero h1 {
  max-width: 780px;
  margin-bottom: 44px;
  color: #242124;
  font-size: clamp(4.65rem, 5vw, 5.55rem);
  font-weight: 700;
  line-height: 0.98;
}

.hero h1 span {
  color: var(--brand-red);
  white-space: nowrap;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 3.65vw, 3.85rem);
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.3rem, 2vw, 2rem);
  line-height: 1.14;
  font-weight: 700;
}

.hero-copy {
  max-width: 720px;
  color: rgba(33, 31, 34, 0.72);
  font-size: clamp(1rem, 2vw, 1.24rem);
  line-height: 1.7;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 0;
}

.hero-proof span {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(216, 11, 34, 0.14);
  border-radius: 999px;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.56);
  color: rgba(33, 31, 34, 0.82);
  font-size: 0.82rem;
  font-weight: 700;
}

.hero-note {
  max-width: 540px;
  margin: 14px 0 0;
  color: rgba(33, 31, 34, 0.64);
  font-size: 0.92rem;
  line-height: 1.55;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 700;
  overflow: visible;
  position: relative;
  isolation: isolate;
  touch-action: manipulation;
  cursor: pointer;
  transition: transform 0.24s cubic-bezier(0.16, 1, 0.3, 1), background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.24s ease;
}

.button::before,
.button::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.button::before {
  inset: -7px;
  background:
    conic-gradient(
      from var(--stroke-angle),
      transparent 0deg,
      transparent 238deg,
      rgba(216, 11, 34, 0.72) 286deg,
      rgba(255, 157, 115, 0.72) 326deg,
      rgba(216, 11, 34, 0.72) 352deg,
      transparent 360deg
    );
  filter: blur(9px);
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.button::after {
  inset: 0;
  background: inherit;
  border-radius: inherit;
}

.button:hover,
.button:focus-visible {
  transform: translate3d(var(--button-shift-x, 0px), calc(var(--button-shift-y, 0px) - 2px), 0);
  box-shadow:
    0 0 24px rgba(216, 11, 34, 0.08),
    0 18px 42px rgba(108, 58, 34, 0.18);
}

.button:hover::before,
.button:focus-visible::before {
  opacity: 1;
  transform: scale(1);
  animation: strokeLoop 3.4s linear infinite;
}

.button.primary {
  background: linear-gradient(180deg, #e20e29, #c7061b);
  color: #fff;
  box-shadow: 0 18px 34px rgba(216, 11, 34, 0.22);
}

.button.primary:hover {
  background: linear-gradient(180deg, #f21b35, #b70618);
}

.button.secondary {
  border-color: rgba(72, 45, 36, 0.22);
  background: rgba(255, 255, 255, 0.58);
  color: #211f22;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(14px);
}

.button:active {
  transform: translate3d(var(--button-shift-x, 0px), var(--button-shift-y, 0px), 0) scale(0.98);
}

.button-ripple {
  position: absolute;
  z-index: 1;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.38);
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0);
  animation: buttonRipple 0.58s ease-out forwards;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 0;
}

.hero-actions .button {
  width: 296px;
  min-height: 80px;
  justify-content: space-between;
  padding: 0 32px;
  font-size: clamp(1.02rem, 1.25vw, 1.25rem);
}

.hero-actions .button span {
  margin-left: 18px;
  font-size: 1.72rem;
  line-height: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.hero-card {
  position: absolute;
  right: clamp(62px, 5.6vw, 96px);
  top: 31.5%;
  z-index: 3;
  width: 220px;
  padding: 24px 28px 26px;
  border: 1px solid rgba(216, 11, 34, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 250, 244, 0.86);
  box-shadow:
    0 24px 54px rgba(108, 58, 34, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px);
}

.hero-card-icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 16px;
  border: 2px solid var(--brand-red);
  border-radius: 50%;
}

.hero-card-icon::before {
  width: 14px;
  height: 22px;
  background: var(--brand-red);
  clip-path: polygon(54% 0, 18% 54%, 47% 54%, 35% 100%, 82% 40%, 52% 40%);
  content: "";
}

.hero-card p {
  margin: 0 0 2px;
  color: var(--brand-red);
  font-size: 0.86rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-card strong {
  display: block;
  margin-bottom: 8px;
  color: #242124;
  font-size: 2rem;
  line-height: 1;
  text-transform: uppercase;
}

.hero-card span:last-child {
  color: #363137;
  font-size: 1.02rem;
  line-height: 1.28;
}

.hero-assurance {
  position: absolute;
  right: clamp(62px, 5.6vw, 96px);
  top: 58%;
  z-index: 3;
  width: 236px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-assurance li {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 62px;
  border-bottom: 1px solid rgba(72, 45, 36, 0.16);
  color: #2c292c;
  font-size: 0.86rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-assurance li:first-child {
  border-top: 0;
}

.hero-assurance li span {
  position: relative;
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  border: 2px solid var(--brand-red);
  border-radius: 50%;
}

.hero-assurance li span::before {
  position: absolute;
  left: 7px;
  top: 4px;
  width: 7px;
  height: 12px;
  border-right: 2px solid var(--brand-red);
  border-bottom: 2px solid var(--brand-red);
  content: "";
  transform: rotate(42deg);
}

.hero-mobile-proof {
  display: none;
}

.metrics {
  padding: clamp(58px, 8vw, 112px) max(20px, calc((100vw - 1900px) / 2));
  background: transparent;
}

.metrics.metrics-coded-strip {
  padding-top: 0;
  padding-bottom: clamp(34px, 4vw, 54px);
  margin-top: -14px;
  background: transparent;
}

.metrics-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(230px, 0.88fr) repeat(3, minmax(180px, 0.86fr)) minmax(300px, 1fr);
  align-items: center;
  width: min(1840px, calc(100vw - 56px));
  min-height: 146px;
  margin-inline: auto;
  overflow: hidden;
  border: 1px solid rgba(72, 45, 36, 0.1);
  border-radius: 24px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.97), rgba(255, 255, 255, 0.92)),
    radial-gradient(circle at 12% 54%, rgba(216, 11, 34, 0.035), transparent 18%),
    #fffdfb;
  box-shadow:
    0 14px 34px rgba(36, 24, 16, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.metrics-panel::before {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(108, 58, 34, 0.1) 0.7px, transparent 0.7px),
    linear-gradient(90deg, rgba(216, 11, 34, 0.04), transparent 34%, rgba(216, 11, 34, 0.045));
  background-size: 10px 10px, 100% 100%;
  content: "";
  opacity: 0.22;
  pointer-events: none;
}

.metric {
  position: relative;
  z-index: 1;
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 14px;
  min-height: 120px;
  padding: 18px clamp(20px, 2vw, 30px);
  color: #242124;
  transform: perspective(900px) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg));
  transition: transform 0.24s ease;
  will-change: transform;
}

.metric:not(.metric-since)::before {
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 68px;
  background: rgba(36, 33, 36, 0.12);
  content: "";
  transform: translateY(-50%);
}

.metric:not(.metric-since)::after {
  position: absolute;
  left: -5px;
  top: 50%;
  content: none;
}

.metric strong {
  display: block;
  color: #242124;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(2rem, 2.7vw, 3.4rem);
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}

.metric span {
  display: block;
  margin-top: 4px;
  color: rgba(36, 33, 36, 0.84);
  font-size: clamp(0.88rem, 1.02vw, 1.14rem);
  font-weight: 600;
  line-height: 1.2;
}

.metric-since {
  display: block;
  min-height: 120px;
  padding-left: clamp(32px, 3.8vw, 62px);
}

.metric-since::before,
.metric-since::after {
  position: absolute;
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.metric-since::before {
  left: clamp(72px, 6vw, 136px);
  top: 34px;
  width: 116px;
  height: 86px;
  border: 3px solid rgba(216, 11, 34, 0.08);
  transform: rotate(-13deg);
}

.metric-since::after {
  content: none;
}

.metric-since span {
  position: relative;
  z-index: 1;
  margin: 0 0 2px;
  color: #242124;
  font-size: clamp(1.05rem, 1.45vw, 1.55rem);
  font-weight: 500;
}

.metric-since strong {
  position: relative;
  z-index: 1;
  color: var(--brand-red);
  font-size: clamp(3.9rem, 6vw, 7rem);
  font-weight: 700;
  line-height: 0.82;
  text-shadow:
    2px 2px 0 rgba(216, 11, 34, 0.06),
    -2px 1px 0 rgba(216, 11, 34, 0.08);
  transform: rotate(-4deg);
}

.metric-since p {
  position: relative;
  z-index: 1;
  margin: 7px 0 0;
  max-width: 220px;
  color: rgba(36, 33, 36, 0.84);
  font-size: clamp(0.96rem, 1vw, 1.12rem);
  font-weight: 500;
  line-height: 1.28;
}


.icon-uicon {
  display: inline-grid;
  place-items: center;
  color: inherit;
  line-height: 1;
  flex: 0 0 auto;
}

.icon-uicon .fi {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1em;
  height: 1em;
  color: currentColor;
  font-size: inherit;
  line-height: 1;
}

.icon-uicon .fi::before {
  display: block;
  line-height: 1;
}

.metric .metric-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: clamp(54px, 4.8vw, 76px);
  height: clamp(54px, 4.8vw, 76px);
  margin: 0;
  border-radius: 50%;
  color: var(--brand-red);
  background:
    radial-gradient(circle at 42% 36%, rgba(255, 255, 255, 0.85), rgba(216, 11, 34, 0.07)),
    rgba(216, 11, 34, 0.08);
}

.metric .metric-icon .fi {
  width: 1em;
  height: 1em;
  font-size: clamp(28px, 2.45vw, 38px);
  fill: none;
  stroke: var(--brand-red);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3.3;
}

.metrics-portfolio {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 120px;
  align-content: center;
  justify-items: start;
  margin-right: clamp(14px, 2vw, 30px);
  padding: 18px 42px 18px 44px;
  overflow: visible;
  color: #131217;
  text-transform: uppercase;
}

.metrics-portfolio::before {
  position: absolute;
  inset: 6px 0;
  z-index: -1;
  background: rgba(255, 255, 255, 0.86);
  border-radius: 18px;
  content: "";
}

.metrics-portfolio::after {
  position: absolute;
  left: 52px;
  right: 54px;
  bottom: 20px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #f11832, #e10d28);
  content: "";
  transform: rotate(-2deg);
}

.metrics-portfolio span {
  color: rgba(28, 26, 29, 0.9);
  font-size: clamp(0.76rem, 0.9vw, 0.98rem);
  font-weight: 700;
  letter-spacing: 0;
}

.metrics-portfolio strong {
  margin-top: 4px;
  color: #131217;
  font-size: clamp(1.45rem, 1.85vw, 2.25rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: 0;
}

.usp-motion-section {
  position: relative;
  min-height: 210dvh;
  padding: 0;
  overflow: clip;
  scroll-margin-top: 8rem;
}

.usp-motion-section::before,
.usp-motion-section::after {
  content: none;
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.usp-motion-section::before {
  background:
    radial-gradient(circle at 18% 22%, rgba(225, 171, 121, 0.18), transparent 32%),
    radial-gradient(circle at 84% 32%, rgba(255, 255, 255, 0.72), transparent 28%),
    radial-gradient(circle at 68% 74%, rgba(227, 179, 130, 0.14), transparent 34%);
  opacity: 0.95;
}

.usp-motion-section::after {
  background: linear-gradient(180deg, rgba(250, 248, 242, 0) 0%, rgba(250, 248, 242, 0.2) 18%, rgba(250, 248, 242, 0.58) 100%);
}

.usp-motion-sticky {
  position: sticky;
  top: 0;
  min-height: 100dvh;
  display: grid;
  align-items: center;
  padding: clamp(5.5rem, 9vw, 8rem) 1.4rem;
  overflow: hidden;
}

.usp-motion-stage {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 0;
  text-align: center;
  transform: translate3d(0, var(--usp-content-y, 8vh), 0) scale(var(--usp-content-scale, 0.94));
  transform-origin: center center;
  will-change: transform;
}

.usp-motion-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0 auto clamp(38px, 5vw, 70px);
  color: #b28243;
  font-size: clamp(1rem, 1.2vw, 1.16rem);
  font-weight: 700;
  line-height: 1.1;
}

.usp-motion-badge::before {
  content: "";
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: currentColor;
  box-shadow: none;
}

.usp-motion-heading {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0 0.19em;
  width: 100%;
  max-width: 15.6ch;
  margin: 0 auto;
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: clamp(3.1rem, 6.7vw, 7.4rem);
  font-weight: 900;
  line-height: 0.78;
  letter-spacing: -0.064em;
  text-align: center;
}

.usp-motion-word {
  flex: 0 0 auto;
  display: inline-block;
  color: inherit;
  opacity: var(--usp-word-opacity, 0.14);
  transform: scale(var(--usp-word-scale, 0.985));
  transform-origin: bottom center;
  white-space: nowrap;
  will-change: opacity, transform;
}

@media (prefers-reduced-motion: reduce) {
  .usp-motion-stage {
    transform: none;
  }

  .usp-motion-word {
    opacity: 1;
    transform: none;
    will-change: auto;
  }
}

.metrics-portfolio em {
  position: absolute;
  right: 44px;
  top: 50%;
  color: var(--brand-red);
  font-style: normal;
  font-size: clamp(1.45rem, 1.8vw, 2rem);
  font-weight: 700;
  line-height: 1;
  transform: translateY(-50%);
}

.metrics-portfolio i {
  position: absolute;
  right: 42px;
  top: 24px;
  width: 34px;
  height: 18px;
  background:
    radial-gradient(circle, rgba(216, 11, 34, 0.9) 0 2px, transparent 3px) 2px 10px / 10px 10px no-repeat,
    radial-gradient(circle, rgba(216, 11, 34, 0.72) 0 2px, transparent 3px) 12px 2px / 10px 10px no-repeat,
    radial-gradient(circle, rgba(216, 11, 34, 0.82) 0 2px, transparent 3px) 24px 6px / 10px 10px no-repeat;
}

.client-marquee-section {
  position: relative;
  padding: clamp(28px, 3vw, 40px) clamp(20px, 4vw, 48px) clamp(12px, 2vw, 20px);
}

.client-marquee-shell {
  width: min(1380px, 100%);
  margin: 0 auto;
  display: grid;
  gap: clamp(18px, 2.2vw, 26px);
}

.client-marquee-copy {
  display: grid;
  justify-items: center;
  gap: 8px;
  text-align: center;
}

.client-marquee-copy .eyebrow {
  margin: 0;
  color: rgba(216, 11, 34, 0.82);
}

.client-marquee-copy h2 {
  margin: 0;
  color: #171416;
  font-size: clamp(1.44rem, 2.3vw, 1.92rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
}

.client-marquee-copy p:last-child {
  max-width: 860px;
  margin: 0;
  color: rgba(66, 58, 54, 0.7);
  font-size: clamp(0.92rem, 0.96vw, 1rem);
  line-height: 1.68;
}

.client-marquee {
  position: relative;
  display: flex;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}

.client-marquee-track {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: clamp(28px, 3.2vw, 46px);
  min-width: max-content;
  padding: clamp(8px, 1vw, 12px) clamp(16px, 1.6vw, 20px);
  animation: clientMarquee 13s linear infinite;
}

.client-marquee-track img {
  display: block;
  width: auto;
  height: clamp(30px, 3vw, 42px);
  object-fit: contain;
  filter: brightness(0) saturate(0%) opacity(0.88);
}

@keyframes clientMarquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-100%, 0, 0);
  }
}

.site-header {
  top: 0;
  width: 100%;
  min-height: 112px;
  padding: 22px clamp(28px, 4.8vw, 78px);
  border: 0;
  border-radius: 0;
  background: #ffffff;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.site-header::before,
.site-header::after {
  content: none;
}

.site-header.scrolled {
  top: 0;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 34px rgba(16, 20, 18, 0.06);
}

.brand img {
  width: clamp(118px, 9vw, 144px);
}

.site-nav {
  position: static;
  display: flex;
  align-items: center;
  gap: clamp(18px, 3.3vw, 58px);
  margin-inline: auto;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.site-nav a {
  min-height: 42px;
  padding: 0;
  border: 0;
  color: #090909;
  font-size: clamp(0.94rem, 1vw, 1.08rem);
  font-weight: 500;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  border-color: transparent;
  background: transparent;
  color: var(--brand-red);
  transform: none;
}

.site-nav .nav-cta {
  display: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: 0;
}

.header-cta,
.site-nav .nav-cta {
  min-height: 58px;
  gap: 16px;
  padding: 0 10px 0 24px;
  border: 0;
  border-radius: 999px;
  background: #d90416;
  box-shadow: 0 16px 32px rgba(217, 4, 22, 0.18);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
}

.header-cta:hover,
.header-cta:focus-visible,
.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  background: #d90416;
  box-shadow: 0 18px 36px rgba(217, 4, 22, 0.24);
  color: #fff;
  transform: translateY(-1px);
}

.cta-arrow {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 999px;
  background: #a9000d;
  color: #fff;
  font-size: 1.52rem;
  font-weight: 500;
  line-height: 1;
}

.nav-toggle {
  display: none;
}

.hero.hero-mockup {
  min-height: 0;
  padding: 112px clamp(14px, 1.65vw, 26px) 0;
  overflow: visible;
  background: #ffffff;
  color: #ffffff;
}

.hero.hero-mockup::before,
.hero.hero-mockup::after {
  content: none;
}

.hero-mockup-shell {
  position: relative;
  min-height: clamp(690px, 55.6vw, 850px);
  overflow: hidden;
  border-radius: clamp(36px, 4vw, 62px);
  background:
    linear-gradient(180deg, rgba(2, 18, 14, 0.58), rgba(2, 18, 14, 0.52)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.48), rgba(5, 37, 26, 0.22) 50%, rgba(0, 0, 0, 0.42)),
    url("assets/liquid-manufacturing-line.jpg") center 44% / cover no-repeat;
  box-shadow: 0 20px 50px rgba(12, 27, 22, 0.12);
  isolation: isolate;
}

.hero-mockup-shell::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 50% 47%, rgba(255, 255, 255, 0.2), transparent 16%),
    radial-gradient(circle at 84% 18%, rgba(255, 220, 158, 0.16), transparent 15%),
    linear-gradient(180deg, rgba(4, 24, 19, 0.16), rgba(0, 0, 0, 0.22));
  content: "";
}

.hero-mockup-copy {
  position: relative;
  z-index: 4;
  max-width: 980px;
  margin-inline: auto;
  padding-top: clamp(70px, 6vw, 112px);
  text-align: center;
}

.hero-mockup-copy h1 {
  max-width: 1020px;
  margin: 0 auto 18px;
  color: #ffffff;
  font-size: clamp(3.2rem, 5.3vw, 5.35rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-mockup-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(1.05rem, 1.5vw, 1.5rem);
  font-weight: 500;
  line-height: 1.22;
}

.hero-pill-cta {
  position: relative;
  z-index: 6;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-height: 64px;
  margin-top: clamp(68px, 5.7vw, 92px);
  padding: 0 8px 0 34px;
  border-radius: 999px;
  background: #ffffff;
  color: #d90416;
  font-size: 1.1rem;
  font-weight: 700;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
}

.hero-pill-cta:hover,
.hero-pill-cta:focus-visible {
  color: #d90416;
  transform: translateY(-2px);
}

.hero-visual-bottle {
  position: absolute;
  left: 50%;
  bottom: clamp(128px, 11vw, 174px);
  z-index: 3;
  width: clamp(170px, 15.5vw, 246px);
  max-width: none;
  filter: drop-shadow(0 24px 38px rgba(0, 0, 0, 0.34));
  transform: translateX(-50%);
}

.hero-panel-row {
  position: absolute;
  left: clamp(58px, 5.7vw, 100px);
  right: clamp(58px, 5.7vw, 100px);
  bottom: clamp(46px, 3.9vw, 72px);
  z-index: 5;
  display: grid;
  grid-template-columns: minmax(0, 0.97fr) minmax(0, 1fr);
  gap: clamp(22px, 2.1vw, 34px);
}

.hero-service-panel,
.hero-quote-panel {
  min-height: clamp(172px, 13.4vw, 218px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  background: linear-gradient(120deg, rgba(18, 55, 27, 0.88), rgba(7, 45, 24, 0.72));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 18px 40px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
}

.hero-service-panel {
  display: grid;
  grid-template-columns: clamp(142px, 13.1vw, 198px) minmax(0, 1fr);
  gap: clamp(24px, 2.1vw, 34px);
  align-items: center;
  padding: 14px clamp(24px, 2vw, 34px) 14px 14px;
  color: #ffffff;
}

.hero-service-panel:hover,
.hero-service-panel:focus-visible {
  color: #ffffff;
  transform: translateY(-2px);
}

.hero-service-panel img {
  width: 100%;
  height: 100%;
  min-height: clamp(148px, 11vw, 190px);
  border-radius: 14px;
  object-fit: cover;
  object-position: center;
}

.hero-service-copy {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.hero-service-copy strong {
  color: #ffffff;
  font-size: clamp(1.28rem, 1.75vw, 1.72rem);
  line-height: 1.08;
}

.hero-service-copy > span {
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1rem, 1.28vw, 1.35rem);
  line-height: 1.35;
}

.hero-service-copy em {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: #ffffff;
  font-size: clamp(0.96rem, 1.12vw, 1.15rem);
  font-style: normal;
  font-weight: 700;
}

.hero-service-copy em span {
  font-size: 1.7rem;
  font-weight: 400;
}

.hero-quote-panel {
  display: grid;
  align-content: center;
  gap: 20px;
  padding: clamp(24px, 2.5vw, 42px);
}

.hero-quote-panel p {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.2rem, 1.65vw, 1.68rem);
  font-weight: 500;
  line-height: 1.2;
}

.hero-quote-panel div {
  display: flex;
  align-items: center;
  gap: 18px;
}

.hero-quote-panel img {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  object-fit: cover;
}

.hero-quote-panel span {
  display: grid;
  gap: 3px;
}

.hero-quote-panel strong {
  color: #ffffff;
  font-size: 1.08rem;
  line-height: 1.1;
}

.hero-quote-panel small {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  line-height: 1.2;
}

@media (max-width: 1180px) {
  .site-header {
    min-height: 96px;
    padding-inline: clamp(20px, 3.2vw, 36px);
  }

  .site-nav {
    gap: clamp(16px, 2vw, 28px);
  }

  .header-cta {
    min-height: 52px;
    padding-left: 20px;
  }

  .cta-arrow {
    width: 38px;
    height: 38px;
  }

  .hero.hero-mockup {
    padding-top: 96px;
  }
}

@media (max-width: 820px) {
  .site-header {
    min-height: 76px;
    padding: 10px 14px 10px 18px;
    background: rgba(255, 255, 255, 0.94);
  }

  .site-nav {
    position: fixed;
    top: 86px;
    left: 14px;
    right: 14px;
    display: grid;
    gap: 4px;
    padding: 14px;
    border: 1px solid rgba(216, 11, 34, 0.12);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 22px 46px rgba(24, 14, 10, 0.12);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    min-height: 48px;
    padding: 0 12px;
  }

  .site-nav .nav-cta {
    display: inline-flex;
    justify-content: space-between;
    margin-top: 4px;
  }

  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: grid;
    width: 50px;
    height: 50px;
    border-color: rgba(11, 25, 24, 0.18);
    border-radius: 14px;
    background: #f7fbff;
    box-shadow: none;
  }

  .hero.hero-mockup {
    padding: 76px 0 0;
  }

  .hero-mockup-shell {
    min-height: 900px;
    border-radius: 0 0 34px 34px;
  }

  .hero-mockup-copy {
    width: min(100% - 36px, 640px);
    padding-top: 52px;
  }

  .hero-mockup-copy h1 {
    font-size: clamp(2.75rem, 10vw, 4.2rem);
  }

  .hero-mockup-copy p br,
  .hero-quote-panel p br,
  .hero-service-copy > span br {
    display: none;
  }

  .hero-pill-cta {
    margin-top: 38px;
  }

  .hero-visual-bottle {
    bottom: 316px;
    width: clamp(160px, 35vw, 218px);
  }

  .hero-panel-row {
    left: 18px;
    right: 18px;
    bottom: 24px;
    grid-template-columns: 1fr;
  }

  .hero-service-panel {
    grid-template-columns: 122px 1fr;
  }

  .hero-service-panel img {
    min-height: 128px;
  }
}

@media (max-width: 520px) {
  .brand img {
    width: 126px;
  }

  .hero-mockup-shell {
    min-height: 930px;
  }

  .hero-mockup-copy h1 {
    font-size: clamp(2.35rem, 11vw, 3.1rem);
  }

  .hero-mockup-copy p {
    font-size: 1rem;
  }

  .hero-pill-cta {
    min-height: 58px;
    padding-left: 24px;
  }

  .hero-visual-bottle {
    bottom: 376px;
  }

  .hero-service-panel {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .hero-service-panel img {
    height: 154px;
  }

  .hero-quote-panel {
    padding: 24px;
  }
}
/* Supplied banner image update. */
.hero-mockup-shell {
  background:
    linear-gradient(180deg, rgba(2, 18, 14, 0.2), rgba(2, 18, 14, 0.12)),
    url("assets/hero-manufacturing-bottle-banner.png") center center / cover no-repeat;
}

.hero-mockup-shell::before {
  background: none;
}

.hero-visual-bottle {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  .client-marquee-track {
    animation: none;
  }
}

.metric:hover {
  transform: perspective(900px) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg)) translateY(-4px);
}

.section {
  padding: 86px max(28px, calc((100vw - 1240px) / 2));
}

.section-heading {
  max-width: 850px;
  margin-bottom: 32px;
}

.section-heading p:not(.eyebrow),
.brief-copy p {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.7;
}

.intro-band {
  background: var(--paper);
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.service-card,
.faq-item,
.brief-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 16px 50px rgba(11, 31, 58, 0.07);
}

.service-card,
.faq-item {
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.service-card:hover,
.faq-item:hover {
  border-color: rgba(22, 140, 255, 0.26);
  box-shadow: 0 22px 56px rgba(11, 31, 58, 0.11);
  transform: translateY(-5px);
}

.service-card {
  display: grid;
  align-content: start;
  min-height: 248px;
  padding: 22px;
}

.service-card span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--coral);
  font-weight: 700;
  transition: transform 0.24s ease, color 0.24s ease;
}

.service-card:hover span {
  color: var(--teal);
  transform: translateX(4px);
}

.service-card p,
.faq-item p {
  color: var(--muted);
  line-height: 1.65;
}

.service-card small {
  display: block;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: rgba(8, 63, 70, 0.72);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.45;
}

.format-section {
  padding: clamp(74px, 7vw, 104px) clamp(24px, 5vw, 72px) clamp(72px, 6vw, 96px);
  background: transparent;
  overflow: hidden;
}

.formats-shell {
  width: min(1680px, 100%);
  margin: 0 auto;
}

.formats-top {
  display: grid;
  grid-template-columns: minmax(0, 980px);
  justify-content: center;
  gap: clamp(20px, 3vw, 40px);
  align-items: center;
  margin-bottom: clamp(38px, 3.5vw, 58px);
  text-align: center;
}

.formats-copy {
  display: grid;
  justify-items: center;
  max-width: 980px;
  margin-inline: auto;
}

.formats-copy .eyebrow {
  margin-bottom: 18px;
  color: var(--brand-red);
}

.formats-copy h2 {
  max-width: 980px;
  margin: 0;
  color: #111116;
  font-size: clamp(3rem, 4.8vw, 4.875rem);
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
}

.formats-highlight,
.formats-dot {
  color: var(--brand-red);
}

.formats-copy > p:last-child {
  max-width: 640px;
  margin: 18px auto 0;
  color: rgba(17, 17, 22, 0.9);
  font-size: clamp(1rem, 1.2vw, 1.26rem);
  line-height: 1.42;
}

.formats-help {
  display: none;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  justify-self: end;
  max-width: 330px;
  padding-right: 0;
  margin-top: clamp(62px, 8vw, 96px);
}

.formats-help__icon {
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: radial-gradient(circle at 34% 30%, rgba(255, 255, 255, 0.95), rgba(255, 235, 235, 0.92) 70%);
  color: var(--brand-red);
  box-shadow: 0 18px 44px rgba(226, 120, 120, 0.16);
}

.formats-help__icon .fi {
  width: 1em;
  height: 1em;
  font-size: 36px;
}

.formats-help p {
  margin: 0;
  color: rgba(17, 17, 22, 0.92);
  font-size: clamp(0.98rem, 1vw, 1.08rem);
  line-height: 1.45;
}

.formats-help strong {
  display: block;
  margin-bottom: 4px;
  font-size: clamp(1rem, 1.05vw, 1.12rem);
  font-weight: 700;
}

.formats-cards {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
  padding-inline: 0;
}

.category-card {
  position: relative;
  display: grid;
  align-content: start;
  min-height: clamp(340px, 25vw, 414px);
  padding: 22px 22px 0;
  border: 1px solid rgba(30, 28, 32, 0.08);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.94)),
    rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 44px rgba(82, 63, 47, 0.08);
  overflow: hidden;
  transform-origin: center bottom;
  transition:
    transform 280ms ease,
    box-shadow 280ms ease,
    border-color 280ms ease,
    background 280ms ease;
  will-change: transform;
  --base-rotate: 0deg;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --card-shift: 0px;
  --card-scale: 1;
  transform:
    perspective(1400px)
    translateY(var(--card-shift))
    rotate(var(--base-rotate))
    rotateX(var(--tilt-y))
    rotateY(var(--tilt-x))
    scale(var(--card-scale));
}

.category-card__icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 30%, rgba(255, 255, 255, 0.98), rgba(255, 236, 236, 0.92) 72%);
  color: var(--brand-red);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

.category-card__icon .fi {
  width: 1em;
  height: 1em;
  font-size: 25px;
}

.category-card h3 {
  position: relative;
  z-index: 2;
  margin: 0;
  color: #141417;
  font-size: clamp(1.1rem, 1.22vw, 1.48rem);
  font-weight: 600;
  line-height: 1.08;
  text-wrap: balance;
}

.category-card__line {
  position: relative;
  z-index: 2;
  display: block;
  width: 24px;
  height: 2px;
  margin: 12px 0 14px;
  border-radius: 999px;
  background: var(--brand-red);
}

.category-card p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: rgba(18, 18, 20, 0.95);
  font-size: clamp(0.88rem, 0.86vw, 0.98rem);
  line-height: 1.42;
}

.category-card__media {
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  pointer-events: none;
}

.category-card__media img {
  display: block;
  width: min(100%, var(--media-width, 100%));
  max-width: var(--media-max-width, 100%);
  height: auto;
  max-height: 100%;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 18px 30px rgba(94, 59, 29, 0.12));
  transform: translateY(var(--media-shift, 0)) scale(var(--media-scale, 1));
  transition: transform 280ms ease, filter 280ms ease;
}

.category-card--whey {
  margin-top: 0;
  --base-rotate: 0deg;
  --media-width: 104%;
  --media-scale: 1.02;
}

.category-card--creatine {
  margin-top: 0;
  --base-rotate: 0deg;
  --media-width: 92%;
  --media-shift: 8px;
}

.category-card--featured {
  z-index: 3;
  min-height: clamp(340px, 25vw, 414px);
  margin-inline: 0;
  border-color: rgba(216, 11, 34, 0.16);
  box-shadow: 0 20px 48px rgba(216, 11, 34, 0.08);
  --card-shift: 0px;
  --media-width: 108%;
  --media-scale: 1.04;
}

.category-card--mass {
  margin-top: 0;
  --base-rotate: 0deg;
  --media-width: 108%;
  --media-scale: 1.02;
}

.category-card--wellness {
  margin-top: 0;
  --base-rotate: 0deg;
  --media-width: 102%;
  --media-shift: 8px;
}

.category-card:hover,
.category-card:focus-within {
  border-color: rgba(216, 11, 34, 0.22);
  box-shadow:
    0 24px 52px rgba(183, 132, 74, 0.12),
    0 0 0 1px rgba(216, 11, 34, 0.08);
  --card-shift: -8px;
  --card-scale: 1.01;
}

.category-card:hover .category-card__media img,
.category-card:focus-within .category-card__media img {
  filter:
    drop-shadow(0 24px 34px rgba(94, 59, 29, 0.16))
    drop-shadow(0 0 24px rgba(216, 11, 34, 0.08));
  transform: translateY(calc(var(--media-shift, 0) - 4px)) scale(calc(var(--media-scale, 1) * 1.02));
}

@media (prefers-reduced-motion: reduce) {
  .category-card {
    transition: border-color 200ms ease, box-shadow 200ms ease;
    transform: rotate(var(--base-rotate));
  }

  .category-card:hover,
  .category-card:focus-within {
    --card-shift: 0px;
    --card-scale: 1;
  }

  .category-card__media img,
  .category-card:hover .category-card__media img,
  .category-card:focus-within .category-card__media img {
    transition: none;
    transform: translateY(var(--media-shift, 0)) scale(var(--media-scale, 1));
  }
}

.formats-cta {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.formats-cta .button {
  min-width: 304px;
  min-height: 66px;
  padding-inline: 32px;
  color: #fff;
  background: linear-gradient(180deg, #f1132d 0%, #da0b22 100%);
  box-shadow: 0 22px 54px rgba(216, 11, 34, 0.18);
}

@media (max-width: 1260px) {
  .formats-cards {
    gap: 12px;
    padding-inline: 0;
  }

  .category-card--featured {
    margin-inline: 0;
  }
}

@media (max-width: 1024px) {
  .formats-shell {
    width: 100%;
  }

  .formats-top {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .formats-help {
    margin-top: 0;
  }

  .formats-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .category-card,
  .category-card--whey,
  .category-card--creatine,
  .category-card--mass,
  .category-card--wellness,
  .category-card--featured {
    min-height: 438px;
    margin: 0;
    --base-rotate: 0deg;
    --card-shift: 0px;
    --card-scale: 1;
  }

  .category-card--featured {
    grid-column: 1 / -1;
    min-height: 476px;
  }
}

@media (max-width: 720px) {
  .formats-shell {
    width: calc(100vw - 40px);
  }

  .formats-copy h2 {
    font-size: clamp(2.6rem, 9vw, 4.875rem);
  }

  .formats-help {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .formats-help__icon {
    width: 72px;
    height: 72px;
  }

  .formats-help__icon .fi {
    width: 1em;
    height: 1em;
    font-size: 34px;
  }

  .formats-cards {
    grid-template-columns: 1fr;
  }

  .category-card,
  .category-card--featured {
    min-height: 432px;
  }

  .category-card__media {
    height: 44%;
  }

  .category-card:hover,
  .category-card:focus-within {
    --card-shift: -8px;
    --card-scale: 1.01;
  }

  .formats-cta .button {
    width: 100%;
    min-width: 0;
  }
}

.process-section.founder-path-section {
  position: relative;
  overflow: visible;
  padding: clamp(78px, 7vw, 122px) clamp(24px, 5vw, 72px) clamp(86px, 7vw, 132px);
  background: transparent;
  color: #19191f;
}

.process-section.founder-path-section::before,
.process-section.founder-path-section::after {
  position: absolute;
  border: 1px solid rgba(216, 11, 34, 0.08);
  border-radius: 50%;
  content: none;
  pointer-events: none;
}

.process-section.founder-path-section::before {
  left: clamp(-360px, -18vw, -180px);
  top: -180px;
  width: clamp(430px, 35vw, 680px);
  height: clamp(430px, 35vw, 680px);
  box-shadow:
    0 0 0 20px rgba(216, 11, 34, 0.035),
    0 0 0 46px rgba(216, 11, 34, 0.026),
    0 0 0 76px rgba(216, 11, 34, 0.018);
}

.process-section.founder-path-section::after {
  right: -220px;
  bottom: -260px;
  width: clamp(520px, 42vw, 780px);
  height: clamp(520px, 42vw, 780px);
  box-shadow:
    0 0 0 22px rgba(216, 11, 34, 0.03),
    0 0 0 54px rgba(216, 11, 34, 0.02);
}

.founder-path-shell {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(1680px, 100%);
  margin: 0 auto;
  grid-template-areas:
    "copy cards"
    ". cta"
    "workflow workflow";
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 78px);
  align-items: center;
}

.founder-path-copy {
  grid-area: copy;
}

.founder-path-copy .eyebrow {
  color: var(--brand-red);
}

.founder-path-copy h2 {
  max-width: 480px;
  margin: 0;
  color: #202026;
  font-size: clamp(3.7rem, 6vw, 4.875rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.94;
  text-wrap: balance;
}

.founder-path-copy h2 span {
  display: block;
  color: var(--brand-red);
}

.founder-path-copy i {
  position: relative;
  display: block;
  width: 54px;
  height: 3px;
  margin: clamp(28px, 3vw, 42px) 0 24px;
  background: var(--brand-red);
}

.founder-path-copy i::after {
  position: absolute;
  top: 50%;
  right: -18px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(216, 11, 34, 0.46);
  content: "";
  transform: translateY(-50%);
}

.founder-path-copy > p:last-child {
  max-width: 360px;
  margin: 0;
  color: #303038;
  font-size: clamp(1.1rem, 1.3vw, 1.42rem);
  line-height: 1.35;
}

.founder-path-cards {
  position: relative;
  grid-area: cards;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.2vw, 38px);
  align-items: center;
}

.founder-path-cards::before {
  position: absolute;
  left: clamp(-74px, -5vw, -34px);
  right: clamp(-74px, -5vw, -34px);
  top: 50%;
  height: 1px;
  background:
    radial-gradient(circle, var(--brand-red) 0 4px, transparent 5px) left center / 14px 14px no-repeat,
    radial-gradient(circle, var(--brand-red) 0 4px, transparent 5px) center center / 14px 14px no-repeat,
    radial-gradient(circle, var(--brand-red) 0 4px, transparent 5px) right center / 14px 14px no-repeat,
    linear-gradient(90deg, rgba(216, 11, 34, 0.16), rgba(216, 11, 34, 0.24), rgba(216, 11, 34, 0.16));
  content: "";
  transform: translateY(-50%);
}

.founder-card {
  --card-pad: clamp(24px, 2.3vw, 38px);
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto auto auto auto 1fr auto;
  min-height: clamp(520px, 34vw, 560px);
  padding: var(--card-pad);
  overflow: hidden;
  border: 1px solid rgba(216, 11, 34, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 30px 78px rgba(89, 43, 30, 0.08);
  transition: border-color 0.24s ease, box-shadow 0.24s ease, transform 0.24s ease;
}

.founder-card:hover {
  border-color: rgba(216, 11, 34, 0.34);
  box-shadow: 0 34px 86px rgba(89, 43, 30, 0.12);
  transform: translateY(-5px);
}

.founder-card--featured {
  min-height: clamp(520px, 34vw, 560px);
  border-color: rgba(216, 11, 34, 0.34);
  box-shadow: 0 38px 92px rgba(216, 11, 34, 0.14);
  transform: translateY(-10px);
}

.founder-card--featured:hover {
  transform: translateY(-15px);
}

.founder-card__icon {
  display: grid;
  width: clamp(70px, 5.8vw, 96px);
  height: clamp(70px, 5.8vw, 96px);
  margin: 0 auto clamp(26px, 3vw, 46px);
  place-items: center;
  border-radius: 50%;
  background: rgba(216, 11, 34, 0.08);
  color: var(--brand-red);
}

.founder-card--featured .founder-card__icon {
  width: clamp(96px, 7.6vw, 128px);
  height: clamp(96px, 7.6vw, 128px);
  background: linear-gradient(145deg, #f02638 0%, var(--brand-red-dark) 100%);
  color: #fff;
  box-shadow: 0 24px 42px rgba(216, 11, 34, 0.22);
}

.founder-card__icon .fi {
  width: 1em;
  height: 1em;
  font-size: clamp(32px, 2.8vw, 44px);
}

.founder-card small {
  display: inline-grid;
  width: max-content;
  min-width: 32px;
  margin-bottom: 18px;
  padding: 4px 8px;
  place-items: center;
  border-radius: 6px;
  background: rgba(216, 11, 34, 0.08);
  color: var(--brand-red);
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1;
}

.founder-card h3 {
  max-width: 260px;
  margin: 0;
  color: #1d1d22;
  font-size: clamp(1.5rem, 1.72vw, 1.75rem);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.02;
  text-wrap: balance;
}

.founder-card b {
  display: block;
  width: 28px;
  height: 3px;
  margin: 22px 0;
  background: var(--brand-red);
}

.founder-card > p {
  margin: 0;
  color: #26262c;
  font-size: clamp(0.95rem, 0.98vw, 1rem);
  line-height: 1.46;
}

.founder-support {
  margin: 24px calc(var(--card-pad) * -1) calc(var(--card-pad) * -1);
  padding: clamp(24px, 2vw, 34px) var(--card-pad) var(--card-pad);
  border-top: 1px solid rgba(216, 11, 34, 0.13);
  background: rgba(255, 255, 255, 0.34);
}

.founder-support strong {
  display: block;
  margin-bottom: 16px;
  color: #202026;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.founder-support ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.founder-support li {
  position: relative;
  min-height: 20px;
  padding-left: 28px;
  color: #24242a;
  font-size: clamp(0.85rem, 0.85vw, 0.875rem);
  line-height: 1.35;
}

.founder-support li::before {
  position: absolute;
  left: 0;
  top: 1px;
  display: grid;
  width: 17px;
  height: 17px;
  place-items: center;
  border: 2px solid var(--brand-red);
  border-radius: 50%;
  color: var(--brand-red);
  content: "\2713";
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
}

.founder-workflow-toggle {
  grid-area: cta;
  justify-self: center;
  justify-content: space-between;
  gap: 28px;
  width: min(360px, 100%);
  min-height: 68px;
  margin-top: clamp(-6px, 1vw, 18px);
  padding-inline: 32px;
  border: 0;
  background: linear-gradient(180deg, #ef1028 0%, #c90017 100%);
  box-shadow: 0 22px 48px rgba(216, 11, 34, 0.22);
  color: #fff;
  font-size: 1.04rem;
  cursor: pointer;
}

.founder-workflow-toggle[aria-expanded="true"] span:last-child {
  transform: rotate(90deg);
}

.founder-workflow-toggle span:last-child {
  display: inline-flex;
  margin-left: auto;
  font-size: 1.6rem;
  line-height: 1;
  transition: transform 0.22s ease;
}

.founder-workflow {
  grid-area: workflow;
  margin-top: clamp(18px, 3vw, 40px);
}

.founder-workflow[hidden] {
  display: none;
}

.founder-workflow.is-open {
  animation: workflowReveal 0.28s ease both;
}

.workflow-roadmap {
  position: relative;
  min-height: var(--workflow-scroll-height, clamp(1700px, 270vh, 3200px));
}

.workflow-roadmap__sticky {
  --workflow-body: rgba(94, 84, 77, 0.95);
  --workflow-line: rgba(230, 156, 182, 0.96);
  --workflow-title: #181417;
  --workflow-pill: #efa5ba;
  display: grid;
  align-content: center;
  gap: clamp(16px, 2.2vw, 28px);
  min-height: calc(100vh - clamp(72px, 7vh, 96px));
  padding: clamp(8px, 2vw, 24px) 0 clamp(12px, 2.6vw, 28px);
  position: sticky;
  top: clamp(72px, 7vh, 96px);
  overflow: hidden;
}

.workflow-roadmap__heading {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding-inline: 18px;
  text-align: center;
}

.workflow-roadmap__heading .eyebrow {
  margin: 0;
  color: var(--brand-red);
}

.workflow-roadmap__heading h3 {
  max-width: 12ch;
  margin: 0;
  color: var(--workflow-title);
  font-family: var(--font-sans);
  font-size: clamp(3rem, 5vw, 4.875rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.9;
  text-wrap: balance;
}

.workflow-roadmap__carousel {
  position: relative;
  width: 100vw;
  margin-inline: calc(50% - 50vw);
  overflow: hidden;
}

.workflow-roadmap__track {
  --workflow-date-row: 2.05rem;
  --workflow-gap: clamp(1.15rem, 1.65vw, 1.4rem);
  --workflow-node-half: 2.15rem;
  --workflow-node-row: 4.3rem;
  --workflow-spine-half: clamp(2.36rem, 2.65vw, 2.78rem);
  --workflow-spine-height: clamp(4.72rem, 5.3vw, 5.56rem);
  --workflow-step: clamp(23rem, 30vw, 33rem);
  --workflow-step-half: clamp(11.5rem, 15vw, 16.5rem);
  position: relative;
  display: flex;
  width: max-content;
  padding: 0 18vw clamp(1.25rem, 2.4vw, 2.1rem);
  overflow: visible;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

.workflow-roadmap__spine {
  position: absolute;
  top: calc(var(--workflow-date-row) + var(--workflow-gap) + var(--workflow-node-half) - var(--workflow-spine-half));
  left: calc(18vw + var(--workflow-step-half));
  z-index: 1;
  width: calc(100% - 36vw - var(--workflow-step));
  height: var(--workflow-spine-height);
  overflow: visible;
  pointer-events: none;
}

.workflow-roadmap__spine path {
  fill: none;
  opacity: 0.94;
  stroke: var(--workflow-line);
  stroke-linecap: round;
  stroke-width: 2.4px;
}

.workflow-roadmap__step {
  position: relative;
  z-index: 2;
  display: grid;
  flex: 0 0 var(--workflow-step);
  min-width: 0;
  padding: 0 clamp(1rem, 2vw, 2rem);
  grid-template-rows: var(--workflow-date-row) var(--workflow-node-row) auto;
  place-items: center;
  row-gap: var(--workflow-gap);
  text-align: center;
  opacity: 0.42;
  transition: opacity 0.28s ease;
}

.workflow-roadmap__date {
  display: inline-flex;
  padding: 0.48rem 0.84rem;
  border-radius: 999px;
  background: var(--workflow-pill);
  box-shadow: inset 0 -2px rgba(31, 22, 31, 0.08);
  color: #1c1720;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.workflow-roadmap__step:nth-of-type(3n + 2) {
  --workflow-pill: #aef3a7;
}

.workflow-roadmap__step:nth-of-type(3n) {
  --workflow-pill: #d9c2a0;
}

.workflow-roadmap__node {
  position: relative;
  z-index: 3;
  display: grid;
  place-items: center;
  width: var(--workflow-node-row);
  height: var(--workflow-node-row);
}

.workflow-roadmap__dot {
  position: relative;
  z-index: 3;
  display: inline-flex;
  width: 1.08rem;
  height: 1.08rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--workflow-pill);
  color: #1c1720;
  box-shadow:
    0 0 0 0.76rem color-mix(in srgb, var(--workflow-pill) 18%, transparent),
    0 0 0 1.34rem color-mix(in srgb, var(--workflow-pill) 8%, transparent);
}

.workflow-roadmap__dot svg {
  width: 0.64rem;
  height: 0.64rem;
}

.workflow-roadmap__dot path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3.4px;
}

.workflow-roadmap__spark {
  position: absolute;
  z-index: 4;
  width: 0.28rem;
  height: 0.28rem;
  border-radius: 999px;
  background: var(--workflow-pill);
  opacity: 0.62;
  animation: workflowSpark 2.8s ease-in-out infinite;
}

.workflow-roadmap__spark--one {
  top: 0.96rem;
  right: 1rem;
}

.workflow-roadmap__spark--two {
  bottom: 0.84rem;
  left: 0.72rem;
}

.workflow-roadmap__spark--three {
  top: 2.35rem;
  right: 0.42rem;
  animation-delay: 0.32s;
}

.workflow-roadmap__copy {
  position: relative;
  z-index: 2;
  max-width: 24.5rem;
  opacity: 0.82;
  transform: translate3d(0, var(--workflow-lift, 0), 0);
  transition: opacity 0.32s ease, transform 0.32s ease;
}

.workflow-roadmap__step.is-active .workflow-roadmap__copy,
.workflow-roadmap__step:hover .workflow-roadmap__copy {
  opacity: 1;
}

.workflow-roadmap__copy h4 {
  margin: 0;
  color: var(--workflow-title);
  font-family: var(--font-sans);
  font-size: clamp(2rem, 2.7vw, 3.12rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.92;
  text-wrap: balance;
}

.workflow-roadmap__copy p {
  margin: 0.84rem 0 0;
  color: var(--workflow-body);
  font-size: clamp(0.96rem, 1vw, 1.08rem);
  line-height: 1.34;
  text-wrap: pretty;
}

@keyframes workflowReveal {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes workflowSpark {
  0%,
  100% {
    opacity: 0.18;
    transform: scale(0.45);
  }

  48% {
    opacity: 0.72;
    transform: scale(1);
  }
}

@media (max-width: 1180px) {
  .founder-path-shell {
    grid-template-areas:
      "copy"
      "cards"
      "cta"
      "workflow";
    grid-template-columns: 1fr;
  }

  .founder-path-copy {
    max-width: 720px;
  }

  .founder-path-copy h2,
  .founder-path-copy > p:last-child {
    max-width: 720px;
  }

  .founder-path-cards {
    grid-template-columns: repeat(3, minmax(240px, 1fr));
    overflow: visible;
  }

  .founder-card,
  .founder-card--featured {
    min-height: 500px;
  }

  .workflow-roadmap__track {
    --workflow-step: clamp(22rem, 44vw, 30rem);
    --workflow-step-half: clamp(11rem, 22vw, 15rem);
  }

  .workflow-roadmap__step {
    flex-basis: var(--workflow-step);
  }

  .workflow-roadmap__spine {
    left: calc(18vw + var(--workflow-step-half));
    width: calc(100% - 36vw - var(--workflow-step));
  }
}

@media (max-width: 820px) {
  .process-section.founder-path-section {
    padding: 72px 20px 84px;
  }

  .founder-path-copy h2 {
    font-size: clamp(3.1rem, 9vw, 4.875rem);
  }

  .founder-path-cards {
    grid-template-columns: 1fr;
  }

  .founder-path-cards::before {
    display: none;
  }

  .founder-card,
  .founder-card--featured {
    min-height: 520px;
    transform: none;
  }

  .founder-card:hover,
  .founder-card--featured:hover {
    transform: translateY(-3px);
  }

  .founder-card__icon,
  .founder-card--featured .founder-card__icon {
    margin-inline: 0;
  }

  .workflow-roadmap__heading {
    justify-items: start;
    padding-inline: 0;
    text-align: left;
  }

  .workflow-roadmap__heading h3 {
    max-width: 10ch;
    font-size: clamp(2.4rem, 9vw, 4.875rem);
  }

  .workflow-roadmap__copy {
    max-width: 19rem;
  }
}

@media (max-width: 620px) {
  .workflow-roadmap {
    min-height: auto;
  }

  .workflow-roadmap__sticky {
    min-height: auto;
    padding-top: 0;
    position: relative;
    top: auto;
    overflow: visible;
  }

  .workflow-roadmap__carousel {
    width: auto;
    margin-inline: -4px;
    padding-inline: 4px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .workflow-roadmap__carousel::-webkit-scrollbar {
    display: none;
  }

  .workflow-roadmap__track {
    --workflow-date-row: 2rem;
    --workflow-gap: 1.02rem;
    --workflow-node-half: 2rem;
    --workflow-node-row: 4rem;
    --workflow-spine-half: 2.32rem;
    --workflow-spine-height: 4.64rem;
    --workflow-step: 21rem;
    --workflow-step-half: 10.5rem;
    min-width: max-content;
    padding-right: 1rem;
    padding-left: 1rem;
    transform: none !important;
  }

  .workflow-roadmap__step {
    flex-basis: var(--workflow-step);
    opacity: 1;
  }

  .workflow-roadmap__spine {
    left: calc(1rem + var(--workflow-step-half));
    width: calc(100% - 22rem);
  }
}

.strategy-section.launch-assistant-section {
  position: relative;
  overflow: hidden;
  padding: clamp(56px, 5vw, 78px) clamp(24px, 5vw, 72px) clamp(68px, 5.5vw, 92px);
  background: transparent;
  color: #1d1d23;
}

.strategy-section.launch-assistant-section::before {
  position: absolute;
  left: -300px;
  top: 60px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(216, 11, 34, 0.06);
  border-radius: 50%;
  box-shadow:
    0 0 0 26px rgba(216, 11, 34, 0.025),
    0 0 0 58px rgba(216, 11, 34, 0.018);
  content: none;
  pointer-events: none;
}

.launch-assistant-shell {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(1680px, 100%);
  margin: 0 auto;
  grid-template-columns: minmax(300px, 0.5fr) minmax(560px, 1fr);
  gap: clamp(34px, 5.5vw, 82px);
  align-items: center;
}

.assistant-copy {
  max-width: 700px;
}

.assistant-badge {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  margin-bottom: 28px;
  padding: 0 18px;
  border: 1px solid rgba(216, 11, 34, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 12px 26px rgba(216, 11, 34, 0.08);
  color: var(--brand-red);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
}

.assistant-badge::before {
  margin-right: 10px;
  content: "\2726";
}

.assistant-copy h2 {
  margin: 0 -82px 0 0;
  color: #202026;
  font-size: clamp(3rem, 4.75vw, 4.875rem);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.04;
  text-wrap: balance;
}

.assistant-copy h2 span {
  color: var(--brand-red);
}

.assistant-copy > p {
  max-width: 560px;
  margin: 24px 0 0;
  color: #5c6570;
  font-size: clamp(1.08rem, 1.28vw, 1.32rem);
  line-height: 1.55;
}

.assistant-bubbles {
  display: grid;
  gap: 14px;
  margin-top: clamp(26px, 3vw, 42px);
}

.assistant-bubble {
  display: grid;
  max-width: 470px;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-items: center;
}

.assistant-bubble p {
  position: relative;
  margin: 0;
  padding: 14px 18px;
  border: 1px solid rgba(79, 45, 35, 0.11);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 36px rgba(60, 35, 24, 0.08);
  color: #202026;
  font-weight: 700;
  line-height: 1.35;
}

.assistant-bubble p::before {
  position: absolute;
  left: -8px;
  top: 18px;
  width: 14px;
  height: 14px;
  border-left: 1px solid rgba(79, 45, 35, 0.11);
  border-bottom: 1px solid rgba(79, 45, 35, 0.11);
  background: inherit;
  content: "";
  transform: rotate(45deg);
}

.assistant-bot {
  position: relative;
  display: inline-grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 55%, #fff 0 4px, transparent 5px),
    linear-gradient(145deg, #24262d, #111218);
  box-shadow: 0 14px 28px rgba(19, 20, 26, 0.18);
}

.assistant-bot::before {
  display: block;
  width: 30px;
  height: 22px;
  border: 2px solid var(--brand-red);
  border-radius: 8px;
  background: #fff;
  content: "";
}

.assistant-bot::after {
  position: absolute;
  right: 0;
  bottom: 1px;
  width: 13px;
  height: 13px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--brand-red);
  content: "";
}

.assistant-progress-card {
  width: min(470px, 100%);
  margin-top: clamp(24px, 3vw, 36px);
  padding: 16px 18px;
  border: 1px solid rgba(79, 45, 35, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 40px rgba(60, 35, 24, 0.08);
}

.assistant-progress-card div:first-child {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
  color: #202026;
  font-weight: 700;
}

.assistant-progress-card strong {
  font-weight: 700;
}

.assistant-progress-track {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(216, 11, 34, 0.1);
}

.assistant-progress-track span {
  display: block;
  width: 20%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #ef1028, #c90017);
  transition: width 0.25s ease;
}

.assistant-handnote {
  margin: 24px 0 0 48px;
  color: #1f2730;
  font-size: clamp(1rem, 1.4vw, 1.28rem);
  font-style: italic;
  font-weight: 700;
  line-height: 1.35;
  transform: rotate(-5deg);
}

.assistant-panel {
  min-width: 0;
}

.assistant-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.5fr);
  gap: clamp(22px, 3vw, 40px);
  padding: clamp(22px, 2.4vw, 36px);
  border: 1px solid rgba(216, 11, 34, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 247, 247, 0.84)),
    rgba(255, 255, 255, 0.94);
  box-shadow: 0 30px 90px rgba(70, 42, 32, 0.1);
}

.assistant-question {
  min-width: 0;
}

.assistant-kicker {
  margin: 0 0 12px;
  color: var(--brand-red);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.assistant-question h3 {
  margin: 0;
  color: #202026;
  font-size: clamp(1.85rem, 2.15vw, 2.45rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.06;
  text-wrap: balance;
}

.assistant-question > p:not(.assistant-kicker):not(.assistant-secure):not(.assistant-status) {
  margin: 12px 0 22px;
  color: #68717d;
  font-size: 1rem;
  line-height: 1.5;
}

.assistant-options {
  display: grid;
  gap: 12px;
}

.assistant-options.is-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.assistant-option {
  position: relative;
  overflow: hidden;
  display: grid;
  width: 100%;
  min-height: 64px;
  grid-template-columns: 1fr;
  gap: 4px;
  align-items: center;
  padding: 14px 18px 14px 20px;
  border: 1px solid rgba(79, 45, 35, 0.15);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  color: #202026;
  cursor: pointer;
  text-align: left;
  transition: border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.assistant-option::before {
  position: absolute;
  inset: 12px auto 12px 0;
  width: 3px;
  border-radius: 0 999px 999px 0;
  background: transparent;
  content: "";
  transition: background 0.22s ease, transform 0.22s ease;
}

.assistant-option:hover,
.assistant-option:focus-visible {
  border-color: rgba(216, 11, 34, 0.38);
  box-shadow: 0 14px 34px rgba(216, 11, 34, 0.08);
  transform: translateY(-2px);
}

.assistant-option.is-selected {
  border-color: var(--brand-red);
  background: linear-gradient(180deg, rgba(216, 11, 34, 0.075), rgba(255, 255, 255, 0.82));
  box-shadow: inset 0 0 0 1px rgba(216, 11, 34, 0.08);
}

.assistant-option.is-selected::before {
  background: var(--brand-red);
  transform: scaleY(1.15);
}

.assistant-option-title {
  display: block;
  color: #202026;
  font-size: 0.98rem;
  font-weight: 650;
  line-height: 1.24;
}

.assistant-option small {
  display: block;
  margin-top: 3px;
  color: #69727e;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.25;
}

.assistant-options.is-grid .assistant-option {
  min-height: 96px;
  grid-template-columns: 1fr;
  justify-items: start;
  gap: 4px;
  text-align: left;
}

.assistant-contact {
  display: grid;
  gap: 13px;
}

.assistant-contact[hidden] {
  display: none;
}

.assistant-contact label {
  color: #202026;
}

.assistant-phone-row {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 10px;
}

.assistant-phone-row span {
  display: grid;
  min-height: 52px;
  place-items: center;
  border: 1px solid rgba(79, 45, 35, 0.15);
  border-radius: var(--radius);
  background: #fff;
  color: #202026;
  font-weight: 700;
}

.assistant-consent {
  grid-template-columns: 24px 1fr;
  gap: 12px;
  align-items: start;
  font-weight: 700;
  line-height: 1.45;
}

.assistant-consent input {
  min-height: 0;
  width: 22px;
  height: 22px;
  accent-color: var(--brand-red);
}

.launch-assistant-section input:focus,
.launch-assistant-section textarea:focus {
  border-color: var(--brand-red);
  box-shadow: 0 0 0 4px rgba(216, 11, 34, 0.12);
}

.assistant-actions {
  display: grid;
  grid-template-columns: auto minmax(220px, 1fr);
  gap: 12px;
  margin-top: 18px;
  align-items: center;
}

.assistant-actions .button {
  width: 100%;
  min-height: 58px;
  justify-content: space-between;
  padding-inline: 26px;
  border: 0;
  background: linear-gradient(180deg, #202128, #111217);
  color: #fff;
  box-shadow: 0 16px 34px rgba(16, 17, 22, 0.18);
}

.assistant-back {
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid rgba(79, 45, 35, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  color: #202026;
  font-weight: 700;
  cursor: pointer;
}

.assistant-back[hidden] {
  display: none;
}

.assistant-back[hidden] + .assistant-next {
  grid-column: 1 / -1;
}

.assistant-secure,
.assistant-status {
  margin: 10px 0 0;
  color: #7a838d;
  font-size: 0.85rem;
  font-weight: 700;
}

.assistant-status {
  min-height: 1.2em;
  color: var(--brand-red);
}

.assistant-sidebar {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 16px;
  border: 1px solid rgba(79, 45, 35, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.58);
}

.assistant-sidebar ol {
  position: relative;
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.assistant-sidebar ol::before {
  position: absolute;
  left: 17px;
  top: 20px;
  bottom: 20px;
  border-left: 1px solid rgba(79, 45, 35, 0.12);
  content: "";
}

.assistant-sidebar li {
  position: relative;
  display: grid;
  min-height: 50px;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: center;
  padding: 10px 12px;
  border-radius: var(--radius);
  transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.assistant-sidebar li span {
  z-index: 1;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(79, 45, 35, 0.14);
  border-radius: 50%;
  background: #fff;
  color: #202026;
  font-size: 0.86rem;
  font-weight: 650;
}

.assistant-sidebar li p {
  margin: 0;
  color: #202026;
  font-size: 0.86rem;
  font-weight: 650;
  line-height: 1.28;
}

.assistant-sidebar li em {
  display: block;
  margin-top: 4px;
  color: #68717d;
  font-style: normal;
  font-weight: 700;
}

.assistant-sidebar li.is-active {
  background: rgba(216, 11, 34, 0.07);
  box-shadow: inset 3px 0 0 var(--brand-red);
}

.assistant-sidebar li.is-active span,
.assistant-sidebar li.is-complete span {
  border-color: var(--brand-red);
  background: var(--brand-red);
  color: #fff;
}

.assistant-side-fields {
  display: grid;
  gap: 10px;
}

.assistant-side-fields div {
  display: grid;
  min-height: 50px;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(79, 45, 35, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.54);
  color: #6c7480;
  font-size: 0.88rem;
  font-weight: 650;
}

.assistant-side-fields p {
  overflow: hidden;
  margin: 0;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 1320px) {
  .assistant-copy {
    max-width: 700px;
  }

  .assistant-copy h2 {
    max-width: 700px;
    margin-right: 0;
  }

  .assistant-card {
    grid-template-columns: minmax(0, 1fr) minmax(220px, 0.42fr);
  }
}

@media (max-width: 980px) {
  .launch-assistant-shell {
    grid-template-columns: 1fr;
  }

  .assistant-card {
    grid-template-columns: 1fr;
  }

  .assistant-sidebar {
    border-left: 0;
    border-top: 1px solid rgba(79, 45, 35, 0.14);
    padding: 22px 0 0;
  }

  .assistant-sidebar ol {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 6px;
  }

  .assistant-sidebar ol::before {
    display: none;
  }

  .assistant-sidebar li {
    min-height: 0;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 8px;
    padding: 8px 6px;
    text-align: center;
  }

  .assistant-sidebar li span {
    width: 34px;
    height: 34px;
  }

  .assistant-sidebar li p {
    font-size: 0.76rem;
  }

  .assistant-side-fields {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

@media (max-width: 720px) {
  .strategy-section.launch-assistant-section {
    padding: 72px 20px 84px;
  }

  .assistant-copy h2 {
    font-size: clamp(2.95rem, 8.7vw, 4.875rem);
  }

  .assistant-copy > p {
    font-size: 1rem;
  }

  .assistant-bubble {
    grid-template-columns: 44px 1fr;
  }

  .assistant-bot {
    width: 44px;
    height: 44px;
  }

  .assistant-bot::before {
    width: 25px;
    height: 19px;
  }

  .assistant-card {
    padding: 18px;
  }

  .assistant-question h3 {
    font-size: clamp(1.8rem, 8vw, 2.45rem);
  }

  .assistant-options.is-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .assistant-option {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 14px 16px;
  }

  .assistant-options.is-grid .assistant-option {
    min-height: 104px;
  }

  .assistant-phone-row {
    grid-template-columns: 1fr;
  }

  .assistant-actions {
    grid-template-columns: 1fr;
  }

  .assistant-back {
    order: 2;
  }

  .assistant-next {
    order: 1;
  }

  .assistant-sidebar {
    display: none;
  }

}

@media (max-width: 520px) {
  .assistant-badge {
    max-width: 100%;
  }

  .assistant-copy h2 {
    font-size: clamp(2.55rem, 11vw, 3.6rem);
  }

  .assistant-options.is-grid {
    grid-template-columns: 1fr;
  }

  .assistant-handnote {
    margin-left: 20px;
  }
}

label {
  display: grid;
  gap: 8px;
  color: rgba(11, 31, 58, 0.76);
  font-size: 0.88rem;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(11, 31, 58, 0.16);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  padding: 12px 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(22, 140, 255, 0.14);
}

.team-frame-section {
  --team-progress: 0;
  position: relative;
  min-height: 218dvh;
  overflow: clip;
  color: var(--ink);
  background: transparent;
}

.team-frame-section::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: none;
  opacity: 0;
}

.team-motion-sticky {
  position: sticky;
  top: 0;
  min-height: 100dvh;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: clamp(106px, 9vw, 138px) clamp(18px, 4vw, 72px) clamp(48px, 6vw, 80px);
}

.team-motion-copy {
  position: relative;
  z-index: 4;
  isolation: isolate;
  display: grid;
  justify-items: center;
  max-width: min(980px, 100%);
  text-align: center;
  pointer-events: auto;
}

.team-motion-copy::before {
  content: none;
}

.team-motion-copy .eyebrow {
  display: none;
  margin-bottom: -20px;
  color: var(--brand-red);
  font-size: 0.875rem;
  justify-content: center;
}

.team-motion-copy h2 {
  margin: 0;
  max-width: 10.5ch;
  color: var(--ink);
  font-size: clamp(4.3rem, 5vw, 4.875rem);
  line-height: 0.86;
  letter-spacing: 0;
  text-wrap: balance;
  text-shadow: 0 24px 78px rgba(133, 75, 42, 0.14);
  transform: translateY(calc(var(--team-progress) * -22px)) scale(calc(1 - (var(--team-progress) * 0.02)));
  transition: transform 0.08s linear;
}

.team-motion-copy h2 span {
  display: block;
}

.team-motion-copy h2 span span {
  display: inline;
}

.team-motion-copy h2 span span.team-heading-accent {
  color: var(--brand-red);
}

.team-motion-copy p:not(.eyebrow) {
  max-width: 54ch;
  margin: clamp(18px, 2.2vw, 28px) auto 0;
  color: rgba(25, 22, 21, 0.72);
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  line-height: 1.65;
}

.team-profile-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 54px;
  margin-top: clamp(22px, 2.6vw, 34px);
  padding: 0 24px;
  border: 1px solid rgba(216, 11, 34, 0.62);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #eb1730, #c8061c);
  box-shadow: 0 18px 40px rgba(216, 11, 34, 0.18);
  color: #fff;
  font-weight: 700;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.team-profile-cta:hover,
.team-profile-cta:focus-visible {
  background: linear-gradient(180deg, #f3213a, #b70418);
  box-shadow: 0 22px 48px rgba(216, 11, 34, 0.24);
  color: #fff;
  transform: translateY(-2px);
}

.team-profile-cta:active {
  transform: translateY(0) scale(0.99);
}

.team-motion-stage {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.team-profile {
  position: absolute;
  width: clamp(126px, 13vw, 210px);
  overflow: hidden;
  border: 1px solid rgba(143, 88, 58, 0.18);
  border-radius: 18px;
  background: rgba(255, 250, 242, 0.86);
  box-shadow: 0 22px 60px rgba(105, 62, 36, 0.14);
  opacity: 0;
  will-change: transform, opacity;
  pointer-events: auto;
}

.team-profile::after {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(251, 244, 234, 0.86));
  content: "";
  opacity: 1;
  transition: opacity 0.25s ease;
}

.team-profile img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: filter 0.3s ease, transform 0.45s ease;
}

.team-profile:hover {
  border-color: rgba(216, 11, 34, 0.28);
  box-shadow: 0 28px 80px rgba(216, 11, 34, 0.16), 0 24px 70px rgba(105, 62, 36, 0.16);
}

.team-profile:hover img {
  filter: saturate(1.08) contrast(1.03);
  transform: scale(1.035);
}

.team-profile-caption {
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 8px;
  z-index: 2;
  display: grid;
  gap: 2px;
  padding: 7px 8px;
  border: 1px solid rgba(143, 88, 58, 0.12);
  border-radius: 10px;
  background: rgba(255, 250, 242, 0.92);
  box-shadow: 0 10px 26px rgba(86, 48, 26, 0.1);
  backdrop-filter: blur(10px) saturate(130%);
  -webkit-backdrop-filter: blur(10px) saturate(130%);
  text-align: center;
}

.team-profile-caption strong {
  color: var(--ink);
  font-size: clamp(0.58rem, 0.68vw, 0.78rem);
  font-weight: 700;
  line-height: 1.1;
}

.team-profile-caption span {
  color: rgba(25, 22, 21, 0.66);
  font-size: clamp(0.48rem, 0.56vw, 0.64rem);
  font-weight: 500;
  line-height: 1.18;
}

.team-profile:nth-child(1) { left: 1%; top: 14%; width: clamp(184px, 18.2vw, 286px); }
.team-profile:nth-child(2) { right: 1%; top: 12%; width: clamp(180px, 17.8vw, 278px); }
.team-profile:nth-child(3) { right: 8%; bottom: 12%; width: clamp(170px, 16.8vw, 264px); }
.team-profile:nth-child(4) { left: 28%; top: 6%; width: clamp(146px, 12.8vw, 202px); }
.team-profile:nth-child(5) { left: 1%; top: 56%; width: clamp(144px, 13.1vw, 202px); }
.team-profile:nth-child(6) { left: 59%; bottom: 6%; width: clamp(144px, 13.1vw, 204px); }
.team-profile:nth-child(7) { left: 26%; bottom: 4%; width: clamp(132px, 11.8vw, 186px); }
.team-profile:nth-child(8) { right: 1%; top: 42%; width: clamp(132px, 11.8vw, 186px); }
.team-profile:nth-child(9) { left: 66%; top: 6%; width: clamp(130px, 11.3vw, 180px); }

.team-motion-progress {
  position: absolute;
  left: 50%;
  bottom: clamp(22px, 4vw, 42px);
  z-index: 4;
  width: min(360px, calc(100% - 48px));
  height: 6px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(25, 22, 21, 0.1);
  transform: translateX(-50%);
}

.team-motion-progress span {
  display: block;
  width: calc(var(--team-progress) * 100%);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--brand-red), rgba(216, 11, 34, 0.18));
}

.team-directory-section {
  position: relative;
  padding-top: clamp(82px, 8vw, 118px);
  padding-bottom: clamp(90px, 9vw, 132px);
  overflow: hidden;
}

.team-directory-section::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: none;
}

.team-page-intro {
  padding-top: clamp(58px, 6vw, 88px);
  padding-bottom: clamp(28px, 4vw, 48px);
}

.team-page-intro .team-directory-head {
  max-width: 980px;
  margin-bottom: 0;
}

.team-page-intro h1 {
  max-width: 920px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(3.1rem, 6.4vw, 6.7rem);
  line-height: 0.94;
  letter-spacing: 0;
  text-wrap: balance;
}

.team-page-intro h1 span {
  color: var(--brand-red);
}

.team-page-directory {
  padding-top: clamp(44px, 5vw, 76px);
  scroll-margin-top: 126px;
}

.team-directory-head {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  max-width: 820px;
  margin-bottom: clamp(28px, 4vw, 46px);
}

.team-directory-head h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.7rem, 5.5vw, 5.7rem);
  line-height: 0.94;
  text-wrap: balance;
}

.team-directory-head p:not(.eyebrow) {
  max-width: 62ch;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.team-directory-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 1.8vw, 22px);
}

.team-directory-card {
  overflow: hidden;
  border: 1px solid rgba(143, 88, 58, 0.14);
  border-radius: 18px;
  background: rgba(255, 250, 242, 0.82);
  box-shadow: 0 20px 52px rgba(92, 53, 30, 0.1);
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.team-directory-card:hover {
  border-color: rgba(216, 11, 34, 0.26);
  box-shadow: 0 28px 70px rgba(92, 53, 30, 0.14);
  transform: translateY(-4px);
}

.team-directory-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 0.8;
  height: auto;
  object-fit: cover;
  object-position: center top;
}

.team-directory-card div {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 4px;
  min-height: 86px;
  padding: 16px 16px 18px;
  border-top: 1px solid rgba(143, 88, 58, 0.12);
  background: rgba(255, 250, 242, 0.94);
}

.team-directory-card strong {
  color: var(--ink);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.25;
}

.team-directory-card span {
  color: rgba(25, 22, 21, 0.62);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.35;
}

.faq-section {
  background: var(--paper);
}

.faq-section .section-heading {
  margin-inline: auto;
  text-align: center;
}

.faq-section .section-heading .eyebrow {
  justify-self: center;
  font-size: 0.875rem;
}

.faq-section .section-heading h2 {
  font-size: clamp(3rem, 4.9vw, 4.875rem);
  line-height: 1.02;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 920px;
  margin-inline: auto;
}

.faq-item {
  padding: 0;
  overflow: hidden;
}

.faq-item summary {
  min-height: 72px;
  padding: 24px 58px 24px 24px;
  cursor: pointer;
  font-size: 1.08rem;
  font-weight: 700;
  list-style: none;
  position: relative;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  position: absolute;
  top: 50%;
  right: 24px;
  color: var(--coral);
  content: "+";
  font-size: 1.4rem;
  transform: translateY(-50%);
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  max-width: 760px;
  margin: 0;
  padding: 0 24px 24px;
}

.brief-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.75fr);
  gap: clamp(24px, 6vw, 78px);
  padding: 86px max(28px, calc((100vw - 1240px) / 2));
  background: var(--green);
  color: #fff;
}

.brief-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.contact-lines {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.contact-lines a {
  color: #fff;
  font-weight: 700;
}

.brief-trust {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.brief-trust li {
  position: relative;
  padding-left: 24px;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 700;
  line-height: 1.5;
}

.brief-trust li::before {
  position: absolute;
  left: 0;
  color: var(--lime);
  content: "+";
  font-weight: 700;
}

.brief-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(22px, 4vw, 36px);
  background: #fff;
  color: var(--ink);
}

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

.brief-form .button {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.form-helper,
.form-status {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.form-status {
  min-height: 1.4em;
  color: var(--green);
  font-weight: 700;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 36px max(28px, calc((100vw - 1240px) / 2));
  background: #052b31;
  color: rgba(255, 255, 255, 0.76);
}

.site-footer img {
  width: 148px;
  margin-bottom: 16px;
  filter: brightness(1.08);
}

.site-footer p {
  max-width: 440px;
  margin-bottom: 0;
  line-height: 1.6;
}

.site-footer nav {
  display: flex;
  gap: 18px;
  color: #fff;
  font-weight: 700;
}

.page-main {
  padding-top: 112px;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.72fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
  padding: 72px max(28px, calc((100vw - 1240px) / 2)) 84px;
  background:
    linear-gradient(135deg, rgba(224, 244, 251, 0.95), rgba(244, 248, 252, 0.96)),
    var(--paper);
}

.page-hero h1 {
  max-width: 820px;
  color: var(--ink);
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.page-hero__image {
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.48);
  box-shadow: 0 24px 64px rgba(11, 31, 58, 0.14);
}

.page-hero__image img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.page-actions .secondary {
  border-color: rgba(11, 31, 58, 0.18);
  background: rgba(255, 255, 255, 0.5);
  color: var(--ink);
}

.page-band {
  padding: 86px max(28px, calc((100vw - 1240px) / 2));
}

.page-band.tint {
  background: var(--tint);
}

.page-band.dark {
  background: var(--hero-bg);
  color: #fff;
}

.page-band.dark .eyebrow {
  color: var(--lime);
}

.page-band.dark p {
  color: rgba(255, 255, 255, 0.74);
}

.metrics,
.intro-band,
.format-section,
.process-section.founder-path-section,
.strategy-section.launch-assistant-section,
.faq-section,
.brief-section,
.page-hero,
.page-band,
.page-band.tint,
.page-band.dark,
.site-footer {
  background: transparent;
}

.page-band.dark,
.brief-section,
.site-footer {
  color: var(--ink);
}

.page-band.dark .eyebrow,
.brief-section .eyebrow {
  color: var(--brand-red);
}

.page-band.dark p,
.brief-copy p,
.brief-trust li,
.site-footer,
.site-footer p {
  color: var(--muted);
}

.contact-lines a,
.site-footer nav,
.site-footer nav a {
  color: var(--ink);
}

.brief-trust li::before {
  color: var(--brand-red);
}

.brief-form,
.contact-panel {
  background: rgba(255, 250, 242, 0.82);
  box-shadow: 0 20px 52px rgba(92, 53, 30, 0.1);
}

.site-footer {
  border-top: 1px solid rgba(143, 88, 58, 0.16);
}

.site-footer img {
  filter: none;
}

.page-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.page-card {
  min-height: 230px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.68)),
    var(--surface);
  box-shadow: 0 16px 46px rgba(11, 31, 58, 0.07);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.page-card:hover {
  border-color: rgba(22, 140, 255, 0.26);
  box-shadow: 0 24px 60px rgba(11, 31, 58, 0.11);
  transform: translateY(-5px);
}

.page-card span {
  display: inline-flex;
  margin-bottom: 26px;
  color: var(--coral);
  font-weight: 700;
}

.page-card p,
.split-content p,
.feature-list li {
  color: var(--muted);
  line-height: 1.7;
}

.split-content {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 0.82fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.split-content img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(11, 31, 58, 0.13);
}

.feature-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 26px;
}

.feature-list li::before {
  position: absolute;
  left: 0;
  color: var(--coral);
  content: "+";
  font-weight: 700;
}

.contact-card-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(360px, 0.82fr);
  gap: clamp(24px, 6vw, 72px);
}

.contact-panel {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.contact-panel a {
  color: #fff;
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.wf-animate {
  opacity: 0;
  transform: translate3d(0, 28px, 0) scale(0.985);
  filter: blur(10px);
  transition:
    opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--wf-delay, 0ms);
  will-change: opacity, transform, filter;
}

.wf-animate.wf-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

.wf-slide-left {
  transform: translate3d(-34px, 0, 0) scale(0.985);
}

.wf-slide-right {
  transform: translate3d(34px, 0, 0) scale(0.985);
}

.wf-scale {
  transform: translate3d(0, 18px, 0) scale(0.94);
}

.wf-slide-left.wf-visible,
.wf-slide-right.wf-visible,
.wf-scale.wf-visible {
  transform: translate3d(0, 0, 0) scale(1);
}

.wf-depth {
  transform-style: preserve-3d;
}

.wf-depth:hover {
  transform: translateY(-7px) scale(1.01);
}

.wf-parallax {
  transform: translate3d(0, var(--wf-parallax-y, 0px), 0) scale(var(--wf-parallax-scale, 1));
  transition: transform 0.14s linear;
  will-change: transform;
}

.wf-section {
  position: relative;
  overflow: clip;
}

.wf-section::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: none;
  opacity: var(--wf-glow-opacity, 0);
  transition: opacity 0.45s ease;
}

.wf-section:hover::before {
  --wf-glow-opacity: 1;
}

@keyframes heroDrift {
  from {
    transform: scale(1.02) translate3d(-8px, -4px, 0);
  }

  to {
    transform: scale(1.075) translate3d(10px, 6px, 0);
  }
}

@keyframes statusRise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes tabPulse {
  0% {
    transform: scale(0.98);
  }

  70% {
    transform: scale(1.025);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes strokeLoop {
  to {
    --stroke-angle: 360deg;
  }
}

@keyframes loaderProgress {
  to {
    transform: scaleX(1);
  }
}

@keyframes buttonRipple {
  0% {
    opacity: 0.45;
    transform: translate(-50%, -50%) scale(0);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(18);
  }
}

@media (max-width: 1180px) {
  .header-actions {
    display: flex;
  }

  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: fixed;
    top: 112px;
    left: clamp(20px, 4vw, 48px);
    right: clamp(20px, 4vw, 48px);
    display: grid;
    gap: 6px;
    padding: 14px;
    border: 1px solid rgba(196, 80, 58, 0.2);
    border-radius: var(--radius);
    background: rgba(255, 253, 247, 0.96);
    box-shadow:
      0 22px 56px rgba(62, 30, 20, 0.12),
      inset 0 1px 0 rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(22px) saturate(150%);
    -webkit-backdrop-filter: blur(22px) saturate(150%);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    min-height: 50px;
    padding: 0 16px;
  }

  .site-nav .nav-cta {
    justify-content: center;
  }
}

@media (max-width: 980px) {
  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: fixed;
    top: 104px;
    left: 28px;
    right: 28px;
    display: grid;
    gap: 6px;
    padding: 14px;
    border: 1px solid rgba(196, 80, 58, 0.2);
    border-radius: var(--radius);
    background: rgba(255, 253, 247, 0.96);
    box-shadow:
      0 22px 56px rgba(62, 30, 20, 0.12),
      inset 0 1px 0 rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(22px) saturate(150%);
    -webkit-backdrop-filter: blur(22px) saturate(150%);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    min-height: 50px;
    padding: 0 16px;
  }

  .site-nav .nav-cta {
    justify-content: center;
  }

  .hero {
    min-height: 0;
    padding: 0 0 clamp(72px, 8vw, 106px);
  }

  .hero::before {
    z-index: 0;
    background:
      radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.88), transparent 32%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 248, 239, 0.86) 64%, rgba(255, 249, 242, 0.98) 100%);
  }

  .hero::after {
    inset: 112px 0 auto;
    z-index: 1;
    height: clamp(720px, 108vw, 1040px);
    background-image: url("assets/hero-bottle-portrait-tight.png");
    background-size: 100% auto;
    background-position: center top;
    mask-image: none;
    -webkit-mask-image: none;
    opacity: 1;
    transform: none;
  }

  .hero-content {
    position: relative;
    left: auto;
    top: auto;
    width: min(860px, calc(100% - 80px));
    margin-top: 0;
    margin-inline: auto;
    padding-top: clamp(900px, 110vw, 1045px);
    text-align: center;
  }

  .hero .eyebrow {
    display: none;
  }

  .hero h1 {
    max-width: 840px;
    margin: 0 auto 42px;
    font-size: clamp(4.45rem, 9vw, 5.85rem);
    line-height: 1.03;
    text-wrap: balance;
  }

  .hero-actions {
    justify-content: center;
    gap: clamp(18px, 3vw, 30px);
  }

  .hero-actions .button {
    width: min(380px, calc(50% - 15px));
    min-height: 88px;
  }

  .hero-card,
  .hero-assurance {
    display: none;
  }

  .hero-mobile-proof {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(230px, 1.35fr) repeat(3, minmax(0, 1fr));
    width: min(860px, calc(100% - 80px));
    min-height: 130px;
    margin: clamp(44px, 6vw, 64px) auto 0;
    overflow: hidden;
    border: 1px solid rgba(216, 11, 34, 0.14);
    border-radius: calc(var(--radius) + 10px);
    background: rgba(255, 253, 248, 0.82);
    box-shadow:
      0 22px 54px rgba(108, 58, 34, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.76);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }

  .hero-mobile-fast,
  .hero-mobile-proof-item {
    display: flex;
    min-width: 0;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 22px;
    border-right: 1px solid rgba(216, 11, 34, 0.13);
  }

  .hero-mobile-proof-item:last-child {
    border-right: 0;
  }

  .hero-mobile-fast {
    justify-content: flex-start;
  }

  .hero-mobile-fast .hero-card-icon {
    width: 48px;
    height: 48px;
    margin: 0;
  }

  .hero-mobile-fast p,
  .hero-mobile-fast strong,
  .hero-mobile-fast small {
    display: block;
  }

  .hero-mobile-fast p {
    margin: 0 0 2px;
    color: var(--brand-red);
    font-size: 0.84rem;
    font-weight: 700;
    text-transform: uppercase;
  }

  .hero-mobile-fast strong {
    color: #242124;
    font-size: clamp(1.35rem, 3.4vw, 1.85rem);
    line-height: 1;
    text-transform: uppercase;
  }

  .hero-mobile-fast small {
    margin-top: 6px;
    color: rgba(36, 33, 36, 0.72);
    font-size: 0.88rem;
    line-height: 1.25;
  }

  .hero-mobile-proof-item {
    flex-direction: column;
    color: #252225;
    font-size: 0.76rem;
    font-weight: 700;
    line-height: 1.22;
    text-align: center;
    text-transform: uppercase;
  }

  .hero-mobile-proof-item span {
    position: relative;
    width: 28px;
    height: 28px;
    border: 2px solid var(--brand-red);
    border-radius: 50%;
  }

  .hero-mobile-proof-item span::before {
    position: absolute;
    left: 8px;
    top: 5px;
    width: 7px;
    height: 12px;
    border-right: 2px solid var(--brand-red);
    border-bottom: 2px solid var(--brand-red);
    content: "";
    transform: rotate(42deg);
  }

  .metrics,
  .intro-grid,
  .brief-section,
  .page-hero,
  .split-content,
  .contact-card-grid {
    grid-template-columns: 1fr;
  }

  .page-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .team-motion-copy h2 {
    font-size: clamp(3.7rem, 7vw, 4.875rem);
  }

  .team-profile {
    width: clamp(86px, 12vw, 150px);
  }

  .team-directory-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

}

@media (max-width: 720px) {
  .site-loader {
    padding: 18px;
  }

  .loader-card {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px;
  }

  .loader-visual {
    width: 100%;
    min-width: 0;
    height: 190px;
  }

  .loader-visual::before {
    inset: 14px;
  }

  .loader-visual::after {
    left: 8%;
    right: 8%;
    bottom: 62px;
    height: 42px;
  }

  .loader-process-card {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }

  .loader-process-card::before {
    left: 10px;
    right: 10px;
    bottom: 9px;
  }

  .loader-process-card::after {
    top: 12px;
    transform: translateX(-50%) scale(0.82);
  }

  .loader-process-formula {
    left: 6%;
    top: 32px;
  }

  .loader-process-blend {
    left: 35%;
    top: 24px;
  }

  .loader-process-fill {
    right: 25%;
    top: 40px;
  }

  .loader-process-qc {
    right: 6%;
    top: 30px;
  }

  .loader-conveyor {
    left: 16px;
    right: 16px;
    bottom: 40px;
    height: 24px;
  }

  .loader-particles i {
    width: 6px;
    height: 6px;
  }

  .loader-capsule-fill {
    left: 14%;
    bottom: 60px;
    width: 58px;
    height: 24px;
  }

  .loader-bottle-fill {
    right: 24%;
    bottom: 54px;
    width: 34px;
    height: 60px;
  }

  .loader-bottle-fill::before {
    left: 9px;
    width: 14px;
  }

  .loader-qc-check {
    right: 5%;
    bottom: 66px;
    width: 38px;
    height: 38px;
  }

  .loader-qc-check::before {
    left: 12px;
    top: 8px;
    width: 12px;
    height: 20px;
  }

  .loader-copy p {
    max-width: 17ch;
    font-size: clamp(1.75rem, 9vw, 2.7rem);
  }

  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    min-height: 66px;
    padding: 8px 10px 8px 14px;
  }

  .brand img {
    width: 124px;
  }

  .header-actions {
    gap: 8px;
  }

  .header-cta {
    min-height: 44px;
    padding: 0 14px;
    font-size: clamp(0.78rem, 3.4vw, 0.9rem);
  }

  .hero {
    padding-bottom: 58px;
  }

  .hero::before {
    z-index: 0;
    background:
      radial-gradient(circle at 50% 12%, rgba(255, 255, 255, 0.92), transparent 34%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.32) 0%, rgba(255, 249, 242, 0.9) 66%, rgba(255, 249, 242, 1) 100%);
  }

  .hero::after {
    inset: 76px 0 auto;
    z-index: 1;
    height: clamp(470px, 126vw, 660px);
    background-size: 100% auto;
    background-position: center top;
    opacity: 1;
  }

  .hero .eyebrow {
    display: none;
  }

  .hero-content {
    position: relative;
    left: auto;
    top: auto;
    width: calc(100% - 40px);
    margin-inline: auto;
    padding-top: clamp(600px, 145vw, 720px);
    text-align: center;
  }

  .hero h1 {
    margin-bottom: 28px;
    font-size: clamp(2.9rem, 12.8vw, 4.1rem);
    line-height: 1.03;
  }

  .hero-actions {
    gap: 12px;
  }

  .hero-actions .button {
    width: min(330px, calc(50% - 6px));
    min-height: 70px;
    padding: 0 22px;
  }

  .hero-mobile-proof {
    grid-template-columns: 1fr 1fr;
    width: calc(100% - 40px);
    min-height: 0;
    margin-top: 34px;
    border-radius: calc(var(--radius) + 8px);
  }

  .hero-mobile-fast {
    grid-column: 1 / -1;
    border-right: 0;
    border-bottom: 1px solid rgba(216, 11, 34, 0.13);
  }

  .hero-mobile-proof-item {
    min-height: 104px;
    padding: 18px 12px;
  }

  .hero-mobile-proof-item:nth-child(3) {
    border-right: 0;
  }

  h1 {
    font-size: clamp(2.55rem, 11vw, 3.65rem);
  }

  .metrics,
  .brief-form {
    grid-template-columns: 1fr;
  }

  .section,
  .brief-section,
  .page-band {
    padding: 72px 20px;
  }

  .page-main {
    padding-top: 92px;
  }

  .page-hero {
    padding: 56px 20px 64px;
  }

  .page-grid {
    grid-template-columns: 1fr;
  }

  .page-hero__image,
  .page-hero__image img,
  .split-content img {
    min-height: 300px;
  }

  .team-frame-section {
    min-height: 172dvh;
    padding: 0;
  }

  .team-motion-sticky {
    position: sticky;
    top: 0;
    min-height: 100dvh;
    overflow: hidden;
    display: grid;
    place-items: start;
    padding: 96px 18px 40px;
  }

  .team-motion-copy {
    justify-items: start;
    align-self: center;
    max-width: min(100%, 360px);
    text-align: left;
  }

  .team-motion-copy .eyebrow {
    justify-content: flex-start;
  }

  .team-motion-copy h2 {
    max-width: 8.7ch;
    font-size: clamp(3.35rem, 8.7vw, 4.875rem);
    line-height: 0.9;
  }

  .team-motion-copy p:not(.eyebrow) {
    max-width: 28rem;
    margin-left: 0;
    font-size: 0.98rem;
  }

  .team-motion-stage {
    position: absolute;
    inset: 0;
    display: block;
  }

  .team-profile,
  .team-profile:nth-child(n) {
    position: absolute;
    border-radius: 14px;
  }

  .team-profile:nth-child(1) { left: -11%; top: 17%; width: 116px; }
  .team-profile:nth-child(2) { left: 72%; top: 14%; width: 130px; }
  .team-profile:nth-child(3) { left: 66%; top: 67%; width: 124px; }
  .team-profile:nth-child(4) { left: 9%; top: 74%; width: 102px; }
  .team-profile:nth-child(5) { left: -10%; top: 49%; width: 104px; }
  .team-profile:nth-child(6) { left: 76%; top: 44%; width: 104px; }
  .team-profile:nth-child(7) { left: 32%; top: 84%; width: 96px; }
  .team-profile:nth-child(8) { left: 80%; top: 78%; width: 90px; }
  .team-profile:nth-child(9) { left: 42%; top: 6%; width: 94px; }

  .team-profile-caption {
    left: 5px;
    right: 5px;
    bottom: 5px;
    padding: 5px 5px;
  }

  .team-profile-caption strong {
    font-size: 0.55rem;
  }

  .team-profile-caption span {
    font-size: 0.46rem;
  }

  .team-profile img {
    min-height: 0;
  }

  .team-motion-progress {
    display: none;
  }

  .team-directory-section {
    padding-top: 76px;
  }

  .team-directory-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .team-directory-card {
    border-radius: 14px;
  }

  .team-directory-card div {
    min-height: 96px;
    padding: 12px;
  }

  .team-directory-card strong {
    font-size: 0.92rem;
  }

  .team-directory-card span {
    font-size: 0.8rem;
  }

  .site-footer {
    display: grid;
    padding: 36px 20px;
  }

  .site-footer nav {
    flex-wrap: wrap;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding-left: 10px;
  }

  .brand img {
    width: clamp(108px, 31vw, 124px);
  }

  .header-cta {
    min-height: 42px;
    padding: 0 11px;
    font-size: clamp(0.72rem, 3.5vw, 0.84rem);
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
  }

  .hero-content {
    padding-top: clamp(520px, 132vw, 600px);
  }

  .hero-actions .button {
    width: 100%;
    min-height: 62px;
  }

  .hero-mobile-proof {
    grid-template-columns: 1fr;
    width: calc(100% - 48px);
    margin-top: 52px;
    border-color: rgba(216, 11, 34, 0.18);
    border-radius: 22px;
    background: rgba(255, 253, 248, 0.92);
    box-shadow:
      0 32px 76px rgba(108, 58, 34, 0.12),
      inset 0 1px 0 rgba(255, 255, 255, 0.82);
  }

  .hero-mobile-fast {
    grid-column: auto;
    min-height: 176px;
    justify-content: flex-start;
    gap: 24px;
    padding: 36px 28px;
    border-right: 0;
    border-bottom: 1px solid rgba(216, 11, 34, 0.16);
  }

  .hero-mobile-fast .hero-card-icon {
    width: 72px;
    height: 72px;
    border-width: 3px;
  }

  .hero-mobile-fast .hero-card-icon::before {
    width: 22px;
    height: 34px;
  }

  .hero-mobile-fast p {
    margin-bottom: 6px;
    font-size: 1.02rem;
    line-height: 1;
  }

  .hero-mobile-fast strong {
    font-size: clamp(2.05rem, 8.8vw, 2.38rem);
    letter-spacing: 0;
  }

  .hero-mobile-fast small {
    margin-top: 10px;
    color: rgba(36, 33, 36, 0.66);
    font-size: 1.05rem;
    line-height: 1.28;
  }

  .hero-mobile-proof-item,
  .hero-mobile-proof-item:nth-child(3) {
    min-height: 156px;
    gap: 20px;
    padding: 28px 20px 30px;
    border-right: 0;
    border-bottom: 1px solid rgba(216, 11, 34, 0.16);
    font-size: clamp(0.96rem, 3.8vw, 1.08rem);
  }

  .hero-mobile-proof-item span {
    width: 46px;
    height: 46px;
    border-width: 3px;
  }

  .hero-mobile-proof-item span::before {
    left: 13px;
    top: 8px;
    width: 12px;
    height: 22px;
    border-right-width: 3px;
    border-bottom-width: 3px;
  }

  .hero-mobile-proof-item:last-child {
    border-bottom: 0;
  }
}

@media (min-width: 481px) and (max-width: 560px) {
  .hero-mobile-proof {
    grid-template-columns: minmax(184px, 1.24fr) repeat(3, minmax(0, 1fr));
    width: calc(100% - 48px);
    min-height: 130px;
    margin-top: 46px;
    border-radius: 18px;
    background: rgba(255, 253, 248, 0.9);
  }

  .hero-mobile-fast {
    grid-column: auto;
    min-height: 130px;
    gap: 16px;
    padding: 24px 18px 24px 24px;
    border-right: 1px solid rgba(216, 11, 34, 0.16);
    border-bottom: 0;
  }

  .hero-mobile-fast .hero-card-icon {
    width: 54px;
    height: 54px;
    border-width: 2.5px;
  }

  .hero-mobile-fast .hero-card-icon::before {
    width: 16px;
    height: 25px;
  }

  .hero-mobile-fast p {
    margin-bottom: 4px;
    font-size: 0.82rem;
  }

  .hero-mobile-fast strong {
    font-size: 1.55rem;
  }

  .hero-mobile-fast small {
    max-width: 9rem;
    margin-top: 7px;
    font-size: 0.83rem;
  }

  .hero-mobile-proof-item,
  .hero-mobile-proof-item:nth-child(3) {
    min-height: 130px;
    gap: 12px;
    padding: 22px 8px;
    border-right: 1px solid rgba(216, 11, 34, 0.16);
    border-bottom: 0;
    font-size: 0.72rem;
  }

  .hero-mobile-proof-item span {
    width: 34px;
    height: 34px;
    border-width: 2.5px;
  }

  .hero-mobile-proof-item span::before {
    left: 9px;
    top: 5px;
    width: 9px;
    height: 16px;
    border-right-width: 2.5px;
    border-bottom-width: 2.5px;
  }

  .hero-mobile-proof-item:last-child {
    border-right: 0;
  }
}

@media (max-width: 1300px) {
  .metrics {
    padding-block: clamp(44px, 6vw, 82px);
  }

  .metrics.metrics-coded-strip {
    padding-top: 0;
    padding-bottom: 42px;
  }

  .metrics-panel {
    grid-template-columns: minmax(160px, 0.82fr) repeat(3, minmax(140px, 0.82fr)) minmax(235px, 1fr);
    width: calc(100vw - 36px);
    min-height: 146px;
  }

  .metric {
    gap: 14px;
    min-height: 118px;
    padding: 16px 18px;
  }

  .metric-since {
    padding-left: 28px;
  }

  .metric-since::before {
    left: 36px;
    top: 32px;
    width: 96px;
    height: 68px;
  }

  .metric-since::after {
    left: 44px;
    bottom: 22px;
    width: 132px;
  }

  .metric-since span {
    font-size: 1rem;
  }

  .metric-since strong {
    font-size: clamp(3.2rem, 5.2vw, 5.2rem);
  }

  .metric strong {
    font-size: clamp(1.7rem, 2.8vw, 2.7rem);
  }

  .metric span {
    font-size: clamp(0.8rem, 1.35vw, 0.98rem);
  }

  .metric .metric-icon {
    width: 54px;
    height: 54px;
  }

  .metrics-portfolio {
    min-height: 118px;
    margin-right: 18px;
    padding: 16px 36px 18px 36px;
  }

  .metrics-portfolio strong {
    font-size: clamp(1.1rem, 1.8vw, 1.58rem);
  }

  .metrics-portfolio em {
    right: 28px;
  }

  .client-marquee-copy p:last-child {
    max-width: 820px;
  }
}

@media (max-width: 980px) {
  .metrics-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    min-height: 0;
  }

  .metric,
  .metrics-portfolio {
    min-height: 134px;
  }

  .metric:not(.metric-since)::before,
  .metric:not(.metric-since)::after {
    display: none;
  }

  .metric:nth-child(odd) {
    border-left: 1px solid rgba(216, 11, 34, 0.12);
  }

  .metric:nth-child(n + 3),
  .metrics-portfolio {
    border-top: 1px solid rgba(216, 11, 34, 0.12);
  }

  .metric-since {
    display: grid;
    align-content: center;
    border-left: 0;
  }

  .metrics-portfolio {
    margin: 0;
  }

  .client-marquee-copy {
    justify-items: start;
    text-align: left;
  }

  .client-marquee-copy p:last-child {
    max-width: none;
  }

  .client-marquee-track {
    gap: 30px;
    padding-inline: 10px;
  }
}

@media (max-width: 620px) {
  .metrics {
    padding: 42px 20px 56px;
  }

  .metrics.metrics-coded-strip {
    padding-top: 0;
    margin-top: -8px;
    padding-bottom: 28px;
  }

  .metrics-panel {
    grid-template-columns: 1fr;
    width: 100%;
    border-radius: 18px;
  }

  .client-marquee-section {
    padding: 24px 20px 12px;
  }

  .client-marquee-copy h2 {
    font-size: 1.42rem;
  }

  .client-marquee-track {
    gap: 24px;
    animation-duration: 11s;
  }

  .client-marquee-track img {
    height: 28px;
  }

  .metric,
  .metrics-portfolio {
    min-height: 116px;
    border-left: 0 !important;
    border-top: 1px solid rgba(216, 11, 34, 0.12);
  }

  .metric:first-child {
    border-top: 0;
  }

  .metric-since {
    min-height: 146px;
    padding-left: 34px;
  }

  .metric-since::before {
    left: 44px;
    top: 32px;
    width: 104px;
    height: 70px;
  }

  .metric-since::after {
    left: 34px;
    bottom: 18px;
    width: 138px;
  }

  .metric-since strong {
    font-size: 3.55rem;
  }

  .metrics-portfolio {
    min-height: 140px;
    padding: 22px 62px 30px 34px;
  }

  .metrics-portfolio::after {
    left: 34px;
    right: 52px;
    bottom: 20px;
  }
}

.hero.hero-image-banner {
  display: block;
  min-height: 0;
  overflow: hidden;
  padding: clamp(8px, 1.2vw, 18px) 0 0;
  background: transparent;
  color: inherit;
  isolation: isolate;
}

.hero.hero-image-banner::before,
.hero.hero-image-banner::after {
  position: absolute;
  inset: auto 0 0;
  height: clamp(46px, 7vw, 90px);
  content: "";
  pointer-events: none;
}

.hero.hero-image-banner::before {
  bottom: -1px;
  z-index: 1;
  background: linear-gradient(180deg, rgba(252, 250, 247, 0), rgba(252, 250, 247, 0.94) 82%, rgba(252, 250, 247, 1));
}

.hero.hero-image-banner::after {
  top: 0;
  bottom: auto;
  height: clamp(24px, 3.4vw, 44px);
  background: linear-gradient(180deg, rgba(252, 250, 247, 0.66), rgba(252, 250, 247, 0));
}

.hero-banner-link {
  display: block;
  width: 100%;
  cursor: pointer;
  border-radius: 12px;
  overflow: hidden;
}

.hero-banner-link img {
  display: block;
  width: 100%;
  height: auto;
}

.whatsapp-widget {
  position: fixed;
  right: max(18px, env(safe-area-inset-right) + 18px);
  bottom: max(18px, env(safe-area-inset-bottom) + 18px);
  z-index: 95;
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border: 1px solid rgba(18, 140, 126, 0.22);
  border-radius: 50%;
  background: linear-gradient(180deg, #2fe06d 0%, #14b857 100%);
  box-shadow:
    0 18px 36px rgba(20, 184, 87, 0.26),
    0 8px 18px rgba(10, 68, 34, 0.12);
  color: #fff;
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.whatsapp-widget:hover,
.whatsapp-widget:focus-visible {
  color: #fff;
  transform: translateY(-3px) scale(1.03);
  box-shadow:
    0 22px 42px rgba(20, 184, 87, 0.34),
    0 10px 22px rgba(10, 68, 34, 0.16);
  filter: saturate(1.05);
}

.whatsapp-widget:focus-visible {
  outline: 4px solid rgba(20, 184, 87, 0.24);
  outline-offset: 4px;
}

.whatsapp-widget__icon {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
}

.whatsapp-widget__icon svg {
  width: 100%;
  height: 100%;
}

.hero-banner-link:focus-visible {
  outline: 4px solid rgba(216, 11, 34, 0.62);
  outline-offset: -8px;
}

.metrics.metrics-image-strip {
  padding: 0 max(20px, calc((100vw - 1900px) / 2)) clamp(42px, 5vw, 72px);
  background: transparent;
}

.metrics-strip-link {
  position: relative;
  display: block;
  width: min(1920px, calc(100vw - 40px));
  margin-inline: auto;
  border-radius: 24px;
  overflow: hidden;
  transform: translateY(-14px);
  box-shadow: 0 18px 40px rgba(48, 31, 22, 0.08);
}

.metrics-strip-link img {
  display: block;
  width: 100%;
  height: clamp(188px, 16vw, 224px);
  object-fit: cover;
  object-position: center 48%;
}

.metrics-strip-link:focus-visible {
  outline: 4px solid rgba(216, 11, 34, 0.62);
  outline-offset: 6px;
}

.metrics-strip-counts {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.metrics-strip-count {
  position: absolute;
  top: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: clamp(88px, 8.2vw, 130px);
  padding: 0.08em 0.24em;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: #151313;
  font-size: clamp(2rem, 3.6vw, 3.5rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  box-shadow: 0 10px 26px rgba(36, 24, 16, 0.06);
  transform: translate(-50%, -58%);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.metrics-strip-count::after {
  content: "+";
}

.metrics-strip-count--one {
  left: 37.7%;
}

.metrics-strip-count--two {
  left: 50.9%;
}

.metrics-strip-count--three {
  left: 63.8%;
}

@media (max-width: 720px) {
  .usp-motion-section {
    min-height: 170dvh;
  }

  .usp-motion-sticky {
    top: 82px;
    min-height: calc(100dvh - 82px);
    padding: clamp(4.8rem, 16vw, 6rem) 1rem;
  }

  .usp-motion-stage {
    max-width: calc(100% - 1rem);
    padding: 0;
  }

  .usp-motion-badge {
    justify-self: center;
    margin-bottom: 20px;
    font-size: 0.94rem;
  }

  .usp-motion-heading {
    max-width: 12ch;
    font-size: clamp(2.8rem, 14vw, 4.5rem);
    line-height: 0.82;
    letter-spacing: -0.066em;
  }

  .hero.hero-image-banner {
    padding-top: 0;
  }

  .hero-banner-link {
    aspect-ratio: 9 / 14;
    overflow: hidden;
  }

  .hero-banner-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 12% center;
  }

  .whatsapp-widget {
    right: max(14px, env(safe-area-inset-right) + 14px);
    bottom: max(14px, env(safe-area-inset-bottom) + 14px);
    width: 58px;
    height: 58px;
  }

  .whatsapp-widget__icon {
    width: 28px;
    height: 28px;
  }

  .metrics.metrics-image-strip {
    padding: 0 14px 28px;
  }

  .metrics-strip-link {
    width: 100%;
    border-radius: 18px;
    transform: translateY(-8px);
  }

  .metrics-strip-link img {
    height: 134px;
  }

  .metrics-strip-count {
    min-width: 54px;
    padding-inline: 0.18em;
    font-size: 1.18rem;
    transform: translate(-50%, -68%);
  }

  .metrics-strip-count--one {
    left: 38.2%;
  }

  .metrics-strip-count--two {
    left: 51%;
  }

  .metrics-strip-count--three {
    left: 63.9%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  .loader-track span {
    transform: scaleX(1);
  }

  .loader-visual::before,
  .loader-visual::after,
  .loader-process-card,
  .loader-process-card::after,
  .loader-conveyor i,
  .loader-particles i,
  .loader-capsule-fill i,
  .loader-bottle-fill i,
  .loader-qc-check {
    animation: none !important;
  }

  .button-ripple {
    display: none;
  }
}

/* Final homepage mockup overrides. Kept last so older banner-era rules cannot win the cascade. */
.site-header {
  top: 0;
  width: 100%;
  min-height: 112px;
  padding: 22px clamp(28px, 4.8vw, 78px);
  border: 0;
  border-radius: 0;
  background: #ffffff;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.site-header::before,
.site-header::after {
  content: none;
}

.site-header.scrolled {
  top: 0;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 34px rgba(16, 20, 18, 0.06);
}

.brand img {
  width: clamp(118px, 9vw, 144px);
}

.site-nav {
  position: static;
  display: flex;
  align-items: center;
  gap: clamp(18px, 3.3vw, 58px);
  margin-inline: auto;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.site-nav a {
  min-height: 42px;
  padding: 0;
  border: 0;
  color: #090909;
  font-size: clamp(0.94rem, 1vw, 1.08rem);
  font-weight: 500;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  border-color: transparent;
  background: transparent;
  color: var(--brand-red);
  transform: none;
}

.site-nav .nav-cta {
  display: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: 0;
}

.header-cta,
.site-nav .nav-cta {
  min-height: 58px;
  gap: 16px;
  padding: 0 10px 0 24px;
  border: 0;
  border-radius: 999px;
  background: #d90416;
  box-shadow: 0 16px 32px rgba(217, 4, 22, 0.18);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
}

.header-cta:hover,
.header-cta:focus-visible,
.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  background: #d90416;
  box-shadow: 0 18px 36px rgba(217, 4, 22, 0.24);
  color: #fff;
  transform: translateY(-1px);
}

.cta-arrow {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 999px;
  background: #a9000d;
  color: #fff;
  font-size: 1.52rem;
  font-weight: 500;
  line-height: 1;
}

.nav-toggle {
  display: none;
}

.hero.hero-mockup {
  min-height: 0;
  padding: 112px clamp(14px, 1.65vw, 26px) 0;
  overflow: visible;
  background: #ffffff;
  color: #ffffff;
}

.hero.hero-mockup::before,
.hero.hero-mockup::after {
  content: none;
}

.hero-mockup-shell {
  position: relative;
  min-height: clamp(690px, 55.6vw, 850px);
  overflow: hidden;
  border-radius: clamp(36px, 4vw, 62px);
  background:
    linear-gradient(180deg, rgba(2, 18, 14, 0.58), rgba(2, 18, 14, 0.52)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.48), rgba(5, 37, 26, 0.22) 50%, rgba(0, 0, 0, 0.42)),
    url("assets/liquid-manufacturing-line.jpg") center 44% / cover no-repeat;
  box-shadow: 0 20px 50px rgba(12, 27, 22, 0.12);
  isolation: isolate;
}

.hero-mockup-shell::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 50% 47%, rgba(255, 255, 255, 0.2), transparent 16%),
    radial-gradient(circle at 84% 18%, rgba(255, 220, 158, 0.16), transparent 15%),
    linear-gradient(180deg, rgba(4, 24, 19, 0.16), rgba(0, 0, 0, 0.22));
  content: "";
}

.hero-mockup-copy {
  position: relative;
  z-index: 4;
  max-width: 980px;
  margin-inline: auto;
  padding-top: clamp(70px, 6vw, 112px);
  text-align: center;
}

.hero-mockup-copy h1 {
  max-width: 1020px;
  margin: 0 auto 18px;
  color: #ffffff;
  font-size: clamp(3.2rem, 5.3vw, 5.35rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-mockup-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(1.05rem, 1.5vw, 1.5rem);
  font-weight: 500;
  line-height: 1.22;
}

.hero-pill-cta {
  position: relative;
  z-index: 6;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-height: 64px;
  margin-top: clamp(68px, 5.7vw, 92px);
  padding: 0 8px 0 34px;
  border-radius: 999px;
  background: #ffffff;
  color: #d90416;
  font-size: 1.1rem;
  font-weight: 700;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
}

.hero-pill-cta:hover,
.hero-pill-cta:focus-visible {
  color: #d90416;
  transform: translateY(-2px);
}

.hero-visual-bottle {
  position: absolute;
  left: 50%;
  bottom: clamp(128px, 11vw, 174px);
  z-index: 3;
  width: clamp(170px, 15.5vw, 246px);
  max-width: none;
  filter: drop-shadow(0 24px 38px rgba(0, 0, 0, 0.34));
  transform: translateX(-50%);
}

.hero-panel-row {
  position: absolute;
  left: clamp(58px, 5.7vw, 100px);
  right: clamp(58px, 5.7vw, 100px);
  bottom: clamp(46px, 3.9vw, 72px);
  z-index: 5;
  display: grid;
  grid-template-columns: minmax(0, 0.97fr) minmax(0, 1fr);
  gap: clamp(22px, 2.1vw, 34px);
}

.hero-service-panel,
.hero-quote-panel {
  min-height: clamp(172px, 13.4vw, 218px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  background: linear-gradient(120deg, rgba(18, 55, 27, 0.88), rgba(7, 45, 24, 0.72));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 18px 40px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
}

.hero-service-panel {
  display: grid;
  grid-template-columns: clamp(142px, 13.1vw, 198px) minmax(0, 1fr);
  gap: clamp(24px, 2.1vw, 34px);
  align-items: center;
  padding: 14px clamp(24px, 2vw, 34px) 14px 14px;
  color: #ffffff;
}

.hero-service-panel:hover,
.hero-service-panel:focus-visible {
  color: #ffffff;
  transform: translateY(-2px);
}

.hero-service-panel img {
  width: 100%;
  height: 100%;
  min-height: clamp(148px, 11vw, 190px);
  border-radius: 14px;
  object-fit: cover;
  object-position: center;
}

.hero-service-copy {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.hero-service-copy strong {
  color: #ffffff;
  font-size: clamp(1.28rem, 1.75vw, 1.72rem);
  line-height: 1.08;
}

.hero-service-copy > span {
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1rem, 1.28vw, 1.35rem);
  line-height: 1.35;
}

.hero-service-copy em {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: #ffffff;
  font-size: clamp(0.96rem, 1.12vw, 1.15rem);
  font-style: normal;
  font-weight: 700;
}

.hero-service-copy em span {
  font-size: 1.7rem;
  font-weight: 400;
}

.hero-quote-panel {
  display: grid;
  align-content: center;
  gap: 20px;
  padding: clamp(24px, 2.5vw, 42px);
}

.hero-quote-panel p {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.2rem, 1.65vw, 1.68rem);
  font-weight: 500;
  line-height: 1.2;
}

.hero-quote-panel div {
  display: flex;
  align-items: center;
  gap: 18px;
}

.hero-quote-panel img {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  object-fit: cover;
}

.hero-quote-panel span {
  display: grid;
  gap: 3px;
}

.hero-quote-panel strong {
  color: #ffffff;
  font-size: 1.08rem;
  line-height: 1.1;
}

.hero-quote-panel small {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  line-height: 1.2;
}

@media (max-width: 1180px) {
  .site-header {
    min-height: 96px;
    padding-inline: clamp(20px, 3.2vw, 36px);
  }

  .site-nav {
    gap: clamp(16px, 2vw, 28px);
  }

  .header-cta {
    min-height: 52px;
    padding-left: 20px;
  }

  .cta-arrow {
    width: 38px;
    height: 38px;
  }

  .hero.hero-mockup {
    padding-top: 96px;
  }
}

@media (max-width: 820px) {
  .site-header {
    min-height: 76px;
    padding: 10px 14px 10px 18px;
    background: rgba(255, 255, 255, 0.94);
  }

  .site-nav {
    position: fixed;
    top: 86px;
    left: 14px;
    right: 14px;
    display: grid;
    gap: 4px;
    padding: 14px;
    border: 1px solid rgba(216, 11, 34, 0.12);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 22px 46px rgba(24, 14, 10, 0.12);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    min-height: 48px;
    padding: 0 12px;
  }

  .site-nav .nav-cta {
    display: inline-flex;
    justify-content: space-between;
    margin-top: 4px;
  }

  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: grid;
    width: 50px;
    height: 50px;
    border-color: rgba(11, 25, 24, 0.18);
    border-radius: 14px;
    background: #f7fbff;
    box-shadow: none;
  }

  .hero.hero-mockup {
    padding: 76px 0 0;
  }

  .hero-mockup-shell {
    min-height: 900px;
    border-radius: 0 0 34px 34px;
  }

  .hero-mockup-copy {
    width: min(100% - 36px, 640px);
    padding-top: 52px;
  }

  .hero-mockup-copy h1 {
    font-size: clamp(2.75rem, 10vw, 4.2rem);
  }

  .hero-mockup-copy p br,
  .hero-quote-panel p br,
  .hero-service-copy > span br {
    display: none;
  }

  .hero-pill-cta {
    margin-top: 38px;
  }

  .hero-visual-bottle {
    bottom: 316px;
    width: clamp(160px, 35vw, 218px);
  }

  .hero-panel-row {
    left: 18px;
    right: 18px;
    bottom: 24px;
    grid-template-columns: 1fr;
  }

  .hero-service-panel {
    grid-template-columns: 122px 1fr;
  }

  .hero-service-panel img {
    min-height: 128px;
  }
}

@media (max-width: 520px) {
  .brand img {
    width: 126px;
  }

  .hero-mockup-shell {
    min-height: 930px;
  }

  .hero-mockup-copy h1 {
    font-size: clamp(2.35rem, 11vw, 3.1rem);
  }

  .hero-mockup-copy p {
    font-size: 1rem;
  }

  .hero-pill-cta {
    min-height: 58px;
    padding-left: 24px;
  }

  .hero-visual-bottle {
    bottom: 376px;
  }

  .hero-service-panel {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .hero-service-panel img {
    height: 154px;
  }

  .hero-quote-panel {
    padding: 24px;
  }
}

/* Sora typography system */
html {
  font-size: 100%;
  text-size-adjust: 100%;
}

body,
button,
input,
select,
textarea {
  font-family: var(--font-sans);
}

body {
  font-size: var(--type-body-size);
  font-weight: 400;
  line-height: var(--type-body-leading);
  text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  letter-spacing: 0;
  text-wrap: balance;
}

h1 {
  font-weight: 700;
  line-height: 1.08;
}

h2,
h3,
h4 {
  font-weight: 600;
}

h2 {
  line-height: 1.14;
}

h3,
h4 {
  line-height: 1.24;
}

p,
li {
  text-wrap: pretty;
}

a,
button,
label,
summary,
.eyebrow,
.section-kicker {
  font-weight: 500;
}

.page-hero p,
.page-band p,
.brief-section p,
.section-copy,
.contact-copy {
  max-width: var(--type-reading-measure);
}

@media (max-width: 520px) {
  body {
    font-size: 1rem;
  }

  h1,
  h2,
  h3,
  h4,
  p,
  a,
  button {
    overflow-wrap: anywhere;
  }
}

/* Minimalist UI polish layer */
:root {
  --ink: #151515;
  --muted: #696969;
  --paper: #f7f5f2;
  --surface: #fffdfa;
  --line: #e8e4df;
  --shadow: 0 14px 34px rgba(24, 24, 24, 0.055);
  --radius: 10px;
  --type-body-leading: 1.62;
  --type-reading-measure: 64ch;
}

body {
  color: var(--ink);
  background: var(--paper);
}

main,
main > section {
  background: transparent;
}

.section,
.page-band,
.brief-section,
.team-directory-section,
.format-section,
.process-section.founder-path-section,
.strategy-section.launch-assistant-section,
.faq-section,
.client-marquee-section {
  padding-block: clamp(72px, 8vw, 128px);
}

.section-heading,
.team-directory-head,
.formats-copy,
.founder-path-copy,
.assistant-copy,
.client-marquee-copy {
  gap: 14px;
}

h1,
h2,
h3,
h4,
.section-heading h2,
.formats-copy h2,
.founder-path-copy h2,
.assistant-copy h2,
.team-directory-head h2,
.faq-section .section-heading h2,
.client-marquee-copy h2,
.workflow-roadmap__heading h3 {
  max-width: 13ch;
  color: var(--ink);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: 0;
}

.page-hero h1,
.section-heading h2,
.formats-copy h2,
.founder-path-copy h2,
.assistant-copy h2,
.team-directory-head h2,
.faq-section .section-heading h2,
.client-marquee-copy h2,
.workflow-roadmap__heading h3 {
  font-size: clamp(2.6rem, 5vw, 4.875rem);
}

p,
li,
.section-heading p:not(.eyebrow),
.formats-copy > p:last-child,
.founder-path-copy p:not(.eyebrow),
.assistant-copy p,
.team-directory-head p:not(.eyebrow),
.client-marquee-copy p:last-child,
.page-hero p:not(.eyebrow),
.page-band p,
.brief-copy p {
  color: var(--muted);
  font-size: clamp(0.98rem, 1vw, 1.05rem);
  line-height: 1.68;
}

.eyebrow,
.section-kicker,
.assistant-badge {
  color: var(--brand-red);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.page-main {
  padding-top: clamp(92px, 8vw, 118px);
}

.site-header {
  border: 1px solid rgba(232, 228, 223, 0.82);
  background: rgba(255, 253, 250, 0.78);
  box-shadow: 0 18px 48px rgba(20, 20, 20, 0.06);
  backdrop-filter: blur(22px) saturate(130%);
  -webkit-backdrop-filter: blur(22px) saturate(130%);
}

.site-nav a {
  color: rgba(21, 21, 21, 0.78);
  font-size: 0.89rem;
  font-weight: 500;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: var(--brand-red);
}

.button,
.button.primary,
.header-cta,
.site-nav .nav-cta,
.formats-cta .button,
.brief-form .button {
  border-color: #151515;
  border-radius: 8px;
  background: #151515;
  color: #fff;
  box-shadow: none;
}

.button.secondary,
.page-actions .secondary {
  border-color: var(--line);
  background: transparent;
  color: var(--ink);
}

.button:hover,
.button:focus-visible,
.header-cta:hover,
.header-cta:focus-visible,
.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  box-shadow: 0 10px 28px rgba(21, 21, 21, 0.12);
  transform: translateY(-2px);
}

.page-hero {
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.68fr);
  gap: clamp(28px, 5vw, 70px);
  padding-block: clamp(76px, 8vw, 118px);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.page-hero__image,
.service-card,
.brief-form,
.contact-panel,
.contact-card,
.team-directory-card,
.formats-help,
.founder-card,
.assistant-card,
.metrics-panel,
.client-marquee-shell {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 250, 0.84);
  box-shadow: var(--shadow);
}

.page-hero__image {
  min-height: 390px;
}

.page-hero__image img {
  min-height: 390px;
}

.service-card,
.founder-card,
.assistant-card,
.brief-form,
.contact-panel,
.team-directory-card div {
  padding: clamp(20px, 2.5vw, 32px);
}

.service-card,
.founder-card,
.team-directory-card,
.formats-card,
.category-card {
  transition: border-color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.service-card:hover,
.founder-card:hover,
.team-directory-card:hover,
.formats-card:hover,
.category-card:hover {
  border-color: rgba(21, 21, 21, 0.18);
  box-shadow: 0 18px 42px rgba(21, 21, 21, 0.075);
  transform: translateY(-3px);
}

.intro-grid,
.page-grid,
.team-directory-grid,
.founder-path-cards,
.formats-cards,
.contact-card-grid {
  gap: clamp(14px, 1.8vw, 24px);
}

.metrics-panel {
  padding: clamp(28px, 4vw, 48px);
}

.metric {
  gap: 14px;
}

.metric,
.metric:hover {
  box-shadow: none;
}

.formats-help__icon,
.founder-card__icon,
.metric-icon {
  background: #fff;
  box-shadow: none;
}

.faq-list {
  gap: 0;
  border-top: 1px solid var(--line);
}

.faq-item {
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.faq-item:hover {
  border-color: var(--line);
  box-shadow: none;
  transform: none;
}

.faq-item summary {
  min-height: 68px;
  padding: 22px 54px 22px 0;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 600;
}

.faq-item summary::after {
  right: 4px;
  color: var(--ink);
  font-weight: 500;
}

.faq-item p {
  padding: 0 0 24px;
}

label {
  color: var(--ink);
  font-size: 0.88rem;
}

input,
select,
textarea {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  box-shadow: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(21, 21, 21, 0.45);
  outline: 3px solid rgba(21, 21, 21, 0.08);
}

.page-band.tint,
.page-band.dark,
.brief-section,
.site-footer {
  border-top: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
}

.site-footer {
  align-items: flex-start;
  padding-block: clamp(42px, 5vw, 64px);
}

.site-footer nav {
  gap: 16px;
  font-weight: 500;
}

.site-footer img {
  width: 132px;
}

@media (max-width: 900px) {
  .section,
  .page-band,
  .brief-section,
  .team-directory-section,
  .format-section,
  .process-section.founder-path-section,
  .strategy-section.launch-assistant-section,
  .faq-section,
  .client-marquee-section {
    padding-block: clamp(58px, 12vw, 86px);
  }

  .page-hero {
    grid-template-columns: 1fr;
  }

  .site-footer {
    display: grid;
  }
}

@media (max-width: 520px) {
  .page-hero h1,
  .section-heading h2,
  .formats-copy h2,
  .founder-path-copy h2,
  .assistant-copy h2,
  .team-directory-head h2,
  .faq-section .section-heading h2,
  .client-marquee-copy h2,
  .workflow-roadmap__heading h3 {
    max-width: 100%;
    font-size: clamp(2.2rem, 12vw, 3.3rem);
  }

  .site-header {
    border-radius: 0 0 18px 18px;
  }
}

/* Keep the animated USP headline centered after the global type polish. */
.usp-motion-heading {
  width: 100%;
  max-width: 15.6ch;
  margin-inline: auto;
  justify-content: center;
  text-align: center;
}

@media (max-width: 720px) {
  .usp-motion-heading {
    max-width: 12ch;
    font-size: clamp(2.8rem, 14vw, 4.5rem);
  }
}

/* CHEDROS heading-only font swap. Body and supporting text remain Sora. */
h1,
h2,
h3,
h4,
h5,
h6,
.hero-reference__copy h1,
.usp-motion-heading,
.metrics-portfolio strong,
.metric strong,
.formats-copy h2,
.category-card h3,
.founder-path-copy h2,
.founder-card h3,
.workflow-roadmap__heading h3,
.workflow-roadmap__copy h4,
.assistant-copy h2,
.assistant-question h3,
.team-motion-copy h2,
.team-page-intro h1,
.team-directory-head h2,
.faq-section .section-heading h2,
.page-hero h1,
.client-marquee-copy h2 {
  font-family: "CHEDROS", var(--font-sans);
  font-weight: 700;
}

/* Reference image color system: acid yellow, ink black, clean white, charcoal. */
:root {
  --ink: #171717;
  --muted: #565656;
  --paper: #f5f5f1;
  --surface: #ffffff;
  --line: rgba(23, 23, 23, 0.12);
  --green: #1d1d1d;
  --teal: #26d95d;
  --lime: #efff1f;
  --coral: #efff1f;
  --brand-red: #efff1f;
  --brand-red-dark: #cde300;
  --warm-cream: #f5f5f1;
  --hero-bg: #f5f5f1;
  --tint: #ededeb;
  --mesh-grid-a: rgba(23, 23, 23, 0.06);
  --mesh-grid-b: rgba(23, 23, 23, 0.045);
}

body {
  color: var(--ink);
  background:
    linear-gradient(90deg, var(--mesh-grid-a) 1px, transparent 1px),
    linear-gradient(0deg, var(--mesh-grid-b) 1px, transparent 1px),
    var(--paper);
}

.eyebrow,
.section-kicker,
.assistant-badge,
.formats-highlight,
.formats-dot,
.founder-path-copy h2 span,
.assistant-copy h2 span,
.team-motion-copy h2 span span,
.team-page-intro h1 span {
  color: #171717;
}

.button,
.button.primary,
.header-cta,
.site-nav .nav-cta,
.formats-cta .button,
.brief-form .button,
.assistant-next,
.hero-pill-cta {
  border-color: #efff1f;
  background: #efff1f;
  color: #171717;
}

.button:hover,
.button:focus-visible,
.button.primary:hover,
.header-cta:hover,
.header-cta:focus-visible,
.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible,
.formats-cta .button:hover,
.formats-cta .button:focus-visible,
.brief-form .button:hover,
.brief-form .button:focus-visible,
.assistant-next:hover,
.assistant-next:focus-visible,
.hero-pill-cta:hover,
.hero-pill-cta:focus-visible {
  border-color: #ddec00;
  background: #ddec00;
  color: #171717;
}

.button.secondary,
.page-actions .secondary {
  border-color: rgba(23, 23, 23, 0.18);
  background: #ffffff;
  color: #171717;
}

.service-card span,
.formats-help__icon,
.founder-card__icon,
.metric-icon,
.assistant-kicker,
.metrics-portfolio em,
.faq-item summary::after {
  color: #171717;
}

.formats-help__icon,
.founder-card__icon,
.metric-icon {
  background: rgba(239, 255, 31, 0.28);
}

.service-card,
.faq-item,
.brief-form,
.contact-panel,
.contact-card,
.team-directory-card,
.founder-card,
.assistant-card,
.metrics-panel,
.client-marquee-shell,
.page-hero__image {
  border-color: rgba(23, 23, 23, 0.12);
  background: rgba(255, 255, 255, 0.92);
}

.metrics-portfolio,
.assistant-badge,
.assistant-sidebar li.is-active,
.assistant-option.is-selected {
  border-color: rgba(23, 23, 23, 0.18);
  background: #efff1f;
  color: #171717;
}

.assistant-option.is-selected::before,
.metric-since::after,
.metrics-portfolio::after,
.category-card__line,
.founder-path-copy i::after,
.workflow-step__rule,
.team-motion-progress span {
  background: #efff1f;
}

.brief-section,
.page-band.dark,
.site-footer {
  border-top-color: rgba(239, 255, 31, 0.18);
  background: #1d1d1d;
  color: #ffffff;
}

.brief-section .eyebrow,
.page-band.dark .eyebrow,
.site-footer,
.site-footer p,
.site-footer nav,
.site-footer nav a {
  color: rgba(255, 255, 255, 0.78);
}

.brief-section h2,
.page-band.dark h2,
.site-footer strong {
  color: #ffffff;
}

.brief-copy p,
.brief-trust li,
.page-band.dark p {
  color: rgba(255, 255, 255, 0.72);
}

.contact-lines a,
.brief-trust li::before {
  color: #efff1f;
}

.whatsapp-widget {
  border-color: rgba(38, 217, 93, 0.32);
  background: #26d95d;
  color: #171717;
}

/* Final visual normalization: white site canvas, black labels, black icon glyphs. */
:root {
  --paper: #ffffff;
  --warm-cream: #ffffff;
  --hero-bg: #ffffff;
  --tint: #ffffff;
  --mesh-grid-a: rgba(23, 23, 23, 0);
  --mesh-grid-b: rgba(23, 23, 23, 0);
}

html,
body,
main,
main > section,
.formats-section,
.founder-path-section,
.workflow-roadmap,
.client-marquee-section,
.faq-section,
.team-motion-section,
.team-page,
.page-band,
.page-hero,
.metrics-coded-strip,
.launch-assistant-section {
  background-color: #ffffff;
}

body {
  background: #ffffff;
}

.eyebrow,
.section-kicker,
.assistant-badge,
.formats-copy .eyebrow,
.founder-path-copy .eyebrow,
.workflow-roadmap__heading .eyebrow,
.client-marquee-copy .eyebrow,
.faq-section .eyebrow,
.team-motion-copy .eyebrow {
  color: #000000;
}

.fi,
.icon-uicon,
.icon-uicon .fi,
.metric .metric-icon,
.metric .metric-icon .fi,
.formats-help__icon,
.formats-help__icon .fi,
.category-card__icon,
.category-card__icon .fi,
.founder-card__icon,
.founder-card__icon .fi,
.assistant-side-fields .fi,
.assistant-contact .fi,
.contact-lines .fi,
.whatsapp-widget__icon,
.whatsapp-widget__icon svg,
.button .cta-arrow,
.cta-arrow,
.hero-pill-cta span,
.metrics-portfolio em,
.nav-toggle,
.nav-toggle span {
  color: #000000 !important;
}

.icon-uicon svg,
.metric-icon svg,
.formats-help__icon svg,
.category-card__icon svg,
.founder-card__icon svg,
.whatsapp-widget__icon svg {
  fill: currentColor;
  stroke: currentColor;
}

/* Metrics strip refinement: cleaner rhythm, stronger hierarchy, minimal white surface. */
.metrics.metrics-coded-strip {
  padding: clamp(18px, 2.4vw, 34px) clamp(18px, 3vw, 42px) clamp(56px, 5.2vw, 86px);
  margin-top: -10px;
}

.metrics-panel {
  grid-template-columns: minmax(190px, 0.92fr) repeat(3, minmax(170px, 0.86fr)) minmax(250px, 0.9fr);
  gap: 0;
  width: min(1600px, 100%);
  min-height: 132px;
  padding: clamp(18px, 1.9vw, 28px);
  overflow: visible;
  border: 1px solid rgba(0, 0, 0, 0.09);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.055);
}

.metrics-panel::before {
  content: none;
}

.metric {
  min-height: 92px;
  gap: 18px;
  padding: 0 clamp(18px, 1.8vw, 30px);
  color: #111111;
}

.metric:not(.metric-since)::before {
  height: 56px;
  background: rgba(0, 0, 0, 0.1);
}

.metric strong {
  color: #111111;
  font-size: clamp(2rem, 2.15vw, 3rem);
  letter-spacing: 0;
}

.metric span {
  color: rgba(17, 17, 17, 0.72);
  font-size: clamp(0.86rem, 0.88vw, 1rem);
  font-weight: 500;
  line-height: 1.22;
}

.metric-since {
  display: grid;
  align-content: center;
  min-height: 92px;
  padding-left: clamp(18px, 2vw, 32px);
}

.metric-since::before,
.metric-since::after {
  content: none;
}

.metric-since span {
  color: rgba(17, 17, 17, 0.82);
  font-size: clamp(0.98rem, 1.1vw, 1.22rem);
}

.metric-since strong {
  color: #111111;
  font-size: clamp(3.1rem, 4.2vw, 5rem);
  line-height: 0.88;
  text-shadow: none;
  transform: none;
}

.metric-since p {
  max-width: 190px;
  margin-top: 8px;
  color: rgba(17, 17, 17, 0.62);
  font-size: clamp(0.86rem, 0.9vw, 0.98rem);
  line-height: 1.35;
}

.metric .metric-icon {
  width: clamp(52px, 4vw, 64px);
  height: clamp(52px, 4vw, 64px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #f6f6f4;
  box-shadow: none;
}

.metric .metric-icon .fi {
  color: #000000;
  stroke: #000000;
  font-size: clamp(25px, 2vw, 34px);
  stroke-width: 3;
}

.metrics-portfolio {
  min-height: 92px;
  margin-right: 0;
  padding: 20px 58px 20px 28px;
  border: 1px solid rgba(0, 0, 0, 0.09);
  border-radius: 16px;
  background: #f7f7f3;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.metrics-portfolio:hover,
.metrics-portfolio:focus-visible {
  border-color: rgba(0, 0, 0, 0.2);
  background: #efff1f;
  transform: translateY(-2px);
}

.metrics-portfolio::before,
.metrics-portfolio i {
  content: none;
  display: none;
}

.metrics-portfolio::after {
  left: 28px;
  right: 58px;
  bottom: 18px;
  height: 2px;
  background: #000000;
  transform: none;
}

.metrics-portfolio span {
  color: rgba(17, 17, 17, 0.66);
  font-size: clamp(0.7rem, 0.78vw, 0.84rem);
  font-weight: 600;
}

.metrics-portfolio strong {
  margin-top: 5px;
  color: #111111;
  font-size: clamp(1.25rem, 1.55vw, 1.8rem);
  line-height: 0.98;
}

.metrics-portfolio em {
  right: 28px;
  color: #000000;
  font-size: clamp(1.15rem, 1.3vw, 1.5rem);
}

@media (max-width: 980px) {
  .metrics-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 0;
  }

  .metric,
  .metrics-portfolio {
    min-height: 120px;
    padding: 22px;
  }

  .metric:nth-child(odd) {
    border-left-color: rgba(0, 0, 0, 0.08);
  }

  .metric:nth-child(n + 3),
  .metrics-portfolio {
    border-top-color: rgba(0, 0, 0, 0.08);
  }

  .metrics-portfolio {
    margin: 0;
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    border-radius: 0 0 20px 20px;
  }
}

@media (max-width: 620px) {
  .metrics.metrics-coded-strip {
    padding: 0 18px 52px;
  }

  .metrics-panel {
    grid-template-columns: 1fr;
    border-radius: 18px;
  }

  .metric,
  .metrics-portfolio {
    min-height: 108px;
  }

  .metric-since {
    min-height: 132px;
  }

  .metric-since strong {
    font-size: 3.4rem;
  }

  .metrics-portfolio {
    padding: 24px 58px 30px 24px;
  }

  .metrics-portfolio::after {
    left: 24px;
  }
}

.process-section.founder-path-section {
  padding-block: clamp(84px, 7.5vw, 136px);
}

.founder-path-shell {
  grid-template-columns: minmax(260px, 0.36fr) minmax(0, 1fr);
  gap: clamp(42px, 5vw, 90px);
  align-items: center;
}

.founder-path-copy h2 {
  max-width: 440px;
  color: #111111;
}

.founder-path-copy h2 span {
  color: #111111;
}

.founder-path-copy i {
  width: 72px;
  height: 2px;
  margin: clamp(26px, 2.8vw, 38px) 0 22px;
  background: #efff1f;
}

.founder-path-copy i::after {
  right: -16px;
  width: 6px;
  height: 6px;
  background: #efff1f;
}

.founder-path-copy > p:last-child {
  max-width: 340px;
  color: rgba(17, 17, 17, 0.64);
  font-size: clamp(1rem, 1.05vw, 1.12rem);
  line-height: 1.55;
}

.founder-path-cards {
  gap: clamp(18px, 1.8vw, 28px);
  align-items: stretch;
}

.founder-path-cards::before {
  left: -32px;
  right: -32px;
  background:
    radial-gradient(circle, #efff1f 0 3px, transparent 4px) left center / 12px 12px no-repeat,
    radial-gradient(circle, #efff1f 0 3px, transparent 4px) center center / 12px 12px no-repeat,
    radial-gradient(circle, #efff1f 0 3px, transparent 4px) right center / 12px 12px no-repeat,
    linear-gradient(90deg, rgba(239, 255, 31, 0), rgba(239, 255, 31, 0.8), rgba(239, 255, 31, 0));
  opacity: 0.85;
}

.founder-card,
.founder-card--featured {
  --card-pad: clamp(24px, 2vw, 32px);
  min-height: clamp(430px, 29vw, 500px);
  border-color: rgba(0, 0, 0, 0.09);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.06);
  transform: none;
}

.founder-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: #efff1f;
  content: "";
}

.founder-card:hover,
.founder-card--featured:hover {
  border-color: rgba(0, 0, 0, 0.18);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.09);
  transform: translateY(-4px);
}

.founder-card--featured {
  border-color: rgba(0, 0, 0, 0.14);
  background: linear-gradient(180deg, #ffffff 0%, #fbfbf7 100%);
}

.founder-card__icon,
.founder-card--featured .founder-card__icon {
  width: clamp(64px, 4.8vw, 82px);
  height: clamp(64px, 4.8vw, 82px);
  margin: 0 0 clamp(24px, 2vw, 34px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #efff1f;
  box-shadow: none;
}

.founder-card__icon .fi {
  color: #000000;
  font-size: clamp(28px, 2.2vw, 38px);
}

.founder-card small {
  margin-bottom: 14px;
  background: rgba(239, 255, 31, 0.75);
  color: #111111;
  font-size: 0.72rem;
  font-weight: 700;
}

.founder-card h3 {
  max-width: 250px;
  color: #111111;
  font-size: clamp(1.35rem, 1.55vw, 1.75rem);
  line-height: 1.06;
}

.founder-card b {
  width: 30px;
  height: 2px;
  margin: 20px 0;
  background: #efff1f;
}

.founder-card > p {
  color: rgba(17, 17, 17, 0.68);
  font-size: clamp(0.92rem, 0.92vw, 1rem);
  line-height: 1.5;
}

.founder-support {
  margin-top: 26px;
  border-top-color: rgba(0, 0, 0, 0.08);
  background: #fafaf7;
}

.founder-support strong {
  color: rgba(17, 17, 17, 0.78);
  font-size: 0.72rem;
  font-weight: 700;
}

.founder-support ul {
  gap: 10px;
}

.founder-support li {
  color: rgba(17, 17, 17, 0.74);
  font-size: 0.875rem;
  line-height: 1.35;
}

.founder-support li::before {
  top: 1px;
  border-color: rgba(0, 0, 0, 0.32);
  color: #000000;
  background: transparent;
  content: "+";
  font-size: 0.9rem;
  font-weight: 400;
}

@media (max-width: 1100px) {
  .founder-path-shell {
    grid-template-columns: 1fr;
  }

  .founder-path-copy,
  .founder-path-copy h2,
  .founder-path-copy > p:last-child {
    max-width: 720px;
  }
}

@media (max-width: 760px) {
  .founder-path-cards {
    grid-template-columns: 1fr;
  }

  .founder-path-cards::before {
    content: none;
  }

  .founder-card,
  .founder-card--featured {
    min-height: 0;
  }
}

/* Team + launch assistant refinement: minimal surfaces, clearer hierarchy, accessible states. */
.team-frame-section,
.team-motion-sticky,
.strategy-section.launch-assistant-section {
  background: #ffffff;
}

.team-frame-section {
  min-height: 190dvh;
}

.team-motion-sticky {
  padding: clamp(104px, 8vw, 132px) clamp(22px, 4.5vw, 78px) clamp(58px, 6vw, 88px);
}

.team-motion-copy {
  max-width: min(820px, 100%);
  padding: clamp(18px, 2vw, 28px);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.04);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
}

.team-motion-copy h2 {
  max-width: 11ch;
  color: #111111;
  font-size: clamp(3.6rem, 4.8vw, 5rem);
  line-height: 0.88;
  text-shadow: none;
}

.team-heading-accent {
  color: #111111;
}

.team-motion-copy p:not(.eyebrow) {
  max-width: 60ch;
  color: rgba(17, 17, 17, 0.62);
  font-size: clamp(0.98rem, 1.05vw, 1.1rem);
  line-height: 1.6;
}

.team-profile-cta {
  min-height: 52px;
  border-color: #efff1f;
  border-radius: 999px;
  background: #efff1f;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.08);
  color: #111111;
}

.team-profile-cta:hover,
.team-profile-cta:focus-visible {
  background: #ddec00;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.12);
  color: #111111;
}

.team-profile {
  border-color: rgba(0, 0, 0, 0.1);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.1);
}

.team-profile::after {
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.92));
}

.team-profile:hover {
  border-color: rgba(0, 0, 0, 0.22);
  box-shadow: 0 26px 74px rgba(0, 0, 0, 0.14);
}

.team-profile-caption {
  border-color: rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.team-profile-caption strong {
  color: #111111;
}

.team-profile-caption span {
  color: rgba(17, 17, 17, 0.58);
}

.team-motion-progress {
  background: rgba(0, 0, 0, 0.08);
}

.team-motion-progress span {
  background: #efff1f;
}

.strategy-section.launch-assistant-section {
  padding: clamp(76px, 6vw, 108px) clamp(24px, 5vw, 72px) clamp(84px, 6vw, 116px);
}

.launch-assistant-shell {
  grid-template-columns: minmax(300px, 0.46fr) minmax(600px, 1fr);
  gap: clamp(40px, 5vw, 86px);
  align-items: start;
}

.assistant-copy {
  max-width: 620px;
  padding-top: clamp(12px, 2vw, 28px);
}

.assistant-badge {
  min-height: 34px;
  margin-bottom: 22px;
  border-color: rgba(0, 0, 0, 0.1);
  background: #ffffff;
  box-shadow: none;
  color: #000000;
  font-size: 0.78rem;
  font-weight: 600;
}

.assistant-badge::before {
  color: #efff1f;
}

.assistant-copy h2 {
  margin-right: 0;
  color: #111111;
  font-size: clamp(3rem, 4.4vw, 4.75rem);
  line-height: 1.02;
}

.assistant-copy h2 span {
  color: #111111;
}

.assistant-copy > p {
  max-width: 500px;
  color: rgba(17, 17, 17, 0.62);
  font-size: clamp(1rem, 1.1vw, 1.16rem);
  line-height: 1.62;
}

.assistant-bubbles {
  gap: 12px;
  margin-top: clamp(24px, 2.8vw, 36px);
}

.assistant-bubble {
  grid-template-columns: 42px 1fr;
}

.assistant-bot {
  width: 42px;
  height: 42px;
  background: #111111;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.assistant-bot::before {
  width: 23px;
  height: 17px;
  border-color: #efff1f;
  background: transparent;
}

.assistant-bot::after {
  right: -1px;
  bottom: -1px;
  background: #efff1f;
}

.assistant-bubble p {
  border-color: rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.05);
  color: rgba(17, 17, 17, 0.72);
  font-size: 0.95rem;
}

.assistant-bubble p::before {
  border-color: rgba(0, 0, 0, 0.08);
}

.assistant-progress-card,
.assistant-handnote {
  display: none;
}

.assistant-card {
  grid-template-columns: minmax(0, 1fr) minmax(230px, 0.42fr);
  gap: clamp(22px, 2.6vw, 36px);
  padding: clamp(24px, 2.5vw, 38px);
  border-color: rgba(0, 0, 0, 0.1);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.07);
}

.assistant-kicker {
  color: #000000;
  font-size: 0.78rem;
}

.assistant-question h3 {
  color: #111111;
  font-size: clamp(1.65rem, 1.9vw, 2.2rem);
  line-height: 1.08;
}

.assistant-question > p:not(.assistant-kicker):not(.assistant-secure):not(.assistant-status) {
  color: rgba(17, 17, 17, 0.58);
}

.assistant-options {
  gap: 10px;
}

.assistant-option {
  min-height: 60px;
  padding: 14px 18px;
  border-color: rgba(0, 0, 0, 0.1);
  border-radius: 14px;
  background: #ffffff;
  color: #111111;
}

.assistant-option:hover,
.assistant-option:focus-visible {
  border-color: rgba(0, 0, 0, 0.22);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.07);
}

.assistant-option.is-selected {
  border-color: #efff1f;
  background: #efff1f;
  box-shadow: none;
}

.assistant-option.is-selected::before {
  background: #000000;
}

.assistant-option-title {
  color: #111111;
  font-size: 0.96rem;
}

.assistant-option small {
  color: rgba(17, 17, 17, 0.62);
}

.assistant-actions .button {
  border-radius: 14px;
  background: #111111;
  color: #ffffff;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
}

.assistant-actions .button:hover,
.assistant-actions .button:focus-visible {
  background: #000000;
}

.assistant-back {
  border-color: rgba(0, 0, 0, 0.12);
  border-radius: 14px;
  background: #ffffff;
  color: #111111;
}

.assistant-secure,
.assistant-status {
  color: rgba(17, 17, 17, 0.52);
}

.assistant-status {
  color: #111111;
}

.assistant-sidebar {
  gap: 14px;
  padding: 18px;
  border-color: rgba(0, 0, 0, 0.08);
  border-radius: 18px;
  background: #f8f8f4;
}

.assistant-sidebar ol {
  gap: 6px;
}

.assistant-sidebar ol::before {
  border-left-color: rgba(0, 0, 0, 0.12);
}

.assistant-sidebar li {
  min-height: 48px;
  border-radius: 14px;
}

.assistant-sidebar li span {
  border-color: rgba(0, 0, 0, 0.12);
  background: #ffffff;
  color: #111111;
}

.assistant-sidebar li p {
  color: #111111;
  font-size: 0.84rem;
}

.assistant-sidebar li.is-active {
  background: #efff1f;
  box-shadow: none;
}

.assistant-sidebar li.is-active span,
.assistant-sidebar li.is-complete span {
  border-color: #000000;
  background: #111111;
  color: #ffffff;
}

.assistant-side-fields div {
  border-color: rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  background: #ffffff;
  color: rgba(17, 17, 17, 0.62);
}

@media (max-width: 980px) {
  .team-motion-copy {
    max-width: min(620px, 100%);
  }

  .launch-assistant-shell {
    grid-template-columns: 1fr;
  }

  .assistant-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .team-motion-copy {
    justify-items: start;
    max-width: min(100%, 380px);
    text-align: left;
  }

  .team-motion-copy h2 {
    max-width: 9ch;
    font-size: clamp(3.05rem, 13vw, 4rem);
  }

  .strategy-section.launch-assistant-section {
    padding: 72px 18px 82px;
  }

  .assistant-bubbles {
    display: none;
  }

  .assistant-card {
    padding: 18px;
  }
}

/* Client marquee, assistant prompts, and footer build-out. */
.client-marquee-section {
  padding: clamp(72px, 7vw, 112px) clamp(20px, 4vw, 56px);
  background: #ffffff;
}

.client-marquee-shell {
  width: min(1380px, 100%);
  padding: clamp(32px, 4vw, 58px);
  border: 1px solid rgba(0, 0, 0, 0.09);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(239, 255, 31, 0.16), rgba(239, 255, 31, 0) 36%),
    #ffffff;
  box-shadow: 0 22px 68px rgba(0, 0, 0, 0.06);
}

.client-marquee-copy {
  gap: 12px;
}

.client-marquee-copy .eyebrow {
  color: #000000;
  font-size: 0.875rem;
}

.client-marquee-copy h2 {
  max-width: 10ch;
  color: #111111;
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 0.9;
}

.client-marquee-copy p:last-child {
  max-width: 760px;
  color: rgba(17, 17, 17, 0.62);
  font-size: clamp(0.96rem, 1.02vw, 1.08rem);
  line-height: 1.68;
}

.client-marquee {
  margin-top: clamp(14px, 2vw, 26px);
  padding-block: 14px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.client-marquee-track {
  gap: clamp(44px, 5vw, 76px);
  padding: 10px clamp(26px, 3vw, 46px);
  animation-duration: 18s;
}

.client-marquee-track img {
  height: clamp(34px, 3.2vw, 50px);
  filter: brightness(0) saturate(0%) opacity(0.78);
  transition: filter 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.client-marquee:hover .client-marquee-track {
  animation-play-state: paused;
}

.client-marquee-track img:hover {
  filter: brightness(0) saturate(0%) opacity(1);
  transform: translateY(-2px);
}

.assistant-bubbles {
  position: relative;
  max-width: 460px;
  padding-left: 18px;
}

.assistant-bubbles::before {
  position: absolute;
  left: 20px;
  top: 18px;
  bottom: 18px;
  width: 1px;
  background: linear-gradient(180deg, rgba(239, 255, 31, 0), #efff1f, rgba(239, 255, 31, 0));
  content: "";
}

.assistant-bubble {
  position: relative;
  grid-template-columns: 46px 1fr;
  gap: 12px;
}

.assistant-bubble + .assistant-bubble {
  margin-top: 2px;
}

.assistant-bot {
  z-index: 1;
  border: 1px solid rgba(239, 255, 31, 0.42);
}

.assistant-bubble p {
  padding: 16px 18px;
  border-radius: 16px;
  color: rgba(17, 17, 17, 0.74);
  font-size: clamp(0.94rem, 0.95vw, 1rem);
  font-weight: 650;
}

.assistant-bubble p::after {
  position: absolute;
  right: 16px;
  top: 14px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #efff1f;
  content: "";
}

.site-footer {
  display: block;
  padding: clamp(54px, 6vw, 88px) clamp(24px, 5vw, 72px) clamp(24px, 3vw, 34px);
  border-top: 1px solid rgba(239, 255, 31, 0.22);
  background: #111111;
  color: rgba(255, 255, 255, 0.72);
}

.footer-shell {
  display: grid;
  width: min(1380px, 100%);
  margin: 0 auto;
  grid-template-columns: minmax(280px, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(36px, 7vw, 110px);
  align-items: start;
}

.footer-brand {
  display: grid;
  gap: 22px;
  max-width: 520px;
}

.site-footer img {
  width: clamp(174px, 16vw, 240px);
  margin: 0;
  filter: none;
}

.site-footer p {
  max-width: 480px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(1rem, 1.05vw, 1.12rem);
  line-height: 1.65;
}

.footer-cta {
  display: inline-flex;
  width: max-content;
  min-height: 50px;
  align-items: center;
  gap: 14px;
  padding: 0 22px;
  border-radius: 999px;
  background: #efff1f;
  color: #111111;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease;
}

.footer-cta:hover,
.footer-cta:focus-visible {
  background: #ddec00;
  color: #111111;
  transform: translateY(-2px);
}

.site-footer nav,
.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 42px);
  color: inherit;
  font-weight: 500;
}

.footer-nav div {
  display: grid;
  gap: 12px;
}

.footer-nav strong {
  margin-bottom: 6px;
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.98rem;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: #efff1f;
  transform: translateX(3px);
}

.footer-bottom {
  display: flex;
  width: min(1380px, 100%);
  margin: clamp(42px, 5vw, 70px) auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  justify-content: space-between;
  gap: 18px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.9rem;
}

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

  .site-footer nav,
  .footer-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-bottom {
    display: grid;
  }
}

@media (max-width: 560px) {
  .client-marquee-shell {
    padding: 28px 20px;
    border-radius: 18px;
  }

  .client-marquee-copy h2 {
    font-size: clamp(2.65rem, 13vw, 3.6rem);
  }

  .assistant-bubbles {
    display: none;
  }

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

/* Sora typography system */
/* Founder card typography refinement. */
.founder-card small {
  min-height: 22px;
  margin-bottom: 16px;
  padding: 5px 9px;
  border-radius: 12px;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
}

.founder-card h3 {
  max-width: 12ch;
  font-size: clamp(2rem, 3.1vw, 2.125rem);
  line-height: 1.08;
  text-wrap: balance;
}

.founder-card b {
  margin: 18px 0 16px;
}

.founder-card > p {
  max-width: 25ch;
  color: rgba(17, 17, 17, 0.66);
  font-family: var(--font-sans);
  font-size: clamp(0.93rem, 0.86vw, 0.98rem);
  font-weight: 400;
  line-height: 1.55;
}

.founder-support {
  margin-top: 24px;
  padding-top: clamp(22px, 1.8vw, 28px);
}

.founder-support strong {
  margin-bottom: 14px;
  color: rgba(17, 17, 17, 0.66);
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
}

.founder-support ul {
  gap: 9px;
}

.founder-support li {
  min-height: 22px;
  padding-left: 26px;
  color: rgba(17, 17, 17, 0.76);
  font-family: var(--font-sans);
  font-size: clamp(0.84rem, 0.78vw, 0.9rem);
  font-weight: 400;
  line-height: 1.42;
}

.founder-support li::before {
  top: 0.05em;
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(0, 0, 0, 0.52);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1;
}

/* Product category cards refinement. */
.format-section {
  padding-top: clamp(76px, 8vw, 126px);
  padding-bottom: clamp(84px, 8vw, 132px);
}

.formats-shell {
  width: min(1510px, calc(100% - clamp(32px, 6vw, 88px)));
}

.formats-copy > p:last-child {
  max-width: 610px;
  margin-top: 20px;
  color: rgba(17, 17, 17, 0.58);
  font-family: var(--font-sans);
  font-size: clamp(0.98rem, 0.98vw, 1.08rem);
  line-height: 1.62;
}

.formats-cards {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
  margin-top: clamp(38px, 4vw, 64px);
  padding: 0;
  overflow: visible;
  border: 0;
  background: transparent;
}

.category-card,
.category-card--featured {
  min-height: clamp(350px, 25vw, 430px);
  padding: clamp(20px, 1.8vw, 28px) clamp(18px, 1.6vw, 24px) 0;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.9) 56%, rgba(247, 247, 242, 0.94)),
    #ffffff;
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.055);
}

.category-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  border-radius: inherit;
  background: #efff1f;
  content: "";
  opacity: 0.9;
}

.category-card__icon {
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 14px;
  background: #efff1f;
  box-shadow: none;
}

.category-card__icon .fi {
  color: #000000;
  font-size: 21px;
}

.category-card h3 {
  max-width: 12ch;
  color: #101010;
  font-size: clamp(1.28rem, 1.26vw, 1.55rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.category-card__line {
  width: 22px;
  height: 2px;
  margin: 14px 0 14px;
  background: #efff1f;
}

.category-card p {
  max-width: 18ch;
  color: rgba(17, 17, 17, 0.62);
  font-family: var(--font-sans);
  font-size: clamp(0.9rem, 0.82vw, 0.98rem);
  font-weight: 500;
  line-height: 1.42;
}

.category-card__media {
  height: 45%;
  padding-inline: 8px;
}

.category-card__media::before {
  position: absolute;
  inset: auto 12px 12px;
  height: 44%;
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(239, 255, 31, 0.32), transparent 68%);
  content: "";
  filter: blur(10px);
  opacity: 0.8;
}

.category-card__media img {
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 20px 26px rgba(0, 0, 0, 0.12));
}

.category-card:hover,
.category-card:focus-within {
  border-color: rgba(0, 0, 0, 0.18);
  box-shadow: 0 26px 72px rgba(0, 0, 0, 0.11);
  --card-shift: -8px;
  --card-scale: 1.012;
}

.category-card:hover .category-card__media img,
.category-card:focus-within .category-card__media img {
  filter: drop-shadow(0 26px 30px rgba(0, 0, 0, 0.15));
}

.formats-cards {
  gap: clamp(12px, 1.2vw, 18px);
}

.format-section {
  padding-inline: clamp(16px, 2vw, 30px);
}

.formats-shell {
  width: min(1510px, 100%);
}

.category-card,
.category-card--featured {
  display: block;
  min-height: 0;
  aspect-ratio: 0.82;
  padding: 0;
  isolation: isolate;
  border: 1px solid rgba(239, 255, 31, 0.42);
  border-radius: clamp(22px, 2vw, 30px);
  background: #f8f8f3;
  box-shadow: 0 18px 48px rgba(35, 39, 20, 0.075);
  container-type: inline-size;
}

.category-card::before {
  z-index: 1;
  inset: 0;
  width: auto;
  height: auto;
  border-radius: inherit;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.84) 36%, rgba(255, 255, 255, 0.28) 70%, rgba(255, 255, 255, 0.04) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.34) 0%, transparent 48%, rgba(255, 255, 255, 0.08) 100%);
  content: "";
  opacity: 1;
  pointer-events: none;
}

.category-card::after {
  position: absolute;
  z-index: 3;
  inset: 5px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: calc(clamp(22px, 2vw, 30px) - 5px);
  content: "";
  pointer-events: none;
}

.category-card__media--photo {
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border-radius: inherit;
}

.category-card__media--photo::before {
  content: none;
}

.category-card__media--photo .category-card__photo {
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  border-radius: inherit;
  object-fit: cover;
  object-position: center var(--photo-y, 54%);
  filter: none;
  transform: none;
  transition: transform 360ms cubic-bezier(0.16, 1, 0.3, 1);
}

.category-card__icon {
  position: absolute;
  z-index: 4;
  top: 6.5%;
  left: 7%;
  width: clamp(32px, 10.5cqw, 52px);
  height: clamp(32px, 10.5cqw, 52px);
  margin: 0;
  border: 1.5px solid var(--brand-red);
  border-radius: clamp(12px, 1.2vw, 16px);
  background: rgba(255, 255, 255, 0.26);
  box-shadow: none;
}

.category-card__icon .fi {
  color: #c8d900;
  font-size: clamp(16px, 5.5cqw, 24px);
}

.category-card h3.category-card__title {
  position: absolute;
  z-index: 4;
  top: 20%;
  right: 5%;
  left: 7%;
  display: grid;
  max-width: none;
  margin: 0;
  color: #191a16;
  font-family: var(--font-display);
  font-size: clamp(2.15rem, 19.5cqw, 4rem);
  font-weight: 700;
  line-height: 0.82;
  letter-spacing: -0.025em;
  text-align: left;
  text-transform: uppercase;
  text-wrap: nowrap;
}

.category-card h3.category-card__title--single {
  top: 29%;
  font-size: clamp(2.15rem, 17.2cqw, 4rem);
}

.category-card h3.category-card__title--wellness {
  font-size: clamp(1.55rem, 11.8cqw, 3.15rem);
  line-height: 0.9;
}

.category-card--preworkout h3.category-card__title {
  font-size: clamp(2.15rem, 16.1cqw, 4rem);
}

.category-card__title > span {
  display: block;
  max-width: 100%;
}

.category-card__title-accent {
  color: #cce000;
}

.category-card__line {
  position: absolute;
  z-index: 4;
  top: 56%;
  left: 7%;
  width: clamp(28px, 14cqw, 52px);
  height: 3px;
  margin: 0;
  background: #cce000;
}

.category-card p {
  position: absolute;
  z-index: 4;
  top: 61%;
  right: 7%;
  left: 7%;
  max-width: 18ch;
  margin: 0;
  color: rgba(25, 26, 22, 0.82);
  font-size: clamp(0.78rem, 4.5cqw, 1.04rem);
  font-weight: 500;
  line-height: 1.45;
}

.category-card__arrow {
  position: absolute;
  z-index: 4;
  bottom: 8%;
  left: 7%;
  display: block;
  width: clamp(34px, 11cqw, 56px);
  height: clamp(34px, 11cqw, 56px);
  border: 1.5px solid var(--brand-red);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.24);
}

.category-card__arrow::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 38%;
  height: 2px;
  background: #c8d900;
  content: "";
  transform: translate(-54%, -50%);
}

.category-card__arrow::after {
  position: absolute;
  top: 50%;
  left: 55%;
  width: 22%;
  height: 22%;
  border-top: 2px solid #c8d900;
  border-right: 2px solid #c8d900;
  content: "";
  transform: translate(-50%, -50%) rotate(45deg);
}

.category-card--whey {
  --photo-y: 54%;
}

.category-card--creatine {
  --photo-y: 50%;
}

.category-card--preworkout {
  --photo-y: 51%;
}

.category-card--mass {
  --photo-y: 55%;
}

.category-card--wellness {
  --photo-y: 54%;
}

.category-card:hover .category-card__media--photo .category-card__photo,
.category-card:focus-within .category-card__media--photo .category-card__photo {
  filter: none;
  transform: scale(1.025);
}

@media (prefers-reduced-motion: reduce) {
  .category-card__media--photo .category-card__photo,
  .category-card:hover .category-card__media--photo .category-card__photo,
  .category-card:focus-within .category-card__media--photo .category-card__photo {
    transform: none;
    transition: none;
  }
}

@media (max-width: 1180px) {
  .formats-cards {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .category-card {
    grid-column: span 2;
  }

  .category-card--mass,
  .category-card--wellness {
    grid-column: span 3;
  }
}

@media (max-width: 760px) {
  .formats-shell {
    width: min(100%, calc(100vw - 32px));
  }

  .formats-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .category-card,
  .category-card--featured,
  .category-card--mass,
  .category-card--wellness {
    grid-column: auto;
    min-height: 390px;
  }
}

/* Team page editorial gallery inspired by the reference layout, using Nutragenix type and assets. */
.team-page-main {
  padding-top: clamp(112px, 9vw, 152px);
}

.team-page-directory.team-directory-section {
  padding: clamp(86px, 9vw, 152px) 0 clamp(96px, 10vw, 168px);
  overflow: clip;
  background: #ffffff;
}

.team-page-directory::before {
  content: none;
}

.team-directory-head--editorial {
  width: min(1580px, calc(100% - clamp(32px, 7vw, 112px)));
  max-width: none;
  margin: 0 auto clamp(54px, 7vw, 112px);
  align-items: start;
  justify-items: start;
  gap: clamp(16px, 2vw, 28px);
  text-align: left;
}

.team-directory-head--editorial .eyebrow {
  color: #000000;
  font-family: var(--font-sans);
  font-size: clamp(0.82rem, 0.86vw, 0.96rem);
  font-weight: 600;
  letter-spacing: 0.04em;
}

.team-directory-head--editorial h1 {
  max-width: 9.6ch;
  margin: 0;
  color: #101010;
  font-family: "CHEDROS", var(--font-sans);
  font-size: clamp(4.8rem, 10.5vw, 13.5rem);
  font-weight: 700;
  line-height: 0.82;
  letter-spacing: 0;
  text-wrap: balance;
}

.team-directory-head--editorial h1 span {
  color: #101010;
}

.team-directory-head--editorial > p:not(.eyebrow) {
  max-width: 58ch;
  margin: 0;
  color: rgba(17, 17, 17, 0.62);
  font-family: var(--font-sans);
  font-size: clamp(1rem, 1.16vw, 1.22rem);
  font-weight: 400;
  line-height: 1.62;
}

.team-page-directory .team-directory-grid {
  width: min(1760px, calc(100% - clamp(28px, 4.8vw, 78px)));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 286px), 1fr));
  gap: clamp(42px, 4.2vw, 76px) clamp(18px, 2.3vw, 38px);
  align-items: start;
}

.team-page-directory .team-directory-card {
  display: block;
  min-width: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transform: translateY(34px);
  transition:
    opacity 0.82s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.82s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--team-card-delay, 0ms);
}

.team-page-directory .team-directory-card.visible {
  transform: translateY(0);
}

.team-page-directory .team-directory-card:hover {
  border-color: transparent;
  box-shadow: none;
  transform: translateY(0);
}

.team-page-directory .team-directory-card figure {
  display: grid;
  gap: clamp(13px, 1vw, 18px);
  margin: 0;
}

.team-directory-media {
  position: relative;
  display: block;
  aspect-ratio: 456 / 560;
  overflow: hidden;
  background: #ecefeb;
}

.team-directory-media img,
.team-directory-media video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.team-directory-media > img:first-child {
  transform: scale(var(--team-portrait-scale, 1.2));
  transform-origin: center top;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), filter 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.team-directory-hover-media {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.015);
  transition: opacity 0.34s ease;
  pointer-events: none;
}

.team-page-directory .team-directory-card figcaption {
  display: grid;
  gap: 5px;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.team-page-directory .team-directory-card strong {
  color: #111111;
  font-family: var(--font-sans);
  font-size: clamp(1.02rem, 1vw, 1.2rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: 0;
}

.team-page-directory .team-directory-card span:not(.team-directory-media) {
  max-width: 27ch;
  color: rgba(17, 17, 17, 0.52);
  font-family: var(--font-sans);
  font-size: clamp(0.84rem, 0.76vw, 0.92rem);
  font-weight: 500;
  line-height: 1.34;
}

@media (hover: hover) and (pointer: fine) {
  .team-page-directory .team-directory-card:hover .team-directory-media > img:first-child,
  .team-page-directory .team-directory-card:focus-within .team-directory-media > img:first-child {
    filter: saturate(1.04) contrast(1.03);
    transform: scale(calc(var(--team-portrait-scale, 1.2) + 0.035));
  }

  .team-page-directory .team-directory-card:hover .team-directory-hover-media,
  .team-page-directory .team-directory-card:focus-within .team-directory-hover-media {
    opacity: 1;
  }
}

@media (min-width: 1025px) {
  .team-page-directory .team-directory-card:nth-child(4n + 2),
  .team-page-directory .team-directory-card:nth-child(4n + 4) {
    margin-top: clamp(38px, 5vw, 86px);
  }

  .team-page-directory .team-directory-card:nth-child(6n + 1) {
    grid-column: span 1;
  }
}

@media (max-width: 1024px) {
  .team-page-directory .team-directory-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 232px), 1fr));
  }
}

@media (max-width: 640px) {
  .team-page-main {
    padding-top: 96px;
  }

  .team-page-directory.team-directory-section {
    padding-top: 64px;
  }

  .team-directory-head--editorial {
    width: min(100%, calc(100% - 36px));
    margin-bottom: 44px;
  }

  .team-directory-head--editorial h1 {
    max-width: 8.8ch;
    font-size: clamp(4rem, 18vw, 6.4rem);
  }

  .team-page-directory .team-directory-grid {
    width: min(100%, calc(100% - 28px));
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 14px;
  }

  .team-page-directory .team-directory-card strong {
    font-size: 0.92rem;
  }

  .team-page-directory .team-directory-card span:not(.team-directory-media) {
    font-size: 0.78rem;
  }
}

@media (max-width: 390px) {
  .team-page-directory .team-directory-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .team-page-directory .team-directory-card,
  .team-directory-media > img:first-child,
  .team-directory-hover-media {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* FAQ heading center alignment. */
.faq-section .section-heading {
  display: grid;
  justify-items: center;
  width: min(920px, calc(100% - 32px));
  margin-inline: auto;
  text-align: center;
}

.faq-section .section-heading h2 {
  max-width: 11ch;
  margin-inline: auto;
  text-align: center;
}

/* Internal-page consistency layer. */
body:not(.home-page) .site-header {
  background: rgba(255, 255, 255, 0.9);
}

.page-main {
  overflow-x: clip;
  padding-top: clamp(96px, 9vw, 132px);
}

.page-hero,
.page-band,
.team-page-directory {
  width: min(100% - 64px, 1320px);
  margin-inline: auto;
}

.page-hero {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  gap: clamp(36px, 6vw, 96px);
  padding-block: clamp(44px, 7vw, 96px) clamp(72px, 9vw, 132px);
  background: transparent;
}

.page-hero h1,
.team-directory-head h1 {
  max-width: 11.5ch;
  font-size: clamp(3rem, 5.8vw, 5.75rem);
  line-height: 0.98;
}

.page-hero p:not(.eyebrow) {
  max-width: 58ch;
  font-size: clamp(1rem, 1.15vw, 1.13rem);
}

.page-hero__image {
  min-height: 0;
  aspect-ratio: 5 / 4;
  border: 1px solid rgba(23, 23, 23, 0.1);
  border-radius: 8px;
  background: #f2f2f0;
  box-shadow: 0 20px 48px rgba(23, 23, 23, 0.08);
}

.page-hero__image img {
  min-height: 0;
}

.page-actions {
  gap: 10px;
  margin-top: 26px;
}

.page-band {
  padding-block: clamp(72px, 8vw, 128px);
}

.page-band .section-heading {
  max-width: 800px;
  margin-bottom: clamp(32px, 4.5vw, 58px);
}

.page-band .section-heading h2 {
  max-width: 12.5ch;
}

.page-grid {
  gap: 18px;
}

.page-card {
  display: flex;
  min-height: 250px;
  flex-direction: column;
  padding: clamp(24px, 2.25vw, 34px);
  border: 1px solid rgba(23, 23, 23, 0.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(23, 23, 23, 0.045);
}

.page-card h3 {
  max-width: 17ch;
  margin-bottom: 14px;
  font-size: clamp(1.55rem, 2vw, 2.1rem);
  line-height: 1.02;
}

.page-card span {
  width: fit-content;
  margin-bottom: auto;
  padding: 5px 9px;
  border: 1px solid rgba(23, 23, 23, 0.12);
  border-radius: 6px;
  color: var(--ink);
  font-size: 0.82rem;
  line-height: 1;
}

.page-card p,
.split-content p,
.feature-list li {
  font-size: 0.98rem;
  line-height: 1.65;
}

.page-band.tint {
  border-top: 1px solid rgba(23, 23, 23, 0.08);
  border-bottom: 1px solid rgba(23, 23, 23, 0.08);
  background: rgba(23, 23, 23, 0.025);
}

.split-content,
.contact-card-grid {
  gap: clamp(32px, 6vw, 92px);
}

.split-content img {
  min-height: 0;
  aspect-ratio: 5 / 4;
  border: 1px solid rgba(23, 23, 23, 0.1);
  border-radius: 8px;
  box-shadow: 0 20px 48px rgba(23, 23, 23, 0.07);
}

.feature-list {
  gap: 13px;
}

.feature-list li {
  padding-left: 22px;
}

.feature-list li::before {
  color: var(--brand-red);
}

.page-band.dark {
  width: 100%;
  padding-inline: max(32px, calc((100vw - 1240px) / 2));
  background: #171717;
}

.page-band.dark h2,
.page-band.dark strong {
  color: #fff;
}

.page-band.dark p,
.page-band.dark .contact-panel p {
  color: rgba(255, 255, 255, 0.68);
}

.contact-panel,
.brief-form {
  border: 1px solid rgba(23, 23, 23, 0.1);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.14);
}

.page-band.dark .contact-panel {
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.page-band.dark .contact-panel a {
  color: #fff;
}

.brief-form label {
  color: var(--ink);
}

.brief-form input,
.brief-form select,
.brief-form textarea {
  border-color: rgba(23, 23, 23, 0.16);
  background: #fff;
}

.brief-form input:focus,
.brief-form select:focus,
.brief-form textarea:focus,
.site-nav a:focus-visible,
.page-actions a:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 3px;
}

.site-footer {
  gap: clamp(28px, 5vw, 72px);
  padding-block: clamp(40px, 5vw, 64px);
  border-top-color: rgba(23, 23, 23, 0.12);
}

.site-footer p {
  font-size: 0.95rem;
}

.site-footer nav {
  flex-wrap: wrap;
  gap: 10px 22px;
}

@media (hover: hover) and (pointer: fine) {
  .page-card:hover {
    border-color: rgba(23, 23, 23, 0.25);
    box-shadow: 0 20px 46px rgba(23, 23, 23, 0.09);
    transform: translateY(-4px);
  }
}

@media (max-width: 1000px) {
  .page-hero,
  .split-content,
  .contact-card-grid {
    grid-template-columns: 1fr;
  }

  .page-hero__image {
    max-width: 760px;
  }

  .page-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .page-main {
    padding-top: 82px;
  }

  .page-hero,
  .page-band,
  .team-page-directory {
    width: min(100% - 36px, 1320px);
  }

  .page-hero {
    gap: 30px;
    padding-block: 34px 72px;
  }

  .page-hero h1,
  .team-directory-head h1 {
    max-width: 10ch;
    font-size: clamp(2.7rem, 13vw, 4.5rem);
  }

  .page-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .page-card {
    min-height: 220px;
  }

  .page-band.dark {
    padding-inline: 18px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-card,
  .page-card:hover {
    transition: none;
    transform: none;
  }
}

/* Internal-page editorial refinement. */
body:not(.home-page) .page-main {
  background: #fff;
}

body:not(.home-page) .page-hero,
body:not(.home-page) .page-band,
body:not(.home-page) .team-page-directory {
  width: min(100% - clamp(36px, 6vw, 96px), 1360px);
}

body:not(.home-page) .page-hero {
  align-items: start;
  gap: clamp(40px, 7vw, 112px);
  padding-top: clamp(44px, 6vw, 84px);
}

body:not(.home-page) .page-hero > :first-child {
  display: grid;
  align-content: start;
  gap: 20px;
  padding-top: clamp(8px, 1vw, 16px);
}

body:not(.home-page) .page-hero .eyebrow,
body:not(.home-page) .page-band .eyebrow,
body:not(.home-page) .team-directory-head .eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: #171717;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

body:not(.home-page) .page-hero .eyebrow::before,
body:not(.home-page) .page-band .eyebrow::before,
body:not(.home-page) .team-directory-head .eyebrow::before {
  width: 26px;
  height: 1px;
  background: var(--lime);
  content: "";
}

body:not(.home-page) .page-hero h1,
body:not(.home-page) .team-directory-head h1 {
  max-width: 10.5ch;
  margin: 0;
  font-size: clamp(3.2rem, 6vw, 6.25rem);
  line-height: 0.94;
  text-wrap: balance;
}

body:not(.home-page) .page-hero p:not(.eyebrow),
body:not(.home-page) .team-directory-head p:not(.eyebrow) {
  max-width: 52ch;
  margin: 0;
  font-size: clamp(1rem, 1.15vw, 1.12rem);
  line-height: 1.7;
  text-wrap: pretty;
}

body:not(.home-page) .page-band {
  padding-block: clamp(80px, 9vw, 144px);
}

body:not(.home-page) .page-band .section-heading {
  display: grid;
  gap: 16px;
  max-width: 760px;
}

body:not(.home-page) .page-band .section-heading h2 {
  max-width: 12.5ch;
  margin: 0;
  font-size: clamp(2.55rem, 4.8vw, 4.7rem);
  line-height: 1;
  text-wrap: balance;
}

body:not(.home-page) .page-band .section-heading p:not(.eyebrow) {
  max-width: 58ch;
  margin: 0;
}

body:not(.home-page) .page-grid {
  gap: clamp(14px, 1.6vw, 24px);
}

body:not(.home-page) .page-card {
  min-height: 300px;
  justify-content: flex-start;
}

body:not(.home-page) .page-card > span {
  margin-bottom: clamp(32px, 4vw, 60px);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

body:not(.home-page) .page-card h3 {
  margin: 0 0 12px;
  font-size: clamp(1.45rem, 2.2vw, 2.2rem);
  line-height: 1;
}

body:not(.home-page) .page-card p {
  max-width: 31ch;
  margin: 0;
}

body:not(.home-page) .split-content {
  gap: clamp(40px, 7vw, 108px);
}

body:not(.home-page) .feature-list {
  max-width: 48ch;
}

body:not(.home-page) .contact-card-grid {
  align-items: start;
}

body:not(.home-page) .contact-card-grid h2 {
  margin: 0 0 16px;
  font-size: clamp(2.4rem, 4vw, 4.4rem);
  line-height: 1;
}

body:not(.home-page) .brief-form {
  padding: clamp(22px, 3vw, 40px);
}

body:not(.home-page) .site-footer {
  margin-top: 0;
}

@media (max-width: 700px) {
  body:not(.home-page) .page-hero,
  body:not(.home-page) .page-band,
  body:not(.home-page) .team-page-directory {
    width: min(100% - 36px, 1360px);
  }

  body:not(.home-page) .page-hero > :first-child {
    gap: 16px;
  }

  body:not(.home-page) .page-hero h1,
  body:not(.home-page) .team-directory-head h1 {
    max-width: 10ch;
    font-size: clamp(2.9rem, 14vw, 4.7rem);
  }

  body:not(.home-page) .page-card {
    min-height: 0;
  }

  body:not(.home-page) .page-card > span {
    margin-bottom: 28px;
  }
}

/* Supporting-page visual refinement. */
body.page--about .page-hero,
body.page--manufacturing .page-hero,
body.page--packaging .page-hero,
body.page--contact .page-hero {
  min-height: min(700px, calc(100dvh - 90px));
}

body.page--about .page-hero__image,
body.page--manufacturing .page-hero__image,
body.page--packaging .page-hero__image,
body.page--contact .page-hero__image {
  align-self: stretch;
}

body.page--about .page-hero__image img,
body.page--manufacturing .page-hero__image img,
body.page--packaging .page-hero__image img,
body.page--contact .page-hero__image img {
  height: 100%;
}

body.page--about .page-grid,
body.page--packaging .page-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.page--about .page-card,
body.page--packaging .page-card {
  min-height: clamp(320px, 28vw, 400px);
}

body.page--about .split-content,
body.page--packaging .split-content {
  align-items: center;
}

body.page--about .split-content > div,
body.page--packaging .split-content > div {
  display: grid;
  gap: 20px;
  align-content: center;
}

body.page--about .split-content h2,
body.page--packaging .split-content h2 {
  max-width: 11ch;
  margin: 0;
  font-size: clamp(2.4rem, 4vw, 4.25rem);
  line-height: 1;
  text-wrap: balance;
}

body.page--manufacturing .page-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.page--manufacturing .page-card {
  min-height: clamp(280px, 24vw, 344px);
  border-top: 3px solid var(--lime);
}

body.page--manufacturing .page-card > span {
  min-width: 2.4rem;
  padding: 5px 8px;
  border-color: rgba(23, 23, 23, 0.16);
  background: rgba(239, 255, 31, 0.45);
  font-variant-numeric: tabular-nums;
  text-align: center;
}

body.page--manufacturing .page-band.dark {
  position: relative;
  overflow: hidden;
  background: #171717;
}

body.page--manufacturing .page-band.dark::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(239, 255, 31, 0.08), transparent 45%);
  content: "";
  pointer-events: none;
}

body.page--manufacturing .page-band.dark > * {
  position: relative;
}

body.page--manufacturing .page-band.dark .page-card {
  border-top-color: var(--lime);
  background: rgba(255, 255, 255, 0.96);
}

body.page--packaging .page-hero__image img {
  object-position: center;
}

body.page--packaging .page-card:first-child {
  background: #171717;
  color: #fff;
}

body.page--packaging .page-card:first-child p {
  color: rgba(255, 255, 255, 0.72);
}

body.page--packaging .page-card:first-child > span {
  border-color: rgba(255, 255, 255, 0.24);
  color: #fff;
}

body.page--contact .page-hero {
  min-height: min(640px, calc(100dvh - 90px));
}

body.page--contact .page-band.dark {
  padding-block: clamp(88px, 10vw, 152px);
}

body.page--contact .contact-card-grid > div:first-child {
  display: grid;
  gap: 20px;
  align-content: start;
}

body.page--contact .contact-panel {
  gap: 16px;
  margin-top: 8px;
}

body.page--contact .contact-panel a {
  width: fit-content;
  border-bottom: 1px solid rgba(255, 255, 255, 0.42);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
}

body.page--contact .brief-form {
  gap: 18px;
}

body.page--contact .brief-form label {
  display: grid;
  gap: 8px;
  font-weight: 600;
}

body.page--contact .brief-form input,
body.page--contact .brief-form select,
body.page--contact .brief-form textarea {
  min-height: 48px;
  padding: 12px 14px;
  border-radius: 6px;
  font: inherit;
}

body.page--contact .brief-form textarea {
  min-height: 142px;
  resize: vertical;
}

.faq-section {
  scroll-margin-top: 104px;
}

.faq-section .section-heading {
  gap: 14px;
  margin-bottom: clamp(40px, 5vw, 64px);
}

.faq-section .section-heading .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.faq-section .section-heading .eyebrow::before {
  width: 24px;
  height: 1px;
  background: var(--lime);
  content: "";
}

.faq-section .faq-list {
  max-width: 980px;
}

.faq-section .faq-item {
  transition: background 180ms ease, border-color 180ms ease;
}

.faq-section .faq-item[open] {
  background: rgba(239, 255, 31, 0.12);
  border-color: rgba(23, 23, 23, 0.2);
}

.faq-section .faq-item summary {
  min-height: 76px;
  padding-block: 25px;
  font-size: clamp(1rem, 1.25vw, 1.15rem);
}

.faq-section .faq-item p {
  max-width: 75ch;
  color: rgba(23, 23, 23, 0.72);
  line-height: 1.7;
}

@media (max-width: 1000px) {
  body.page--about .page-grid,
  body.page--manufacturing .page-grid,
  body.page--packaging .page-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.page--about .page-hero,
  body.page--manufacturing .page-hero,
  body.page--packaging .page-hero,
  body.page--contact .page-hero {
    min-height: 0;
  }
}

@media (max-width: 700px) {
  body.page--about .page-grid,
  body.page--manufacturing .page-grid,
  body.page--packaging .page-grid {
    grid-template-columns: 1fr;
  }

  body.page--about .page-card,
  body.page--manufacturing .page-card,
  body.page--packaging .page-card {
    min-height: 0;
  }

  body.page--contact .page-band.dark {
    padding-block: 72px;
  }

  .faq-section .faq-item summary {
    min-height: 68px;
    padding-block: 21px;
  }
}

/* Internal-page overlap repair and final page polish. */
body:not(.home-page) {
  background: #f5f5f1;
}

body:not(.home-page) .page-main {
  overflow-x: clip;
}

body.page--about .page-hero,
body.page--manufacturing .page-hero,
body.page--packaging .page-hero,
body.page--contact .page-hero {
  position: relative;
  display: grid;
  width: min(100% - clamp(36px, 5vw, 88px), 1240px);
  min-height: 0;
  grid-template-columns: minmax(0, 0.88fr) minmax(340px, 0.92fr);
  gap: clamp(34px, 5.2vw, 72px);
  align-items: center;
  padding-block: clamp(52px, 6.5vw, 96px);
  background: transparent;
}

body.page--about .page-hero > .reveal:first-child,
body.page--manufacturing .page-hero > .reveal:first-child,
body.page--packaging .page-hero > .reveal:first-child,
body.page--contact .page-hero > .reveal:first-child {
  position: relative;
  z-index: 1;
  display: grid;
  min-width: 0;
  gap: clamp(16px, 2vw, 22px);
  align-content: center;
}

body.page--about .page-hero h1,
body.page--manufacturing .page-hero h1,
body.page--packaging .page-hero h1,
body.page--contact .page-hero h1 {
  width: min(100%, 11.8ch);
  max-width: none;
  font-size: clamp(3.25rem, 4.85vw, 5.1rem);
  line-height: 0.98;
  letter-spacing: 0;
  overflow-wrap: normal;
  text-wrap: balance;
}

body.page--about .page-hero p:not(.eyebrow),
body.page--manufacturing .page-hero p:not(.eyebrow),
body.page--packaging .page-hero p:not(.eyebrow),
body.page--contact .page-hero p:not(.eyebrow) {
  max-width: 54ch;
  font-size: clamp(1rem, 1vw, 1.08rem);
  line-height: 1.72;
}

body.page--about .page-hero__image,
body.page--manufacturing .page-hero__image,
body.page--packaging .page-hero__image,
body.page--contact .page-hero__image {
  width: 100%;
  min-width: 0;
  min-height: 0;
  aspect-ratio: 4 / 3;
  align-self: center;
  overflow: hidden;
  border-radius: 8px;
}

body.page--about .page-hero__image img,
body.page--manufacturing .page-hero__image img,
body.page--packaging .page-hero__image img,
body.page--contact .page-hero__image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

body:not(.home-page) .page-band {
  width: min(100% - clamp(36px, 5vw, 88px), 1240px);
  padding-block: clamp(72px, 7vw, 118px);
}

body:not(.home-page) .page-band .section-heading {
  max-width: 780px;
  margin-bottom: clamp(34px, 4.2vw, 58px);
}

body:not(.home-page) .page-band .section-heading h2,
body:not(.home-page) .split-content h2 {
  width: min(100%, 12.8ch);
  max-width: none;
  font-size: clamp(2.85rem, 4.2vw, 4.65rem);
  line-height: 1;
  text-wrap: balance;
}

body:not(.home-page) .page-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 1.6vw, 24px);
  align-items: stretch;
}

body:not(.home-page) .page-card {
  min-width: 0;
  min-height: clamp(260px, 21vw, 330px);
  padding: clamp(24px, 2.3vw, 34px);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
}

body:not(.home-page) .page-card > span {
  margin-bottom: clamp(34px, 4vw, 54px);
  border-radius: 8px;
  color: #171717;
}

body:not(.home-page) .page-card h3 {
  max-width: 14ch;
  font-size: clamp(1.55rem, 1.8vw, 2rem);
  line-height: 1.04;
  overflow-wrap: normal;
  text-wrap: balance;
}

body:not(.home-page) .page-card p,
body:not(.home-page) .split-content p,
body:not(.home-page) .feature-list li,
body:not(.home-page) .page-band.dark .page-card p {
  color: #646464;
}

body:not(.home-page) .page-band.dark {
  width: 100%;
  padding-inline: max(clamp(36px, 5vw, 88px), calc((100vw - 1240px) / 2));
  background: #171717;
}

body:not(.home-page) .page-band.dark .section-heading h2 {
  color: #fff;
}

body:not(.home-page) .page-band.dark .eyebrow {
  color: #efff1f;
}

body:not(.home-page) .page-band.dark .page-card {
  border-color: rgba(255, 255, 255, 0.18);
  border-top-color: #efff1f;
  background: #fff;
}

body:not(.home-page) .split-content {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 0.92fr);
  gap: clamp(36px, 5.5vw, 78px);
  align-items: center;
}

body:not(.home-page) .split-content img {
  width: 100%;
  min-width: 0;
  min-height: 0;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

body.page--packaging .split-content {
  grid-template-columns: minmax(240px, 0.58fr) minmax(0, 0.82fr);
}

body.page--packaging .split-content img {
  max-width: 360px;
  justify-self: center;
  object-fit: contain;
}

body:not(.home-page) .site-footer {
  width: 100%;
  max-width: none;
  margin-inline: 0;
  border-radius: 0;
}

@media (max-width: 1160px) {
  body.page--about .page-hero,
  body.page--manufacturing .page-hero,
  body.page--packaging .page-hero,
  body.page--contact .page-hero {
    grid-template-columns: 1fr;
  }

  body.page--about .page-hero h1,
  body.page--manufacturing .page-hero h1,
  body.page--packaging .page-hero h1,
  body.page--contact .page-hero h1 {
    width: min(100%, 13ch);
    font-size: clamp(3rem, 7vw, 4.7rem);
  }

  body.page--about .page-hero__image,
  body.page--manufacturing .page-hero__image,
  body.page--packaging .page-hero__image,
  body.page--contact .page-hero__image {
    max-width: 760px;
  }

  body:not(.home-page) .split-content,
  body.page--packaging .split-content {
    grid-template-columns: 1fr;
  }

  body.page--packaging .split-content img {
    justify-self: start;
  }
}

@media (max-width: 920px) {
  body:not(.home-page) .page-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body:not(.home-page) .page-card {
    min-height: 0;
  }
}

@media (max-width: 640px) {
  body.page--about .page-hero,
  body.page--manufacturing .page-hero,
  body.page--packaging .page-hero,
  body.page--contact .page-hero,
  body:not(.home-page) .page-band,
  body:not(.home-page) .site-footer {
    width: min(100% - 28px, 1240px);
  }

  body.page--about .page-hero h1,
  body.page--manufacturing .page-hero h1,
  body.page--packaging .page-hero h1,
  body.page--contact .page-hero h1,
  body:not(.home-page) .page-band .section-heading h2,
  body:not(.home-page) .split-content h2 {
    width: 100%;
    font-size: clamp(2.55rem, 13vw, 3.55rem);
    line-height: 1.02;
  }

  body:not(.home-page) .page-grid {
    grid-template-columns: 1fr;
  }

  body:not(.home-page) .page-card > span {
    margin-bottom: 28px;
  }

  body:not(.home-page) .page-band.dark {
    padding-inline: 14px;
  }
}

/* About page approved split editorial hero. */
body.page--about .about-editorial-hero {
  display: grid;
  width: min(100% - clamp(32px, 5.4vw, 96px), 1240px);
  min-height: clamp(560px, 68vh, 700px);
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.9fr);
  gap: clamp(48px, 7vw, 112px);
  align-items: center;
  margin: clamp(18px, 2vw, 28px) auto clamp(56px, 7vw, 104px);
  padding: clamp(46px, 5.8vw, 78px) clamp(36px, 5vw, 72px);
  border: 1px solid rgba(23, 23, 23, 0.13);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 54px rgba(23, 23, 23, 0.055);
}

body.page--about .about-editorial-hero > .reveal:first-child {
  display: grid;
  max-width: 540px;
  min-width: 0;
  gap: clamp(18px, 2vw, 24px);
  align-content: center;
}

body.page--about .about-editorial-hero .eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 14px;
  margin: 0 0 clamp(4px, 0.8vw, 10px);
  color: #171717;
  font-family: var(--font-sans);
  font-size: clamp(0.78rem, 0.8vw, 0.88rem);
  font-weight: 600;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

body.page--about .about-editorial-hero .eyebrow::before {
  width: 28px;
  height: 2px;
  flex: 0 0 auto;
  background: var(--lime);
  content: "";
}

body.page--about .about-editorial-hero h1 {
  width: min(100%, 13.2ch);
  max-width: none;
  margin: 0;
  color: #171717;
  font-family: "Sora", var(--font-sans);
  font-size: clamp(3.1rem, 4.85vw, 5.65rem);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: 0;
  overflow-wrap: normal;
  text-wrap: balance;
}

body.page--about .about-editorial-hero p:not(.eyebrow) {
  max-width: 52ch;
  margin: 0;
  color: #5f5f5f;
  font-size: clamp(1rem, 1.08vw, 1.12rem);
  line-height: 1.72;
  text-wrap: pretty;
}

body.page--about .about-editorial-hero .page-actions {
  margin-top: clamp(2px, 0.8vw, 10px);
}

body.page--about .about-editorial-hero .page-actions .button {
  min-height: 52px;
  padding-inline: clamp(24px, 3vw, 42px);
  border-radius: 8px;
}

body.page--about .about-editorial-hero .page-hero__image {
  width: 100%;
  min-width: 0;
  min-height: 0;
  aspect-ratio: 456 / 300;
  align-self: center;
  overflow: hidden;
  border: 1px solid rgba(23, 23, 23, 0.13);
  border-radius: 10px;
  background: #d8ecfb;
  box-shadow: 0 18px 46px rgba(23, 23, 23, 0.08);
}

body.page--about .about-editorial-hero .page-hero__image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
}

@media (min-width: 1181px) {
  body.page--about .about-editorial-hero {
    padding-top: clamp(58px, 6vw, 86px);
    padding-bottom: clamp(58px, 6vw, 86px);
  }
}

@media (max-width: 1180px) {
  body.page--about .about-editorial-hero {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: clamp(34px, 5vw, 56px);
  }

  body.page--about .about-editorial-hero > .reveal:first-child {
    max-width: 720px;
  }

  body.page--about .about-editorial-hero h1 {
    width: min(100%, 15ch);
    font-size: clamp(3rem, 7vw, 5rem);
  }

  body.page--about .about-editorial-hero .page-hero__image {
    max-width: 760px;
  }
}

@media (max-width: 640px) {
  body.page--about .about-editorial-hero {
    width: min(100% - 28px, 1240px);
    max-width: calc(100vw - 28px);
    overflow: hidden;
    margin-top: 12px;
    padding: 30px 22px 24px;
    border-radius: 14px;
  }

  body.page--about .about-editorial-hero > .reveal:first-child,
  body.page--about .about-editorial-hero p:not(.eyebrow),
  body.page--about .about-editorial-hero .page-actions {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  body.page--about .about-editorial-hero h1 {
    width: 100%;
    max-width: 9.8ch;
    font-size: clamp(2.25rem, 10.8vw, 3rem);
    line-height: 1.06;
    overflow-wrap: break-word;
    text-wrap: wrap;
  }

  body.page--about .about-editorial-hero .page-hero__image {
    aspect-ratio: 4 / 3;
  }

  body.page--about .about-editorial-hero .page-actions,
  body.page--about .about-editorial-hero .page-actions .button {
    width: 100%;
  }

  body.page--about .about-editorial-hero .page-actions .button {
    overflow: hidden;
  }
}

/* About Us: full-width commercial page, scoped to avoid changing other internal pages. */
body.page--about {
  --about-accent: #efff1f;
  --about-ink: #171515;
  --about-muted: #625f5a;
  --about-paper: #ffffff;
  --about-line: rgba(23, 21, 21, 0.16);
  background: var(--about-paper);
  color: var(--about-ink);
}

body.page--about main {
  overflow: clip;
}

body.page--about .site-nav a[aria-current="page"] {
  color: #fff;
  opacity: 0.74;
}

body.page--about .site-header.scrolled .site-nav a[aria-current="page"] {
  color: #171717;
  opacity: 1;
}

body.page--about .about-shell {
  width: min(1380px, calc(100% - clamp(40px, 7vw, 128px)));
  margin-inline: auto;
}

body.page--about .about-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  color: var(--about-ink);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.page--about .about-kicker::before {
  width: 28px;
  height: 2px;
  flex: 0 0 auto;
  background: currentColor;
  content: "";
}

body.page--about .about-hero {
  position: relative;
  display: grid;
  min-height: 92svh;
  align-items: stretch;
  overflow: hidden;
  background: #080808;
  color: #fff;
}

body.page--about .about-hero__copy {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  gap: 22px;
  width: min(1380px, calc(100% - clamp(40px, 7vw, 128px)));
  margin-inline: auto;
  padding-block: clamp(130px, 16vh, 170px) clamp(44px, 6vh, 64px);
}

body.page--about .about-hero h1 {
  max-width: 11.5ch;
  margin: 0;
  color: #fff;
  font-family: "CHEDROS", var(--font-sans);
  font-size: clamp(3.8rem, 5.5vw, 6.6rem);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
}

body.page--about .about-hero .about-kicker {
  color: var(--about-accent);
}

body.page--about .about-hero h1 span {
  display: block;
  color: var(--about-accent);
}

body.page--about .about-hero__intro {
  max-width: 58ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1.05rem, 1.25vw, 1.28rem);
  line-height: 1.7;
}

body.page--about .about-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

body.page--about .about-actions .button,
body.page--about .about-cta .button {
  min-height: 56px;
  padding-inline: 30px;
  border-radius: 6px;
  border-color: var(--about-accent);
  background: var(--about-accent);
  box-shadow: none;
  color: #171717;
}

body.page--about .about-actions .button:hover,
body.page--about .about-actions .button:focus-visible,
body.page--about .about-cta .button:hover,
body.page--about .about-cta .button:focus-visible {
  background: #ddec00;
  color: #171717;
  transform: translateY(-2px);
}

body.page--about .about-text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 700;
}

body.page--about .about-text-link span {
  color: var(--about-accent);
  font-size: 1.35rem;
  transition: transform 180ms ease;
}

body.page--about .about-text-link:hover span,
body.page--about .about-text-link:focus-visible span {
  transform: translateY(4px);
}

body.page--about .about-hero__media {
  position: absolute;
  z-index: 0;
  inset: 0;
  min-height: 100%;
  overflow: hidden;
  background: #080808;
}

body.page--about .about-hero__media::before,
body.page--about .about-hero__media::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  pointer-events: none;
}

body.page--about .about-hero__media::before {
  background:
    linear-gradient(90deg, rgba(4, 4, 4, 0.98) 0%, rgba(4, 4, 4, 0.88) 32%, rgba(4, 4, 4, 0.22) 70%, rgba(4, 4, 4, 0.08) 100%),
    linear-gradient(0deg, rgba(4, 4, 4, 0.72) 0%, transparent 44%, rgba(4, 4, 4, 0.28) 100%);
}

body.page--about .about-hero__media::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.16), transparent 36%);
}

body.page--about .about-hero__media > img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100svh;
  object-fit: cover;
  object-position: center;
  filter: grayscale(1) contrast(1.08) brightness(0.72);
  transition: transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
}

body.page--about .about-hero__media:hover > img {
  transform: scale(1.025);
}

body.page--about .about-hero__caption {
  position: absolute;
  z-index: 1;
  right: clamp(32px, 5vw, 84px);
  bottom: clamp(30px, 4vw, 64px);
  display: grid;
  min-width: min(390px, calc(100% - 48px));
  gap: 8px;
  padding: 22px 24px;
  border-left: 3px solid var(--about-accent);
  background: rgba(7, 7, 7, 0.58);
  backdrop-filter: blur(10px);
}

body.page--about .about-hero__caption span {
  color: var(--about-accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.page--about .about-hero__caption strong {
  color: #fff;
  font-size: clamp(0.95rem, 1.1vw, 1.08rem);
}

body.page--about .about-proof {
  background: var(--about-ink);
  color: #fff;
}

body.page--about .about-proof__inner {
  display: grid;
  width: min(1380px, calc(100% - clamp(40px, 7vw, 128px)));
  margin-inline: auto;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

body.page--about .about-proof article {
  display: grid;
  min-height: 190px;
  align-content: center;
  gap: 8px;
  padding: 34px clamp(20px, 3vw, 44px);
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

body.page--about .about-proof article:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

body.page--about .about-proof article > span {
  color: var(--about-accent);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.page--about .about-proof strong {
  color: #fff;
  font-size: clamp(1.65rem, 2.3vw, 2.55rem);
  letter-spacing: 0;
}

body.page--about .about-proof p {
  max-width: 27ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem;
  line-height: 1.5;
}

body.page--about .about-difference {
  padding-block: clamp(92px, 10vw, 170px);
  background: #fff;
}

body.page--about .about-section-heading {
  display: grid;
  max-width: 980px;
  gap: 24px;
  margin-bottom: clamp(54px, 7vw, 96px);
}

body.page--about .about-section-heading h2,
body.page--about .about-role__heading h2,
body.page--about .about-cta h2 {
  margin: 0;
  color: var(--about-ink);
  font-family: var(--font-sans);
  font-size: clamp(3rem, 5.3vw, 6rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  text-wrap: balance;
}

body.page--about .about-section-heading > p:last-child {
  max-width: 70ch;
  margin: 0;
  color: var(--about-muted);
  font-size: clamp(1.02rem, 1.2vw, 1.2rem);
  line-height: 1.72;
}

body.page--about .about-difference__layout {
  display: grid;
  grid-template-columns: minmax(380px, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(50px, 7vw, 112px);
  align-items: stretch;
}

body.page--about .about-difference__media {
  position: relative;
  min-height: 690px;
  margin: 0;
  overflow: hidden;
  background: #d9d4d0;
}

body.page--about .about-difference__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 690px;
  object-fit: cover;
  object-position: center;
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

body.page--about .about-difference__media:hover img {
  transform: scale(1.025);
}

body.page--about .about-difference__media figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 22px 26px;
  background: rgba(23, 21, 21, 0.9);
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
  line-height: 1.55;
}

body.page--about .about-principles {
  display: grid;
  border-top: 1px solid var(--about-line);
}

body.page--about .about-principle {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: clamp(20px, 3vw, 42px);
  align-content: center;
  padding: clamp(34px, 4vw, 60px) 0;
  border-bottom: 1px solid var(--about-line);
  transition: padding-left 220ms ease, background 220ms ease;
}

body.page--about .about-principle:hover {
  padding-left: 18px;
  background: rgba(255, 255, 255, 0.42);
}

body.page--about .about-principle > span {
  color: var(--about-ink);
  font-size: 0.82rem;
  font-weight: 700;
}

body.page--about .about-principle h3 {
  margin: 0 0 14px;
  color: var(--about-ink);
  font-family: var(--font-sans);
  font-size: clamp(1.55rem, 2.2vw, 2.35rem);
  letter-spacing: 0;
}

body.page--about .about-principle p {
  max-width: 57ch;
  margin: 0;
  color: var(--about-muted);
  font-size: 1rem;
  line-height: 1.7;
}

body.page--about .about-role {
  padding-block: clamp(92px, 10vw, 160px);
  background: var(--about-ink);
  color: #fff;
}

body.page--about .about-role .about-kicker {
  color: var(--about-accent);
}

body.page--about .about-role__heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(310px, 0.55fr);
  gap: clamp(42px, 8vw, 124px);
  align-items: end;
  margin-bottom: clamp(58px, 7vw, 100px);
}

body.page--about .about-role__heading > div {
  display: grid;
  gap: 24px;
}

body.page--about .about-role__heading h2 {
  color: #fff;
}

body.page--about .about-role__heading > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: clamp(1rem, 1.15vw, 1.18rem);
  line-height: 1.75;
}

body.page--about .about-roadmap {
  display: grid;
  margin: 0 0 clamp(72px, 9vw, 130px);
  padding: 0;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

body.page--about .about-roadmap li {
  position: relative;
  min-height: 260px;
  padding: 34px clamp(18px, 2vw, 30px);
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  transition: background 220ms ease, transform 220ms ease;
}

body.page--about .about-roadmap li:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

body.page--about .about-roadmap li::before {
  position: absolute;
  top: -2px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--about-accent);
  content: "";
  transition: width 260ms ease;
}

body.page--about .about-roadmap li:hover {
  background: rgba(255, 255, 255, 0.045);
  transform: translateY(-6px);
}

body.page--about .about-roadmap li:hover::before {
  width: 100%;
}

body.page--about .about-roadmap span {
  display: block;
  margin-bottom: 54px;
  color: var(--about-accent);
  font-size: 0.76rem;
  font-weight: 700;
}

body.page--about .about-roadmap strong {
  display: block;
  margin-bottom: 14px;
  color: #fff;
  font-size: clamp(1.25rem, 1.8vw, 1.8rem);
}

body.page--about .about-roadmap p {
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.92rem;
  line-height: 1.6;
}

body.page--about .about-role__story {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.7fr);
  gap: clamp(52px, 8vw, 130px);
  align-items: center;
}

body.page--about .about-role__image {
  min-height: 500px;
  overflow: hidden;
}

body.page--about .about-role__image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
}

body.page--about .about-role blockquote {
  margin: 0;
}

body.page--about .about-role blockquote p {
  margin: 0;
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 3.4rem);
  font-weight: 600;
  line-height: 1.2;
  text-wrap: balance;
}

body.page--about .about-role blockquote footer {
  margin-top: 30px;
  color: var(--about-accent);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.page--about .about-cta {
  padding-block: clamp(88px, 10vw, 148px);
  border-bottom: 1px solid var(--about-line);
  background: #fff;
}

body.page--about .about-cta__inner {
  display: grid;
  width: min(1040px, calc(100% - clamp(40px, 7vw, 128px)));
  margin-inline: auto;
  justify-items: center;
  gap: 26px;
  text-align: center;
}

body.page--about .about-cta h2 {
  max-width: 13ch;
  font-size: clamp(3.1rem, 5.5vw, 6.3rem);
}

body.page--about .about-cta__inner > p:not(.about-kicker) {
  max-width: 68ch;
  margin: 0;
  color: var(--about-muted);
  font-size: clamp(1rem, 1.15vw, 1.18rem);
  line-height: 1.7;
}

body.page--about .site-footer {
  width: 100%;
  max-width: none;
  margin: 0;
  border-radius: 0;
}

@media (max-width: 1120px) {
  body.page--about .about-hero {
    min-height: 92svh;
  }

  body.page--about .about-hero__copy {
    padding-block: clamp(126px, 15vw, 152px) clamp(42px, 6vw, 60px);
  }

  body.page--about .about-hero h1 {
    max-width: 11.8ch;
    font-size: clamp(3.6rem, 7vw, 5.3rem);
  }

  body.page--about .about-hero__media > img {
    min-height: 100svh;
  }

  body.page--about .about-difference__layout,
  body.page--about .about-role__story {
    grid-template-columns: 1fr;
  }

  body.page--about .about-difference__media {
    min-height: 560px;
  }

  body.page--about .about-difference__media img {
    min-height: 560px;
  }

  body.page--about .about-roadmap {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  body.page--about .about-roadmap li:nth-child(4) {
    border-left: 1px solid rgba(255, 255, 255, 0.16);
  }
}

@media (max-width: 780px) {
  body.page--about .about-shell,
  body.page--about .about-proof__inner,
  body.page--about .about-cta__inner {
    width: min(100% - 32px, 1380px);
  }

  body.page--about .about-hero__copy {
    gap: 18px;
    width: min(100% - 40px, 1380px);
    padding: 112px 0 40px;
  }

  body.page--about .about-hero {
    min-height: 0;
  }

  body.page--about .about-hero h1 {
    max-width: 9.5ch;
    font-size: clamp(3.2rem, 14vw, 5rem);
    line-height: 0.96;
  }

  body.page--about .about-actions {
    display: grid;
    align-items: stretch;
  }

  body.page--about .about-actions .button {
    width: 100%;
  }

  body.page--about .about-hero__media > img {
    min-height: 100svh;
    object-position: 62% center;
  }

  body.page--about .about-hero__caption {
    display: none;
  }

  body.page--about .about-proof__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.page--about .about-proof article {
    min-height: 165px;
    padding: 28px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  body.page--about .about-proof article:nth-child(odd) {
    border-left: 1px solid rgba(255, 255, 255, 0.14);
  }

  body.page--about .about-section-heading h2,
  body.page--about .about-role__heading h2,
  body.page--about .about-cta h2 {
    font-size: clamp(2.6rem, 12vw, 4.2rem);
  }

  body.page--about .about-difference__media,
  body.page--about .about-difference__media img {
    min-height: 440px;
  }

  body.page--about .about-principle {
    grid-template-columns: 40px minmax(0, 1fr);
  }

  body.page--about .about-role__heading {
    grid-template-columns: 1fr;
    align-items: start;
  }

  body.page--about .about-roadmap {
    grid-template-columns: 1fr;
  }

  body.page--about .about-roadmap li {
    min-height: 0;
    padding: 28px 20px;
    border-left: 1px solid rgba(255, 255, 255, 0.16);
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  body.page--about .about-roadmap span {
    margin-bottom: 28px;
  }

  body.page--about .about-role__story {
    grid-template-columns: 1fr;
  }

  body.page--about .about-role__image,
  body.page--about .about-role__image img {
    min-height: 380px;
  }
}

@media (max-width: 520px) {
  body.page--about .about-proof__inner {
    grid-template-columns: 1fr;
  }

  body.page--about .about-proof article,
  body.page--about .about-proof article:last-child {
    min-height: 145px;
    border-right: 1px solid rgba(255, 255, 255, 0.14);
  }

  body.page--about .about-difference__media,
  body.page--about .about-difference__media img {
    min-height: 360px;
  }

  body.page--about .about-principle:hover {
    padding-left: 0;
  }

  body.page--about .about-role__image,
  body.page--about .about-role__image img {
    min-height: 320px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.page--about .about-hero__media > img,
  body.page--about .about-difference__media img,
  body.page--about .about-principle,
  body.page--about .about-roadmap li {
    transition: none;
  }
}

/* Team: full-width commercial page using the same system as the homepage and About page. */
body.page--team {
  --team-accent: #efff1f;
  --team-ink: #171515;
  --team-muted: #625f5a;
  --team-paper: #f4f3f1;
  --team-line: rgba(23, 21, 21, 0.16);
  background: #ffffff;
  color: var(--team-ink);
}

body.page--team main {
  overflow: clip;
}

body.page--team .site-nav a[aria-current="page"] {
  color: var(--team-accent);
}

body.page--team .site-header.scrolled .site-nav a[aria-current="page"] {
  color: #111111;
}

body.page--team .team-shell {
  width: min(1380px, calc(100% - clamp(40px, 7vw, 128px)));
  margin-inline: auto;
}

body.page--team .team-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  color: var(--team-ink);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.page--team .team-kicker::before {
  width: 28px;
  height: 2px;
  flex: 0 0 auto;
  background: currentColor;
  content: "";
}

body.page--team .team-hero {
  position: relative;
  display: grid;
  min-height: 92svh;
  align-items: stretch;
  overflow: hidden;
  background: #080808;
  color: #ffffff;
}

body.page--team .team-hero__copy {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(1380px, calc(100% - clamp(40px, 7vw, 128px)));
  margin-inline: auto;
  padding-block: clamp(130px, 16vh, 170px) clamp(44px, 6vh, 64px);
  align-content: center;
  gap: 22px;
}

body.page--team .team-hero .team-kicker {
  color: var(--team-accent);
}

body.page--team .team-hero h1 {
  max-width: 10ch;
  margin: 0;
  color: #ffffff;
  font-family: "CHEDROS", var(--font-sans);
  font-size: clamp(3.8rem, 5.5vw, 6.6rem);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: 0;
  text-transform: uppercase;
  text-wrap: balance;
}

body.page--team .team-hero h1 span {
  color: var(--team-accent);
}

body.page--team .team-hero__intro {
  max-width: 57ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(1.05rem, 1.25vw, 1.28rem);
  line-height: 1.7;
}

body.page--team .team-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

body.page--team .team-actions .button,
body.page--team .team-cta .button {
  min-height: 56px;
  padding-inline: 30px;
  border: 1px solid var(--team-accent);
  border-radius: 6px;
  background: var(--team-accent);
  box-shadow: none;
  color: #171717;
}

body.page--team .team-actions .button:hover,
body.page--team .team-actions .button:focus-visible,
body.page--team .team-cta .button:hover,
body.page--team .team-cta .button:focus-visible {
  background: #ddec00;
  color: #171717;
  transform: translateY(-2px);
}

body.page--team .team-text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-weight: 700;
}

body.page--team .team-text-link span {
  color: var(--team-accent);
  font-size: 1.35rem;
  transition: transform 180ms ease;
}

body.page--team .team-text-link:hover span,
body.page--team .team-text-link:focus-visible span {
  transform: translateY(4px);
}

body.page--team .team-hero__media {
  position: absolute;
  z-index: 0;
  inset: 0;
  min-height: 100%;
  overflow: hidden;
  background: #080808;
}

body.page--team .team-hero__media::before,
body.page--team .team-hero__media::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  pointer-events: none;
}

body.page--team .team-hero__media::before {
  background:
    linear-gradient(90deg, rgba(4, 4, 4, 0.98) 0%, rgba(4, 4, 4, 0.92) 31%, rgba(4, 4, 4, 0.34) 58%, rgba(4, 4, 4, 0.08) 100%),
    linear-gradient(0deg, rgba(4, 4, 4, 0.78) 0%, transparent 46%, rgba(4, 4, 4, 0.24) 100%);
}

body.page--team .team-hero__media::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.16), transparent 36%);
}

body.page--team .team-hero__media > img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100svh;
  object-fit: cover;
  object-position: center;
  filter: grayscale(1) contrast(1.08) brightness(0.74);
  transform: scale(1.01);
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1), filter 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

body.page--team .team-hero__media:hover > img {
  filter: grayscale(0.72) contrast(1.08) brightness(0.76);
  transform: scale(1.025);
}

body.page--team .team-hero__caption {
  position: absolute;
  z-index: 2;
  right: clamp(32px, 5vw, 84px);
  bottom: clamp(30px, 4vw, 64px);
  display: grid;
  min-width: min(430px, calc(100% - 48px));
  gap: 8px;
  padding: 22px 24px;
  border-left: 3px solid var(--team-accent);
  background: rgba(7, 7, 7, 0.62);
  backdrop-filter: blur(10px);
}

body.page--team .team-hero__caption span {
  color: var(--team-accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.page--team .team-hero__caption strong {
  color: #ffffff;
  font-size: clamp(0.95rem, 1.1vw, 1.08rem);
}

body.page--team .team-proof {
  background: var(--team-ink);
  color: #ffffff;
}

body.page--team .team-proof__inner {
  display: grid;
  width: min(1380px, calc(100% - clamp(40px, 7vw, 128px)));
  margin-inline: auto;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

body.page--team .team-proof article {
  display: grid;
  min-height: 190px;
  padding: 34px clamp(20px, 3vw, 44px);
  align-content: center;
  gap: 8px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

body.page--team .team-proof article:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

body.page--team .team-proof article > span {
  color: var(--team-accent);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.page--team .team-proof strong {
  color: #ffffff;
  font-size: clamp(1.65rem, 2.3vw, 2.55rem);
  letter-spacing: 0;
}

body.page--team .team-proof p {
  max-width: 29ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.92rem;
  line-height: 1.5;
}

body.page--team .team-page-directory.team-directory-section {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: clamp(92px, 10vw, 170px) 0 clamp(100px, 11vw, 180px);
  overflow: clip;
  background: #ffffff;
}

body.page--team .team-page-directory .team-shell {
  width: min(1920px, calc(100% - clamp(48px, 5vw, 104px)));
}

body.page--team .team-page-directory::before {
  content: none;
}

body.page--team .team-directory-head--editorial {
  display: grid;
  width: 100%;
  max-width: 1060px;
  margin: 0 0 clamp(58px, 7vw, 104px);
  justify-items: start;
  gap: 22px;
  text-align: left;
}

body.page--team .team-directory-head--editorial h2,
body.page--team .team-collaboration__heading h2,
body.page--team .team-cta h2 {
  margin: 0;
  color: var(--team-ink);
  font-family: var(--font-sans);
  font-size: clamp(3rem, 5.3vw, 6rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  text-wrap: balance;
}

body.page--team .team-directory-head--editorial > p:not(.team-kicker) {
  max-width: 72ch;
  margin: 0;
  color: var(--team-muted);
  font-size: clamp(1.02rem, 1.2vw, 1.2rem);
  line-height: 1.72;
}

body.page--team .team-page-directory .team-directory-grid {
  display: grid;
  width: 100%;
  margin: 0;
  padding: clamp(46px, 5vw, 88px) 0 clamp(32px, 4vw, 68px);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 1.7vw, 32px);
  align-items: start;
}

body.page--team .team-directory-column {
  display: grid;
  min-width: 0;
  gap: clamp(18px, 1.7vw, 32px);
  padding-top: var(--team-column-start, 0);
  transform: translate3d(0, var(--team-column-shift, 0), 0);
  will-change: transform;
}

body.page--team .team-directory-column:nth-child(1),
body.page--team .team-directory-column:nth-child(3) {
  --team-column-start: clamp(96px, 10vw, 210px);
}

body.page--team .team-directory-column:nth-child(2),
body.page--team .team-directory-column:nth-child(4) {
  --team-column-start: 0px;
}

body.page--team .team-page-directory .team-directory-card {
  position: relative;
  min-width: 0;
  padding: 0;
  overflow: visible;
  order: var(--team-card-order);
  border: 0;
  border-radius: 8px;
  background: transparent;
  box-shadow: none;
  transform: translateY(34px);
  transition:
    opacity 0.82s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.82s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 220ms ease;
  transition-delay: var(--team-card-delay, 0ms);
}

body.page--team .team-page-directory .team-directory-card.visible {
  transform: translateY(0);
}

body.page--team .team-page-directory .team-directory-card:hover,
body.page--team .team-page-directory .team-directory-card:focus-within {
  transform: translateY(-8px);
}

body.page--team .team-page-directory .team-directory-card figure {
  position: relative;
  display: block;
  margin: 0;
}

body.page--team .team-directory-media {
  position: relative;
  display: block;
  aspect-ratio: 57 / 70;
  overflow: hidden;
  border: 1px solid rgba(23, 21, 21, 0.12);
  border-radius: 8px;
  background: #e5e8e5;
  box-shadow: 0 8px 24px rgba(17, 17, 17, 0.045);
  transition: border-color 220ms ease, box-shadow 220ms ease;
}

body.page--team .team-directory-media img,
body.page--team .team-directory-media video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

body.page--team .team-directory-media > img:first-child {
  transform: scale(1.02);
  transform-origin: center center;
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1), filter 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

body.page--team .team-directory-hover-media {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.015);
  transition: opacity 340ms ease;
  pointer-events: none;
}

body.page--team .team-page-directory .team-directory-card figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 2;
  display: flex;
  min-height: 0;
  padding: 5px;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(23, 21, 21, 0.14);
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(17, 17, 17, 0.08);
}

body.page--team .team-page-directory .team-directory-card strong {
  display: inline-flex;
  min-height: 34px;
  padding: 7px 12px;
  align-items: center;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--team-ink);
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: clamp(0.78rem, 0.76vw, 0.9rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

body.page--team .team-page-directory .team-directory-card span:not(.team-directory-media) {
  display: block;
  min-width: 0;
  max-width: none;
  color: rgba(17, 17, 17, 0.72);
  font-family: var(--font-sans);
  font-size: clamp(0.68rem, 0.66vw, 0.8rem);
  font-weight: 500;
  line-height: 1.15;
}

body.page--team .team-collaboration {
  padding-block: clamp(92px, 10vw, 160px);
  background: var(--team-ink);
  color: #ffffff;
}

body.page--team .team-collaboration .team-kicker {
  color: var(--team-accent);
}

body.page--team .team-collaboration__heading {
  display: grid;
  margin-bottom: clamp(58px, 7vw, 100px);
  grid-template-columns: minmax(0, 1.2fr) minmax(310px, 0.55fr);
  align-items: end;
  gap: clamp(42px, 8vw, 124px);
}

body.page--team .team-collaboration__heading > div {
  display: grid;
  gap: 24px;
}

body.page--team .team-collaboration__heading h2 {
  color: #ffffff;
}

body.page--team .team-collaboration__heading > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: clamp(1rem, 1.15vw, 1.18rem);
  line-height: 1.75;
}

body.page--team .team-collaboration__grid {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

body.page--team .team-collaboration__grid li {
  position: relative;
  min-height: 300px;
  padding: 34px clamp(18px, 2vw, 30px);
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  transition: background 220ms ease, transform 220ms ease;
}

body.page--team .team-collaboration__grid li:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

body.page--team .team-collaboration__grid li::before {
  position: absolute;
  top: -2px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--team-accent);
  content: "";
  transition: width 260ms ease;
}

body.page--team .team-collaboration__grid li:hover {
  background: rgba(255, 255, 255, 0.045);
  transform: translateY(-6px);
}

body.page--team .team-collaboration__grid li:hover::before {
  width: 100%;
}

body.page--team .team-collaboration__grid span {
  display: block;
  margin-bottom: 64px;
  color: var(--team-accent);
  font-size: 0.76rem;
  font-weight: 700;
}

body.page--team .team-collaboration__grid strong {
  display: block;
  margin-bottom: 16px;
  color: #ffffff;
  font-size: clamp(1.3rem, 1.8vw, 1.9rem);
}

body.page--team .team-collaboration__grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.94rem;
  line-height: 1.65;
}

body.page--team .team-cta {
  padding-block: clamp(88px, 10vw, 148px);
  border-bottom: 1px solid var(--team-line);
  background: #ffffff;
}

body.page--team .team-cta__inner {
  display: grid;
  width: min(1080px, calc(100% - clamp(40px, 7vw, 128px)));
  margin-inline: auto;
  justify-items: center;
  gap: 26px;
  text-align: center;
}

body.page--team .team-cta h2 {
  max-width: 15ch;
  font-size: clamp(3.1rem, 5.5vw, 6.3rem);
}

body.page--team .team-cta__inner > p:not(.team-kicker) {
  max-width: 68ch;
  margin: 0;
  color: var(--team-muted);
  font-size: clamp(1rem, 1.15vw, 1.18rem);
  line-height: 1.7;
}

body.page--team .site-footer {
  width: 100%;
  max-width: none;
  margin: 0;
  border-radius: 0;
}

@media (hover: hover) and (pointer: fine) {
  body.page--team .team-page-directory .team-directory-card:hover .team-directory-media,
  body.page--team .team-page-directory .team-directory-card:focus-within .team-directory-media {
    border-color: rgba(23, 21, 21, 0.3);
    box-shadow: 0 24px 54px rgba(17, 17, 17, 0.13);
  }

  body.page--team .team-page-directory .team-directory-card:hover .team-directory-media > img:first-child,
  body.page--team .team-page-directory .team-directory-card:focus-within .team-directory-media > img:first-child {
    filter: saturate(1.04) contrast(1.03);
    transform: scale(1.075);
  }

  body.page--team .team-page-directory .team-directory-card:hover .team-directory-hover-media,
  body.page--team .team-page-directory .team-directory-card:focus-within .team-directory-hover-media {
    opacity: 1;
  }
}

@media (max-width: 1120px) {
  body.page--team .team-hero__copy {
    padding-block: clamp(126px, 15vw, 152px) clamp(42px, 6vw, 60px);
  }

  body.page--team .team-hero h1 {
    max-width: 10.4ch;
    font-size: clamp(3.6rem, 7vw, 5.3rem);
  }

  body.page--team .team-page-directory .team-directory-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(18px, 3vw, 30px);
  }

  body.page--team .team-directory-column {
    display: contents;
    transform: none;
  }

  body.page--team .team-collaboration__heading {
    grid-template-columns: 1fr;
    align-items: start;
  }

  body.page--team .team-collaboration__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.page--team .team-collaboration__grid li:nth-child(3) {
    border-left: 1px solid rgba(255, 255, 255, 0.16);
  }
}

@media (max-width: 780px) {
  body.page--team .team-shell,
  body.page--team .team-proof__inner,
  body.page--team .team-cta__inner {
    width: min(100% - 32px, 1380px);
  }

  body.page--team .team-page-directory .team-shell {
    width: min(100% - 32px, 1920px);
  }

  body.page--team .team-hero {
    min-height: 0;
  }

  body.page--team .team-hero__copy {
    width: min(100% - 40px, 1380px);
    padding: 112px 0 42px;
    gap: 18px;
  }

  body.page--team .team-hero h1 {
    max-width: 9.4ch;
    font-size: clamp(3.15rem, 14vw, 5rem);
    line-height: 0.96;
  }

  body.page--team .team-actions {
    display: grid;
    align-items: stretch;
  }

  body.page--team .team-actions .button {
    width: 100%;
  }

  body.page--team .team-hero__media > img {
    min-height: 100svh;
    object-position: 54% center;
  }

  body.page--team .team-hero__media::before {
    background:
      linear-gradient(90deg, rgba(4, 4, 4, 0.91), rgba(4, 4, 4, 0.45)),
      linear-gradient(0deg, rgba(4, 4, 4, 0.86) 0%, rgba(4, 4, 4, 0.28) 62%, rgba(4, 4, 4, 0.5) 100%);
  }

  body.page--team .team-hero__caption {
    display: none;
  }

  body.page--team .team-proof__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.page--team .team-proof article {
    min-height: 165px;
    padding: 28px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  body.page--team .team-proof article:nth-child(odd) {
    border-left: 1px solid rgba(255, 255, 255, 0.14);
  }

  body.page--team .team-directory-head--editorial h2,
  body.page--team .team-collaboration__heading h2,
  body.page--team .team-cta h2 {
    font-size: clamp(2.6rem, 12vw, 4.2rem);
  }

  body.page--team .team-page-directory .team-directory-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 16px;
  }

  body.page--team .team-page-directory .team-directory-card figcaption {
    right: 8px;
    bottom: 8px;
    left: 8px;
  }

  body.page--team .team-collaboration__grid {
    grid-template-columns: 1fr;
  }

  body.page--team .team-collaboration__grid li {
    min-height: 0;
    padding: 28px 20px;
    border-left: 1px solid rgba(255, 255, 255, 0.16);
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  body.page--team .team-collaboration__grid span {
    margin-bottom: 28px;
  }
}

@media (max-width: 520px) {
  body.page--team .team-proof__inner {
    grid-template-columns: 1fr;
  }

  body.page--team .team-proof article,
  body.page--team .team-proof article:last-child {
    min-height: 145px;
    border-right: 1px solid rgba(255, 255, 255, 0.14);
  }

  body.page--team .team-page-directory .team-directory-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  body.page--team .team-directory-media {
    aspect-ratio: 4 / 4.8;
  }

  body.page--team .team-page-directory .team-directory-card figcaption {
    right: 12px;
    bottom: 12px;
    left: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.page--team .team-hero__media > img,
  body.page--team .team-page-directory .team-directory-card,
  body.page--team .team-directory-media > img:first-child,
  body.page--team .team-directory-hover-media,
  body.page--team .team-collaboration__grid li {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Keep breathing room between the team progress marker and the client showcase. */
.home-page .team-motion-progress {
  transform: translate(-50%, 10px);
}

/* Full-width client showcase: edge-to-edge section with a structured logo field. */
.client-showcase-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: 10px;
  padding: clamp(88px, 8vw, 136px) 0 0;
  border: 0;
  background: #ffffff;
}

.client-showcase-copy {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(360px, 0.92fr);
  align-items: end;
  width: min(1380px, 100%);
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
  gap: clamp(36px, 8vw, 132px);
}

.client-showcase-copy > div {
  display: grid;
  gap: 14px;
}

.client-showcase-copy .eyebrow {
  margin: 0;
  color: #171717;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.client-showcase-copy h2 {
  max-width: 8ch;
  margin: 0;
  color: #171717;
  font-family: "CHEDROS", var(--font-sans);
  font-size: clamp(3.4rem, 6.2vw, 6.9rem);
  font-weight: 700;
  line-height: 0.88;
  letter-spacing: 0;
}

.client-showcase-copy > p {
  max-width: 690px;
  margin: 0 0 0.38rem;
  color: rgba(23, 23, 23, 0.64);
  font-size: clamp(1rem, 1.1vw, 1.15rem);
  line-height: 1.68;
  text-wrap: pretty;
}

.client-logo-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  width: 100%;
  margin-top: clamp(64px, 7vw, 112px);
  padding: clamp(34px, 4vw, 62px) clamp(20px, 3vw, 52px) clamp(58px, 6vw, 92px);
  gap: clamp(18px, 2vw, 36px);
  background: #f7f7f5;
}

.client-logo-cell {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: clamp(180px, 16vw, 250px);
  margin: 0;
  place-items: center;
  padding: clamp(24px, 2.5vw, 44px) clamp(12px, 1.6vw, 28px);
  border: 0;
  background: transparent;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: calc(var(--client-index, 0) * 55ms);
}

.client-logo-cell::before {
  content: none;
}

.client-logo-cell img {
  display: block;
  width: min(88%, 235px);
  max-height: 104px;
  object-fit: contain;
  filter: grayscale(1) contrast(1.08) opacity(0.84);
  transform: translateZ(0);
  transition:
    filter 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.client-logo-cell--wide img {
  width: min(96%, 255px);
}

.client-logo-cell--alpha img {
  width: min(76%, 190px);
  max-height: 126px;
}

.client-logo-cell--soft img {
  filter: grayscale(1) brightness(0.56) contrast(1.2) opacity(0.88);
}

.client-logo-cell--tall img {
  width: min(58%, 130px);
  max-height: 138px;
}

@media (hover: hover) and (pointer: fine) {
  .client-logo-cell:hover img {
    filter: grayscale(0) contrast(1) opacity(1);
    transform: translate3d(0, -4px, 0) scale(1.035);
  }
}

@media (max-width: 1100px) {
  .client-logo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .client-showcase-section {
    padding-top: clamp(68px, 11vw, 92px);
  }

  .client-showcase-copy {
    grid-template-columns: 1fr;
    align-items: start;
    padding-inline: clamp(20px, 6vw, 48px);
    gap: 28px;
  }

  .client-showcase-copy h2 {
    max-width: 9ch;
    font-size: clamp(3.2rem, 11vw, 5.5rem);
  }

  .client-showcase-copy > p {
    max-width: 650px;
  }

  .client-logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: clamp(50px, 9vw, 76px);
    padding-inline: clamp(16px, 4vw, 32px);
  }

  .client-logo-cell {
    min-height: clamp(175px, 32vw, 250px);
    padding: clamp(24px, 5vw, 42px);
  }
}

@media (max-width: 520px) {
  .client-showcase-copy h2 {
    max-width: 8ch;
    font-size: clamp(3rem, 15vw, 4.4rem);
  }

  .client-showcase-copy > p {
    font-size: 0.96rem;
    line-height: 1.62;
  }

  .client-logo-cell {
    min-height: 148px;
    padding: 22px 10px;
  }

  .client-logo-cell img {
    width: min(90%, 180px);
    max-height: 78px;
  }

  .client-logo-cell--wide img {
    width: min(96%, 190px);
  }

  .client-logo-cell--alpha img {
    width: min(78%, 145px);
    max-height: 96px;
  }

  .client-logo-cell--tall img {
    width: min(52%, 92px);
    max-height: 104px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .client-logo-cell,
  .client-logo-cell::before,
  .client-logo-cell img {
    transition: none;
  }
}

/* Shared manufacturing navigation and format pages. */
.manufacturing-nav {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.manufacturing-nav__toggle {
  display: grid;
  width: 24px;
  height: 40px;
  place-items: center;
  margin-left: -3px;
  padding: 0;
  border: 0;
  background: transparent;
  color: currentColor;
  cursor: pointer;
}

.manufacturing-nav__toggle span {
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 180ms ease;
}

.manufacturing-nav.is-open .manufacturing-nav__toggle span {
  transform: translateY(2px) rotate(225deg);
}

.manufacturing-mega {
  position: fixed;
  top: 124px;
  left: 50%;
  z-index: 80;
  width: min(calc(100vw - 32px), 1480px);
  padding: clamp(22px, 2.4vw, 34px);
  border: 1px solid rgba(18, 18, 18, 0.14);
  border-radius: 14px;
  background:
    linear-gradient(rgba(18, 18, 18, 0.038) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 18, 18, 0.038) 1px, transparent 1px),
    rgba(248, 247, 244, 0.985);
  background-size: 44px 44px, 44px 44px, auto;
  box-shadow: 0 28px 70px rgba(9, 9, 9, 0.18);
  color: #171717;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -10px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  visibility: hidden;
}

.manufacturing-nav.is-open .manufacturing-mega {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
  visibility: visible;
}

.manufacturing-mega__topline {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 22px;
}

.manufacturing-mega__topline > div {
  display: grid;
  gap: 7px;
}

.manufacturing-mega__topline > div > span {
  color: #d90416;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.manufacturing-mega__topline > div > strong {
  max-width: 26ch;
  font-size: clamp(1.35rem, 2vw, 2.1rem);
  line-height: 1.02;
}

.site-nav .manufacturing-mega__topline > a {
  display: inline-flex;
  min-height: 42px;
  gap: 12px;
  align-items: center;
  padding: 0;
  border: 0;
  color: #171717;
  font-size: 0.88rem;
  font-weight: 650;
}

.site-nav .manufacturing-mega__topline > a:hover,
.site-nav .manufacturing-mega__topline > a:focus-visible {
  background: transparent;
  color: #d90416;
}

.manufacturing-mega__topline > a span {
  font-size: 1.25rem;
}

.manufacturing-mega__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid rgba(18, 18, 18, 0.13);
  border-bottom: 1px solid rgba(18, 18, 18, 0.13);
}

.site-nav .manufacturing-mega__item {
  display: grid;
  min-width: 0;
  min-height: 300px;
  grid-template-rows: 168px 1fr;
  gap: 0;
  padding: 14px;
  border: 0;
  border-right: 1px solid rgba(18, 18, 18, 0.13);
  border-radius: 0;
  background: transparent;
  color: #171717;
  transform: none;
  transition: background 180ms ease, color 180ms ease;
}

.site-nav .manufacturing-mega__item:last-child {
  border-right: 0;
}

.site-nav .manufacturing-mega__item:hover,
.site-nav .manufacturing-mega__item:focus-visible {
  background: #171717;
  color: #fff;
  transform: none;
}

.manufacturing-mega__image {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 6px;
}

.manufacturing-mega__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 360ms ease;
}

.manufacturing-mega__item:hover .manufacturing-mega__image img,
.manufacturing-mega__item:focus-visible .manufacturing-mega__image img {
  transform: scale(1.045);
}

.manufacturing-mega__image b {
  position: absolute;
  top: 10px;
  left: 10px;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 999px;
  background: #efff1f;
  color: #171717;
  font-size: 0.68rem;
}

.manufacturing-mega__copy {
  position: relative;
  display: grid;
  min-width: 0;
  gap: 7px;
  align-content: start;
  padding: 17px 34px 4px 2px;
}

.manufacturing-mega__copy strong {
  font-size: clamp(0.92rem, 1.05vw, 1.08rem);
  line-height: 1.12;
}

.manufacturing-mega__copy small {
  color: #686868;
  font-size: 0.74rem;
  line-height: 1.35;
}

.manufacturing-mega__item:hover small,
.manufacturing-mega__item:focus-visible small {
  color: rgba(255, 255, 255, 0.68);
}

.manufacturing-mega__copy i {
  position: absolute;
  top: 15px;
  right: 2px;
  font-size: 1.2rem;
  font-style: normal;
}

body.manufacturing-page {
  --manufacturing-bg: #ffffff;
  background: #ffffff;
  background-image: none;
  background-size: auto;
  background-attachment: scroll;
  color: #171717;
}

body.manufacturing-page .site-header {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(10, 13, 11, 0.76);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.16);
}

body.manufacturing-page .site-header.scrolled {
  background: rgba(10, 13, 11, 0.92);
}

body.manufacturing-page .site-nav > a,
body.manufacturing-page .manufacturing-nav > a,
body.manufacturing-page .manufacturing-nav__toggle {
  color: #fff;
}

body.manufacturing-page .site-nav > a:hover,
body.manufacturing-page .site-nav > a:focus-visible,
body.manufacturing-page .site-nav > a[aria-current="page"],
body.manufacturing-page .manufacturing-nav > a:hover,
body.manufacturing-page .manufacturing-nav > a:focus-visible,
body.manufacturing-page .manufacturing-nav > a[aria-current="page"] {
  color: #efff1f;
}

.manufacturing-main {
  overflow: clip;
  background: #ffffff;
}

.manufacturing-hero {
  position: relative;
  display: grid;
  min-height: min(850px, 100dvh);
  align-items: end;
  isolation: isolate;
}

.manufacturing-hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.manufacturing-hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(6, 8, 7, 0.92) 0%, rgba(6, 8, 7, 0.66) 48%, rgba(6, 8, 7, 0.16) 82%),
    linear-gradient(0deg, rgba(6, 8, 7, 0.64), transparent 55%);
  content: "";
}

.manufacturing-hero__inner {
  display: grid;
  width: min(100% - clamp(36px, 7vw, 120px), 1420px);
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.44fr);
  gap: clamp(40px, 8vw, 136px);
  align-items: end;
  margin-inline: auto;
  padding: clamp(190px, 20vh, 250px) 0 clamp(70px, 8vw, 118px);
  color: #fff;
}

.manufacturing-hero__copy {
  display: grid;
  gap: 22px;
}

.manufacturing-kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0;
  color: #efff1f;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.manufacturing-kicker::before {
  width: 34px;
  height: 1px;
  background: currentColor;
  content: "";
}

.manufacturing-hero h1 {
  max-width: 11.5ch;
  margin: 0;
  color: #fff;
  font-size: clamp(3.5rem, 6.6vw, 7.15rem);
  line-height: 0.9;
  letter-spacing: 0;
  text-wrap: balance;
}

.manufacturing-hero__lead {
  max-width: 56ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.3vw, 1.24rem);
  line-height: 1.62;
}

.manufacturing-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}

.manufacturing-hero__actions .button {
  min-height: 54px;
  border-color: #efff1f;
  background: #efff1f;
  color: #171717;
}

.manufacturing-hero__actions .button.secondary {
  border-color: rgba(255, 255, 255, 0.35);
  background: transparent;
  color: #fff;
}

.manufacturing-hero__proof {
  display: grid;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.manufacturing-hero__proof div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.manufacturing-hero__proof span {
  color: #efff1f;
  font-size: 0.75rem;
  font-weight: 700;
}

.manufacturing-hero__proof strong {
  color: #fff;
  font-size: clamp(0.95rem, 1.15vw, 1.12rem);
  line-height: 1.3;
}

.format-switcher {
  position: relative;
  z-index: 3;
  display: grid;
  width: min(100% - clamp(28px, 5vw, 80px), 1380px);
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: -28px auto 0;
  border: 1px solid rgba(23, 23, 23, 0.14);
  border-radius: 8px;
  background: rgba(248, 247, 244, 0.96);
  box-shadow: 0 18px 44px rgba(23, 23, 23, 0.09);
  overflow: hidden;
}

.format-switcher a {
  display: grid;
  min-height: 78px;
  gap: 5px;
  align-content: center;
  padding: 14px clamp(12px, 1.6vw, 24px);
  border-right: 1px solid rgba(23, 23, 23, 0.13);
  color: #171717;
}

.format-switcher a:last-child {
  border-right: 0;
}

.format-switcher a:hover,
.format-switcher a:focus-visible,
.format-switcher a[aria-current="page"] {
  background: #171717;
  color: #fff;
}

.format-switcher small {
  color: #d90416;
  font-size: 0.66rem;
  font-weight: 700;
}

.format-switcher strong {
  font-size: 0.94rem;
}

.manufacturing-section {
  width: min(100% - clamp(36px, 7vw, 120px), 1280px);
  margin-inline: auto;
  padding-block: clamp(86px, 9vw, 148px);
}

.manufacturing-section--tight {
  padding-top: clamp(60px, 6vw, 96px);
}

.manufacturing-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.5fr);
  gap: clamp(52px, 9vw, 150px);
  align-items: start;
}

.manufacturing-section__heading {
  display: grid;
  gap: 18px;
}

.manufacturing-section__heading .manufacturing-kicker {
  color: #d90416;
}

.manufacturing-section__heading h2 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(3rem, 5.8vw, 6.2rem);
  line-height: 0.94;
  letter-spacing: 0;
  text-wrap: balance;
}

.manufacturing-section__heading p:not(.manufacturing-kicker) {
  max-width: 59ch;
  margin: 0;
  color: #626262;
  font-size: clamp(1rem, 1.18vw, 1.16rem);
  line-height: 1.72;
}

.manufacturing-intro__list {
  display: grid;
  border-top: 1px solid rgba(23, 23, 23, 0.18);
}

.manufacturing-intro__list div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(23, 23, 23, 0.18);
}

.manufacturing-intro__list span {
  color: #d90416;
  font-size: 0.72rem;
  font-weight: 700;
}

.manufacturing-intro__list strong {
  font-size: clamp(1rem, 1.35vw, 1.28rem);
  line-height: 1.28;
}

.manufacturing-capabilities {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(46px, 6vw, 82px);
  border-top: 1px solid rgba(23, 23, 23, 0.16);
  border-left: 1px solid rgba(23, 23, 23, 0.16);
}

.manufacturing-capability {
  display: grid;
  min-height: 248px;
  gap: 28px;
  align-content: space-between;
  padding: clamp(24px, 3vw, 40px);
  border-right: 1px solid rgba(23, 23, 23, 0.16);
  border-bottom: 1px solid rgba(23, 23, 23, 0.16);
  background: rgba(255, 255, 255, 0.5);
}

.manufacturing-capability span {
  color: #d90416;
  font-size: 0.72rem;
  font-weight: 700;
}

.manufacturing-capability h3 {
  max-width: 15ch;
  margin: 0;
  font-size: clamp(1.45rem, 2vw, 2.05rem);
  line-height: 1.04;
}

.manufacturing-capability p {
  max-width: 32ch;
  margin: 10px 0 0;
  color: #656565;
  line-height: 1.6;
}

.manufacturing-process-band {
  width: 100%;
  padding: clamp(88px, 9vw, 144px) max(clamp(36px, 7vw, 120px), calc((100vw - 1280px) / 2));
  background: #171717;
  color: #fff;
}

.manufacturing-process-band .manufacturing-section__heading h2 {
  color: #fff;
}

.manufacturing-process-band .manufacturing-section__heading p:not(.manufacturing-kicker) {
  color: rgba(255, 255, 255, 0.62);
}

.manufacturing-process {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin-top: clamp(54px, 6vw, 84px);
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.manufacturing-process article {
  position: relative;
  display: grid;
  min-height: 256px;
  gap: 24px;
  align-content: start;
  padding: 28px 22px 24px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.17);
}

.manufacturing-process article + article {
  padding-left: 22px;
}

.manufacturing-process article:last-child {
  border-right: 0;
}

.manufacturing-process span {
  color: #efff1f;
  font-size: 0.72rem;
  font-weight: 700;
}

.manufacturing-process h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.15rem, 1.55vw, 1.5rem);
  line-height: 1.08;
}

.manufacturing-process p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  line-height: 1.58;
}

.manufacturing-options {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(340px, 0.78fr);
  gap: clamp(48px, 8vw, 132px);
  align-items: center;
}

.manufacturing-options__table {
  border-top: 1px solid rgba(23, 23, 23, 0.2);
}

.manufacturing-options__row {
  display: grid;
  grid-template-columns: minmax(130px, 0.44fr) minmax(0, 1fr);
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(23, 23, 23, 0.2);
}

.manufacturing-options__row strong {
  font-size: 0.9rem;
}

.manufacturing-options__row span {
  color: #636363;
  line-height: 1.55;
}

.manufacturing-faq {
  display: grid;
  grid-template-columns: minmax(240px, 0.5fr) minmax(0, 0.86fr);
  gap: clamp(48px, 9vw, 150px);
  align-items: start;
}

.manufacturing-faq__list {
  border-top: 1px solid rgba(23, 23, 23, 0.18);
}

.manufacturing-faq details {
  border-bottom: 1px solid rgba(23, 23, 23, 0.18);
}

.manufacturing-faq summary {
  position: relative;
  min-height: 72px;
  padding: 24px 48px 24px 0;
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  font-weight: 650;
  cursor: pointer;
  list-style: none;
}

.manufacturing-faq summary::-webkit-details-marker {
  display: none;
}

.manufacturing-faq summary::after {
  position: absolute;
  top: 23px;
  right: 2px;
  color: #d90416;
  content: "+";
  font-size: 1.4rem;
}

.manufacturing-faq details[open] summary::after {
  content: "−";
}

.manufacturing-faq details p {
  max-width: 68ch;
  margin: 0;
  padding: 0 54px 24px 0;
  color: #656565;
  line-height: 1.65;
}

.manufacturing-cta {
  display: grid;
  width: 100%;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: center;
  margin: 0;
  padding: clamp(36px, 5vw, 72px);
  border-radius: 0;
  background: #d90416;
  color: #fff;
}

.manufacturing-cta h2 {
  max-width: 15ch;
  margin: 0;
  color: #fff;
  font-size: clamp(2.4rem, 4.4vw, 4.8rem);
  line-height: 0.96;
}

.manufacturing-cta p {
  max-width: 55ch;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.62;
}

.manufacturing-cta .button {
  min-height: 56px;
  border-color: #fff;
  background: #fff;
  color: #171717;
}

body.manufacturing-page .site-footer {
  width: 100%;
  max-width: none;
  margin-inline: 0;
  border-radius: 0;
}

@media (max-width: 1180px) {
  .manufacturing-mega {
    top: 112px;
  }

  .site-nav .manufacturing-mega__item {
    min-height: 270px;
    grid-template-rows: 140px 1fr;
  }

  .manufacturing-hero__inner,
  .manufacturing-intro,
  .manufacturing-options,
  .manufacturing-faq {
    grid-template-columns: 1fr;
  }

  .manufacturing-hero__proof {
    max-width: 660px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  }

  .manufacturing-hero__proof div {
    grid-template-columns: 1fr;
    border-right: 1px solid rgba(255, 255, 255, 0.28);
    border-bottom: 0;
  }

  .manufacturing-hero__proof div:last-child {
    border-right: 0;
    padding-left: 18px;
  }

  .manufacturing-process {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .manufacturing-process article:nth-child(3) {
    border-right: 0;
  }

  .manufacturing-process article:nth-child(n + 4) {
    border-top: 1px solid rgba(255, 255, 255, 0.17);
  }
}

@media (max-width: 820px) {
  .manufacturing-nav {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 48px;
  }

  .manufacturing-nav__link {
    min-width: 0;
  }

  .manufacturing-nav__toggle {
    width: 48px;
    height: 48px;
    margin: 0;
  }

  .manufacturing-mega {
    position: static;
    display: none;
    width: 100%;
    grid-column: 1 / -1;
    max-height: min(64vh, 520px);
    margin: 2px 0 8px;
    padding: 12px;
    overflow-y: auto;
    border-radius: 10px;
    box-shadow: none;
    opacity: 1;
    transform: none;
    visibility: visible;
  }

  .manufacturing-nav.is-open .manufacturing-mega {
    display: block;
    transform: none;
  }

  .manufacturing-mega__topline {
    display: none;
  }

  .manufacturing-mega__grid {
    grid-template-columns: 1fr;
    border: 0;
  }

  .site-nav .manufacturing-mega__item {
    min-height: 0;
    grid-template-columns: 82px 1fr;
    grid-template-rows: 68px;
    padding: 8px;
    border-right: 0;
    border-bottom: 1px solid rgba(18, 18, 18, 0.12);
  }

  .manufacturing-mega__copy {
    padding: 9px 32px 4px 14px;
  }

  .manufacturing-mega__copy small {
    display: none;
  }

  body.manufacturing-page .site-nav {
    background: rgba(10, 13, 11, 0.98);
  }

  body.manufacturing-page .nav-toggle {
    border-color: rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.1);
  }

  body.manufacturing-page .nav-toggle span {
    background: #fff;
  }

  body.manufacturing-page .site-nav > a,
  body.manufacturing-page .manufacturing-nav > a {
    color: #fff;
  }

  .manufacturing-hero {
    min-height: 790px;
  }

  .manufacturing-hero::before {
    background:
      linear-gradient(0deg, rgba(6, 8, 7, 0.92) 0%, rgba(6, 8, 7, 0.56) 76%, rgba(6, 8, 7, 0.2)),
      linear-gradient(90deg, rgba(6, 8, 7, 0.5), transparent);
  }

  .manufacturing-hero__inner {
    grid-template-columns: 1fr;
    padding-top: 170px;
  }

  .manufacturing-hero h1 {
    max-width: 10ch;
    font-size: clamp(3.2rem, 13vw, 5.5rem);
  }

  .format-switcher {
    grid-template-columns: repeat(5, minmax(132px, 1fr));
    overflow-x: auto;
  }

  .manufacturing-capabilities {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .manufacturing-process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .manufacturing-process article:nth-child(3) {
    border-right: 1px solid rgba(255, 255, 255, 0.17);
  }

  .manufacturing-process article:nth-child(2n) {
    border-right: 0;
  }

  .manufacturing-process article:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.17);
  }

  .manufacturing-cta {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .manufacturing-hero__inner,
  .manufacturing-section {
    width: min(100% - 28px, 1280px);
  }

  .manufacturing-hero__inner {
    padding-bottom: 70px;
  }

  .manufacturing-hero__proof {
    grid-template-columns: 1fr;
  }

  .manufacturing-hero__proof div,
  .manufacturing-hero__proof div:last-child {
    grid-template-columns: 42px 1fr;
    padding-left: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  }

  .manufacturing-section__heading h2 {
    font-size: clamp(2.7rem, 13vw, 4.1rem);
  }

  .manufacturing-capabilities,
  .manufacturing-process {
    grid-template-columns: 1fr;
  }

  .manufacturing-capability {
    min-height: 220px;
  }

  .manufacturing-process article,
  .manufacturing-process article + article {
    min-height: 0;
    padding: 26px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.17);
    border-right: 0;
  }

  .manufacturing-options__row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .manufacturing-cta {
    width: 100%;
    margin: 0;
    padding: 34px 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .manufacturing-mega,
  .manufacturing-mega__image img {
    transition: none;
  }
}

/* Final homepage alignment: clear mega-menu labels, balanced assistant, and reference-style team flow. */
.manufacturing-mega {
  display: grid;
  grid-template-rows: auto auto;
  overflow: visible;
  background: rgba(255, 255, 255, 0.99);
  background-image: none;
  isolation: isolate;
}

.manufacturing-mega__topline {
  position: relative;
  z-index: 3;
  min-height: 68px;
  align-items: center;
  padding-bottom: 18px;
  background: #ffffff;
}

.manufacturing-mega__topline > div {
  flex: 1 1 auto;
  min-width: 0;
}

.manufacturing-mega__topline > div > strong {
  display: block;
  max-width: none;
  color: #171717;
  font-size: clamp(1.2rem, 1.65vw, 1.8rem);
  line-height: 1.12;
  white-space: nowrap;
}

.site-nav .manufacturing-mega__item {
  position: relative;
  z-index: 1;
  background: #ffffff;
  color: #171717;
  overflow: hidden;
}

.site-nav .manufacturing-mega__copy strong {
  color: #171717;
}

.site-nav .manufacturing-mega__item:hover .manufacturing-mega__copy strong,
.site-nav .manufacturing-mega__item:focus-visible .manufacturing-mega__copy strong {
  color: #171717;
}

.team-frame-section {
  min-height: 340dvh;
  background: transparent;
}

.team-motion-sticky {
  z-index: 3;
  min-height: 100dvh;
  padding: clamp(96px, 8vw, 128px) clamp(274px, 22vw, 360px) clamp(56px, 6vw, 82px);
  overflow: visible;
  background: transparent;
}

.team-motion-copy {
  max-width: 760px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.team-motion-copy h2 {
  max-width: 11ch;
  color: var(--ink);
  font-size: clamp(4.1rem, 6.2vw, 7.15rem);
  line-height: 0.88;
  text-shadow: none;
}

.team-motion-copy p:not(.eyebrow) {
  max-width: 48ch;
  margin-inline: auto;
}

.team-heading-accent {
  color: var(--brand-red);
}

.team-motion-stage {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.team-profile {
  top: var(--team-card-top) !important;
  bottom: auto !important;
  width: var(--team-card-width) !important;
  max-width: calc(25vw - 24px);
  border-radius: 18px;
  background: #ffffff;
}

.team-profile[data-team-side="left"] {
  right: auto !important;
  left: clamp(24px, 5.3vw, 86px) !important;
}

.team-profile[data-team-side="right"] {
  right: clamp(24px, 5.3vw, 86px) !important;
  left: auto !important;
}

.team-profile::after {
  content: none;
}

.team-profile img {
  aspect-ratio: 0.84;
  object-position: center top;
}

.team-motion-progress {
  display: none;
}

.launch-assistant-shell {
  grid-template-columns: minmax(360px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(28px, 4vw, 58px);
}

.assistant-copy {
  max-width: 560px;
}

.assistant-copy h2 {
  max-width: 11.5ch;
  font-size: clamp(2.75rem, 3.35vw, 3.8rem);
  line-height: 1;
}

.assistant-copy > p {
  max-width: 470px;
}

.assistant-panel,
.assistant-card {
  width: 100%;
  min-width: 0;
}

@media (max-width: 1180px) {
  .manufacturing-mega__topline > div > strong {
    font-size: clamp(1.08rem, 1.8vw, 1.45rem);
  }

  .team-motion-sticky {
    padding-inline: clamp(224px, 22vw, 274px);
  }

  .team-motion-copy h2 {
    font-size: clamp(3.6rem, 6vw, 5.4rem);
  }
}

@media (max-width: 1080px) {
  .launch-assistant-shell {
    grid-template-columns: 1fr;
  }

  .assistant-copy {
    max-width: 720px;
    margin-inline: auto;
    text-align: center;
  }

  .assistant-copy h2,
  .assistant-copy > p {
    max-width: 100%;
    margin-inline: auto;
  }
}

@media (max-width: 820px) {
  .manufacturing-mega {
    overflow-y: auto;
    background: #ffffff;
  }

  .site-nav .manufacturing-mega__item {
    background: #ffffff;
  }

  .manufacturing-mega__copy strong {
    color: #171717;
  }

  .team-frame-section {
    min-height: auto;
    padding: 82px 18px;
  }

  .team-motion-sticky {
    position: relative;
    min-height: 0;
    padding: 0;
  }

  .team-motion-copy {
    max-width: 680px;
    margin-inline: auto;
  }

  .team-motion-copy h2 {
    max-width: 10ch;
    font-size: clamp(3.15rem, 11.5vw, 5rem);
  }

  .team-motion-stage {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin: 54px auto 0;
  }

  .team-profile,
  .team-profile[data-team-side="left"],
  .team-profile[data-team-side="right"] {
    position: relative;
    top: auto !important;
    right: auto !important;
    left: auto !important;
    width: 100% !important;
    max-width: none;
  }
}

@media (max-width: 520px) {
  .team-motion-copy {
    justify-items: center;
    text-align: center;
  }

  .team-motion-copy h2 {
    font-size: clamp(2.85rem, 13vw, 4rem);
  }

  .team-motion-stage {
    grid-template-columns: 1fr;
    max-width: 340px;
  }

  .assistant-copy h2 {
    font-size: clamp(2.6rem, 12vw, 3.6rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .team-profile {
    opacity: 1;
    will-change: auto;
  }
}

/* Homepage polish: preserve navigation labels, readable USP type, and a structured client wall. */
.usp-motion-heading {
  max-width: 15ch;
  column-gap: 0.2em;
  row-gap: 0.06em;
  font-family: "CHEDROS", var(--font-sans);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: 0;
  word-spacing: normal;
}

.usp-motion-word {
  letter-spacing: 0;
}

.site-nav .manufacturing-mega__item,
.site-nav .manufacturing-mega__item:hover,
.site-nav .manufacturing-mega__item:focus-visible {
  background: #ffffff;
  color: #171717;
}

body.home-page .site-nav .manufacturing-mega__copy strong,
body.home-page .site-nav .manufacturing-mega__item:hover .manufacturing-mega__copy strong,
body.home-page .site-nav .manufacturing-mega__item:focus-visible .manufacturing-mega__copy strong {
  display: block;
  position: relative;
  z-index: 3;
  color: #171717 !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}

body.home-page .site-nav .manufacturing-mega__item,
body.home-page .site-nav .manufacturing-mega__item:hover,
body.home-page .site-nav .manufacturing-mega__item:focus-visible {
  color: #171717 !important;
  opacity: 1 !important;
}

body.home-page .site-nav .manufacturing-mega__copy small,
body.home-page .site-nav .manufacturing-mega__item:hover .manufacturing-mega__copy small,
body.home-page .site-nav .manufacturing-mega__item:focus-visible .manufacturing-mega__copy small {
  display: block;
  position: relative;
  z-index: 3;
  color: #686868 !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.manufacturing-mega__grid {
  position: relative;
  z-index: 1;
}

.manufacturing-mega__image {
  z-index: 1;
}

.manufacturing-mega__copy {
  z-index: 3;
  margin-top: -1px;
  background: #ffffff;
  isolation: isolate;
}

@media (max-width: 1040px) and (min-width: 821px) {
  .manufacturing-mega__topline > div > strong {
    white-space: normal;
  }
}

.site-nav .manufacturing-mega__item:hover .manufacturing-mega__image img,
.site-nav .manufacturing-mega__item:focus-visible .manufacturing-mega__image img {
  transform: translate3d(0, -5px, 0) scale(1.055) rotate(-0.7deg);
}

.site-nav .manufacturing-mega__copy i {
  color: var(--brand-red);
  transition: transform 220ms ease;
}

.site-nav .manufacturing-mega__item:hover .manufacturing-mega__copy i,
.site-nav .manufacturing-mega__item:focus-visible .manufacturing-mega__copy i {
  transform: translateX(5px);
}

.client-showcase-section {
  background: #eef2f4;
}

.client-logo-grid {
  gap: clamp(12px, 1.35vw, 22px);
  background: transparent;
}

.client-logo-cell {
  min-height: clamp(190px, 16vw, 258px);
  border: 1px solid rgba(17, 26, 43, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
}

.client-logo-cell img {
  filter: grayscale(1) brightness(0.32) contrast(1.18) sepia(0.15) hue-rotate(168deg) saturate(1.4) opacity(0.9);
}

@media (hover: hover) and (pointer: fine) {
  .client-logo-cell:hover {
    transform: translateY(-4px);
  }

  .client-logo-cell:hover img {
    filter: grayscale(1) brightness(0.25) contrast(1.22) sepia(0.15) hue-rotate(168deg) saturate(1.6) opacity(1);
  }
}

@media (max-width: 820px) {
  body.home-page .site-nav .manufacturing-mega__copy small {
    display: none;
  }

  .usp-motion-heading {
    max-width: 11ch;
    column-gap: 0.18em;
    row-gap: 0.08em;
    font-size: clamp(2.8rem, 12vw, 5.5rem);
    line-height: 0.92;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-nav .manufacturing-mega__image img,
  .site-nav .manufacturing-mega__copy i,
  .client-logo-cell {
    transition: none;
  }
}

/* Smart Launch Assistant: three aligned columns using the site typography system. */
.strategy-section.launch-assistant-section {
  padding: clamp(78px, 7vw, 118px) clamp(20px, 3.2vw, 54px) clamp(88px, 7vw, 124px);
  background: #ffffff;
}

.launch-assistant-shell {
  display: grid;
  width: min(1600px, 100%);
  min-height: clamp(700px, 52vw, 820px);
  grid-template-columns:
    minmax(320px, 0.88fr)
    minmax(560px, 1.42fr)
    minmax(290px, 0.75fr);
  gap: clamp(18px, 1.8vw, 30px);
  align-items: stretch;
}

.assistant-copy,
.assistant-panel,
.assistant-card,
.assistant-question,
.assistant-sidebar {
  min-width: 0;
}

.assistant-copy {
  display: flex;
  width: 100%;
  max-width: none;
  height: 100%;
  flex-direction: column;
  padding: clamp(22px, 2.4vw, 38px) clamp(10px, 1.1vw, 18px);
  text-align: left;
}

.assistant-badge {
  min-height: 0;
  margin: 0 0 clamp(28px, 3vw, 46px);
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: #191a17;
  font-family: var(--font-sans);
  font-size: clamp(0.72rem, 0.82vw, 0.84rem);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.assistant-badge::before {
  margin-right: 13px;
  color: var(--brand-red);
  font-size: 1.35em;
}

.assistant-copy h2 {
  max-width: none;
  margin: 0;
  color: #191a17;
  font-family: "CHEDROS", var(--font-sans);
  font-size: clamp(2.85rem, 2.9vw, 3.45rem);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: 0;
  text-align: left;
  text-wrap: nowrap;
}

.assistant-copy h2 .assistant-heading-line {
  display: block;
  color: #191a17;
  border: 0;
}

.assistant-copy h2 .assistant-heading-accent {
  width: max-content;
  border-bottom: 5px solid var(--brand-red);
}

.assistant-copy > p {
  max-width: 38ch;
  margin: clamp(24px, 2.3vw, 34px) 0 0;
  color: rgba(25, 26, 23, 0.64);
  font-family: var(--font-sans);
  font-size: clamp(0.92rem, 0.95vw, 1.05rem);
  font-weight: 400;
  line-height: 1.58;
}

.assistant-bubbles {
  position: relative;
  display: grid;
  width: 100%;
  max-width: 430px;
  gap: 14px;
  margin: auto 0 0;
  padding: clamp(28px, 2.4vw, 40px) 0 0 20px;
}

.assistant-bubbles::before {
  left: 40px;
  top: 72px;
  bottom: 26px;
  background: repeating-linear-gradient(
    180deg,
    rgba(25, 26, 23, 0.18) 0 4px,
    transparent 4px 8px
  );
}

.assistant-bubble,
.assistant-bubble + .assistant-bubble {
  display: grid;
  max-width: none;
  min-height: 76px;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  margin: 0;
}

.assistant-bot {
  z-index: 2;
  width: 48px;
  height: 48px;
  border: 2px solid var(--brand-red);
  background: #171814;
  box-shadow: none;
}

.assistant-bot::before {
  width: 25px;
  height: 19px;
  border-color: var(--brand-red);
  background: transparent;
}

.assistant-bot::after {
  right: -2px;
  bottom: -2px;
  width: 10px;
  height: 10px;
  border-color: #ffffff;
  background: var(--brand-red);
}

.assistant-bubble p {
  min-height: 76px;
  padding: 16px 32px 16px 20px;
  border: 1px solid rgba(25, 26, 23, 0.11);
  border-left: 5px solid var(--brand-red);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 12px 34px rgba(25, 26, 23, 0.055);
  color: rgba(25, 26, 23, 0.74);
  font-family: var(--font-sans);
  font-size: clamp(0.76rem, 0.78vw, 0.86rem);
  font-weight: 500;
  line-height: 1.42;
}

.assistant-bubble p::before {
  content: none;
}

.assistant-bubble p::after {
  top: 18px;
  right: 16px;
  width: 7px;
  height: 7px;
  background: var(--brand-red);
}

.assistant-progress-card,
.assistant-handnote {
  display: none;
}

.assistant-panel {
  height: 100%;
}

.assistant-card {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  padding: clamp(32px, 3.1vw, 52px);
  border: 1px solid rgba(25, 26, 23, 0.11);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 22px 62px rgba(25, 26, 23, 0.055);
}

.assistant-card::after {
  position: absolute;
  top: -48px;
  right: -26px;
  width: 260px;
  height: 230px;
  background: radial-gradient(circle, rgba(239, 255, 31, 0.8) 0 1px, transparent 1.4px) 0 0 / 9px 9px;
  content: "";
  opacity: 0.52;
  pointer-events: none;
  transform: rotate(12deg);
}

.assistant-question {
  position: relative;
  z-index: 1;
  display: flex;
  height: 100%;
  flex-direction: column;
}

.assistant-kicker {
  display: inline-block;
  width: max-content;
  margin: 0 0 clamp(28px, 2.8vw, 42px);
  padding-bottom: 12px;
  border-bottom: 3px solid var(--brand-red);
  color: #191a17;
  font-family: var(--font-sans);
  font-size: clamp(0.72rem, 0.76vw, 0.8rem);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.assistant-question h3 {
  max-width: 15ch;
  margin: 0;
  color: #191a17;
  font-family: "CHEDROS", var(--font-sans);
  font-size: clamp(3rem, 3.6vw, 4.2rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: 0;
  text-wrap: balance;
}

.assistant-question > p:not(.assistant-kicker):not(.assistant-secure):not(.assistant-status) {
  margin: clamp(18px, 2vw, 28px) 0 clamp(24px, 2.4vw, 36px);
  color: rgba(25, 26, 23, 0.6);
  font-family: var(--font-sans);
  font-size: clamp(0.92rem, 0.98vw, 1.06rem);
  line-height: 1.5;
}

.assistant-options {
  display: grid;
  gap: 12px;
}

.assistant-options.is-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.assistant-option,
.assistant-options.is-grid .assistant-option {
  position: relative;
  display: grid;
  width: 100%;
  min-height: 58px;
  grid-template-columns: 1fr;
  align-items: center;
  padding: 13px 18px 13px 62px;
  overflow: hidden;
  border: 1px solid rgba(25, 26, 23, 0.12);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: none;
  color: #191a17;
  font-family: var(--font-sans);
  text-align: left;
}

.assistant-option::before {
  position: absolute;
  top: 50%;
  left: 22px;
  width: 26px;
  height: 26px;
  border: 1px solid rgba(25, 26, 23, 0.17);
  border-radius: 50%;
  background: #ffffff;
  content: "";
  transform: translateY(-50%);
}

.assistant-option::after {
  position: absolute;
  top: calc(50% - 2px);
  left: 30px;
  width: 10px;
  height: 6px;
  border-bottom: 2px solid #ffffff;
  border-left: 2px solid #ffffff;
  content: "";
  opacity: 0;
  transform: translateY(-50%) rotate(-45deg);
}

.assistant-option:hover,
.assistant-option:focus-visible {
  border-color: rgba(25, 26, 23, 0.24);
  box-shadow: 0 10px 28px rgba(25, 26, 23, 0.06);
  transform: translateY(-2px);
}

.assistant-option:active {
  transform: translateY(0) scale(0.99);
}

.assistant-option.is-selected {
  border-color: var(--brand-red);
  background: var(--brand-red);
  box-shadow: none;
}

.assistant-option.is-selected::before {
  border-color: #191a17;
  background: #191a17;
  transform: translateY(-50%);
}

.assistant-option.is-selected::after {
  opacity: 1;
}

.assistant-option-title {
  color: #191a17;
  font-family: var(--font-sans);
  font-size: clamp(0.88rem, 0.94vw, 1rem);
  font-weight: 600;
  line-height: 1.3;
}

.assistant-option small {
  color: rgba(25, 26, 23, 0.62);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 500;
}

.assistant-contact {
  gap: 12px;
}

.assistant-contact label,
.assistant-contact input,
.assistant-contact textarea,
.assistant-phone-row span {
  font-family: var(--font-sans);
}

.assistant-contact label {
  color: #191a17;
  font-size: 0.86rem;
  font-weight: 600;
}

.assistant-contact input,
.assistant-contact textarea,
.assistant-phone-row span {
  border-color: rgba(25, 26, 23, 0.13);
  border-radius: 12px;
  background: #ffffff;
}

.launch-assistant-section input:focus,
.launch-assistant-section textarea:focus {
  border-color: #191a17;
  box-shadow: 0 0 0 3px rgba(239, 255, 31, 0.5);
}

.assistant-actions {
  grid-template-columns: auto minmax(200px, 1fr);
  gap: 12px;
  margin-top: auto;
  padding-top: clamp(20px, 2vw, 30px);
}

.assistant-actions .button {
  min-height: 64px;
  padding: 8px 10px 8px 24px;
  border-radius: 14px;
  background: #191a17;
  box-shadow: none;
  color: #ffffff;
  font-family: var(--font-sans);
  font-weight: 600;
}

.assistant-actions .button > span:last-child {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--brand-red);
  color: #191a17;
  font-size: 1.35rem;
}

.assistant-actions .button:hover,
.assistant-actions .button:focus-visible {
  background: #252620;
  box-shadow: none;
}

.assistant-back {
  min-height: 58px;
  border-color: rgba(25, 26, 23, 0.14);
  border-radius: 14px;
  background: #ffffff;
  color: #191a17;
  font-family: var(--font-sans);
}

.assistant-secure,
.assistant-status {
  margin-top: 12px;
  color: rgba(25, 26, 23, 0.5);
  font-family: var(--font-sans);
  font-size: 0.76rem;
  font-weight: 500;
}

.assistant-status {
  min-height: 1.2em;
  color: #191a17;
}

.assistant-sidebar {
  display: flex;
  width: 100%;
  height: 100%;
  align-content: initial;
  flex-direction: column;
  gap: 0;
  padding: clamp(28px, 2.6vw, 42px) clamp(20px, 2vw, 32px);
  border: 1px solid rgba(25, 26, 23, 0.11);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 22px 62px rgba(25, 26, 23, 0.045);
}

.assistant-sidebar ol {
  position: relative;
  display: grid;
  gap: 10px;
}

.assistant-sidebar ol::before {
  left: 20px;
  top: 42px;
  bottom: 42px;
  border-left-color: rgba(25, 26, 23, 0.14);
}

.assistant-sidebar li {
  min-height: 64px;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  padding: 10px 12px;
  border-radius: 18px;
}

.assistant-sidebar li span {
  width: 42px;
  height: 42px;
  border-color: rgba(25, 26, 23, 0.15);
  background: #ffffff;
  color: #191a17;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
}

.assistant-sidebar li p {
  color: #191a17;
  font-family: var(--font-sans);
  font-size: clamp(0.76rem, 0.82vw, 0.9rem);
  font-weight: 500;
  line-height: 1.38;
}

.assistant-sidebar li.is-active {
  background: var(--brand-red);
  box-shadow: none;
}

.assistant-sidebar li.is-active span,
.assistant-sidebar li.is-complete span {
  border-color: #191a17;
  background: #191a17;
  color: #ffffff;
}

.assistant-side-fields {
  display: grid;
  gap: 12px;
  margin-top: clamp(24px, 3vw, 42px);
}

.assistant-side-fields div {
  min-height: 64px;
  grid-template-columns: 26px minmax(0, 1fr);
  gap: 12px;
  padding: 0 16px;
  border-color: rgba(25, 26, 23, 0.11);
  border-radius: 14px;
  background: #ffffff;
  color: rgba(25, 26, 23, 0.62);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 500;
}

.assistant-side-fields .fi {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  color: #191a17;
  font-size: 1.15rem;
}

.assistant-side-fields p {
  min-width: 0;
  color: rgba(25, 26, 23, 0.62);
  font-family: var(--font-sans);
  font-weight: 500;
}

@media (max-width: 1200px) {
  .launch-assistant-shell {
    min-height: 0;
    grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  }

  .assistant-copy,
  .assistant-panel,
  .assistant-card {
    height: 100%;
  }

  .assistant-sidebar {
    grid-column: 1 / -1;
    height: auto;
  }

  .assistant-sidebar ol {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 8px;
  }

  .assistant-sidebar ol::before {
    display: none;
  }

  .assistant-sidebar li {
    min-height: 96px;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 9px;
    text-align: center;
  }

  .assistant-side-fields {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .strategy-section.launch-assistant-section {
    padding-inline: 20px;
  }

  .launch-assistant-shell {
    grid-template-columns: 1fr;
  }

  .assistant-copy,
  .assistant-panel,
  .assistant-card,
  .assistant-sidebar {
    height: auto;
  }

  .assistant-copy {
    max-width: 720px;
    padding-inline: 0;
    text-align: left;
  }

  .assistant-copy h2,
  .assistant-copy > p {
    max-width: none;
    margin-inline: 0;
    text-align: left;
  }

  .assistant-bubbles {
    margin-top: 24px;
  }

  .assistant-card {
    min-height: 690px;
  }
}

@media (max-width: 720px) {
  .strategy-section.launch-assistant-section {
    padding: 72px 16px 84px;
  }

  .assistant-copy h2 {
    max-width: 9ch;
    font-size: clamp(3rem, 13vw, 4rem);
  }

  .assistant-bubbles {
    display: none;
  }

  .assistant-card {
    min-height: 0;
    padding: 26px 20px;
  }

  .assistant-card::after {
    width: 170px;
    height: 150px;
  }

  .assistant-question h3 {
    font-size: clamp(2.7rem, 13vw, 3.65rem);
  }

  .assistant-options.is-grid {
    grid-template-columns: 1fr;
  }

  .assistant-actions {
    grid-template-columns: 1fr;
    margin-top: 24px;
  }

  .assistant-back {
    order: 2;
  }

  .assistant-next {
    order: 1;
  }

  .assistant-sidebar {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .assistant-option,
  .assistant-actions .button {
    transition: none;
  }
}

/* Product-category hierarchy: one feature card with four lighter supporting cards. */
.formats-cards {
  display: grid;
  width: 80%;
  grid-template-columns: minmax(0, 1.52fr) repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, clamp(240px, 18.8vw, 320px));
  gap: clamp(10px, 1vw, 16px);
  align-items: stretch;
  margin-inline: auto;
}

.category-card,
.category-card--featured,
.category-card--mass,
.category-card--wellness {
  min-height: 0;
  aspect-ratio: auto;
  grid-column: auto;
  grid-row: auto;
}

.category-card--whey {
  grid-column: 1;
  grid-row: 1 / 3;
}

.category-card--creatine {
  grid-column: 2;
  grid-row: 1;
}

.category-card--preworkout {
  grid-column: 3;
  grid-row: 1;
}

.category-card--mass {
  grid-column: 2;
  grid-row: 2;
}

.category-card--wellness {
  grid-column: 3;
  grid-row: 2;
}

.category-card--whey .category-card__icon {
  top: 7%;
  left: 7%;
  width: clamp(48px, 9.5cqw, 68px);
  height: clamp(48px, 9.5cqw, 68px);
}

.category-card--whey .category-card__icon .fi {
  font-size: clamp(23px, 4.5cqw, 32px);
}

.category-card--whey h3.category-card__title {
  top: 22%;
  right: 5%;
  left: 7%;
  font-family: "CHEDROS", var(--font-sans);
  font-size: clamp(4rem, 16cqw, 7.5rem);
  font-weight: 700;
  line-height: 0.84;
  letter-spacing: 0;
}

.category-card--whey .category-card__line {
  top: 56%;
  width: clamp(42px, 10cqw, 68px);
}

.category-card--whey p {
  top: 62%;
  font-size: clamp(1.02rem, 3.3cqw, 1.45rem);
  font-weight: 400;
  line-height: 1.48;
}

.category-card--whey .category-card__arrow {
  bottom: 9%;
  width: clamp(50px, 9.5cqw, 66px);
  height: clamp(50px, 9.5cqw, 66px);
}

.category-card:not(.category-card--whey) .category-card__icon {
  top: 10%;
  left: 8%;
  width: clamp(38px, 12cqw, 50px);
  height: clamp(38px, 12cqw, 50px);
}

.category-card:not(.category-card--whey) .category-card__icon .fi {
  font-size: clamp(18px, 5.4cqw, 23px);
}

.category-card:not(.category-card--whey) h3.category-card__title,
.category-card:not(.category-card--whey) h3.category-card__title--single {
  top: 32%;
  right: 6%;
  left: 8%;
  font-family: "CHEDROS", var(--font-sans);
  font-size: clamp(1.85rem, 9.2cqw, 2.55rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: 0;
}

.category-card:not(.category-card--whey) h3.category-card__title--wellness {
  top: 30%;
  font-size: clamp(1.65rem, 8cqw, 2.25rem);
  line-height: 0.94;
}

.category-card:not(.category-card--whey) .category-card__title-accent {
  color: #191a17;
}

.category-card:not(.category-card--whey) .category-card__line {
  top: 58%;
  left: 8%;
  width: clamp(30px, 9cqw, 42px);
}

.category-card:not(.category-card--whey) p {
  top: 65%;
  right: 7%;
  left: 8%;
  font-size: clamp(0.82rem, 3.5cqw, 0.98rem);
  font-weight: 400;
  line-height: 1.48;
}

.category-card:not(.category-card--whey) .category-card__arrow {
  display: none;
}

.category-card--whey .category-card__photo {
  object-position: 52% 54%;
}

.category-card--creatine .category-card__photo {
  object-position: 59% 50%;
}

.category-card--preworkout .category-card__photo {
  object-position: 59% 51%;
}

.category-card--mass .category-card__photo {
  object-position: 59% 55%;
}

.category-card--wellness .category-card__photo {
  object-position: 60% 54%;
}

@media (max-width: 960px) {
  .formats-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
  }

  .category-card,
  .category-card--featured,
  .category-card--mass,
  .category-card--wellness {
    min-height: 280px;
    grid-column: auto;
    grid-row: auto;
  }

  .category-card--whey {
    min-height: clamp(416px, 57.6vw, 544px);
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .formats-cards {
    grid-template-columns: 1fr;
  }

  .category-card,
  .category-card--featured,
  .category-card--mass,
  .category-card--wellness {
    min-height: 312px;
    grid-column: auto;
  }

  .category-card--whey {
    min-height: 0;
    aspect-ratio: 0.82;
  }
}

/* Tablet manufacturing capability editorial */
.tablet-solutions {
  width: min(100% - 10vw, 1524px);
  margin-inline: auto;
  padding-block: clamp(42px, 3vw, 52px);
  scroll-margin-top: 84px;
}

.tablet-solutions__layout {
  display: grid;
  grid-template-columns: minmax(400px, 1fr) minmax(0, 1.78fr);
  gap: clamp(32px, 3vw, 48px);
  align-items: stretch;
}

.tablet-solutions__intro {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  padding-top: clamp(34px, 5vw, 82px);
}

.tablet-solutions__intro .manufacturing-kicker {
  color: #171717;
}

.tablet-solutions__intro .manufacturing-kicker::before {
  background: #ba8425;
}

.tablet-solutions__intro h2 {
  width: 122%;
  max-width: none;
  margin: 28px 0 0;
  color: #171717;
  font-family: "CHEDROS", var(--font-sans);
  font-size: clamp(3.4rem, 4.15vw, 4.6rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: uppercase;
  transform: scaleX(0.82);
  transform-origin: left center;
}

.tablet-solutions__rule {
  width: 46px;
  height: 1px;
  margin-top: 30px;
  background: #ba8425;
}

.tablet-solutions__intro > p:not(.manufacturing-kicker) {
  max-width: 32ch;
  margin: 28px 0 0;
  color: #5f5f5f;
  font-size: clamp(1rem, 1.15vw, 1.14rem);
  line-height: 1.72;
}

.tablet-solutions__family {
  display: flex;
  width: min(98%, 512px);
  height: clamp(224px, 16vw, 264px);
  align-items: flex-end;
  margin: auto 0 0 -7%;
}

.tablet-solutions__family img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: left bottom;
}

.tablet-solutions__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 418px;
  gap: 20px;
  align-self: start;
}

.tablet-solution-card {
  position: relative;
  display: block;
  min-width: 0;
  min-height: 0;
  height: 100%;
  border: 1px solid rgba(23, 23, 23, 0.16);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(23, 23, 23, 0.035);
  overflow: hidden;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.tablet-solution-card:hover {
  border-color: rgba(186, 132, 37, 0.42);
  box-shadow: 0 18px 38px rgba(23, 23, 23, 0.08);
  transform: translateY(-5px);
}

.tablet-solution-card__media {
  position: absolute;
  inset: 0;
  margin: 0;
  pointer-events: none;
}

.tablet-solution-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(0.8);
  transform-origin: top right;
  transition: transform 420ms ease;
}

.tablet-solution-card:hover .tablet-solution-card__media img {
  transform: scale(0.812);
}

.tablet-solution-card__copy {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  display: flex;
  min-width: 0;
  min-height: 51.5%;
  flex-direction: column;
  align-items: flex-start;
  padding: 22px clamp(18px, 1.55vw, 25px) 23px;
}

.tablet-solution-card__copy span {
  color: #ba8425;
  font-size: 0.78rem;
  font-weight: 700;
}

.tablet-solution-card__copy h3 {
  max-width: none;
  margin: 17px 0 0;
  color: #171717;
  font-family: "CHEDROS", var(--font-sans);
  font-size: clamp(1.25rem, 1.32vw, 2rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: uppercase;
}

.tablet-solution-card__copy p {
  max-width: 30ch;
  margin: 12px 0 0;
  color: #5f5f5f;
  font-size: 0.94rem;
  line-height: 1.52;
}

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

  .tablet-solutions__intro {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.72fr);
    column-gap: clamp(40px, 7vw, 86px);
    padding-top: 0;
  }

  .tablet-solutions__intro .manufacturing-kicker,
  .tablet-solutions__intro h2,
  .tablet-solutions__rule,
  .tablet-solutions__intro > p:not(.manufacturing-kicker) {
    grid-column: 1;
  }

  .tablet-solutions__family {
    width: 88%;
    height: 264px;
    grid-row: 1 / 5;
    grid-column: 2;
    align-self: end;
    margin: 0 0 -2% 0;
  }
}

@media (max-width: 820px) {
  .tablet-solutions__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 418px;
  }
}

@media (max-width: 560px) {
  .tablet-solutions {
    width: min(100% - 30px, 1480px);
    padding-block: 64px 76px;
  }

  .tablet-solutions__intro {
    display: flex;
  }

  .tablet-solutions__intro h2 {
    margin-top: 22px;
    font-size: clamp(3.25rem, 16vw, 4.5rem);
    transform: none;
    width: auto;
  }

  .tablet-solutions__family {
    width: 93%;
    height: auto;
    margin: 34px 0 6px 0;
  }

  .tablet-solutions__grid {
    grid-template-columns: 1fr;
    gap: 16px;
    grid-auto-rows: auto;
  }

  .tablet-solution-card {
    min-height: 420px;
    height: 420px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .tablet-solution-card,
  .tablet-solution-card__media img {
    transition: none;
  }

  .tablet-solution-card:hover,
  .tablet-solution-card:hover {
    transform: none;
  }

  .tablet-solution-card__media img,
  .tablet-solution-card:hover .tablet-solution-card__media img {
    transform: scale(0.8);
  }
}
