:root {
  --navy: #071a38;
  --navy-2: #0a2850;
  --ink: #031126;
  --cream: #f6f2e8;
  --paper: #fffdf6;
  --gold: #ffc422;
  --green: #22cc70;
  --green-dark: #057846;
  --coral: #ff5a4e;
  --sky: #56b9ff;
  --line: rgba(255,255,255,.16);
  --shadow: 0 26px 70px rgba(2, 10, 27, .22);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
button, a { font: inherit; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 100; background: var(--gold); color: var(--ink); padding: 12px 16px; font-weight: 900; }
.skip-link:focus { top: 16px; }
.noise { position: fixed; inset: 0; pointer-events: none; z-index: 20; opacity: .035; background-image: radial-gradient(#fff 1px, transparent 1px); background-size: 4px 4px; mix-blend-mode: overlay; }

.site-header {
  height: 82px;
  padding: 0 clamp(22px, 5vw, 76px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  color: white;
  transition: background .25s, box-shadow .25s, height .25s;
}
.site-header.scrolled { height: 68px; background: rgba(7, 26, 56, .94); backdrop-filter: blur(18px); box-shadow: 0 8px 30px rgba(0,0,0,.18); }
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 900; letter-spacing: .08em; }
.brand img { border-radius: 12px; box-shadow: 0 8px 24px rgba(0,0,0,.2); }
.brand strong { color: var(--gold); }
.site-nav { display: flex; align-items: center; gap: clamp(20px, 3vw, 38px); font-weight: 800; font-size: .88rem; letter-spacing: .03em; }
.site-nav a:not(.nav-cta) { position: relative; }
.site-nav a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 3px; background: var(--gold); transition: right .2s; }
.site-nav a:hover::after, .site-nav a:focus-visible::after { right: 0; }
.nav-cta { padding: 12px 18px; background: var(--gold); color: var(--ink); border: 2px solid var(--gold); box-shadow: 4px 4px 0 var(--coral); }
.menu-button { display: none; width: 46px; height: 46px; border: 1px solid var(--line); background: transparent; color: white; padding: 11px; }
.menu-button span:not(.sr-only) { display: block; height: 3px; background: currentColor; margin: 5px 0; }

.hero {
  min-height: 760px;
  padding: 132px clamp(22px, 6vw, 92px) 72px;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, .94fr);
  align-items: center;
  gap: clamp(40px, 7vw, 110px);
  color: white;
  background:
    linear-gradient(135deg, rgba(10,40,80,.1), rgba(3,17,38,.88)),
    repeating-linear-gradient(90deg, transparent 0 79px, rgba(255,255,255,.035) 80px),
    var(--navy);
  position: relative;
  overflow: hidden;
}
.hero::after { content: ""; position: absolute; width: 640px; height: 640px; right: -260px; top: 90px; border: 120px solid rgba(34,204,112,.08); border-radius: 50%; }
.hero-copy, .hero-art { position: relative; z-index: 2; }
.eyebrow { font: 900 .78rem/1.2 ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: .17em; text-transform: uppercase; color: var(--green); }
.live-dot { display: inline-block; width: 8px; height: 8px; background: var(--green); margin-right: 8px; box-shadow: 0 0 0 5px rgba(34,204,112,.15); animation: pulse 1.8s infinite; }
@keyframes pulse { 50% { box-shadow: 0 0 0 10px rgba(34,204,112,0); } }
h1, h2 { margin: 0; font-weight: 1000; letter-spacing: -.055em; line-height: .88; text-transform: uppercase; }
h1 { font-size: clamp(3.7rem, 7.2vw, 7.8rem); margin-top: 25px; }
h1 span, h2 span { color: var(--gold); }
.hero-lede { max-width: 660px; font-size: clamp(1.08rem, 1.7vw, 1.35rem); line-height: 1.55; color: rgba(255,255,255,.73); margin: 30px 0 32px; }
.hero-actions, .download-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.contact-links { margin-top: 22px; display: flex; flex-wrap: wrap; gap: 12px 22px; }
.social-link { width: max-content; display: inline-flex; gap: 7px; align-items: center; color: rgba(255,255,255,.68); font: 800 .8rem ui-monospace, SFMono-Regular, Menlo, monospace; border-bottom: 1px solid rgba(255,255,255,.28); padding-bottom: 5px; }
.social-link strong { color: white; }
.social-link:hover, .social-link:focus-visible { color: var(--gold); border-color: var(--gold); }
.button { min-height: 54px; padding: 0 24px; display: inline-flex; align-items: center; justify-content: center; gap: 16px; border: 2px solid; font-weight: 950; letter-spacing: .02em; cursor: pointer; transition: transform .16s, box-shadow .16s, background .16s; }
.button:hover { transform: translate(-2px,-2px); }
.button-primary { color: var(--ink); background: var(--gold); border-color: var(--gold); box-shadow: 6px 6px 0 var(--coral); }
.button-primary:hover { box-shadow: 9px 9px 0 var(--coral); }
.button-ghost { color: inherit; background: transparent; border-color: rgba(255,255,255,.42); }
.button-ghost:hover { background: rgba(255,255,255,.08); }
.hero-proof { margin-top: 46px; display: flex; gap: clamp(24px, 4vw, 54px); }
.hero-proof div { display: flex; flex-direction: column; }
.hero-proof strong { font: 950 1rem ui-monospace, SFMono-Regular, Menlo, monospace; color: var(--sky); }
.hero-proof span { color: rgba(255,255,255,.54); font-size: .82rem; margin-top: 3px; }

.hero-art { max-width: 650px; justify-self: end; }
.hero-frame { transform: rotate(2deg); background: var(--gold); padding: 9px; box-shadow: 18px 18px 0 var(--green), 32px 32px 0 rgba(0,0,0,.18); }
.hero-frame img { width: 100%; aspect-ratio: 1/1; object-fit: cover; object-position: center 43%; background: var(--navy-2); }
.level-chip { position: absolute; right: -22px; top: 24px; transform: rotate(4deg); display: flex; flex-direction: column; padding: 10px 16px; background: var(--coral); color: white; box-shadow: 6px 6px 0 var(--ink); }
.level-chip span { font: 800 .6rem ui-monospace, monospace; letter-spacing: .15em; }
.level-chip strong { font: 1000 1.6rem ui-monospace, monospace; }
.speech-bubble { position: absolute; left: -54px; bottom: -50px; padding: 14px 18px; color: var(--ink); background: white; font: 900 .72rem/1.35 ui-monospace, monospace; box-shadow: 7px 7px 0 var(--ink); transform: rotate(-3deg); }
.speech-bubble strong { color: var(--coral); }
.pixel-star { position: absolute; color: var(--gold); font-size: 3rem; text-shadow: 5px 5px 0 rgba(255,90,78,.8); z-index: 3; }
.star-one { left: -42px; top: 30px; transform: rotate(-13deg); }
.star-two { right: -28px; bottom: 85px; transform: rotate(11deg) scale(.7); }

.ticker { height: 54px; overflow: hidden; background: var(--gold); border-top: 5px solid var(--ink); border-bottom: 5px solid var(--ink); color: var(--ink); }
.ticker-track { min-width: max-content; display: flex; align-items: center; gap: 26px; height: 100%; font: 1000 .88rem ui-monospace, monospace; letter-spacing: .08em; animation: ticker 28s linear infinite; }
.ticker-track b { color: var(--coral); }
@keyframes ticker { to { transform: translateX(-50%); } }

.section { padding: 120px clamp(22px, 6vw, 92px); }
.section-heading { max-width: 810px; margin-bottom: 62px; }
.section-heading h2, .method h2, .download h2 { font-size: clamp(3.2rem, 6vw, 6.7rem); }
.section-heading > p:last-child { max-width: 680px; font-size: 1.12rem; line-height: 1.65; color: #66717d; }
.app-section { background: var(--paper); }
.feature-stage { display: grid; grid-template-columns: minmax(310px, .78fr) minmax(0, 1.22fr); gap: clamp(42px, 8vw, 110px); align-items: center; }
.phone-shell { width: min(100%, 400px); justify-self: center; padding: 13px; background: #07111f; border-radius: 50px; box-shadow: var(--shadow); transform: rotate(-2deg); }
.phone-top { width: 112px; height: 28px; border-radius: 0 0 18px 18px; background: #07111f; position: absolute; top: 8px; left: calc(50% - 56px); z-index: 2; }
.phone-screen { min-height: 680px; border-radius: 38px; padding: 46px 20px 26px; background: linear-gradient(155deg, #fff 0%, #edfdf4 58%, #e9f7ff 100%); overflow: hidden; }
.app-mini-header { display: grid; grid-template-columns: 46px 1fr auto; gap: 10px; align-items: center; }
.app-mini-header img { border-radius: 12px; }
.app-mini-header div { display: flex; flex-direction: column; }
.app-mini-header span { font: 800 .62rem ui-monospace, monospace; color: #66717d; }
.app-mini-header strong { font-size: 1.1rem; }
.app-mini-header > b { background: var(--gold); padding: 7px 8px; font: 900 .72rem ui-monospace, monospace; }
.mini-progress { margin: 22px 0 26px; height: 9px; background: #d8e5df; border-radius: 10px; overflow: hidden; }
.mini-progress i { display: block; height: 100%; background: var(--green); }
.mini-label { margin: 22px 0 10px; font: 900 .65rem ui-monospace, monospace; letter-spacing: .14em; color: var(--green-dark); }
.tracker-row { display: grid; grid-template-columns: 40px 1fr 38px; align-items: center; gap: 10px; padding: 15px 14px; margin: 8px 0; background: white; border: 1px solid #dce8e1; border-radius: 18px; box-shadow: 0 8px 20px rgba(4,68,45,.06); }
.tracker-row > span { font-size: 1.45rem; }
.tracker-row div { display: flex; flex-direction: column; }
.tracker-row b { font-size: .8rem; }
.tracker-row small { color: #77817e; }
.tracker-row em { width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; background: #ddf8e9; color: var(--green-dark); font-style: normal; font-weight: 900; }
.agenda-row { display: grid; grid-template-columns: 44px 1fr 24px; gap: 10px; padding: 14px 11px; margin: 7px 0; border-left: 4px solid var(--sky); background: #eef7fe; font-size: .8rem; }
.agenda-row time { font: 800 .68rem ui-monospace, monospace; color: #597080; }
.agenda-row.done { border-color: var(--green); background: #e7f8ee; }
.agenda-row.done b { color: var(--green-dark); }
.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.feature-card { min-height: 244px; padding: 27px; background: var(--cream); border: 2px solid #e7e0d3; position: relative; overflow: hidden; transition: transform .2s, border-color .2s; }
.feature-card:hover { transform: translateY(-6px); border-color: var(--gold); }
.feature-card::after { content: ""; position: absolute; right: -30px; bottom: -38px; width: 100px; height: 100px; background: var(--gold); opacity: .18; transform: rotate(45deg); }
.feature-number { display: inline-block; padding: 5px 8px; background: var(--navy); color: var(--gold); font: 900 .7rem ui-monospace, monospace; }
.feature-card h3 { margin: 30px 0 10px; font-size: 1.35rem; }
.feature-card p { margin: 0; line-height: 1.55; color: #68727c; }

.method { display: grid; grid-template-columns: 1fr 1fr; min-height: 760px; background: var(--navy); color: white; }
.method-art { min-height: 640px; overflow: hidden; position: relative; border-right: 8px solid var(--gold); }
.method-art img { width: 100%; height: 100%; object-fit: cover; }
.method-art::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(7,26,56,.75), transparent 50%); }
.method-copy { padding: 95px clamp(30px, 6vw, 90px); align-self: center; }
.keys { list-style: none; padding: 0; margin: 48px 0 26px; }
.keys li { display: grid; grid-template-columns: 54px 1fr; gap: 18px; padding: 22px 0; border-top: 1px solid var(--line); }
.keys li:last-child { border-bottom: 1px solid var(--line); }
.keys li > b { color: var(--gold); font: 1000 1.05rem ui-monospace, monospace; }
.keys strong { font-size: 1.15rem; }
.keys p { margin: 7px 0 0; line-height: 1.5; color: rgba(255,255,255,.62); }
.fine-print { font-size: .75rem; line-height: 1.5; color: rgba(255,255,255,.42); }
.content-sources { margin-top: 18px; color: rgba(255,255,255,.48); font-size: .7rem; line-height: 1.55; }
.content-sources summary { width: max-content; cursor: pointer; color: rgba(255,255,255,.66); font-weight: 800; }
.content-sources a { color: var(--sky); text-decoration: underline; text-underline-offset: 2px; }

.shop-section { background: #e7f7ef; }
.shop-heading { max-width: none; display: flex; justify-content: space-between; gap: 40px; align-items: end; }
.shop-heading > p { max-width: 440px; }
.line-feature-grid { margin-bottom: 48px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.line-feature { min-height: 560px; position: relative; overflow: hidden; display: flex; flex-direction: column; justify-content: flex-end; color: white; border: 3px solid var(--ink); box-shadow: 9px 9px 0 rgba(3,17,38,.14); }
.line-feature::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(3,17,38,.98) 0, rgba(3,17,38,.64) 42%, rgba(3,17,38,.04) 72%); pointer-events: none; }
.line-feature > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.line-feature > span, .line-feature > div:not(.line-pack-stage) { position: relative; z-index: 2; }
.line-feature > span { margin: 0 30px 16px; color: var(--gold); font: 950 .68rem ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: .13em; }
.line-feature > div:not(.line-pack-stage) { padding: 0 30px 32px; }
.line-feature h3 { margin: 0 0 10px; font-size: clamp(1.65rem, 3vw, 2.7rem); }
.line-feature p { max-width: 570px; margin: 0 0 23px; color: rgba(255,255,255,.7); line-height: 1.55; }
.line-feature b { color: white; font: 900 .74rem ui-monospace, SFMono-Regular, Menlo, monospace; text-transform: uppercase; }
.line-feature:hover { transform: translateY(-5px); }
.line-feature-health { background: radial-gradient(circle at 50% 35%, rgba(34,204,112,.2), transparent 34%), var(--navy); }
.line-pack-stage { min-height: 355px; padding: 45px 34px 0; display: flex; justify-content: center; align-items: flex-end; gap: clamp(10px, 2vw, 24px); position: relative; z-index: 1; }
.line-pack { width: 27%; max-width: 150px; height: 275px; padding: 18px 13px; display: flex; flex-direction: column; justify-content: space-between; color: var(--ink); border: 2px solid var(--ink); box-shadow: 8px 10px 0 rgba(0,0,0,.22); font: 900 .55rem ui-monospace, SFMono-Regular, Menlo, monospace; font-style: normal; transform: rotate(-3deg); }
.line-pack:nth-child(2) { height: 315px; color: white; transform: translateY(9px); }
.line-pack:nth-child(3) { transform: rotate(3deg); }
.line-pack::before { content: "+"; width: 42px; height: 42px; display: grid; place-items: center; color: white; background: var(--navy); font: 1000 1.65rem sans-serif; box-shadow: 4px 4px 0 rgba(3,17,38,.25); }
.line-pack em { font: 950 .73rem/.98 ui-monospace, SFMono-Regular, Menlo, monospace; font-style: normal; }
.line-pack-mint { background: #8ff1bb; }
.line-pack-coral { background: var(--coral); }
.line-pack-gold { background: var(--gold); }
.shop-tabs { display: flex; gap: 8px; margin-bottom: 26px; flex-wrap: wrap; }
.shop-tab { border: 2px solid var(--ink); background: transparent; padding: 11px 17px; font-weight: 900; cursor: pointer; }
.shop-tab.active { background: var(--ink); color: white; box-shadow: 4px 4px 0 var(--gold); }
.product-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
.product-card { grid-column: span 2; padding: 14px 14px 22px; background: var(--paper); border: 2px solid var(--ink); box-shadow: 7px 7px 0 rgba(3,17,38,.12); transition: opacity .2s, transform .2s; }
.product-card.is-hidden { display: none; }
.product-card:hover { transform: translateY(-5px); }
.product-visual { min-height: 310px; padding: 26px; display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 8px; position: relative; overflow: hidden; color: white; text-align: center; }
.product-visual::before { content: ""; position: absolute; inset: 14px; border: 1px solid rgba(255,255,255,.25); pointer-events: none; }
.product-visual b { font: 1000 1.35rem ui-monospace, monospace; z-index: 1; }
.product-visual small { font: 800 .62rem ui-monospace, monospace; letter-spacing: .12em; z-index: 1; }
.electrolyte { background: linear-gradient(145deg, #058957, #22cc70); }
.electrolyte > span { width: 110px; height: 150px; display: grid; place-items: center; background: white; color: var(--green-dark); border-radius: 8px 8px 26px 26px; border-top: 18px solid var(--ink); font: 1000 2rem ui-monospace, monospace; transform: rotate(-5deg); box-shadow: 10px 10px 0 rgba(0,0,0,.15); z-index: 1; }
.peptide { background: var(--navy); }
.peptide i { width: 22px; height: 22px; border: 5px solid var(--gold); border-radius: 50%; position: absolute; }
.peptide i:nth-child(1) { transform: translate(-70px,-55px); }
.peptide i:nth-child(2) { transform: translate(0,-90px); }
.peptide i:nth-child(3) { transform: translate(70px,-55px); }
.peptide::after { content: ""; width: 150px; height: 70px; border: 5px solid var(--coral); border-top: 0; position: absolute; top: 92px; }
.essentials { background: linear-gradient(135deg, #ef4b41, #ff7f60); }
.essentials > span { width: 112px; height: 112px; display: grid; place-items: center; background: var(--paper); color: var(--coral); font: 1000 4rem sans-serif; border-radius: 50%; box-shadow: 10px 10px 0 rgba(0,0,0,.14); z-index: 1; }
.apparel { background: #d9e3ea; color: var(--ink); }
.shirt { width: 180px; height: 175px; background: var(--navy); clip-path: polygon(24% 0, 38% 9%, 62% 9%, 76% 0, 100% 20%, 84% 42%, 75% 34%, 75% 100%, 25% 100%, 25% 34%, 16% 42%, 0 20%); display: grid; place-items: center; }
.shirt img, .hood-shape img { width: 62px; border-radius: 9px; }
.hood-shape { width: 180px; height: 190px; background: var(--navy); border-radius: 40px 40px 10px 10px; clip-path: polygon(20% 10%, 35% 0, 65% 0, 80% 10%, 100% 36%, 82% 50%, 75% 39%, 75% 100%, 25% 100%, 25% 39%, 18% 50%, 0 36%); display: grid; place-items: center; }
.product-meta { margin: 17px 2px 10px; display: flex; justify-content: space-between; gap: 12px; font: 850 .65rem ui-monospace, monospace; color: #6f797f; }
.product-meta span:last-child { color: var(--coral); }
.product-card h3 { margin: 12px 2px 8px; font-size: 1.18rem; }
.product-card p { margin: 0 2px; min-height: 72px; color: #66717d; font-size: .88rem; line-height: 1.55; }
.product-button { width: 100%; margin-top: 18px; padding: 13px 15px; display: flex; justify-content: space-between; border: 2px solid var(--ink); background: transparent; font-weight: 900; cursor: pointer; }
.product-button:hover { background: var(--gold); }

.download { padding: 90px clamp(22px, 7vw, 110px); display: grid; grid-template-columns: 1.2fr .8fr; align-items: center; gap: 50px; color: white; background: var(--coral); }
.download .eyebrow { color: var(--navy); }
.download-copy > p:not(.eyebrow):not(.download-note) { max-width: 580px; line-height: 1.6; color: rgba(255,255,255,.8); }
.download .button-primary { background: var(--navy); border-color: var(--navy); color: white; box-shadow: 6px 6px 0 var(--gold); }
.download .button-ghost { color: white; }
.download-note { min-height: 22px; font-weight: 800; color: var(--navy); }
.download-badge { padding: 24px; display: grid; grid-template-columns: 86px 1fr auto; gap: 18px; align-items: center; background: white; color: var(--ink); border: 4px solid var(--ink); box-shadow: 12px 12px 0 var(--gold); transform: rotate(2deg); }
.download-badge img { border-radius: 18px; }
.download-badge div { display: flex; flex-direction: column; gap: 5px; }
.download-badge strong { font-size: 1.35rem; }
.download-badge span { color: #6d7880; font-size: .8rem; }
.download-badge > b { padding: 7px 9px; color: white; background: var(--navy); font: 900 .72rem ui-monospace, monospace; }

footer { padding: 34px clamp(22px, 6vw, 92px); display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 36px; background: var(--ink); color: rgba(255,255,255,.65); font-size: .72rem; }
.footer-brand { color: white; }
footer p { text-align: center; }
footer > div { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 20px; font-weight: 800; color: white; }

.toast { position: fixed; right: 22px; bottom: 22px; max-width: 420px; padding: 15px; display: grid; grid-template-columns: 48px 1fr 32px; gap: 12px; align-items: center; background: var(--paper); border: 3px solid var(--ink); box-shadow: 9px 9px 0 var(--gold); z-index: 100; transform: translateY(150%); transition: transform .25s cubic-bezier(.2,.9,.2,1.2); }
.toast.show { transform: translateY(0); }
.toast img { border-radius: 9px; }
.toast div { display: flex; flex-direction: column; gap: 3px; }
.toast strong { font-size: .8rem; }
.toast span { font-size: .7rem; color: #6d7880; }
.toast button { border: 0; background: transparent; font-size: 1.4rem; cursor: pointer; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1020px) {
  .hero { grid-template-columns: 1fr 430px; gap: 36px; }
  h1 { font-size: clamp(3.2rem, 6.4vw, 5rem); }
  .feature-stage { grid-template-columns: 360px 1fr; gap: 46px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: auto; }
  .product-card { grid-column: span 3; }
}

@media (max-width: 780px) {
  .site-header { height: 68px; padding-inline: 18px; }
  .menu-button { display: block; }
  .site-nav { position: fixed; inset: 68px 0 auto; padding: 28px 22px 34px; display: flex; flex-direction: column; align-items: stretch; gap: 0; background: var(--navy); border-top: 1px solid var(--line); transform: translateY(-130%); transition: transform .25s; z-index: -1; }
  .site-nav.open { transform: translateY(0); }
  .site-nav a { padding: 16px 0; border-bottom: 1px solid var(--line); }
  .site-nav .nav-cta { margin-top: 14px; padding: 14px; text-align: center; }
  .hero { grid-template-columns: 1fr; padding-top: 116px; padding-bottom: 120px; }
  .hero-art { width: min(92%, 500px); margin: 30px auto 0; justify-self: center; }
  .hero-proof { justify-content: space-between; }
  .feature-stage { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .method { grid-template-columns: 1fr; }
  .method-art { min-height: 520px; border-right: 0; border-bottom: 8px solid var(--gold); }
  .shop-heading { display: block; }
  .line-feature-grid { grid-template-columns: 1fr; }
  .product-card { grid-column: span 3; }
  .download { grid-template-columns: 1fr; }
  footer { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  footer p { margin: 0; }
}

@media (max-width: 540px) {
  h1 { font-size: clamp(3rem, 17vw, 4.6rem); }
  .hero-lede { font-size: 1rem; }
  .hero-actions .button, .download-actions .button { width: 100%; }
  .hero-proof { gap: 14px; }
  .hero-proof span { font-size: .7rem; }
  .speech-bubble { left: -8px; bottom: -72px; }
  .section { padding-block: 82px; }
  .section-heading h2, .method h2, .download h2 { font-size: clamp(2.8rem, 14vw, 4.3rem); }
  .feature-grid { grid-template-columns: 1fr; }
  .phone-shell { width: 100%; }
  .phone-screen { min-height: 620px; }
  .method-art { min-height: 400px; }
  .method-copy { padding-block: 65px; }
  .product-grid { display: block; }
  .line-feature { min-height: 480px; }
  .line-pack-stage { min-height: 315px; padding-inline: 16px; }
  .line-pack { height: 235px; }
  .line-pack:nth-child(2) { height: 270px; }
  .product-card { margin-bottom: 18px; }
  .product-visual { min-height: 280px; }
  .download-badge { grid-template-columns: 70px 1fr; }
  .download-badge > b { display: none; }
  .toast { left: 14px; right: 14px; bottom: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Apparel portfolio */
.product-photo { padding: 0; background: #eee9df; }
.product-photo::before { display: none; }
.product-photo > img { width: 100%; height: 310px; object-fit: cover; }
.concept-ribbon { position: absolute; left: 14px; bottom: 14px; padding: 8px 10px; background: var(--gold); color: var(--ink); font: 1000 .65rem ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: .12em; box-shadow: 4px 4px 0 var(--ink); }

.lookbook-page { background: var(--paper); }
.lookbook-header { background: linear-gradient(to bottom, rgba(3,17,38,.76), transparent); }
.lookbook-hero { min-height: 900px; height: 100svh; position: relative; display: flex; align-items: flex-end; overflow: hidden; background: var(--navy); color: white; }
.lookbook-hero-image, .lookbook-hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.lookbook-hero-image { object-fit: cover; object-position: center; }
.lookbook-hero-shade { background: linear-gradient(90deg, rgba(3,17,38,.98) 0%, rgba(3,17,38,.79) 31%, rgba(3,17,38,.13) 65%), linear-gradient(0deg, rgba(3,17,38,.72), transparent 45%); }
.lookbook-hero-copy { width: min(760px, 62vw); position: relative; z-index: 2; padding: 0 0 96px clamp(22px, 6vw, 92px); }
.lookbook-hero h1 { font-size: clamp(4.6rem, 9vw, 10.2rem); }
.lookbook-statement { max-width: 570px; margin: 28px 0 32px; color: rgba(255,255,255,.76); font-size: clamp(1.1rem, 1.6vw, 1.4rem); line-height: 1.55; }
.concept-stamp { position: absolute; z-index: 3; right: clamp(22px, 5vw, 76px); bottom: 50px; padding: 14px 18px; display: flex; flex-direction: column; gap: 6px; background: var(--gold); color: var(--ink); transform: rotate(-2deg); box-shadow: 8px 8px 0 var(--coral); }
.concept-stamp span { font: 900 .63rem ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: .13em; }
.concept-stamp strong { font: 1000 1rem ui-monospace, SFMono-Regular, Menlo, monospace; }
.lookbook-ticker { background: var(--green); }

.platform-section { background: var(--paper); }
.platform-intro { display: grid; grid-template-columns: 1fr 1.25fr; gap: 36px clamp(42px, 8vw, 120px); align-items: end; }
.platform-intro .eyebrow { grid-column: 1 / -1; margin-bottom: -10px; }
.platform-intro h2 { font-size: clamp(3.4rem, 6.5vw, 7.1rem); }
.platform-intro > p:last-child { max-width: 600px; margin: 0 0 6px; color: #66717d; font-size: 1.2rem; line-height: 1.7; }
.brand-principles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 76px 0; }
.principle-card { min-height: 300px; padding: 30px; border: 2px solid var(--ink); background: var(--cream); box-shadow: 8px 8px 0 var(--gold); }
.principle-card:nth-child(2) { box-shadow: 8px 8px 0 var(--green); }
.principle-card:nth-child(3) { box-shadow: 8px 8px 0 var(--coral); }
.principle-card > span { font: 1000 .75rem ui-monospace, SFMono-Regular, Menlo, monospace; color: var(--green-dark); }
.principle-card h3 { margin: 74px 0 18px; font-size: 1.35rem; }
.principle-card p { margin: 0; color: #66717d; line-height: 1.62; }
.identity-board { display: grid; grid-template-columns: 1.1fr .9fr; min-height: 440px; border: 3px solid var(--ink); }
.identity-mark { padding: clamp(28px, 5vw, 66px); display: grid; grid-template-columns: minmax(160px, 260px) 1fr; align-items: center; gap: clamp(28px, 5vw, 62px); color: white; background: var(--navy); }
.identity-mark img { width: 100%; border: 5px solid var(--gold); box-shadow: 12px 12px 0 var(--green); }
.identity-mark span, .palette span { font: 800 .63rem ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: .12em; }
.identity-mark strong { display: block; margin: 12px 0; font-size: clamp(1.3rem, 2.2vw, 2.1rem); }
.identity-mark p { color: rgba(255,255,255,.64); line-height: 1.55; }
.palette { padding: 24px; display: grid; gap: 10px; background: var(--cream); }
.palette > div { min-height: 58px; padding: 8px 12px 8px 8px; display: grid; grid-template-columns: 44px 1fr auto; gap: 13px; align-items: center; border: 1px solid #d8d1c3; background: white; }
.palette i { width: 44px; height: 44px; background: var(--swatch); border: 1px solid rgba(3,17,38,.2); }
.palette b { font-size: .8rem; }
.palette span { color: #7a817e; }

.collection-section { background: var(--cream); }
.collection-header { padding: 120px clamp(22px, 6vw, 92px) 24px; margin: 0; max-width: 980px; }
.collection-story { min-height: 760px; display: grid; grid-template-columns: 1.15fr .85fr; align-items: stretch; }
.collection-story-dark { grid-template-columns: .85fr 1.15fr; color: white; background: var(--navy); }
.collection-story-light { background: var(--paper); }
.collection-image { min-width: 0; margin: 0; padding: clamp(22px, 4vw, 62px); display: flex; flex-direction: column; justify-content: center; background: #e5dfd4; overflow: hidden; }
.collection-story-dark .collection-image { background: #07142a; }
.collection-image img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; border: 3px solid var(--ink); box-shadow: 14px 14px 0 var(--gold); }
.collection-image figcaption { margin-top: 22px; color: #707a80; font: 750 .68rem/1.5 ui-monospace, SFMono-Regular, Menlo, monospace; }
.collection-story-dark .collection-image figcaption { color: rgba(255,255,255,.46); }
.collection-copy { padding: clamp(50px, 7vw, 105px); align-self: center; }
.collection-number { color: var(--green-dark); font: 1000 .72rem ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: .13em; }
.collection-story-dark .collection-number { color: var(--green); }
.collection-copy h3 { margin: 28px 0; font-size: clamp(2.6rem, 4.5vw, 5.5rem); letter-spacing: -.055em; line-height: .92; }
.collection-lede { max-width: 640px; color: #66717d; font-size: 1.12rem; line-height: 1.65; }
.collection-story-dark .collection-lede { color: rgba(255,255,255,.64); }
.sku-grid { margin: 38px 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.sku-grid-three { grid-template-columns: 1fr; }
.sku-grid > div { padding: 17px; display: flex; flex-direction: column; gap: 6px; border: 1px solid #dcd5c8; background: var(--cream); }
.collection-story-dark .sku-grid > div { border-color: rgba(255,255,255,.18); background: rgba(255,255,255,.06); }
.sku-grid span { font: 850 .62rem ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: .1em; color: var(--coral); }
.sku-grid strong { font-size: .92rem; }
.sku-grid small { color: #747d7a; line-height: 1.4; }
.collection-story-dark .sku-grid small { color: rgba(255,255,255,.5); }
.spec-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid #d8d1c3; }
.spec-list li { padding: 12px 0 12px 25px; position: relative; border-bottom: 1px solid #d8d1c3; color: #626d72; font-size: .88rem; }
.spec-list li::before { content: "✦"; position: absolute; left: 0; color: var(--gold); }
.collection-story-dark .spec-list { border-color: rgba(255,255,255,.16); }
.collection-story-dark .spec-list li { border-color: rgba(255,255,255,.16); color: rgba(255,255,255,.6); }

.campaign-section { min-height: 820px; display: grid; grid-template-columns: 1.12fr .88fr; background: var(--ink); color: white; }
.campaign-image { min-height: 700px; border-right: 8px solid var(--gold); }
.campaign-image img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.campaign-copy { padding: clamp(58px, 7vw, 110px); align-self: center; }
.campaign-copy h2 { margin-top: 24px; font-size: clamp(4.8rem, 8vw, 9rem); }
.campaign-copy blockquote { margin: 42px 0 22px; padding-left: 25px; border-left: 6px solid var(--green); font: 800 clamp(1.25rem, 2vw, 1.75rem)/1.45 ui-sans-serif, sans-serif; }
.campaign-copy > p:not(.eyebrow) { color: rgba(255,255,255,.6); line-height: 1.65; }
.campaign-lines { margin-top: 42px; border-top: 1px solid var(--line); }
.campaign-lines > div { padding: 18px 0; display: grid; grid-template-columns: 130px 1fr; gap: 18px; border-bottom: 1px solid var(--line); }
.campaign-lines span { color: var(--green); font: 850 .62rem ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: .12em; }
.campaign-lines strong { font-size: .88rem; }

.launch-kit { background: #e7f7ef; }
.launch-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.launch-card { min-height: 330px; padding: 26px; display: flex; flex-direction: column; border: 2px solid var(--ink); background: var(--paper); box-shadow: 7px 7px 0 rgba(3,17,38,.14); }
.launch-card > span { color: var(--green-dark); font: 1000 .68rem ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: .14em; }
.launch-card h3 { margin: 74px 0 18px; }
.launch-card p { margin: 0; color: #66717d; line-height: 1.55; }
.launch-card small { margin-top: auto; padding-top: 24px; color: #8a918e; font: 750 .65rem ui-monospace, SFMono-Regular, Menlo, monospace; }
.launch-card-gold { background: var(--gold); }
.launch-card-gold > span, .launch-card-gold p, .launch-card-gold small { color: var(--ink); }

.portfolio-close { min-height: 670px; padding: 90px clamp(22px, 7vw, 110px); display: grid; grid-template-columns: 1.2fr .8fr; gap: 70px; align-items: center; color: white; background: var(--coral); }
.portfolio-close h2 { font-size: clamp(3.7rem, 6.8vw, 7.5rem); }
.portfolio-close > div > p:not(.eyebrow) { max-width: 650px; color: rgba(255,255,255,.82); font-size: 1.08rem; line-height: 1.65; }
.portfolio-close .eyebrow { color: var(--navy); }
.portfolio-close-mark { width: min(100%, 390px); justify-self: center; border: 8px solid var(--navy); box-shadow: 16px 16px 0 var(--gold); transform: rotate(3deg); }
.lookbook-page footer > div { flex-wrap: wrap; justify-content: flex-end; }

@media (max-width: 1120px) {
  .lookbook-hero-copy { width: 68vw; }
  .brand-principles { grid-template-columns: 1fr; }
  .principle-card { min-height: 210px; }
  .principle-card h3 { margin-top: 42px; }
  .identity-board { grid-template-columns: 1fr; }
  .launch-grid { grid-template-columns: repeat(2, 1fr); }
  .collection-story, .collection-story-dark { grid-template-columns: 1fr; }
  .collection-story-dark .collection-copy { order: 2; }
  .collection-story-dark .collection-image { order: 1; }
  .collection-image { padding-block: 70px; }
}

@media (max-width: 820px) {
  .lookbook-hero { min-height: 820px; align-items: flex-end; }
  .lookbook-hero-image { object-position: 61% center; }
  .lookbook-hero-shade { background: linear-gradient(0deg, rgba(3,17,38,.98) 0%, rgba(3,17,38,.72) 52%, rgba(3,17,38,.12) 100%); }
  .lookbook-hero-copy { width: auto; padding: 0 22px 130px; }
  .lookbook-hero h1 { font-size: clamp(4rem, 15vw, 7.5rem); }
  .concept-stamp { right: 22px; bottom: 34px; }
  .platform-intro { grid-template-columns: 1fr; }
  .platform-intro .eyebrow { grid-column: auto; }
  .identity-mark { grid-template-columns: 145px 1fr; }
  .campaign-section { grid-template-columns: 1fr; }
  .campaign-image { min-height: 520px; border-right: 0; border-bottom: 8px solid var(--gold); }
  .portfolio-close { grid-template-columns: 1fr; }
  .portfolio-close-mark { width: min(75vw, 360px); }
}

@media (max-width: 560px) {
  .product-photo > img { height: 280px; }
  .lookbook-hero-copy { padding-bottom: 145px; }
  .lookbook-hero .hero-actions { display: none; }
  .concept-stamp { left: 22px; right: auto; }
  .identity-mark { grid-template-columns: 1fr; }
  .identity-mark img { width: min(64vw, 250px); }
  .palette > div { grid-template-columns: 40px 1fr; }
  .palette span { display: none; }
  .collection-header { padding-top: 84px; }
  .collection-image { padding: 28px 18px 42px; }
  .collection-image img { box-shadow: 8px 8px 0 var(--gold); }
  .collection-copy { padding: 58px 22px 72px; }
  .sku-grid { grid-template-columns: 1fr; }
  .launch-grid { grid-template-columns: 1fr; }
  .launch-card { min-height: 270px; }
  .campaign-lines > div { grid-template-columns: 1fr; gap: 7px; }
  .portfolio-close { padding-block: 74px; }
}

/* Supplement concept portfolio */
.supplement-page { background: #eef7f2; }
.supplement-header { background: linear-gradient(to bottom, rgba(3,17,38,.84), transparent); }
.supplement-hero { min-height: 880px; padding: 145px clamp(22px, 6vw, 92px) 95px; display: grid; grid-template-columns: minmax(0, 1fr) minmax(420px, .9fr); align-items: center; gap: clamp(50px, 7vw, 110px); position: relative; overflow: hidden; color: white; background: radial-gradient(circle at 72% 42%, rgba(34,204,112,.22), transparent 25%), repeating-linear-gradient(90deg, transparent 0 89px, rgba(255,255,255,.03) 90px), var(--navy); }
.supplement-hero::after { content: ""; position: absolute; width: 680px; height: 680px; right: -310px; bottom: -280px; border: 110px solid rgba(255,196,34,.08); border-radius: 50%; }
.supplement-hero-copy, .supplement-hero-art { position: relative; z-index: 2; }
.supplement-hero h1 { font-size: clamp(4rem, 7vw, 7.8rem); }
.supplement-hero-copy > p:not(.eyebrow) { max-width: 710px; margin: 30px 0 34px; color: rgba(255,255,255,.72); font-size: clamp(1.05rem, 1.5vw, 1.28rem); line-height: 1.62; }
.supplement-proof { margin-top: 48px; display: flex; gap: clamp(28px, 5vw, 70px); }
.supplement-proof div { display: flex; flex-direction: column; }
.supplement-proof strong { color: var(--gold); font: 1000 1.6rem ui-monospace, SFMono-Regular, Menlo, monospace; }
.supplement-proof span { color: rgba(255,255,255,.5); font-size: .78rem; }
.supplement-hero-art { min-height: 610px; perspective: 1100px; }
.hero-pack { position: absolute; display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden; border: 3px solid var(--ink); box-shadow: 18px 22px 0 rgba(0,0,0,.2); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; }
.hero-pack::before { content: ""; position: absolute; inset: 13px; border: 1px solid rgba(255,255,255,.3); }
.hero-pack span { position: absolute; top: 27px; left: 28px; font-size: .68rem; font-weight: 900; letter-spacing: .12em; }
.hero-pack strong { position: relative; z-index: 1; font-size: clamp(1.05rem, 2vw, 1.7rem); line-height: .98; }
.hero-pack small { position: relative; z-index: 1; margin-top: 13px; font-size: .6rem; font-weight: 900; letter-spacing: .12em; }
.hero-pack-main { width: 250px; height: 500px; left: calc(50% - 125px); top: 25px; padding: 31px; color: var(--ink); background: linear-gradient(160deg, #f7fff9, #8ff1bb); transform: rotateY(-2deg) rotate(2deg); z-index: 3; box-shadow: 17px 22px 0 var(--gold); }
.hero-pack-main::before { border-color: rgba(3,17,38,.22); }
.hero-pack-main b { position: absolute; top: 92px; left: 30px; width: 82px; height: 82px; display: grid; place-items: center; color: white; background: var(--green-dark); font: 1000 3.2rem sans-serif; box-shadow: 7px 7px 0 var(--ink); }
.hero-pack-left, .hero-pack-right { width: 205px; height: 390px; top: 120px; padding: 25px; color: white; background: var(--coral); }
.hero-pack-left { left: 0; transform: rotateY(12deg) rotate(-7deg); }
.hero-pack-right { right: 0; background: #7857d8; transform: rotateY(-12deg) rotate(7deg); }
.supplement-hero-art .concept-stamp { right: 2%; bottom: 3px; }
.supplement-ticker { background: var(--green); }

.product-standard { background: var(--paper); }
.standard-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.standard-card { min-height: 350px; padding: 28px; display: flex; flex-direction: column; border: 2px solid var(--ink); background: var(--cream); box-shadow: 7px 7px 0 var(--gold); }
.standard-card:nth-child(2) { box-shadow-color: var(--green); }
.standard-card:nth-child(3) { box-shadow-color: var(--sky); }
.standard-card:nth-child(4) { color: white; background: var(--navy); box-shadow-color: var(--coral); }
.standard-card > span { color: var(--green-dark); font: 1000 .72rem ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: .14em; }
.standard-card:nth-child(4) > span { color: var(--gold); }
.standard-card h3 { margin: auto 0 20px; font-size: 1.28rem; }
.standard-card p { margin: 0; color: #66717d; line-height: 1.62; }
.standard-card:nth-child(4) p { color: rgba(255,255,255,.64); }

.portfolio-roadmap { background: #f2ede3; }
.roadmap-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; }
.roadmap-card { min-height: 315px; padding: 27px; display: flex; flex-direction: column; grid-column: span 4; border: 2px solid var(--ink); background: var(--paper); box-shadow: 7px 7px 0 rgba(3,17,38,.14); }
.roadmap-card:nth-child(4), .roadmap-card:nth-child(5) { grid-column: span 6; }
.roadmap-card > span { color: var(--green-dark); font: 1000 .67rem ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: .13em; }
.roadmap-card h3 { margin: 68px 0 17px; font-size: 1.45rem; }
.roadmap-card p { margin: 0; color: #66717d; font-size: .88rem; line-height: 1.62; }
.roadmap-card small { margin-top: auto; padding-top: 25px; color: #7c8582; font: 800 .64rem/1.45 ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: .04em; text-transform: uppercase; }
.roadmap-core { background: var(--gold); box-shadow-color: var(--green-dark); }
.roadmap-core > span, .roadmap-core p, .roadmap-core small { color: var(--ink); }
.roadmap-education { color: white; background: var(--navy); box-shadow-color: var(--coral); }
.roadmap-education > span { color: var(--gold); }
.roadmap-education p, .roadmap-education small { color: rgba(255,255,255,.64); }

.supplement-line { padding: 120px clamp(22px, 6vw, 92px); background: #e7f7ef; }
.supplement-line-head { margin-bottom: 42px; display: flex; justify-content: space-between; align-items: end; gap: 50px; }
.supplement-line-head h2 { font-size: clamp(3.2rem, 6vw, 6.7rem); }
.line-status { max-width: 380px; padding: 21px; display: flex; flex-direction: column; gap: 8px; border: 2px solid var(--ink); background: var(--gold); box-shadow: 7px 7px 0 var(--ink); }
.line-status strong { font: 1000 1.2rem ui-monospace, SFMono-Regular, Menlo, monospace; }
.line-status span { font-size: .78rem; line-height: 1.5; }
.supplement-tabs { margin: 0 0 38px; }
.supplement-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.supplement-card { min-width: 0; display: flex; flex-direction: column; background: var(--paper); border: 2px solid var(--ink); box-shadow: 7px 7px 0 rgba(3,17,38,.12); transition: transform .18s, opacity .18s; }
.supplement-card:hover { transform: translateY(-5px); }
.supplement-card.is-hidden { display: none; }
.supplement-pack { min-height: 330px; margin: 13px; padding: 23px; display: flex; flex-direction: column; justify-content: flex-end; position: relative; overflow: hidden; color: white; background: var(--navy); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; }
.supplement-pack::before { content: ""; position: absolute; inset: 12px; border: 1px solid rgba(255,255,255,.28); }
.supplement-pack::after { content: ""; position: absolute; width: 180px; height: 180px; right: -90px; top: -82px; border: 32px solid rgba(255,255,255,.1); border-radius: 50%; }
.pack-code { position: absolute; top: 27px; left: 25px; font-size: .63rem; font-weight: 900; letter-spacing: .12em; }
.pack-cross { position: absolute; top: 73px; left: 25px; width: 55px; height: 55px; display: grid; place-items: center; color: var(--ink); background: var(--gold); font: 1000 2.4rem sans-serif; box-shadow: 5px 5px 0 rgba(3,17,38,.55); }
.supplement-pack strong { position: relative; z-index: 1; font-size: clamp(1.22rem, 1.6vw, 1.7rem); line-height: .98; text-transform: uppercase; }
.supplement-pack small { position: relative; z-index: 1; margin-top: 11px; font-size: .6rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.supplement-pack i { position: absolute; right: 23px; bottom: 23px; writing-mode: vertical-rl; color: rgba(255,255,255,.38); font-style: normal; font-size: .58rem; font-weight: 900; letter-spacing: .15em; }
.pack-hydration { color: var(--ink); background: linear-gradient(145deg, #effff5, #78e8aa); }
.pack-hydration::before { border-color: rgba(3,17,38,.2); }
.pack-hydration i { color: rgba(3,17,38,.4); }
.pack-performance { background: linear-gradient(145deg, #fb4d44, #ff8a65); }
.pack-recovery { background: linear-gradient(145deg, #6542c4, #9d7ef0); }
.pack-focus { background: linear-gradient(145deg, #075aa7, #43b7ef); }
.pack-metabolic { background: linear-gradient(145deg, #076848, #1dbb70); }
.pack-longevity { color: var(--ink); background: linear-gradient(145deg, #ffeaa2, #ffc422); }
.pack-longevity::before { border-color: rgba(3,17,38,.2); }
.pack-longevity i { color: rgba(3,17,38,.42); }
.pack-peptide { background: repeating-linear-gradient(135deg, #071a38 0 22px, #0b2b55 22px 44px); }
.pack-peptide .pack-cross { color: white; background: var(--coral); }
.supplement-copy { padding: 5px 20px 23px; display: flex; flex-direction: column; flex: 1; }
.supplement-meta { display: flex; justify-content: space-between; gap: 12px; color: #707a80; font: 850 .58rem ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: .06em; text-transform: uppercase; }
.supplement-meta b { color: var(--coral); }
.supplement-copy h3 { margin: 17px 0 10px; font-size: 1.1rem; }
.supplement-copy p { margin: 0; color: #66717d; font-size: .8rem; line-height: 1.55; }
.supplement-wave { width: fit-content; margin-top: 15px; padding: 6px 8px; color: var(--ink); background: #dff4e9; font: 950 .58rem ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: .07em; }
.supplement-role { margin-top: 18px !important; padding-top: 15px; border-top: 1px solid #ddd6ca; }
.supplement-role strong { display: block; margin-bottom: 5px; color: var(--ink); font: 950 .62rem ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: .06em; text-transform: uppercase; }
.supplement-gate { margin-top: 15px; padding: 12px 0; border-block: 1px solid #ddd6ca; }
.supplement-gate summary { cursor: pointer; color: var(--ink); font: 900 .65rem/1.45 ui-monospace, SFMono-Regular, Menlo, monospace; text-transform: uppercase; }
.supplement-gate p { padding: 11px 0 2px; }
.supplement-format { margin-top: auto; padding-top: 22px; color: var(--green-dark); font: 900 .62rem ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: .08em; text-transform: uppercase; }
.noscript-note { padding: 20px; border: 2px solid var(--ink); background: var(--gold); font-weight: 850; }

.quality-standard { color: white; background: #04152f; }
.quality-standard .section-heading > p:not(.eyebrow) { color: rgba(255,255,255,.64); }
.quality-grid { margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; list-style: none; counter-reset: none; }
.quality-grid li { min-height: 180px; padding: 24px; display: grid; grid-template-columns: 62px 1fr; gap: 20px; border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.045); }
.quality-grid li > span { color: var(--gold); font: 1000 1.35rem ui-monospace, SFMono-Regular, Menlo, monospace; }
.quality-grid h3 { margin: 0 0 12px; font-size: 1.05rem; text-transform: uppercase; }
.quality-grid p { margin: 0; color: rgba(255,255,255,.6); font-size: .85rem; line-height: 1.62; }
.quality-links { margin-top: 28px; display: grid; grid-template-columns: repeat(5, 1fr); border: 1px solid rgba(255,255,255,.22); }
.quality-links a { min-height: 88px; padding: 17px; display: flex; align-items: center; color: white; border-right: 1px solid rgba(255,255,255,.18); font: 850 .68rem/1.45 ui-monospace, SFMono-Regular, Menlo, monospace; text-decoration: none; }
.quality-links a:last-child { border-right: 0; }
.quality-links a:hover { color: var(--ink); background: var(--gold); }

.peptide-standard { min-height: 760px; padding: 110px clamp(22px, 7vw, 110px); display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(48px, 8vw, 120px); color: white; background: var(--navy); }
.peptide-standard h2 { font-size: clamp(3.5rem, 6vw, 6.7rem); }
.peptide-standard-copy > p:not(.eyebrow) { max-width: 680px; margin: 30px 0 34px; color: rgba(255,255,255,.66); font-size: 1.08rem; line-height: 1.68; }
.peptide-diagram { display: grid; gap: 18px; }
.peptide-diagram > div { min-height: 130px; padding: 23px; display: grid; grid-template-columns: 60px 1fr; align-items: center; column-gap: 18px; border: 2px solid rgba(255,255,255,.24); background: rgba(255,255,255,.05); }
.peptide-diagram span { grid-row: 1 / span 2; color: var(--gold); font: 1000 1.5rem ui-monospace, SFMono-Regular, Menlo, monospace; }
.peptide-diagram strong { font-size: 1.08rem; }
.peptide-diagram small { color: rgba(255,255,255,.48); }
.peptide-diagram i { width: 3px; height: 18px; margin: -18px 0 -18px 50px; background: var(--coral); }

.product-sources { background: var(--paper); }
.source-columns { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.source-columns details { padding: 24px; border: 2px solid var(--ink); background: var(--cream); }
.source-columns summary { cursor: pointer; font-weight: 950; }
.source-columns p { color: #66717d; font-size: .85rem; line-height: 1.65; }
.source-columns a { color: #075aa7; text-decoration: underline; text-underline-offset: 3px; }
.product-disclaimer { margin: 40px 0 0; padding: 24px; border: 3px solid var(--ink); background: var(--gold); font: 850 .72rem/1.65 ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: .03em; }
.supplement-page footer > div { flex-wrap: wrap; justify-content: flex-end; }

@media (max-width: 1180px) {
  .supplement-hero { grid-template-columns: 1fr 440px; }
  .supplement-hero-art { min-height: 540px; }
  .hero-pack-main { width: 220px; height: 460px; left: calc(50% - 110px); }
  .hero-pack-left, .hero-pack-right { width: 170px; height: 340px; }
  .standard-grid { grid-template-columns: repeat(2, 1fr); }
  .roadmap-card { grid-column: span 6; }
  .roadmap-card:last-child { grid-column: 4 / span 6; }
  .supplement-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .quality-links { grid-template-columns: repeat(3, 1fr); }
  .quality-links a { border-bottom: 1px solid rgba(255,255,255,.18); }
}

@media (max-width: 860px) {
  .supplement-hero { grid-template-columns: 1fr; padding-bottom: 115px; }
  .supplement-hero-art { width: min(100%, 580px); min-height: 560px; justify-self: center; }
  .supplement-line-head { display: block; }
  .line-status { margin-top: 35px; }
  .supplement-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .roadmap-card, .roadmap-card:nth-child(4), .roadmap-card:nth-child(5), .roadmap-card:last-child { grid-column: 1 / -1; }
  .quality-grid { grid-template-columns: 1fr; }
  .quality-links { grid-template-columns: 1fr; }
  .quality-links a { border-right: 0; }
  .peptide-standard { grid-template-columns: 1fr; }
  .source-columns { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .supplement-hero { min-height: 980px; padding-top: 120px; }
  .supplement-hero h1 { font-size: clamp(3.5rem, 16vw, 5.5rem); }
  .supplement-proof { gap: 24px; }
  .supplement-hero-art { min-height: 470px; transform: scale(.86); transform-origin: top center; margin-bottom: -70px; }
  .hero-pack-main { width: 190px; height: 400px; left: calc(50% - 95px); }
  .hero-pack-left, .hero-pack-right { width: 145px; height: 300px; }
  .standard-grid, .supplement-grid { grid-template-columns: 1fr; }
  .standard-card { min-height: 290px; }
  .supplement-pack { min-height: 360px; }
  .supplement-line, .peptide-standard { padding-block: 82px; }
}
