:root {
  --bg: #eef3f7;
  --surface: rgba(255, 255, 255, 0.92);
  --surface-strong: #08111b;
  --surface-muted: #182536;
  --text: #15202d;
  --muted: #64758a;
  --line: rgba(17, 28, 42, 0.1);
  --line-strong: rgba(17, 28, 42, 0.16);
  --accent: #5ed4d0;
  --accent-soft: rgba(94, 212, 208, 0.12);
  --accent-deep: #21465d;
  --radius: 26px;
  --image-radius: 22px;
  --shadow: 0 24px 74px rgba(33, 70, 93, 0.08);
  --shadow-soft: 0 14px 38px rgba(33, 70, 93, 0.06);
  --shadow-lift: 0 30px 80px rgba(33, 70, 93, 0.12);
  --cyan-glow: 0 18px 56px rgba(94, 212, 208, 0.16);
  --cyan-glow-soft: 0 12px 34px rgba(94, 212, 208, 0.11);
  --cyan-glow-strong: 0 28px 78px rgba(94, 212, 208, 0.24);
  --glass-highlight: inset 0 1px 0 rgba(255, 255, 255, 0.92);
  --focus-ring: 0 0 0 4px rgba(94, 212, 208, 0.22);
  --header-height: 178px;
  --mobile-dock-top: 16px;
  --mobile-menu-top: 76px;
  --dna-surface-pattern: url("data:image/svg+xml,%3Csvg width='760' height='148' viewBox='0 0 760 148' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%2321465d' stroke-width='1.45' stroke-linecap='round' stroke-opacity='.62'%3E%3Cpath d='M-24 92 C82 24 172 24 278 92 S468 160 590 92 708 26 790 72'/%3E%3Cpath d='M-24 56 C82 124 172 124 278 56 S468 -12 590 56 708 122 790 78'/%3E%3Cpath d='M44 62 L64 84M118 84 L140 60M194 60 L216 84M272 84 L294 58M350 58 L372 86M428 86 L450 58M506 60 L530 84M584 86 L608 60M662 62 L686 82'/%3E%3C/g%3E%3Cg fill='%235ed4d0' fill-opacity='.35'%3E%3Ccircle cx='64' cy='84' r='3'/%3E%3Ccircle cx='216' cy='84' r='3'/%3E%3Ccircle cx='372' cy='86' r='3'/%3E%3Ccircle cx='530' cy='84' r='3'/%3E%3Ccircle cx='686' cy='82' r='3'/%3E%3C/g%3E%3C/svg%3E");
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.86), transparent 30%),
    radial-gradient(circle at top right, rgba(94, 212, 208, 0.16), transparent 22%),
    radial-gradient(circle at top left, rgba(33, 70, 93, 0.09), transparent 24%),
    linear-gradient(180deg, #fbfdff 0%, var(--bg) 100%);
  color: var(--text);
  font-family: "Aptos", "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body.has-mobile-nav-open {
  overflow: hidden;
}

body.has-age-gate {
  overflow: hidden;
}

.dpp-age-gate {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: grid;
  place-items: center;
  padding: 26px;
  background:
    radial-gradient(circle at 72% 18%, rgba(94, 212, 208, 0.18), transparent 24%),
    linear-gradient(135deg, rgba(5, 10, 18, 0.92), rgba(15, 25, 39, 0.94));
  backdrop-filter: blur(16px);
  animation: dppAgeGateIn 180ms ease-out both;
}

.dpp-age-gate.is-exiting {
  animation: dppAgeGateOut 180ms ease-in both;
}

.dpp-age-gate-panel {
  width: min(560px, calc(100vw - 40px));
  display: grid;
  gap: 18px;
  justify-items: center;
  text-align: center;
  padding: clamp(28px, 6vw, 48px);
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: linear-gradient(180deg, #ffffff, #f1f7fb);
  box-shadow:
    0 38px 90px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.dpp-age-gate-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(8, 17, 27, 0.08);
  color: var(--surface-strong);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.dpp-age-gate h2 {
  margin: 0;
  max-width: 12ch;
  color: var(--surface-strong);
  font-family: "Iowan Old Style", Georgia, serif;
  font-size: clamp(2rem, 5vw, 3.35rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.dpp-age-gate p {
  max-width: 42ch;
  margin: 0;
  color: var(--muted);
}

.dpp-age-gate-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  width: 100%;
  margin-top: 8px;
}

.dpp-age-gate-actions .dpp-button {
  min-width: min(100%, 190px);
}

@keyframes dppAgeGateIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes dppAgeGateOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-shell {
  width: min(1180px, calc(100vw - 40px));
  margin: 0 auto;
}

.site-header {
  position: relative;
  z-index: 20;
  backdrop-filter: blur(18px);
  background:
    linear-gradient(180deg, rgba(21, 27, 35, 0.08), rgba(251, 253, 255, 0.94) 32%, rgba(251, 253, 255, 0.9)),
    linear-gradient(90deg, rgba(18, 23, 31, 0.05), rgba(255, 255, 255, 0.7), rgba(18, 23, 31, 0.05));
  border-bottom: 1px solid rgba(15, 24, 38, 0.08);
  padding: 14px 0 18px;
}

.site-header-inner {
  min-height: auto;
  display: grid;
  justify-items: center;
  gap: 14px;
}

.brand-lockup {
  display: grid;
  justify-items: center;
  gap: 12px;
  text-align: center;
}

.brand-lockup img,
.footer-brand {
  width: min(190px, 31vw);
}

.brand-copy,
.footer-brand-copy {
  display: grid;
  gap: 4px;
  justify-items: center;
  text-align: center;
}

.brand-copy small,
.footer-brand-copy small {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0d1520;
  font-weight: 600;
}

.site-navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
}

.site-navigation ul {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 22px;
  padding: 0;
  margin: 0;
}

.site-navigation a {
  color: var(--surface-muted);
  font-weight: 600;
  font-size: 0.98rem;
  white-space: nowrap;
}

.nav-utilities {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 18px;
}

.mobile-nav-dock {
  display: none;
}

.cart-link span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: var(--surface-strong);
  color: white;
  margin-left: 6px;
  font-size: 12px;
}

.nav-toggle {
  display: none;
}

.nav-toggle-label {
  font-weight: 700;
  color: var(--surface-strong);
  letter-spacing: 0.02em;
}

.nav-toggle-icon {
  display: inline-grid;
  gap: 2px;
  align-items: center;
  justify-items: center;
  min-width: 38px;
  min-height: 38px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.88);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(232, 240, 246, 0.86));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    inset 0 -1px 0 rgba(13, 21, 31, 0.08),
    0 10px 24px rgba(10, 16, 27, 0.13);
}

.nav-toggle-icon span {
  display: block;
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: var(--surface-strong);
  transition: transform 180ms ease, opacity 180ms ease;
}

