/* ============================================================
   DOSIS v64 — refinement layer
   Preserves the v3 identity while tightening rhythm, hierarchy,
   interaction, accessibility, and responsive behaviour.
   ============================================================ */

:root {
  --dosis-ink: #1A2A22;
  --dosis-forest: #2D4A3E;
  --dosis-emerald: #3D7A5A;
  --dosis-slate: #4A6A7A;
  --dosis-sage: #7FA89A;
  --dosis-paper: #FAFAF6;
  --dosis-card: rgba(255, 255, 255, .78);
  --dosis-line: rgba(45, 74, 62, .13);
  --dosis-muted: #637269;
  --dosis-teal: #7ABFB0;
  --dosis-violet: #B8A0D4;
  --dosis-peach: #E8C8A0;
  --dosis-display: 'Cormorant Garamond', Georgia, serif;
  --dosis-mono: 'DM Mono', ui-monospace, monospace;
  --dosis-body: 'Outfit', system-ui, sans-serif;
  --dosis-ease: cubic-bezier(.16, 1, .3, 1);
  --dosis-shadow-sm: 0 12px 34px rgba(35, 50, 43, .07);
  --dosis-shadow-lg: 0 32px 90px rgba(35, 50, 43, .12);
  --dosis-shell: min(1180px, calc(100vw - 48px));
  --dosis-section: clamp(82px, 10vw, 144px);
}

/* ============================================================
   DOSIS v66 — editorial navigation
   Replaces the previous dark dropdown cards with a light,
   campaign-led index that belongs to the v65 storefront.
   ============================================================ */

