﻿:root {
  --navy: #041b45;
  --navy-dark: #021535;
  --navy-soft: #102c58;
  --electric: #62b4e5;
  --silver: #8f9298;
  --silver-light: #d9dadd;
  --white: #fff;
  --paper: #f6f7f8;
  --line: #d6dce5;
  --body: #102549;
  --muted: #526176;
  --display: "Bahnschrift Condensed", "Arial Narrow", Arial, sans-serif;
  --sans: "Aptos", "Segoe UI", Arial, sans-serif;
  --max: 1440px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html.auth-pending body { visibility: hidden; }
body {
  margin: 0;
  color: var(--body);
  font-family: var(--sans);
  background: var(--white);
}
body.auth-locked > :not(.auth-gate) {
  display: none !important;
}
.auth-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.84) 38%, rgba(255,255,255,.2) 72%),
    url("assets/backgrounds/ocean-hero.png") center right / cover no-repeat;
}
.auth-card {
  width: min(460px, 100%);
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(4,27,69,.14);
  box-shadow: 0 28px 80px rgba(4,27,69,.22);
  padding: 34px;
}
.auth-card img {
  width: 230px;
  margin-bottom: 26px;
}
.auth-card h1 {
  font-family: var(--display);
  color: var(--navy);
  text-transform: uppercase;
  font-size: 42px;
  line-height: .96;
  letter-spacing: .8px;
}
.auth-card p {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.55;
}
.auth-form {
  margin-top: 24px;
  display: grid;
  gap: 12px;
}
.auth-form input {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line);
  padding: 0 15px;
  color: var(--navy);
  font: 700 16px var(--sans);
}
.auth-error {
  min-height: 20px;
  color: #a32020;
  font-size: 13px;
  font-weight: 700;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, p { margin: 0; }
sup { font-size: .36em; vertical-align: super; margin-left: .12em; }

.site-header {
  height: 94px;
  background: var(--white);
  border-bottom: 1px solid #e5e8ed;
  position: sticky;
  top: 0;
  z-index: 10;
}
.nav-wrap {
  max-width: var(--max);
  height: 100%;
  margin: 0 auto;
  padding: 0 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}
.brand {
  display: block;
  flex-shrink: 0;
  min-width: 245px;
  width: 245px;
  color: var(--navy);
}
.brand img {
  width: 245px;
  height: auto;
  display: block;
}
.primary-nav {
  display: flex;
  gap: 50px;
  margin-left: auto;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .3px;
}
.primary-nav a { padding: 10px 0; }
.primary-nav a:hover { color: var(--electric); }
.nav-actions { display: flex; align-items: center; gap: 20px; }
.icon-button {
  width: 34px;
  height: 34px;
  border: 0;
  color: var(--navy);
  background: transparent;
  padding: 4px;
}
.icon-button svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.button {
  min-height: 58px;
  min-width: 170px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 750;
  letter-spacing: .35px;
  border-radius: 5px;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease;
}
.button-primary {
  background: var(--navy);
  border: 1px solid var(--navy);
  color: var(--white);
}
.button-primary:hover { background: #123667; }
.button-outline {
  border: 1px solid var(--navy);
  color: var(--navy);
  background: rgba(255,255,255,.68);
}
.button-outline:hover { background: var(--navy); color: var(--white); }
.nav-shop { min-width: 170px; }
.menu-toggle { display: none; }

.site-notice {
  position: relative;
  z-index: 8;
  padding: 9px 28px;
  background: #f2f4f7;
  border-bottom: 1px solid #d9dee6;
  color: #36465e;
  font-size: 11px;
  line-height: 1.35;
  text-align: center;
  letter-spacing: .2px;
}

.hero {
  position: relative;
  min-height: 820px;
  overflow: hidden;
  background: #ffffff;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(90deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.82) 38%, rgba(255,255,255,.18) 70%),
    url("assets/backgrounds/ocean-hero.png");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}
.hero-bg::after { content: none; }
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  min-height: 820px;
  margin: 0 auto;
  padding: 90px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.hero-copy {
  width: 42%;
  max-width: 620px;
  padding-bottom: 0;
}
.hero-copy h1 {
  margin: 0 0 28px;
  font-family: var(--display);
  font-size: 68px;
  line-height: .98;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--navy);
}
.hero-copy h1 span { display: block; }
.hero-copy h1 .silver {
  color: #8a8f98;
  margin-top: 10px;
}
.hero-summary {
  max-width: 520px;
  margin: 0 0 34px;
  font-size: 20px;
  line-height: 1.5;
  color: #111827;
}
.hero-features {
  margin-top: 0;
  display: flex;
  align-items: center;
}
.mini-feature {
  height: 62px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 0 24px;
  border-right: 1px solid rgba(4,27,69,.28);
}
.mini-feature:first-child { padding-left: 0; }
.mini-feature:last-child { border-right: 0; }
.mini-feature img {
  width: 45px;
  height: 45px;
}
.mini-feature .inline-vector-icon {
  flex: 0 0 45px;
  width: 45px;
  height: 45px;
  color: var(--navy);
  overflow: visible;
}
.mini-feature span {
  font-family: var(--display);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: .35px;
}
.hero-buttons {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-top: 38px;
}
.hero-product {
  width: 58%;
  height: auto;
  margin: 40px -34px -54px 0;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  padding-right: 0;
}
.hero-product img {
  width: 100%;
  max-width: 680px;
  height: auto;
  display: block;
  object-fit: contain;
  mix-blend-mode: normal;
  transform: translate(28px, 34px);
  filter: drop-shadow(0 28px 42px rgba(4, 27, 69, .22));
}
.system-band {
  background: var(--navy-dark);
  color: var(--white);
}
.system-band-inner {
  max-width: var(--max);
  min-height: 238px;
  margin: 0 auto;
  padding: 38px 58px;
  display: grid;
  grid-template-columns: 1.24fr 1fr 1fr 1fr;
  align-items: stretch;
}
.band-intro,
.band-feature {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(255,255,255,.38);
  padding: 0 36px;
}
.band-intro { padding-left: 0; }
.band-feature:last-child { padding-right: 0; border-right: 0; }
.band-intro h2 {
  font-family: var(--display);
  font-size: 37px;
  font-weight: 750;
  line-height: 1.02;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.band-intro h2 span { color: var(--electric); }
.band-intro p,
.band-feature p {
  color: rgba(255,255,255,.88);
  line-height: 1.47;
  font-size: 15px;
}
.band-intro p + p { margin-top: 9px; }
.band-feature img {
  width: 76px;
  height: 76px;
  margin-bottom: 15px;
  filter: brightness(0) invert(1);
}
.band-feature .inline-vector-icon {
  width: 76px;
  height: 76px;
  margin-bottom: 15px;
  color: white;
  overflow: visible;
}
.band-feature h3 {
  font-family: var(--display);
  font-size: 24px;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: .7px;
  margin-bottom: 12px;
}

.architecture {
  position: relative;
  background: linear-gradient(90deg, #f4f6f8 0, #fff 18%, #fff 100%);
  border-bottom: 1px solid #e8ebf0;
}
.architecture-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 48px 62px;
  display: grid;
  grid-template-columns: 285px 1fr;
  gap: 42px;
}
.architecture-title-wrap h2,
.variety-intro h2,
.comparison-heading h2 {
  font-family: var(--display);
  font-size: 38px;
  line-height: 1.05;
  letter-spacing: .7px;
  text-transform: uppercase;
  color: var(--navy);
}
.architecture-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.system-tile {
  min-height: 122px;
  display: flex;
  gap: 18px;
  padding: 0 22px 22px;
  margin-bottom: 20px;
  border-left: 1px solid #ccd3de;
}
.system-tile img {
  flex: 0 0 60px;
  width: 60px;
  height: 60px;
}
.system-tile .inline-vector-icon {
  flex: 0 0 60px;
  width: 60px;
  height: 60px;
  color: var(--navy);
  overflow: visible;
}
.system-tile h3 {
  font-family: var(--display);
  text-transform: uppercase;
  color: var(--navy);
  font-size: 17px;
  line-height: 1.1;
  letter-spacing: .4px;
  margin-bottom: 8px;
}
.system-tile p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.variety {
  min-height: 248px;
  display: grid;
  grid-template-columns: 290px 1fr;
  max-width: var(--max);
  margin: 0 auto;
}
.variety-intro {
  padding: 33px 28px 28px 62px;
}
.variety-intro h2 span { color: var(--electric); }
.variety-intro p {
  margin: 18px 0 22px;
  color: var(--muted);
}
.variety-intro .button {
  min-width: 180px;
  min-height: 50px;
  font-size: 12px;
}
.stick-showcase {
  min-height: 248px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 18px 34px;
  background: linear-gradient(90deg, #f7f8f9 0%, #ffffff 45%, #eef1f4 100%);
}
.stick-showcase img {
  width: 100%;
  max-width: 880px;
  height: auto;
  display: block;
  object-fit: contain;
}
.performance-ribbon {
  background: linear-gradient(90deg, #f1f2f4, #e3e4e8, #f1f2f4);
  min-height: 47px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 19px;
  color: var(--navy);
  font-size: 13px;
  letter-spacing: 5px;
  text-transform: uppercase;
  font-weight: 700;
}

.comparison {
  background: #fbfbfc;
  border-bottom: 1px solid #e7ebef;
}
.comparison-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 38px 62px 42px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 42px;
}
.versus {
  display: grid;
  grid-template-columns: 1fr 82px 1fr;
  align-items: center;
}
.compare-side h3 {
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white);
  font-family: var(--display);
  font-size: 28px;
  text-transform: uppercase;
  letter-spacing: 1px;
  clip-path: polygon(0 0, 93% 0, 100% 100%, 0 100%);
}
.ordinary h3 { background: #a7a9ad; }
.saltpop h3 {
  background: var(--navy);
  clip-path: polygon(7% 0, 100% 0, 100% 100%, 0 100%);
}
.compare-side ul {
  list-style: none;
  margin: 17px 0 0;
  padding: 0 28px;
}
.compare-side li {
  font-size: 16px;
  margin: 12px 0;
  color: #26364e;
}
.ordinary li::before { content: "Ã—"; color: #6b727f; font-weight: 800; margin-right: 13px; }
.saltpop li::before { content: "âœ“"; color: #25608f; font-weight: 800; margin-right: 13px; }
.vs-badge {
  width: 72px;
  height: 72px;
  margin: 0 auto;
  border-radius: 50%;
  background: var(--navy);
  color: white;
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-size: 24px;
  font-weight: 700;
}

.final-cta {
  min-height: 190px;
  background: radial-gradient(circle at 48% 30%, #132d5a, var(--navy-dark) 62%);
  color: var(--white);
  display: grid;
  grid-template-columns: 170px auto 170px;
  gap: 44px;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 32px 30px;
}
.final-cta h2 {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: 34px;
  letter-spacing: 1.3px;
  line-height: 1.05;
}
.final-cta p {
  font-size: 19px;
  margin-top: 10px;
}
.cta-actions { display: flex; gap: 15px; justify-content: center; margin-top: 22px; }
.button-light, .button-light-outline {
  min-height: 49px;
  border: 1px solid rgba(255,255,255,.8);
  color: var(--white);
  min-width: 174px;
  font-size: 12px;
}
.button-light:hover, .button-light-outline:hover { background: var(--white); color: var(--navy); }
.cta-orb img {
  width: 122px;
  filter: brightness(0) invert(1);
}
.cta-orb .inline-vector-icon {
  width: 122px;
  height: 122px;
  color: white;
  overflow: visible;
}
.seal {
  height: 128px;
  width: 128px;
  border: 2px solid rgba(255,255,255,.86);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  color: rgba(255,255,255,.92);
  font-family: var(--display);
  letter-spacing: 1px;
}
.seal span { font-size: 10px; }
.seal strong { font-size: 22px; margin: 7px 0; letter-spacing: .4px; }
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,.68);
  border-top: 1px solid rgba(255,255,255,.14);
  display: flex;
  justify-content: space-between;
  padding: 18px max(calc((100% - var(--max)) / 2 + 60px), 28px);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.3px;
}
.footer a { color: rgba(255,255,255,.82); text-decoration: underline; text-underline-offset: 3px; }

.system-page {
  background: #fff;
}
.system-hero {
  max-width: 1180px;
  margin: 0 auto;
  padding: 86px 42px 58px;
  text-align: center;
}
.eyebrow,
.section-kicker {
  font-family: var(--display);
  color: var(--electric);
  text-transform: uppercase;
  letter-spacing: 2.4px;
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 16px;
}
.system-hero h1 {
  font-family: var(--display);
  color: var(--navy);
  text-transform: uppercase;
  font-size: 84px;
  line-height: .92;
  letter-spacing: 1.2px;
}
.system-hero h1 span { color: var(--silver); }
.lead {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 28px;
  font-size: 21px;
  line-height: 1.52;
  color: #1a2b49;
}
.system-manifesto {
  background: var(--navy-dark);
  color: white;
  padding: 62px max(calc((100% - var(--max)) / 2 + 62px), 24px);
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 70px;
  align-items: center;
}
.system-manifesto h2,
.system-seven h2,
.system-atp h2,
.system-competition h2,
.system-sources h2 {
  font-family: var(--display);
  text-transform: uppercase;
  color: var(--navy);
  font-size: 54px;
  line-height: .98;
  letter-spacing: 1px;
}
.system-manifesto h2 { color: white; }
.system-manifesto p {
  font-size: 20px;
  line-height: 1.58;
  color: rgba(255,255,255,.88);
}
.system-seven {
  max-width: 1180px;
  margin: 0 auto;
  padding: 70px 42px;
  text-align: center;
}
.system-card-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  text-align: left;
}
.system-card:last-child {
  grid-column: 2;
}
.system-card {
  border: 1px solid var(--line);
  background: #fff;
  padding: 24px;
  min-height: 322px;
}
.system-card img {
  width: 84px;
  height: 84px;
  margin-bottom: 20px;
}
.system-card h3 {
  font-family: var(--display);
  color: var(--navy);
  text-transform: uppercase;
  font-size: 25px;
  line-height: 1.04;
  letter-spacing: .5px;
  margin-bottom: 13px;
}
.system-card p {
  color: var(--muted);
  line-height: 1.52;
  font-size: 15px;
}
.system-atp {
  background: linear-gradient(90deg, #f5f7fa 0%, #fff 45%, #f5f7fa 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 70px max(calc((100% - var(--max)) / 2 + 62px), 24px);
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 46px;
}
.system-atp p {
  margin-top: 20px;
  font-size: 18px;
  line-height: 1.6;
  color: #233550;
}
.atp-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.atp-points article {
  background: var(--navy);
  color: white;
  padding: 25px;
}
.atp-points strong {
  display: inline-grid;
  place-items: center;
  min-width: 56px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.55);
  margin-bottom: 24px;
  font-family: var(--display);
  font-size: 22px;
}
.atp-points h3 {
  font-family: var(--display);
  font-size: 25px;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.atp-points p {
  color: rgba(255,255,255,.84);
  font-size: 15px;
  line-height: 1.48;
}
.system-competition {
  max-width: 1180px;
  margin: 0 auto;
  padding: 70px 42px;
  text-align: center;
}
.competition-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  text-align: left;
}
.competition-grid div {
  border: 1px solid var(--line);
  padding: 30px;
}
.competition-grid div:last-child {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
}
.competition-grid h3 {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: 30px;
  line-height: 1;
  margin-bottom: 14px;
}
.competition-grid p {
  font-size: 18px;
  line-height: 1.55;
  color: var(--muted);
}
.competition-grid div:last-child p { color: rgba(255,255,255,.84); }
.system-sources {
  padding: 48px max(calc((100% - var(--max)) / 2 + 62px), 24px);
  background: #f5f7fa;
  border-top: 1px solid var(--line);
}
.system-sources h2 { font-size: 36px; }
.system-sources p {
  max-width: 820px;
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.5;
}
.system-sources ul {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 28px;
}
.system-sources a {
  color: var(--navy);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.ingredients-page {
  background: #fff;
}
.ingredients-hero {
  padding: 92px max(calc((100% - var(--max)) / 2 + 62px), 28px) 82px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 58px;
  align-items: end;
  color: white;
  background:
    radial-gradient(circle at 82% 16%, rgba(98,180,229,.28), transparent 34%),
    linear-gradient(135deg, #021535 0%, #041b45 56%, #09265b 100%);
}
.ingredients-hero h1,
.ingredient-foundation h2,
.electrolyte-deck h2,
.ingredient-atp h2,
.taste-system h2,
.flavor-board h2,
.clean-standard h2 {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: .95;
}
.ingredients-hero h1 {
  font-size: 86px;
}
.ingredients-hero h1 span {
  color: var(--electric);
}
.ingredients-hero .lead {
  color: rgba(255,255,255,.86);
  margin-left: 0;
  margin-right: 0;
  max-width: 760px;
}
.ingredient-proof-panel {
  border: 1px solid rgba(255,255,255,.18);
  border-left: 8px solid var(--electric);
  background: rgba(255,255,255,.08);
  box-shadow: 0 26px 70px rgba(0,0,0,.22);
  padding: 34px;
}
.ingredient-proof-panel strong {
  display: block;
  font-family: var(--display);
  font-size: 34px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .8px;
}
.ingredient-proof-panel p {
  margin-top: 16px;
  color: rgba(255,255,255,.82);
  line-height: 1.55;
}
.ingredient-foundation {
  max-width: var(--max);
  margin: 0 auto;
  padding: 82px 62px;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 54px;
  align-items: start;
}
.ingredient-foundation h2,
.electrolyte-deck h2,
.taste-system h2,
.flavor-board h2,
.clean-standard h2 {
  color: var(--navy);
  font-size: 58px;
}
.foundation-copy p:not(.section-kicker),
.taste-copy p,
.flavor-board p,
.section-lead {
  margin-top: 18px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.62;
}
.foundation-points,
.taste-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.foundation-points article,
.taste-grid article {
  border: 1px solid #dbe2ec;
  border-top: 4px solid var(--navy);
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
  padding: 28px;
  box-shadow: 0 18px 50px rgba(4,27,69,.08);
}
.foundation-points img,
.taste-grid img {
  width: 72px;
  height: 72px;
  margin-bottom: 18px;
}
.foundation-points h3,
.taste-grid h3,
.electrolyte-grid h3,
.flavor-grid article {
  font-family: var(--display);
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .6px;
}
.foundation-points h3,
.taste-grid h3 {
  font-size: 28px;
  line-height: 1;
}
.foundation-points p,
.taste-grid p,
.electrolyte-grid p {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.55;
}
.electrolyte-deck {
  background: #f5f7fa;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 82px max(calc((100% - var(--max)) / 2 + 62px), 28px);
}
.electrolyte-deck > h2,
.electrolyte-deck > .section-kicker,
.electrolyte-deck > .section-lead {
  max-width: 900px;
}
.electrolyte-grid {
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.electrolyte-grid article {
  min-height: 250px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 24px;
}
.electrolyte-grid article:nth-child(3),
.electrolyte-grid article:nth-child(6) {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
}
.electrolyte-grid h3 {
  font-size: 31px;
  line-height: .95;
}
.electrolyte-grid strong {
  display: block;
  margin-top: 8px;
  color: var(--electric);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-size: 12px;
}
.electrolyte-grid article:nth-child(3) p,
.electrolyte-grid article:nth-child(6) p {
  color: rgba(255,255,255,.82);
}
.ingredient-atp {
  padding: 82px max(calc((100% - var(--max)) / 2 + 62px), 28px);
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 48px;
  background:
    radial-gradient(circle at 8% 16%, rgba(98,180,229,.19), transparent 31%),
    linear-gradient(135deg, #021535 0%, #041b45 100%);
  color: white;
}
.ingredient-atp h2 {
  color: white;
  font-size: 58px;
}
.ingredient-atp > div > p:not(.eyebrow) {
  margin-top: 20px;
  font-size: 18px;
  line-height: 1.62;
  color: rgba(255,255,255,.86);
}
.ingredient-atp-points article {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
}
.taste-system {
  max-width: var(--max);
  margin: 0 auto;
  padding: 82px 62px;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 54px;
  align-items: start;
}
.flavor-board {
  padding: 70px max(calc((100% - var(--max)) / 2 + 62px), 28px);
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 36px;
  align-items: stretch;
  background: linear-gradient(90deg, #f5f7fa, #fff);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.flavor-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.flavor-grid article {
  min-height: 180px;
  display: flex;
  align-items: flex-end;
  padding: 22px;
  color: white;
  font-size: 30px;
  line-height: .96;
}
.flavor-grid .lemon { background: #e6b900; }
.flavor-grid .orange { background: #e57d1b; }
.flavor-grid .strawberry { background: #b21f2c; }
.flavor-grid .berry { background: #4c2a76; }
.clean-standard {
  max-width: var(--max);
  margin: 0 auto;
  padding: 82px 62px;
  text-align: center;
}
.standard-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.standard-grid span {
  min-height: 86px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--navy);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .8px;
  padding: 18px;
}
.ingredient-sources .claim-disclaimer {
  margin-top: 24px;
  font-size: 13px;
  color: #6b7280;
}

@media (max-width: 1150px) {
  .nav-wrap { padding: 0 26px; gap: 18px; }
  .primary-nav { gap: 26px; }
  .hero-copy h1 { font-size: 61px; }
  .hero-inner { padding: 70px 40px; gap: 28px; }
  .mini-feature { padding: 0 14px; }
  .system-band-inner { padding: 34px 30px; }
  .band-intro, .band-feature { padding: 0 22px; }
  .architecture-inner, .comparison-inner { padding-left: 34px; padding-right: 34px; }
  .variety-intro { padding-left: 34px; }
}

@media (max-width: 920px) {
  .site-header { height: 78px; }
  .brand { width: 205px; min-width: 205px; }
  .brand img { width: 205px; }
  .menu-toggle {
    order: 3;
    display: flex;
    width: 38px;
    height: 35px;
    border: 0;
    background: transparent;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
  }
  .menu-toggle span { height: 2px; width: 25px; background: var(--navy); }
  .primary-nav {
    display: none;
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    padding: 20px 26px 26px;
    background: white;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    gap: 18px;
  }
  .primary-nav.open { display: flex; }
  .nav-actions { margin-left: auto; gap: 10px; }
  .nav-shop { display: none; }
  .hero, .hero-inner { min-height: auto; }
  .hero-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 56px 28px;
  }
  .hero-copy, .hero-product { width: 100%; max-width: none; }
  .hero-bg { background-position: center right; }
  .hero-bg::after { content: none; }
  .hero-copy h1 { font-size: 58px; }
  .hero-product { justify-content: center; padding: 8px 0 0; margin: 18px 0 0; }
  .hero-product img { width: 100%; max-width: 420px; max-height: none; transform: none; }
  .system-band-inner {
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
  .band-intro, .band-feature {
    padding: 24px;
    border-bottom: 1px solid rgba(255,255,255,.3);
  }
  .band-intro { padding-left: 24px; }
  .band-feature:nth-child(2) { border-right: 0; }
  .band-feature:last-child { padding-right: 24px; border-bottom: 0; }
  .architecture-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .architecture-grid { grid-template-columns: repeat(2, 1fr); }
  .variety { grid-template-columns: 1fr; }
  .variety-intro { text-align: center; padding: 36px; }
  .comparison-inner { grid-template-columns: 1fr; gap: 28px; }
  .comparison-heading { text-align: center; }
  .final-cta { grid-template-columns: 1fr; gap: 25px; }
  .cta-orb, .seal { display: none; }
  .system-manifesto,
  .system-atp {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .system-hero { padding: 56px 28px; }
  .system-hero h1 { font-size: 62px; }
  .system-manifesto { padding: 48px 28px; }
  .system-card-grid { grid-template-columns: repeat(2, 1fr); }
  .system-card:last-child { grid-column: auto; }
  .system-seven, .system-competition { padding: 52px 28px; }
  .atp-points, .competition-grid, .system-sources ul { grid-template-columns: 1fr; }
  .ingredients-hero,
  .ingredient-foundation,
  .ingredient-atp,
  .taste-system,
  .flavor-board {
    grid-template-columns: 1fr;
    padding-left: 28px;
    padding-right: 28px;
  }
  .ingredients-hero h1 { font-size: 62px; }
  .ingredient-foundation h2,
  .electrolyte-deck h2,
  .ingredient-atp h2,
  .taste-system h2,
  .flavor-board h2,
  .clean-standard h2 {
    font-size: 44px;
  }
  .electrolyte-grid,
  .standard-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .flavor-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .nav-wrap { padding: 0 18px; }
  .icon-button { width: 29px; height: 29px; }
  .hero-inner { padding: 42px 20px; }
  .hero-copy h1 { font-size: 46px; line-height: 1.08; }
  .hero-summary { font-size: 17px; margin-top: 22px; }
  .hero-features {
    margin-top: 26px;
    flex-wrap: wrap;
    gap: 14px;
  }
  .mini-feature {
    padding: 0;
    border-right: none;
    flex: 1 1 44%;
  }
  .hero-buttons { flex-direction: column; gap: 13px; margin-top: 27px; }
  .button { width: 100%; }
  .system-band-inner {
    grid-template-columns: 1fr;
    padding: 26px 20px;
  }
  .band-intro, .band-feature {
    padding: 25px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.28);
  }
  .band-intro h2 { font-size: 33px; }
  .band-feature img { width: 67px; height: 67px; }
  .architecture-inner { padding: 39px 20px; }
  .architecture-title-wrap h2, .variety-intro h2, .comparison-heading h2 { font-size: 33px; }
  .architecture-grid { grid-template-columns: 1fr; }
  .system-tile { border-left: 0; border-bottom: 1px solid var(--line); padding: 0 0 22px; }
  .stick-showcase { min-height: 210px; padding: 14px 18px; }
  .performance-ribbon {
    text-align: center;
    font-size: 10px;
    letter-spacing: 2.1px;
    padding: 12px;
    gap: 8px;
  }
  .comparison-inner { padding: 38px 20px; }
  .versus { display: flex; flex-direction: column; gap: 20px; }
  .compare-side { width: 100%; }
  .vs-badge { order: 2; }
  .saltpop { order: 3; }
  .final-cta { padding: 40px 20px; }
  .final-cta h2 { font-size: 30px; }
  .cta-actions { flex-direction: column; }
  .ingredients-hero,
  .ingredient-foundation,
  .electrolyte-deck,
  .ingredient-atp,
  .taste-system,
  .flavor-board,
  .clean-standard {
    padding: 44px 20px;
  }
  .ingredients-hero h1 { font-size: 48px; }
  .ingredient-proof-panel { padding: 24px; }
  .ingredient-proof-panel strong { font-size: 28px; }
  .foundation-points,
  .taste-grid,
  .electrolyte-grid,
  .flavor-grid,
  .standard-grid {
    grid-template-columns: 1fr;
  }
  .flavor-grid article { min-height: 126px; }
  .footer { flex-direction: column; gap: 9px; padding: 18px 20px; }
}