.promo-ribbon {
  position: relative;
  z-index: 11;
  isolation: isolate;
  overflow: hidden;
  padding: 18px 0;
  border-top: 1px solid rgba(8, 17, 27, 0.06);
  border-bottom: 1px solid rgba(8, 17, 27, 0.1);
  background:
    radial-gradient(circle at 12% 40%, rgba(94, 212, 208, 0.18), transparent 26%),
    radial-gradient(circle at 88% 30%, rgba(33, 70, 93, 0.12), transparent 28%),
    linear-gradient(112deg, rgba(251, 253, 255, 0.96) 0%, rgba(230, 240, 247, 0.92) 50%, rgba(246, 251, 253, 0.98) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    inset 0 -24px 56px rgba(33, 70, 93, 0.045),
    0 18px 54px rgba(8, 17, 27, 0.1);
}

.promo-ribbon::before,
.promo-ribbon::after {
  content: "";
  position: absolute;
  inset: -60px -80px;
  z-index: -1;
  pointer-events: none;
}

.promo-ribbon::before {
  opacity: 0.22;
  background-image: url("../images/offer-dna-futuristic-overlay.svg");
  background-repeat: repeat-x;
  background-size: auto 190px;
  background-position: -720px 52%;
  animation: promoDnaDrift 22s linear infinite;
}

.promo-ribbon::after {
  opacity: 0.48;
  background:
    linear-gradient(105deg, transparent 18%, rgba(255, 255, 255, 0.68) 42%, transparent 62%),
    radial-gradient(circle at 50% 50%, rgba(94, 212, 208, 0.11), transparent 36%);
  transform: translateX(-44%);
  animation: promoRibbonSweep 6.8s ease-in-out infinite;
}

.promo-ribbon-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(180px, 0.38fr) minmax(380px, 1.08fr) minmax(250px, 0.68fr) auto;
  align-items: center;
  gap: 26px;
  width: min(1380px, calc(100vw - 48px));
  min-height: 94px;
  padding: 18px 22px;
  overflow: hidden;
  border: 1px solid rgba(17, 28, 42, 0.12);
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(239, 247, 251, 0.82)),
    radial-gradient(circle at 12% 50%, rgba(94, 212, 208, 0.16), transparent 34%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.94),
    inset 0 -1px 0 rgba(8, 17, 27, 0.06),
    0 24px 70px rgba(8, 17, 27, 0.15);
  color: var(--surface-strong);
  animation: promoRibbonIn 520ms ease-out both;
  backdrop-filter: blur(16px);
}

.promo-ribbon-inner::before,
.promo-ribbon-inner::after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.promo-ribbon-inner::before {
  inset: -40% -18%;
  background:
    linear-gradient(105deg, transparent 28%, rgba(255, 255, 255, 0.86) 43%, transparent 58%),
    linear-gradient(90deg, transparent, rgba(94, 212, 208, 0.12), transparent);
  transform: translateX(-64%) rotate(2deg);
  animation: promoRibbonGlassSweep 5.8s ease-in-out infinite;
}

.promo-ribbon-inner::after {
  inset: -48px -70px;
  opacity: 0.26;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.68), transparent 18%, transparent 82%, rgba(255, 255, 255, 0.58)),
    url("../images/offer-dna-futuristic-overlay.svg");
  background-repeat: no-repeat, repeat-x;
  background-size: 100% 100%, auto 168px;
  background-position: center, -760px 52%;
  animation: promoDnaInnerDrift 24s linear infinite;
}

.promo-ribbon-inner > * {
  position: relative;
  z-index: 1;
}

.promo-ribbon-graphic {
  position: relative;
  width: min(100%, 220px);
  height: 104px;
  border-radius: var(--image-radius);
  border: 1px solid rgba(33, 70, 93, 0.13);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(224, 235, 244, 0.92));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    0 20px 44px rgba(8, 17, 27, 0.15),
    0 0 0 8px rgba(94, 212, 208, 0.045);
  overflow: hidden;
}

.promo-ribbon-graphic img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
  object-position: 52% 52%;
  mix-blend-mode: multiply;
  filter: saturate(0.92) contrast(1.04);
}

.promo-ribbon-copy {
  display: grid;
  justify-items: start;
  gap: 2px;
  min-width: 0;
}

.promo-ribbon-kicker {
  color: var(--accent-deep);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.promo-ribbon p {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 11px;
  margin: 0;
  color: var(--surface-strong);
  font-size: clamp(1.05rem, 1.55vw, 1.32rem);
  font-weight: 700;
  line-height: 1.25;
  text-shadow: none;
}

.promo-ribbon strong {
  font-weight: 900;
}

.promo-ribbon-divider {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(94, 212, 208, 0.16), 0 0 18px rgba(94, 212, 208, 0.7);
}

.promo-ribbon small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.02em;
}

.promo-ribbon-perks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.promo-ribbon-perks span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(33, 70, 93, 0.13);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(230, 239, 247, 0.9));
  color: var(--accent-deep);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    0 12px 26px rgba(8, 17, 27, 0.08);
}

.promo-ribbon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  gap: 10px;
  border-radius: 999px;
  border: 1px solid rgba(8, 17, 27, 0.18);
  background: linear-gradient(135deg, #08111b, #182536);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    0 18px 34px rgba(8, 17, 27, 0.2),
    0 0 0 7px rgba(8, 17, 27, 0.04);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.promo-ribbon-link i {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  position: relative;
}

.promo-ribbon-link i::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 6px;
  width: 7px;
  height: 7px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}

.promo-ribbon-link:hover,
.promo-ribbon-link:focus-visible {
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 18px 34px rgba(8, 17, 27, 0.24);
}

