@import url('https://fonts.googleapis.com/css2?family=Epilogue:wght@400;500;600;700;800&family=Source+Sans+3:wght@400;500;600;700&family=IBM+Plex+Mono:wght@400;500;600&display=swap');

:root {
  --sterile-white: #f7f9fb;
  --foil-silver: #c8d0d8;
  --pale-powder-blue: #d4e4f0;
  --leaflet-cream: #f4f1ea;
  --mint-white: #e8f5f1;
  --frosted-label: #fafcfd;
  --blister-white: #ffffff;
  --capsule-grey: #e2e6ea;
  --medical-graphite: #2a2f36;
  --cobalt-label: #2b5aa8;
  --prescription-navy: #1a2d4a;
  --dark-teal: #1e4a4a;
  --bottle-green: #2d5a4a;
  --plum-graphite: #3a2f42;
  --charcoal-violet: #2e2838;
  --dosage-pink: #e87a9a;
  --antiseptic-mint: #5fb89a;
  --amber-tab: #e8a84a;
  --violet-batch: #8b6bb8;
  --soft-peach: #f5d0c0;
  --diluted-lavender: #d8d0e8;
  --pale-lime: #d4e8c8;
  --cool-aqua: #b8dce8;
  --label-yellow: #f0e090;
  --washed-rose: #e8c8d0;
  --clinical-grey: #6b7580;
  --faded-cobalt: #6a8ab8;
  --muted-teal: #6a9a90;
  --pale-violet-grey: #8a8498;
  --capsule-taupe: #a09890;
  --washed-navy: #5a6a80;
  --cool-mint-grey: #8aa8a0;
  --font-display: 'Epilogue', sans-serif;
  --font-body: 'Source Sans 3', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;
  --radius-blister: 28px;
  --radius-capsule: 999px;
  --radius-tab: 8px;
  --radius-soft: 16px;
  --shadow-sterile: 0 8px 32px rgba(42, 47, 54, 0.08);
  --shadow-lift: 0 16px 48px rgba(42, 47, 54, 0.14);
  --shadow-foil: 0 4px 20px rgba(43, 90, 168, 0.12);
  --header-h: 76px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  overflow-x: hidden !important;
  max-width: 100vw;
  position: relative;
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  overflow-x: hidden !important;
  max-width: 100vw;
  position: relative;
  font-family: var(--font-body);
  color: var(--medical-graphite);
  background: var(--sterile-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden !important;
}

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

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

ul,
ol {
  list-style: none;
}

button,
input,
textarea {
  font: inherit;
  color: inherit;
  border: none;
  background: none;
}

button {
  cursor: pointer;
}

.container {
  width: min(1180px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.container-wide {
  width: min(1320px, calc(100% - 2rem));
  margin-inline: auto;
}

.section {
  overflow-x: clip;
  max-width: 100%;
  position: relative;
  padding: clamp(3.5rem, 7vw, 6.5rem) 0;
}

.section-deep {
  background: var(--medical-graphite);
  color: var(--sterile-white);
}

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

.section-powder {
  background: linear-gradient(165deg, var(--pale-powder-blue) 0%, var(--sterile-white) 55%, var(--mint-white) 100%);
}

.section-cream {
  background: var(--leaflet-cream);
}

.section-navy {
  background: var(--prescription-navy);
  color: var(--sterile-white);
}

.bg-blister {
  background-color: var(--sterile-white);
  background-image:
    radial-gradient(circle at 12px 12px, rgba(43, 90, 168, 0.07) 2px, transparent 2.5px),
    linear-gradient(90deg, transparent 48%, rgba(200, 208, 216, 0.35) 49%, rgba(200, 208, 216, 0.35) 51%, transparent 52%),
    linear-gradient(180deg, transparent 48%, rgba(212, 228, 240, 0.4) 49%, rgba(212, 228, 240, 0.4) 51%, transparent 52%);
  background-size: 48px 48px, 96px 100%, 100% 64px;
}

.bg-leaflet {
  background-color: var(--frosted-label);
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 27px,
      rgba(42, 47, 54, 0.04) 27px,
      rgba(42, 47, 54, 0.04) 28px
    ),
    linear-gradient(90deg, rgba(232, 122, 154, 0.08) 0, rgba(232, 122, 154, 0.08) 6px, transparent 6px);
}

.bg-foil {
  background:
    linear-gradient(135deg, rgba(200, 208, 216, 0.45) 0%, rgba(247, 249, 251, 0.9) 40%, rgba(212, 228, 240, 0.5) 100%),
    radial-gradient(ellipse at 80% 20%, rgba(95, 184, 154, 0.15), transparent 50%);
}

.batch-label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cobalt-label);
  background: var(--pale-powder-blue);
  border: 1px solid rgba(43, 90, 168, 0.2);
  border-radius: var(--radius-capsule);
  padding: 0.35rem 0.85rem;
}