@media (min-width: 769px) {
  .nav-dd-trigger {
    gap: 9px;
  }

  .dd-caret {
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 18px;
    overflow: hidden;
    border: 1px solid rgba(45, 74, 62, .15);
    border-radius: 50%;
    color: transparent;
    font-size: 0;
    transform: none !important;
    transition: border-color .3s, background .3s;
  }

  .dd-caret::before {
    content: '+';
    color: #496055;
    font-family: var(--dosis-body);
    font-size: 12px;
    font-weight: 300;
    line-height: 1;
    transition: transform .42s cubic-bezier(.16, 1, .3, 1), color .3s;
  }

  .nav-dd:hover .dd-caret,
  .nav-dd.open .dd-caret {
    border-color: rgba(61, 122, 90, .28);
    background: rgba(122, 191, 176, .1);
  }

  .nav-dd:hover .dd-caret::before,
  .nav-dd.open .dd-caret::before {
    color: var(--dosis-emerald);
    transform: rotate(45deg);
  }

  .nav-dd-menu.dd-editorial-menu {
    width: min(620px, calc(100vw - 48px));
    min-width: 0;
    padding: 0;
    gap: 0;
    overflow: hidden;
    border: 1px solid rgba(45, 74, 62, .13);
    border-radius: 24px;
    background:
      radial-gradient(circle at 4% 0%, rgba(122, 191, 176, .16), transparent 32%),
      radial-gradient(circle at 100% 100%, rgba(184, 160, 212, .14), transparent 34%),
      #FAF9F5;
    box-shadow: 0 38px 90px rgba(24, 37, 31, .18), 0 12px 30px rgba(70, 86, 78, .08);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transform: translateX(-50%) translateY(24px) scale(.975);
    transform-origin: 50% 0;
    transition: opacity .35s ease, transform .55s cubic-bezier(.16, 1, .3, 1), visibility .35s;
  }

  .nav-dd-menu.dd-editorial-menu::after {
    content: '';
    position: absolute;
    inset: 0 0 auto;
    height: 3px;
    background: linear-gradient(90deg, #7ABFB0 0%, #3D7A5A 34%, #B8A0D4 68%, #E8C8A0 100%);
    z-index: 3;
  }

  .nav-dd:hover .nav-dd-menu.dd-editorial-menu,
  .nav-dd.open .nav-dd-menu.dd-editorial-menu {
    transform: translateX(-50%) translateY(12px) scale(1);
  }

  .dd-menu-head {
    position: relative;
    padding: 27px 28px 24px;
    border-bottom: 1px solid rgba(45, 74, 62, .1);
  }

  .dd-menu-kicker {
    display: block;
    margin-bottom: 9px;
    color: #688477;
    font-family: var(--dosis-mono);
    font-size:12px;
    letter-spacing: .28em;
  }

  .dd-menu-head strong {
    display: block;
    color: var(--dosis-ink);
    font-family: var(--dosis-display);
    font-size: 35px;
    font-weight: 400;
    letter-spacing: -.018em;
    line-height: 1;
  }

  .dd-menu-head p {
    margin: 8px 0 0;
    color: #68776E;
    font-family: var(--dosis-body);
    font-size: 12px;
    font-weight: 300;
    letter-spacing: .015em;
  }

  .dd-menu-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dd-editorial-menu .dd-item {
    min-width: 0;
    min-height: 112px;
    display: grid;
    grid-template-columns: 26px minmax(0, 1fr);
    align-content: center;
    align-items: start;
    gap: 8px 13px;
    padding: 20px 24px;
    border-radius: 0;
    color: var(--dosis-ink);
    background: transparent;
    transform: none;
    transition: background .38s, box-shadow .38s;
  }

  .dd-editorial-menu .dd-item::after {
    display: none !important;
  }

  .dd-editorial-menu .dd-item::before {
    content: '\2197';
    right: 21px;
    top: 22px;
    color: #50665B;
    font-size: 13px;
    transform: translate(-4px, 4px);
    transition: opacity .3s, transform .42s cubic-bezier(.16, 1, .3, 1);
  }

  .dd-editorial-menu .dd-item:hover,
  .dd-editorial-menu .dd-item:focus-visible {
    background: rgba(255, 255, 255, .72);
    transform: none;
    outline: none;
    box-shadow: inset 0 0 0 1px rgba(45, 74, 62, .06);
  }

  .dd-editorial-menu .dd-item:hover::before,
  .dd-editorial-menu .dd-item:focus-visible::before {
    opacity: 1;
    transform: translate(0, 0);
  }

  .dd-index {
    grid-row: 1 / span 2;
    padding-top: 5px;
    color: #84968D;
    font-family: var(--dosis-mono);
    font-size:12px;
    letter-spacing: .16em;
    transition: color .3s;
  }

  .dd-editorial-menu .dd-text {
    min-width: 0;
    display: grid;
    gap: 6px;
  }

  .dd-editorial-menu .dd-name {
    color: var(--dosis-ink);
    background: none;
    font-family: var(--dosis-display);
    font-size: 27px;
    font-weight: 400;
    letter-spacing: .015em;
    line-height: 1;
    -webkit-background-clip: initial;
    background-clip: initial;
    -webkit-text-fill-color: currentColor;
  }

  .dd-editorial-menu .dd-sub {
    overflow: hidden;
    color: #73857C;
    font-family: var(--dosis-mono);
    font-size:12px;
    letter-spacing: .17em;
    line-height: 1.45;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .dd-dose {
    grid-column: 2;
    width: max-content;
    margin-top: 4px;
    padding: 5px 8px;
    border: 1px solid rgba(45, 74, 62, .11);
    border-radius: 999px;
    color: #5F7469;
    font-family: var(--dosis-mono);
    font-size:12px;
    letter-spacing: .16em;
  }

  .dd-product-grid .dd-item + .dd-item {
    border-left: 1px solid rgba(45, 74, 62, .1);
  }

  .dd-science-grid .dd-support {
    grid-column: 1 / -1;
    min-height: 98px;
    background: linear-gradient(120deg, rgba(122, 191, 176, .11), rgba(184, 160, 212, .08));
  }

  .dd-science-grid .dd-item:nth-child(n + 3) {
    border-top: 1px solid rgba(45, 74, 62, .1);
  }

  .dd-science-grid .dd-item:nth-child(2),
  .dd-science-grid .dd-item:nth-child(4) {
    border-left: 1px solid rgba(45, 74, 62, .1);
  }

  .dd-science-grid .dd-support .dd-name {
    background: linear-gradient(110deg, #2F6756, #526C7F 52%, #826395);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .dd-editorial-menu .dd-item.is-lucid:hover,
  .dd-editorial-menu .dd-item.is-lucid:focus-visible {
    background: linear-gradient(135deg, rgba(122, 191, 176, .15), rgba(255, 255, 255, .76));
  }

  .dd-editorial-menu .dd-item.is-glow:hover,
  .dd-editorial-menu .dd-item.is-glow:focus-visible {
    background: linear-gradient(135deg, rgba(184, 160, 212, .16), rgba(255, 255, 255, .76));
  }

  .dd-item.is-lucid:hover .dd-index,
  .dd-item.is-lucid:focus-visible .dd-index {
    color: var(--dosis-emerald);
  }

  .dd-item.is-glow:hover .dd-index,
  .dd-item.is-glow:focus-visible .dd-index {
    color: #826395;
  }

  .dd-menu-foot {
    min-height: 49px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 0 28px;
    border-top: 1px solid rgba(45, 74, 62, .1);
    background: rgba(237, 238, 231, .52);
  }

  .dd-menu-foot a {
    color: #53685D;
    font-family: var(--dosis-mono);
    font-size:12px;
    letter-spacing: .18em;
    text-decoration: none;
    transition: color .3s;
  }

  .dd-menu-foot a:first-child {
    color: var(--dosis-ink);
  }

  .dd-menu-foot a:hover,
  .dd-menu-foot a:focus-visible {
    color: var(--dosis-emerald);
    outline: none;
  }

  .nav-account .nav-dd-menu.dd-editorial-menu {
    left: auto;
    right: 0;
    width: min(430px, calc(100vw - 40px));
    transform: translateY(24px) scale(.975);
    transform-origin: 100% 0;
  }

  .nav-account:hover .nav-dd-menu.dd-editorial-menu,
  .nav-account.open .nav-dd-menu.dd-editorial-menu {
    transform: translateY(12px) scale(1);
  }

  .nav-account .account-dd-head {
    padding: 25px 25px 22px;
    border: 0;
    border-bottom: 1px solid rgba(45, 74, 62, .1);
    border-radius: 0;
    background: transparent;
  }

  .nav-account .account-dd-kicker {
    color: #688477;
  }

  .nav-account .account-dd-title {
    color: var(--dosis-ink);
    font-size: 31px;
  }

  .nav-account .account-dd-status {
    color: #5E7167;
    border-color: rgba(45, 74, 62, .12);
    background: rgba(255, 255, 255, .58);
  }

  .nav-account .account-dd-status.guest {
    color: #765E88;
    border-color: rgba(184, 160, 212, .22);
    background: rgba(184, 160, 212, .1);
  }

  .nav-account .account-dd-status.ready,
  .nav-account .account-dd-status.signed {
    color: #3D7059;
    border-color: rgba(122, 191, 176, .28);
    background: rgba(122, 191, 176, .12);
  }

  .nav-account .account-dd-list {
    gap: 0;
  }

  .nav-account .account-dd-list .dd-item,
  .nav-account .account-dd-menu > .dd-item {
    min-height: 72px;
    grid-template-columns: 14px minmax(0, 1fr);
    padding: 15px 24px;
    border-bottom: 1px solid rgba(45, 74, 62, .075);
  }

  .nav-account .account-dd-menu .dd-dot {
    width: 7px;
    height: 7px;
    align-self: center;
    border: 0;
    box-shadow: none;
  }

  .nav-account .account-dd-menu .dd-name {
    font-size: 22px;
  }

  .nav-account .account-dd-foot {
    min-height: 42px;
    border-color: rgba(45, 74, 62, .1);
    color: #6B7C73;
    background: rgba(237, 238, 231, .52);
  }

  .nav-account .account-auth-item {
    margin-top: 0;
    border-top: 0;
  }
}

html {
  scroll-padding-top: 104px;
  text-rendering: optimizeLegibility;
}

body {
  background: var(--dosis-paper);
  color: var(--dosis-ink);
  font-family: var(--dosis-body);
  font-weight: 300;
  line-height: 1.65;
}

body,
body a,
body button,
body input,
body textarea,
body select {
  cursor: auto !important;
}

.cursor,
.cursor-glow {
  display: none !important;
}

::selection {
  color: #fff;
  background: var(--dosis-emerald);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 16px;
  z-index: 20000;
  padding: 11px 16px;
  border-radius: 999px;
  background: var(--dosis-ink);
  color: #fff;
  font-family: var(--dosis-mono);
  font-size:12px;
  letter-spacing: .12em;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform .2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

:where(a, button, input, textarea, select, summary):focus-visible {
  outline: 2px solid var(--dosis-emerald);
  outline-offset: 4px;
}

:where(.btn-grad, .btn-ghost, .btn-glow, .btn-view, .lib-cta, .scihl-cta) {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  transition: transform .35s var(--dosis-ease), box-shadow .35s ease, border-color .35s ease, background .35s ease !important;
}

:where(.btn-grad, .btn-glow, .btn-view, .scihl-cta):hover {
  transform: translateY(-2px) !important;
}

.btn-ghost:hover {
  transform: translateY(-2px) !important;
  border-color: rgba(61, 122, 90, .34);
  background: rgba(255, 255, 255, .84);
  box-shadow: var(--dosis-shadow-sm);
}

.support-guide-cta {
  width: max-content;
  max-width: 100%;
  margin: 34px auto 0;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  border: 1px solid rgba(122, 191, 176, .34);
  border-radius: 999px;
  background: linear-gradient(110deg, rgba(122, 191, 176, .14), rgba(200, 160, 228, .12));
  color: #f3f0f6;
  font-size: 12px;
  line-height: 1.3;
  letter-spacing: .15em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.support-guide-cta:hover {
  transform: translateY(-2px);
  border-color: rgba(122, 191, 176, .7);
  background: linear-gradient(110deg, rgba(122, 191, 176, .24), rgba(200, 160, 228, .2));
}

@media (max-width: 560px) {
  .support-guide-cta {
    width: 100%;
    gap: 14px;
    text-align: center;
    font-size: 11px;
  }
}

/* Floating glass navigation on wider screens. */
@media (min-width: 769px) {
  nav.bar {
    top: 14px;
    left: 50%;
    right: auto;
    width: min(1240px, calc(100vw - 36px));
    height: 66px;
    padding: 0 clamp(18px, 2.3vw, 32px);
    transform: translateX(-50%);
    border: 1px solid rgba(255, 255, 255, .7);
    border-radius: 20px;
    background: rgba(250, 250, 246, .78);
    box-shadow: 0 14px 45px rgba(34, 49, 42, .08);
    backdrop-filter: blur(22px) saturate(1.15);
    -webkit-backdrop-filter: blur(22px) saturate(1.15);
  }

  nav.bar.scrolled {
    background: rgba(250, 250, 246, .92);
    border-color: rgba(45, 74, 62, .1);
    box-shadow: 0 18px 55px rgba(34, 49, 42, .11);
  }

  .nav-logo .logo-word {
    font-size: 23px;
    letter-spacing: 8px;
  }

  .nav-logo:hover .logo-word {
    letter-spacing: 9px;
  }

  .nav-logo .logo-mark {
    width: 30px;
    height: 30px;
  }

  .nav-links a,
  .nav-dd-trigger {
    font-size:12px;
    letter-spacing: 2.1px;
  }

  .nav-cart {
    margin-left: 2px;
  }

  body .bar .nav-cart {
    color: var(--dosis-ink);
    border-color: rgba(26, 42, 34, .16);
    background: rgba(255, 255, 255, .5);
  }

  body .bar .nav-cart:hover {
    color: #fff;
    border-color: var(--dosis-ink);
    background: var(--dosis-ink);
  }
}

/* Homepage hero — still recognizably DOSIS, now editorial and product-led. */
.hero {
  min-height: min(900px, 100svh);
  padding: clamp(116px, 13vh, 154px) 24px clamp(70px, 9vh, 104px);
  text-align: left;
  background: linear-gradient(145deg, #F8F6FA 0%, #EDF3EF 46%, #F4EEF5 78%, #FAFAF6 100%);
}

.hero-bgimg {
  opacity: .25;
  filter: contrast(.96) saturate(.9) brightness(1.03);
  transform: scale(1.03);
}

.hero::before {
  background:
    linear-gradient(90deg, rgba(250, 250, 246, .9) 0%, rgba(250, 250, 246, .55) 45%, rgba(250, 250, 246, .26) 100%),
    linear-gradient(180deg, rgba(245, 243, 238, .18) 0%, rgba(245, 243, 238, .42) 66%, rgba(250, 250, 246, .94) 100%);
}

.hero-inner {
  width: var(--dosis-shell);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(440px, 1.1fr);
  align-items: center;
  gap: clamp(38px, 6vw, 88px);
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 600px;
}

.hero-eyebrow {
  margin: 0 0 24px;
  font-size:12px;
  letter-spacing: .48em;
  color: var(--dosis-emerald);
}

.hero h1 {
  margin: 0;
  font-size: clamp(82px, 11vw, 152px);
  line-height: .78;
  letter-spacing: clamp(12px, 2.9vw, 34px);
  background-size: 140% 140%;
}

.hero-line {
  width: 76px;
  margin: 34px 0 26px;
}

.hero-sub {
  max-width: 500px;
  font-family: var(--dosis-display);
  font-size: clamp(24px, 2.5vw, 34px);
  font-weight: 300;
  line-height: 1.22;
  color: #3E5047;
}

.hero-cta {
  justify-content: flex-start;
  margin-top: 36px;
}

.hero-cta .btn-grad,
.hero-cta .btn-ghost {
  padding: 15px clamp(25px, 3vw, 38px);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid rgba(45, 74, 62, .12);
}

.hero-proof span {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  font-family: var(--dosis-mono);
  font-size:12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #66766D;
}

.hero-proof b {
  font-family: var(--dosis-display);
  font-size: 21px;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--dosis-ink);
}

.hero-visual {
  position: relative;
  z-index: 2;
  min-width: 0;
  padding: 18px 0 24px;
}

.hero-image-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border: 1px solid rgba(255, 255, 255, .78);
  border-radius: clamp(24px, 3vw, 40px);
  background: #EEE8DD;
  box-shadow: var(--dosis-shadow-lg);
  transform: rotate(1.2deg);
}

.hero-image-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, .48);
  border-radius: inherit;
  box-shadow: inset 0 0 80px rgba(45, 74, 62, .06);
  pointer-events: none;
}

.hero-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--dosis-ease);
}

.hero-visual:hover .hero-image-frame img {
  transform: scale(1.025);
}

.hero-formula {
  position: absolute;
  z-index: 3;
  min-width: 156px;
  padding: 14px 17px 13px;
  display: grid;
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, .75);
  border-radius: 17px;
  background: rgba(250, 250, 246, .82);
  box-shadow: 0 16px 45px rgba(35, 50, 43, .13);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.hero-formula span,
.hero-formula em {
  font-family: var(--dosis-mono);
  font-size:12px;
  font-style: normal;
  letter-spacing: .18em;
  color: #75847B;
}

.hero-formula strong {
  font-family: var(--dosis-display);
  font-size: 25px;
  font-weight: 500;
  letter-spacing: .18em;
  line-height: 1.1;
}

.hero-formula-lucid {
  left: -30px;
  bottom: 3px;
}

.hero-formula-lucid strong {
  color: var(--dosis-emerald);
}

.hero-formula-glow {
  top: 0;
  right: -22px;
}

.hero-formula-glow strong {
  color: #775A92;
}

.hero-scroll {
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
}

/* Rhythm and typography shared across the content system. */
.products,
.bundle,
.reviews,
.compare-s,
.dglance,
.library,
.cta {
  padding-top: var(--dosis-section);
  padding-bottom: var(--dosis-section);
}

.sec-label {
  margin-bottom: 18px;
  font-size:12px;
  letter-spacing: .42em;
  color: var(--dosis-emerald);
}

.sec-title {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(44px, 6vw, 72px) !important;
  font-weight: 400 !important;
  line-height: 1.02 !important;
  letter-spacing: .025em !important;
}

.sec-sub,
.lib-lede {
  max-width: 700px;
  margin-top: 22px;
  font-size: clamp(16px, 1.55vw, 19px) !important;
  line-height: 1.75;
  color: var(--dosis-muted) !important;
}

.trust {
  position: relative;
  z-index: 4;
  width: min(1120px, calc(100vw - 48px));
  margin: -24px auto 0;
  padding: 20px 28px;
  gap: 12px clamp(22px, 3.2vw, 42px);
  border: 1px solid rgba(255, 255, 255, .78);
  border-radius: 22px;
  background: rgba(250, 250, 246, .78);
  box-shadow: var(--dosis-shadow-sm);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.trust-text {
  font-size:12px;
  letter-spacing: .16em;
  color: #53645A;
}

.pgrid,
.bundle-card,
.review-grid,
.ctable,
.dg-grid,
.lib-grid,
.sci-feat {
  width: var(--dosis-shell);
  max-width: 100%;
}

.pcard,
.bundle-card,
.review,
.dg-card,
.lib-card,
.sci-fcard,
.card,
.method,
.supp,
.stack {
  border-color: var(--dosis-line) !important;
  box-shadow: 0 12px 45px rgba(35, 50, 43, .045);
}

.pcard {
  border-radius: 28px;
  background: var(--dosis-card);
}

.pcard:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 70px rgba(35, 50, 43, .1);
}

.pcard-visual {
  min-height: clamp(330px, 34vw, 430px);
}

.pcard-info {
  padding: 30px clamp(26px, 3vw, 40px) 38px;
}

.pcard-name {
  font-weight: 500;
}

.pcard-desc {
  max-width: 53ch;
  font-size: 15px;
  line-height: 1.75;
}

.bundle-card,
.dg-card,
.lib-card,
.review,
.sci-fcard {
  border-radius: 24px;
}

.imgband {
  width: min(1380px, calc(100vw - 32px));
  margin-left: auto;
  margin-right: auto;
  border-radius: clamp(24px, 3vw, 42px);
  box-shadow: var(--dosis-shadow-lg);
}

.imgband .ib-q {
  text-wrap: balance;
}

.cta h2,
.scihl-title {
  text-wrap: balance;
}

/* Refined interior-page hero surfaces. */
:where(.lhero, .phero, .ahero, .phl, .fhero, .legal-hero, .checkout-hero, .account-hero, .wc-hero) {
  min-height: min(680px, 74svh);
}

:where(.lhero, .phero, .ahero, .phl, .fhero, .legal-hero, .checkout-hero, .account-hero) :where(h1, h2) {
  text-wrap: balance;
}

.lhero .lh-bgimg,
.phero .phero-bgimg,
.ahero .ahero-bgimg,
.phl .phl-bgimg,
.fhero .fhero-bgimg {
  filter: saturate(.9) contrast(.97);
}

/* Footer keeps the warm-light identity with a clearer information grid. */
footer {
  padding-top: clamp(72px, 8vw, 108px);
  background:
    radial-gradient(circle at 12% 15%, rgba(122, 191, 176, .11), transparent 34%),
    radial-gradient(circle at 88% 82%, rgba(184, 160, 212, .12), transparent 36%),
    linear-gradient(180deg, #F3F0F5, #EAE8F0);
}

.f-inner,
.f-bottom,
.disc {
  max-width: 1120px;
}

.f-brand {
  font-size: 29px;
  letter-spacing: 11px;
}

.f-text {
  font-size: 14px;
  color: #54655B;
}

.f-col a {
  padding: 2px 0;
}

.f-col a:hover {
  transform: translateX(2px);
}

.f-bottom > span:last-of-type {
  color: transparent;
  background: linear-gradient(90deg, #7ABFB0, #B8A0D4);
  -webkit-background-clip: text;
  background-clip: text;
}

.f-credit {
  color: #728078;
  text-decoration: none;
  white-space: nowrap;
  transition: color .3s ease;
}

.f-credit strong {
  color: #52685D;
  font-weight: 500;
  letter-spacing: .14em;
  transition: color .3s ease;
}

.f-credit:hover,
.f-credit:focus-visible,
.f-credit:hover strong,
.f-credit:focus-visible strong {
  color: var(--dosis-emerald);
}

/* Keep the complete desktop footer index on one continuous row. */
@media (min-width: 769px) {
  footer .f-inner {
    width: min(1120px, calc(100vw - 48px));
    display: grid;
    grid-template-columns: minmax(190px, 1.7fr) repeat(4, minmax(105px, 1fr));
    align-items: start;
    gap: clamp(24px, 3vw, 48px);
  }

  footer .f-inner > .f-links {
    grid-column: 2 / -1;
    display: grid;
    grid-template-columns: repeat(4, minmax(105px, 1fr));
    gap: clamp(24px, 3vw, 48px);
  }

  footer .f-col {
    min-width: 0;
  }

  footer .f-col a {
    white-space: nowrap;
  }
}

.dosis-reveal-ready .reveal {
  transform: translateY(22px);
  transition-duration: .72s;
}

@media (max-width: 1080px) {
  .hero-inner {
    grid-template-columns: minmax(0, .85fr) minmax(390px, 1.15fr);
    gap: 34px;
  }

  .hero h1 {
    font-size: clamp(72px, 10.5vw, 112px);
  }

  .hero-formula-lucid {
    left: -12px;
  }

  .hero-formula-glow {
    right: -8px;
  }
}

@media (max-width: 768px) {
  :root {
    --dosis-shell: min(100% - 36px, 680px);
    --dosis-section: clamp(70px, 19vw, 100px);
  }

  html {
    scroll-padding-top: 82px;
  }

  nav.bar {
    height: 68px;
    padding-left: 18px;
    padding-right: 14px;
    border-bottom: 1px solid rgba(45, 74, 62, .08);
    background: rgba(250, 250, 246, .9);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }

  .hero {
    min-height: auto;
    padding: 112px 0 76px;
    text-align: center;
  }

  .hero::before {
    background: linear-gradient(180deg, rgba(250, 250, 246, .78), rgba(250, 250, 246, .4) 48%, rgba(250, 250, 246, .96));
  }

  .hero-inner {
    width: min(100% - 36px, 680px);
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .hero-copy {
    max-width: none;
  }

  .hero-eyebrow {
    margin-bottom: 20px;
    font-size:12px;
    letter-spacing: .38em;
  }

  .hero h1 {
    font-size: clamp(66px, 22vw, 108px);
    letter-spacing: clamp(9px, 5vw, 24px);
  }

  .hero-line {
    margin: 27px auto 22px;
  }

  .hero-sub {
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(23px, 7vw, 31px);
  }

  .hero-cta {
    justify-content: center;
    margin-top: 30px;
  }

  .hero-proof {
    justify-content: center;
    gap: 10px 18px;
    margin-top: 28px;
    padding-top: 20px;
  }

  .hero-visual {
    padding: 0 0 18px;
  }

  .hero-image-frame {
    aspect-ratio: 4 / 3;
    transform: none;
  }

  .hero-image-frame img {
    object-position: 52% center;
  }

  .hero-formula {
    min-width: 136px;
    padding: 11px 13px;
    text-align: left;
  }

  .hero-formula strong {
    font-size: 21px;
  }

  .hero-formula-lucid {
    left: 10px;
    bottom: -4px;
  }

  .hero-formula-glow {
    top: -18px;
    right: 10px;
  }

  .hero-scroll {
    display: none;
  }

  .trust {
    width: calc(100vw - 28px);
    margin-top: -18px;
    padding: 18px;
    justify-content: flex-start;
    gap: 12px 16px;
  }

  .trust-item {
    width: calc(50% - 8px);
  }

  .sec-title {
    font-size: clamp(40px, 12vw, 58px) !important;
  }

  .sec-sub,
  .lib-lede {
    font-size: 16px !important;
    line-height: 1.7;
  }

  .pcard-visual {
    min-height: 330px;
  }

  .pcard-info {
    padding: 26px 23px 30px;
  }

  .imgband {
    width: calc(100vw - 24px);
    margin-top: 62px;
    margin-bottom: 62px;
  }

  :where(.lhero, .phero, .ahero, .phl, .fhero, .legal-hero, .checkout-hero, .account-hero, .wc-hero) {
    min-height: auto;
  }
}

@media (max-width: 480px) {
  :root {
    --dosis-shell: calc(100vw - 28px);
  }

  .hero-inner {
    width: calc(100vw - 28px);
  }

  .hero-cta {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .hero-cta a {
    width: 100%;
  }

  .hero-proof span {
    width: calc(50% - 9px);
    justify-content: center;
  }

  .hero-proof span:last-child {
    width: 100%;
  }

  .hero-image-frame {
    aspect-ratio: 1 / 1;
  }

  .hero-formula {
    min-width: 124px;
  }

  .hero-formula-glow {
    right: 6px;
  }

  .hero-formula-lucid {
    left: 6px;
  }

  .trust-item {
    width: 100%;
  }

  .pcard-row {
    align-items: baseline;
  }

  .pcard-name {
    font-size: 28px;
    letter-spacing: 6px;
  }

  .pcard-price {
    font-size: 25px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-image-frame,
  .hero-image-frame img,
  .hero-formula,
  .reveal,
  :where(.pcard, .dg-card, .lib-card, .review, .btn-grad, .btn-ghost, .btn-glow) {
    animation: none !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ============================================================
   DOSIS v65 — campaign evolution
   A visibly bolder homepage: full-bleed campaign hero, editorial
   product spreads, a wide protocol-set feature, and a ritual story.
   ============================================================ */

.hero.hero-campaign {
  min-height: 100svh;
  display: block;
  padding: 0;
  overflow: hidden;
  text-align: left;
  isolation: isolate;
  background: #E8E1D6;
}

.hero-campaign::before {
  display: none;
}

.hero.hero-campaign > .hero-media {
  position: absolute !important;
  inset: 0;
  z-index: 0 !important;
}

.hero.hero-campaign > .hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% 52%;
  filter: saturate(.88) contrast(.97) brightness(1.02);
  transform: scale(1.015);
}

.hero.hero-campaign > .hero-wash {
  position: absolute !important;
  inset: 0;
  z-index: 1 !important;
  background:
    linear-gradient(90deg, rgba(250, 249, 244, .88) 0%, rgba(250, 249, 244, .68) 24%, rgba(250, 249, 244, 0) 39%),
    linear-gradient(180deg, rgba(250, 249, 244, .14), transparent 45%, rgba(19, 30, 25, .14));
  pointer-events: none;
}

.hero.hero-campaign > .hero-brand-ghost {
  position: absolute !important;
  z-index: 2 !important;
  top: clamp(86px, 13vh, 138px);
  left: 2.8vw;
  white-space: nowrap;
  font-family: var(--dosis-display);
  font-size: clamp(110px, 18vw, 270px);
  font-weight: 500;
  line-height: .78;
  letter-spacing: .22em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(45, 74, 62, .13);
  opacity: .82;
  pointer-events: none;
}

.hero.hero-campaign > .hero-campaign-inner {
  position: relative;
  z-index: 3 !important;
  width: var(--dosis-shell);
  min-height: 100svh;
  margin: 0 auto;
  padding: clamp(150px, 19vh, 210px) 0 110px;
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  align-items: center;
}

.hero-campaign .hero-copy {
  max-width: 585px;
  padding: 26px 0 76px;
}

.hero-campaign .hero-eyebrow {
  margin-bottom: 30px;
  color: var(--dosis-emerald);
  font-size:12px;
  letter-spacing: .5em;
}

.hero-campaign h1 {
  margin: 0;
  font-family: var(--dosis-display);
  font-size: clamp(66px, 7.1vw, 108px);
  font-weight: 400;
  line-height: .86;
  letter-spacing: -.025em;
  color: var(--dosis-ink);
  background: none;
  -webkit-text-fill-color: currentColor;
  opacity: 0;
  animation: fadeUp 1s .35s forwards;
}

.hero-campaign h1 em {
  display: block;
  padding-left: .58em;
  font-weight: 300;
  background: linear-gradient(110deg, #3D7A5A 0%, #526C7F 42%, #826395 74%, #A97D68 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-campaign .hero-sub {
  max-width: 470px;
  margin-top: 32px;
  font-family: var(--dosis-body);
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.72;
  color: #485950;
}

.hero-campaign .hero-cta {
  justify-content: flex-start;
  margin-top: 36px;
}

.hero-campaign-rail {
  position: absolute;
  right: 0;
  bottom: 88px;
  display: grid;
  grid-template-columns: repeat(2, minmax(170px, 1fr));
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .56);
  border-radius: 22px;
  background: rgba(17, 26, 23, .68);
  box-shadow: 0 24px 70px rgba(17, 26, 23, .22);
  backdrop-filter: blur(18px) saturate(1.08);
  -webkit-backdrop-filter: blur(18px) saturate(1.08);
}

.hero-campaign-rail a {
  min-width: 190px;
  padding: 18px 22px 17px;
  display: grid;
  gap: 1px;
  color: #F6F2EA;
  text-decoration: none;
  transition: background .35s ease;
}

.hero-campaign-rail a + a {
  border-left: 1px solid rgba(255, 255, 255, .12);
}

.hero-campaign-rail a:hover {
  background: rgba(255, 255, 255, .08);
}

.hero-campaign-rail span,
.hero-campaign-rail em {
  font-family: var(--dosis-mono);
  font-size:12px;
  font-style: normal;
  letter-spacing: .18em;
  color: rgba(246, 242, 234, .6);
}

.hero-campaign-rail strong {
  font-family: var(--dosis-display);
  font-size: 25px;
  font-weight: 500;
  letter-spacing: .19em;
}

.hero-campaign .hero-proof {
  position: absolute;
  left: 0;
  bottom: 38px;
  margin: 0;
  padding: 18px 0 0;
  border-top-color: rgba(45, 74, 62, .18);
}

.hero-campaign .hero-proof span {
  color: rgba(45, 60, 52, .7);
}

.hero-campaign + .trust {
  margin-top: 0;
  width: 100%;
  max-width: none;
  padding: 19px clamp(24px, 5vw, 78px);
  border-width: 0 0 1px;
  border-radius: 0;
  justify-content: space-between;
  background: #14221C;
  box-shadow: none;
}

.hero-campaign + .trust .trust-text {
  color: rgba(241, 238, 231, .72);
}

/* The collection becomes two full editorial product spreads. */
.products {
  padding-top: clamp(110px, 11vw, 160px);
  background:
    radial-gradient(circle at 8% 15%, rgba(122, 191, 176, .09), transparent 28%),
    radial-gradient(circle at 92% 82%, rgba(184, 160, 212, .1), transparent 30%),
    #F8F7F2;
}

.products > .sec-sub {
  margin-bottom: 70px;
}

/* Keep the Products page canvas full-width. The page body previously shared
   the .products section class, which applied section padding to the whole site. */
body.products-page {
  padding: 0;
}

body.products-page .phl {
  width: 100%;
  max-width: none;
  margin: 0;
  padding-left: clamp(24px, 5vw, 80px);
  padding-right: clamp(24px, 5vw, 80px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

body.products-page .phl > :not(.phl-bgimg) {
  width: min(720px, 100%);
}

/* The daily-routine cards use one visual language across both rows. */
#routine .grid3,
#routine .routine-support {
  align-items: stretch;
}

#routine .routine-support {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 20px;
}

#routine .grid3 > .card,
#routine .routine-support > .card {
  min-height: 232px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border-radius: 18px;
}

#routine .grid3 > .card p,
#routine .routine-support > .card p {
  margin-top: 0;
}

@media (max-width: 760px) {
  #routine .routine-support {
    grid-template-columns: 1fr;
  }
}

/* Compact sample-cycle dashboard: the full eight-week story in one view. */
#plan {
  padding: clamp(66px, 7vw, 88px) clamp(24px, 6vw, 90px);
}

#plan .wrap {
  max-width: 1280px;
}

#plan .cycle-head {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(380px, 1.18fr);
  gap: clamp(48px, 8vw, 120px);
  align-items: end;
  margin-bottom: 34px;
}

#plan .cycle-heading .sec-label,
#plan .cycle-heading .sec-title,
#plan .cycle-summary .sec-sub {
  text-align: left;
}

