/* ===== base variables & layout from main.css ===== */
:root {
  color-scheme: light;
  --brand: #00aacc;
  --brand-hover: #0fb7d9;
  --brand-pressed: #0096b4;
  --success: #00cc84;
  --warning: #ffa621;
  --error: #ef5350;
  --ad: #7860be;
  --text: #333842;
  --text-soft: #667085;
  --text-muted: #8c94a6;
  --text-inverted: #ffffff;
  --bg: #ffffff;
  --bg-soft: #f6f7f8;
  --bg-muted: #f1f2f4;
  --surface: rgba(255, 255, 255, 0.84);
  --surface-strong: #ffffff;
  --border: #e2e4e9;
  --border-hover: #d9dce2;
  --shadow: 0 24px 70px rgba(51, 56, 66, 0.1);
  --shadow-soft: 0 16px 40px rgba(51, 56, 66, 0.08);
  --ring: 0 0 0 3px rgba(0, 170, 204, 0.2);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: min(1180px, calc(100vw - 40px));
  --header-top: max(16px, env(safe-area-inset-top, 0px));
  --header-bar: 68px;
  --header-gap: 12px;
  --header-offset: calc(var(--header-top) + var(--header-bar) + var(--header-gap));
  --hero-art-space: 80px;
}

:root.theme-dark {
  color-scheme: dark;
  --text: #ffffff;
  --text-soft: #c5cad3;
  --text-muted: #8c94a6;
  --bg: #10151b;
  --bg-soft: #151b22;
  --bg-muted: #1d252e;
  --surface: rgba(29, 37, 46, 0.82);
  --surface-strong: #1b232c;
  --border: rgba(255, 255, 255, 0.1);
  --border-hover: rgba(255, 255, 255, 0.18);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
  --shadow-soft: 0 16px 40px rgba(0, 0, 0, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-offset) + 8px);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  font-family: Roboto, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 8%, rgba(0, 170, 204, 0.16), transparent 34%),
    radial-gradient(circle at 92% 18%, rgba(120, 96, 190, 0.16), transparent 30%),
    linear-gradient(180deg, var(--bg), var(--bg-soft));
  line-height: 1.5;
  transition: color 0.2s ease, background 0.2s ease;
}

a {
  color: inherit;
}

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

button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: none;
  box-shadow: var(--ring);
}

.site-shell {
  min-height: 100vh;
  overflow-x: hidden;
}

.section {
  width: var(--container);
  margin: 0 auto;
  padding: 36px 0;
}