.batch-label::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--antiseptic-mint);
  box-shadow: 0 0 0 3px rgba(95, 184, 154, 0.25);
}

.batch-label--pink {
  color: #8a3a55;
  background: rgba(232, 122, 154, 0.18);
  border-color: rgba(232, 122, 154, 0.35);
}

.batch-label--pink::before {
  background: var(--dosage-pink);
  box-shadow: 0 0 0 3px rgba(232, 122, 154, 0.25);
}

.batch-label--amber {
  color: #7a5520;
  background: rgba(232, 168, 74, 0.2);
  border-color: rgba(232, 168, 74, 0.4);
}

.batch-label--amber::before {
  background: var(--amber-tab);
  box-shadow: 0 0 0 3px rgba(232, 168, 74, 0.25);
}

.batch-label--violet {
  color: #5a4080;
  background: rgba(139, 107, 184, 0.18);
  border-color: rgba(139, 107, 184, 0.35);
}

.batch-label--violet::before {
  background: var(--violet-batch);
  box-shadow: 0 0 0 3px rgba(139, 107, 184, 0.25);
}

.batch-label--light {
  color: var(--pale-powder-blue);
  background: rgba(247, 249, 251, 0.1);
  border-color: rgba(247, 249, 251, 0.25);
}

.batch-label--light::before {
  background: var(--antiseptic-mint);
}

.section-kicker {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--faded-cobalt);
  margin-bottom: 0.85rem;
}

.section-deep .section-kicker,
.section-navy .section-kicker {
  color: var(--cool-aqua);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.4rem);
}

h2 {
  font-size: clamp(1.85rem, 3.8vw, 3rem);
}

h3 {
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
}

.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: var(--clinical-grey);
  max-width: 42rem;
}

.section-deep .lead,
.section-navy .lead {
  color: var(--foil-silver);
}

.meta-mono {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--washed-navy);
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(247, 249, 251, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(200, 208, 216, 0.7);
  transition: box-shadow 0.3s var(--ease), background 0.3s var(--ease);
}

.header.is-scrolled {
  box-shadow: var(--shadow-sterile);
  background: rgba(255, 255, 255, 0.96);
}

.header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo img {
  height: 42px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav a {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--medical-graphite);
  position: relative;
  padding: 0.25rem 0;
}

.nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--dosage-pink), var(--cobalt-label));
  border-radius: 2px;
  transition: width 0.35s var(--ease);
}

.nav a:hover::after,
.nav a.is-active::after {
  width: 100%;
}

.header__meta {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.header__batch {
  display: none;
}

@media (min-width: 1100px) {
  .header__batch {
    display: inline-flex;
  }
}

.burger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--foil-silver);
  background: var(--blister-white);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  z-index: 1002;
}

.burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--medical-graphite);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.burger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger.is-open span:nth-child(2) {
  opacity: 0;
}

.burger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 1001;
  background: rgba(42, 47, 54, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease);
}

.mobile-nav.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(360px, 100%);
  height: 100%;
  background: var(--sterile-white);
  padding: 5.5rem 1.75rem 2rem;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease);
  overflow-y: auto;
  border-left: 1px solid var(--foil-silver);
}

.mobile-nav.is-open .mobile-nav__panel {
  transform: translateX(0);
}

.mobile-nav__close {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--foil-silver);
  background: var(--blister-white);
  font-size: 1.4rem;
  line-height: 1;
  color: var(--medical-graphite);
}

.mobile-nav__links {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.mobile-nav__links a {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-soft);
  background: var(--frosted-label);
  border: 1px solid transparent;
}

.mobile-nav__links a:hover,
.mobile-nav__links a.is-active {
  border-color: var(--pale-powder-blue);
  background: var(--pale-powder-blue);
  color: var(--cobalt-label);
}

.mobile-nav__cta {
  margin-top: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius-capsule);
  border: 2px solid transparent;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
  white-space: nowrap;
}

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

