:root {
  --color-primary: #2e75b6;
  --color-primary-deep: #235f96;
  --color-accent: #4a9be8;
  --color-accent-light: #6bb8ff;
  --color-navy: #0f1729;
  --color-hero: #070d1a;
  --color-footer: #050a14;
  --color-surface: #ffffff;
  --color-surface-alt: #f6f8fb;
  --color-text-strong: #1a1a2e;
  --color-text: #666666;
  --color-muted: #8ea3bf;
  --color-border: #e8ecf0;
  --color-success: #74d29e;
  --shadow-soft: 0 25px 60px rgba(7, 13, 26, 0.08);
  --shadow-card: 0 18px 45px rgba(15, 23, 41, 0.12);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --container: 1200px;
  --nav-height: 88px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--color-text-strong);
  background: var(--color-surface);
  text-wrap: pretty;
}

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

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

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

button {
  border: 0;
  background: none;
}

.skip-link {
  position: absolute;
  left: 18px;
  top: -48px;
  z-index: 1000;
  padding: 12px 16px;
  border-radius: 12px;
  background: var(--color-surface);
  color: var(--color-navy);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 18px;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.section {
  padding: 112px 0;
}

.section-light {
  background: var(--color-surface-alt);
}

.section-white {
  background: var(--color-surface);
}

.section-dark {
  background:
    radial-gradient(circle at top left, rgba(74, 155, 232, 0.16), transparent 35%),
    linear-gradient(180deg, #0a1324 0%, var(--color-navy) 100%);
  color: #ffffff;
}

.section-glow {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 25%, rgba(74, 155, 232, 0.28), transparent 28%),
    radial-gradient(circle at 20% 80%, rgba(46, 117, 182, 0.15), transparent 26%),
    linear-gradient(180deg, #08101d 0%, #0b1526 100%);
  color: #ffffff;
}

.section-cta {
  background:
    linear-gradient(160deg, rgba(46, 117, 182, 0.18), rgba(7, 13, 26, 0.1)),
    linear-gradient(180deg, #08101d 0%, #111d33 100%);
  color: #ffffff;
}

.section-intro {
  max-width: 780px;
  margin-bottom: 56px;
}

.section-intro p:last-child {
  max-width: 62ch;
  text-wrap: pretty;
}

.section-intro-centered {
  margin-inline: auto;
  text-align: center;
}

.section-intro-centered p:last-child {
  margin-inline: auto;
  max-width: 58ch;
}

.section-label {
  margin: 0 0 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.section-label-dark {
  color: var(--color-accent);
}

h1,
h2,
h3 {
  margin: 0;
  text-wrap: balance;
}

h1 {
  font-size: clamp(3.6rem, 10vw, 5.125rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.06em;
}

h2 {
  font-size: clamp(2.4rem, 5vw, 3.125rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.375rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

p {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-text);
  text-wrap: pretty;
}

.section-dark p,
.section-glow p,
.section-cta p,
.hero-section p,
.site-footer p {
  color: var(--color-muted);
}

.gradient-text {
  display: inline-block;
  background: linear-gradient(135deg, #4a9be8 0%, #2e75b6 50%, #6bb8ff 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradient-flow 4s ease infinite;
}

@keyframes gradient-flow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes scroll-logos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes scroll-logos-reverse {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  transition: background-color 0.25s ease, backdrop-filter 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(10, 18, 32, 0.94);
  backdrop-filter: blur(20px);
  box-shadow: 0 14px 40px rgba(4, 8, 18, 0.22);
}

.nav-shell {
  min-height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: -0.06em;
  color: #ffffff;
  white-space: nowrap;
}

.brand-mark strong {
  color: var(--color-accent);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.nav-group {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-item {
  position: relative;
}

.nav-link,
.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 12px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
}

.dropdown-toggle::after {
  content: "";
  width: 8px;
  height: 8px;
  margin-left: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 0.2s ease;
}

.nav-item-dropdown.is-open .dropdown-toggle::after {
  transform: rotate(-135deg) translateY(-2px);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  display: grid;
  gap: 6px;
  min-width: 220px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(9, 16, 29, 0.98);
  box-shadow: var(--shadow-card);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.dropdown-menu-wide {
  min-width: 280px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.dropdown-menu-beverages {
  min-width: 220px;
  grid-template-columns: 1fr;
}

.dropdown-menu a {
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.86);
}

.dropdown-menu a:hover,
.dropdown-menu a:focus-visible {
  background: rgba(74, 155, 232, 0.14);
  color: #ffffff;
}

.nav-item-dropdown.is-open .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-phone {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  white-space: nowrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #ffffff;
  background: linear-gradient(135deg, #2e75b6, #3d8fd4);
  box-shadow: 0 4px 24px rgba(46, 117, 182, 0.3);
}

.button-secondary {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
}

.button-full {
  width: 100%;
}

.menu-toggle {
  display: none;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
}

.hero-section {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  padding: calc(var(--nav-height) + 44px) 0 0;
  background: linear-gradient(180deg, #070d1a 0%, #0d1729 100%);
  color: #ffffff;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-video-frame {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0.32;
}

.hero-video-frame iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.77777778vh;
  min-width: 100%;
  height: 56.25vw;
  min-height: 100%;
  transform: translate(-50%, -50%) scale(1.04);
  border: 0;
  filter: saturate(0.75) contrast(1.05) brightness(0.55);
  pointer-events: none;
}

.hero-video-fallback {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(74, 155, 232, 0.18), transparent 26%),
    radial-gradient(circle at 85% 35%, rgba(107, 184, 255, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(7, 13, 26, 0.2), rgba(7, 13, 26, 0.72));
  opacity: 0.92;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  opacity: 0.34;
}

.hero-orb-one {
  top: 18%;
  right: 14%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(74, 155, 232, 0.6), transparent 70%);
}

.hero-orb-two {
  bottom: 4%;
  left: 8%;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(46, 117, 182, 0.42), transparent 68%);
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.8fr);
  gap: 36px;
  align-items: end;
}

.hero-copy {
  max-width: 720px;
}

.hero-subhead {
  max-width: 64ch;
  margin-top: 24px;
  font-size: clamp(1rem, 1.45vw, 1.14rem);
  line-height: 1.62;
  color: var(--color-muted);
  text-wrap: pretty;
}

.hero-proofline {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 620px;
  margin-top: 28px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.proof-dot {
  flex: 0 0 auto;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-success);
  box-shadow: 0 0 0 8px rgba(116, 210, 158, 0.1);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-panel {
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-card);
}

.panel-label {
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.hero-panel h2 {
  font-size: clamp(2rem, 3vw, 2.625rem);
}

.panel-list {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.panel-list li {
  position: relative;
  padding-left: 24px;
  color: var(--color-muted);
}

.panel-list li + li {
  margin-top: 14px;
}

.panel-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--color-accent);
}

.credibility-bar {
  background: linear-gradient(180deg, #07111f 0%, #091120 100%);
}

.brand-ticker-section {
  position: relative;
  z-index: 2;
  margin-top: -270px;
  padding: 8px 0 28px;
  background: linear-gradient(180deg, rgba(7, 13, 26, 0) 0%, #070d1a 28%, #070d1a 100%);
}

.brand-ticker-label {
  margin-bottom: 24px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
  color: #86aee0;
}

.brand-ticker-mask {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 6%, black 94%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, black 6%, black 94%, transparent 100%);
}

.brand-ticker-mask-top {
  margin-bottom: 8px;
}

.brand-ticker-track {
  display: flex;
  align-items: center;
  width: max-content;
}

.brand-ticker-track-forward {
  animation: scroll-logos 45s linear infinite;
}

.brand-ticker-track-reverse {
  animation: scroll-logos-reverse 50s linear infinite;
}

.ticker-brand {
  flex-shrink: 0;
  padding: 8px 24px;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.2em;
  user-select: none;
  white-space: nowrap;
}

.ticker-brand-row1 {
  color: rgba(255, 255, 255, 0.28);
}

.ticker-brand-row2 {
  color: rgba(255, 255, 255, 0.18);
}

.ticker-dot {
  flex-shrink: 0;
  font-size: 6px;
}

.ticker-dot-row1 {
  color: rgba(74, 155, 232, 0.15);
}

.ticker-dot-row2 {
  color: rgba(74, 155, 232, 0.1);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding: 28px 0 34px;
}

.stat-card {
  padding: 24px 20px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  text-align: center;
}

.stat-value {
  margin-bottom: 8px;
  font-size: 28px;
  font-weight: 900;
  line-height: 0.98;
  color: #ffffff;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.stat-label {
  max-width: 16ch;
  margin-inline: auto;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #5a6f8a;
  text-wrap: balance;
}

.pillar-stack {
  display: grid;
  gap: 26px;
}

.pillar-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.84)),
    #ffffff;
  box-shadow: 0 22px 60px rgba(15, 23, 41, 0.1);
}

.pillar-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at top left, rgba(74, 155, 232, 0.18), transparent 28%),
    linear-gradient(120deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.4));
}

.pillar-card-formulation {
  background:
    linear-gradient(180deg, rgba(236, 246, 255, 0.98), rgba(255, 255, 255, 0.92)),
    #ffffff;
}

.pillar-card-packaging {
  background:
    linear-gradient(180deg, rgba(255, 245, 236, 0.98), rgba(255, 255, 255, 0.92)),
    #ffffff;
}

.pillar-card-production {
  background:
    linear-gradient(180deg, rgba(237, 246, 243, 0.98), rgba(255, 255, 255, 0.92)),
    #ffffff;
}

.pillar-card-marketing {
  background:
    linear-gradient(180deg, rgba(243, 239, 255, 0.98), rgba(255, 255, 255, 0.92)),
    #ffffff;
}

.pillar-card-sales {
  background:
    linear-gradient(180deg, rgba(255, 241, 244, 0.98), rgba(255, 255, 255, 0.92)),
    #ffffff;
}

.pillar-card-reverse {
  grid-template-columns: minmax(0, 1fr) 340px;
}

.pillar-card-reverse .pillar-visual {
  order: 2;
}

.pillar-visual {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(15, 23, 41, 0.18);
}

.pillar-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
}

.pillar-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 22, 40, 0.04), rgba(10, 22, 40, 0.3)),
    radial-gradient(circle at top right, rgba(107, 184, 255, 0.25), transparent 35%);
  pointer-events: none;
}