.eyebrow,
p.eyebrow {
  margin: 0 0 14px;
  color: var(--brand);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow--kicker {
  text-transform: none;
  letter-spacing: -0.015em;
  font-size: 15px;
  font-weight: 600;
}

.heading-1,
.heading-2,
.heading-3,
.text-body {
  margin-top: 0;
}

.heading-1 {
  max-width: 820px;
  margin-bottom: 24px;
  font-size: 44px;
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: -0.06em;
}

.heading-2 {
  margin-bottom: 18px;
  font-size: 32px;
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.heading-3 {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.22;
  letter-spacing: -0.02em;
}

.text-body {
  color: var(--text-soft);
  font-size: 16px;
}

@media (min-width: 721px) {
  .heading-1 { font-size: 50px; }
  .heading-2 { font-size: 35px; }
}

@media (min-width: 961px) {
  .heading-1 { font-size: 67px; }
  .heading-2 { font-size: 46px; }
}

@media (min-width: 1081px) {
  .heading-1 { font-size: 82px; }
  .heading-2 { font-size: 56px; }
}

@media (max-width: 720px) {
  :root {
    --container: min(100vw - 24px, 1180px);
  }
}

/* ===== protein page component styles ===== */

.site-shell:has(.home-page) {
  overflow-x: visible;
}
.site-shell:has(.product-page--analyses) {
  overflow-x: visible;
  overflow-y: visible;
}
.hero-lead {
  font-size: 20px;
  line-height: 1.45;
  margin-bottom: 30px;
  max-width: 720px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 0;
}
.legal-note {
  color: var(--text-muted);
  font-size: 13px;
  margin-bottom: 0;
  max-width: 620px;
}
.insights-visual {
  background: var(--surface);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  isolation: isolate;
  overflow: hidden;
  position: relative;
}
.insights-visual img {
  display: block;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}
.insights-visual:after {
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px hsla(0, 0%, 100%, 0.45);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}
.theme-dark .insights-visual:after {
  box-shadow: inset 0 0 0 1px hsla(0, 0%, 100%, 0.08);
}
.insights-visual {
  aspect-ratio: 16/11;
}
.intro-section {
  align-items: start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 48px;
  grid-template-columns: 0.9fr 1.1fr;
  padding: 36px 54px;
}
.intro-section {
  align-items: stretch;
  margin-bottom: 36px;
  margin-top: 36px;
  padding: 36px 54px;
}
.intro-section-copy {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
#meals.intro-section,
#rations.intro-section {
  box-shadow: none;
}
.intro-section p:last-child {
  font-size: 18px;
  margin-bottom: 0;
}
.format-card {
  background: var(--surface-strong);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}
.product-tag {
  align-items: center;
  background: color-mix(
    in srgb,
    var(--card-accent, var(--brand)) 12%,
    transparent
  );
  border-radius: 999px;
  color: var(--card-accent, var(--brand));
  display: inline-flex;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  min-height: 30px;
  padding: 0 11px;
}
.product-button {
  --pb-accent: var(--card-accent, var(--brand));
  align-items: center;
  background: transparent;
  border: 1px solid color-mix(in srgb, var(--pb-accent) 38%, transparent);
  border-radius: 999px;
  color: var(--pb-accent);
  display: inline-flex;
  font-size: 14px;
  font-weight: 700;
  gap: 12px;
  justify-content: space-between;
  letter-spacing: 0.01em;
  margin-top: auto;
  min-height: 46px;
  padding: 0 18px;
  position: relative;
  text-decoration: none;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.product-button:after {
  content: "→";
  font-size: 16px;
  line-height: 1;
  transform: translateX(0);
  transition: transform 0.2s ease;
}
.product-button:focus-visible,
.product-button:hover {
  background: linear-gradient(
    135deg,
    var(--pb-accent),
    color-mix(in srgb, var(--pb-accent) 72%, #90d6e7)
  );
  border-color: transparent;
  box-shadow: 0 14px 26px color-mix(in srgb, var(--pb-accent) 26%, transparent);
  color: #fff;
  transform: translateY(-1px);
}
.product-button:focus-visible:after,
.product-button:hover:after {
  transform: translateX(3px);
}
.formats-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.format-card {
  border-radius: var(--radius-lg);
  padding: 28px;
}
.format-card-step,
.process-step-badge {
  align-items: center;
  background: var(--brand);
  border-radius: 50%;
  color: #fff;
  display: inline-flex;
  font-weight: 700;
  height: 42px;
  justify-content: center;
  margin-bottom: 20px;
  width: 42px;
}
.format-card-primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-hover));
  border-color: transparent;
  color: #fff;
}
.format-card-primary-text,
.format-card-primary-title {
  color: #fff;
}
.format-card-primary .format-card-step {
  background: #fff;
  color: var(--brand);
}
button.format-card--pick {
  color: inherit;
  cursor: pointer;
  font: inherit;
  text-align: left;
  width: 100%;
}
button.format-card--pick:hover:not(.format-card-primary) {
  border-color: var(--brand);
}
.insights-section {
  align-items: stretch;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  padding-bottom: 44px;
}
.insights-copy {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 430px;
  padding: 48px;
}
.text-link {
  color: var(--brand);
  display: inline-flex;
  font-weight: 700;
  margin-top: 8px;
  text-decoration: none;
}
.text-link:hover {
  color: var(--brand-hover);
}
.insights-copy--cta {
  background:
    radial-gradient(
      circle at 80% 18%,
      hsla(0, 0%, 100%, 0.22),
      transparent 28%
    ),
    linear-gradient(135deg, #0ac, #0592d2);
  border: none;
  box-shadow: 0 24px 80px rgba(0, 170, 204, 0.3);
  color: #fff;
  justify-content: flex-start;
}
.insights-section .insights-copy {
  height: 100%;
}
.insights-copy--cta .insights-copy__btn {
  margin-top: auto;
}
.insights-copy--cta .eyebrow,
.insights-cta-text,
.insights-cta-title {
  color: #fff;
}
.insights-copy--cta .eyebrow {
  margin-bottom: 14px;
}
.insights-cta-title {
  margin-bottom: 24px;
}
.insights-copy--cta .insights-copy-lead {
  max-width: none;
  width: 100%;
}
.insights-copy-lead {
  color: hsla(0, 0%, 100%, 0.88);
  display: grid;
  font-size: 16px;
  gap: 12px;
  line-height: 1.55;
  margin: 0;
  max-width: 520px;
}
.insights-copy__btn {
  align-self: flex-start;
  background: #fff;
  box-shadow: none;
  color: var(--brand);
  margin-top: 32px;
}
.product-page .insights-copy--cta .eyebrow {
  color: #fff;
}
.product-page .insights-copy--cta .insights-copy-lead {
  color: hsla(0, 0%, 100%, 0.88);
}
.product-page .insights-copy--cta .insights-copy__btn.btn-primary {
  background: #fff;
  box-shadow: none;
  color: var(--brand);
}
.product-page .insights-copy--cta .insights-copy__btn.btn-primary:hover {
  background: hsla(0, 0%, 100%, 0.92);
  box-shadow: none;
  color: var(--brand);
}
.insights-visual {
  align-self: stretch;
  height: 100%;
  max-height: 430px;
  min-height: 430px;
  width: 100%;
}
.insights-visual img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: 55% center;
  object-position: 55% center;
}
.symptoms-insights-section .insights-copy {
  justify-content: flex-start;
  min-height: 0;
}
.symptoms-insights-section .insights-visual {
  aspect-ratio: auto;
  max-height: none;
  min-height: 300px;
}
.symptoms-insights-section .insights-visual img {
  min-height: 300px;
  -o-object-position: center 18%;
  object-position: center 18%;
}
.symptoms-insights-lead {
  display: grid;
  gap: 12px;
  max-width: 520px;
}
.insights-lead-text {
  color: hsla(0, 0%, 100%, 0.88);
  font-size: 16px;
  line-height: 1.55;
  margin: 0;
}
.symptoms-insights-lead-strong {
  color: #fff;
  font-weight: 700;
}
.trust-row {
  --row-accent: var(--brand);
  align-items: start;
  background: var(--surface-strong);
  border: 1px solid var(--border);
  border-left: 3px solid var(--row-accent);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 16px;
  grid-template-columns: 36px minmax(0, 1fr);
  padding: 18px 22px;
}
.trust-row--positive {
  --row-accent: var(--success);
  background: color-mix(in srgb, var(--success) 7%, var(--surface-strong));
  border-left: 1px solid color-mix(in srgb, var(--success) 22%, var(--border));
  border: 1px solid color-mix(in srgb, var(--success) 22%, var(--border));
  border-radius: var(--radius-lg);
  box-shadow: none;
  margin: 36px 0 0;
  padding: 22px 24px;
}
.trust-row--positive .trust-row__badge {
  background: color-mix(in srgb, var(--success) 12%, transparent);
  color: var(--success);
  height: 36px;
  width: 36px;
}
.trust-row--positive .trust-row__label {
  color: var(--success);
}
.trust-row--positive .trust-row-text,
.trust-row--positive .trust-row__note {
  color: var(--text);
}
.trust-row--negative {
  --row-accent: #c0526f;
}
.trust-row--mandatory {
  --row-accent: var(--warning);
  background: color-mix(in srgb, var(--warning) 10%, var(--surface-strong));
  border-left: 1px solid color-mix(in srgb, var(--warning) 28%, var(--border));
  border: 1px solid color-mix(in srgb, var(--warning) 28%, var(--border));
  border-radius: var(--radius-lg);
  box-shadow: none;
  margin: 36px 0 0;
  padding: 22px 24px;
}
.trust-row--mandatory .trust-row__badge {
  background: color-mix(in srgb, var(--warning) 16%, transparent);
  color: color-mix(in srgb, var(--warning) 90%, #7a5200);
  height: 36px;
  width: 36px;
}
.trust-row--mandatory .trust-row__badge svg {
  height: 20px;
  width: 20px;
}
.trust-row--mandatory .trust-row__label {
  color: color-mix(in srgb, var(--warning) 88%, #7a5200);
}
.trust-row--mandatory .trust-row-text,
.trust-row--mandatory .trust-row__note {
  color: var(--text);
}
.trust-row__badge {
  align-items: center;
  background: color-mix(in srgb, var(--row-accent) 14%, transparent);
  border-radius: 999px;
  display: inline-flex;
  font-size: 16px;
  height: 32px;
  justify-content: center;
  line-height: 1;
  margin-top: 2px;
  width: 32px;
}
.trust-row__badge,
.trust-row__label {
  color: var(--row-accent);
  font-weight: 700;
}
.trust-row__label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
  text-transform: uppercase;
}
.trust-row-text {
  color: var(--text);
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
}
.trust-row__note {
  display: block;
  margin-top: 4px;
}
.faq-section {
  align-items: start;
  display: grid;
  gap: 40px;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
}
.faq-head {
  position: sticky;
  top: 112px;
}
.faq-head .text-body:last-child {
  margin-bottom: 0;
  max-width: 420px;
}
.faq-list {
  display: grid;
  gap: 12px;
  max-width: none;
}
details {
  background: var(--surface-strong);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
summary {
  color: var(--text);
  cursor: pointer;
  font-size: 18px;
  font-weight: 500;
  padding: 20px 22px;
}
.details-body-text {
  margin: 0;
}
.details-body-text,
.faq-answer {
  padding: 0 22px 22px;
}
.faq-answer-text {
  margin: 0;
  padding: 0;
}
.faq-source {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-top: 12px;
}
.faq-answer-list {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
}
.faq-answer-list li {
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.55;
}
.faq-answer-list-strong {
  color: var(--text);
  font-weight: 600;
}
.product-page {
  padding-bottom: 0;
  padding-top: 34px;
  position: relative;
}
.protein-page.home-page {
  padding-bottom: 0;
  /* padding-top: var(--header-offset); */
}
.home-page .product-hero .product-hero-copy {
  padding-top: 0;
}
.home-page .product-hero-visual img {
  transform: translateX(-100px) rotate(-35deg) scale(1.08);
}
.product-page--mint {
  --product-accent: #43a997;
  --product-accent-hover: #4db7a5;
  --product-accent-pressed: #369985;
  --product-accent-end: #2f8f7e;
}
.product-page--analyses .analyses-picker-section {
  padding-bottom: 0;
  position: relative;
  z-index: 2;
}
.product-page--analyses .product-hero-copy {
  max-width: 720px;
  position: relative;
  z-index: 2;
}
.product-page--analyses .product-hero-lead {
  margin-bottom: 0;
  max-width: 720px;
}
.product-page--mint .product-hero-visual img {
  transform: translateX(-100px) rotate(-35deg) scale(1.08);
}
.product-page--blue {
  --product-accent: #a94345;
  --product-accent-hover: #bc4f4f;
  --product-accent-pressed: #8f3838;
  --product-accent-end: #7a2f31;
}
.product-page--blue .product-hero-visual img {
  transform: translateX(-100px) rotate(-35deg) scale(1.08);
}
.product-page--violet {
  --product-accent: #7860be;
  --product-accent-hover: #8870cb;
  --product-accent-pressed: #6852ad;
  --product-accent-end: #5a4899;
}
.product-page--violet .product-hero-visual img {
  transform: translateX(-100px) rotate(-35deg) scale(1.08);
}
.product-page--pink {
  --product-accent: #a94382;
  --product-accent-hover: #b8508f;
  --product-accent-pressed: #92376f;
  --product-accent-end: #7d335f;
}
.product-page--pink .product-hero-visual img {
  transform: translateX(-100px) rotate(-35deg) scale(1.08);
}
.product-page--orange {
  --product-accent: #d18700;
  --product-accent-hover: #e59812;
  --product-accent-pressed: #b87600;
  --product-accent-end: #8f5200;
}
.product-page--orange .product-hero-visual img {
  transform: translateX(-100px) rotate(-35deg) scale(1.08);
}
.thrombo-formats-shell .thrombo-lines {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.thrombo-line {
  scroll-margin-top: 96px;
}
.thrombo-line--basic .package-buy-card {
  --package-accent: #cfa81f;
}
.thrombo-line--basic .package-buy-card-featured {
  background:
    radial-gradient(
      circle at 84% 12%,
      hsla(0, 0%, 100%, 0.28),
      transparent 34%
    ),
    linear-gradient(135deg, #d4ae24, #8f6f0f);
  border-color: color-mix(in srgb, #cfa81f 72%, transparent);
  box-shadow: 0 22px 58px rgba(207, 168, 31, 0.28);
}
.thrombo-line--pro .package-buy-card {
  --package-accent: #d18700;
}
.thrombo-line--pro .package-buy-card-featured {
  background:
    radial-gradient(
      circle at 84% 12%,
      hsla(0, 0%, 100%, 0.24),
      transparent 34%
    ),
    linear-gradient(135deg, #d18700, #8f5200);
  border-color: color-mix(in srgb, #d18700 72%, transparent);
  box-shadow: 0 22px 58px rgba(209, 135, 0, 0.28);
}
.product-page .eyebrow {
  color: var(--product-accent);
}
.product-page .btn-primary {
  background: linear-gradient(
    135deg,
    var(--product-accent),
    var(--product-accent-hover)
  );
  box-shadow: 0 16px 34px
    color-mix(in srgb, var(--product-accent) 24%, transparent);
}
.product-page .btn-primary:hover {
  background: linear-gradient(
    135deg,
    var(--product-accent-hover),
    var(--product-accent-pressed)
  );
}
.product-hero {
  min-height: auto;
  overflow: visible;
  position: relative;
  z-index: 2;
}
.product-hero:after,
.product-hero:before {
  display: none;
}
.product-hero-copy {
  max-width: 720px;
  padding-top: 88px;
  position: relative;
  width: 100%;
  z-index: 2;
}
.product-hero-title {
  max-width: 100%;
}
.product-hero-lead {
  font-size: 20px;
  line-height: 1.45;
  margin-bottom: 30px;
  max-width: 720px;
}
.product-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.back-link {
  color: var(--text-soft);
  display: inline-flex;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 32px;
  text-decoration: none;
  transition: color 0.2s ease;
}
.back-link:hover {
  color: var(--brand);
}
.product-page .back-link:hover {
  color: var(--product-accent);
}
.product-hero-visual {
  height: 980px;
  pointer-events: none;
  position: absolute;
  right: -320px;
  top: -180px;
  width: min(84vw, 980px);
  z-index: 0;
}
.product-hero-visual img {
  display: block;
  height: 100%;
  -webkit-mask-image: linear-gradient(
    180deg,
    transparent 0,
    #000 18%,
    #000 70%,
    transparent
  );
  mask-image: linear-gradient(
    180deg,
    transparent 0,
    #000 18%,
    #000 70%,
    transparent
  );
  mix-blend-mode: screen;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
  opacity: 0.96;
  transform: rotate(-35deg) scale(1.08);
  transform-origin: center;
  width: 100%;
}
.composition-grid article {
  background: var(--surface-strong);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}
.composition-grid-label {
  color: var(--product-accent);
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.composition-grid p {
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 0;
}
.product-section-head {
  margin-bottom: 34px;
  max-width: 760px;
}
.product-section-head-lead {
  display: grid;
  gap: 12px;
}
.product-section-lead-text {
  color: var(--text-soft);
  line-height: 1.55;
  margin: 0;
}
.composition-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1.1fr 0.8fr 1fr;
}
.composition-grid article {
  padding: 28px;
}
.composition-grid ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.composition-grid li {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.2;
  padding: 8px 11px;
}
.composition-card-accent {
  background:
    radial-gradient(
      circle at 80% 16%,
      hsla(0, 0%, 100%, 0.28),
      transparent 34%
    ),
    linear-gradient(135deg, var(--product-accent), var(--brand)) !important;
  color: #fff;
}
.composition-card-accent span,
.composition-card-accent-text {
  color: #fff;
}
.package-buy-grid {
  align-items: start;
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}
.package-buy-card {
  --package-accent: var(--product-accent);
  background: var(--surface-strong);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  min-height: 0;
  overflow: hidden;
  padding: 26px;
  position: relative;
}
.package-buy-card:before {
  background: var(--package-accent);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  content: "";
  height: 5px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
}
.package-buy-card-featured {
  --package-accent: var(--brand);
  background:
    radial-gradient(circle at 16% 88%, hsla(0, 0%, 100%, 0.2), transparent 40%),
    radial-gradient(
      circle at 84% 12%,
      hsla(0, 0%, 100%, 0.22),
      transparent 34%
    ),
    radial-gradient(
      circle at 50% 100%,
      hsla(0, 0%, 100%, 0.16),
      transparent 48%
    ),
    linear-gradient(135deg, var(--brand), var(--brand-pressed));
  border-color: transparent;
  box-shadow: 0 22px 58px rgba(0, 170, 204, 0.3);
  color: #fff;
  overflow: visible;
}
.package-buy-card-featured:before {
  display: none;
}
.package-buy-card > .package-tier:not(.product-tag) {
  color: var(--package-accent);
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
  text-transform: uppercase;
}
.package-buy-card .package-tier-tag {
  --card-accent: var(--package-accent);
  align-self: flex-start;
  letter-spacing: 0.02em;
  margin-bottom: 18px;
  text-transform: none;
}
.package-buy-card-featured .package-tier-tag {
  background: hsla(0, 0%, 100%, 0.14);
  border: 1px solid hsla(0, 0%, 100%, 0.22);
  color: #fff;
}
.package-buy-card-title {
  font-size: 30px;
  font-weight: 400;
  letter-spacing: -0.04em;
  margin-bottom: 8px;
}
.package-buy-card-text {
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.5;
  max-width: 560px;
}
.package-buy-card-featured .package-card-desc,
.package-buy-card-featured .package-price,
.package-buy-card-featured .package-tier-tag,
.package-buy-card-featured h3,
.package-buy-card-featured li,
.package-buy-card-featured p {
  color: #fff;
}
.package-buy-card ul {
  display: grid;
  gap: 9px;
  list-style: none;
  margin: 18px 0 20px;
  padding: 0;
}
.package-buy-card li {
  color: var(--text);
  font-size: 15px;
  line-height: 1.5;
}
.package-buy-card-featured li {
  color: #fff;
}
.package-buy-card li:before {
  background: var(--package-accent);
  border-radius: 999px;
  content: "";
  display: inline-block;
  height: 7px;
  margin-right: 10px;
  transform: translateY(-1px);
  width: 7px;
}
.package-buy-card-featured li:before {
  background: hsla(0, 0%, 100%, 0.86);
}
.package-buy-card .analyses-list {
  align-content: start;
  display: grid;
  flex: none;
  gap: 9px;
  margin: 18px 0 20px;
  min-width: 0;
}
.package-buy-card .analyses-item {
  align-items: start;
  -moz-column-gap: 10px;
  column-gap: 10px;
  display: grid;
  grid-template-columns: 7px minmax(0, 1fr);
  min-width: 0;
}
.package-buy-card .analyses-item:before {
  grid-column: 1;
  grid-row: 1;
  margin: 8px 0 0;
  transform: none;
}
.package-buy-card .analyses-name-static,
.package-buy-card .analyses-toggle {
  grid-column: 2;
  grid-row: 1;
}
.package-buy-card .analyses-desc {
  grid-column: 2;
  grid-row: 2;
}
.package-buy-card .analyses-toggle {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 0;
  color: inherit;
  cursor: pointer;
  display: flex;
  font: inherit;
  font-size: 15px;
  font-weight: 400;
  gap: 10px;
  justify-content: space-between;
  line-height: 1.5;
  margin: 0;
  min-height: 0;
  padding: 0;
  text-align: left;
  width: 100%;
}
.package-buy-card .analyses-toggle:hover .analyses-name {
  color: var(--package-accent);
}
.package-buy-card .analyses-toggle:hover .analyses-expand {
  border-color: color-mix(in srgb, var(--package-accent) 40%, var(--border));
}
.package-buy-card .analyses-toggle:focus-visible {
  box-shadow: none;
  outline: none;
}
.package-buy-card .analyses-toggle:focus-visible .analyses-expand {
  box-shadow: var(--ring);
}
.package-buy-card .analyses-name {
  flex: 1;
  min-width: 0;
}
.package-buy-card .analyses-name-static {
  display: block;
  font-size: 15px;
  line-height: 1.45;
  padding: 8px 0;
}
.package-buy-card .analyses-expand {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 999px;
  flex: none;
  height: 20px;
  position: relative;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
  width: 20px;
}
.package-buy-card .analyses-expand-h,
.package-buy-card .analyses-expand-v {
  background: var(--text-muted);
  border-radius: 1px;
  left: 50%;
  position: absolute;
  top: 50%;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease,
    background 0.2s ease;
}
.package-buy-card .analyses-expand-h {
  height: 1.5px;
  transform: translate(-50%, -50%);
  width: 8px;
}
.package-buy-card .analyses-expand-v {
  height: 8px;
  transform: translate(-50%, -50%);
  width: 1.5px;
}
.package-buy-card .analyses-item.is-open .analyses-expand {
  background: color-mix(in srgb, var(--package-accent) 12%, transparent);
  border-color: color-mix(in srgb, var(--package-accent) 45%, var(--border));
}
.package-buy-card .analyses-item.is-open .analyses-expand-h,
.package-buy-card .analyses-item.is-open .analyses-expand-v {
  background: var(--package-accent);
}
.package-buy-card .analyses-item.is-open .analyses-expand-v {
  transform: translate(-50%, -50%) scaleY(0);
}
.package-buy-card .analyses-desc {
  display: grid;
  grid-template-rows: 0fr;
  min-width: 0;
  transition: grid-template-rows 0.28s ease;
}
.package-buy-card .analyses-item.is-open .analyses-desc {
  grid-template-rows: 1fr;
}
.package-buy-card .analyses-desc-inner {
  min-height: 0;
  overflow: hidden;
}
.package-buy-card .analyses-desc-text {
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.45;
  margin: 0;
  max-width: none;
  padding: 0 28px 10px 0;
}
@media (min-width: 721px) {
  .calc-result-report__value {
    font-size: 43px;
  }
}
@media (min-width: 961px) {
  .package-price {
    font-size: 38px;
  }
  .protein-topic-head-title {
    font-size: 27px;
  }
  .calc-result-report__value {
    font-size: 56px;
  }
}
@media (min-width: 1081px) {
  .package-price {
    font-size: 52px;
  }
  .protein-topic-head-title {
    font-size: 32px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .package-buy-card .analyses-desc,
  .package-buy-card .analyses-expand,
  .package-buy-card .analyses-expand-h,
  .package-buy-card .analyses-expand-v {
    transition: none;
  }
}
.package-buy-card-featured .analyses-toggle:hover .analyses-name {
  color: #fff;
}
.package-buy-card-featured .analyses-toggle:hover .analyses-expand {
  background: hsla(0, 0%, 100%, 0.18);
  border-color: hsla(0, 0%, 100%, 0.5);
}
.package-buy-card-featured .analyses-expand {
  background: hsla(0, 0%, 100%, 0.12);
  border-color: hsla(0, 0%, 100%, 0.28);
}
.package-buy-card-featured .analyses-expand-h,
.package-buy-card-featured .analyses-expand-v {
  background: hsla(0, 0%, 100%, 0.88);
}
.package-buy-card-featured .analyses-item.is-open .analyses-expand {
  background: hsla(0, 0%, 100%, 0.2);
  border-color: hsla(0, 0%, 100%, 0.5);
}
.package-buy-card-featured .analyses-item.is-open .analyses-expand-h,
.package-buy-card-featured .analyses-item.is-open .analyses-expand-v {
  background: #fff;
}
.package-buy-card-featured .analyses-desc-text {
  color: hsla(0, 0%, 100%, 0.82);
}
.package-price-row {
  align-items: baseline;
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
  margin-top: auto;
}
.package-old-price {
  color: var(--text-muted);
  display: inline-block;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 0;
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
  text-transform: none;
  white-space: nowrap;
}
.package-buy-card-featured .package-old-price {
  color: hsla(0, 0%, 100%, 0.66);
}
.package-price {
  color: var(--text);
  font-size: 34px;
  font-weight: 300;
  letter-spacing: -0.055em;
  line-height: 1;
}
.package-buy-card-featured .package-price {
  color: #fff;
}
.package-section {
  margin: 16px 0 12px;
}
.package-section-label {
  color: var(--package-accent);
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.package-section ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.package-divider {
  background: linear-gradient(
    90deg,
    transparent,
    var(--border) 20%,
    var(--border) 80%,
    transparent
  );
  height: 1px;
  margin: 18px 0;
}
.package-buy-card-featured .package-divider {
  background: linear-gradient(
    90deg,
    transparent,
    hsla(0, 0%, 100%, 0.34) 20%,
    hsla(0, 0%, 100%, 0.34) 80%,
    transparent
  );
}
.package-result {
  background: color-mix(in srgb, var(--product-accent) 8%, transparent);
  border-radius: var(--radius-md);
  margin: 18px 0 24px;
  padding: 14px 16px;
}
.package-buy-card-featured .package-result {
  background: hsla(0, 0%, 100%, 0.15);
}
.package-result-label {
  color: var(--package-accent);
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
  text-transform: uppercase;
}
.package-buy-card-featured .package-result-label,
.package-buy-card-featured .package-result-text {
  color: #fff;
}
.package-result-text {
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.45;
  margin: 0;
}
.package-buy-card .product-button {
  --pb-accent: var(--package-accent);
  justify-content: center;
  min-width: 210px;
  padding: 13px 20px;
  width: -moz-fit-content;
  width: fit-content;
}
.package-buy-card-featured .product-button {
  background: #fff;
  border-color: transparent;
  color: var(--package-accent);
}
.package-buy-card-featured .product-button:focus-visible,
.package-buy-card-featured .product-button:hover {
  background: hsla(0, 0%, 100%, 0.9);
  box-shadow: none;
  color: var(--package-accent);
}
.order-form-card {
  background: var(--surface-strong);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
}
.order-form-card {
  padding: 32px;
}
.order-form-card {
  display: grid;
  gap: 16px;
}
.order-form-card h2 {
  margin-bottom: 10px;
}
.order-form-card label {
  color: var(--text);
  display: grid;
  font-size: 14px;
  font-weight: 700;
  gap: 8px;
}
.order-form-card input,
.order-form-card textarea {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font: inherit;
  outline: none;
  padding: 13px 14px;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
  width: 100%;
}
.order-form-card input:focus,
.order-form-card textarea:focus {
  border-color: var(--brand);
  box-shadow: var(--ring);
}
.order-form-card textarea {
  resize: vertical;
}
.order-form-card .btn {
  margin-top: 4px;
  padding: 0 24px;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 1080px) {
  .faq-section,
  .hero,
  .insights-section,
  .insights-section--reverse,
  .intro-section,
  .product-hero {
    grid-template-columns: 1fr;
  }
  .insights-copy,
  .insights-visual {
    max-height: none;
    min-height: 360px;
  }
  .symptoms-insights-section .insights-copy,
  .symptoms-insights-section .insights-visual {
    max-height: none;
    min-height: 0;
  }
  .symptoms-insights-section .insights-visual {
    min-height: 300px;
  }
  .protein-topics-intro .insights-copy,
  .protein-topics-intro .insights-visual {
    max-height: none;
    min-height: 0;
  }
  .protein-topics-intro .insights-visual {
    aspect-ratio: 16/10;
  }
  .composition-grid,
  .formats-grid,
  .product-hero,
  .symptom-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .composition-grid,
  .package-buy-grid {
    grid-template-columns: 1fr;
  }
  .product-hero-visual {
    min-height: 360px;
  }
}
@media (max-width: 720px) {
  .hero:not(.calc-shader-hero):not(.home-shader-hero):not(
      .meals-shader-hero
    ):not(.analyses-shader-hero) {
    gap: 32px;
    padding-top: 0;
  }
  .product-page {
    padding-bottom: 42px;
    padding-top: 0;
  }
  .protein-page.calc-page {
    padding-bottom: 0;
    /* padding-top: var(--header-offset); */
  }
  .order-page {
    padding-top: 16px;
  }
  .product-hero:not(.calc-shader-hero) {
    gap: 24px;
    padding-top: 42px;
  }
  .hero-lead,
  .product-hero-lead {
    font-size: 17px;
    margin-bottom: 24px;
  }
  .home-page .product-hero,
  .product-page
    .product-hero:not(.calc-shader-hero):not(.home-shader-hero):not(
      .meals-shader-hero
    ):not(.analyses-shader-hero) {
    display: flex;
    flex-direction: column;
    gap: 0;
    overflow: hidden;
  }
  .home-page .product-hero-visual,
  .product-page .product-hero-visual {
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    height: 220px;
    margin-bottom: 16px;
    margin-left: -12px;
    min-height: 0;
    order: -1;
    overflow: hidden;
    pointer-events: none;
    position: relative;
    right: auto;
    top: auto;
    width: calc(100% + 24px);
  }
  .home-page .product-hero-visual img,
  .product-page .product-hero-visual img {
    height: 100%;
    left: 50%;
    -webkit-mask-image: linear-gradient(
      180deg,
      transparent 0,
      #000 18%,
      #000 62%,
      transparent
    );
    mask-image: linear-gradient(
      180deg,
      transparent 0,
      #000 18%,
      #000 62%,
      transparent
    );
    max-height: 220px;
    mix-blend-mode: multiply;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center center;
    object-position: center center;
    opacity: 0.52;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg) scale(1.386) !important;
    transform-origin: center center;
    width: 103%;
  }
  .product-page--analyses .analyses-shader-hero {
    display: flex;
    flex-direction: column;
    gap: 0;
    min-height: 0;
    overflow: visible;
  }
  .product-page--analyses .analyses-shader-stage {
    height: 220px;
    margin-bottom: 36px;
    order: -1;
    overflow: visible;
    position: relative;
  }
  .product-page--analyses .analyses-shader-stage__bg {
    background: transparent;
    bottom: 0;
    height: 220px;
    left: 0;
    margin-left: -12px;
    -webkit-mask-image: linear-gradient(
      180deg,
      transparent 0,
      #000 15%,
      #000 75%,
      transparent
    );
    mask-image: linear-gradient(
      180deg,
      transparent 0,
      #000 15%,
      #000 75%,
      transparent
    );
    pointer-events: none;
    position: absolute;
    width: calc(100% + 24px);
  }
  .product-page--analyses .product-hero-lead {
    max-width: none;
  }
  .calc-shader-hero {
    display: flex;
    flex-direction: column;
    gap: 0;
    min-height: 0;
    overflow: visible;
  }
  .calc-shader-stage {
    height: 220px;
    margin-bottom: 16px;
    order: -1;
    overflow: visible;
    position: relative;
  }
  .calc-shader-stage__bg {
    background: transparent;
    bottom: 0;
    height: 220px;
    left: 0;
    margin-left: -12px;
    -webkit-mask-image: linear-gradient(
      180deg,
      transparent 0,
      #000 15%,
      #000 75%,
      transparent
    );
    mask-image: linear-gradient(
      180deg,
      transparent 0,
      #000 15%,
      #000 75%,
      transparent
    );
    pointer-events: none;
    position: absolute;
    width: calc(100% + 24px);
  }
  .calc-shader-hero .product-hero-lead {
    max-width: none;
  }
  .protein-page.calc-page .hero.section.calc-shader-hero {
    padding-bottom: 72px;
    padding-top: calc(var(--mobile-hero-gap) - var(--header-gap));
  }
  .protein-page.home-page > .hero.section {
    padding-bottom: 0;
    padding-top: var(--hero-art-space);
  }
  .protein-page.calc-page .calc-section.section {
    padding-bottom: 72px;
    padding-top: 0;
  }
  .theme-dark .home-page .product-hero-visual img,
  .theme-dark .product-page .product-hero-visual img {
    mix-blend-mode: screen;
    opacity: 0.7;
  }
  .home-page .product-hero .product-hero-copy,
  .product-page .product-hero .product-hero-copy {
    padding-top: 0;
    position: relative;
    z-index: 2;
  }
  .insights-copy,
  .intro-section,
  .order-form-card {
    border-radius: 24px;
    padding: 24px;
  }
  .composition-grid,
  .footer-inner,
  .formats-grid,
  .package-buy-grid,
  .product-hero,
  .symptom-grid {
    grid-template-columns: 1fr;
  }
  .composition-grid article,
  .order-form-card,
  .package-buy-card {
    padding: 22px;
  }
  .order-form-card .btn {
    width: 100%;
  }
  .insights-copy,
  .insights-visual {
    min-height: 0;
  }
  .insights-visual {
    aspect-ratio: 16/10;
  }
  .symptoms-insights-section .insights-visual {
    aspect-ratio: auto;
    min-height: 280px;
  }
  .symptoms-insights-section .insights-visual img {
    min-height: 280px;
  }
  .protein-topics-intro {
    gap: 20px;
  }
  .protein-topics-intro .insights-copy {
    min-height: 0;
    order: 2;
    padding: 28px 24px;
  }
  .protein-topics-intro .insights-visual {
    aspect-ratio: 16/10;
    max-height: none;
    min-height: 0;
    order: 1;
  }
  .protein-topics-intro .insights-visual img {
    min-height: 0;
    -o-object-position: center center;
    object-position: center center;
  }
  .protein-topics-section {
    gap: 28px;
  }
  .protein-topic-block {
    padding: 18px 20px;
  }
  .faq-head {
    position: static;
  }
  .faq-section {
    gap: 28px;
  }
  summary {
    font-size: 16px;
    line-height: 1.4;
    padding: 18px 20px;
  }
  .faq-answer {
    padding: 0 20px 20px;
  }
  .faq-answer-list li {
    font-size: 14px;
  }
}
.protein-page {
  --product-accent: var(--brand);
  --product-accent-hover: var(--brand-hover);
  --product-accent-pressed: var(--brand-pressed);
  --product-accent-end: var(--brand-pressed);
  --card-accent: var(--brand);
  padding-bottom: 0;
  padding-top: 0;
}
.protein-page > .hero.section {
  padding-bottom: 0;
  padding-top: 178px;
  @media (max-width: 720px) {
    padding-top: var(--hero-art-space); 
  }
}
.protein-page--analyses > .hero.section.analyses-shader-hero,
.protein-page.calc-page > .hero.section.calc-shader-hero {
  align-content: start;
  align-items: start;
  min-height: 480px;
  padding-bottom: 72px;
  /* padding-top: var(--hero-art-space); */
}
.protein-page .calc-section.section {
  padding-bottom: 72px;
  padding-top: 0;
}
.protein-page.calc-page .meals-visual-section {
  padding-bottom: 0;
  padding-top: 0;
}
.protein-page .home-shader-hero .product-hero-copy,
.protein-page .meals-shader-hero .product-hero-copy,
.protein-page .product-hero .product-hero-copy {
  padding-top: 0;
}
.protein-page:not(.home-page) .home-shader-hero .product-hero-copy,
.protein-page:not(.home-page) .meals-shader-hero .product-hero-copy,
.protein-page:not(.home-page) .product-hero .product-hero-copy {
  padding-bottom: 0;
}
.home-page .home-shader-hero .product-hero-copy {
  padding-bottom: 36px;
}
.protein-page.calc-page .calc-shader-hero .product-hero-lead {
  margin-bottom: 0;
}
.home-shader-stage__bg,
.meals-shader-stage__bg {
  bottom: -120px;
  display: block;
  left: -12%;
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
  -webkit-mask-image:
    linear-gradient(
      180deg,
      transparent 0,
      rgba(0, 0, 0, 0.28) 14%,
      #000 38%,
      #000 72%,
      transparent
    ),
    linear-gradient(90deg, transparent 0, #000 16%, #000 84%, transparent);
  mask-image:
    linear-gradient(
      180deg,
      transparent 0,
      rgba(0, 0, 0, 0.28) 14%,
      #000 38%,
      #000 72%,
      transparent
    ),
    linear-gradient(90deg, transparent 0, #000 16%, #000 84%, transparent);
  pointer-events: none;
  position: absolute;
  right: -28%;
  top: 0;
  transform: translateX(calc(18% + 160px));
  z-index: 0;
}
.home-shader-hero,
.meals-shader-hero {
  align-content: start;
  align-items: start;
  background: transparent;
  display: grid;
  gap: 16px 32px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
  overflow: visible;
  position: relative;
  z-index: 1;
}
.home-shader-hero:after,
.meals-shader-hero:after {
  align-self: start;
  content: "";
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
  max-height: 210px;
  min-height: 150px;
  pointer-events: none;
  width: min(100%, 440px);
}
.home-shader-hero .product-hero-copy,
.meals-shader-hero .product-hero-copy {
  position: relative;
  z-index: 2;
}
.home-hero-stack .home-shader-hero + .product-hero-banner--hero {
  padding-bottom: 36px;
  padding-top: 72px;
}
.home-hero-stack {
  display: contents;
}
.calc-hero + .product-hero-banner--hero {
  padding-top: 80px;
}
@media (min-width: 721px) {
  .protein-page.home-page .home-shader-hero.hero.section {
    padding-bottom: 0;
    padding-top: 178px;
    /* padding-top: var(--hero-art-space); */
  }
  .calc-shader-hero {
    min-height: 480px;
    overflow: visible;
    position: relative;
    z-index: 2;
  }
  .calc-shader-stage {
    height: 860px;
    pointer-events: none;
    position: absolute;
    right: calc(50% - 50vw);
    top: -120px;
    width: min(92vw, 1200px);
    z-index: 1;
  }
  .calc-shader-stage__bg {
    bottom: 0;
    display: block;
    height: 760px;
    left: 0;
    -webkit-mask-composite: source-in, source-in;
    -webkit-mask-composite: source-in, xor;
    mask-composite: intersect;
    -webkit-mask-image:
      radial-gradient(ellipse 130% 100% at 72% 25%, #000 18%, transparent 78%),
      linear-gradient(180deg, #000 0, #000 68%, transparent),
      linear-gradient(90deg, transparent 0, #000 16%, #000);
    mask-image:
      radial-gradient(ellipse 130% 100% at 72% 25%, #000 18%, transparent 78%),
      linear-gradient(180deg, #000 0, #000 68%, transparent),
      linear-gradient(90deg, transparent 0, #000 16%, #000);
    position: absolute;
    width: 100%;
  }
  .product-page--analyses .analyses-shader-hero {
    min-height: 480px;
    overflow: visible;
    position: relative;
    z-index: 2;
  }
  .product-page--analyses .analyses-shader-stage {
    height: 860px;
    left: auto;
    pointer-events: none;
    position: absolute;
    right: calc(50% - 50vw);
    top: -120px;
    transform: none;
    width: min(92vw, 1200px);
    z-index: 1;
  }
  .product-page--analyses .analyses-shader-stage__bg {
    bottom: 0;
    display: block;
    height: 760px;
    left: 0;
    -webkit-mask-composite: source-in, source-in;
    -webkit-mask-composite: source-in, xor;
    mask-composite: intersect;
    -webkit-mask-image:
      radial-gradient(ellipse 130% 100% at 72% 25%, #000 18%, transparent 78%),
      linear-gradient(180deg, #000 0, #000 68%, transparent),
      linear-gradient(90deg, transparent 0, #000 16%, #000);
    mask-image:
      radial-gradient(ellipse 130% 100% at 72% 25%, #000 18%, transparent 78%),
      linear-gradient(180deg, #000 0, #000 68%, transparent),
      linear-gradient(90deg, transparent 0, #000 16%, #000);
    position: absolute;
    width: 100%;
  }
}
.analyses-shader-hero .product-hero-copy,
.calc-shader-hero .product-hero-copy {
  max-width: 720px;
  padding-top: 0;
  position: relative;
  z-index: 2;
}
.analyses-shader-hero .product-hero-lead,
.calc-shader-hero .product-hero-lead {
  max-width: 720px;
}
.symptoms-hero.hero {
  align-items: start;
  gap: 24px 40px;
}
.symptoms-hero .product-hero-lead {
  margin-bottom: 0;
}
.symptoms-hero .pills {
  align-content: start;
  margin: 0;
  padding-top: 48px;
}
.symptoms-hero .symptom-board {
  background: var(--surface-strong);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: none;
  grid-column: 1/-1;
  margin: 16px 0 0;
  min-height: 88px;
  padding: 24px 28px;
  width: 100%;
}
.symptoms-hero .symptom-board.has-items {
  min-height: 0;
}
@media (max-width: 1080px) {
  .symptoms-hero .pills {
    padding-top: 0;
  }
}
.protein-page .intro-section .btn {
  margin-top: 0;
}
.intro-section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: auto;
}
@media (max-width: 1080px) {
  .intro-section {
    align-items: start;
  }
  .intro-section-copy {
    display: block;
    min-height: 0;
  }
  .intro-section-actions {
    margin-top: 28px;
  }
}
.protein-page .intro-section .meals-intro-cta {
  min-height: 48px;
  padding: 0 24px;
}
.meals-intro-copy {
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.55;
  margin: 0;
}
.intro-section--glass {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
}
.intro-section--glass .meals-intro-copy {
  font-size: 18px;
  line-height: 1.55;
  margin-bottom: 22px;
}
.intro-section--glass .meals-panel {
  background: var(--surface-strong);
  border-radius: var(--radius-md);
  box-shadow: none;
  padding: 18px;
}
.meals-visual-section {
  background: transparent;
  box-shadow: none;
  padding-bottom: 32px;
  padding-top: 8px;
}
.home-protein-trio {
  padding-bottom: 0;
  padding-top: 36px;
}
.meals-page .meals-hero-visual {
  aspect-ratio: 16/10;
  display: none;
  margin-bottom: 24px;
  margin-top: 0;
  width: 100%;
}
.meals-page .meals-hero-visual.product-hero-banner__frame--tall {
  margin-top: 0;
}
.meals-page .meals-hero .product-hero-copy {
  padding-top: 0;
}
.meals-page .meals-trio-section.home-protein-trio {
  margin: 0;
  padding-bottom: 24px;
  padding-top: 0;
  width: 100%;
}
.meals-page .meals-portions-section .product-section-head {
  padding-top: 0;
}
.home-protein-trio-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.home-protein-trio-card {
  aspect-ratio: 16/10;
  background: var(--bg-muted);
  border-radius: var(--radius-xl);
  box-shadow:
    inset 0 0 0 1px color-mix(in srgb, var(--border) 72%, transparent),
    0 18px 48px rgba(51, 56, 66, 0.1);
  isolation: isolate;
  overflow: hidden;
  position: relative;
}
.home-protein-trio-card img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
  width: 100%;
}
.home-protein-trio-card img,
.home-protein-trio-card picture {
  display: block;
  inset: 0;
  position: absolute;
}
.home-protein-trio-card:after {
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px hsla(0, 0%, 100%, 0.42);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}
.theme-dark .home-protein-trio-card {
  box-shadow:
    inset 0 0 0 1px hsla(0, 0%, 100%, 0.12),
    0 18px 48px rgba(0, 0, 0, 0.22);
}
.theme-dark .home-protein-trio-card:after {
  box-shadow: inset 0 0 0 1px hsla(0, 0%, 100%, 0.08);
}
.product-hero-banner {
  padding-bottom: 24px;
  padding-top: 8px;
}
.product-hero-banner--section {
  padding-bottom: 40px;
  padding-top: 48px;
}
.section.product-hero-banner--section:has(.product-hero-banner__frame--tall) {
  padding-bottom: 0;
  padding-top: 0;
}
.product-hero-banner--hero {
  padding-bottom: 40px;
  padding-top: 0;
}
.calc-hero + .product-hero-banner--hero {
  padding-top: 8px;
}
.product-hero-banner__frame {
  aspect-ratio: 1180/360;
  background: var(--bg-muted);
  border-radius: var(--radius-xl);
  box-shadow:
    inset 0 0 0 1px color-mix(in srgb, var(--border) 72%, transparent),
    0 18px 48px rgba(51, 56, 66, 0.1);
  isolation: isolate;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.product-hero-banner__frame--tall {
  aspect-ratio: 1180/598;
  margin-top: 36px;
}
.product-hero-banner__frame--protein-food-v2 {
  aspect-ratio: 1180/420;
  margin-top: 72px;
}
.product-hero-banner__frame img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
  width: 100%;
}
.product-hero-banner__frame img,
.product-hero-banner__frame picture {
  display: block;
  inset: 0;
  position: absolute;
}
.before-after {
  cursor: ew-resize;
  inset: 0;
  position: absolute;
  touch-action: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.before-after.is-dragging {
  cursor: grabbing;
}
.before-after__layer {
  inset: 0;
  position: absolute;
}
.before-after__layer img,
.before-after__layer picture {
  display: block;
  height: 100%;
  inset: 0;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
  pointer-events: none;
  position: absolute;
  width: 100%;
}
.before-after__layer--before {
  z-index: 1;
}
.before-after__divider {
  bottom: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  width: 2px;
  z-index: 2;
}
.before-after__line {
  background: hsla(0, 0%, 100%, 0.92);
  box-shadow: 0 0 12px rgba(51, 56, 66, 0.18);
  display: block;
  height: 100%;
  width: 100%;
}
.before-after__handle {
  background: var(--surface-strong);
  border: 0;
  border-radius: 999px;
  box-shadow:
    inset 0 0 0 1px color-mix(in srgb, var(--border) 80%, transparent),
    0 10px 28px rgba(51, 56, 66, 0.16);
  color: var(--text);
  cursor: ew-resize;
  display: grid;
  height: 44px;
  padding: 0;
  place-items: center;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  z-index: 3;
}
.before-after__handle:focus-visible {
  box-shadow:
    inset 0 0 0 1px color-mix(in srgb, var(--border) 80%, transparent),
    var(--ring),
    0 10px 28px rgba(51, 56, 66, 0.16);
  outline: none;
}
.before-after.is-dragging .before-after__handle,
.before-after__handle:active {
  cursor: grabbing;
}
.before-after__handle-grip {
  display: grid;
  height: 22px;
  place-items: center;
  width: 22px;
}
.before-after__handle-grip svg {
  height: 100%;
  width: 100%;
}
.before-after__label {
  backdrop-filter: blur(8px);
  background: rgba(16, 21, 27, 0.52);
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 6px 12px;
  pointer-events: none;
  position: absolute;
  text-transform: uppercase;
  top: 16px;
  z-index: 4;
}
.before-after__label--before {
  left: 16px;
}
.before-after__label--after {
  right: 16px;
}
.theme-dark .before-after__handle {
  box-shadow:
    inset 0 0 0 1px hsla(0, 0%, 100%, 0.12),
    0 10px 28px rgba(0, 0, 0, 0.28);
}
.theme-dark .before-after__line {
  background: hsla(0, 0%, 100%, 0.88);
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.32);
}
.product-hero-banner__frame--protein-food-v2 img,
.product-hero-banner__frame--tall img {
  -o-object-position: center center;
  object-position: center center;
}
.product-hero-banner__frame--protein-food-v2 img {
  bottom: auto;
  height: calc(100% + 48px);
  top: -48px;
}
.product-hero-banner__frame:after {
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px hsla(0, 0%, 100%, 0.42);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}
.theme-dark .product-hero-banner__frame {
  box-shadow:
    inset 0 0 0 1px hsla(0, 0%, 100%, 0.12),
    0 18px 48px rgba(0, 0, 0, 0.22);
}
.theme-dark .product-hero-banner__frame:after {
  box-shadow: inset 0 0 0 1px hsla(0, 0%, 100%, 0.08);
}
.protein-page .product-hero--after-banner .product-hero-copy {
  padding-top: 0;
}
.protein-page .product-hero--after-banner.section {
  padding-bottom: 48px;
  padding-top: 0;
}
.meals-visual {
  aspect-ratio: 1180/360;
  background: var(--bg-muted);
  border-radius: var(--radius-xl);
  box-shadow:
    inset 0 0 0 1px color-mix(in srgb, var(--border) 72%, transparent),
    0 18px 48px rgba(51, 56, 66, 0.1);
  isolation: isolate;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.calc-page .calc-hero-visual {
  display: none;
}
.meals-visual img {
  display: block;
  height: 100%;
  inset: 0;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
  position: absolute;
  width: 100%;
}
.intro-section + .insights-section {
  margin-top: 0;
}
.meals-visual:after {
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px hsla(0, 0%, 100%, 0.45);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}
.theme-dark .meals-visual:after {
  box-shadow: inset 0 0 0 1px hsla(0, 0%, 100%, 0.08);
}
.protein-page .trust-row {
  margin-top: 36px;
}
@media (min-width: 1081px) {
  .insights-section--reverse {
    grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
  }
}
.protein-topics-section {
  display: grid;
  gap: 36px;
}
.protein-topics-intro {
  padding-bottom: 0;
}
.protein-topics-intro .insights-copy {
  justify-content: flex-start;
  min-height: 0;
}
.protein-topics-intro .insights-visual {
  max-height: none;
  min-height: 0;
}
.protein-topics-intro-copy .eyebrow {
  margin-bottom: 14px;
}
.protein-topics-intro-title {
  margin-bottom: 18px;
}
.protein-topics-intro-lead {
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.55;
  margin: 0;
  max-width: 520px;
}
.protein-topics-panel {
  background:
    radial-gradient(
      circle at 0 0,
      color-mix(in srgb, var(--brand) 10%, transparent),
      transparent 34%
    ),
    radial-gradient(
      circle at 100% 100%,
      color-mix(in srgb, var(--ad) 8%, transparent),
      transparent 28%
    ),
    var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 0;
  overflow: hidden;
  padding: 44px 48px;
}
.protein-topics-controls {
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
  padding-bottom: 28px;
}
.protein-topics-picker {
  align-content: flex-start;
  -moz-column-gap: 8px;
  column-gap: 8px;
  margin-bottom: 0;
  min-width: 0;
  row-gap: 8px;
  width: 100%;
}
.protein-topic-head {
  display: grid;
  gap: 14px;
  margin-bottom: 24px;
  max-width: 820px;
}
.protein-topic-head-title {
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.16;
  margin: 0;
}
.protein-topic-head-lead {
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.55;
  margin: 0;
}
.protein-topic-blocks {
  display: grid;
  gap: 14px;
}
.protein-topic-block {
  background: var(--surface-strong);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
}
.protein-topic-block-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin: 0 0 12px;
  text-transform: uppercase;
}
.protein-topic-block-text {
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}
.protein-topic-block--advice {
  background:
    radial-gradient(
      circle at 100% 0,
      color-mix(in srgb, var(--brand) 10%, transparent),
      transparent 42%
    ),
    var(--surface-strong);
  border-color: color-mix(in srgb, var(--brand) 28%, transparent);
}
.protein-topic-block--advice .protein-topic-block-label {
  color: var(--brand);
}
.protein-topic-block--myth {
  background:
    radial-gradient(
      circle at 0 100%,
      color-mix(in srgb, var(--warning) 10%, transparent),
      transparent 40%
    ),
    var(--surface-strong);
  border-color: color-mix(in srgb, var(--warning) 32%, transparent);
}
.protein-topic-block--myth .protein-topic-block-label {
  color: var(--warning);
}
.protein-topic-myth-title {
  color: var(--text) !important;
  font-style: italic;
  font-weight: 500;
  margin-bottom: 10px !important;
}
.protein-topic-block--research {
  background: var(--bg-muted);
  border-color: color-mix(in srgb, var(--text-muted) 24%, transparent);
}
.protein-topic-block--research .protein-topic-block-label {
  color: var(--text);
}
.protein-topic-source {
  color: var(--text-muted) !important;
  font-size: 13px !important;
  font-style: italic;
  line-height: 1.5 !important;
  margin-top: 14px !important;
}
.protein-topic-block--outcome {
  background:
    radial-gradient(
      circle at 100% 100%,
      color-mix(in srgb, var(--success) 12%, transparent),
      transparent 38%
    ),
    var(--surface-strong);
  border-color: color-mix(in srgb, var(--success) 32%, transparent);
}
.protein-topic-block--outcome .protein-topic-block-label {
  color: var(--success);
}
.protein-topic-outcome-text {
  color: var(--text);
  font-weight: 500;
}
.picker,
.picker-row,
.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.picker {
  justify-content: flex-start;
}
.chip,
.meals-tab,
.picker-chip,
.pill {
  background: var(--surface-strong);
  border: 1px solid var(--border);
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
  color: var(--text-soft);
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  padding: 11px 18px;
  transition:
    color 0.15s ease,
    border-color 0.15s ease,
    background 0.15s ease;
}
.chip:hover,
.meals-tab:hover,
.picker-chip:hover,
.pill:hover {
  border-color: var(--border-hover);
  color: var(--text);
}
.chip.active,
.meals-tab.active,
.picker-chip.active,
.pill.selected {
  background: linear-gradient(135deg, var(--brand), var(--brand-hover));
  border-color: transparent;
  color: #fff;
}
.protein-topics-picker .chip {
  flex-basis: auto;
  flex-grow: 0;
  flex-shrink: 0;
  max-width: 100%;
  white-space: nowrap;
  width: auto;
}
.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.symptom-board {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  min-height: 0;
  padding: 0;
  width: 100%;
}
.symptom-board.has-items {
  min-height: 0;
}
.symptom-board.has-items .board-card {
  padding: 16px 0;
}
.symptom-board.has-items .board-card:first-child {
  padding-top: 0;
}
.board-lede {
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.55;
  margin: 0;
}
.symptoms-hero .symptom-board:not(.has-items) {
  align-items: center;
  display: flex;
}
.board-items {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.board-card {
  align-items: start;
  border-bottom: 1px solid var(--border);
  display: grid;
  gap: 8px 32px;
  grid-template-columns: minmax(180px, 240px) minmax(0, 1fr);
  padding: 18px 0;
}
.board-card:first-child {
  padding-top: 0;
}
.board-card:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.card-head {
  color: var(--text);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  margin: 0;
}
.card-about {
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.5;
  margin: 0 0 10px;
}
.card-tests {
  background: transparent;
  border-radius: 0;
  color: var(--text);
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
  padding: 0;
}
.card-tests em {
  color: var(--brand);
  font-style: normal;
  font-weight: 700;
}
.symptom-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.symptom-item {
  background: var(--surface-strong);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 28px;
}
.symptom-item-title {
  color: var(--text);
  display: block;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.22;
  margin-bottom: 10px;
}
.symptom-item-text {
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.5;
  margin: 0;
}
.symptom-effects {
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  margin-bottom: 32px;
  overflow: hidden;
  padding: 32px 34px 34px;
}
.symptom-effects--visible {
  background:
    radial-gradient(circle at 92% 8%, rgba(0, 170, 204, 0.16), transparent 36%),
    radial-gradient(
      circle at 4% 96%,
      rgba(67, 169, 151, 0.12),
      transparent 34%
    ),
    linear-gradient(
      145deg,
      color-mix(in srgb, var(--surface-strong) 90%, var(--brand)),
      var(--surface)
    );
}
.symptom-effects--invisible {
  background:
    radial-gradient(
      circle at 88% 14%,
      rgba(120, 96, 190, 0.18),
      transparent 38%
    ),
    radial-gradient(circle at 8% 88%, rgba(0, 170, 204, 0.1), transparent 32%),
    linear-gradient(
      145deg,
      color-mix(in srgb, var(--surface) 86%, var(--ad)),
      var(--surface-strong)
    );
}
.symptom-effects .subsection-title {
  margin-top: 0;
}
.symptom-effects-head {
  align-items: start;
  display: grid;
  gap: 16px;
  grid-template-columns: auto minmax(0, 1fr);
  margin-bottom: 24px;
}
.symptom-effects-icon {
  align-items: center;
  border-radius: 14px;
  display: inline-flex;
  flex-shrink: 0;
  height: 44px;
  justify-content: center;
  width: 44px;
}
.symptom-effects-icon svg {
  height: 22px;
  width: 22px;
}
.symptom-effects--visible .symptom-effects-icon {
  background: color-mix(in srgb, var(--brand) 14%, transparent);
  color: var(--brand);
}
.symptom-effects--invisible .symptom-effects-icon {
  background: color-mix(in srgb, var(--ad) 14%, transparent);
  color: var(--ad);
}
.symptom-effects-head .subsection-sub {
  margin-bottom: 0;
}
.symptom-effects .subsection-sub {
  margin-bottom: 24px;
}
.symptom-effects--visible .symptom-item {
  background:
    radial-gradient(circle at 100% 0, rgba(0, 170, 204, 0.07), transparent 44%),
    radial-gradient(
      circle at 0 100%,
      rgba(67, 169, 151, 0.06),
      transparent 40%
    ),
    var(--surface-strong);
  border-color: color-mix(in srgb, var(--brand) 16%, var(--border));
  box-shadow: none;
}
.symptom-effects--invisible .symptom-item {
  background:
    radial-gradient(
      circle at 100% 0,
      rgba(120, 96, 190, 0.08),
      transparent 44%
    ),
    radial-gradient(circle at 0 100%, rgba(0, 170, 204, 0.05), transparent 40%),
    var(--surface-strong);
  border-color: color-mix(in srgb, var(--ad) 18%, var(--border));
  box-shadow: none;
}
.trust-row--alert {
  --row-accent: var(--error);
  background: color-mix(in srgb, var(--error) 7%, var(--surface-strong));
  border-left: 1px solid color-mix(in srgb, var(--error) 22%, var(--border));
  border: 1px solid color-mix(in srgb, var(--error) 22%, var(--border));
  border-radius: var(--radius-lg);
  box-shadow: none;
  margin: 36px 0 0;
  padding: 22px 24px;
}
.trust-row--alert .trust-row__badge {
  background: color-mix(in srgb, var(--error) 12%, transparent);
  color: var(--error);
  height: 36px;
  width: 36px;
}
.trust-row--alert .trust-row__badge svg {
  height: 20px;
  width: 20px;
}
.trust-row--alert .trust-row__label {
  color: var(--error);
}
.trust-row--alert .trust-row__note,
.trust-row--alert p {
  color: var(--text);
}
.subsection-title {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 36px 0 8px;
}
.subsection-sub {
  color: var(--text-soft);
  font-size: 16px;
  margin-bottom: 22px;
}
.package-buy-grid-wrap {
  overflow: visible;
}
.package-buy-grid--triple {
  align-items: stretch;
  display: flex;
  gap: 18px;
  margin: 0;
  overflow: visible;
  padding: 0;
  scroll-snap-type: x mandatory;
}
@media (max-width: 1079px) {
  .package-buy-grid-wrap {
    margin-inline: -8px;
    overflow-x: auto;
    overflow-y: visible;
    padding: 12px 20px 24px 8px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .package-buy-grid--triple .package-buy-card {
    margin-bottom: 48px;
  }
}
.package-buy-grid--triple .package-buy-card {
  flex: 0 0 min(360px, calc(100vw - 64px));
  scroll-snap-align: start;
}
.package-buy-grid--triple .package-buy-card-foot {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  margin-top: auto;
  padding-top: 8px;
}
.package-buy-grid--triple .package-price-row {
  margin-bottom: 18px;
  margin-top: 0;
}
.package-buy-grid--triple .product-button {
  margin-top: 0;
}
@media (min-width: 1080px) {
  .package-buy-grid-wrap {
    margin-inline: 0;
    overflow: visible;
    padding: 0;
  }
  .package-buy-grid--triple {
    align-items: stretch;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-inline: 0;
    overflow: visible;
    padding: 6px 0 12px;
    scroll-snap-type: none;
  }
  .package-buy-grid--triple .package-buy-card {
    flex: unset;
    height: 100%;
    min-width: 0;
  }
}
.meals-widget {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.meals-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.meals-panel {
  background: var(--surface-strong);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 28px;
}
.plan-title {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.35;
  margin-bottom: 18px;
}
.plan-meals {
  list-style: none;
  margin: 0;
  padding: 0;
}
.plan-meals li {
  border-bottom: 1px solid var(--border);
  color: var(--text);
  font-size: 15px;
  line-height: 1.5;
  padding: 10px 0;
}
.plan-meal-protein {
  color: var(--brand);
  font-weight: 600;
}
.plan-meals li:last-child {
  border-bottom: none;
}
.plan-total {
  border-top: 1px solid var(--border);
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 600;
  margin: 18px 0 16px;
  padding-bottom: 22px;
  padding-top: 16px;
}
.principle-grid {
  margin-bottom: 8px;
}
.cofactor-block {
  display: grid;
  gap: 0;
}
.cofactor-picker {
  margin-bottom: 20px;
}
.cofactor-detail {
  padding: 28px 32px;
}
.cofactor-detail__layout {
  align-items: start;
  display: grid;
  gap: 32px 40px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}
.cofactor-detail-extra-text,
.cofactor-detail__main p {
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.55;
  margin: 0 0 14px;
}
.cofactor-detail-extra-text:last-child,
.cofactor-detail__main p:last-child {
  margin-bottom: 0;
}
.cofactor-detail__food {
  color: var(--text);
  font-weight: 500;
}
.cofactor-detail__cta {
  margin-top: 4px;
}
.cofactor-detail-enter-active,
.cofactor-detail-leave-active {
  transition:
    opacity 0.24s ease,
    transform 0.24s ease;
}
.cofactor-detail-enter-from,
.cofactor-detail-leave-to {
  opacity: 0;
  transform: translateY(10px);
}
@media (max-width: 900px) {
  .cofactor-detail__layout {
    gap: 20px;
    grid-template-columns: 1fr;
  }
}
@media (max-width: 720px) {
  .cofactor-detail {
    padding: 24px;
  }
}
.format-card-title {
  margin-top: 0;
}
.calc-panel {
  max-width: none;
  width: 100%;
}
.calc-layout {
  align-items: start;
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
}
.calc-layout:has(.calc-result-col) {
  align-items: start;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 400px);
}
.calc-form-col {
  align-content: start;
  min-width: 0;
}
.calc-form-col,
.calc-form-col__fields {
  display: grid;
  gap: 16px;
}
.calc-form-toggle {
  align-items: center;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  cursor: pointer;
  display: none;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  gap: 12px;
  justify-content: space-between;
  padding: 14px 16px;
  text-align: left;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
  width: 100%;
}
.calc-form-toggle svg {
  flex-shrink: 0;
  height: 18px;
  transition: transform 0.2s ease;
  width: 18px;
}
.calc-form-toggle[aria-expanded="true"] svg {
  transform: rotate(180deg);
}
.calc-form-toggle:focus-visible {
  border-color: var(--brand);
  box-shadow: var(--ring);
  outline: none;
}
.calc-result-col {
  align-items: start;
  display: flex;
  justify-content: stretch;
  min-width: 0;
  width: 100%;
}
.calc-result-report {
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--brand) 5%, var(--surface-strong)) 0,
    color-mix(in srgb, var(--brand) 10%, var(--bg-muted)) 100%
  );
  border: 1px solid color-mix(in srgb, var(--brand) 18%, var(--border));
  border-radius: var(--radius-lg);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--brand) 6%, transparent);
  display: grid;
  gap: 16px;
  min-width: 0;
  padding: 28px 28px 24px;
  width: 100%;
}
.theme-dark .calc-result-report {
  background: linear-gradient(
    180deg,
    color-mix(in srgb, var(--brand) 8%, var(--surface-strong)) 0,
    color-mix(in srgb, var(--brand) 14%, var(--bg-muted)) 100%
  );
  border-color: color-mix(in srgb, var(--brand) 24%, var(--border));
  box-shadow:
    inset 0 0 0 1px color-mix(in srgb, var(--brand) 10%, transparent),
    0 12px 32px rgba(0, 0, 0, 0.16);
}
.calc-result-report__head {
  display: grid;
  gap: 6px;
}
.calc-result-report__eyebrow {
  color: var(--brand);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin: 0;
  text-transform: uppercase;
}
.calc-result-report__tier {
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
  margin: 0;
}
.calc-result-report__value-wrap {
  align-items: baseline;
  border-bottom: 1px solid color-mix(in srgb, var(--brand) 16%, var(--border));
  display: flex;
  gap: 8px;
  padding: 8px 0 4px;
}
.calc-result-report__value {
  color: var(--brand);
  font-size: 40px;
  font-weight: 300;
  letter-spacing: -0.06em;
  line-height: 1;
}
.calc-result-report__unit {
  color: var(--text-soft);
  font-size: 15px;
  font-weight: 500;
}
.calc-result-report__range {
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.45;
  margin: 0;
}
.calc-result-report__body {
  display: grid;
  gap: 10px;
}
.calc-result-report__insight {
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.55;
  margin: 0;
}
.calc-result-report__context {
  border-top: 1px solid color-mix(in srgb, var(--brand) 10%, var(--border));
  padding-top: 10px;
}
.calc-result-report__context,
.calc-result-report__per-kg {
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}
.calc-grid {
  align-items: start;
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr 1fr;
}
.calc-field {
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.calc-field-label {
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
}
.calc-field input,
.calc-field select {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font: inherit;
  font-size: 15px;
  outline: none;
  padding: 13px 14px;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
  width: 100%;
}
.calc-field select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none' viewBox='0 0 12 8'%3E%3Cpath stroke='%23667085' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.6' d='m1 1.5 5 5 5-5'/%3E%3C/svg%3E");
  background-position: right 14px center;
  background-repeat: no-repeat;
  background-size: 12px 8px;
  padding-right: 38px;
}
.calc-result-range {
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.45;
  margin: 0;
}
.calc-actions {
  align-items: stretch;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 0;
}
.calc-actions--has-result .btn {
  flex: 1 1 180px;
  width: auto;
}
.calc-actions .calc-result-range {
  flex: 1 1 220px;
  max-width: 420px;
}
.calc-field input:focus,
.calc-field select:focus {
  border-color: var(--brand);
  box-shadow: var(--ring);
}
.table-wrap {
  background: var(--surface-strong);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  overflow-x: auto;
}
.data-table {
  border-collapse: collapse;
  font-size: 14px;
  width: 100%;
}
.data-table td,
.data-table th {
  border-bottom: 1px solid var(--border);
  padding: 14px 16px;
  text-align: left;
}
.data-table th {
  background: var(--brand);
  border-bottom-color: hsla(0, 0%, 100%, 0.18);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.data-table td {
  background: var(--surface-strong);
  color: var(--text);
}
.data-table tr:last-child td {
  border-bottom: none;
}
.protein-footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: space-between;
}
.protein-disclaimer {
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.6;
  margin: 0 auto;
  max-width: var(--container);
  padding: 0 20px 24px;
  text-align: center;
}
@media (max-width: 1080px) {
  .protein-topics-picker {
    justify-content: flex-start;
  }
}
@media (max-width: 960px) {
  .package-buy-grid--triple .package-buy-card-featured {
    transform: none;
  }
  .calc-layout:has(.calc-result-col) {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 720px) {
  .protein-page:not(.home-page) {
    padding-bottom: 42px;
  }
  .protein-page.product-page:not(.home-page) > .hero.section.product-hero {
    padding-top: 120px;
    /* padding-top: calc(var(--mobile-hero-gap) - var(--header-gap)); */
  }
  .protein-page.home-page {
    padding-top: 120px;
  }
  .calc-layout {
    gap: 24px;
    grid-template-columns: 1fr;
  }
  .calc-layout--has-result .calc-result-col {
    order: -1;
  }
  .calc-form-toggle {
    display: flex;
  }
  .calc-form-col__fields--collapsed {
    display: none;
  }
  .calc-result-report {
    min-height: 0;
    padding: 22px 20px 20px;
  }
  .calc-result-report__value {
    font-size: 44px;
  }
  .calc-actions--has-result {
    flex-direction: column;
  }
  .calc-actions--has-result .btn {
    flex: 1 1 auto;
    width: 100%;
  }
  .calc-grid {
    grid-template-columns: 1fr;
  }
  .home-shader-hero,
  .meals-shader-hero {
    grid-template-columns: 1fr;
    overflow: hidden;
  }
  .home-page .home-shader-hero {
    overflow: visible;
  }
  .home-page .product-hero-actions {
    padding-bottom: 4px;
    position: relative;
    z-index: 1;
  }
  .home-shader-stage__bg,
  .meals-shader-stage__bg {
    bottom: -160px;
    left: 0;
    -webkit-mask-image:
      linear-gradient(
        180deg,
        transparent 0,
        rgba(0, 0, 0, 0.22) 12%,
        #000 34%,
        #000 78%,
        transparent
      ),
      linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent);
    mask-image:
      linear-gradient(
        180deg,
        transparent 0,
        rgba(0, 0, 0, 0.22) 12%,
        #000 34%,
        #000 78%,
        transparent
      ),
      linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent);
    right: 0;
    top: 0;
    transform: none;
  }
  .home-page .home-shader-hero .home-shader-stage__bg,
  .home-page .home-shader-hero canvas.shader-background {
    display: none !important;
    height: 0 !important;
    min-height: 0 !important;
    overflow: hidden !important;
    pointer-events: none !important;
    visibility: hidden !important;
  }
  .home-shader-hero:after,
  .meals-shader-hero:after {
    display: none;
  }
  .protein-topics-panel {
    padding: 28px 24px;
  }
  .protein-topics-controls {
    margin-bottom: 24px;
    padding-bottom: 22px;
  }
  .meals-panel,
  .symptom-item {
    padding: 22px;
  }
  .board-card {
    gap: 8px;
    grid-template-columns: 1fr;
  }
  .symptom-effects,
  .symptoms-hero .symptom-board {
    padding: 22px;
  }
  .trust-row--alert,
  .trust-row--positive {
    padding: 20px 22px;
  }
  .home-page .home-hero-stack {
    display: flex;
    flex-direction: column-reverse;
    gap: 24px;
    margin: 0 auto;
    width: var(--container);
  }
  .home-page .home-hero-stack > .section {
    margin: 0;
    padding: 0;
    width: 100%;
  }
  .home-page .home-hero-stack .home-shader-hero {
    padding: 0;
  }
  .home-page .home-hero-stack .product-hero-banner--hero {
    padding-bottom: 0;
    padding-top: 16px;
  }
  .home-page .home-hero-stack .product-hero-banner__frame {
    aspect-ratio: 16/10;
    max-height: none;
    min-height: 280px;
  }
  .home-page .home-hero-stack .product-hero-banner__frame img {
    min-height: 280px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center center;
    object-position: center center;
  }
  .home-page .protein-topics-section {
    gap: 24px;
    grid-template-areas: "intro-copy" "panel" "intro-visual";
    padding-bottom: 36px;
    padding-top: 24px;
  }
  .home-page .protein-topics-intro {
    display: contents;
  }
  .home-page .protein-topics-intro .insights-copy {
    grid-area: intro-copy;
    order: unset;
  }
  .home-page .protein-topics-intro .insights-visual {
    grid-area: intro-visual;
    order: unset;
  }
  .home-page .protein-topics-panel {
    grid-area: panel;
  }
  .home-page #analyses.insights-section,
  .home-page .product-packages {
    padding-bottom: 36px;
    padding-top: 36px;
  }
  .home-page #segments.product-packages {
    padding-bottom: 0;
  }
  .home-page #analyses.insights-section {
    padding-top: 0;
  }
  .insights-copy--cta {
    min-height: 0;
  }
  .insights-copy--cta .insights-copy__btn {
    margin-top: 24px;
  }
  .home-protein-trio-card img,
  .meals-visual img,
  .product-hero-banner__frame img,
  .product-hero-banner__frame--tall img {
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center center;
    object-position: center center;
  }
  .home-protein-trio-grid {
    grid-template-columns: 1fr;
  }
  .meals-visual,
  .product-hero-banner__frame {
    align-items: center;
    display: flex;
    justify-content: center;
  }
  .product-page--analyses > .analyses-shader-hero.hero.section {
    overflow: visible;
    padding-bottom: 36px;
    position: relative;
  }
  .product-page--analyses .analyses-shader-stage {
    height: 440px;
    left: 50%;
    margin-bottom: 0;
    max-width: none;
    order: unset;
    overflow: visible;
    pointer-events: none;
    position: absolute;
    right: auto;
    top: -40px;
    transform: translateX(-50%);
    width: 100vw;
    z-index: 1;
  }
  .product-page--analyses .analyses-shader-stage__bg {
    height: 440px;
    left: 0;
    margin-left: 0;
    -webkit-mask-image: linear-gradient(
      180deg,
      transparent 0,
      rgba(0, 0, 0, 0.3) 8%,
      rgba(0, 0, 0, 0.75) 16%,
      #000 26%,
      #000 74%,
      rgba(0, 0, 0, 0.75) 84%,
      rgba(0, 0, 0, 0.3) 92%,
      transparent
    );
    mask-image: linear-gradient(
      180deg,
      transparent 0,
      rgba(0, 0, 0, 0.3) 8%,
      rgba(0, 0, 0, 0.75) 16%,
      #000 26%,
      #000 74%,
      rgba(0, 0, 0, 0.75) 84%,
      rgba(0, 0, 0, 0.3) 92%,
      transparent
    );
    width: 100%;
  }
  .product-page--analyses .product-hero-copy {
    padding-top: 0;
    position: relative;
    z-index: 2;
  }
  .product-page--analyses .product-hero-lead {
    margin-bottom: 0;
  }
  .product-page--analyses .analyses-picker-section {
    padding-bottom: 0;
    padding-top: 0;
  }
  .product-page--analyses .analyses-picker-section + .section {
    padding-bottom: 24px;
    padding-top: 24px;
  }
  .product-page--analyses .analyses-picker-section + .section .picker-row {
    margin-bottom: 0;
  }
  .product-page--analyses .product-packages {
    overflow: visible;
    padding-bottom: 0;
    padding-top: 36px;
  }
  .meals-page > .hero.meals-hero.product-hero.section,
  .symptoms-page > .hero.symptoms-hero.product-hero.section {
    padding-bottom: 0;
  }
  .meals-page {
    display: flex;
    flex-direction: column;
    gap: 36px;
  }
  .meals-page > .section {
    margin-bottom: 0;
    margin-top: 0;
    padding-bottom: 0;
    padding-top: 0;
  }
  .meals-page > .intro-section.section {
    gap: 24px;
    padding: 24px;
  }
  .meals-page .meals-hero.meals-shader-hero {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .meals-page .meals-shader-hero .meals-shader-stage__bg {
    display: none;
  }
  .meals-page .meals-hero.product-hero {
    gap: 0;
  }
  .meals-page .meals-hero .product-hero-lead {
    margin-bottom: 0;
  }
  .meals-page .meals-hero .product-hero-copy {
    padding-bottom: 0;
    padding-top: 0;
  }
  .meals-page .product-section-head {
    margin-bottom: 24px;
  }
  .meals-page .meals-portions-section .product-section-head {
    margin-top: 0;
  }
  .meals-page .intro-section-actions,
  .meals-page .trust-row {
    margin-top: 24px;
  }
  .meals-page .product-hero-banner--section.section {
    padding-bottom: 0;
    padding-top: 0;
  }
  .meals-page .product-hero-banner__frame--tall {
    aspect-ratio: 16/10;
    margin-top: 0;
    min-height: 0;
  }
  .meals-page .meals-hero-visual.product-hero-banner__frame {
    aspect-ratio: 16/10;
    display: flex;
    margin-bottom: 36px;
    margin-top: 0;
    min-height: 0;
    order: -1;
  }
  .meals-page .product-hero-banner__frame--tall img {
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center center;
    object-position: center center;
  }
  .meals-page .meals-trio-section.home-protein-trio {
    --trio-edge-fade: 28px;
    padding-bottom: 24px;
    padding-top: 0;
  }
  .meals-page .meals-trio-section .home-protein-trio-wrap {
    margin: 0 -12px;
    position: relative;
    --fade-left: 0px;
    --fade-right: var(--trio-edge-fade);
  }
  .meals-page .meals-trio-section .home-protein-trio-wrap:not(.at-start) {
    --fade-left: var(--trio-edge-fade);
  }
  .meals-page .meals-trio-section .home-protein-trio-wrap.at-end {
    --fade-right: 0px;
  }
  .meals-page .meals-trio-section .home-protein-trio-grid {
    display: flex;
    gap: 14px;
    grid-template-columns: unset;
    margin: 0;
    -webkit-mask-image: linear-gradient(
      to right,
      transparent 0,
      #000 var(--fade-left),
      #000 calc(100% - var(--fade-right)),
      transparent 100%
    );
    mask-image: linear-gradient(
      to right,
      transparent 0,
      #000 var(--fade-left),
      #000 calc(100% - var(--fade-right)),
      transparent 100%
    );
    overflow-x: auto;
    overflow-y: visible;
    padding: 0 12px 4px;
    scroll-behavior: smooth;
    scroll-padding-inline: 12px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .meals-page .meals-trio-section .home-protein-trio-grid::-webkit-scrollbar {
    display: none;
  }
  .meals-page .meals-trio-section .home-protein-trio-card {
    flex: 0 0 min(320px, calc(100% - 36px));
    scroll-snap-align: start;
  }
  .calc-page .calc-hero-visual.product-hero-banner__frame {
    aspect-ratio: 16/10;
    display: flex;
    margin-bottom: 36px;
    margin-top: 0;
    min-height: 0;
    order: -1;
  }
  .calc-page .calc-shader-stage {
    display: none;
  }
  .calc-page > .hero.calc-shader-hero.product-hero.section {
    min-height: 0;
    overflow: visible;
    padding-bottom: 0;
    padding-top: calc(var(--mobile-hero-gap) - var(--header-gap));
  }
  .calc-page
    > .hero.calc-shader-hero.product-hero.section
    + .calc-section.section {
    margin-top: 36px;
  }
  .calc-page .calc-shader-hero .product-hero-lead {
    margin-bottom: 0;
  }
  .calc-page .meals-visual {
    aspect-ratio: 16/10;
    max-height: none;
    min-height: 280px;
  }
  .calc-page .meals-visual img {
    min-height: 280px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center center;
    object-position: center center;
  }
  .symptoms-page .symptoms-hero.product-hero {
    gap: 24px;
  }
  .symptoms-page .symptoms-hero .product-hero-lead {
    margin-bottom: 24px;
  }
  .symptoms-page .symptoms-hero .pills {
    margin-top: 0;
    padding-top: 0;
  }
  .symptoms-page .product-hero-banner__frame--tall {
    aspect-ratio: 16/10;
    margin-top: 0;
    max-height: none;
    min-height: 300px;
  }
  .symptoms-page .product-hero-banner__frame--tall .before-after,
  .symptoms-page .product-hero-banner__frame--tall .before-after__layer,
  .symptoms-page .product-hero-banner__frame--tall .before-after__layer--after,
  .symptoms-page
    .product-hero-banner__frame--tall
    .before-after__layer--before {
    min-height: 100%;
  }
  .symptoms-page .insights-section .insights-visual {
    aspect-ratio: 16/10;
    min-height: 300px;
  }
  .symptoms-page .insights-section .insights-visual img {
    min-height: 300px;
  }
  .product-page--analyses #health-insights.insights-section {
    gap: 24px;
    padding-bottom: 36px;
    padding-top: 0;
  }
  .product-page--analyses #health-insights .insights-visual {
    aspect-ratio: 16/10;
    min-height: 0;
  }
  .product-page--analyses #health-insights .insights-visual img {
    min-height: 280px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center center;
    object-position: center center;
  }
  .symptoms-page .product-packages {
    margin-bottom: 0;
    padding-bottom: 0;
  }
}
@media (max-width: 960px) {
  .symptoms-page .symptom-effects {
    margin-bottom: 24px;
    overflow: visible;
    --symptom-icon-col: 44px;
    --symptom-head-gap: 16px;
    --symptom-text-inset: calc(
      var(--symptom-icon-col) + var(--symptom-head-gap)
    );
    --symptom-item-pad: 20px;
    --symptom-edge-fade: 28px;
  }
  .symptoms-page .symptom-effects .symptom-grid-wrap {
    margin: 0 -22px;
    position: relative;
    --fade-left: 0px;
    --fade-right: var(--symptom-edge-fade);
  }
  .symptoms-page .symptom-effects .symptom-grid-wrap:not(.at-start) {
    --fade-left: var(--symptom-edge-fade);
  }
  .symptoms-page .symptom-effects .symptom-grid-wrap.at-end {
    --fade-right: 0px;
  }
  .symptoms-page .symptom-effects .symptom-grid {
    display: flex;
    gap: 14px;
    margin: 0;
    overflow-x: auto;
    overflow-y: visible;
    padding: 0 22px 12px;
    scroll-behavior: smooth;
    scroll-padding-inline: 22px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    grid-template-columns: unset;
    -webkit-mask-image: linear-gradient(
      to right,
      transparent 0,
      #000 var(--fade-left),
      #000 calc(100% - var(--fade-right)),
      transparent 100%
    );
    mask-image: linear-gradient(
      to right,
      transparent 0,
      #000 var(--fade-left),
      #000 calc(100% - var(--fade-right)),
      transparent 100%
    );
    scrollbar-width: none;
  }
  .symptoms-page .symptom-effects .symptom-grid::-webkit-scrollbar {
    display: none;
  }
  .symptoms-page .symptom-effects .symptom-item {
    flex: 0 0 min(320px, calc(100% - 36px));
    min-height: 100%;
    padding: var(--symptom-item-pad);
    scroll-snap-align: start;
    text-align: left;
  }
  .symptoms-page .symptom-effects .symptom-item-text,
  .symptoms-page .symptom-effects .symptom-item-title {
    text-align: left;
  }
}

/* ===== ShaderMetaballs.css ===== */
.shader-metaballs {
  background: transparent;
  display: block;
  height: 100%;
  pointer-events: none;
  width: 100%;
}

/* ===== ShaderBackground.css ===== */
.shader-background {
  background: transparent;
  display: block;
  height: 100%;
  pointer-events: none;
  width: 100%;
}