.btn--primary {
  background: var(--cobalt-label);
  color: var(--sterile-white);
  box-shadow: var(--shadow-foil);
}

.btn--primary:hover {
  background: var(--prescription-navy);
  box-shadow: var(--shadow-lift);
}

.btn--pink {
  background: var(--dosage-pink);
  color: var(--blister-white);
}

.btn--pink:hover {
  background: #d46585;
}

.btn--mint {
  background: var(--antiseptic-mint);
  color: var(--medical-graphite);
}

.btn--mint:hover {
  background: #4ea888;
  color: var(--sterile-white);
}

.btn--graphite {
  background: var(--medical-graphite);
  color: var(--sterile-white);
}

.btn--outline {
  background: transparent;
  border-color: var(--cobalt-label);
  color: var(--cobalt-label);
}

.btn--outline:hover {
  background: var(--cobalt-label);
  color: var(--sterile-white);
}

.btn--outline-light {
  background: transparent;
  border-color: rgba(247, 249, 251, 0.55);
  color: var(--sterile-white);
}

.btn--outline-light:hover {
  background: var(--sterile-white);
  color: var(--medical-graphite);
}

.btn--ghost {
  background: transparent;
  color: var(--cobalt-label);
  border-radius: 0;
  padding: 0.35rem 0;
  border-bottom: 2px solid var(--dosage-pink);
  border-top: none;
  border-left: none;
  border-right: none;
}

.btn--ghost:hover {
  border-bottom-color: var(--cobalt-label);
  transform: none;
}

.btn--full {
  width: 100%;
}

.link-underline {
  position: relative;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--cobalt-label);
}

.link-underline::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: var(--dosage-pink);
  transform: scaleX(0.35);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}

.link-underline:hover::after {
  transform: scaleX(1);
}

.hero {
  padding: clamp(2rem, 5vw, 3.5rem) 0 clamp(3rem, 6vw, 5rem);
  overflow-x: clip;
  max-width: 100%;
}

.hero__card {
  position: relative;
  background: var(--blister-white);
  border-radius: calc(var(--radius-blister) + 8px);
  border: 1px solid rgba(200, 208, 216, 0.8);
  box-shadow: var(--shadow-sterile);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: min(78vh, 720px);
}

.hero__content {
  padding: clamp(1.75rem, 4vw, 3.25rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
  position: relative;
  z-index: 2;
  background:
    linear-gradient(160deg, var(--frosted-label) 0%, rgba(212, 228, 240, 0.35) 100%);
}

.hero__content::before {
  content: '';
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 72px;
  height: 28px;
  border-radius: var(--radius-capsule);
  background: rgba(232, 122, 154, 0.2);
  border: 1px dashed rgba(232, 122, 154, 0.5);
}

.hero__title {
  max-width: 14ch;
}

.hero__panel {
  background: var(--blister-white);
  border-left: 4px solid var(--antiseptic-mint);
  border-radius: 0 var(--radius-soft) var(--radius-soft) 0;
  padding: 1rem 1.15rem;
  box-shadow: inset 0 0 0 1px rgba(200, 208, 216, 0.5);
  max-width: 34rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
  margin-top: 0.5rem;
}

.hero__visual {
  position: relative;
  min-height: 320px;
  overflow: hidden;
}

.hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 0.6s var(--ease), filter 0.6s var(--ease);
}

.hero__visual:hover img {
  transform: scale(1.04);
  filter: brightness(1.04) saturate(1.05);
}

.hero__modules {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  z-index: 2;
}

.dose-chip {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(247, 249, 251, 0.94);
  color: var(--medical-graphite);
  border: 1px solid rgba(200, 208, 216, 0.9);
  border-radius: var(--radius-tab);
  padding: 0.45rem 0.65rem;
  backdrop-filter: blur(8px);
}

.parallax-foil {
  pointer-events: none;
}

@media (min-width: 1025px) and (hover: hover) {
  .parallax-foil {
    position: absolute;
    inset: auto 8% 18% auto;
    width: 140px;
    height: 140px;
    border-radius: 32px;
    background: linear-gradient(145deg, rgba(200, 208, 216, 0.55), rgba(95, 184, 154, 0.25));
    border: 1px solid rgba(255, 255, 255, 0.6);
    z-index: 1;
    transform: translate3d(0, 0, 0);
    will-change: transform;
  }
}