#plan .cycle-heading .sec-label {
  margin-bottom: 13px;
}

#plan .cycle-heading .sec-title {
  margin: 0;
  font-size: clamp(43px, 5vw, 66px) !important;
  line-height: .98 !important;
}

#plan .cycle-summary .sec-sub {
  max-width: 650px !important;
  margin: 0 0 20px;
  font-size: clamp(15px, 1.3vw, 17px) !important;
  line-height: 1.65;
}

#plan .cal-legend {
  margin: 0;
  gap: 14px 20px;
}

#plan .cycle-dashboard {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 24px;
  background: rgba(9, 17, 22, .24);
  box-shadow: 0 26px 70px rgba(5, 10, 16, .13);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

#plan .cycle-phase {
  padding: 22px 24px 24px;
}

#plan .cycle-phase-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
  font-family: var(--dosis-mono);
  font-size:12px;
  letter-spacing: .16em;
}

#plan .cycle-phase-head span {
  color: var(--acc-light);
}

#plan .cycle-phase-head strong {
  color: rgba(255, 255, 255, .52);
  font-weight: 400;
}

#plan .cycle-cal {
  margin: 0;
  gap: 6px;
}

#plan .cycle-cal .cal-day {
  min-height: 42px;
  aspect-ratio: auto;
  flex-direction: row;
  justify-content: flex-start;
  gap: 8px;
  padding: 0 12px;
  border-radius: 8px;
}