.pillar-visual-blue {
  background: linear-gradient(145deg, #0b1830 0%, #2e75b6 100%);
}

.pillar-visual-silver {
  background: linear-gradient(145deg, #eef4fb 0%, #dfe9f6 100%);
}

.pillar-visual-navy {
  background: linear-gradient(145deg, #091120 0%, #172947 100%);
}

.pillar-visual-gold {
  background: linear-gradient(145deg, #1e2532 0%, #79673d 100%);
}

.pillar-number {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  font-size: 15px;
  font-weight: 800;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.pillar-visual-silver .pillar-number {
  color: var(--color-navy);
  background: rgba(255, 255, 255, 0.75);
}

.visual-lines,
.visual-boxes,
.visual-columns,
.visual-arc,
.visual-path {
  position: absolute;
  inset: 0;
}

.visual-lines::before,
.visual-lines::after,
.visual-boxes::before,
.visual-boxes::after,
.visual-columns::before,
.visual-columns::after,
.visual-arc::before,
.visual-arc::after,
.visual-path::before,
.visual-path::after {
  content: "";
  position: absolute;
}

.visual-lines::before {
  left: 16%;
  right: 16%;
  top: 38%;
  height: 2px;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 34px 0 rgba(255, 255, 255, 0.22), 0 -34px 0 rgba(255, 255, 255, 0.18);
}

.visual-lines::after {
  inset: 22% 18%;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.visual-boxes::before {
  inset: 24% 18% auto auto;
  width: 44%;
  height: 44%;
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(74, 155, 232, 0.18), rgba(74, 155, 232, 0.4));
}

.visual-boxes::after {
  inset: auto auto 18% 16%;
  width: 40%;
  height: 38%;
  border-radius: 20px;
  border: 2px solid rgba(15, 23, 41, 0.16);
}

.visual-columns::before {
  left: 18%;
  bottom: 18%;
  width: 18%;
  height: 28%;
  border-radius: 18px 18px 0 0;
  background: rgba(107, 184, 255, 0.36);
  box-shadow:
    84px -24px 0 rgba(107, 184, 255, 0.52),
    168px -52px 0 rgba(107, 184, 255, 0.72);
}

.visual-columns::after {
  left: 18%;
  right: 18%;
  bottom: 18%;
  height: 2px;
  background: rgba(255, 255, 255, 0.4);
}

.visual-arc::before {
  width: 72%;
  height: 72%;
  left: 14%;
  top: 18%;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.22);
}

.visual-arc::after {
  width: 34%;
  height: 34%;
  right: 18%;
  bottom: 22%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.38), transparent 70%);
}

.visual-path::before {
  inset: 22% 20%;
  border-radius: 999px;
  border: 2px dashed rgba(255, 255, 255, 0.28);
}

.visual-path::after {
  width: 84px;
  height: 84px;
  right: 18%;
  top: 22%;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.18);
}

.pillar-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pillar-kicker {
  margin-bottom: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.pillar-title {
  font-size: clamp(2rem, 4vw, 2.85rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.06em;
  text-transform: uppercase;
  color: #161b35;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
}

.pillar-subhead {
  margin-top: 14px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.45;
  color: #243f67;
}

.pillar-content p + a,
.pillar-content h3 + p {
  margin-top: 16px;
}

.pillar-content a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  margin-top: 20px;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(135deg, #2e75b6, #4a9be8);
  box-shadow: 0 10px 24px rgba(46, 117, 182, 0.24);
}

.pillar-content a::after {
  content: "→";
}

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

.process-card {
  display: grid;
  align-content: start;
  padding: 32px 28px;
  border: 1px solid var(--color-border);
  border-radius: 24px;
  background: var(--color-surface);
  box-shadow: var(--shadow-soft);
}

.process-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
  border-radius: 18px;
  font-size: 15px;
  font-weight: 800;
  color: var(--color-primary);
  background: rgba(46, 117, 182, 0.1);
}

.process-card h3 {
  max-width: 12ch;
  font-size: clamp(1.8rem, 2.3vw, 2.35rem);
  line-height: 1;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.process-card p {
  max-width: 32ch;
  margin-top: 14px;
  line-height: 1.72;
}

.centered-action {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.about-grid,
.pepsi-grid,
.cta-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px;
}

.about-copy {
  display: grid;
  gap: 20px;
}

.pepsi-copy {
  max-width: 620px;
  margin-top: 20px;
}

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

.pepsi-points article {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
}

.pepsi-points p,
.text-link {
  margin-top: 10px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: #ffffff;
}

.text-link::after {
  content: "→";
}

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

.proof-card {
  display: grid;
  align-content: start;
  padding: 30px 28px;
  border: 1px solid var(--color-border);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.proof-number {
  margin-bottom: 14px;
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.05em;
  color: var(--color-primary);
  white-space: nowrap;
}

.proof-card p:last-child {
  max-width: 30ch;
  margin-top: 12px;
  line-height: 1.72;
}

.proof-note {
  margin-top: 28px;
}

.proof-note p {
  max-width: 760px;
}

.faq-intro {
  max-width: 440px;
}

.faq-list {
  display: grid;
  gap: 9px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: 20px;
  background: #ffffff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.faq-item.is-open {
  border-color: rgba(46, 117, 182, 0.32);
  box-shadow: var(--shadow-soft);
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px;
  text-align: left;
  cursor: pointer;
}

.faq-trigger span:first-child {
  max-width: none;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.42;
  color: var(--color-text-strong);
  white-space: nowrap;
}

.faq-icon {
  flex: 0 0 auto;
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  color: var(--color-primary);
  transition: transform 0.2s ease;
}

.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
}

.faq-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.25s ease;
}

.faq-panel > p {
  overflow: hidden;
  padding: 0 24px 0;
}

.faq-item.is-open .faq-panel {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-panel > p {
  padding-bottom: 24px;
}

.check-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li + li {
  margin-top: 12px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-success);
  box-shadow: 0 0 0 8px rgba(116, 210, 158, 0.12);
}

.contact-block {
  margin-top: 28px;
}

.contact-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.contact-block a {
  display: inline-block;
  margin-top: 8px;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.1;
  color: #ffffff;
}

.placeholder-note {
  margin-top: 10px;
  font-size: 13px;
}

.contact-form {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow-card);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field-group + .field-group,
.form-row + .field-group,
.field-group + .button,
.button + .form-meta {
  margin-top: 16px;
}

.field-group label {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

input,
select,
textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.46);
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: rgba(107, 184, 255, 0.7);
  box-shadow: 0 0 0 4px rgba(46, 117, 182, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, 0.8) 50%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.8) 50%, transparent 50%);
  background-position:
    calc(100% - 22px) calc(50% - 3px),
    calc(100% - 16px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

textarea {
  resize: vertical;
  min-height: 154px;
}

.field-error {
  border-color: rgba(255, 111, 97, 0.9) !important;
  box-shadow: 0 0 0 4px rgba(255, 111, 97, 0.16) !important;
}

.form-meta {
  font-size: 13px;
}

.form-success {
  margin-top: 14px;
  color: #b9f3cf;
}

.hidden {
  display: none;
}

.site-footer {
  padding: 56px 0 24px;
  background: var(--color-footer);
  color: rgba(255, 255, 255, 0.58);
}

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

.footer-brand {
  display: grid;
  gap: 10px;
}

.brand-mark-footer {
  margin-bottom: 2px;
  font-size: 1rem;
  opacity: 0.8;
}

.footer-heading {
  margin-bottom: 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.74);
}