.intake-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.65rem;
  padding: 0.35rem;
  background: var(--blister-white);
  border-radius: var(--radius-blister);
  border: 1px solid var(--foil-silver);
  box-shadow: var(--shadow-sterile);
}

.intake-item {
  background: linear-gradient(180deg, var(--mint-white), var(--frosted-label));
  border-radius: calc(var(--radius-blister) - 6px);
  padding: 1.1rem 0.9rem;
  border: 1px solid rgba(95, 184, 154, 0.25);
  text-align: center;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.intake-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-foil);
}

.intake-item__code {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  color: var(--violet-batch);
  margin-bottom: 0.55rem;
}

.intake-item__title {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.3;
}

.outcomes {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1.25rem;
  align-items: stretch;
}

.outcome-feature {
  position: relative;
  border-radius: var(--radius-blister);
  overflow: hidden;
  min-height: 420px;
  background: var(--medical-graphite);
  color: var(--sterile-white);
  box-shadow: var(--shadow-lift);
  transition: transform 0.35s var(--ease);
}

.outcome-feature:hover {
  transform: translateY(-6px);
}

.outcome-feature img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  transition: transform 0.6s var(--ease), opacity 0.4s var(--ease);
}

.outcome-feature:hover img {
  transform: scale(1.05);
  opacity: 0.65;
}

.outcome-feature__body {
  position: relative;
  z-index: 1;
  padding: 1.75rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.75rem;
  background: linear-gradient(180deg, transparent 20%, rgba(42, 47, 54, 0.92) 75%);
}

.outcome-side {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.outcome-panel {
  background: var(--blister-white);
  border-radius: var(--radius-soft);
  border: 1px solid var(--foil-silver);
  padding: 1.35rem;
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 1rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.outcome-panel:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sterile);
}

.outcome-panel img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 18px;
}

.outcome-panel__meta {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.thesis {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 2rem;
  align-items: center;
}

.thesis__statement {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.85rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--prescription-navy);
}

.thesis__note {
  background: var(--blister-white);
  border-radius: var(--radius-soft);
  border: 1px solid var(--foil-silver);
  border-top: 6px solid var(--amber-tab);
  padding: 1.5rem;
  box-shadow: var(--shadow-sterile);
}

.thesis__note p {
  color: var(--clinical-grey);
  margin-top: 0.75rem;
}

.thesis__visual {
  border-radius: var(--radius-blister);
  overflow: hidden;
  min-height: 280px;
  box-shadow: var(--shadow-sterile);
}

.thesis__visual img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.services-dose {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.5rem;
}

.dose-selector {
  background: var(--medical-graphite);
  color: var(--sterile-white);
  border-radius: var(--radius-blister);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.dose-option {
  text-align: left;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-soft);
  border: 1px solid rgba(247, 249, 251, 0.12);
  background: rgba(247, 249, 251, 0.04);
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease);
}

.dose-option.is-active,
.dose-option:hover {
  background: rgba(43, 90, 168, 0.35);
  border-color: var(--cool-aqua);
}

.dose-option__code {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: var(--antiseptic-mint);
  display: block;
  margin-bottom: 0.3rem;
}

.dose-option__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
}

.dose-detail {
  background: var(--blister-white);
  border-radius: var(--radius-blister);
  border: 1px solid var(--foil-silver);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: var(--shadow-sterile);
}

.dose-detail__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}

.dose-field {
  background: var(--mint-white);
  border-radius: var(--radius-tab);
  padding: 0.9rem;
  border: 1px solid rgba(95, 184, 154, 0.25);
}

.dose-field span {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted-teal);
  margin-bottom: 0.35rem;
}

.dose-field strong {
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--medical-graphite);
}

.dose-panel[hidden] {
  display: none !important;
}

.proof-contrast {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: start;
}

.proof-big {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.25;
}

.proof-markers {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.proof-marker {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
  background: rgba(247, 249, 251, 0.08);
  border: 1px solid rgba(247, 249, 251, 0.15);
  border-radius: var(--radius-soft);
  padding: 1rem;
}

.proof-marker__num {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  color: var(--dosage-pink);
  font-weight: 600;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.stat-card {
  background: rgba(247, 249, 251, 0.08);
  border: 1px solid rgba(200, 208, 216, 0.2);
  border-radius: var(--radius-soft);
  padding: 1.25rem;
  text-align: center;
}

.stat-card__value {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--antiseptic-mint);
  line-height: 1;
}

.stat-card__label {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: var(--foil-silver);
}

.about-pack {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2rem;
  align-items: center;
}

.about-pack__visual {
  position: relative;
  border-radius: var(--radius-blister);
  overflow: hidden;
  min-height: 380px;
  box-shadow: var(--shadow-sterile);
}

.about-pack__visual img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
}