#plan .cycle-cal .cal-day .cd-n,
#plan .cycle-cal .cal-day .cd-l {
  font-size:12px;
}

#plan .cycle-reset {
  padding: 20px 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, .1);
  background: linear-gradient(90deg, rgba(122, 191, 176, .07), rgba(184, 160, 212, .08));
}

#plan .cycle-reset-copy {
  display: grid;
  grid-template-columns: auto auto minmax(260px, 1fr);
  gap: 12px 20px;
  align-items: center;
}

#plan .cycle-reset-copy span,
#plan .cycle-reset-copy strong,
#plan .cycle-reset-weeks span {
  font-family: var(--dosis-mono);
  font-size:12px;
  letter-spacing: .15em;
}

#plan .cycle-reset-copy span {
  color: var(--acc-light);
}

#plan .cycle-reset-copy strong {
  color: #E9E3EE;
  font-weight: 500;
}

#plan .cycle-reset-copy p {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: #8F9D95;
}

#plan .cycle-reset-weeks {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 8px;
}

#plan .cycle-reset-weeks span {
  padding: 10px 13px;
  border: 1px dashed rgba(255, 255, 255, .2);
  border-radius: 9px;
  color: rgba(255, 255, 255, .58);
  white-space: nowrap;
}

@media (max-width: 900px) {
  #plan .cycle-head {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  #plan .cycle-reset,
  #plan .cycle-reset-copy {
    grid-template-columns: 1fr;
  }

  #plan .cycle-reset-weeks {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #plan .cycle-reset-weeks span {
    text-align: center;
    white-space: normal;
  }
}