@keyframes promoRibbonIn {
  from {
    opacity: 0;
    transform: translateY(-8px) scale(0.99);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes promoRibbonSweep {
  0%,
  42% {
    transform: translateX(-44%);
  }
  76%,
  100% {
    transform: translateX(44%);
  }
}

@keyframes promoRibbonGlassSweep {
  0%,
  42% {
    transform: translateX(-68%) rotate(2deg);
  }
  76%,
  100% {
    transform: translateX(68%) rotate(2deg);
  }
}

@keyframes promoDnaDrift {
  from {
    background-position: -720px 52%;
  }
  to {
    background-position: 540px 52%;
  }
}

@keyframes promoDnaInnerDrift {
  from {
    background-position: center, -760px 52%;
  }
  to {
    background-position: center, 500px 52%;
  }
}

@keyframes dppSurfaceDnaDrift {
  from {
    background-position: center, 0 52%;
  }
  to {
    background-position: center, 760px 52%;
  }
}

@keyframes dppSurfaceGlowDrift {
  from {
    transform: translate3d(-1.5%, -1%, 0) scale(1);
    opacity: 0.82;
  }
  to {
    transform: translate3d(1.5%, 1%, 0) scale(1.04);
    opacity: 1;
  }
}

@keyframes dppProductImageDnaDrift {
  from {
    background-position: -80px 48%;
  }
  to {
    background-position: 680px 48%;
  }
}

@keyframes dppProductImageDnaPulse {
  0%,
  100% {
    opacity: var(--product-dna-opacity, 0.075);
    filter:
      drop-shadow(0 0 5px rgba(94, 212, 208, 0.12))
      drop-shadow(0 0 10px rgba(33, 70, 93, 0.05));
  }
  50% {
    opacity: var(--product-dna-opacity-peak, 0.14);
    filter:
      drop-shadow(0 0 10px rgba(94, 212, 208, 0.26))
      drop-shadow(0 0 16px rgba(33, 70, 93, 0.1));
  }
}

@keyframes dppCatalogImageCornerGlow {
  0%,
  100% {
    opacity: 0.72;
    transform: scale(1);
    box-shadow:
      inset 0 0 42px 14px rgba(94, 212, 208, 0.22),
      inset 0 0 86px 24px rgba(94, 212, 208, 0.1);
    filter: blur(6px) drop-shadow(0 0 10px rgba(94, 212, 208, 0.16));
  }
  32%,
  68% {
    opacity: 0.26;
    transform: scale(0.56);
    box-shadow:
      inset 0 0 34px 10px rgba(94, 212, 208, 0.14),
      inset 0 0 62px 16px rgba(94, 212, 208, 0.06);
    filter: blur(7px) drop-shadow(0 0 8px rgba(94, 212, 208, 0.1));
  }
  50% {
    opacity: 0;
    transform: scale(0.38);
    box-shadow:
      inset 0 0 18px 4px rgba(94, 212, 208, 0),
      inset 0 0 36px 8px rgba(94, 212, 208, 0);
    filter: blur(8px) drop-shadow(0 0 0 rgba(94, 212, 208, 0));
  }
}

.hero-poster {
  padding: 28px 0 18px;
}

.hero-grid {
  min-height: calc(100svh - var(--header-height, 178px) - 28px);
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(380px, 0.96fr);
  gap: 44px;
  align-items: center;
  padding: 34px 0 36px;
}

.hero-copy,
.split-feature-copy,
.product-hero-copy,
.dpp-page-intro,
.statement-band,
.section-heading-row,
.final-cta-inner,
.dpp-panel,
.post-preview,
.dpp-empty-state,
.dpp-callout,
.site-footer-grid > div {
  text-align: center;
}

.hero-copy,
.split-feature-copy,
.product-hero-copy,
.dpp-page-intro,
.section-heading-row,
.final-cta-inner {
  display: grid;
  gap: 14px;
  justify-items: center;
}

.hero-copy h1,
.page-hero-inner h1,
.product-hero-copy h1,
.article-shell h1 {
  font-family: "Iowan Old Style", Georgia, serif;
  line-height: 0.96;
  letter-spacing: -0.03em;
  margin: 10px 0 18px;
  color: var(--surface-strong);
}

.hero-copy h1 {
  font-size: clamp(1.7rem, 3.1vw, 2.95rem);
  max-width: 12.5ch;
}

.hero-copy p,
.page-hero-inner p,
.dpp-page-intro p {
  max-width: 58ch;
  font-size: 1.08rem;
  color: var(--muted);
  margin-left: auto;
  margin-right: auto;
}

.hero-kicker,
.section-kicker,
.dpp-kicker {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.74rem;
  color: var(--muted);
}

.hero-actions,
.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 18px;
  justify-content: center;
}

.dpp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--surface-strong);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(8, 17, 27, 0.16), var(--glass-highlight);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.dpp-button-subtle {
  background: rgba(255, 255, 255, 0.66);
  border-color: rgba(17, 28, 42, 0.12);
  color: var(--surface-strong);
  box-shadow: 0 12px 26px rgba(9, 17, 27, 0.07), var(--glass-highlight);
}

.dpp-button:hover,
.dpp-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 38px rgba(8, 17, 27, 0.2), var(--glass-highlight);
}

.dpp-button-subtle:hover,
.dpp-button-subtle:focus-visible {
  border-color: rgba(33, 70, 93, 0.22);
  background: rgba(255, 255, 255, 0.9);
}

/* Reusable glass surface. Use .dpp-surface-dna only for deliberate science accents. */
.dpp-surface-dna,
.hero-visual,
.split-feature-image,
.product-hero-media,
.dpp-panel,
.dpp-form-shell,
.dpp-order-summary,
.dpp-table-wrap,
.post-preview,
.statement-band,
.final-cta-inner,
.page-hero-inner,
.prose-shell,
.article-shell {
  background:
    radial-gradient(circle at 18% 0%, rgba(94, 212, 208, 0.12), transparent 32%),
    radial-gradient(circle at 84% 12%, rgba(255, 255, 255, 0.88), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(239, 246, 250, 0.8));
  border: 1px solid rgba(17, 28, 42, 0.08);
  border-radius: var(--radius);
  box-shadow:
    var(--cyan-glow-soft),
    0 20px 54px rgba(33, 70, 93, 0.07),
    0 2px 0 rgba(255, 255, 255, 0.7) inset,
    var(--glass-highlight);
  backdrop-filter: blur(18px);
}

.hero-visual,
.split-feature-image,
.product-hero-media,
.product-detail-panel,
.dpp-panel,
.dpp-form-shell,
.dpp-order-summary,
.dpp-table-wrap,
.post-preview,
.statement-band,
.final-cta-inner,
.page-hero-inner,
.prose-shell,
.article-shell,
.dpp-product-card,
.dpp-product-card-media,
.dpp-empty-state,
.dpp-callout,
.dpp-captcha-panel {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.split-feature-image::before,
.product-hero-media::before,
.product-detail-panel::before,
.dpp-panel::before,
.dpp-form-shell::before,
.dpp-order-summary::before,
.dpp-table-wrap::before,
.post-preview::before,
.statement-band::before,
.final-cta-inner::before,
.page-hero-inner::before,
.prose-shell::before,
.article-shell::before,
.dpp-product-card::before,
.dpp-product-card-media::before,
.dpp-empty-state::before,
.dpp-callout::before,
.dpp-captcha-panel::before {
  content: "";
  position: absolute;
  inset: -28%;
  z-index: 0;
  opacity: 0.88;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 18%, rgba(94, 212, 208, 0.18), transparent 28%),
    radial-gradient(circle at 82% 76%, rgba(94, 212, 208, 0.1), transparent 30%),
    linear-gradient(115deg, transparent 34%, rgba(255, 255, 255, 0.54) 48%, transparent 62%);
  animation: dppSurfaceGlowDrift 8s ease-in-out infinite alternate;
}

.dpp-surface-dna::before,
.hero-visual::before {
  content: "";
  position: absolute;
  inset: -34px -46px;
  z-index: 0;
  opacity: 0.1;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 50% 42%, rgba(94, 212, 208, 0.14), transparent 38%),
    var(--dna-surface-pattern);
  background-repeat: no-repeat, repeat-x;
  background-size: 100% 100%, 760px 148px;
  background-position: center, 0 52%;
  animation: dppSurfaceDnaDrift 38s linear infinite;
}

.dpp-surface-dna > *,
.hero-visual > *,
.split-feature-image > *,
.product-hero-media > *,
.product-detail-panel > *,
.dpp-panel > *,
.dpp-form-shell > *,
.dpp-order-summary > *,
.dpp-table-wrap > *,
.post-preview > *,
.statement-band > *,
.final-cta-inner > *,
.page-hero-inner > *,
.prose-shell > *,
.article-shell > *,
.dpp-product-card > *,
.dpp-product-card-media > *,
.dpp-empty-state > *,
.dpp-callout > *,
.dpp-captcha-panel > * {
  position: relative;
  z-index: 1;
}