.about-pack__content h2 {
  margin: 0.75rem 0 1rem;
}

.about-pack__content p + p {
  margin-top: 0.85rem;
  color: var(--clinical-grey);
}

.sequence {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.75rem;
}

.seq-step {
  background: var(--blister-white);
  border-radius: var(--radius-soft);
  border: 1px solid var(--foil-silver);
  padding: 1.15rem 0.9rem;
  position: relative;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.seq-step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-sterile);
}

.seq-step__num {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--cobalt-label);
  margin-bottom: 0.55rem;
}

.seq-step h3 {
  font-size: 1.05rem;
  margin-bottom: 0.45rem;
}

.seq-step p {
  font-size: 0.88rem;
  color: var(--clinical-grey);
}

.seq-step::after {
  content: '';
  position: absolute;
  top: 1.35rem;
  right: -0.55rem;
  width: 10px;
  height: 2px;
  background: var(--dosage-pink);
  z-index: 1;
}

.seq-step:last-child::after {
  display: none;
}

.marquee-wrap {
  overflow: hidden;
  max-width: 100vw;
  padding: 1.25rem 0;
  background: var(--prescription-navy);
  border-block: 1px solid rgba(200, 208, 216, 0.2);
}

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

.marquee__track {
  display: flex;
  flex-shrink: 0;
  gap: 2rem;
  min-width: 100%;
  animation: marquee-left 42s linear infinite;
  padding: 0.35rem 0;
}

.marquee__track--reverse {
  animation-name: marquee-right;
  animation-duration: 48s;
}

.marquee__item {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pale-powder-blue);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 2rem;
}

.marquee__item::after {
  content: '·';
  color: var(--dosage-pink);
}

@keyframes marquee-left {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

@keyframes marquee-right {
  from { transform: translateX(-100%); }
  to { transform: translateX(0); }
}

.cta-desk {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.5rem;
  align-items: stretch;
}

.cta-desk__main {
  background: linear-gradient(145deg, var(--cobalt-label), var(--prescription-navy));
  color: var(--sterile-white);
  border-radius: var(--radius-blister);
  padding: clamp(1.75rem, 4vw, 2.75rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  box-shadow: var(--shadow-lift);
}

.cta-desk__main .lead {
  color: var(--pale-powder-blue);
}

.cta-desk__side {
  border-radius: var(--radius-blister);
  overflow: hidden;
  min-height: 260px;
  position: relative;
}

.cta-desk__side img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.contact-preview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.contact-tile {
  background: var(--blister-white);
  border: 1px solid var(--foil-silver);
  border-radius: var(--radius-soft);
  padding: 1.35rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.contact-tile:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sterile);
}

.contact-tile__label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--violet-batch);
  margin-bottom: 0.55rem;
}

.contact-tile p {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  line-height: 1.4;
}

.footer {
  background: var(--medical-graphite);
  color: var(--sterile-white);
  padding: 3.5rem 0 2rem;
  overflow-x: clip;
  max-width: 100%;
  border-top: 4px solid var(--dosage-pink);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer__logo img {
  height: 40px;
  width: auto;
  filter: brightness(1.05);
  background: var(--sterile-white);
  border-radius: 8px;
  padding: 0.25rem 0.45rem;
}

.footer__brand p {
  margin-top: 1rem;
  color: var(--foil-silver);
  font-size: 0.95rem;
  max-width: 28ch;
}

.footer h4 {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--font-mono);
  color: var(--antiseptic-mint);
  margin-bottom: 1rem;
  font-weight: 500;
}