@media (max-width: 620px) {
  #plan {
    padding-left: 18px;
    padding-right: 18px;
  }

  #plan .cycle-calendar-scroll {
    overflow-x: auto;
    padding-bottom: 5px;
  }

  #plan .cycle-cal {
    min-width: 680px;
  }

  #plan .cycle-phase,
  #plan .cycle-reset {
    padding-left: 18px;
    padding-right: 18px;
  }

  #plan .cycle-phase-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }
}

/* Restore the missing visual header on the LUCID Science page. */
.science-hero-lucid {
  isolation: isolate;
  background: #102B28;
}

.science-hero-lucid .science-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center 52%;
  filter: saturate(.88) contrast(1.03);
}

.science-hero-lucid::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 48%, rgba(23, 55, 50, .18), rgba(8, 23, 22, .5) 68%),
    linear-gradient(180deg, rgba(7, 22, 21, .4), rgba(8, 20, 22, .66));
}

.science-hero-lucid > .wrap {
  position: relative;
  z-index: 3;
}

.science-hero-lucid .hbloom {
  z-index: 2;
  opacity: .34;
}

.science-hero-lucid .backlink {
  color: rgba(232, 242, 237, .7);
}

.science-hero-lucid .sec-label {
  color: #8FD0BE;
}

.science-hero-lucid .sec-title {
  background: linear-gradient(130deg, #F0F4EF 0%, #D9EDE6 35%, #DDD2EC 72%, #F0DDC6 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

.science-hero-lucid .sec-sub {
  color: rgba(229, 237, 232, .78) !important;
}

@media (max-width: 700px) {
  .science-hero-lucid .science-hero-bg {
    object-position: 54% center;
  }

  .science-hero-lucid::after {
    background: rgba(7, 22, 21, .65);
  }
}

/* Stable scientific pathways: equal nodes, fixed arrows, no orphaned receptor. */
#science .cascade {
  width: 100%;
  max-width: 1040px;
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 6px;
}

#science .cascade .casc-node {
  min-width: 0;
  min-height: 116px;
  flex: 1 1 0;
  padding: 17px 9px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#science .cascade .casc-arrow {
  min-width: 14px;
  flex: 0 0 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#science .cascade .casc-k,
#science .cascade .casc-d {
  overflow-wrap: anywhere;
}

#science .stats {
  align-items: stretch;
}

#science .stats > .stat {
  min-height: 164px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Sitewide consistency guard for sibling card layouts. */
:where(.grid2, .grid3, .methods, .stacks, .supps, .cross) {
  align-items: stretch;
}

:where(.grid2, .grid3, .methods, .stacks, .supps, .cross) > :where(.card, .method, .stack, .supp, .cross-card) {
  height: 100%;
}

@media (max-width: 760px) {
  #science .cascade {
    width: min(100%, 300px);
    flex-direction: column;
    align-items: center;
    gap: 7px;
  }

  #science .cascade .casc-node {
    width: 100%;
    min-height: 104px;
    flex: none;
  }

  #science .cascade .casc-arrow {
    min-width: 0;
    min-height: 18px;
    flex: 0 0 18px;
    transform: rotate(90deg);
  }
}

/* Shared calculator: contained, functional and responsive on every page. */
.calc {
  width: min(900px, 100%);
  margin: 38px auto 0;
  padding: clamp(25px, 3vw, 36px);
  overflow: hidden;
  border: 1px solid rgba(200, 190, 210, .46);
  border-radius: 24px;
  background:
    radial-gradient(circle at 8% 0%, rgba(var(--acc-rgb), .09), transparent 30%),
    rgba(255, 255, 255, .7);
  box-shadow: 0 24px 65px rgba(48, 66, 58, .09);
}

.calc .calc-head {
  margin-bottom: 8px;
  font-size:12px;
}

.calc .calc-sub {
  max-width: 650px;
  margin-bottom: 22px;
  font-size: 14px;
  line-height: 1.6;
}

.calc .calc-readout {
  min-height: 112px;
  margin-bottom: 29px;
  padding: 18px 20px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  border: 1px solid rgba(var(--acc-rgb), .13);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(var(--acc-rgb), .07), rgba(255, 255, 255, .55));
}

.calc .calc-dose {
  font-size: clamp(52px, 7vw, 68px);
}

.calc .calc-tierbox {
  min-width: 190px;
}

.calc .calc-tier {
  font-size: 24px;
}

.calc .calc-bar {
  height: 12px;
  margin-top: 7px;
}

.calc .calc-marker {
  top: -5px;
  width: 22px;
  height: 22px;
}

.calc .calc-scale {
  margin-top: 10px;
}

.calc .calc-controls {
  margin-top: 24px;
  padding: 14px 16px;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 48px 102px;
  gap: 14px;
  border: 1px solid rgba(200, 190, 210, .3);
  border-radius: 17px;
  background: rgba(248, 248, 244, .7);
}

.calc .calc-btn {
  width: 48px;
  height: 48px;
  border-width: 1px;
  background: #fff;
  cursor: pointer !important;
}

.calc .calc-btn:focus-visible,
.calc .calc-slider:focus-visible {
  outline: 3px solid rgba(var(--acc-rgb), .3);
  outline-offset: 3px;
}

.calc .calc-btn:disabled {
  opacity: .32;
  transform: none;
  cursor: not-allowed !important;
}