.site-footer p,
.site-footer a,
.site-footer .footer-brand a {
  font-size: 12px;
  line-height: 1.65;
}

.site-footer a {
  display: block;
  color: rgba(255, 255, 255, 0.54);
}

.site-footer a + a {
  margin-top: 7px;
}

.footer-bottom {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer .footer-brand p {
  max-width: 26ch;
  color: rgba(255, 255, 255, 0.42);
}

.site-footer .footer-brand > a:last-child {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 11px;
  letter-spacing: 0.04em;
}

.site-footer .footer-bottom p {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.42);
}

@media (max-width: 1120px) {
  .hero-layout,
  .about-grid,
  .pepsi-grid,
  .cta-grid,
  .faq-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    max-width: 640px;
  }

  .site-nav {
    gap: 18px;
  }

  .nav-phone {
    display: none;
  }
}

@media (max-width: 920px) {
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% + 10px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 26px;
    background: rgba(9, 16, 29, 0.98);
    box-shadow: var(--shadow-card);
  }

  .site-nav.is-open {
    display: flex;
  }

  .nav-group,
  .nav-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-link,
  .dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    padding: 0;
  }

  .dropdown-menu,
  .dropdown-menu-wide {
    position: static;
    min-width: 0;
    grid-template-columns: 1fr;
    margin-top: 8px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    display: none;
  }

  .nav-item-dropdown.is-open .dropdown-menu {
    display: grid;
  }

  .nav-actions .button,
  .nav-actions .nav-phone {
    width: 100%;
    justify-content: center;
  }

  .nav-phone {
    display: inline-flex;
    min-height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
  }

  .stat-grid,
  .process-grid,
  .proof-grid,
  .pepsi-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pillar-card,
  .pillar-card-reverse {
    grid-template-columns: 1fr;
  }

  .pillar-card-reverse .pillar-visual {
    order: 0;
  }
}

@media (max-width: 680px) {
  .section {
    padding: 88px 0;
  }

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .hero-section {
    padding-top: calc(var(--nav-height) + 34px);
  }

  .brand-ticker-section {
    margin-top: -156px;
    padding-top: 4px;
  }

  .hero-actions,
  .form-row,
  .stat-grid,
  .process-grid,
  .proof-grid,
  .pepsi-points {
    grid-template-columns: 1fr;
  }

  .button,
  .hero-actions .button {
    width: 100%;
  }

  .hero-panel,
  .pillar-card,
  .process-card,
  .proof-card,
  .contact-form {
    padding: 24px;
  }

  .faq-trigger {
    padding: 20px;
  }
}

/* Homepage pillar overrides: cleaner, sharper, more important */
.pillar-card {
  grid-template-columns: 400px minmax(0, 1fr);
  gap: 34px;
  padding: 26px;
  border: 1px solid #dbe4ef;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(15, 23, 41, 0.08);
}

.pillar-card::before {
  inset: 0 0 auto;
  height: 6px;
  background: var(--pillar-accent, #2e75b6);
}

.pillar-card-formulation {
  --pillar-accent: #2e75b6;
}

.pillar-card-packaging {
  --pillar-accent: #4a9be8;
}

.pillar-card-production {
  --pillar-accent: #1e8f7a;
}

.pillar-card-marketing {
  --pillar-accent: #6d5ce7;
}

.pillar-card-sales {
  --pillar-accent: #d97132;
}

.pillar-card-reverse {
  grid-template-columns: minmax(0, 1fr) 400px;
}

.pillar-visual {
  min-height: 310px;
  box-shadow: 0 14px 34px rgba(15, 23, 41, 0.14);
}

.pillar-image {
  transform: scale(1.01);
}

.pillar-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: #08101d;
}

.pillar-visual-video::after {
  background:
    linear-gradient(180deg, rgba(7, 18, 36, 0.08), rgba(7, 18, 36, 0.28)),
    radial-gradient(circle at top right, rgba(107, 184, 255, 0.14), transparent 36%);
}

.pillar-visual::after {
  background: linear-gradient(180deg, rgba(10, 22, 40, 0.06), rgba(10, 22, 40, 0.24));
}

.pillar-content {
  padding: 6px 6px 6px 0;
}

.pillar-kicker {
  margin-bottom: 12px;
  font-size: 12px;
  letter-spacing: 0.22em;
  color: #6d7d95;
}

.pillar-title {
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  line-height: 0.94;
}

.pillar-subhead {
  max-width: 34ch;
  margin-top: 16px;
  font-size: 19px;
  line-height: 1.36;
  letter-spacing: -0.01em;
  color: #213556;
  text-wrap: balance;
}

.pillar-content p + a,
.pillar-content h3 + p {
  margin-top: 18px;
}