.hero-visual {
  padding: 18px;
  background:
    radial-gradient(circle at 50% 6%, rgba(94, 212, 208, 0.2), transparent 35%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.97), rgba(229, 238, 246, 0.88));
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.hero-visual img {
  width: 100%;
  border-radius: var(--image-radius);
  object-fit: cover;
  box-shadow:
    var(--cyan-glow),
    0 12px 34px rgba(33, 70, 93, 0.08),
    0 0 0 1px rgba(94, 212, 208, 0.16);
  filter: drop-shadow(0 14px 28px rgba(94, 212, 208, 0.18));
}

.hero-visual:hover {
  transform: translateY(-4px);
  box-shadow: var(--cyan-glow-strong), var(--shadow-lift), var(--glass-highlight);
}

.dpp-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
  justify-content: center;
}

.dpp-badges span,
.dpp-price-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--surface-strong);
  font-size: 0.86rem;
  font-weight: 700;
}

.dpp-price-tag {
  display: grid;
  gap: 8px;
  justify-items: center;
  padding: 16px 18px 18px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 253, 0.96));
  border: 1px solid rgba(16, 22, 35, 0.08);
  box-shadow: 0 16px 32px rgba(9, 17, 27, 0.07);
}

.dpp-price-tag-card {
  min-width: 176px;
  width: min(100%, 214px);
}

.dpp-price-stack {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.dpp-price-current {
  color: var(--surface-strong);
  font-weight: 700;
}

.dpp-price-compare {
  color: var(--muted);
  text-decoration: line-through;
}

.statement-band,
.split-feature,
.section-heading-row,
.panel-stack,
.post-preview-grid,
.site-footer-grid,
.dpp-shell-section,
.product-hero,
.page-hero,
.article-shell,
.editorial-break,
.evidence-list,
.policy-grid,
.final-cta {
  margin-top: 52px;
}

.statement-band,
.section-heading-row,
.final-cta-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding: 36px;
  justify-items: center;
}

.statement-band h2,
.split-feature h2,
.section-heading-row h2,
.final-cta h2,
.dpp-page-intro h2,
.post-preview h2,
.post-preview h3 {
  margin: 6px 0 0;
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.05;
  font-family: "Iowan Old Style", Georgia, serif;
}

.split-feature,
.product-hero,
.dpp-cart-layout,
.dpp-checkout-layout,
.dpp-two-column-auth,
.dpp-support-layout,
.dpp-account-support-shell {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
  align-items: center;
}

.statement-band,
.final-cta-inner {
  background:
    radial-gradient(circle at 50% 0%, rgba(94, 212, 208, 0.16), transparent 40%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(241, 247, 251, 0.78));
}

.split-feature-image,
.product-hero-media {
  padding: 34px;
  background:
    radial-gradient(circle at 50% 4%, rgba(94, 212, 208, 0.16), transparent 38%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(232, 241, 248, 0.84));
  box-shadow:
    var(--cyan-glow),
    0 22px 58px rgba(33, 70, 93, 0.08),
    var(--glass-highlight);
}

.split-feature-copy,
.product-hero-copy {
  padding: 24px 10px;
  justify-items: center;
}

.bullet-rail,
.spec-grid,
.dpp-spec-list,
.dpp-order-summary ul {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}