.footer ul {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer a {
  color: var(--pale-powder-blue);
  font-size: 0.95rem;
}

.footer a:hover {
  color: var(--sterile-white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer__contact p {
  color: var(--foil-silver);
  font-size: 0.95rem;
  margin-bottom: 0.45rem;
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(200, 208, 216, 0.2);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--cool-mint-grey);
}

.page-hero {
  padding: clamp(2.5rem, 5vw, 4rem) 0 2rem;
  overflow-x: clip;
}

.page-hero__card {
  background: var(--blister-white);
  border-radius: var(--radius-blister);
  border: 1px solid var(--foil-silver);
  padding: clamp(1.75rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
  box-shadow: var(--shadow-sterile);
}

.page-hero__card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--radius-soft);
}

.content-block p + p {
  margin-top: 1rem;
}

.content-block h2 {
  margin: 2rem 0 1rem;
}

.content-block h3 {
  margin: 1.5rem 0 0.75rem;
}

.split-uneven {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: start;
}

.split-reverse {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 2rem;
  align-items: center;
}

.card-lift {
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.card-lift:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lift);
}

.blister-card {
  background: var(--blister-white);
  border-radius: var(--radius-blister);
  border: 1px solid var(--foil-silver);
  padding: 1.5rem;
  box-shadow: var(--shadow-sterile);
}

.leaflet-panel {
  background: var(--leaflet-cream);
  border-radius: var(--radius-soft);
  border: 1px solid rgba(160, 152, 144, 0.35);
  border-left: 5px solid var(--cobalt-label);
  padding: 1.35rem 1.5rem;
}

.service-group {
  display: grid;
  gap: 1.25rem;
}

.service-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 1.25rem;
  background: var(--blister-white);
  border-radius: var(--radius-soft);
  border: 1px solid var(--foil-silver);
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.service-row:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sterile);
}

.service-row__tab {
  background: var(--pale-powder-blue);
  padding: 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.4rem;
}

.service-row__body {
  padding: 1.25rem 1.25rem 1.25rem 0;
}

.service-row__body h3 {
  margin-bottom: 0.5rem;
}

.service-row__body p {
  color: var(--clinical-grey);
  font-size: 0.98rem;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.case-card {
  background: var(--blister-white);
  border-radius: var(--radius-blister);
  border: 1px solid var(--foil-silver);
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.case-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
}

.case-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s var(--ease), filter 0.5s var(--ease);
}

.case-card:hover img {
  transform: scale(1.04);
  filter: brightness(1.05);
}

.case-card__body {
  padding: 1.35rem 1.5rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.case-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.case-field {
  font-size: 0.92rem;
  color: var(--clinical-grey);
}

.case-field strong {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cobalt-label);
  margin-bottom: 0.2rem;
  font-weight: 500;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.faq__item {
  background: var(--blister-white);
  border: 1px solid var(--foil-silver);
  border-radius: var(--radius-soft);
  overflow: hidden;
}

.faq__q {
  width: 100%;
  text-align: left;
  padding: 1.1rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
}

.faq__q::after {
  content: '+';
  font-family: var(--font-mono);
  font-size: 1.3rem;
  color: var(--cobalt-label);
  transition: transform 0.3s var(--ease);
}

.faq__item.is-open .faq__q::after {
  content: '−';
  transform: rotate(180deg);
}

.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}

.faq__a-inner {
  padding: 0 1.25rem 1.25rem;
  color: var(--clinical-grey);
  border-top: 1px dashed var(--foil-silver);
  padding-top: 1rem;
  margin-top: 0;
}

.intake-form {
  background: var(--blister-white);
  border-radius: var(--radius-blister);
  border: 1px solid var(--foil-silver);
  padding: 1.75rem;
  box-shadow: var(--shadow-sterile);
  position: relative;
}

.intake-form::before {
  content: 'INTAKE REQUEST';
  position: absolute;
  top: -0.7rem;
  left: 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  background: var(--dosage-pink);
  color: var(--blister-white);
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-capsule);
}

.form-grid {
  display: grid;
  gap: 1.1rem;
  margin-top: 0.75rem;
}

.form-field label {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 0.4rem;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1.5px solid var(--foil-silver);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  background: var(--frosted-label);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--cobalt-label);
  box-shadow: 0 0 0 3px rgba(43, 90, 168, 0.15);
}

.form-field input.is-invalid,
.form-field textarea.is-invalid {
  border-color: var(--dosage-pink);
  box-shadow: 0 0 0 3px rgba(232, 122, 154, 0.18);
}

.form-field .error-msg {
  display: none;
  font-size: 0.82rem;
  color: #c04565;
  margin-top: 0.35rem;
}

.form-field.is-error .error-msg {
  display: block;
}

.form-field textarea {
  min-height: 140px;
  resize: vertical;
}

.map-frame {
  border-radius: var(--radius-blister);
  overflow: hidden;
  border: 1px solid var(--foil-silver);
  min-height: 320px;
  box-shadow: var(--shadow-sterile);
}