.calc .calc-slider {
  --calc-progress: 0%;
  width: 100%;
  min-width: 0;
  height: 6px;
  cursor: pointer !important;
  background: linear-gradient(90deg, var(--acc) 0 var(--calc-progress), rgba(120, 140, 130, .22) var(--calc-progress) 100%);
}

.calc .calc-slider::-webkit-slider-thumb {
  width: 24px;
  height: 24px;
  cursor: grab !important;
}

.calc .calc-slider:active::-webkit-slider-thumb {
  cursor: grabbing !important;
  transform: scale(1.08);
}

.calc .calc-slider::-moz-range-thumb {
  width: 24px;
  height: 24px;
  cursor: grab !important;
}

.calc .calc-dropsval {
  min-width: 0;
  padding-left: 4px;
  text-align: center;
  white-space: nowrap;
}

.calc .calc-note {
  margin-top: 20px;
  padding-top: 17px;
  font-size: 13px;
  line-height: 1.65;
}

@media (max-width: 640px) {
  .calc {
    width: 100%;
    padding: 22px 18px;
    border-radius: 20px;
  }

  .calc .calc-readout {
    min-height: 0;
    padding: 16px;
  }

  .calc .calc-tierbox {
    min-width: 0;
  }

  .calc .calc-controls {
    grid-template-columns: 48px minmax(0, 1fr) 48px;
    grid-template-areas:
      "minus slider plus"
      "value value value";
    padding: 13px;
  }

  .calc .calc-btn:first-of-type {
    grid-area: minus;
  }

  .calc .calc-slider {
    grid-area: slider;
  }

  .calc .calc-btn:last-of-type {
    grid-area: plus;
  }

  .calc .calc-dropsval {
    grid-area: value;
    padding: 6px 0 0;
    border-top: 1px solid rgba(200, 190, 210, .25);
  }
}