.bullet-rail li,
.spec-grid li,
.dpp-spec-list li,
.dpp-order-summary li {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.spec-grid span,
.dpp-spec-list span,
.dpp-order-summary span,
.dpp-label {
  color: var(--muted);
}

.section-heading-row {
  align-items: end;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 0 4px;
  max-width: 940px;
  margin-inline: auto;
}

.dpp-shell-section {
  padding: 0;
}

.dpp-shell-section-tight {
  margin-top: 28px;
}

.dpp-page-intro,
.page-hero-inner,
.article-shell,
.prose-shell {
  padding: 38px;
}

.page-hero-inner {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.dpp-product-grid,
.panel-stack,
.post-preview-grid,
.dpp-panel-grid,
.dpp-link-list {
  display: grid;
  gap: 26px;
}

.dpp-product-grid,
.post-preview-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  justify-content: center;
}

.dpp-product-grid {
  width: min(1180px, calc(100vw - 40px));
  margin-inline: auto;
}

.product-actions form,
.dpp-card-actions-form {
  display: grid;
  gap: 14px;
  justify-items: center;
  width: min(100%, 320px);
}

.dpp-dose-picker {
  display: grid;
  gap: 8px;
  width: 100%;
  text-align: center;
  font-weight: 600;
}

.dpp-dose-picker span {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
}

.dpp-panel-grid,
.panel-stack {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.panel-stack {
  grid-template-columns: repeat(2, minmax(280px, 420px));
  justify-content: center;
  max-width: 940px;
  margin-inline: auto;
}

.dpp-product-grid.is-short-grid-2 {
  grid-template-columns: repeat(2, minmax(280px, 360px));
  justify-content: center;
}

.dpp-product-grid.is-short-grid-1 {
  grid-template-columns: minmax(280px, 360px);
  justify-content: center;
}

.dpp-featured-carousel-shell {
  display: grid;
  gap: 14px;
}

.dpp-carousel-frame {
  position: relative;
  display: block;
}

.dpp-carousel-window {
  min-width: 0;
}

.dpp-carousel-button {
  display: none;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(18, 29, 42, 0.12);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(231, 239, 246, 0.92));
  box-shadow:
    0 14px 30px rgba(9, 17, 27, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  color: var(--surface-strong);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}

.dpp-carousel-button:hover,
.dpp-carousel-button:focus-visible {
  transform: translateY(-1px);
  box-shadow:
    0 18px 32px rgba(9, 17, 27, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.dpp-carousel-button:disabled {
  opacity: 0.38;
  cursor: default;
  transform: none;
  box-shadow:
    0 10px 18px rgba(9, 17, 27, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.dpp-carousel-button span {
  font-size: 1.15rem;
  line-height: 1;
}

.dpp-carousel-hint {
  display: none;
  margin: 0;
  text-align: center;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.dpp-link-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.dpp-product-card,
.post-preview,
.dpp-panel {
  padding: 24px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(94, 212, 208, 0.08), transparent 38%),
    linear-gradient(155deg, rgba(255, 255, 255, 0.94), rgba(239, 246, 250, 0.82));
  box-shadow:
    var(--cyan-glow-soft),
    0 18px 52px rgba(33, 70, 93, 0.07),
    var(--glass-highlight);
  transition: transform 190ms ease, box-shadow 190ms ease, border-color 190ms ease, background 190ms ease;
}

.dpp-product-card {
  display: grid;
  gap: 18px;
  align-content: start;
  border: 1px solid rgba(17, 28, 42, 0.08);
  border-radius: 26px;
  background:
    radial-gradient(circle at 50% 0%, rgba(94, 212, 208, 0.09), transparent 40%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(238, 246, 251, 0.84));
  box-shadow:
    var(--cyan-glow-soft),
    0 18px 52px rgba(33, 70, 93, 0.075),
    0 0 0 1px rgba(255, 255, 255, 0.64) inset;
}

.dpp-product-card:hover,
.post-preview:hover,
.dpp-panel:hover {
  transform: translateY(-4px);
  border-color: rgba(33, 70, 93, 0.16);
  box-shadow: var(--cyan-glow), var(--shadow-lift), var(--glass-highlight);
}

.dpp-product-card-media {
  display: grid;
  place-items: start center;
  aspect-ratio: 1 / 1.18;
  border-radius: var(--image-radius);
  overflow: hidden;
  padding: 18px;
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.96), rgba(232, 240, 247, 0.92) 58%, rgba(215, 226, 236, 0.76)),
    linear-gradient(145deg, #edf3f8, #ffffff);
  border: 1px solid rgba(17, 28, 42, 0.07);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    inset 0 -20px 42px rgba(33, 70, 93, 0.05),
    var(--cyan-glow-soft),
    0 16px 38px rgba(33, 70, 93, 0.06);
}

.dpp-product-card-media::before {
  inset: auto;
  top: 18px;
  left: 18px;
  width: calc(100% - 36px);
  aspect-ratio: 1 / 1;
  z-index: 2;
  border-radius: var(--image-radius);
  opacity: 0.72;
  background: transparent;
  box-shadow:
    inset 0 0 42px 14px rgba(94, 212, 208, 0.22),
    inset 0 0 86px 24px rgba(94, 212, 208, 0.1);
  mix-blend-mode: normal;
  transform-origin: 50% 52%;
  filter: blur(6px);
  animation: dppCatalogImageCornerGlow 5.8s ease-in-out infinite;
}

.dpp-product-card-media::after,
.product-hero-media::after {
  content: "";
  position: absolute;
  z-index: 3;
  pointer-events: none;
  border-radius: var(--image-radius);
  opacity: var(--product-dna-opacity, 0.075);
  background-image: url("../images/product-dna-futuristic-overlay.svg");
  background-repeat: repeat-x;
  background-size: auto 72%;
  background-position: -80px 48%;
  mix-blend-mode: normal;
  animation:
    dppProductImageDnaDrift 28s linear infinite,
    dppProductImageDnaPulse 4.8s ease-in-out infinite;
}

.dpp-product-card-media::after {
  --product-dna-opacity: 0.075;
  --product-dna-opacity-peak: 0.14;
  top: 18px;
  left: 18px;
  width: calc(100% - 36px);
  aspect-ratio: 1 / 1;
}

.dpp-product-card-media img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--image-radius);
  mix-blend-mode: multiply;
  filter: drop-shadow(0 18px 26px rgba(94, 212, 208, 0.2)) drop-shadow(0 8px 18px rgba(33, 70, 93, 0.08));
  transition: transform 220ms ease;
}

.dpp-product-image {
  border-radius: var(--image-radius);
  clip-path: inset(0 round var(--image-radius));
}

.dpp-product-card:hover .dpp-product-card-media img {
  transform: scale(1.035);
}

.product-hero-media img {
  width: min(100%, 680px);
  height: auto;
  aspect-ratio: 1 / 1;
  max-height: 680px;
  object-fit: cover;
  border-radius: var(--image-radius);
  filter: drop-shadow(0 26px 40px rgba(94, 212, 208, 0.22)) drop-shadow(0 12px 24px rgba(33, 70, 93, 0.1));
}

.product-hero-media::after {
  top: 34px;
  left: 50%;
  width: min(calc(100% - 68px), 680px);
  aspect-ratio: 1 / 1;
  transform: translateX(-50%);
  --product-dna-opacity: 0.09;
  --product-dna-opacity-peak: 0.17;
}

.split-feature-image img {
  border-radius: var(--image-radius);
}

.dpp-product-card-top {
  display: grid;
  align-items: center;
  justify-content: center;
  justify-items: center;
  gap: 14px;
  margin: 18px 0 12px;
}

.dpp-product-card-top .dpp-badges {
  margin-top: 0;
}

.dpp-product-card-top .dpp-badges span {
  min-height: 30px;
  padding: 0 16px;
  background: linear-gradient(180deg, rgba(237, 242, 247, 0.98), rgba(226, 233, 241, 0.95));
  color: #37475c;
  border: 1px solid rgba(55, 71, 92, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dpp-product-card-copy,
.dpp-card-actions {
  display: grid;
  gap: 16px;
  justify-items: center;
  text-align: center;
}

.dpp-product-card h3,
.dpp-panel h3,
.post-preview h3 {
  margin: 0 0 10px;
  font-size: 1.28rem;
  line-height: 1.16;
}

.dpp-card-actions {
  margin-top: 18px;
}

.dpp-placeholder-block {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, rgba(111, 216, 212, 0.24), rgba(13, 19, 29, 0.1));
}

.dpp-form-shell,
.dpp-order-summary,
.dpp-table-wrap,
.page-hero-inner,
.prose-shell,
.article-shell {
  padding: 30px;
}

.dpp-form-shell form,
.dpp-affiliate-form,
.dpp-order-summary-form {
  display: grid;
  gap: 18px;
}

.dpp-captcha-shell {
  display: grid;
  gap: 12px;
  justify-items: center;
  text-align: center;
}

.dpp-captcha-panel {
  width: 100%;
  display: grid;
  gap: 10px;
  justify-items: center;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(247, 250, 253, 0.92);
}

.dpp-captcha-label {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 700;
}

.dpp-captcha-question {
  color: var(--surface-strong);
  font-weight: 700;
}

.dpp-captcha-panel input[type="text"] {
  max-width: 220px;
  text-align: center;
}

.dpp-captcha-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.dpp-form-shell label,
.dpp-affiliate-form label,
.dpp-coupon-form label,
.dpp-payment-methods label {
  display: grid;
  gap: 8px;
  font-weight: 600;
}

.dpp-form-shell > h3,
.dpp-order-summary > h3,
.dpp-table-wrap > h3 {
  text-align: center;
  margin-top: 0;
}

.dpp-form-shell input,
.dpp-form-shell textarea,
.dpp-form-shell select,
.dpp-coupon-form input,
.dpp-filter-bar input,
.dpp-filter-bar select,
.dpp-table input,
.dpp-payment-methods span {
  width: 100%;
}

input,
textarea,
select {
  border: 1px solid rgba(18, 30, 45, 0.14);
  border-radius: 14px;
  padding: 12px 14px;
  font: inherit;
  background: #fff;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: rgba(33, 70, 93, 0.32);
  box-shadow: var(--focus-ring);
  background: #fff;
}

.dpp-two-up {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.dpp-payment-methods {
  padding: 0;
  margin: 10px 0;
  border: 0;
  display: grid;
  gap: 12px;
}

.dpp-payment-methods legend {
  text-align: center;
  font-weight: 700;
  margin-bottom: 8px;
}

.dpp-payment-methods label {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  justify-items: center;
  text-align: center;
}

.dpp-payment-methods span {
  color: var(--muted);
  font-weight: 400;
}

.dpp-checkline {
  display: flex;
  align-items: start;
  gap: 12px;
  color: var(--muted);
  max-width: 42rem;
  margin: 0 auto;
}

.dpp-checkline input {
  width: auto;
  margin-top: 4px;
}

.dpp-table {
  width: 100%;
  border-collapse: collapse;
}

.dpp-table-wrap {
  overflow-x: auto;
}

.dpp-table th,
.dpp-table td {
  text-align: left;
  padding: 14px 10px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.dpp-cart-layout {
  align-items: start;
  gap: 42px;
}

.dpp-cart-table-wrap {
  padding: 36px 38px;
}

.dpp-cart-form {
  display: grid;
  gap: 26px;
}

.dpp-cart-table th,
.dpp-cart-table td {
  padding: 20px 12px;
}

.dpp-cart-table th {
  padding-top: 0;
}

.dpp-cart-item-title {
  min-width: 180px;
  line-height: 1.55;
}

.dpp-cart-item-title a {
  font-weight: 700;
}

.dpp-cart-item-title .description {
  display: inline-block;
  margin-top: 8px;
  color: var(--muted);
}

.dpp-cart-price-cell,
.dpp-cart-total-cell {
  white-space: nowrap;
  font-weight: 600;
}

.dpp-cart-qty-cell {
  min-width: 170px;
}

.dpp-cart-qty-cell input {
  max-width: 132px;
}

.dpp-cart-update-button {
  margin-top: 4px;
}

.dpp-order-summary {
  display: grid;
  gap: 28px;
  justify-items: center;
  text-align: center;
}

.dpp-order-summary > * {
  width: 100%;
}

.dpp-order-summary ul {
  margin-top: 0;
}

.dpp-order-summary-form {
  justify-items: center;
  text-align: center;
  gap: 16px;
}

.dpp-order-summary-form label {
  width: 100%;
  justify-items: center;
  text-align: center;
  gap: 12px;
}

.dpp-order-summary-form label span {
  display: block;
  width: 100%;
  text-align: center;
}

.dpp-order-summary-form input {
  max-width: 100%;
}

.dpp-order-summary-form .dpp-button {
  justify-self: center;
}

.dpp-order-summary-cta {
  justify-self: center;
  margin-top: 4px;
}

.dpp-support-layout,
.dpp-account-support-shell {
  align-items: start;
}

.dpp-flash {
  width: min(780px, calc(100% - 32px));
  margin: 0 auto 26px;
  padding: 22px 24px;
  border-radius: 24px;
  border: 1px solid rgba(17, 28, 42, 0.1);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 22px 48px rgba(17, 28, 42, 0.09);
  text-align: center;
  font-size: 1.02rem;
  line-height: 1.7;
}

.dpp-flash::before {
  display: block;
  margin-bottom: 8px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.dpp-flash-success {
  border-color: rgba(31, 94, 67, 0.16);
  background: linear-gradient(180deg, rgba(245, 252, 247, 0.96), rgba(238, 248, 241, 0.92));
  color: #184930;
}

.dpp-flash-success::before {
  content: "Message Sent";
  color: #25633f;
}

.dpp-flash-error {
  border-color: rgba(146, 39, 39, 0.18);
  background: linear-gradient(180deg, rgba(255, 246, 246, 0.96), rgba(253, 239, 239, 0.92));
  color: #7d2424;
}

.dpp-flash-error::before {
  content: "Action Needed";
  color: #922727;
}

.dpp-flash-info::before {
  content: "Update";
  color: #31567f;
}

.dpp-support-layout .dpp-panel-grid {
  grid-template-columns: 1fr;
}

.dpp-account-shell {
  display: grid;
  gap: 38px;
}

.dpp-account-profile {
  max-width: 920px;
  margin: 0 auto;
}

.dpp-account-orders {
  margin-top: 10px;
}

.dpp-support-thread {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  overflow: hidden;
}

.dpp-support-thread + .dpp-support-thread {
  margin-top: 16px;
}

.dpp-support-thread summary {
  display: grid;
  gap: 6px;
  padding: 18px 20px;
  cursor: pointer;
  list-style: none;
  text-align: center;
}

.dpp-support-thread summary span {
  color: var(--muted);
  font-size: 0.92rem;
}

.dpp-support-thread-body {
  display: grid;
  gap: 16px;
  padding: 0 20px 20px;
}

.dpp-support-message {
  display: grid;
  gap: 8px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(248, 251, 254, 0.95);
  border: 1px solid rgba(17, 28, 42, 0.08);
}

.dpp-support-message p,
.dpp-support-message small {
  margin: 0;
}

.dpp-support-message-customer,
.dpp-support-message-guest {
  background: rgba(240, 247, 252, 0.95);
}

.dpp-support-message-staff {
  background: rgba(251, 247, 241, 0.95);
}

.dpp-support-reply-form {
  display: grid;
  gap: 14px;
  margin-top: 6px;
}

.dpp-order-summary .is-total {
  font-size: 1.05rem;
}

.dpp-note {
  color: var(--muted);
  margin-top: 18px;
}

.dpp-trial-note {
  margin-top: 28px;
  padding: 22px 24px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
  text-align: center;
}

.dpp-trial-note p {
  margin: 12px 0 0;
  color: var(--muted);
}

.page-hero,
.final-cta {
  padding-bottom: 8px;
}

.product-price {
  margin: 16px 0;
  display: grid;
  gap: 8px;
  justify-items: center;
}

.product-page-shell {
  display: grid;
  gap: 28px;
  padding-top: 24px;
}

.product-header-stack {
  display: grid;
  gap: 18px;
  justify-items: center;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.product-header-stack h1 {
  margin: 0;
}

.product-status-stack {
  display: grid;
  gap: 14px;
  justify-items: center;
}

.product-status-stack .dpp-badges {
  display: grid;
  gap: 10px;
  justify-items: center;
  margin-top: 0;
}

.product-status-stack .dpp-badges span,
.product-status-stack .dpp-sale-flag {
  min-height: 30px;
  padding: 0 16px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-status-stack .dpp-badges span {
  background: linear-gradient(180deg, rgba(237, 242, 247, 0.98), rgba(226, 233, 241, 0.95));
  color: #37475c;
  border: 1px solid rgba(55, 71, 92, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.product-price .dpp-price-stack-product {
  display: grid;
  gap: 7px;
  justify-items: center;
}

.product-price .dpp-price-current {
  font-size: 2.55rem;
  line-height: 1;
  letter-spacing: -0.04em;
}

.dpp-sale-flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(180, 35, 24, 0.1);
  color: #9f2318;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dpp-price-caption {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 22px;
  padding: 0 2px;
  color: #6a7b90;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.product-price .dpp-price-compare {
  font-size: 1.06rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #b42318;
  text-decoration-color: #b42318;
  text-decoration-thickness: 2px;
}

.dpp-price-compare.is-hidden,
.dpp-price-caption.is-hidden,
.spec-grid li.is-hidden,
.dpp-button.is-hidden {
  display: none;
}

.dpp-price-tag .dpp-price-current {
  font-size: 1.82rem;
  line-height: 1;
  letter-spacing: -0.04em;
}

.dpp-price-tag .dpp-price-compare {
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #b42318;
  text-decoration-color: #b42318;
  text-decoration-thickness: 2px;
}

.dpp-price-tag .dpp-price-flag {
  min-height: 30px;
  padding: 0 16px;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
}

.dpp-price-tag .dpp-price-caption {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #6a7b90;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.dpp-product-card-top .dpp-price-tag-card {
  align-self: center;
  justify-items: center;
}

.product-price .dpp-price-current,
.product-price .dpp-price-compare {
  margin: 0;
}

.product-hero {
  align-items: stretch;
}

.product-hero-media,
.product-detail-panel {
  padding: 34px;
}

.product-detail-panel {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(17, 28, 42, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: grid;
  gap: 22px;
  align-content: start;
  justify-items: center;
  text-align: center;
}

.product-excerpt {
  color: var(--muted);
  max-width: 56ch;
  margin: 0 auto;
}

.product-detail-panel .product-excerpt {
  max-width: 42ch;
}

.product-actions {
  width: 100%;
  margin: 0;
  display: grid;
  gap: 16px;
  justify-items: center;
}

.product-actions form {
  width: min(100%, 360px);
}

.product-action-buttons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
}

.product-detail-panel .dpp-button-subtle[data-dpp-coa-button] {
  width: min(100%, 360px);
}

.product-overview-shell {
  display: grid;
  gap: 18px;
  margin-top: 42px;
}

.product-overview-heading {
  display: grid;
  gap: 8px;
  justify-items: center;
  text-align: center;
}

.product-overview-heading h2 {
  margin: 0;
  font-size: clamp(1.6rem, 2.6vw, 2.35rem);
  line-height: 1.08;
  font-family: "Iowan Old Style", Georgia, serif;
  color: var(--surface-strong);
}

.product-overview-shell .prose-shell {
  max-width: none;
  width: 100%;
}

.product-overview-shell .prose-shell > * {
  max-width: 76ch;
  margin-left: auto;
  margin-right: auto;
}

.article-meta {
  color: var(--muted);
  margin-bottom: 20px;
}

.prose-shell p,
.article-shell p,
.prose-shell li,
.article-shell li {
  color: #344255;
}

.prose-shell > *:first-child {
  margin-top: 0;
}

.site-footer {
  margin-top: 56px;
  padding: 20px 0 54px;
  position: relative;
}

.site-footer::before {
  content: "";
  display: block;
  width: min(1180px, calc(100vw - 40px));
  height: 1px;
  margin: 0 auto 34px;
  background: linear-gradient(90deg, rgba(8, 17, 27, 0), rgba(8, 17, 27, 0.18), rgba(8, 17, 27, 0));
}

.site-footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 28px;
  padding: 0 36px 36px;
  justify-items: center;
  align-items: start;
}

.site-footer-brand-column {
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 18px;
}

.footer-brand {
  margin-inline: auto;
}

.site-footer-brand-column p {
  max-width: 28ch;
  margin: 0;
}

.site-footer h3 {
  margin: 0 0 10px;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
  justify-items: center;
}

.site-footer li + li {
  margin-top: 0;
}

.dpp-empty-state,
.dpp-callout {
  padding: 38px;
  text-align: center;
  border-radius: var(--radius);
  border: 1px dashed rgba(17, 28, 42, 0.16);
  background: rgba(255, 255, 255, 0.68);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.hero-facts strong,
.evidence-list strong,
.policy-grid strong {
  display: block;
  font-size: 1rem;
  color: var(--surface-strong);
}

.hero-facts span,
.evidence-list span,
.policy-grid span {
  color: var(--muted);
  font-size: 0.93rem;
}

.hero-facts article,
.evidence-list article,
.policy-grid article {
  padding-top: 14px;
  border-top: 1px solid var(--line);
  text-align: center;
}

.editorial-break {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: center;
  justify-items: center;
  padding: 8px 4px 0;
  text-align: center;
}

.editorial-break p {
  max-width: 40ch;
  color: var(--muted);
  margin: 0 auto;
}

.evidence-list,
.policy-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.policy-grid {
  margin-top: 0;
}

.micro-note {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.9rem;
}

.dpp-link-list {
  gap: 14px;
}

.dpp-link-list a {
  padding: 18px 20px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
  font-weight: 600;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.dpp-link-list a:hover,
.dpp-link-list a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(33, 70, 93, 0.18);
  box-shadow: 0 18px 42px rgba(9, 17, 27, 0.1);
}

.dpp-filter-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  max-width: 820px;
  margin: 20px auto 0;
}

.dpp-filter-bar input {
  flex: 1 1 260px;
  max-width: 360px;
}

.dpp-filter-bar select {
  flex: 0 1 220px;
  max-width: 240px;
}

.prose-shell,
.article-shell {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 1180px) {
  .hero-grid,
  .split-feature,
  .product-hero,
  .dpp-two-column-auth,
  .dpp-cart-layout,
  .dpp-checkout-layout,
  .dpp-support-layout,
  .dpp-account-support-shell {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
    justify-items: center;
    text-align: center;
  }

  .hero-copy h1 {
    max-width: 11ch;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-visual,
  .split-feature-image,
  .product-hero-media,
  .product-detail-panel {
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
  }
}

@media (max-width: 1040px) {
  .statement-band,
  .section-heading-row,
  .final-cta-inner,
  .site-footer-grid,
  .dpp-product-grid,
  .dpp-panel-grid,
  .post-preview-grid,
  .hero-facts,
  .editorial-break,
  .evidence-list,
  .policy-grid,
  .panel-stack {
    grid-template-columns: 1fr;
  }

  .site-navigation {
    position: fixed;
    inset: 0;
    display: none;
    width: 100vw;
    min-height: 100dvh;
    padding: 112px 28px 36px;
    border-radius: 0;
    background:
      linear-gradient(180deg, rgba(248, 251, 254, 0.985), rgba(232, 240, 247, 0.975)),
      radial-gradient(circle at top right, rgba(23, 35, 49, 0.09), transparent 24%);
    border: 0;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.95);
    z-index: 54;
    align-content: center;
    justify-items: center;
  }

  .site-navigation.is-open {
    display: grid;
    gap: 26px;
  }

  .site-navigation ul,
  .nav-utilities {
    flex-direction: column;
    align-items: center;
    width: 100%;
    text-align: center;
    gap: 20px;
  }

  .site-navigation a {
    width: 100%;
    text-align: center;
    font-size: 1.22rem;
    font-weight: 700;
  }

  .site-header {
    padding-bottom: 12px;
  }

  .site-header-inner {
    gap: 10px;
  }

  .mobile-nav-dock {
    position: fixed;
    top: max(14px, env(safe-area-inset-top));
    left: auto;
    right: 14px;
    display: flex;
    justify-content: flex-end;
    z-index: 58;
    pointer-events: auto;
  }

  .promo-ribbon {
    padding: 12px 0;
  }

  .promo-ribbon-inner {
    width: min(820px, calc(100vw - 26px));
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
    gap: 12px;
    min-height: auto;
    padding: 17px 18px 18px;
    border-radius: 28px;
    text-align: center;
  }

  .promo-ribbon-graphic {
    width: min(100%, 230px);
    height: 112px;
  }

  .promo-ribbon-copy {
    justify-items: center;
  }

  .promo-ribbon p {
    justify-content: center;
    max-width: 34rem;
  }

  .promo-ribbon-perks {
    gap: 8px;
  }

  .promo-ribbon-perks span {
    min-height: 30px;
    padding: 0 11px;
    font-size: 0.66rem;
  }

  .promo-ribbon small {
    max-width: 30rem;
  }

  .promo-ribbon-link {
    min-height: 40px;
    padding: 0 18px;
  }

  .dpp-featured-carousel-shell {
    margin-inline: auto;
  }

  .dpp-carousel-frame {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
  }

  .dpp-carousel-window {
    overflow: hidden;
  }

  .dpp-product-carousel-track {
    display: flex;
    gap: 18px;
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 6px 0 10px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .dpp-product-carousel-track::-webkit-scrollbar {
    display: none;
  }

  .dpp-product-carousel-track .dpp-product-card {
    flex: 0 0 100%;
    min-width: 100%;
    margin: 0;
    scroll-snap-align: center;
  }

  .dpp-carousel-button {
    display: inline-flex;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 46px;
    height: 46px;
  }

  .dpp-carousel-button:hover,
  .dpp-carousel-button:focus-visible {
    transform: translateY(-50%);
  }

  .dpp-carousel-button.is-prev {
    left: 4px;
  }

  .dpp-carousel-button.is-next {
    right: 4px;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(15, 24, 38, 0.08);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(235, 243, 248, 0.9));
    border-radius: 999px;
    min-height: 48px;
    padding: 5px 6px 5px 14px;
    box-shadow:
      0 16px 34px rgba(8, 17, 27, 0.12),
      inset 0 1px 0 rgba(255, 255, 255, 0.9),
      inset 0 -1px 0 rgba(8, 17, 27, 0.05);
  }

  .nav-toggle[aria-expanded="true"] {
    border-color: rgba(7, 14, 24, 0.16);
    background:
      linear-gradient(180deg, rgba(8, 17, 27, 0.96), rgba(23, 34, 48, 0.96));
    color: #fff;
    box-shadow:
      0 22px 42px rgba(8, 17, 27, 0.22),
      inset 0 1px 0 rgba(255, 255, 255, 0.08);
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle-label {
    color: #fff;
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle-icon {
    background: rgba(255, 255, 255, 0.98);
    border-color: rgba(255, 255, 255, 0.98);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.96),
      0 10px 22px rgba(0, 0, 0, 0.16);
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle-icon span:nth-child(1) {
    transform: translateY(4px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle-icon span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle-icon span:nth-child(3) {
    transform: translateY(-4px) rotate(-45deg);
  }
}

@media (max-width: 720px) {
  .site-shell {
    width: calc(100vw - 22px);
  }

  .hero-copy h1 {
    font-size: clamp(1.45rem, 8vw, 1.92rem);
    max-width: 12ch;
  }

  .page-hero-inner h1,
  .product-hero-copy h1 {
    font-size: clamp(2.2rem, 12vw, 3.2rem);
  }

  .dpp-two-up,
  .dpp-link-list {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 26px;
    padding-bottom: 12px;
  }

  .page-hero-inner,
  .dpp-form-shell,
  .dpp-order-summary,
  .dpp-table-wrap,
  .prose-shell,
  .article-shell,
  .dpp-panel,
  .post-preview,
  .hero-visual,
  .split-feature-image,
  .product-hero-media,
  .product-detail-panel {
    padding: 24px;
  }

  .product-action-buttons {
    grid-template-columns: 1fr;
  }

  .dpp-cart-table-wrap {
    padding: 28px 24px;
  }

  .dpp-account-profile {
    width: 100%;
  }

  .brand-lockup img,
  .footer-brand {
    width: min(140px, 39vw);
  }

  .brand-copy strong,
  .footer-brand-copy strong {
    font-size: 1.18rem;
  }

  .brand-copy small,
  .footer-brand-copy small {
    font-size: 0.62rem;
    letter-spacing: 0.12em;
  }

  .nav-toggle {
    min-height: 44px;
    padding: 4px 5px 4px 12px;
  }

  .promo-ribbon {
    padding: 9px 0;
  }

  .promo-ribbon-inner {
    width: calc(100vw - 22px);
    gap: 9px;
    padding: 13px 13px 14px;
    border-radius: 24px;
  }

  .promo-ribbon-graphic {
    width: min(100%, 224px);
    height: 106px;
    border-radius: var(--image-radius);
  }

  .promo-ribbon-kicker {
    font-size: 0.62rem;
    letter-spacing: 0.14em;
  }

  .promo-ribbon p {
    display: grid;
    justify-items: center;
    gap: 5px;
    font-size: 0.95rem;
  }

  .promo-ribbon-divider {
    width: 32px;
    height: 2px;
    box-shadow: none;
  }

  .promo-ribbon small {
    font-size: 0.7rem;
    line-height: 1.35;
  }

  .promo-ribbon-perks {
    display: grid;
    grid-template-columns: 1fr;
    width: min(100%, 270px);
  }

  .promo-ribbon-perks span {
    width: 100%;
  }

  .nav-toggle-label {
    font-size: 0.96rem;
  }

  .nav-toggle-icon {
    min-width: 34px;
    min-height: 34px;
    padding: 0 9px;
  }

  .nav-toggle-icon span {
    width: 13px;
  }

  .site-header-inner {
    gap: 14px;
  }

  .mobile-nav-dock,
  .site-navigation {
    right: 10px;
  }

  .site-navigation {
    right: auto;
    padding: 104px 22px 32px;
  }

  .dpp-featured-carousel-shell {
    margin-inline: auto;
  }

  .dpp-product-carousel-track {
    gap: 18px;
    padding-inline: 0;
  }

  .dpp-carousel-button {
    width: 40px;
    height: 40px;
  }

  .dpp-carousel-button.is-prev {
    left: 2px;
  }

  .dpp-carousel-button.is-next {
    right: 2px;
  }

  .dpp-carousel-hint {
    display: block;
    font-size: 0.78rem;
    letter-spacing: 0.06em;
  }
}

@media (prefers-reduced-motion: reduce) {
  .promo-ribbon::before,
  .promo-ribbon::after,
  .promo-ribbon-inner,
  .promo-ribbon-inner::before,
  .promo-ribbon-inner::after,
  .dpp-surface-dna::before,
  .hero-visual::before,
  .split-feature-image::before,
  .product-hero-media::before,
  .product-detail-panel::before,
  .dpp-panel::before,
  .dpp-form-shell::before,
  .dpp-order-summary::before,
  .dpp-table-wrap::before,
  .post-preview::before,
  .statement-band::before,
  .final-cta-inner::before,
  .page-hero-inner::before,
  .prose-shell::before,
  .article-shell::before,
  .dpp-product-card::before,
  .dpp-product-card-media::before,
  .dpp-product-card-media::after,
  .product-hero-media::after,
  .dpp-empty-state::before,
  .dpp-callout::before,
  .dpp-captcha-panel::before {
    animation: none;
  }

  .dpp-product-card-media::after,
  .product-hero-media::after {
    filter: none;
    opacity: var(--product-dna-opacity, 0.075);
  }

  .dpp-product-card-media::before {
    filter: none;
    opacity: 0.18;
  }

  .promo-ribbon-link {
    transition: none;
  }
}