.map-frame iframe {
  width: 100%;
  height: 360px;
  border: 0;
  display: block;
}

.thanks-card {
  max-width: 640px;
  margin: 4rem auto;
  text-align: center;
  background: var(--blister-white);
  border-radius: var(--radius-blister);
  border: 1px solid var(--foil-silver);
  padding: clamp(2rem, 5vw, 3.5rem);
  box-shadow: var(--shadow-lift);
}

.thanks-card .batch-label {
  margin-bottom: 1.25rem;
}

.thanks-card h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 1rem;
}

.thanks-card p {
  color: var(--clinical-grey);
  margin-bottom: 1.75rem;
}

.legal-page {
  padding-bottom: 4rem;
}

.legal-content {
  background: var(--blister-white);
  border: 1px solid var(--foil-silver);
  border-radius: var(--radius-soft);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 860px;
  margin: 0 auto;
}

.legal-content h1 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 0.75rem;
}

.legal-content h2 {
  font-size: 1.35rem;
  margin: 2rem 0 0.85rem;
  color: var(--prescription-navy);
}

.legal-content h3 {
  font-size: 1.1rem;
  margin: 1.35rem 0 0.55rem;
}

.legal-content p {
  margin-bottom: 0.9rem;
  color: var(--medical-graphite);
}

.legal-content ul {
  margin: 0.5rem 0 1rem 1.25rem;
  list-style: disc;
}

.legal-content li {
  margin-bottom: 0.4rem;
  color: var(--clinical-grey);
}

.legal-meta {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--washed-navy);
  margin-bottom: 1.5rem;
}

.icon-line {
  width: 40px;
  height: 40px;
}

.icon-line path,
.icon-line circle,
.icon-line rect {
  fill: none;
  stroke: var(--cobalt-label);
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 80;
  stroke-dashoffset: 80;
  transition: stroke-dashoffset 0.9s var(--ease);
}

.icon-line.is-drawn path,
.icon-line.is-drawn circle,
.icon-line.is-drawn rect {
  stroke-dashoffset: 0;
}

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

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

.stagger > * {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}

.stagger.is-visible > *:nth-child(1) { transition-delay: 0.05s; }
.stagger.is-visible > *:nth-child(2) { transition-delay: 0.12s; }
.stagger.is-visible > *:nth-child(3) { transition-delay: 0.19s; }
.stagger.is-visible > *:nth-child(4) { transition-delay: 0.26s; }
.stagger.is-visible > *:nth-child(5) { transition-delay: 0.33s; }
.stagger.is-visible > *:nth-child(6) { transition-delay: 0.4s; }
.stagger.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.gap-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.team-card {
  background: var(--blister-white);
  border-radius: var(--radius-soft);
  border: 1px solid var(--foil-silver);
  padding: 1.35rem;
}

.team-card h3 {
  font-size: 1.1rem;
  margin: 0.65rem 0 0.35rem;
}

.team-card p {
  color: var(--clinical-grey);
  font-size: 0.95rem;
}

.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }

@media (max-width: 1024px) {
  .hero__card,
  .outcomes,
  .thesis,
  .services-dose,
  .proof-contrast,
  .about-pack,
  .cta-desk,
  .page-hero__card,
  .split-uneven,
  .split-reverse {
    grid-template-columns: 1fr;
  }

  .intake-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .sequence {
    grid-template-columns: repeat(3, 1fr);
  }

  .seq-step::after {
    display: none;
  }

  .stat-row {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

  .nav {
    display: none;
  }

  .burger {
    display: inline-flex;
  }

  .header__batch {
    display: none !important;
  }
}

@media (max-width: 720px) {
  .container,
  .container-wide {
    width: calc(100% - 1.5rem);
  }

  .intake-strip,
  .contact-preview,
  .dose-detail__grid {
    grid-template-columns: 1fr;
  }

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

  .outcome-panel {
    grid-template-columns: 1fr;
  }

  .outcome-panel img {
    width: 100%;
    height: 160px;
  }

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

  .service-row__body {
    padding: 0 1.15rem 1.25rem;
  }

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

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

  .hero__actions .btn,
  .cta-desk__main .btn,
  .gap-actions .btn {
    width: 100%;
  }

  .header__meta .btn {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal,
  .stagger > *,
  .marquee__track,
  .marquee__track--reverse {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