@media (max-width: 430px) {
  .calc .calc-readout {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .calc .calc-tierbox {
    text-align: left;
  }
}

.pgrid {
  max-width: 1180px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}

.pcard {
  min-height: 565px;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: stretch;
  overflow: hidden;
  isolation: isolate;
  border-radius: 32px;
  box-shadow: 0 28px 80px rgba(35, 50, 43, .09);
}

.pcard::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.pcard > .pcard-visual,
.pcard > .pcard-info {
  position: relative;
  z-index: 1;
}

.pcard > .pcard-glow,
.pcard > .pcard-tag {
  position: absolute;
}

.pcard:hover {
  transform: translateY(-3px);
  box-shadow: 0 38px 100px rgba(35, 50, 43, .14);
}

.pcard.lucid {
  background:
    radial-gradient(ellipse at 18% 48%, rgba(122, 191, 176, .18), transparent 46%),
    radial-gradient(ellipse at 82% 18%, rgba(255, 255, 255, .5), transparent 40%),
    linear-gradient(108deg, #F2F8F5 0%, #EEF6F2 32%, #EAF3EF 52%, #EDF7F3 74%, #E7F1ED 100%);
}

.pcard.lucid::after {
  background: radial-gradient(ellipse 38% 110% at 50% 50%, rgba(255, 255, 255, .42), transparent 76%);
}

.pcard.glow-card {
  grid-template-columns: .92fr 1.08fr;
  background:
    radial-gradient(ellipse at 82% 44%, rgba(184, 160, 212, .3), transparent 48%),
    radial-gradient(ellipse at 12% 84%, rgba(122, 191, 176, .16), transparent 42%),
    linear-gradient(108deg, #121C19 0%, #172328 30%, #211E2D 54%, #30243B 78%, #392A43 100%);
  border-color: rgba(255, 255, 255, .1) !important;
}

.pcard.glow-card::after {
  background: radial-gradient(ellipse 40% 110% at 50% 50%, rgba(125, 111, 151, .2), transparent 76%);
}

.pcard.glow-card .pcard-visual {
  order: 2;
}

.pcard-visual {
  min-height: 565px;
  height: 100%;
  padding: 40px;
}

.pcard.lucid .pcard-visual {
  background: transparent;
}

.pcard.glow-card .pcard-visual {
  background: transparent;
}

.pcard-visual::before {
  width: 78%;
  height: 70%;
}

.pcard .vw .product-shot {
  width: min(490px, 92%);
  height: 490px;
  filter: drop-shadow(0 34px 36px rgba(20, 28, 24, .24));
}

.pcard-info {
  padding: clamp(44px, 5vw, 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pcard-row {
  align-items: baseline;
  margin-bottom: 20px;
}

.pcard-name {
  font-size: clamp(42px, 4.2vw, 60px);
  letter-spacing: .2em;
}

.pcard-price {
  font-size: 34px;
}

.pcard-compound {
  margin-bottom: 22px;
  line-height: 1.65;
}

.pcard-desc {
  font-size: 16px;
  line-height: 1.78;
  margin-bottom: 28px;
}

.pcard-specs {
  padding: 16px 0;
  border-top: 1px solid rgba(45, 74, 62, .12);
  border-bottom: 1px solid rgba(45, 74, 62, .12);
  margin-bottom: 28px;
}

.pcard.glow-card .pcard-name,
.pcard.glow-card .pcard-price {
  color: #F4EFF8;
}

.pcard.glow-card .pcard-compound {
  color: #C7B5D7;
}

.pcard.glow-card .pcard-desc,
.pcard.glow-card .pcard-explore {
  color: rgba(239, 234, 242, .72);
}

.pcard.glow-card .pcard-specs {
  border-color: rgba(255, 255, 255, .12);
}

.pcard.glow-card .pspec {
  background: rgba(255, 255, 255, .07);
}

.pcard.glow-card .pspec-label {
  color: rgba(239, 234, 242, .55);
}

.pcard.glow-card .pspec-val {
  color: #F4EFF8;
}

.pcard.glow-card .pcard-tag {
  color: #E1C9F0;
  border-color: rgba(255, 255, 255, .15);
  background: rgba(17, 23, 25, .52);
}

.pcard.glow-card .btn-view {
  background: linear-gradient(135deg, #8B6CA2, #5D7891, #4C8C72);
}

/* Protocol set becomes a campaign panel instead of another card. */
.bundle {
  width: 100%;
  max-width: none;
  padding: 26px 24px var(--dosis-section);
}

.bundle-card {
  width: var(--dosis-shell);
  max-width: 1180px;
  min-height: 560px;
  margin: 0 auto;
  padding: 28px clamp(32px, 5vw, 70px) 28px 28px;
  display: grid;
  grid-template-columns: minmax(0, 1.24fr) minmax(330px, .76fr);
  grid-template-rows: auto auto auto auto auto;
  column-gap: clamp(38px, 5vw, 72px);
  align-content: center;
  text-align: left;
  border-radius: 32px;
  background: linear-gradient(145deg, #ECE5D9, #F6F1E8);
  box-shadow: 0 32px 90px rgba(35, 50, 43, .11);
}

.bundle-shot {
  grid-column: 1;
  grid-row: 1 / 6;
  width: 100%;
  height: 100%;
  min-height: 504px;
  margin: 0;
  object-fit: cover;
  border-radius: 23px;
  box-shadow: none;
}

.bundle-badge,
.bundle-title,
.bundle-desc,
.bundle-pricing,
.bundle-card > .btn-grad {
  grid-column: 2;
}

.bundle-badge {
  justify-self: start;
  margin: 0 0 18px;
}

.bundle-title {
  font-size: clamp(38px, 4.2vw, 56px);
  line-height: .95;
  letter-spacing: .1em;
}

.bundle-desc {
  margin-top: 16px;
  font-size: 16px;
}

.bundle-pricing {
  justify-content: flex-start;
  margin: 22px 0;
}

.bundle-card > .btn-grad {
  justify-self: start;
}

/* A new consumer-facing editorial story replaces the internal ops cards. */
.story {
  padding: var(--dosis-section) 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(122, 191, 176, .13), transparent 28%),
    radial-gradient(circle at 88% 84%, rgba(184, 160, 212, .13), transparent 30%),
    #111C18;
  color: #F3EFE7;
}

.story-shell {
  width: var(--dosis-shell);
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  grid-template-rows: auto auto;
  gap: 28px clamp(38px, 6vw, 82px);
  align-items: center;
}

.story-photo {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 30px;
  background: rgba(255, 255, 255, .04);
}

.story-photo-main {
  grid-row: 1 / 3;
  height: min(720px, 72vw);
}

.story-photo-detail {
  height: 230px;
}

.story-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.78) contrast(1.02);
  transition: transform 1s var(--dosis-ease);
}

.story-photo:hover img {
  transform: scale(1.025);
}

.story-photo figcaption {
  position: absolute;
  left: 18px;
  bottom: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(17, 28, 24, .68);
  font-family: var(--dosis-mono);
  font-size:12px;
  letter-spacing: .18em;
  color: rgba(243, 239, 231, .72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.story-copy {
  padding-top: 12px;
}

.story-kicker {
  margin-bottom: 20px;
  font-family: var(--dosis-mono);
  font-size:12px;
  letter-spacing: .45em;
  color: #8CC8B7;
}

.story-copy h2 {
  margin: 0;
  font-family: var(--dosis-display);
  font-size: clamp(48px, 5.4vw, 72px);
  font-weight: 300;
  line-height: .98;
  letter-spacing: .015em;
}

.story-copy h2 em {
  font-weight: 300;
  color: #CDB8DE;
}

.story-copy p {
  max-width: 510px;
  margin-top: 26px;
  font-size: 16px;
  line-height: 1.78;
  color: rgba(243, 239, 231, .68);
}

.story-data {
  margin: 30px 0;
  padding: 20px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, .12);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.story-data span {
  display: grid;
  gap: 3px;
  font-family: var(--dosis-mono);
  font-size:12px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(243, 239, 231, .5);
}

.story-data b {
  font-family: var(--dosis-display);
  font-size: 23px;
  font-weight: 400;
  letter-spacing: .04em;
  color: #F3EFE7;
  text-transform: none;
}

.story-link {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: #F3EFE7;
  font-family: var(--dosis-mono);
  font-size:12px;
  letter-spacing: .22em;
  text-decoration: none;
}

.story-link span {
  transition: transform .35s var(--dosis-ease);
}

.story-link:hover span {
  transform: translateX(6px);
}

@media (max-width: 900px) {
  .hero-wash {
    background:
      linear-gradient(90deg, rgba(250, 249, 244, .96), rgba(250, 249, 244, .76) 58%, rgba(250, 249, 244, .22)),
      linear-gradient(180deg, transparent 52%, rgba(19, 30, 25, .24));
  }

  .hero-campaign-inner {
    grid-template-columns: 1fr;
  }

  .hero-campaign .hero-copy {
    max-width: 540px;
  }

  .hero-campaign-rail {
    right: 0;
  }

  .pcard,
  .pcard.glow-card {
    grid-template-columns: 1fr 1fr;
  }

  .bundle-card {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .bundle-shot,
  .bundle-badge,
  .bundle-title,
  .bundle-desc,
  .bundle-pricing,
  .bundle-card > .btn-grad {
    grid-column: 1;
  }

  .bundle-shot {
    grid-row: auto;
    height: 430px;
    min-height: 0;
    margin-bottom: 28px;
  }

  .story-shell {
    grid-template-columns: 1fr;
  }

  .story-photo-main {
    grid-row: auto;
    height: 620px;
  }
}

@media (max-width: 768px) {
  .hero.hero-campaign {
    min-height: 94svh !important;
    padding: 0 !important;
  }

  .hero-media img {
    object-position: 62% center;
  }

  .hero-wash {
    background:
      linear-gradient(180deg, rgba(250, 249, 244, .84) 0%, rgba(250, 249, 244, .7) 48%, rgba(250, 249, 244, .96) 82%),
      linear-gradient(90deg, rgba(250, 249, 244, .7), transparent);
  }

  .hero-brand-ghost {
    top: 106px;
    left: 16px;
    font-size: 30vw;
    letter-spacing: .12em;
  }

  .hero-campaign-inner {
    min-height: 94svh;
    padding: 166px 0 154px;
    align-items: start;
  }

  .hero-campaign .hero-copy {
    max-width: 510px;
    padding: 0;
  }

  .hero-campaign h1 {
    font-size: clamp(47px, 13.8vw, 70px) !important;
    line-height: .86 !important;
    letter-spacing: -.025em !important;
    overflow-wrap: normal;
    word-break: normal;
  }

  .hero-campaign h1 em {
    padding-left: .3em;
  }

  .hero-campaign .hero-sub {
    max-width: 440px;
    font-size: 15.5px;
  }

  .hero-campaign-rail {
    left: 0;
    right: 0;
    bottom: 74px;
    grid-template-columns: 1fr 1fr;
  }

  .hero-campaign-rail a {
    min-width: 0;
    padding: 15px;
  }

  .hero-campaign .hero-proof {
    bottom: 22px;
    width: 100%;
    justify-content: space-between;
    padding-top: 13px;
  }

  .hero-campaign .hero-proof span {
    width: auto;
  }

  .hero-campaign + .trust {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .pcard,
  .pcard.glow-card {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .pcard.glow-card .pcard-visual {
    order: 0;
  }

  .pcard-visual {
    min-height: 390px;
  }

  .pcard .vw .product-shot {
    height: 360px;
  }

  .pcard-info {
    padding: 38px 27px 42px;
  }

  .pcard-name {
    font-size: 40px;
  }

  .story-photo-main {
    height: 520px;
  }

  .story-copy h2 {
    font-size: clamp(45px, 13vw, 64px);
  }
}

@media (max-width: 480px) {
  .hero-campaign .hero-eyebrow {
    letter-spacing: .34em;
  }

  .hero-campaign .hero-cta {
    display: grid;
  }

  .hero-campaign .hero-proof span {
    justify-content: flex-start;
  }

  .hero-campaign .hero-proof span b {
    font-size: 17px;
  }

  .hero-campaign .hero-proof span {
    font-size:12px;
  }

  .hero-campaign-rail strong {
    font-size: 20px;
  }

  .hero-campaign-rail span,
  .hero-campaign-rail em {
    font-size:12px;
  }

  .hero-campaign + .trust {
    grid-template-columns: 1fr;
  }

  .bundle-shot {
    height: 330px;
  }

  .story {
    padding-left: 14px;
    padding-right: 14px;
  }

  .story-photo-main {
    height: 430px;
  }

  .story-data {
    gap: 12px;
  }

  .story-data b {
    font-size: 19px;
  }
}


/* ============================================================
   DOSIS v75 — approved product photography integration
   Uses the current label lockups and the warm-spectrum campaign
   background across collection cards and product-detail heroes.
   ============================================================ */
.pcard .pcard-visual {
  padding: 0 !important;
  background: #eee9df !important;
}

.pcard .pcard-visual::before {
  display: none !important;
}

.pcard .vw {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.pcard:hover .vw {
  transform: scale(1.018) !important;
}

.pcard .vw .product-shot.product-shot-editorial {
  width: 100% !important;
  max-width: none !important;
  height: 100% !important;
  min-height: 565px;
  object-fit: cover !important;
  object-position: center 52% !important;
  filter: none !important;
}

.phero .phero-bgimg {
  opacity: .72 !important;
  filter: saturate(.78) contrast(.96) brightness(1.03) !important;
}

body.lucid .phero .phero-bgimg,
body.glow .phero .phero-bgimg {
  opacity: .72 !important;
}

.phero::after {
  background:
    linear-gradient(90deg, rgba(250,249,244,.92) 0%, rgba(250,249,244,.78) 44%, rgba(250,249,244,.3) 70%, rgba(250,249,244,.12) 100%),
    linear-gradient(180deg, rgba(250,249,244,.2), rgba(250,249,244,.58)) !important;
}

.phero-visual .vial {
  width: min(500px, 40vw);
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 30px;
  background: #efe9df;
  box-shadow: 0 34px 84px rgba(34,43,37,.16);
}

.phero-visual .vial::before {
  display: none !important;
}

.phero-visual .vial .product-shot.product-shot-editorial {
  width: 100% !important;
  max-width: none !important;
  height: 100% !important;
  min-height: 0 !important;
  object-fit: cover !important;
  object-position: center 53% !important;
  filter: none !important;
}

.phero-visual:hover .vial {
  transform: translateY(-4px) scale(1.012) !important;
}

body.products-page .phl .phl-bgimg {
  opacity: .62 !important;
  object-position: center 58% !important;
  filter: saturate(.82) contrast(.96) brightness(1.02) !important;
}

body.products-page .phl::after {
  background: linear-gradient(180deg, rgba(245,243,238,.32), rgba(245,243,238,.66) 58%, rgba(245,243,238,.9)) !important;
}

.story-photo-main img {
  object-position: 60% center;
}

.story-photo-detail img {
  object-position: center 52%;
}

@media (max-width: 900px) {
  .phero-visual .vial {
    width: min(460px, 76vw);
  }
}

@media (max-width: 768px) {
  .pcard .vw .product-shot.product-shot-editorial {
    min-height: 390px;
    object-position: center 50% !important;
  }

  .phero::after {
    background: linear-gradient(180deg, rgba(250,249,244,.8) 0%, rgba(250,249,244,.64) 50%, rgba(250,249,244,.9) 100%) !important;
  }

  .phero-visual .vial {
    width: min(430px, calc(100vw - 42px));
    border-radius: 24px;
  }

  body.products-page .phl .phl-bgimg {
    object-position: 58% center !important;
  }

  body.home .sec-title br,
  body.products-page .sec-title br {
    display: block !important;
  }
}


/* v79 — compact four-column comparison with VAST Series III. */
.compare-s {
  padding: 88px 20px;
}

.ctable.ctable-three {
  width: min(1040px, 100%);
  max-width: 1040px;
  border-radius: 20px;
}

.ctable-three .cthead,
.ctable-three .crow {
  grid-template-columns: minmax(150px, .78fr) repeat(3, minmax(0, 1fr));
}

.ctable-three .cthead > div {
  padding: 18px 12px 16px;
}

.ctable-three .cthead > div:nth-child(4) {
  background: linear-gradient(180deg, rgba(142, 160, 118, .2), rgba(142, 160, 118, .045));
}

.ctable-three .cthead > div:nth-child(4)::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, #9AAA78, #536D55);
}

.ctable-three .cthead > div:nth-child(4) .cts {
  color: #647A5C;
}

.ctable-three .cthead .ctn {
  font-size: 24px;
  letter-spacing: 4px;
}

.ctable-three .cthead .cts {
  font-size: 10px;
  letter-spacing: 1.4px;
}

.ctable-three .cth-corner {
  gap: 6px;
}

.ctable-three .cth-corner .cic {
  width: 30px;
  height: 30px;
}

.ctable-three .cth-lab {
  font-size: 10px;
  letter-spacing: 1.5px;
}

.ctable-three .crow > div {
  min-width: 0;
  padding: 13px 14px;
  font-size: 13.5px;
  line-height: 1.35;
}

.ctable-three .crow > div:first-child {
  gap: 8px;
  font-size: 10px;
  letter-spacing: 1.2px;
}

.ctable-three .crow > div:nth-child(4) {
  border-left: 1px solid #ECE7F2;
  background: rgba(142, 160, 118, .055);
}

.ctable-three .cic {
  width: 26px;
  height: 26px;
  border-radius: 8px;
}

.ctable-three .cic svg {
  width: 14px;
  height: 14px;
}

@media (max-width: 900px) {
  .ctable.ctable-three {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .ctable-three .cthead,
  .ctable-three .crow {
    min-width: 780px;
    grid-template-columns: 150px repeat(3, 210px);
  }
}

@media (max-width: 600px) {
  .compare-s {
    padding: 68px 14px;
  }

  .compare-s .sec-sub {
    margin-bottom: 32px;
  }

  .ctable.ctable-three {
    border-radius: 16px;
  }

  .ctable-three .cthead > div {
    padding: 15px 10px 13px;
  }

  .ctable-three .crow > div {
    padding: 11px 10px;
    font-size: 12px;
  }

  .ctable-three .crow > div:first-child {
    gap: 6px;
    font-size: 9px;
    letter-spacing: .9px;
  }
}


/* v80 — compact three-card overview with VAST evidence boundary. */
.dglance {
  max-width: 1220px;
  padding: 92px 24px 86px;
}

.dg-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 44px;
}

.dg-card {
  gap: 19px;
  padding: 27px 23px;
  border-radius: 20px;
}

.dg-card.vast {
  background: linear-gradient(160deg, rgba(142, 160, 118, .2), rgba(255, 255, 255, .72) 62%);
}

.dg-card.vast::before {
  background: linear-gradient(90deg, #9AAA78, #536D55);
}

.dg-card.vast:hover {
  border-color: rgba(110, 132, 93, .58);
  box-shadow: 0 32px 72px rgba(110, 132, 93, .18);
}

.dg-card.vast .dg-comp {
  color: #647A5C;
}

.dg-card.vast .dg-ico {
  background: linear-gradient(135deg, rgba(142, 160, 118, .3), rgba(142, 160, 118, .12));
  border: .5px solid rgba(110, 132, 93, .4);
}

.dg-card.vast .dg-ico svg,
.dg-card.vast .dg-sico svg {
  stroke: #647A5C;
}

.dg-card.vast .dg-go {
  color: #647A5C;
  background: rgba(142, 160, 118, .14);
  border: .5px solid rgba(110, 132, 93, .35);
}

.dg-card.vast:hover .dg-go {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, #647A5C, #4D7662);
}

.dg-head {
  gap: 13px;
}

.dg-ico {
  width: 48px;
  height: 48px;
  border-radius: 14px;
}

.dg-ico svg {
  width: 24px;
  height: 24px;
}

.dg-name {
  font-size: 29px;
  letter-spacing: 5px;
}

.dg-comp {
  font-size: 10px;
  letter-spacing: 1.25px;
  line-height: 1.4;
}

.dg-stats {
  gap: 10px;
}

.dg-stats > .dg-stat {
  gap: 9px;
  padding: 12px 11px;
  border-radius: 12px;
}

.dg-sico {
  width: 30px;
  height: 30px;
  border-radius: 9px;
}

.dg-sico svg {
  width: 15px;
  height: 15px;
}

.dg-k {
  font-size: 9px;
  letter-spacing: 1.2px;
}

.dg-v {
  font-size: 18px;
}

.dg-x {
  font-size: 10px;
  letter-spacing: .7px;
}

.dg-go {
  gap: 7px;
  padding: 11px 16px;
  font-size: 10px;
  letter-spacing: 1.35px;
}

.dg-foot {
  margin-top: 28px;
}

@media (max-width: 1100px) {
  .dg-card {
    padding: 24px 19px;
  }

  .dg-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .dglance {
    padding: 76px 18px 72px;
  }

  .dg-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 36px;
  }

  .dg-card {
    padding: 25px 22px;
  }

  .dg-stats {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .dg-stats {
    grid-template-columns: 1fr;
  }

  .dg-go {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================================
   DOSIS v83 — matched-vial campaign rollout
   Final Series I · II · III imagery, tighter crops and responsive
   material-language gallery.
   ============================================================ */

.hero.hero-campaign > .hero-media img {
  object-position: center 54%;
}

.story {
  background:
    linear-gradient(115deg, rgba(10, 24, 19, .91), rgba(16, 25, 31, .84)),
    url("../images/campaign/v9/15-background-mesh-night.webp") center / cover no-repeat;
}

.pcard.lucid .campaign-card-shot {
  object-position: 62% center !important;
}

.pcard.glow-card .campaign-card-shot {
  object-position: 38% center !important;
}

.pcard.mescaline-card .campaign-card-shot {
  object-position: 64% center !important;
}

.material-series {
  padding: clamp(82px, 9vw, 132px) 24px;
  background:
    radial-gradient(circle at 13% 20%, rgba(118, 179, 160, .14), transparent 31%),
    radial-gradient(circle at 86% 78%, rgba(171, 143, 204, .15), transparent 34%),
    #f6f3ec;
  color: #182b23;
}

.material-series-head {
  width: min(760px, 100%);
  margin: 0 auto 48px;
  text-align: center;
}

.material-series-head h2 {
  margin: 14px 0 20px;
  font-family: var(--dosis-display);
  font-size: clamp(48px, 6vw, 76px);
  font-weight: 300;
  line-height: .96;
  letter-spacing: .01em;
}

.material-series-head h2 em {
  font-weight: 300;
  color: #6d688d;
}

.material-series-head p {
  max-width: 650px;
  margin: 0 auto;
  color: rgba(24, 43, 35, .67);
  font-size: 16px;
  line-height: 1.75;
}

.material-series-grid {
  width: var(--dosis-shell);
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.material-series-grid figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(46, 67, 58, .1);
  border-radius: 24px;
  background: rgba(255, 255, 255, .56);
  box-shadow: 0 24px 64px rgba(32, 47, 40, .09);
}

.material-series-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform .9s var(--dosis-ease);
}

.material-series-grid figure:hover img {
  transform: scale(1.025);
}

.material-series-grid figcaption {
  display: grid;
  gap: 7px;
  padding: 18px 20px 20px;
  font-family: var(--dosis-mono);
  letter-spacing: .15em;
}

.material-series-grid figcaption span {
  color: rgba(24, 43, 35, .48);
  font-size: 10px;
}

.material-series-grid figcaption b {
  color: #28483b;
  font-size: 10px;
  font-weight: 500;
}

.vast-lifestyle-band .ib-bg {
  object-position: center 58%;
}

.mes-formula-strip {
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .material-series-grid {
    grid-template-columns: 1fr 1fr;
  }

  .material-series-grid figure:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .hero.hero-campaign > .hero-media img {
    height: 72% !important;
    top: 18% !important;
    object-position: 55% center !important;
  }

  .pcard.lucid .campaign-card-shot {
    object-position: 58% center !important;
  }

  .pcard.glow-card .campaign-card-shot {
    object-position: 40% center !important;
  }

  .pcard.mescaline-card .campaign-card-shot {
    object-position: 61% center !important;
  }

  .material-series {
    padding: 78px 16px;
  }

  .material-series-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .material-series-grid figure:last-child {
    grid-column: auto;
  }

  .material-series-grid img {
    aspect-ratio: 16 / 13;
  }

  .story-data {
    grid-template-columns: 1fr;
    gap: 17px;
  }
}

@media (max-width: 480px) {
  .material-series-head h2 {
    font-size: clamp(44px, 14vw, 62px);
  }

  .material-series-grid img {
    aspect-ratio: 4 / 4.2;
  }
}