.pillar-content a {
  margin-top: 24px;
  padding: 0;
  border-radius: 0;
  color: var(--pillar-accent, #2e75b6);
  background: transparent;
  box-shadow: none;
}

@media (max-width: 920px) {
  .pillar-card,
  .pillar-card-reverse {
    grid-template-columns: 1fr;
  }
}

/* Service block motion */
@keyframes pillar-rise-in {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pillar-card {
  animation: pillar-rise-in 0.7s ease both;
  transform-origin: center bottom;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.pillar-card:nth-child(2) {
  animation-delay: 0.08s;
}

.pillar-card:nth-child(3) {
  animation-delay: 0.16s;
}

.pillar-card:nth-child(4) {
  animation-delay: 0.24s;
}

.pillar-card:nth-child(5) {
  animation-delay: 0.32s;
}

.pillar-visual,
.pillar-image,
.pillar-content {
  transition: transform 0.45s ease, box-shadow 0.45s ease, filter 0.45s ease;
}

.pillar-card:hover,
.pillar-card:focus-within {
  transform: translateY(-10px);
  box-shadow: 0 24px 54px rgba(15, 23, 41, 0.14);
  border-color: rgba(74, 155, 232, 0.35);
}

.pillar-card:hover .pillar-visual,
.pillar-card:focus-within .pillar-visual {
  transform: translateY(-4px);
  box-shadow: 0 22px 46px rgba(15, 23, 41, 0.18);
}

.pillar-card:hover .pillar-image,
.pillar-card:focus-within .pillar-image {
  transform: scale(1.05);
  filter: saturate(1.05) contrast(1.03);
}

.pillar-card:hover .pillar-content,
.pillar-card:focus-within .pillar-content {
  transform: translateX(5px);
}

@media (prefers-reduced-motion: reduce) {
  .pillar-card,
  .pillar-visual,
  .pillar-image,
  .pillar-content {
    animation: none;
    transition: none;
  }
}


/* Inner page system */
.inner-page {
  background: linear-gradient(180deg, #eef2f7 0%, #ffffff 18%, #f6f8fb 100%);
}

.inner-header {
  background: rgba(10, 18, 32, 0.94);
  backdrop-filter: blur(20px);
}

.page-hero {
  padding: calc(var(--nav-height) + 72px) 0 84px;
  background: linear-gradient(180deg, #08101d 0%, #0f1729 100%);
  color: #ffffff;
}

.page-hero.accent-blue {
  background: radial-gradient(circle at 80% 20%, rgba(74, 155, 232, 0.22), transparent 22%), linear-gradient(180deg, #08101d 0%, #10213d 100%);
}

.page-hero.accent-sky {
  background: radial-gradient(circle at 78% 24%, rgba(107, 184, 255, 0.24), transparent 22%), linear-gradient(180deg, #08101d 0%, #12243f 100%);
}

.page-hero.accent-green {
  background: radial-gradient(circle at 78% 24%, rgba(30, 143, 122, 0.22), transparent 22%), linear-gradient(180deg, #08101d 0%, #112824 100%);
}

.page-hero.accent-violet {
  background: radial-gradient(circle at 78% 24%, rgba(109, 92, 231, 0.24), transparent 22%), linear-gradient(180deg, #08101d 0%, #1d1835 100%);
}

.page-hero.accent-warm {
  background: radial-gradient(circle at 78% 24%, rgba(217, 113, 50, 0.24), transparent 22%), linear-gradient(180deg, #08101d 0%, #302015 100%);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 40px;
  align-items: center;
}

.page-hero-subhead {
  max-width: 54ch;
  margin-top: 20px;
  font-size: 18px;
  line-height: 1.7;
  color: var(--color-muted);
  text-wrap: pretty;
}

.page-hero-visual {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  box-shadow: 0 22px 60px rgba(4, 8, 18, 0.22);
}

.page-hero-visual img,
.page-hero-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 420px;
}

.page-hero-visual-video {
  background: #08101d;
}

.formulation-page .page-hero-copy h1,
.packaging-page .page-hero-copy h1,
.production-page .page-hero-copy h1,
.marketing-page .page-hero-copy h1,
.sales-page .page-hero-copy h1,
.energy-page .page-hero-copy h1,
.sports-page .page-hero-copy h1,
.non-alcoholic-page .page-hero-copy h1,
.alcoholic-page .page-hero-copy h1,
.cbd-page .page-hero-copy h1,
.thc-page .page-hero-copy h1,
.coffee-page .page-hero-copy h1,
.tea-page .page-hero-copy h1,
.juice-page .page-hero-copy h1,
.smoothies-page .page-hero-copy h1,
.functional-page .page-hero-copy h1,
.wellness-page .page-hero-copy h1 {
  max-width: 11ch;
}

.formulation-page .page-hero-subhead,
.packaging-page .page-hero-subhead,
.production-page .page-hero-subhead,
.marketing-page .page-hero-subhead,
.sales-page .page-hero-subhead,
.energy-page .page-hero-subhead,
.sports-page .page-hero-subhead,
.non-alcoholic-page .page-hero-subhead,
.alcoholic-page .page-hero-subhead,
.cbd-page .page-hero-subhead,
.thc-page .page-hero-subhead,
.coffee-page .page-hero-subhead,
.tea-page .page-hero-subhead,
.juice-page .page-hero-subhead,
.smoothies-page .page-hero-subhead,
.functional-page .page-hero-subhead,
.wellness-page .page-hero-subhead {
  max-width: 46ch;
}

.formulation-page .page-metric-value-text,
.packaging-page .page-metric-value-text,
.production-page .page-metric-value-text,
.marketing-page .page-metric-value-text,
.sales-page .page-metric-value-text,
.energy-page .page-metric-value-text,
.sports-page .page-metric-value-text,
.non-alcoholic-page .page-metric-value-text,
.alcoholic-page .page-metric-value-text,
.cbd-page .page-metric-value-text,
.thc-page .page-metric-value-text,
.coffee-page .page-metric-value-text,
.tea-page .page-metric-value-text,
.juice-page .page-metric-value-text,
.smoothies-page .page-metric-value-text,
.functional-page .page-metric-value-text,
.wellness-page .page-metric-value-text {
  max-width: none;
  font-size: clamp(1.06rem, 1.18vw, 1.68rem);
  line-height: 0.92;
  letter-spacing: -0.035em;
  white-space: nowrap;
}

.page-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.page-metric {
  display: grid;
  align-content: start;
  min-height: 138px;
  overflow: hidden;
  padding: 24px 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
}

.page-metric-value {
  max-width: 10.5ch;
  font-size: clamp(1.7rem, 2vw, 2.6rem);
  font-weight: 900;
  line-height: 0.94;
  letter-spacing: -0.05em;
  color: #ffffff;
  text-wrap: balance;
}

.page-metric-value-text {
  max-width: none;
  font-size: clamp(1.35rem, 1.45vw, 2rem);
  line-height: 0.92;
  letter-spacing: -0.045em;
  white-space: nowrap;
}

.page-metric-label {
  max-width: 16ch;
  margin-top: 14px;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #93a7c3;
  text-wrap: balance;
}

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

.sports-page .page-metric {
  min-height: 126px;
  padding: 20px 18px;
}

.sports-page .page-metric-value-text {
  font-size: clamp(0.92rem, 0.98vw, 1.32rem);
  letter-spacing: -0.02em;
}

.sports-page .page-metric-label {
  max-width: none;
}

.formulation-page .page-metric-label,
.packaging-page .page-metric-label,
.production-page .page-metric-label,
.marketing-page .page-metric-label,
.sales-page .page-metric-label {
  max-width: none;
}

.split-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}

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

.detail-card {
  display: grid;
  align-content: start;
  padding: 30px 28px;
  border: 1px solid #dbe4ef;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 36px rgba(15, 23, 41, 0.06);
}

.detail-kicker {
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.detail-card h3 {
  max-width: 14ch;
  font-size: clamp(1.85rem, 2.2vw, 2.35rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.detail-card p {
  max-width: 34ch;
  margin-top: 14px;
  line-height: 1.72;
  text-wrap: pretty;
}

.detail-list {
  max-width: 32ch;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.detail-list li {
  position: relative;
  padding-left: 18px;
  line-height: 1.62;
  color: var(--color-text);
}

.detail-list li + li {
  margin-top: 10px;
}

.detail-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-primary);
}

.faq-grid-single {
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  align-items: center;
}

.cta-simple .cta-simple-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cta-simple-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.button-secondary-dark {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
}

.pipeline-hero .page-hero-copy h1 {
  max-width: 11ch;
}

.pipeline-page {
  background: linear-gradient(180deg, #eef2f7 0%, #ffffff 18%, #f6f8fb 100%);
}

.pipeline-hero {
  position: relative;
  overflow: hidden;
}

.pipeline-hero-grid {
  align-items: stretch;
}

.pipeline-brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  justify-self: start;
  width: fit-content;
  max-width: min(100%, 42rem);
  margin-bottom: 22px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
}

.pipeline-logo-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 84px;
  padding: 14px 24px;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 18px 34px rgba(7, 13, 26, 0.18);
  flex: none;
}

.pipeline-association-chip {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 84px;
  padding: 14px 20px 14px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 34px rgba(7, 13, 26, 0.12);
}

.pipeline-association-mark {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  flex: none;
}

.pipeline-association-dot {
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 999px;
}

.pipeline-association-dot-blue {
  left: 3px;
  background: linear-gradient(180deg, #4a9be8 0%, #2e75b6 100%);
}

.pipeline-association-dot-red {
  right: 3px;
  background: linear-gradient(180deg, #ef4c62 0%, #c5283d 100%);
}

.pipeline-bevgrow-logo {
  width: 238px;
  height: auto;
}

.pipeline-association-copy {
  display: grid;
  gap: 2px;
  padding-left: 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  width: fit-content;
}

.pipeline-association-kicker {
  font-size: clamp(1.08rem, 1.34vw, 1.42rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #ffffff;
}

.pipeline-association-line {
  max-width: 15ch;
  font-size: clamp(0.58rem, 0.65vw, 0.7rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  color: #8ebcf6;
}

.pipeline-hero .page-hero-copy {
  display: grid;
  align-content: start;
}

.pipeline-page-metrics .page-metric {
  min-height: 168px;
}

.pipeline-page-metrics .page-metric-label {
  max-width: none;
}

.pipeline-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.pipeline-hero-video-pocket {
  width: min(100%, 620px);
  aspect-ratio: 1 / 1;
  margin-top: 22px;
  overflow: hidden;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 16px 36px rgba(7, 13, 26, 0.18);
}

.pipeline-hero-video-pocket-media {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
  background: transparent;
}

.pipeline-hero-button {
  background: linear-gradient(135deg, #ef4c62 0%, #c5283d 100%);
  box-shadow: 0 18px 34px rgba(197, 40, 61, 0.28);
}

body.pipeline-modal-open {
  overflow: hidden;
}

.pipeline-inquiry-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.24s ease, visibility 0.24s ease;
}

.pipeline-inquiry-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.pipeline-inquiry-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 13, 26, 0.68);
  backdrop-filter: blur(10px);
}

.pipeline-inquiry-dialog {
  position: relative;
  width: min(100%, 528px);
  padding: 32px 28px 28px;
  border: 1px solid rgba(26, 26, 46, 0.08);
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(74, 155, 232, 0.16), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
  box-shadow: 0 28px 80px rgba(7, 13, 26, 0.22);
}

.pipeline-inquiry-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(26, 26, 46, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-text-strong);
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.pipeline-inquiry-close:hover,
.pipeline-inquiry-close:focus-visible {
  transform: rotate(90deg);
  border-color: rgba(46, 117, 182, 0.28);
}

.pipeline-inquiry-close span {
  display: block;
  font-size: 28px;
  line-height: 1;
  transform: rotate(45deg);
}

.pipeline-inquiry-kicker {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.pipeline-inquiry-dialog h2 {
  margin: 0;
  max-width: 13.5ch;
  font-size: clamp(1.9rem, 4vw, 2.55rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.pipeline-inquiry-copy {
  margin: 14px 0 0;
  max-width: 35ch;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  text-wrap: pretty;
}

.pipeline-inquiry-form {
  margin-top: 20px;
}

.pipeline-form-bot-field {
  position: absolute;
  left: -9999px;
}

.pipeline-inquiry-field + .pipeline-inquiry-field,
.pipeline-inquiry-actions,
.pipeline-inquiry-success,
.pipeline-inquiry-error {
  margin-top: 14px;
}

.pipeline-inquiry-field {
  display: grid;
  gap: 8px;
}

.pipeline-inquiry-field label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--color-text-strong);
}

.pipeline-inquiry-field input {
  padding: 14px 16px;
  border: 1px solid rgba(26, 26, 46, 0.1);
  border-radius: 18px;
  font-size: 1rem;
  color: var(--color-text-strong);
  background: rgba(255, 255, 255, 0.96);
}

.pipeline-inquiry-field input::placeholder {
  color: rgba(26, 26, 46, 0.42);
}

.pipeline-inquiry-field input:focus {
  border-color: rgba(46, 117, 182, 0.45);
  box-shadow: 0 0 0 4px rgba(74, 155, 232, 0.16);
  background: #ffffff;
}

.pipeline-inquiry-actions {
  display: grid;
  gap: 10px;
}

.pipeline-inquiry-submit {
  width: 100%;
}

.pipeline-inquiry-submit:disabled {
  opacity: 0.72;
  cursor: wait;
}

.pipeline-inquiry-note {
  margin: 0;
  max-width: 34ch;
  font-size: 12px;
  line-height: 1.45;
  color: var(--color-text);
}

.pipeline-inquiry-success {
  margin-bottom: 0;
  max-width: 35ch;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(116, 210, 158, 0.12);
  color: #1f5d3d;
  font-size: 13px;
  line-height: 1.5;
  font-weight: 600;
  text-wrap: pretty;
}

.pipeline-inquiry-error {
  margin-bottom: 0;
  max-width: 35ch;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(239, 76, 98, 0.12);
  color: #8f2031;
  font-size: 13px;
  line-height: 1.5;
  font-weight: 600;
  text-wrap: pretty;
}

.pipeline-hero-panel {
  min-height: 100%;
  border-color: rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at top right, rgba(107, 184, 255, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
}

.pipeline-hero-panel-inner {
  display: grid;
  gap: 20px;
  min-height: 100%;
  padding: 32px;
}

.pipeline-panel-heading {
  display: grid;
  gap: 12px;
}

.pipeline-panel-heading h2 {
  max-width: 12ch;
  font-size: clamp(2rem, 2.4vw, 2.7rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  color: #ffffff;
}

.pipeline-visual-kicker,
.pipeline-process-number,
.pipeline-reach-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.pipeline-visual-kicker {
  color: #a8d1ff;
}

.pipeline-scenario-tabs {
  display: grid;
  gap: 18px;
}

.pipeline-scenario-controls {
  display: flex;
  gap: 8px;
  flex-wrap: nowrap;
}

.pipeline-scenario-button {
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.74);
  background: rgba(255, 255, 255, 0.04);
  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease,
    transform 0.2s ease;
}

.pipeline-scenario-button:hover,
.pipeline-scenario-button:focus-visible,
.pipeline-scenario-button.is-active {
  color: #ffffff;
  border-color: rgba(107, 184, 255, 0.46);
  background: rgba(107, 184, 255, 0.16);
  transform: translateY(-1px);
}

.pipeline-scenario-panel {
  display: grid;
  gap: 0;
}

.pipeline-scenario-panel h3 {
  max-width: 12ch;
  font-size: clamp(1.7rem, 2vw, 2.2rem);
  line-height: 1;
  letter-spacing: -0.04em;
  color: #ffffff;
}

.pipeline-scenario-panel > p {
  max-width: 34ch;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.74);
}

.pipeline-detail-list {
  margin-top: 18px;
}

.pipeline-detail-list li {
  color: rgba(255, 255, 255, 0.78);
}

.pipeline-detail-list li::before {
  background: var(--color-accent-light);
}

.pipeline-step-stack {
  display: grid;
  gap: 16px;
}

.pipeline-step-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 22px 22px 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background: rgba(8, 16, 29, 0.36);
  backdrop-filter: blur(14px);
}

.pipeline-step-number,
.pipeline-process-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  color: #ffffff;
  background: rgba(74, 155, 232, 0.2);
}

.pipeline-step-card h2 {
  font-size: clamp(1.2rem, 1.6vw, 1.55rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #ffffff;
}

.pipeline-step-card p {
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.66;
  color: rgba(255, 255, 255, 0.72);
}

.pipeline-intro > div:last-child {
  display: grid;
  gap: 18px;
}

.pipeline-intro-heading {
  display: grid;
  align-content: start;
}

.pipeline-intro-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(192px, 19.2vw, 252px);
  align-content: start;
  column-gap: 28px;
  row-gap: 10px;
  max-width: 35ch;
  position: relative;
  padding-top: 52px;
  padding: 28px 30px;
  border-radius: 28px;
  background: linear-gradient(160deg, #2f78cb 0%, #1f5faa 100%);
  box-shadow: 0 18px 40px rgba(31, 95, 170, 0.18);
}

.pipeline-intro-kicker {
  grid-column: 1;
  margin: 0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(235, 244, 255, 0.84);
}

.pipeline-intro-copy h3 {
  grid-column: 1;
  max-width: 12ch;
  font-size: clamp(2.1rem, 2.65vw, 2.7rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  color: #ffffff;
}

.pipeline-intro-copy p {
  grid-column: 1;
  max-width: 35ch;
  margin: 0;
  font-size: 16px;
  line-height: 1.72;
  color: rgba(244, 249, 255, 0.92);
}

.pipeline-intro-statement {
  display: grid;
  gap: 0;
  max-width: 34ch;
  font-size: 13px;
  line-height: 1.52;
  color: rgba(244, 249, 255, 0.82);
}

.pipeline-intro-line {
  display: block;
  white-space: nowrap;
}

@keyframes pipeline-pepsi-spin {
  0%,
  12%,
  100% {
    transform: translateX(-12px) rotate(0deg) scale(1);
  }

  34% {
    transform: translateX(-12px) rotate(540deg) scale(1.04);
  }

  52% {
    transform: translateX(-12px) rotate(720deg) scale(1.08);
  }

  70% {
    transform: translateX(-12px) rotate(900deg) scale(1);
  }
}

.pipeline-intro-pepsi-mark {
  grid-column: 2;
  grid-row: 1 / span 3;
  align-self: center;
  justify-self: center;
  position: relative;
  width: clamp(180px, 18vw, 228px);
  aspect-ratio: 1;
  border-radius: 999px;
  overflow: visible;
  transform: translateX(-12px);
  will-change: transform;
  isolation: isolate;
  animation: pipeline-pepsi-spin 6.4s cubic-bezier(0.22, 1, 0.36, 1) infinite;
  pointer-events: none;
}

.pipeline-intro-pepsi-mark::before {
  content: none;
}

.pipeline-intro-pepsi-mark::after {
  content: none;
}

.pipeline-intro-pepsi-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  border-radius: 999px;
  box-shadow: 0 18px 34px rgba(13, 48, 92, 0.24);
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.pipeline-intro-follow {
  margin-top: 6px;
  max-width: 35ch;
  color: var(--color-text-strong);
}

.pipeline-intro-follow,
.pipeline-reach-follow {
  color: var(--color-text-strong);
}

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

.pipeline-benefit-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.pipeline-benefit-card .detail-kicker {
  display: inline-block;
  width: max-content;
  min-height: 0;
  margin-bottom: 1px;
  max-width: none;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.18em;
  white-space: nowrap;
}

.pipeline-benefit-card h3 {
  max-width: 11.6ch;
  margin-top: -72px;
  min-height: 4.12em;
}

.pipeline-benefit-card .detail-list {
  max-width: none;
  margin-top: auto;
  padding-top: 18px;
}

.pipeline-benefit-card .detail-list li {
  font-size: 13px;
  line-height: 1.4;
  white-space: nowrap;
}

.pipeline-benefit-card .detail-list li + li {
  margin-top: 8px;
}

.pipeline-principles-grid .detail-card h3 {
  max-width: 10.4ch;
}

.pipeline-section-intro {
  margin-bottom: 48px;
}

.pipeline-process-section {
  background:
    radial-gradient(circle at 18% 16%, rgba(74, 155, 232, 0.18), transparent 24%),
    linear-gradient(180deg, #091120 0%, #0f1729 100%);
}

.pipeline-stage-shell {
  display: grid;
  grid-template-columns: minmax(340px, 0.98fr) minmax(0, 1.02fr);
  gap: 22px;
  align-items: start;
}

.pipeline-stage-list {
  display: grid;
  gap: 12px;
}

.pipeline-stage-button {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 74px;
  padding: 18px 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  text-align: left;
  background: rgba(255, 255, 255, 0.04);
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.pipeline-stage-button:hover,
.pipeline-stage-button:focus-visible,
.pipeline-stage-button.is-active {
  border-color: rgba(107, 184, 255, 0.28);
  background: rgba(107, 184, 255, 0.12);
  box-shadow: 0 18px 36px rgba(7, 13, 26, 0.18);
  transform: translateY(-1px);
}

.pipeline-stage-meta {
  min-width: 90px;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
}

.pipeline-stage-title {
  max-width: none;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.08;
  white-space: nowrap;
  color: #ffffff;
}

.pipeline-stage-panels {
  display: grid;
  gap: 10px;
}

.pipeline-stage-panel {
  display: grid;
  align-content: start;
  min-height: 100%;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(107, 184, 255, 0.18), transparent 34%),
    rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow-card);
}

.pipeline-stage-panel h3 {
  max-width: 12ch;
  margin-top: 18px;
  font-size: clamp(2rem, 2.4vw, 2.8rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  color: #ffffff;
}

.pipeline-stage-panel > p {
  max-width: 40ch;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.76);
}

.pipeline-stage-panel .detail-list {
  margin-top: 18px;
}

.pipeline-stage-panel .detail-list li {
  color: rgba(255, 255, 255, 0.76);
}

.pipeline-stage-panel .detail-list li::before {
  background: var(--color-accent-light);
}

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

.pipeline-process-card {
  display: grid;
  align-content: start;
  padding: 30px 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow-card);
}

.pipeline-process-card-accent {
  background: linear-gradient(180deg, rgba(74, 155, 232, 0.18), rgba(255, 255, 255, 0.08));
}

.pipeline-process-card h3 {
  max-width: 12ch;
  margin-top: 18px;
  font-size: clamp(1.85rem, 2.1vw, 2.3rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
  color: #ffffff;
}

.pipeline-process-card p {
  max-width: 28ch;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.76);
}

.pipeline-reach-shell {
  display: grid;
  gap: 32px;
}

.pipeline-proof-intro > div:last-child {
  display: grid;
  gap: 18px;
}

.pipeline-proof-intro {
  margin-bottom: 32px;
}

.pipeline-proof-heading {
  display: grid;
  align-content: start;
}

.pipeline-proof-copy {
  display: grid;
  align-content: start;
  gap: 14px;
  max-width: 34ch;
  padding-top: 52px;
}

.pipeline-proof-kicker {
  margin: 0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.pipeline-proof-copy h3 {
  max-width: 13ch;
  font-size: clamp(1.4rem, 1.75vw, 1.8rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.pipeline-proof-copy p {
  max-width: 34ch;
  margin: 0;
  font-size: 16px;
  line-height: 1.72;
}

.pipeline-proof-grid .detail-card {
  min-height: 100%;
}

.pipeline-proof-card {
  display: grid;
  align-content: start;
  gap: 18px;
}

.pipeline-proof-card h3 {
  max-width: none;
  min-height: 4.08em;
  margin: -72px 0 0;
}

.pipeline-proof-title-line {
  display: block;
}

.pipeline-proof-card .detail-list {
  max-width: none;
  margin: 0;
}

.pipeline-proof-card .detail-list li {
  font-size: 14px;
  line-height: 1.45;
  white-space: nowrap;
}

.pipeline-proof-card .detail-list li + li {
  margin-top: 8px;
}

.pipeline-proof-grid .detail-card h3 {
  max-width: 12ch;
}

.pipeline-card-note {
  margin-top: 16px;
  color: var(--color-text-strong);
}

.pipeline-reach-copy {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
  gap: 36px;
  align-items: start;
}

.pipeline-reach-text {
  display: grid;
  gap: 18px;
  padding-top: 8px;
}

.pipeline-reach-band,
.pipeline-role-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.pipeline-reach-stat {
  padding: 28px;
  border: 1px solid #dbe4ef;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 248, 251, 0.96));
  box-shadow: 0 16px 36px rgba(15, 23, 41, 0.06);
}

.pipeline-reach-value {
  font-size: clamp(2.8rem, 4vw, 4rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.06em;
  color: var(--color-primary);
}

.pipeline-reach-label {
  display: block;
  max-width: 18ch;
  margin-top: 12px;
  line-height: 1.45;
  color: var(--color-text);
  letter-spacing: 0.12em;
}

.pipeline-role-intro {
  margin-bottom: 44px;
}

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

.pipeline-role-card h3 {
  max-width: 9.5ch;
  min-height: 0;
}

.pipeline-role-card p {
  min-height: 0;
}

.pipeline-role-card > p {
  max-width: 33ch;
}

.pipeline-role-block {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid #dbe4ef;
}

.pipeline-role-label {
  margin: 0 0 12px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.pipeline-role-list {
  max-width: 31ch;
  margin-top: 0;
}

.pipeline-role-note {
  max-width: 27ch;
  font-size: 15px;
  line-height: 1.62;
  color: var(--color-text-strong);
}

.pipeline-cta h2 {
  max-width: 12ch;
}

.pipeline-cta p {
  max-width: 40ch;
}

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

[data-reveal].is-revealed {
  opacity: 1;
  transform: none;
}

[data-count-up] {
  display: inline-block;
}

@media (max-width: 980px) {
  .page-hero-grid,
  .split-intro,
  .detail-grid,
  .faq-grid-single,
  .cta-simple .cta-simple-shell {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: stretch;
  }

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

  .pipeline-stage-shell,
  .pipeline-process-grid,
  .pipeline-reach-band,
  .pipeline-role-grid,
  .pipeline-reach-copy {
    grid-template-columns: 1fr;
  }

  .pipeline-hero .page-hero-copy h1 {
    max-width: none;
  }

  .pipeline-stage-button {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 12px;
  }

  .pipeline-stage-meta {
    min-width: 82px;
  }

  .pipeline-stage-title {
    font-size: 14px;
  }

  .pipeline-hero-actions,
  .pipeline-scenario-controls {
    flex-direction: column;
    align-items: stretch;
  }

  .pipeline-hero-video-pocket {
    width: min(100%, 320px);
  }

  .pipeline-inquiry-dialog {
    width: min(100%, 480px);
    padding: 26px 20px 20px;
  }

  .pipeline-inquiry-close {
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
  }

  .pipeline-inquiry-dialog h2 {
    max-width: 12.5ch;
    font-size: clamp(1.85rem, 8vw, 2.2rem);
  }

  .pipeline-intro-copy {
    max-width: none;
    padding-top: 0;
  }

  .pipeline-proof-copy {
    max-width: none;
    padding-top: 0;
  }

  .pipeline-proof-copy h3 {
    max-width: none;
  }

  .pipeline-proof-card h3 {
    min-height: 0;
  }

  .pipeline-proof-card .detail-list li {
    white-space: normal;
  }

  .pipeline-benefit-card .detail-kicker,
  .pipeline-benefit-card .detail-list li {
    white-space: normal;
  }

  .pipeline-intro-copy h3 {
    max-width: none;
  }

  .pipeline-intro-line {
    white-space: normal;
  }

  .pipeline-intro-copy {
    grid-template-columns: minmax(0, 1fr);
  }

  .pipeline-intro-pepsi-mark {
    display: none;
  }

  .inner-page .split-intro.pipeline-intro .pipeline-intro-heading h2 {
    max-width: none;
    font-size: clamp(2.4rem, 8vw, 3.125rem);
  }

  .pipeline-hero-panel-inner,
  .pipeline-reach-stat,
  .pipeline-process-card,
  .pipeline-stage-panel,
  .pipeline-stage-button {
    padding: 24px;
  }

  .capability-panel {
    padding-right: 28px;
  }

  .capability-graphic {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    margin-top: 18px;
    transform: none;
  }
}

@media (max-width: 640px) {
  .pipeline-brand-lockup {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
    border-radius: 24px;
  }

  .pipeline-logo-chip {
    width: 100%;
    justify-content: flex-start;
    min-height: 72px;
    padding: 14px 18px;
    border-radius: 18px;
  }

  .pipeline-association-chip {
    width: 100%;
    min-height: 72px;
    padding: 14px 18px;
    border-radius: 18px;
  }

  .pipeline-bevgrow-logo {
    width: min(100%, 220px);
  }

  .pipeline-association-copy {
    gap: 6px;
    padding-left: 0;
    border-left: 0;
  }

  .pipeline-association-kicker {
    font-size: 1.05rem;
    line-height: 1;
    letter-spacing: 0.08em;
  }

  .pipeline-association-line {
    max-width: none;
    font-size: 0.64rem;
    line-height: 1.05;
    letter-spacing: 0.08em;
    white-space: nowrap;
  }

  .pipeline-stage-panel h3,
  .pipeline-panel-heading h2 {
    max-width: none;
  }

  .pipeline-stage-button {
    grid-template-columns: 1fr;
    gap: 8px;
    align-items: start;
  }

  .pipeline-stage-meta {
    min-width: 0;
  }

  .pipeline-stage-title {
    white-space: normal;
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .pipeline-scenario-button,
  .pipeline-stage-button {
    transition: none;
  }

  .pipeline-intro-pepsi-mark,
  .pipeline-intro-pepsi-mark::before,
  .pipeline-intro-pepsi-mark::after,
  .pipeline-inquiry-modal,
  .pipeline-inquiry-close {
    animation: none;
  }
}

.nav-link.is-current,
.dropdown-menu a.is-current,
.site-footer a.is-current {
  color: #ffffff;
}

.dropdown-menu a.is-current,
.site-footer a.is-current {
  font-weight: 700;
}

/* Formulation page polish */
.formulation-intro {
  max-width: 860px;
}

.formulation-intro p:last-child {
  max-width: 66ch;
  text-wrap: pretty;
}

.capability-copy-video {
  margin-top: 24px;
}

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

.flow-card {
  display: grid;
  align-content: start;
  grid-template-rows: auto auto 1fr;
  min-height: 528px;
  padding: 42px 46px 38px;
  border: 1px solid #dbe4ef;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 251, 255, 0.96));
  box-shadow: 0 18px 40px rgba(15, 23, 41, 0.06);
}

.flow-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border-radius: 18px;
  font-size: 14px;
  font-weight: 800;
  color: var(--color-primary);
  background: rgba(46, 117, 182, 0.1);
}

.flow-card h3 {
  max-width: 10.5ch;
  font-size: clamp(2.05rem, 2.15vw, 2.55rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.flow-card p:last-child {
  max-width: 22ch;
  margin-top: 22px;
  font-size: 16px;
  line-height: 1.72;
  text-wrap: pretty;
}

.formulation-capability-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 28px;
  align-items: start;
}

.capability-panels {
  display: grid;
  gap: 18px;
}

.capability-panel {
  position: relative;
  padding: 28px 224px 28px 28px;
  border: 1px solid #dbe4ef;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(15, 23, 41, 0.05);
}

.capability-panel-copy {
  display: block;
}

.capability-panel h3 {
  margin-top: 6px;
  font-size: 30px;
  line-height: 1.04;
}

.capability-graphic {
  position: absolute;
  top: 50%;
  right: 24px;
  width: 164px;
  min-height: 156px;
  transform: translateY(-50%);
  border-radius: 22px;
  background: linear-gradient(180deg, #f6f9fd, #eef4fb);
  overflow: hidden;
}

.capability-graphic::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(46, 117, 182, 0.08);
  border-radius: 18px;
}

.graphic-chip,
.constraint-card,
.range-pill {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.capability-graphic-architecture .graphic-chip {
  background: rgba(46, 117, 182, 0.1);
  color: #2c5f96;
}

.chip-flavor {
  top: 24px;
  left: 18px;
}

.chip-function {
  top: 58px;
  right: 18px;
}

.chip-balance {
  bottom: 22px;
  left: 34px;
}

.graphic-node,
.graphic-line {
  position: absolute;
}

.graphic-node {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #4a9be8;
  box-shadow: 0 0 0 8px rgba(74, 155, 232, 0.12);
}

.node-core {
  top: 68px;
  left: 74px;
}

.node-side {
  bottom: 34px;
  right: 36px;
  width: 10px;
  height: 10px;
}

.line-main {
  left: 48px;
  top: 74px;
  width: 92px;
  height: 2px;
  background: linear-gradient(90deg, rgba(74, 155, 232, 0.2), rgba(74, 155, 232, 0.7));
}

.line-curve {
  right: 28px;
  top: 44px;
  width: 54px;
  height: 54px;
  border-right: 2px solid rgba(74, 155, 232, 0.45);
  border-bottom: 2px solid rgba(74, 155, 232, 0.45);
  border-bottom-right-radius: 28px;
}

.capability-graphic-constraints .constraint-card {
  background: rgba(26, 28, 46, 0.06);
  color: #314664;
}

.capability-graphic-constraints .constraint-card:nth-child(1) {
  top: 22px;
  left: 24px;
}

.capability-graphic-constraints .constraint-card:nth-child(2) {
  top: 62px;
  right: 20px;
}

.capability-graphic-constraints .constraint-card:nth-child(3) {
  bottom: 22px;
  left: 42px;
}

.constraint-ring {
  position: absolute;
  inset: 34px 30px;
  border: 2px dashed rgba(46, 117, 182, 0.28);
  border-radius: 50%;
}

.constraint-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #2e75b6;
}

.dot-one {
  right: 34px;
  top: 36px;
}

.dot-two {
  left: 28px;
  bottom: 34px;
}

.capability-graphic-range {
  display: flex;
  align-items: center;
  justify-content: center;
}

.capability-graphic-range .range-pill {
  background: rgba(46, 117, 182, 0.1);
  color: #2e5f93;
}

.pill-energy {
  top: 22px;
  left: 28px;
}

.pill-functional {
  top: 26px;
  right: 18px;
}

.pill-rtd {
  top: 66px;
  left: 64px;
}

.pill-coffee {
  bottom: 26px;
  left: 22px;
}

.pill-shots {
  bottom: 22px;
  right: 28px;
}

.formulation-feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 32px;
  align-items: start;
}

.feature-bullets {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.feature-bullets div {
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
}

.feature-bullets strong {
  display: block;
  font-size: 18px;
  font-weight: 800;
  color: #ffffff;
}

.feature-bullets p {
  margin-top: 8px;
}

.feature-side-stack {
  display: grid;
  gap: 24px;
  align-content: start;
}

.feature-pullquote {
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 22px 55px rgba(4, 8, 18, 0.2);
}

.pullquote-label {
  margin-bottom: 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.pullquote-text {
  font-size: 30px;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: #ffffff;
  text-wrap: balance;
}

@media (max-width: 980px) {
  .flow-grid,
  .formulation-capability-layout,
  .formulation-feature-grid {
    grid-template-columns: 1fr;
  }
}

/* Formulation overview redesign */
@keyframes overview-float {
  0% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -10px, 0); }
  100% { transform: translate3d(0, 0, 0); }
}

@keyframes overview-pulse {
  0% { transform: scale(1); opacity: 0.35; }
  50% { transform: scale(1.08); opacity: 0.6; }
  100% { transform: scale(1); opacity: 0.35; }
}

@keyframes overview-wave {
  0% { transform: translateX(-10%); }
  100% { transform: translateX(10%); }
}

.formulation-overview {
  padding-top: 84px;
  padding-bottom: 84px;
}

.formulation-overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1.12fr);
  gap: 32px;
  align-items: center;
}

.overview-copy p + p {
  margin-top: 16px;
}

.overview-visual-shell {
  position: relative;
}

.overview-video-placeholder {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid #d9e4f2;
  border-radius: 34px;
  background:
    radial-gradient(circle at 18% 20%, rgba(74, 155, 232, 0.22), transparent 25%),
    radial-gradient(circle at 78% 24%, rgba(107, 184, 255, 0.16), transparent 22%),
    linear-gradient(160deg, #eef5fd 0%, #f8fbff 46%, #edf4ff 100%);
  box-shadow: 0 28px 70px rgba(15, 23, 41, 0.12);
}

.overview-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(34, 63, 103, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34, 63, 103, 0.06) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.2));
}

.overview-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
  animation: overview-pulse 4.8s ease-in-out infinite;
}

.overview-orb-a {
  top: 16%;
  right: 18%;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(74, 155, 232, 0.55), transparent 70%);
}

.overview-orb-b {
  bottom: 14%;
  left: 14%;
  width: 170px;
  height: 170px;
  background: radial-gradient(circle, rgba(46, 117, 182, 0.34), transparent 72%);
  animation-delay: 1.2s;
}

.overview-panel {
  position: absolute;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 44px rgba(15, 23, 41, 0.12);
}

.overview-panel-main {
  top: 48px;
  left: 44px;
  width: min(360px, calc(100% - 88px));
  padding: 24px;
  animation: overview-float 6s ease-in-out infinite;
}

.overview-chip {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-primary);
  background: rgba(46, 117, 182, 0.1);
}

.overview-panel-main strong {
  display: block;
  margin-top: 18px;
  font-size: 34px;
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.05em;
  color: #16203b;
  text-wrap: balance;
}

.overview-panel-main p {
  margin-top: 14px;
  max-width: 250px;
  color: #48627f;
}

.overview-panel-side {
  right: 34px;
  bottom: 42px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  font-size: 14px;
  font-weight: 700;
  color: #20314e;
  animation: overview-float 5.5s ease-in-out infinite;
  animation-delay: 0.8s;
}

.overview-mini-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #6fd39a;
  box-shadow: 0 0 0 8px rgba(111, 211, 154, 0.14);
}

.overview-arrow {
  color: var(--color-primary);
}

.overview-wave {
  position: absolute;
  left: -8%;
  right: -8%;
  bottom: 82px;
  height: 84px;
  border-top: 2px solid rgba(46, 117, 182, 0.26);
  border-radius: 50%;
  animation: overview-wave 5.2s ease-in-out infinite alternate;
}

@media (max-width: 980px) {
  .formulation-overview-grid {
    grid-template-columns: 1fr;
  }

  .overview-video-placeholder {
    min-height: 360px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .overview-orb,
  .overview-panel-main,
  .overview-panel-side,
  .overview-wave {
    animation: none;
  }
}

/* Formulation overview v2 */
@keyframes formulation-overview-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.formulation-overview {
  padding-top: 76px;
  padding-bottom: 76px;
}

.formulation-overview-card {
  overflow: hidden;
  border: 1px solid #dbe4ef;
  border-radius: 34px;
  background:
    radial-gradient(circle at top left, rgba(74, 155, 232, 0.1), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 24px 60px rgba(15, 23, 41, 0.08);
}

.formulation-overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 36px;
  align-items: start;
  padding: 48px 48px 34px;
}

.overview-copy h2 {
  max-width: 560px;
}

.overview-side {
  display: grid;
  gap: 16px;
}

.overview-stage-card {
  margin-top: 6px;
  padding: 22px 24px;
  border: 1px solid #d7e4f4;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 34px rgba(15, 23, 41, 0.05);
}

.overview-stage-label {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.overview-stage-card strong {
  display: block;
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.05em;
  color: #16203b;
  text-wrap: balance;
}

.overview-stage-card p {
  margin-top: 12px;
  color: #4e6280;
}

.overview-ticker-shell {
  overflow: hidden;
  border-top: 1px solid #dbe4ef;
  background: #eff5fc;
}

.overview-ticker-track {
  display: flex;
  align-items: center;
  width: max-content;
  padding: 18px 0;
  animation: formulation-overview-scroll 24s linear infinite;
}

.overview-ticker-track span {
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #1f3352;
  white-space: nowrap;
  padding: 0 18px;
}

.overview-ticker-dot {
  color: var(--color-primary) !important;
  font-size: 12px !important;
  padding: 0 4px !important;
}

@media (max-width: 980px) {
  .formulation-overview-grid {
    grid-template-columns: 1fr;
    padding: 36px 28px 26px;
  }
}

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

/* Formulation overview text block tightening */
.overview-copy h2 {
  max-width: 10ch;
}

.overview-side {
  max-width: 42ch;
}

.overview-side p {
  max-width: 40ch;
  font-size: 15px;
  line-height: 1.72;
}

.overview-stage-card {
  max-width: 40ch;
}

.overview-stage-card strong {
  max-width: 14ch;
  font-size: 27px;
  line-height: 1.02;
}

.overview-stage-card p {
  max-width: 34ch;
  font-size: 14px;
  line-height: 1.65;
}

/* Overview side cleanup */
.overview-side {
  gap: 20px;
  align-self: stretch;
}

.overview-stage-card {
  max-width: none;
}

.overview-stage-card p {
  max-width: 30ch;
}

.overview-graphic-placeholder {
  position: relative;
  min-height: 180px;
  overflow: hidden;
  border: 1px solid #d7e4f4;
  border-radius: 24px;
  background:
    radial-gradient(circle at top left, rgba(74, 155, 232, 0.16), transparent 24%),
    linear-gradient(180deg, #f2f7fd 0%, #edf4fc 100%);
}

.graphic-line {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, rgba(46, 117, 182, 0.06), rgba(46, 117, 182, 0.35), rgba(46, 117, 182, 0.06));
}

.graphic-line-one {
  top: 44%;
  left: 14%;
  right: 14%;
}

.graphic-line-two {
  top: 62%;
  left: 24%;
  right: 22%;
}

.graphic-node {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #2e75b6;
  box-shadow: 0 0 0 10px rgba(46, 117, 182, 0.12);
}

.graphic-node-one {
  top: calc(44% - 7px);
  left: 18%;
}

.graphic-node-two {
  top: calc(44% - 7px);
  right: 22%;
}

.graphic-node-three {
  top: calc(62% - 7px);
  left: 42%;
}

.graphic-caption {
  display: none;
}

/* Packaging overview alignment */
.packaging-overview {
  padding-top: 76px;
}

.packaging-overview-grid {
  align-items: start;
}

.packaging-overview-copy {
  position: relative;
  padding-top: 26px;
}

.packaging-overview-label {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
}

.packaging-overview-copy h2,
.packaging-overview-body p {
  margin-top: 0;
}

.packaging-overview-body {
  padding-top: 26px;
}

.packaging-overview-body p {
  max-width: 46ch;
}


/* Contact page card alignment */
.contact-detail-grid {
  align-items: stretch;
}

.contact-detail-card {
  grid-template-rows: auto 168px 116px 1fr;
  min-height: 100%;
  padding: 36px 32px 30px;
}

.contact-detail-card .detail-kicker {
  margin-bottom: 16px;
}

.contact-detail-card h3 {
  max-width: 9.6ch;
  min-height: 168px;
  font-size: clamp(2.1rem, 2.4vw, 2.75rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.contact-detail-card p {
  max-width: 28ch;
  min-height: 116px;
  font-size: 16px;
  line-height: 1.7;
}

.contact-detail-card .detail-list {
  align-self: start;
  max-width: 28ch;
  margin-top: 24px;
}

  .contact-detail-card .detail-list li {
  font-size: 15px;
  line-height: 1.58;
}

@media (max-width: 680px) {
  .pipeline-step-card {
    grid-template-columns: 1fr;
  }

  .pipeline-step-number {
    width: 42px;
    height: 42px;
  }

  .pipeline-page-metrics .page-metric {
    min-height: 0;
  }
}


/* Interior-page composition system */
.inner-page .split-intro {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
  gap: 44px;
}

.inner-page .split-intro.pipeline-intro {
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
}

.inner-page .split-intro.pipeline-intro .pipeline-intro-heading {
  align-self: stretch;
}

.inner-page .split-intro.pipeline-intro .pipeline-intro-heading .section-label {
  margin-bottom: 20px;
  font-size: 13px;
  letter-spacing: 0.38em;
}

.inner-page .split-intro.pipeline-intro .pipeline-intro-heading h2 {
  max-width: 9.2ch;
  font-size: clamp(2.8rem, 5.6vw, 3.7rem);
  line-height: 0.94;
  letter-spacing: -0.06em;
}

.inner-page .split-intro > div:first-child h2 {
  max-width: 10.5ch;
  line-height: 1.02;
  text-wrap: balance;
}

.inner-page .split-intro > div:last-child {
  padding-top: 10px;
}

.inner-page .split-intro > div:last-child p {
  max-width: 40ch;
  font-size: 16px;
  line-height: 1.72;
}

.inner-page .split-intro.pipeline-intro > div:last-child {
  width: 100%;
}

.inner-page .split-intro.pipeline-intro .pipeline-intro-copy {
  max-width: none;
}

.inner-page .split-intro.pipeline-intro .pipeline-intro-copy p {
  max-width: none;
}

.inner-page .detail-grid {
  align-items: stretch;
  gap: 28px;
}

@media (max-width: 768px) {
  .inner-page .split-intro.pipeline-intro {
    display: block;
  }

  .inner-page .split-intro.pipeline-intro > div {
    width: 100%;
    max-width: none;
    min-width: 0;
  }

  .inner-page .split-intro.pipeline-intro .pipeline-intro-heading {
    margin-bottom: 20px;
  }

  .inner-page .split-intro.pipeline-intro .pipeline-intro-heading .section-label {
    margin-bottom: 12px;
    font-size: 11px;
    letter-spacing: 0.28em;
  }

  .inner-page .split-intro.pipeline-intro .pipeline-intro-heading h2 {
    max-width: 7.8ch;
    font-size: clamp(2.9rem, 15vw, 4.2rem);
    line-height: 0.92;
  }

  .inner-page .split-intro.pipeline-intro > div:last-child {
    padding-top: 0;
  }

  .inner-page .split-intro.pipeline-intro .pipeline-intro-copy {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 22px 20px 20px;
    border-radius: 26px;
  }

  .inner-page .split-intro.pipeline-intro .pipeline-intro-kicker {
    font-size: 11px;
    letter-spacing: 0.2em;
  }

  .inner-page .split-intro.pipeline-intro .pipeline-intro-copy h3 {
    max-width: 9.2ch;
    font-size: clamp(2.2rem, 11vw, 3rem);
    line-height: 0.94;
  }

  .inner-page .split-intro.pipeline-intro .pipeline-intro-copy p {
    max-width: none;
  }

  .inner-page .split-intro.pipeline-intro .pipeline-intro-statement {
    gap: 2px;
    font-size: 15px;
    line-height: 1.55;
  }
}

.inner-page .detail-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 34px 30px 30px;
}

.inner-page .detail-kicker {
  margin-bottom: 16px;
}

.inner-page .detail-card h3 {
  max-width: 11.2ch;
  min-height: 136px;
  font-size: clamp(2rem, 2.3vw, 2.55rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.inner-page .detail-card p {
  max-width: 30ch;
  min-height: 112px;
  font-size: 16px;
  line-height: 1.7;
}

.inner-page .detail-card .detail-list {
  max-width: 30ch;
  margin-top: auto;
  padding-top: 24px;
}

.inner-page .detail-card .detail-list li {
  font-size: 15px;
  line-height: 1.58;
}

.inner-page .faq-grid-single {
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 48px;
  align-items: center;
}

.inner-page .faq-grid-single .faq-list {
  align-self: center;
}

.inner-page .faq-intro h2 {
  max-width: 8ch;
  line-height: 0.98;
}

.inner-page .faq-intro p {
  max-width: 30ch;
  margin-top: 18px;
  font-size: 16px;
  line-height: 1.72;
}

.inner-page .faq-trigger {
  min-height: 64px;
  padding: 22px 24px;
}

.inner-page .faq-trigger span:first-child {
  max-width: 28ch;
}
