:root {
  --midnight: #0f1923;
  --midnight-2: #172635;
  --ink: #0a0f14;
  --mute: #5a6470;
  --gold: #c9a962;
  --gold-deep: #a67623;
  --parchment: #f5f0e6;
  --paper: #fbfaf6;
  --line: rgba(15, 25, 35, 0.13);
  --gold-line: rgba(201, 169, 98, 0.52);
  --shadow: 0 26px 82px rgba(15, 25, 35, 0.11);
  --soft-shadow: 0 18px 42px rgba(15, 25, 35, 0.08);
  --radius: 0px;
  --ease: cubic-bezier(0.22, 0.9, 0.19, 1);
  --display-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --brand-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --ui-sans: "DM Sans", Aptos, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--parchment);
  overflow-x: hidden;
}

html:has(body.reference-page) {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

html:has(body.modal-open) {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

html:has(body.reference-page)::-webkit-scrollbar,
html:has(body.modal-open)::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at 50% 2%, rgba(201, 169, 98, 0.09), transparent 28rem),
    linear-gradient(180deg, rgba(251, 250, 246, 0.92), rgba(245, 240, 230, 0.96)),
    url("./assets/parchment-texture.png");
  background-size: auto, auto, 980px auto;
  font-family: var(--ui-sans);
  overflow-x: hidden;
}

body.reference-page,
body.modal-open {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

body.reference-page::-webkit-scrollbar,
body.modal-open::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

body.menu-open {
  overflow: hidden;
}

body.reference-page .site-footer {
  display: none;
}

body.reference-page main {
  min-height: 100vh;
}

body.reference-page:has(.about) main {
  min-height: 0;
}

body.reference-page:has(.about) .site-footer {
  display: grid;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

section[id] {
  scroll-margin-top: 96px;
}

main#top {
  scroll-margin-top: 96px;
}

.section-shell {
  width: min(calc(100% - 58px), 1760px);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 76px;
  padding: 12px 30px;
  background: rgba(251, 250, 246, 0.88);
  border-bottom: 1px solid rgba(201, 169, 98, 0.22);
  backdrop-filter: blur(18px);
}

.brand,
.footer-brand {
  display: grid;
  gap: 4px;
  width: max-content;
  color: var(--midnight);
}

.brand span,
.footer-brand span {
  font-family: var(--brand-serif);
  font-size: 1.72rem;
  font-style: italic;
  font-weight: 500;
  line-height: 1;
}

.brand small,
.footer-brand small {
  color: var(--gold-deep);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.gold-dot {
  color: var(--gold-deep);
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 46px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 520;
}

.main-nav a,
.mobile-menu a,
.btn {
  transition: color 260ms var(--ease), background 260ms var(--ease), border-color 260ms var(--ease), transform 260ms var(--ease);
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--gold-deep);
}

.main-nav a[aria-current="page"] {
  color: var(--gold-deep);
}

.nav-actions,
.hero-actions,
.split-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 1px solid var(--gold-line);
  border-radius: 0;
  padding: 0 28px;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.055em;
  line-height: 1;
  text-transform: uppercase;
}

.btn::after {
  content: "";
  width: 23px;
  height: 1px;
  display: none;
  background: currentColor;
}

.btn-dark {
  color: var(--gold);
  background: var(--midnight);
  border-color: var(--midnight);
  box-shadow: 0 16px 34px rgba(15, 25, 35, 0.18);
}

.btn-dark::after {
  display: none;
}

.btn-ghost {
  color: var(--gold-deep);
  background: rgba(255, 255, 255, 0.48);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-dark:hover,
.btn-dark:focus-visible {
  color: var(--midnight);
  background: var(--gold);
  border-color: var(--gold);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  color: var(--midnight);
  background: rgba(201, 169, 98, 0.16);
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.hero {
  display: grid;
  gap: 12px;
  padding-top: 20px;
  padding-bottom: 38px;
}

.hero-copy,
.center-intro {
  display: grid;
  justify-items: center;
  min-width: 0;
  text-align: center;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  width: 100%;
  max-width: min(100%, 1060px);
  color: var(--midnight);
  font-family: var(--display-serif);
  font-weight: 600;
  line-height: 0.88;
  letter-spacing: 0;
  overflow-wrap: break-word;
  text-wrap: balance;
}

h1 {
  max-width: min(100%, 1210px);
  margin-bottom: 14px;
  font-size: 4.56rem;
}

h2 {
  margin-bottom: 22px;
  font-size: 4.82rem;
}

h3 {
  margin-bottom: 12px;
  color: var(--midnight);
  font-family: var(--display-serif);
  font-size: 1.82rem;
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: 0;
}

p {
  color: #4f5b66;
  font-size: 1.05rem;
  line-height: 1.55;
}

.hero-copy > p {
  margin-bottom: 20px;
  color: #4f5b66;
  font-size: 1.2rem;
}

.section-kicker {
  position: relative;
  margin-bottom: 30px;
  color: var(--gold-deep);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-kicker::after {
  content: "";
  display: block;
  width: 47px;
  height: 1px;
  margin-top: 15px;
  background: currentColor;
}

.center-intro .section-kicker::before {
  content: "";
  display: inline-block;
  width: 48px;
  height: 1px;
  margin-right: 18px;
  vertical-align: middle;
  background: currentColor;
}

.center-intro .section-kicker::after {
  display: inline-block;
  margin: 0 0 0 18px;
  vertical-align: middle;
}

.center-intro p:not(.section-kicker) {
  max-width: 840px;
  color: #4f5b66;
  font-size: 1.05rem;
  text-transform: none;
}

.formats .center-intro p:not(.section-kicker) {
  text-transform: uppercase;
}

.page-hub {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(420px, 0.72fr);
  gap: 46px 72px;
  align-items: start;
  padding-top: 72px;
  padding-bottom: 58px;
}

.hub-copy {
  min-width: 0;
}

.hub-copy h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(5.2rem, 8vw, 8.1rem);
  line-height: 0.86;
}

.hub-copy > p:not(.section-kicker) {
  max-width: 650px;
  margin-bottom: 28px;
  color: #4f5b66;
  font-size: 1.24rem;
  line-height: 1.5;
}

.hub-product {
  margin: 12px 0 0;
  padding: 30px 34px 22px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.45);
}

.hub-product img {
  width: min(680px, 100%);
  margin-inline: auto;
  filter: drop-shadow(0 24px 22px rgba(15, 25, 35, 0.14));
}

.hub-product figcaption {
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid var(--gold-line);
  color: var(--gold-deep);
  font-size: 0.82rem;
  font-weight: 850;
  line-height: 1.4;
  text-transform: uppercase;
}

.page-directory {
  grid-column: 1 / -1;
  display: grid;
  margin-top: 10px;
  border-top: 1px solid var(--gold-line);
}

.directory-row {
  display: grid;
  grid-template-columns: 76px minmax(180px, 0.44fr) 1fr 88px;
  gap: 24px;
  align-items: center;
  min-height: 78px;
  border-bottom: 1px solid var(--line);
  color: var(--midnight);
  transition: background 240ms var(--ease), transform 240ms var(--ease);
}

.directory-row:hover,
.directory-row:focus-visible {
  background: rgba(255, 255, 255, 0.42);
  transform: translateX(4px);
}

.directory-row small,
.directory-row strong {
  color: var(--gold-deep);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.directory-row span {
  font-family: var(--display-serif);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
}

.directory-row em {
  color: var(--mute);
  font-size: 1rem;
  font-style: normal;
  line-height: 1.45;
}

.directory-row strong {
  justify-self: end;
}

.hero-stage {
  position: relative;
  width: min(100%, 1580px);
  margin-inline: auto;
  padding: 18px 20px 0;
  border: 1px solid rgba(15, 25, 35, 0.11);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.46);
}

.sem-triptych {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.sem-triptych figure,
.sem-annotated,
.inquiry-sem {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 12px;
  background: #111;
}

.sem-triptych img {
  width: 100%;
  height: 308px;
  object-fit: cover;
  filter: grayscale(1) contrast(1.08);
}

.sem-triptych figcaption,
.inquiry-sem figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  color: #fff;
  font-size: 1rem;
}

.sem-triptych figcaption::after,
.inquiry-sem figcaption::after {
  content: "";
  display: block;
  width: 58px;
  height: 2px;
  margin-top: 6px;
  background: #fff;
}

.product-line {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 18px;
}

.hero-products {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -112px;
  z-index: 2;
  min-height: 0;
  pointer-events: none;
}

.product-asset {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center bottom;
  user-select: none;
}

.hero-lineup {
  width: min(940px, 86%);
  margin-inline: auto;
  filter: drop-shadow(0 30px 26px rgba(15, 25, 35, 0.18));
}

.hero-card-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  width: min(100%, 1530px);
  margin: 110px auto 0;
}

.nav-card {
  display: grid;
  grid-template-columns: 78px 1fr 34px;
  gap: 22px;
  align-items: center;
  min-height: 118px;
  padding: 18px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: var(--soft-shadow);
}

.nav-card::after {
  content: "";
  grid-column: 3;
  grid-row: 1 / span 2;
  width: 24px;
  height: 1px;
  background: var(--gold-deep);
}

.nav-card .round-icon {
  grid-row: 1 / span 2;
}

.cred-list .line-icon,
.dark-cta .round-icon,
.process-rail .round-icon,
.quality-strip .line-icon,
.quality-strip .patent-icon,
.boundary-row .line-icon,
.boundary-row .amazon-mark,
.program-bottom .line-icon {
  grid-row: 1 / span 2;
}

.nav-card strong,
.nav-card em,
.cred-list b,
.cred-list em,
.dark-cta b,
.dark-cta em,
.process-rail b,
.process-rail em,
.quality-strip b,
.quality-strip em,
.boundary-row b,
.boundary-row em,
.program-bottom b,
.program-bottom em {
  grid-column: 2;
}

.nav-card strong,
.nav-card em,
.cred-list b,
.cred-list em,
.dark-cta b,
.dark-cta em,
.process-rail b,
.process-rail em,
.quality-strip b,
.quality-strip em,
.boundary-row b,
.boundary-row em,
.program-bottom b,
.program-bottom em {
  display: block;
  font-style: normal;
}

.nav-card strong {
  margin-bottom: 7px;
  font-size: 1.35rem;
  font-weight: 650;
}

.nav-card em {
  color: var(--mute);
  line-height: 1.45;
}

.round-icon,
.line-icon,
.patent-icon,
.amazon-mark {
  position: relative;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 64px;
  height: 64px;
  border-radius: 50%;
}

.round-icon {
  color: var(--gold);
  background: var(--midnight);
}

.line-icon,
.patent-icon,
.amazon-mark {
  color: var(--gold-deep);
  border: 1px solid rgba(201, 169, 98, 0.4);
}

.round-icon::before,
.line-icon::before,
.patent-icon::before,
.amazon-mark::before {
  content: "";
  width: 30px;
  height: 30px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.leaf::before { background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M25 5C14 6 7 12 6 25C19 24 25 17 25 5Z' stroke='%23C9A962' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M9 23L20 12' stroke='%23C9A962' stroke-width='1.9' stroke-linecap='round'/%3E%3C/svg%3E"); }
.bottle-icon::before { background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 4H20V9L23 12V27H9V12L12 9V4Z' stroke='%23C9A962' stroke-width='1.9' stroke-linejoin='round'/%3E%3Cpath d='M12 9H20M11 18H21' stroke='%23C9A962' stroke-width='1.9' stroke-linecap='round'/%3E%3C/svg%3E"); }
.handshake::before { background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 17L11 11L16 16L21 11L27 17' stroke='%23C9A962' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M11 19L16 24L21 19M8 14L5 17L10 22M24 14L27 17L22 22' stroke='%23C9A962' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
.lock::before { background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='8' y='14' width='16' height='13' rx='2' stroke='%23C9A962' stroke-width='1.9'/%3E%3Cpath d='M12 14V10C12 7.8 13.8 6 16 6C18.2 6 20 7.8 20 10V14M16 19V23' stroke='%23C9A962' stroke-width='1.9' stroke-linecap='round'/%3E%3C/svg%3E"); }
.tag::before { background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 16L16 5H27V16L16 27L5 16Z' stroke='%23C9A962' stroke-width='1.9' stroke-linejoin='round'/%3E%3Ccircle cx='22' cy='10' r='1.8' fill='%23C9A962'/%3E%3C/svg%3E"); }
.box::before { background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 10L16 5L26 10V23L16 28L6 23V10Z' stroke='%23C9A962' stroke-width='1.9' stroke-linejoin='round'/%3E%3Cpath d='M6 10L16 15L26 10M16 15V28' stroke='%23C9A962' stroke-width='1.9' stroke-linejoin='round'/%3E%3C/svg%3E"); }
.users::before { background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='16' cy='11' r='4' stroke='%23C9A962' stroke-width='1.9'/%3E%3Cpath d='M8 26C9 21 12 18 16 18C20 18 23 21 24 26M7 14C5 14 4 16 4 18M25 14C27 14 28 16 28 18' stroke='%23C9A962' stroke-width='1.9' stroke-linecap='round'/%3E%3C/svg%3E"); }
.chat::before { background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 8H26V21H15L9 26V21H6V8Z' stroke='%23C9A962' stroke-width='1.9' stroke-linejoin='round'/%3E%3Cpath d='M11 14H21M11 18H17' stroke='%23C9A962' stroke-width='1.9' stroke-linecap='round'/%3E%3C/svg%3E"); }
.shield::before { background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16 4L25 8V15C25 21 21 25 16 28C11 25 7 21 7 15V8L16 4Z' stroke='%23C9A962' stroke-width='1.9' stroke-linejoin='round'/%3E%3Cpath d='M12 16L15 19L21 12' stroke='%23C9A962' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
.bars::before { background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 25V17H13V25H8ZM15 25V11H20V25H15ZM22 25V7H27V25H22Z' stroke='%23C9A962' stroke-width='1.9' stroke-linejoin='round'/%3E%3C/svg%3E"); }
.factory::before { background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 26V14L12 18V14L19 18V9H25V26H5Z' stroke='%23C9A962' stroke-width='1.9' stroke-linejoin='round'/%3E%3Cpath d='M9 22H12M16 22H19M23 22H25' stroke='%23C9A962' stroke-width='1.9' stroke-linecap='round'/%3E%3C/svg%3E"); }
.document::before { background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 4H20L25 9V28H9V4Z' stroke='%23C9A962' stroke-width='1.9' stroke-linejoin='round'/%3E%3Cpath d='M20 4V10H25M13 16H21M13 21H21' stroke='%23C9A962' stroke-width='1.9' stroke-linecap='round'/%3E%3C/svg%3E"); }
.gear::before { background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='16' cy='16' r='4' stroke='%23C9A962' stroke-width='1.9'/%3E%3Cpath d='M16 4V8M16 24V28M4 16H8M24 16H28M7.5 7.5L10.3 10.3M21.7 21.7L24.5 24.5M24.5 7.5L21.7 10.3M10.3 21.7L7.5 24.5' stroke='%23C9A962' stroke-width='1.9' stroke-linecap='round'/%3E%3C/svg%3E"); }
.beaker::before { background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 5H20M14 5V13L8 24C7.2 25.5 8.3 27 10 27H22C23.7 27 24.8 25.5 24 24L18 13V5' stroke='%23C9A962' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M10.5 22H21.5M13 17H19' stroke='%23C9A962' stroke-width='1.9' stroke-linecap='round'/%3E%3C/svg%3E"); }
.molecule::before { background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='8' cy='17' r='3' stroke='%23C9A962' stroke-width='1.9'/%3E%3Ccircle cx='17' cy='8' r='3' stroke='%23C9A962' stroke-width='1.9'/%3E%3Ccircle cx='23' cy='21' r='3' stroke='%23C9A962' stroke-width='1.9'/%3E%3Cpath d='M10 15L15 10M19 10L22 18M11 18L20 21' stroke='%23C9A962' stroke-width='1.9' stroke-linecap='round'/%3E%3C/svg%3E"); }
.matrix::before { background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='16' cy='16' r='3' stroke='%23C9A962' stroke-width='1.9'/%3E%3Ccircle cx='8' cy='10' r='2' stroke='%23C9A962' stroke-width='1.9'/%3E%3Ccircle cx='24' cy='10' r='2' stroke='%23C9A962' stroke-width='1.9'/%3E%3Ccircle cx='8' cy='24' r='2' stroke='%23C9A962' stroke-width='1.9'/%3E%3Ccircle cx='24' cy='24' r='2' stroke='%23C9A962' stroke-width='1.9'/%3E%3Cpath d='M10 11L14 15M22 11L18 15M10 23L14 18M22 23L18 18' stroke='%23C9A962' stroke-width='1.9' stroke-linecap='round'/%3E%3C/svg%3E"); }
.patent-icon::before { content: "P"; }
.amazon-mark::before { content: "a"; font-family: var(--display-serif); font-size: 2.3rem; color: var(--midnight); }

.technology {
  display: grid;
  grid-template-columns: minmax(420px, 0.78fr) minmax(520px, 1.22fr);
  gap: 64px;
  padding-top: 50px;
  padding-bottom: 42px;
}

.tech-copy > p:not(.section-kicker) {
  max-width: 610px;
  font-size: 1.25rem;
}

.cred-list {
  display: grid;
  margin-top: 32px;
  border-top: 1px solid var(--gold-line);
}

.cred-list article {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 20px;
  align-items: center;
  min-height: 74px;
  border-bottom: 1px solid rgba(15, 25, 35, 0.1);
}

.cred-list b,
.quality-strip b,
.boundary-row b,
.program-bottom b {
  color: var(--midnight);
  font-size: 0.86rem;
  font-weight: 850;
  text-transform: uppercase;
}

.cred-list em,
.quality-strip em,
.boundary-row em,
.program-bottom em {
  color: var(--mute);
  line-height: 1.42;
}

.tech-visual {
  display: grid;
  gap: 16px;
}

.sem-annotated {
  height: 405px;
  border-radius: 18px;
}

.sem-annotated img,
.inquiry-sem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.08);
}

.technology .sem-annotated img {
  object-fit: fill;
}

.measure {
  position: absolute;
  right: 34px;
  color: var(--gold);
  font-size: 1rem;
}

.measure::before {
  content: "";
  display: block;
  width: 1px;
  height: 74px;
  margin: 0 auto 8px;
  background: var(--gold);
}

.measure-a {
  top: 72px;
}

.measure-b {
  top: 230px;
}

.callout {
  position: absolute;
  border-color: var(--gold);
  border-style: solid;
  border-width: 1px 1px 0 0;
}

.callout::before {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  background: rgba(201, 169, 98, 0.08);
}

.callout-a {
  right: 158px;
  top: 184px;
  width: 244px;
  height: 120px;
}

.callout-a::before {
  left: -11px;
  top: -11px;
}

.callout-b {
  right: 238px;
  top: 294px;
  width: 180px;
  height: 92px;
}

.callout-b::before {
  left: -11px;
  top: -11px;
}

.layer-card {
  display: grid;
  grid-template-columns: 104px minmax(210px, 0.64fr) 1fr;
  gap: 28px;
  align-items: center;
  min-height: 145px;
  padding: 22px 32px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.46);
}

.layer-card small,
.format-card header span,
.promise-panel small,
.mini-process span,
.partner-form span,
.sample-form span {
  color: var(--gold-deep);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.layer-card ul,
.about-columns ul,
.info-card-row ul {
  margin: 0;
  padding-left: 18px;
  color: var(--mute);
  line-height: 1.58;
}

.section-tabs {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 34px;
  margin-top: 18px;
  color: var(--midnight);
  font-size: 0.92rem;
  font-weight: 850;
  text-align: center;
  text-transform: uppercase;
}

.section-tabs::before,
.section-tabs::after {
  content: "";
  height: 1px;
  background: var(--gold-line);
}

.section-tabs span:not(:last-child)::after,
.section-tabs a:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 28px;
  margin-left: 34px;
  vertical-align: middle;
  background: var(--gold-line);
}

.formats,
.partner-program,
.partner-inquiry,
.sample-kit,
.about {
  padding-top: 48px;
  padding-bottom: 42px;
}

.format-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.format-card {
  display: grid;
  min-height: 480px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.5);
}

.format-card header {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  padding: 18px 20px 14px;
}

.format-card header span {
  font-family: var(--display-serif);
  font-size: 1.65rem;
  font-weight: 500;
}

.format-card header b {
  display: block;
  color: var(--midnight);
  font-weight: 900;
  text-transform: uppercase;
}

.format-card header em {
  display: block;
  color: var(--ink);
  font-size: 1.05rem;
  font-style: normal;
  line-height: 1.4;
}

.format-stage {
  position: relative;
  display: grid;
  place-items: end center;
  min-height: 292px;
  overflow: hidden;
}

.format-stage > img:not(.product-asset) {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 64%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.08);
}

.format-stage::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(251, 250, 246, 0.98) 40%);
}

.format-stage .product-asset,
.format-stage .asset-combo {
  z-index: 2;
}

.format-asset {
  position: relative;
  align-self: end;
  margin-bottom: 14px;
  max-height: 248px;
  filter: drop-shadow(0 22px 18px rgba(15, 25, 35, 0.18));
}

.tablets-asset {
  width: 158px;
}

.stick-box-asset {
  width: min(255px, 84%);
  max-height: 270px;
}

.tub-asset {
  width: 214px;
}

.pouch-asset {
  width: 178px;
}

.asset-combo {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 8px;
  margin-bottom: 14px;
  width: 100%;
  filter: drop-shadow(0 22px 18px rgba(15, 25, 35, 0.18));
}

.drops-asset {
  width: 108px;
  max-height: 250px;
}

.vial-asset {
  width: 98px;
  max-height: 165px;
}

.format-card footer {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  align-self: end;
  padding: 12px 12px 16px;
}

.format-card footer span {
  display: grid;
  place-items: center;
  min-height: 42px;
  padding: 4px;
  border: 1px solid rgba(201, 169, 98, 0.38);
  border-radius: 6px;
  color: var(--midnight);
  font-size: 0.54rem;
  font-weight: 850;
  text-align: center;
  text-transform: uppercase;
}

.dark-cta {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
  margin-top: 20px;
  overflow: hidden;
  border-radius: 18px;
  background: var(--gold-line);
  box-shadow: var(--shadow);
}

.dark-cta article,
.dark-cta a {
  display: grid;
  grid-template-columns: 114px 1fr;
  gap: 26px;
  align-items: center;
  align-content: center;
  min-height: 104px;
  padding: 18px 34px;
  color: #fff;
  background: var(--midnight);
}

.dark-cta .round-icon {
  width: 86px;
  height: 86px;
  color: var(--gold);
  border: 1px solid var(--gold-deep);
  background: transparent;
}

.dark-cta .round-icon::before {
  width: 38px;
  height: 38px;
}

.dark-cta b {
  color: var(--gold);
  font-size: 1rem;
  font-weight: 850;
  text-transform: uppercase;
}

.dark-cta em {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1rem;
  line-height: 1.42;
}

.dark-cta article:last-child {
  grid-template-columns: 1fr;
}

.dark-cta article:last-child b,
.dark-cta article:last-child em {
  grid-column: 1;
}

.partner-program .center-intro h2 {
  font-size: 4.7rem;
}

.program-grid {
  display: grid;
  grid-template-columns: 0.78fr 0.82fr 0.42fr;
  gap: 0;
  margin-top: 22px;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}

.program-product-panel,
.promise-panel,
.sem-side-card {
  min-height: 390px;
  background: rgba(255, 255, 255, 0.44);
}

.program-product-panel {
  position: relative;
  padding: 34px 28px 28px;
  display: grid;
  place-items: end center;
  overflow: hidden;
}

.partner-kit-asset {
  width: min(760px, 110%);
  max-width: none;
  filter: drop-shadow(0 26px 24px rgba(15, 25, 35, 0.16));
}

.promise-panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

.promise-panel article {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 11px;
  padding: 24px 24px;
  text-align: center;
}

.promise-panel article:not(:last-child) {
  border-right: 1px solid var(--line);
}

.promise-panel small {
  color: var(--gold-deep);
  font-family: var(--display-serif);
  font-size: 2.2rem;
  font-weight: 400;
}

.promise-panel p {
  margin: 0;
  font-size: 1rem;
}

.sem-side-card {
  display: grid;
  align-content: start;
}

.sem-side-card img {
  width: 100%;
  height: 224px;
  object-fit: cover;
  filter: grayscale(1) contrast(1.08);
}

.sem-side-card b,
.sem-side-card p {
  margin-inline: 32px;
}

.sem-side-card b {
  margin-top: 28px;
  color: var(--gold-deep);
  font-weight: 850;
  text-transform: uppercase;
}

.process-rail {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 16px;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.44);
}

.process-rail article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 14px;
  align-items: center;
}

.process-rail b {
  color: var(--midnight);
  font-size: 0.88rem;
  font-weight: 850;
  text-transform: uppercase;
}

.process-rail em {
  color: var(--mute);
  font-size: 0.95rem;
  line-height: 1.38;
}

.program-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 22px;
}

.program-bottom article {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  align-items: center;
}

.partner-inquiry {
  padding-top: 32px;
}

.inquiry-shell {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 30px;
  padding: 24px 30px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.42);
}

.inquiry-copy {
  display: grid;
  align-content: start;
}

.inquiry-brand {
  margin-bottom: 20px;
}

.inquiry-copy h2 {
  max-width: 640px;
  margin-bottom: 10px;
  font-size: 4.05rem;
}

.inquiry-copy > p:not(.section-kicker) {
  max-width: 600px;
}

.inquiry-sem {
  height: 136px;
  margin: 14px 0 12px;
  border-radius: 8px;
}

.boundary-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.boundary-row article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 58px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.42);
}

.boundary-row .line-icon,
.boundary-row .amazon-mark {
  width: 42px;
  height: 42px;
}

.boundary-row b {
  font-size: 0.7rem;
}

.boundary-row em {
  font-size: 0.72rem;
}

.mini-process {
  margin-top: 12px;
  padding: 12px 18px 14px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.36);
}

.mini-process ol {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.mini-process li {
  color: var(--midnight);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.mini-process b {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-right: 10px;
  border-radius: 0;
  color: #fff;
  background: var(--midnight);
  font-weight: 850;
}

.inquiry-products {
  width: min(620px, 100%);
  margin-top: 10px;
  filter: drop-shadow(0 22px 18px rgba(15, 25, 35, 0.14));
}

.partner-form,
.sample-form {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: 26px 30px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.54);
}

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

.partner-form .full,
.format-checks,
.partner-form button,
.partner-form .form-status {
  grid-column: 1 / -1;
}

label,
.format-checks {
  display: grid;
  gap: 9px;
}

.partner-form span em,
.format-checks em {
  color: #727b82;
  font-style: normal;
  font-weight: 500;
}

input,
select,
textarea {
  width: 100%;
  min-height: 42px;
  border: 1px solid rgba(15, 25, 35, 0.16);
  border-radius: 7px;
  padding: 0 16px;
  color: var(--midnight);
  background: rgba(255, 255, 255, 0.66);
}

textarea {
  min-height: 74px;
  padding-top: 14px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 0;
  border-color: var(--gold-deep);
  box-shadow: 0 0 0 4px rgba(201, 169, 98, 0.15);
}

.format-checks {
  border: 0;
  margin: 0;
  padding: 0;
}

.format-checks legend {
  margin-bottom: 10px;
  color: var(--gold-deep);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.format-checks {
  grid-template-columns: repeat(5, auto);
  align-items: center;
  justify-content: start;
  column-gap: 26px;
}

.format-checks label {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.format-checks input {
  width: 16px;
  min-height: 16px;
  accent-color: var(--gold-deep);
}

.form-status {
  margin: 0;
  color: var(--mute);
  text-align: center;
}

.form-status a {
  color: var(--gold-deep);
  font-weight: 800;
}

.partner-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 34px;
  background: rgba(10, 15, 20, 0.44);
  backdrop-filter: blur(7px) saturate(0.82);
}

.partner-modal-backdrop[hidden] {
  display: none;
}

body.modal-open {
  overflow: hidden;
}

.partner-modal {
  position: relative;
  display: grid;
  grid-template-columns: minmax(420px, 0.95fr) minmax(460px, 1fr);
  width: min(1020px, calc(100vw - 68px));
  height: min(662px, calc(100vh - 68px));
  max-height: calc(100vh - 68px);
  overflow: hidden;
  border: 1px solid var(--gold-line);
  border-radius: 14px;
  background:
    radial-gradient(circle at 18% 18%, rgba(201, 169, 98, 0.11), transparent 18rem),
    rgba(251, 250, 246, 0.98);
  box-shadow: 0 32px 90px rgba(10, 15, 20, 0.34);
}

.partner-modal::before {
  content: "";
  position: absolute;
  inset: 5px;
  pointer-events: none;
  border: 1px solid rgba(201, 169, 98, 0.36);
  border-radius: 10px;
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 22px;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid transparent;
  padding: 0;
  color: var(--gold-deep);
  background: transparent;
  border-radius: 50%;
  cursor: pointer;
  font-family: var(--ui-sans);
  font-size: 2rem;
  font-weight: 300;
  line-height: 1;
}

.modal-close:focus-visible {
  outline: 0;
  border-color: rgba(166, 109, 19, 0.34);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 0 0 3px rgba(166, 109, 19, 0.16);
}

.source-v2-home .modal-close:focus-visible {
  outline: 0;
}

.modal-copy {
  position: relative;
  display: grid;
  align-content: start;
  padding: 34px 40px 30px;
}

.modal-copy::after {
  content: "";
  position: absolute;
  top: 36px;
  right: 0;
  bottom: 36px;
  width: 1px;
  background: var(--line);
}

.modal-brand {
  margin-bottom: 10px;
}

.modal-brand span {
  font-size: 2rem;
}

.modal-copy .section-kicker {
  margin-bottom: 14px;
  font-size: 0.76rem;
}

.modal-copy .section-kicker::after {
  display: none;
}

.modal-copy h2 {
  max-width: none;
  margin-bottom: 12px;
  font-size: 2.68rem;
  line-height: 1;
  white-space: nowrap;
}

.modal-copy > p:not(.section-kicker) {
  max-width: 360px;
  margin-bottom: 16px;
  font-size: 0.98rem;
  line-height: 1.42;
}

.modal-sem {
  position: relative;
  height: 158px;
  margin: 0 0 16px;
  overflow: hidden;
  border: 1px solid rgba(15, 25, 35, 0.13);
  border-radius: 8px;
}

.modal-sem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.08);
}

.modal-sem figcaption {
  position: absolute;
  left: 18px;
  bottom: 16px;
  color: #fff;
  font-size: 0.9rem;
}

.modal-sem figcaption::after {
  content: "";
  display: block;
  width: 42px;
  height: 1px;
  margin-top: 4px;
  background: #fff;
}

.modal-boundaries {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.modal-boundaries article {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 40px;
  padding: 7px 10px;
  border: 1px solid var(--gold-line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.44);
}

.modal-boundaries .line-icon,
.modal-boundaries .amazon-mark {
  width: 24px;
  height: 24px;
  border: 0;
}

.modal-boundaries .line-icon::before,
.modal-boundaries .amazon-mark::before {
  width: 22px;
  height: 22px;
  font-size: 1.55rem;
}

.modal-boundaries b {
  color: var(--midnight);
  font-size: 0.63rem;
  font-weight: 750;
  line-height: 1.15;
}

.modal-products {
  width: min(500px, 100%);
  margin: 18px auto 0;
  filter: drop-shadow(0 24px 22px rgba(15, 25, 35, 0.14));
}

.sample-kit-modal {
  background:
    radial-gradient(circle at 84% 12%, rgba(0, 63, 145, 0.12), transparent 18rem),
    radial-gradient(circle at 16% 18%, rgba(201, 169, 98, 0.09), transparent 16rem),
    rgba(251, 250, 246, 0.98);
}

.sample-kit-modal .modal-copy {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(244, 248, 251, 0.18)),
    radial-gradient(circle at 58% 88%, rgba(0, 63, 145, 0.08), transparent 13rem);
}

.sample-kit-modal .modal-copy h2 {
  max-width: 360px;
  white-space: normal;
}

.sample-kit-modal .modal-copy > p:not(.section-kicker) {
  max-width: 380px;
}

.sample-kit-modal .sample-modal-boundaries {
  grid-template-columns: repeat(3, 1fr);
}

.sample-kit-modal .modal-products {
  width: min(410px, 88%);
  margin-top: 30px;
}

.format-info-modal {
  grid-template-columns: minmax(390px, 0.8fr) minmax(430px, 0.92fr);
  width: min(1080px, calc(100vw - 56px));
  height: min(680px, calc(100vh - 56px));
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(247, 246, 242, 0.98)),
    rgba(251, 250, 246, 0.98);
  box-shadow: 0 34px 90px rgba(10, 15, 20, 0.28);
}

.format-info-modal .modal-copy {
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: 44px 48px 40px;
  background:
    radial-gradient(circle at 16% 8%, rgba(201, 169, 98, 0.08), transparent 15rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(250, 249, 245, 0.18));
}

.format-info-modal .modal-copy::after {
  display: none;
}

.format-info-modal .modal-brand {
  margin-bottom: 30px;
}

.format-info-modal .modal-copy h2 {
  max-width: 440px;
  margin-bottom: 14px;
  font-size: clamp(3rem, 4.9vw, 4.15rem);
  line-height: 0.92;
  white-space: normal;
}

.format-info-modal .modal-copy > p:not(.section-kicker) {
  max-width: 440px;
  margin-bottom: 28px;
  font-size: 1.02rem;
  line-height: 1.55;
}

.format-info-modal .modal-copy .section-kicker {
  margin-bottom: 14px;
  color: var(--hdv2-gold);
  font-size: 0.76rem;
}

.format-modal-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 28px;
  margin: 0 0 26px;
  border-top: 1px solid rgba(166, 109, 19, 0.28);
  border-bottom: 1px solid rgba(86, 104, 122, 0.14);
}

.format-modal-facts article {
  display: block;
  min-height: 0;
  padding: 14px 0 15px;
  border: 0;
  border-bottom: 1px solid rgba(86, 104, 122, 0.1);
  border-radius: 0 !important;
  background: transparent;
}

.format-modal-facts article span {
  display: none;
}

.format-modal-facts article span::before {
  content: none;
}

.format-modal-facts b {
  display: block;
  margin-bottom: 7px;
  color: var(--hdv2-muted);
  font-size: 0.66rem;
  letter-spacing: 0.11em;
  line-height: 1.25;
  text-transform: uppercase;
}

.format-modal-facts em {
  display: block;
  min-width: 0;
  color: var(--hdv2-navy);
  font-size: 1.02rem;
  font-style: normal;
  font-weight: 760;
  line-height: 1.25;
}

.format-modal-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: auto;
}

.format-modal-actions .btn {
  min-height: 54px;
  padding-inline: 20px;
  font-size: 0.88rem;
}

.format-modal-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 100%;
  padding: 34px 52px 36px;
  background:
    radial-gradient(circle at 50% 28%, rgba(255, 255, 255, 0.88), transparent 16rem),
    linear-gradient(180deg, rgba(248, 249, 247, 0.78), rgba(238, 240, 236, 0.28));
}

.format-modal-visual img {
  width: min(390px, 88%);
  max-height: 600px;
  object-fit: contain;
  border-radius: 2px;
  filter: drop-shadow(0 20px 28px rgba(7, 18, 31, 0.12));
}

.modal-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 18px;
  align-content: start;
  padding: 56px 42px 26px;
}

.modal-form .full,
.modal-format-checks,
.modal-form .btn,
.modal-status {
  grid-column: 1 / -1;
}

.modal-form span,
.modal-format-checks legend {
  color: var(--midnight);
  font-size: 0.68rem;
  font-weight: 850;
  text-transform: uppercase;
}

.modal-format-checks legend em {
  color: var(--mute);
  font-style: normal;
  font-weight: 500;
}

.modal-form input,
.modal-form select,
.modal-form textarea {
  min-height: 32px;
  font-size: 0.82rem;
}

.modal-form textarea {
  min-height: 76px;
}

.modal-format-checks {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 6px;
  border: 0;
  border-radius: 7px;
}

.modal-format-checks legend {
  grid-column: 1 / -1;
  width: 100%;
  margin: 0 0 8px;
}

.modal-format-checks label {
  position: relative;
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 7px;
  align-items: center;
  min-height: 48px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--midnight);
  cursor: pointer;
  font-size: 0.72rem;
}

.modal-format-checks input {
  position: absolute;
  width: 1px;
  height: 1px;
  min-height: 1px;
  margin: 0;
  opacity: 0;
  pointer-events: none;
}

.modal-format-checks input:focus-visible + .format-symbol {
  outline: 2px solid rgba(166, 109, 19, 0.34);
  outline-offset: 3px;
}

.format-symbol {
  position: relative;
  width: 20px;
  height: 20px;
}

.format-symbol::before {
  content: "";
  position: absolute;
  inset: 3px;
  border: 1.8px solid var(--midnight);
}

.tablet-symbol::before {
  border-radius: 50%;
}

.drops-symbol::before {
  inset: 2px 7px;
  transform: rotate(28deg);
  border-radius: 2px;
}

.stick-symbol::before {
  inset: 1px 7px;
  transform: rotate(18deg);
  border-radius: 1px;
}

.tub-symbol::before,
.bag-symbol::before {
  inset: 2px 6px;
  border-radius: 2px 2px 5px 5px;
}

.modal-format-checks input:checked + .format-symbol::before {
  border-color: var(--gold-deep);
  background: rgba(201, 169, 98, 0.16);
}

.modal-form .btn {
  margin-top: 4px;
  min-height: 48px;
}

.modal-status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 2px 0 0;
  color: var(--mute);
  font-size: 0.82rem;
  text-align: center;
}

.modal-status .line-icon {
  width: 24px;
  height: 24px;
  border: 0;
}

.modal-status .line-icon::before {
  width: 22px;
  height: 22px;
}

@media (max-width: 760px) {
  .partner-modal-backdrop {
    place-items: start center;
    padding: 16px;
    overflow-x: hidden;
    overflow-y: auto;
  }

  .partner-modal {
    display: block;
    width: min(100%, calc(100vw - 32px), 390px);
    height: auto;
    max-height: none;
    margin: 12px 0;
    overflow: visible;
  }

  .partner-modal::before {
    inset: 4px;
  }

  .modal-close {
    top: 14px;
    right: 18px;
  }

  .modal-copy {
    padding: 28px 24px 20px;
  }

  .modal-copy::after {
    display: none;
  }

  .modal-brand span {
    font-size: 1.7rem;
  }

  .modal-copy h2,
  .sample-kit-modal .modal-copy h2 {
    max-width: 100%;
    font-size: 2.22rem;
    white-space: normal;
  }

  .modal-copy > p:not(.section-kicker),
  .sample-kit-modal .modal-copy > p:not(.section-kicker) {
    max-width: none;
  }

  .modal-boundaries,
  .sample-kit-modal .sample-modal-boundaries {
    grid-template-columns: 1fr;
  }

  .modal-products,
  .sample-kit-modal .modal-products {
    width: min(280px, 86%);
    margin-top: 18px;
  }

  .format-info-modal {
    width: min(100%, calc(100vw - 32px), 390px);
    height: auto;
  }

  .format-info-modal .modal-copy {
    padding: 30px 24px 22px;
  }

  .format-info-modal .modal-brand {
    margin-bottom: 22px;
  }

  .format-info-modal .modal-copy h2 {
    font-size: clamp(2.5rem, 14vw, 3.08rem);
    line-height: 0.94;
  }

  .format-modal-facts {
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 18px;
  }

  .format-modal-facts article {
    padding: 12px 0;
  }

  .format-modal-facts b,
  .format-modal-facts em {
    grid-column: auto;
  }

  .format-modal-actions {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .format-modal-visual {
    min-height: 410px;
    padding: 0 24px 26px;
  }

  .format-modal-visual img {
    width: min(270px, 82%);
    max-height: 420px;
  }

  .modal-form {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 0 24px 24px;
  }

  .modal-form input,
  .modal-form select,
  .modal-form textarea {
    box-sizing: border-box;
    width: 100%;
  }

  .modal-format-checks input {
    width: 1px;
    height: 1px;
    min-height: 1px;
  }

  .modal-format-checks {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .modal-format-checks label,
  .modal-format-checks label:first-of-type,
  .modal-format-checks label:last-of-type {
    min-height: 44px;
    border: 1px solid var(--line);
    border-radius: 7px;
  }
}

.quality-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--line);
}

.quality-strip article,
.quality-strip a {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 78px;
  padding: 14px 22px;
  background: rgba(255, 255, 255, 0.46);
}

.sample-proof-strip,
.about-proof-strip {
  grid-column: 1 / -1;
}

.sample-proof-strip,
.about-proof-strip {
  gap: 0;
  overflow: visible;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
}

.sample-proof-strip article,
.about-proof-strip article {
  min-height: 62px;
  padding: 12px 24px;
  border-left: 1px solid var(--line);
  background: transparent;
}

.sample-proof-strip article:first-child,
.about-proof-strip article:first-child {
  border-left: 0;
}

.sample-kit .center-intro h2 {
  font-size: 4.7rem;
}

.sample-grid {
  display: grid;
  grid-template-columns: 1fr 390px;
  gap: 42px;
  align-items: start;
  margin-top: 18px;
}

.sample-stage {
  position: relative;
  min-height: 342px;
}

.sample-sem {
  position: absolute;
  left: 0;
  top: 24px;
  width: 74%;
  height: 240px;
  object-fit: cover;
  border-radius: 12px;
  filter: grayscale(1) contrast(1.08);
}

.sample-kit-asset {
  position: absolute;
  left: 3%;
  right: 0;
  top: -20px;
  z-index: 3;
  width: min(1060px, 99%);
  filter: drop-shadow(0 30px 26px rgba(15, 25, 35, 0.17));
}

.sample-form h3 {
  font-size: 1.54rem;
}

.sample-form .btn {
  width: 100%;
}

.info-card-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 16px;
}

.info-card-row article {
  display: grid;
  grid-template-columns: 94px 1fr;
  gap: 20px;
  padding: 20px 24px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.44);
}

.info-card-row b {
  color: var(--midnight);
  font-weight: 850;
  text-transform: uppercase;
}

.quality {
  padding-top: 0;
  padding-bottom: 38px;
}

.quality-page {
  padding-top: 48px;
  padding-bottom: 42px;
}

.quality-page-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.72fr) minmax(620px, 1.28fr);
  gap: 34px;
  align-items: center;
  margin-top: 22px;
}

.quality-proof-list {
  display: grid;
  gap: 14px;
}

.quality-proof-list article {
  position: relative;
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 20px;
  align-items: center;
  min-height: 98px;
  padding: 16px 22px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.46);
}

.quality-proof-list article::after {
  content: "";
  position: absolute;
  left: 96px;
  top: 22px;
  bottom: 22px;
  width: 1px;
  background: var(--gold-line);
}

.quality-proof-list .line-icon {
  grid-row: 1 / span 2;
  width: 58px;
  height: 58px;
}

.quality-proof-list b,
.quality-proof-list em {
  display: block;
  font-style: normal;
}

.quality-proof-list b {
  color: var(--midnight);
  font-weight: 850;
  text-transform: uppercase;
}

.quality-proof-list em {
  color: var(--mute);
  line-height: 1.42;
}

.quality-document-stage {
  position: relative;
  min-height: 430px;
  overflow: visible;
}

.quality-doc,
.quality-box-mock {
  position: absolute;
  color: var(--midnight);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 28px 42px rgba(15, 25, 35, 0.12);
}

.quality-doc {
  border: 1px solid rgba(15, 25, 35, 0.08);
}

.batch-doc {
  left: 1%;
  top: 82px;
  z-index: 1;
  width: 250px;
  height: 340px;
  padding: 38px 34px;
  transform: rotate(-5deg);
}

.batch-doc b,
.quality-sem-copy b {
  display: block;
  color: var(--midnight);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1.4;
  text-transform: uppercase;
}

.batch-doc span {
  display: grid;
  margin-top: 12px;
  color: var(--mute);
  font-size: 0.68rem;
}

.batch-doc em {
  position: absolute;
  left: 64px;
  bottom: 54px;
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  border: 1px solid var(--gold-deep);
  border-radius: 50%;
  color: var(--gold-deep);
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 700;
}

.coa-doc {
  left: 17%;
  top: 8px;
  z-index: 3;
  width: 330px;
  min-height: 440px;
  padding: 32px 34px 26px;
}

.coa-doc small {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--midnight);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.coa-doc small span {
  font-family: var(--brand-serif);
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 600;
  text-transform: none;
}

.coa-doc dl {
  display: grid;
  gap: 9px;
  margin: 22px 0 18px;
}

.coa-doc dl div {
  display: grid;
  grid-template-columns: 96px 1fr;
  border-bottom: 1px solid rgba(15, 25, 35, 0.13);
  padding-bottom: 5px;
}

.coa-doc dt,
.coa-doc dd,
.coa-doc td,
.coa-doc th {
  margin: 0;
  color: var(--midnight);
  font-size: 0.56rem;
}

.coa-doc table {
  width: 100%;
  border-collapse: collapse;
}

.coa-doc th,
.coa-doc td {
  border: 1px solid rgba(15, 25, 35, 0.12);
  padding: 7px 8px;
  text-align: left;
}

.coa-doc p {
  margin: 22px 0 0;
  color: var(--mute);
  font-size: 0.6rem;
}

.quality-box-mock {
  right: 31%;
  bottom: 46px;
  z-index: 2;
  display: grid;
  grid-template-rows: auto auto auto auto;
  justify-items: center;
  align-content: start;
  width: 245px;
  height: 330px;
  border: 1px solid rgba(15, 25, 35, 0.1);
  padding: 72px 34px 34px;
  text-align: center;
}

.quality-box-mock b {
  display: block;
  font-family: var(--brand-serif);
  font-size: 1.7rem;
  font-style: italic;
  font-weight: 500;
}

.quality-box-mock small {
  display: block;
  margin-top: 4px;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.quality-box-mock > span:not(.gold-dot) {
  display: block;
  margin-top: 54px;
  color: var(--midnight);
  font-size: 1rem;
  letter-spacing: 0;
  line-height: 1.28;
  text-transform: uppercase;
}

.quality-box-mock em {
  position: static;
  color: var(--mute);
  font-size: 0.58rem;
  font-style: normal;
  line-height: 1.25;
  margin-top: 42px;
}

.quality-vial-kit {
  position: absolute;
  right: 22%;
  bottom: 28px;
  z-index: 4;
  width: 150px;
  filter: drop-shadow(0 22px 20px rgba(15, 25, 35, 0.14));
}

.quality-document-stage figure {
  position: absolute;
  right: 0;
  top: 28px;
  z-index: 5;
  width: min(270px, 30%);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(201, 169, 98, 0.42);
  border-radius: 8px;
  background: #111;
}

.quality-document-stage figure img {
  width: 100%;
  height: 236px;
  object-fit: cover;
  filter: grayscale(1) contrast(1.08);
}

.quality-document-stage figcaption {
  position: absolute;
  right: 16px;
  bottom: 14px;
  color: #fff;
  font-size: 0.92rem;
}

.quality-sem-copy {
  position: absolute;
  right: 1%;
  top: 296px;
  z-index: 6;
  width: 240px;
}

.quality-sem-copy::before {
  content: "";
  display: block;
  width: 42px;
  height: 1px;
  margin: 14px 0 18px;
  background: var(--gold-deep);
}

.quality-sem-copy p {
  margin: 16px 0 0;
  color: var(--mute);
  font-size: 0.86rem;
  line-height: 1.38;
}

.quality-page .quality-strip {
  margin-top: 20px;
}

.about {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 46px;
  align-items: start;
}

.about-copy h2 {
  max-width: 900px;
}

.about-copy > p {
  max-width: 700px;
  font-size: 1.22rem;
}

.about-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  margin-top: 32px;
}

.about-columns article {
  border-top: 1px solid var(--gold-line);
  padding-top: 18px;
}

.about-columns article + article {
  border-left: 1px solid var(--line);
  padding-left: 40px;
}

.about-columns h3 {
  font-family: var(--ui-sans);
  font-size: 1rem;
  font-weight: 850;
  text-transform: uppercase;
}

.platform-card {
  padding: 30px 36px 26px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.42);
}

.platform-card h3 {
  max-width: 480px;
  font-size: 2.45rem;
}

.platform-lineup {
  width: min(700px, 100%);
  margin: 10px auto 20px;
  filter: drop-shadow(0 22px 18px rgba(15, 25, 35, 0.13));
}

.mini-sem-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border-radius: 8px;
}

.mini-sem-row img {
  height: 136px;
  width: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.08);
}

.split-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 18px;
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 46px;
  align-items: center;
  padding: 38px 60px 26px;
  color: #fff;
  background: var(--midnight);
}

.site-footer nav {
  display: flex;
  justify-content: center;
  gap: 58px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
  font-weight: 780;
  text-transform: uppercase;
}

.site-footer .footer-brand span,
.site-footer .footer-brand small {
  color: #fff;
}

.footer-email {
  color: #fff;
}

.site-footer p {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  gap: 24px;
  margin: 20px 0 0;
  padding-top: 22px;
  border-top: 1px solid rgba(201, 169, 98, 0.52);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.site-footer p span {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.44);
}

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

@media (min-width: 1181px) {
  body.reference-page .technology,
  body.reference-page .formats,
  body.reference-page .partner-program,
  body.reference-page .quality-page,
  body.reference-page .sample-kit,
  body.reference-page .about {
    padding-top: 34px;
  }

  body.reference-page .partner-inquiry {
    padding-top: 24px;
  }

  .technology {
    gap: 56px;
    padding-top: 36px;
  }

  .technology h2 {
    font-size: 4.55rem;
  }

  .tech-copy > p:not(.section-kicker) {
    font-size: 1.12rem;
  }

  .cred-list article {
    min-height: 68px;
  }

  .sem-annotated {
    height: 382px;
  }

  .layer-card {
    min-height: 130px;
    padding-block: 18px;
  }

  .section-tabs {
    margin-top: 10px;
  }

  .formats {
    padding-top: 28px;
  }

  .formats .section-kicker,
  .partner-program .section-kicker,
  .quality-page .section-kicker {
    margin-bottom: 18px;
  }

  .formats h2 {
    max-width: 920px;
    margin-bottom: 14px;
    font-size: 4.18rem;
  }

  .formats .center-intro p:not(.section-kicker) {
    font-size: 0.96rem;
  }

  .format-grid {
    gap: 14px;
    margin-top: 18px;
  }

  .format-card {
    min-height: 422px;
  }

  .format-card header {
    padding: 13px 18px 10px;
  }

  .format-card header span {
    font-size: 1.42rem;
  }

  .format-card header em {
    font-size: 0.92rem;
  }

  .format-stage {
    min-height: 248px;
  }

  .format-asset {
    max-height: 214px;
  }

  .tablets-asset {
    width: 142px;
  }

  .stick-box-asset {
    max-height: 238px;
  }

  .tub-asset {
    width: 190px;
  }

  .pouch-asset {
    width: 158px;
  }

  .drops-asset {
    width: 94px;
    max-height: 220px;
  }

  .vial-asset {
    width: 86px;
    max-height: 146px;
  }

  .format-card footer {
    gap: 6px;
    padding: 10px 10px 12px;
  }

  .format-card footer span {
    min-height: 32px;
    font-size: 0.46rem;
  }

  .dark-cta {
    margin-top: 16px;
  }

  .dark-cta article {
    grid-template-columns: 98px 1fr;
    min-height: 104px;
    padding: 16px 30px;
  }

  .dark-cta a {
    grid-template-columns: 98px 1fr;
    min-height: 104px;
    padding: 16px 30px;
  }

  .dark-cta .round-icon {
    width: 74px;
    height: 74px;
  }

  .dark-cta b,
  .dark-cta em {
    font-size: 0.9rem;
  }

  .partner-program {
    padding-top: 30px;
  }

  .partner-program .center-intro h2 {
    margin-bottom: 14px;
    font-size: 4.25rem;
  }

  .program-grid {
    margin-top: 18px;
  }

  .program-product-panel,
  .promise-panel,
  .sem-side-card {
    min-height: 342px;
  }

  .promise-panel article {
    padding: 20px 20px;
  }

  .promise-panel h3 {
    font-size: 1.62rem;
  }

  .promise-panel p {
    font-size: 0.92rem;
  }

  .sem-side-card img {
    height: 185px;
  }

  .process-rail {
    margin-top: 14px;
    padding: 14px 18px;
  }

  .process-rail article {
    grid-template-columns: 52px 1fr;
    gap: 12px;
  }

  .process-rail .round-icon {
    width: 52px;
    height: 52px;
  }

  .process-rail b {
    font-size: 0.78rem;
  }

  .process-rail em {
    font-size: 0.86rem;
  }

  .program-bottom {
    margin-top: 16px;
  }

  .partner-inquiry {
    padding-top: 24px;
  }

  .inquiry-shell {
    align-items: start;
    gap: 24px;
    min-height: 900px;
    padding: 20px 28px;
  }

  .inquiry-brand {
    margin-bottom: 14px;
  }

  .inquiry-copy h2 {
    font-size: 3.58rem;
  }

  .inquiry-copy > p:not(.section-kicker) {
    font-size: 0.98rem;
    line-height: 1.42;
    margin-bottom: 8px;
  }

  .inquiry-copy {
    position: relative;
    min-height: 850px;
    padding-bottom: 142px;
  }

  .inquiry-sem {
    height: 146px;
    margin: 10px 0 10px;
  }

  .boundary-row article {
    min-height: 52px;
    padding: 7px 10px;
  }

  .boundary-row .line-icon,
  .boundary-row .amazon-mark {
    width: 36px;
    height: 36px;
  }

  .boundary-row b {
    font-size: 0.62rem;
  }

  .boundary-row em {
    font-size: 0.66rem;
  }

  .mini-process {
    padding: 10px 16px 11px;
  }

  .mini-process li {
    position: relative;
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 4px 10px;
    font-size: 0.68rem;
  }

  .mini-process li:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -9px;
    top: 21px;
    width: 18px;
    height: 1px;
    background: var(--gold-deep);
  }

  .mini-process b {
    grid-row: 1 / span 2;
    width: 30px;
    height: 30px;
    margin-right: 0;
    border-radius: 50%;
  }

  .mini-process strong,
  .mini-process em {
    display: block;
    font-style: normal;
    line-height: 1.2;
  }

  .mini-process strong {
    color: var(--midnight);
    font-size: 0.62rem;
    font-weight: 850;
    text-transform: uppercase;
  }

  .mini-process em {
    color: var(--mute);
    font-size: 0.58rem;
    text-transform: none;
  }

  .inquiry-products {
    position: absolute;
    left: 4%;
    bottom: -62px;
    width: min(660px, 92%);
    margin-top: 0;
  }

  .partner-form {
    min-height: 768px;
    gap: 12px;
    padding: 22px 26px;
  }

  .partner-form span,
  .format-checks legend {
    font-size: 0.68rem;
  }

  label,
  .format-checks {
    gap: 5px;
  }

  input,
  select {
    min-height: 38px;
  }

  textarea {
    min-height: 74px;
  }

  .partner-form .btn {
    min-height: 44px;
  }

  .form-status {
    font-size: 0.9rem;
  }

  .partner-inquiry .quality-strip {
    position: relative;
    z-index: 2;
    width: calc((100% - 24px) / 2);
    margin-top: -94px;
    margin-left: calc((100% + 24px) / 2);
  }

  .partner-inquiry .quality-strip article {
    grid-template-columns: 48px 1fr;
    gap: 10px;
    min-height: 64px;
    padding: 8px 10px;
  }

  .partner-inquiry .quality-strip .line-icon,
  .partner-inquiry .quality-strip .patent-icon {
    width: 46px;
    height: 46px;
  }

  .partner-inquiry .quality-strip b {
    font-size: 0.62rem;
    line-height: 1.08;
  }

  .partner-inquiry .quality-strip em {
    font-size: 0.66rem;
    line-height: 1.12;
  }

  .sample-kit {
    padding-top: 30px;
    padding-bottom: 22px;
  }

  .sample-kit .center-intro h2 {
    margin-bottom: 12px;
    font-size: 4.35rem;
  }

  .sample-stage {
    min-height: 318px;
  }

  .sample-sem {
    height: 218px;
  }

  .sample-form {
    gap: 12px;
    padding: 22px 28px;
  }

  .info-card-row article {
    min-height: 120px;
    padding: 16px 22px;
  }

  .sample-kit .info-card-row .round-icon {
    color: var(--gold-deep);
    border-color: var(--gold-line);
    background: rgba(255, 255, 255, 0.48);
  }

  .sample-proof-strip {
    margin-top: 14px;
  }

  .sample-proof-strip article,
  .about-proof-strip article {
    grid-template-columns: 52px 1fr;
    gap: 14px;
    min-height: 56px;
    padding: 10px 22px;
  }

  .quality-page {
    padding-top: 34px;
  }

  .quality-page h2 {
    margin-bottom: 12px;
    font-size: 4.36rem;
  }

  .quality-proof-list article {
    min-height: 84px;
  }

  .quality-document-stage {
    min-height: 430px;
  }

  .quality-page .quality-strip .line-icon {
    color: var(--gold);
    border-color: var(--midnight);
    background: var(--midnight);
  }

  .quality-page .quality-strip article {
    min-height: 88px;
  }

  .about {
    padding-top: 34px;
    padding-bottom: 18px;
    gap: 40px;
  }

  .about-columns {
    gap: 28px;
    margin-top: 24px;
  }

  .about-columns article {
    padding-top: 14px;
  }

  .about-columns article + article {
    padding-left: 32px;
  }

  .platform-card {
    padding: 26px 36px 22px;
  }

  .platform-card h3 {
    font-size: 2.28rem;
  }

  .about-proof-strip {
    grid-template-columns: 0.95fr 1fr 1fr 0.95fr 1.2fr;
    margin-top: -8px;
  }

  .about-proof-strip article {
    min-height: 72px;
    padding: 8px 18px;
  }

  .about-proof-strip .line-icon,
  .about-proof-strip .amazon-mark,
  .sample-proof-strip .line-icon {
    width: 52px;
    height: 52px;
  }

  .about-proof-strip .amazon-mark::before {
    font-size: 2rem;
  }

  .about-proof-strip b {
    font-size: 0.68rem;
  }

  .about-proof-strip em {
    font-size: 0.76rem;
    line-height: 1.2;
  }

  body.reference-page:has(.about) .site-footer {
    gap: 28px;
    padding: 22px 60px 8px;
  }

  body.reference-page:has(.about) .site-footer nav {
    gap: 48px;
    font-size: 0.78rem;
  }

  body.reference-page:has(.about) .site-footer p {
    margin-top: 8px;
    padding-top: 8px;
    font-size: 0.72rem;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 1ms !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1180px) {
  body.reference-page .site-header {
    display: grid;
  }

  body.reference-page .mobile-menu {
    display: grid;
  }

  body.reference-page .site-footer {
    display: grid;
  }

  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .main-nav,
  .nav-actions {
    display: none;
  }

  .menu-toggle {
    position: relative;
    width: 48px;
    height: 48px;
    display: grid;
    border: 1px solid var(--line);
    border-radius: 0;
    background: rgba(255, 255, 255, 0.72);
  }

  .menu-toggle span {
    position: absolute;
    left: 14px;
    right: 14px;
    height: 1px;
    background: var(--midnight);
    transition: transform 260ms var(--ease);
  }

  .menu-toggle span:first-child {
    top: 18px;
  }

  .menu-toggle span:last-child {
    top: 28px;
  }

  body.menu-open .menu-toggle span:first-child {
    transform: translateY(5px) rotate(45deg);
  }

  body.menu-open .menu-toggle span:last-child {
    transform: translateY(-5px) rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 20;
    display: grid;
    align-content: center;
    gap: 20px;
    padding: 120px 30px 40px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-18px);
    background: rgba(251, 250, 246, 0.95);
    backdrop-filter: blur(18px);
    transition: opacity 280ms var(--ease), transform 280ms var(--ease);
  }

  .mobile-menu a {
    color: var(--midnight);
    font-family: var(--display-serif);
    font-size: 4.1rem;
    line-height: 1;
  }

  body.menu-open .mobile-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero-card-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quality-page-grid {
    grid-template-columns: 1fr;
  }

  .quality-document-stage {
    min-height: 430px;
  }

  h1 {
    font-size: 4.2rem;
  }

  h2,
  .partner-program .center-intro h2,
  .sample-kit .center-intro h2 {
    font-size: 4.05rem;
  }

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

  .format-card:last-child {
    grid-column: 1 / -1;
  }

  .program-grid,
  .technology,
  .inquiry-shell,
  .sample-grid,
  .about {
    grid-template-columns: 1fr;
  }

  .program-product-panel,
  .promise-panel,
  .sem-side-card {
    min-height: auto;
  }

  .sem-side-card img {
    height: 340px;
  }

  .process-rail,
  .quality-strip,
  .boundary-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .sample-stage {
    min-height: 500px;
  }
}

@media (min-width: 1181px) and (max-height: 760px) {
  .site-header {
    min-height: 82px;
    padding-block: 12px;
  }

  .brand span {
    font-size: 1.95rem;
  }

  .hero {
    gap: 10px;
    padding-top: 14px;
  }

  h1 {
    max-width: 1080px;
    margin-bottom: 10px;
    font-size: 4rem;
  }

  .hero-copy > p {
    margin-bottom: 16px;
    font-size: 1.08rem;
  }

  .btn {
    min-height: 44px;
    padding-inline: 24px;
  }

  .hero-stage {
    padding: 14px 16px 0;
  }

  .sem-triptych img {
    height: 248px;
  }

  .hero-products {
    bottom: -88px;
  }

  .hero-lineup {
    width: min(780px, 82%);
  }

  .hero-card-row {
    margin-top: 78px;
  }
}

@media (max-width: 860px) {
  .section-shell {
    width: min(calc(100% - 28px), 1760px);
  }

  .site-header {
    min-height: 76px;
    padding: 14px 18px;
  }

  .brand span,
  .footer-brand span {
    font-size: 1.6rem;
  }

  h1 {
    max-width: calc(100vw - 36px);
    font-size: 2.95rem;
    line-height: 0.9;
    text-wrap: wrap;
  }

  h2,
  .partner-program .center-intro h2,
  .sample-kit .center-intro h2 {
    font-size: 3.1rem;
    line-height: 0.9;
  }

  .hero-copy > p,
  .center-intro p:not(.section-kicker) {
    max-width: calc(100vw - 42px);
    font-size: 1rem;
  }

  .hero-actions,
  .split-actions,
  .program-bottom,
  .dark-cta,
  .hero-card-row,
  .promise-panel,
  .process-rail,
  .quality-strip,
  .boundary-row,
  .info-card-row,
  .about-columns,
  .site-footer,
  .partner-form,
  .format-checks {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .split-actions {
    display: grid;
  }

  .quality-document-stage {
    min-height: 360px;
  }

  .quality-document-stage figure {
    right: 14px;
    top: 14px;
    width: 34%;
  }

  .quality-document-stage figure img {
    height: 130px;
  }

  .hero-card-row {
    margin-top: 0;
  }

  .btn {
    width: 100%;
  }

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

  .sem-triptych {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
  }

  .sem-triptych img {
    height: 178px;
  }

  .sem-triptych figcaption {
    left: 9px;
    bottom: 9px;
    font-size: 0.7rem;
  }

  .sem-triptych figcaption::after {
    width: 34px;
    height: 1px;
    margin-top: 4px;
  }

  .hero-products {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin-top: -74px;
    min-height: 132px;
    transform: none;
  }

  .hero-lineup {
    width: 108%;
    max-width: none;
  }

  .hero-stage {
    overflow: hidden;
    padding: 10px 10px 0;
    border-radius: 18px;
  }

  .technology,
  .formats,
  .partner-program,
  .partner-inquiry,
  .sample-kit,
  .about {
    padding-top: 44px;
    padding-bottom: 42px;
  }

  .cred-list article,
  .layer-card,
  .dark-cta article,
  .process-rail article,
  .quality-strip article,
  .boundary-row article,
  .program-bottom article,
  .info-card-row article {
    grid-template-columns: 1fr;
  }

  .nav-card {
    grid-template-columns: 58px 1fr 24px;
    gap: 14px;
    min-height: 96px;
    padding: 16px 18px;
  }

  .nav-card .round-icon {
    grid-row: 1 / span 2;
    width: 54px;
    height: 54px;
  }

  .nav-card strong {
    margin-bottom: 4px;
    font-size: 1.18rem;
  }

  .nav-card em {
    font-size: 0.9rem;
    line-height: 1.35;
  }

  .section-tabs {
    display: none;
  }

  .layer-card,
  .partner-form,
  .sample-form,
  .inquiry-shell {
    padding: 22px;
  }

  .format-card:last-child {
    grid-column: auto;
  }

  .format-card {
    min-height: 450px;
  }

  .format-card header {
    padding: 18px 18px 14px;
  }

  .format-stage {
    min-height: 260px;
  }

  .format-stage > img:not(.product-asset) {
    height: 62%;
  }

  .format-asset {
    max-height: 225px;
  }

  .tablets-asset {
    width: 140px;
  }

  .stick-box-asset {
    width: min(220px, 82%);
  }

  .tub-asset {
    width: 194px;
  }

  .pouch-asset {
    width: 160px;
  }

  .drops-asset {
    width: 98px;
    max-height: 230px;
  }

  .vial-asset {
    width: 88px;
    max-height: 150px;
  }

  .format-card footer {
    padding: 12px 12px 16px;
  }

  .program-product-panel {
    min-height: 270px;
  }

  .promise-panel article {
    padding: 24px 22px;
  }

  .process-rail {
    padding: 18px 20px;
  }

  .partner-kit-asset,
  .platform-lineup,
  .inquiry-products {
    width: 100%;
  }

  .mini-process ol {
    grid-template-columns: 1fr;
  }

  .inquiry-copy h2 {
    font-size: 3.1rem;
    line-height: 0.98;
  }

  .sample-stage {
    min-height: 230px;
  }

  .sample-sem {
    width: 100%;
    height: 190px;
  }

  .sample-kit-asset {
    left: -8%;
    top: 70px;
    width: 116%;
  }

  .about-columns article + article {
    border-left: 0;
    padding-left: 0;
  }

  .site-footer nav,
  .site-footer p {
    display: grid;
    justify-content: start;
  }

  .site-footer p span {
    display: none;
  }
}

@media (max-width: 520px) {
  h1 {
    max-width: 340px;
    font-size: 2.34rem;
  }

  .hero-copy > p {
    max-width: 326px;
  }

  h2,
  .partner-program .center-intro h2,
  .sample-kit .center-intro h2 {
    font-size: 2.58rem;
  }

  .inquiry-copy h2 {
    font-size: 2.65rem;
    line-height: 0.98;
  }

  .mobile-menu a {
    font-size: 3.1rem;
  }

  .format-card footer {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero {
    gap: 24px;
    padding-top: 32px;
  }

  .hero-copy > p {
    margin-bottom: 20px;
  }

  .sem-triptych img {
    height: 150px;
  }

  .hero-products {
    margin-top: -48px;
    min-height: 108px;
  }

  .hero-lineup {
    width: 104%;
  }

  .nav-card {
    grid-template-columns: 52px minmax(0, 1fr) 18px;
    gap: 12px;
    padding-inline: 16px;
  }

  .nav-card .round-icon {
    width: 48px;
    height: 48px;
  }

  .nav-card strong {
    font-size: 1.08rem;
  }

  .nav-card em {
    font-size: 0.86rem;
  }

  .quality-proof-list article {
    grid-template-columns: 52px 1fr;
    gap: 14px;
    padding: 16px;
  }

  .quality-proof-list .line-icon {
    width: 48px;
    height: 48px;
  }

  .site-footer {
    padding-inline: 24px;
  }
}

@media (max-width: 1180px) {
  .page-hub {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-top: 48px;
  }

  .hub-product {
    width: min(760px, 100%);
    margin-top: 0;
  }
}

@media (max-width: 860px) {
  .page-hub {
    padding-top: 36px;
    padding-bottom: 42px;
  }

  .hub-copy h1 {
    max-width: 680px;
    font-size: clamp(3.45rem, 14vw, 6rem);
  }

  .hub-copy > p:not(.section-kicker) {
    font-size: 1.08rem;
  }

  .hub-product {
    padding: 22px 22px 18px;
  }

  .directory-row {
    grid-template-columns: 52px 1fr auto;
    gap: 8px 16px;
    min-height: 92px;
    padding: 14px 0;
  }

  .directory-row em {
    grid-column: 2 / -1;
  }

  .directory-row strong {
    grid-column: 3;
    grid-row: 1;
  }
}

@media (max-width: 520px) {
  .hub-copy h1 {
    max-width: 360px;
    font-size: 3.32rem;
  }

  .page-directory {
    margin-top: 2px;
  }

  .directory-row {
    grid-template-columns: 40px 1fr;
    min-height: 0;
    padding: 16px 0;
  }

  .directory-row strong {
    grid-column: 2;
    grid-row: auto;
    justify-self: start;
    margin-top: 2px;
  }

  .directory-row em {
    grid-column: 2;
  }

  .directory-row span {
    font-size: 1.58rem;
  }
}

/* Square visual system: remove the pill/card radii that made the site feel templated. */
*,
*::before,
*::after {
  border-radius: 0 !important;
}

@media (min-width: 1181px) {
  .section-shell {
    width: min(calc(100% - 36px), 1960px);
  }

  body.reference-page .technology,
  body.reference-page .formats,
  body.reference-page .partner-program,
  body.reference-page .quality-page,
  body.reference-page .sample-kit,
  body.reference-page .about {
    padding-top: clamp(38px, 4vh, 68px);
    padding-bottom: clamp(48px, 6vh, 84px);
  }

  .technology {
    grid-template-columns: minmax(420px, 0.72fr) minmax(0, 1.28fr);
    gap: clamp(64px, 5vw, 104px);
  }

  .technology h2 {
    max-width: 760px;
    font-size: clamp(4.9rem, 4.4vw, 6rem);
  }

  .tech-copy > p:not(.section-kicker) {
    max-width: 700px;
    font-size: 1.24rem;
  }

  .cred-list article {
    min-height: 86px;
  }

  .sem-annotated {
    height: clamp(460px, 50vh, 620px);
  }

  .layer-card {
    min-height: 158px;
  }

  .formats h2,
  .partner-program .center-intro h2,
  .quality-page h2,
  .sample-kit .center-intro h2 {
    max-width: min(100%, 1320px);
    font-size: clamp(4.7rem, 4.25vw, 5.9rem);
  }

  .formats .center-intro p:not(.section-kicker),
  .partner-program .center-intro p:not(.section-kicker),
  .quality-page .center-intro p:not(.section-kicker),
  .sample-kit .center-intro p:not(.section-kicker) {
    font-size: 1.08rem;
  }

  .format-grid {
    gap: 20px;
    margin-top: 26px;
  }

  .format-card {
    min-height: clamp(500px, 52vh, 620px);
  }

  .format-stage {
    min-height: clamp(305px, 33vh, 390px);
  }

  .format-asset {
    max-height: 270px;
  }

  .tablets-asset {
    width: 172px;
  }

  .tub-asset {
    width: 232px;
  }

  .pouch-asset {
    width: 196px;
  }

  .drops-asset {
    width: 116px;
    max-height: 280px;
  }

  .vial-asset {
    width: 104px;
    max-height: 172px;
  }

  .partner-program .center-intro h2,
  .quality-page h2,
  .sample-kit .center-intro h2 {
    margin-bottom: 18px;
  }

  .program-grid {
    grid-template-columns: minmax(330px, 0.86fr) minmax(560px, 1.22fr) minmax(210px, 0.52fr);
    margin-top: 30px;
  }

  .program-product-panel,
  .promise-panel,
  .sem-side-card {
    min-width: 0;
    min-height: clamp(440px, 46vh, 580px);
  }

  .partner-kit-asset {
    width: min(980px, 114%);
  }

  .promise-panel article {
    padding: clamp(30px, 3vw, 54px) clamp(24px, 2.4vw, 42px);
  }

  .promise-panel h3 {
    font-size: clamp(1.72rem, 1.55vw, 2.15rem);
  }

  .promise-panel p {
    font-size: 1.05rem;
  }

  .sem-side-card img {
    height: clamp(245px, 25vh, 340px);
  }

  .process-rail {
    margin-top: 24px;
    padding: 24px 30px;
  }

  .process-rail article {
    grid-template-columns: 64px 1fr;
    gap: 18px;
    min-height: 118px;
  }

  .process-rail .round-icon {
    width: 58px;
    height: 58px;
  }

  .program-bottom {
    margin-top: 26px;
    gap: clamp(56px, 7vw, 128px);
  }

  .sample-grid {
    grid-template-columns: minmax(0, 1fr) minmax(420px, 480px);
    gap: clamp(52px, 4vw, 86px);
    margin-top: 30px;
  }

  .sample-stage {
    min-height: clamp(430px, 48vh, 600px);
  }

  .sample-sem {
    width: 82%;
    height: clamp(300px, 34vh, 430px);
  }

  .sample-kit-asset {
    left: 0;
    top: -28px;
    width: min(1280px, 108%);
  }

  .sample-form {
    padding: 36px 38px;
  }

  .info-card-row {
    gap: 28px;
    margin-top: 28px;
  }

  .info-card-row article {
    min-height: 178px;
    padding: 28px 32px;
  }

  .quality-page-grid {
    grid-template-columns: minmax(360px, 0.66fr) minmax(0, 1.34fr);
    gap: clamp(52px, 4.6vw, 96px);
    margin-top: 34px;
  }

  .quality-proof-list article {
    min-height: 124px;
    padding: 22px 28px;
  }

  .quality-document-stage {
    min-height: clamp(520px, 58vh, 720px);
  }

  .quality-doc {
    transform-origin: center;
  }

  .coa-doc {
    width: 380px;
    min-height: 500px;
  }

  .batch-doc {
    width: 286px;
    height: 390px;
  }

  .quality-box-mock {
    transform: scale(1.12);
    transform-origin: center bottom;
  }

  .about {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.02fr);
    gap: clamp(44px, 4vw, 88px);
  }

  .about-copy h2 {
    max-width: 920px;
    font-size: clamp(4.9rem, 4.3vw, 6rem);
  }

  .about-copy > p {
    max-width: 760px;
    font-size: 1.32rem;
  }

  .platform-lineup {
    width: min(880px, 100%);
  }

  .about-sem-strip img {
    height: 176px;
  }

  .about-proof-strip {
    margin-top: 36px;
  }

  .partner-inquiry {
    padding-top: clamp(34px, 4vh, 58px);
  }

  .inquiry-shell {
    grid-template-columns: minmax(660px, 0.9fr) minmax(820px, 1.1fr);
    gap: clamp(42px, 4vw, 82px);
    padding: 36px 42px;
  }

  .inquiry-copy h2 {
    max-width: 760px;
    font-size: clamp(4.1rem, 3.9vw, 5.4rem);
  }

  .inquiry-sem {
    height: 220px;
  }

  .inquiry-products {
    width: min(820px, 96%);
  }

  .partner-form {
    min-height: 820px;
    padding: 34px 38px 30px;
  }
}

.goal-home main {
  background:
    linear-gradient(180deg, rgba(251, 250, 246, 0.36), rgba(245, 240, 230, 0.18)),
    transparent;
}

.goal-home-hero {
  display: grid;
  grid-template-columns: minmax(460px, 0.72fr) minmax(680px, 1.28fr);
  gap: clamp(48px, 5vw, 110px);
  align-items: center;
  min-height: calc(100dvh - 76px);
  padding-top: clamp(48px, 6vh, 92px);
  padding-bottom: 46px;
}

.home-hero-copy {
  display: grid;
  justify-items: start;
  align-content: center;
  min-width: 0;
}

.home-hero-copy h1 {
  max-width: 920px;
  margin-bottom: 24px;
  font-size: clamp(5.2rem, 5.7vw, 8.4rem);
  line-height: 0.84;
  text-align: left;
}

.home-hero-copy > p:not(.section-kicker) {
  max-width: 720px;
  margin-bottom: 30px;
  color: #42515f;
  font-size: 1.26rem;
  line-height: 1.52;
}

.home-proof-line {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(720px, 100%);
  margin-top: 34px;
  border-top: 1px solid var(--gold-line);
  border-left: 1px solid var(--gold-line);
}

.home-proof-line span {
  min-height: 54px;
  display: grid;
  place-items: center start;
  padding: 12px 16px;
  border-right: 1px solid var(--gold-line);
  border-bottom: 1px solid var(--gold-line);
  color: var(--gold-deep);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.home-product-stage {
  position: relative;
  min-height: clamp(560px, 58vh, 720px);
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.26)),
    rgba(251, 250, 246, 0.5);
  overflow: hidden;
}

.home-product-stage::after {
  content: "";
  position: absolute;
  left: 5%;
  right: 5%;
  bottom: 58px;
  height: 1px;
  background: var(--gold-line);
}

.home-sem-backdrop {
  position: absolute;
  inset: 26px 26px auto;
  height: 56%;
  display: grid;
  grid-template-columns: 1.18fr 0.94fr 1.1fr;
  gap: 12px;
}

.home-sem-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.08);
}

.home-product-lineup {
  position: absolute;
  left: 50%;
  bottom: 40px;
  z-index: 2;
  width: min(1120px, 104%);
  max-width: none;
  transform: translateX(-50%);
  filter: drop-shadow(0 38px 34px rgba(15, 25, 35, 0.19));
}

.home-product-label {
  position: absolute;
  z-index: 3;
  width: 230px;
  padding: 16px 18px;
  border: 1px solid var(--gold-line);
  background: rgba(251, 250, 246, 0.86);
}

.home-product-label b,
.home-product-label span {
  display: block;
}

.home-product-label b {
  color: var(--midnight);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.home-product-label span {
  margin-top: 6px;
  color: var(--mute);
  font-size: 0.9rem;
  line-height: 1.35;
}

.label-left {
  left: 26px;
  bottom: 28px;
}

.label-right {
  right: 26px;
  top: 32px;
}

.home-page-rail {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  margin-top: 22px;
  border-top: 1px solid var(--gold-line);
  border-left: 1px solid var(--gold-line);
}

.home-page-rail a {
  display: grid;
  gap: 7px;
  min-height: 72px;
  padding: 16px 18px;
  border-right: 1px solid var(--gold-line);
  border-bottom: 1px solid var(--gold-line);
  color: var(--midnight);
  font-size: 0.9rem;
  font-weight: 850;
  text-transform: uppercase;
  transition: background 240ms var(--ease), color 240ms var(--ease);
}

.home-page-rail a:hover,
.home-page-rail a:focus-visible {
  color: var(--gold-deep);
  background: rgba(255, 255, 255, 0.48);
}

.home-page-rail span {
  color: var(--gold-deep);
  font-family: var(--display-serif);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1;
}

.home-scroll-section {
  padding-top: clamp(78px, 9vh, 124px);
  padding-bottom: clamp(82px, 9vh, 132px);
  border-top: 1px solid rgba(201, 169, 98, 0.42);
}

.home-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: end;
  margin-bottom: 34px;
}

.home-section-heading h2 {
  max-width: 1160px;
  margin-bottom: 0;
  font-size: clamp(4.3rem, 4.4vw, 6rem);
  line-height: 0.9;
}

.home-section-heading > a,
.text-link {
  align-self: end;
  color: var(--gold-deep);
  font-size: 0.86rem;
  font-weight: 850;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
}

.home-tech-grid {
  display: grid;
  grid-template-columns: minmax(680px, 1.12fr) minmax(460px, 0.88fr);
  gap: 34px;
  align-items: stretch;
}

.home-sem-feature {
  position: relative;
  min-height: clamp(470px, 53vh, 650px);
  margin: 0;
  overflow: hidden;
  background: #101010;
}

.home-sem-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.08);
}

.home-sem-feature figcaption {
  position: absolute;
  left: 26px;
  bottom: 24px;
  padding-top: 10px;
  border-top: 1px solid #fff;
  color: #fff;
  font-size: 0.95rem;
}

.home-tech-copy {
  display: grid;
  gap: 20px;
}

.home-tech-copy article {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 22px;
  align-content: center;
  padding: 32px 34px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.42);
}

.home-tech-copy .round-icon {
  grid-row: 1 / span 3;
}

.home-tech-copy b {
  color: var(--gold-deep);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.home-tech-copy h3 {
  margin: 0;
  font-size: clamp(2.2rem, 2.2vw, 3rem);
}

.home-tech-copy p {
  max-width: 520px;
  margin: 0;
}

.home-format-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.home-format-strip a {
  display: grid;
  grid-template-rows: minmax(250px, 1fr) auto auto;
  min-height: clamp(430px, 44vh, 540px);
  padding: 26px 24px 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.42);
  transition: transform 240ms var(--ease), background 240ms var(--ease);
}

.home-format-strip a:hover,
.home-format-strip a:focus-visible {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.62);
}

.home-format-strip img {
  align-self: end;
  justify-self: center;
  max-height: 285px;
  object-fit: contain;
  filter: drop-shadow(0 24px 18px rgba(15, 25, 35, 0.14));
}

.home-format-strip b {
  margin-top: 22px;
  color: var(--midnight);
  font-family: var(--display-serif);
  font-size: 2rem;
  font-weight: 650;
  line-height: 1;
}

.home-format-strip span {
  margin-top: 8px;
  color: var(--mute);
  font-size: 0.95rem;
}

.home-split-section {
  display: grid;
  grid-template-columns: minmax(720px, 1.08fr) minmax(520px, 0.92fr);
  gap: 28px;
}

.home-program-panel,
.home-quality-panel {
  min-height: clamp(560px, 58vh, 720px);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.42);
}

.home-program-panel {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 24px;
  align-items: center;
  padding: clamp(36px, 4vw, 70px);
  overflow: hidden;
}

.home-program-panel h2,
.home-quality-panel h2,
.home-about-cta h2 {
  max-width: 740px;
  font-size: clamp(3.7rem, 3.8vw, 5.3rem);
}

.home-program-panel img {
  width: min(780px, 116%);
  max-width: none;
  justify-self: end;
  filter: drop-shadow(0 30px 28px rgba(15, 25, 35, 0.16));
}

.home-quality-panel {
  display: grid;
  align-content: center;
  padding: clamp(36px, 4vw, 70px);
}

.home-quality-list {
  display: grid;
  margin: 24px 0 30px;
  border-top: 1px solid var(--gold-line);
}

.home-quality-list span {
  min-height: 68px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  color: var(--mute);
  font-size: 1.02rem;
}

.home-quality-list b {
  color: var(--midnight);
  font-weight: 850;
  text-transform: uppercase;
}

.home-sample-grid {
  display: grid;
  grid-template-columns: minmax(700px, 1.1fr) minmax(480px, 0.9fr);
  gap: 48px;
  align-items: center;
}

.home-sample-grid > img {
  width: min(1180px, 108%);
  max-width: none;
  filter: drop-shadow(0 34px 30px rgba(15, 25, 35, 0.15));
}

.home-sample-list {
  display: grid;
  gap: 18px;
}

.home-sample-list article {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 20px;
  min-height: 128px;
  align-items: center;
  padding: 24px 28px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.42);
}

.home-sample-list .line-icon {
  grid-row: 1 / span 2;
}

.home-sample-list b,
.home-sample-list p {
  margin: 0;
}

.home-sample-list b {
  color: var(--midnight);
  font-weight: 850;
  text-transform: uppercase;
}

.home-about-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 44px;
  align-items: end;
  padding-bottom: clamp(104px, 11vh, 150px);
}

.home-about-cta p:not(.section-kicker) {
  max-width: 900px;
  font-size: 1.25rem;
}

.home-final-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}

@media (max-width: 1180px) {
  .goal-home-hero,
  .home-tech-grid,
  .home-split-section,
  .home-sample-grid,
  .home-about-cta {
    grid-template-columns: 1fr;
  }

  .goal-home-hero {
    min-height: 0;
    padding-top: 42px;
  }

  .home-product-stage {
    min-height: 540px;
  }

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

  .home-format-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .home-program-panel img,
  .home-sample-grid > img {
    width: min(920px, 100%);
    justify-self: center;
  }

  .home-final-actions {
    justify-self: start;
  }
}

@media (max-width: 860px) {
  .goal-home-hero {
    gap: 28px;
    padding-top: 30px;
  }

  .home-hero-copy h1,
  .home-section-heading h2,
  .home-program-panel h2,
  .home-quality-panel h2,
  .home-about-cta h2 {
    font-size: clamp(3rem, 13vw, 4.8rem);
    line-height: 0.92;
  }

  .home-hero-copy > p:not(.section-kicker) {
    margin-bottom: 22px;
    font-size: 1.06rem;
  }

  .home-section-heading {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .home-page-rail,
  .home-format-strip {
    grid-template-columns: 1fr;
  }

  .home-proof-line {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 22px;
  }

  .home-proof-line span {
    min-height: 46px;
    padding: 10px 12px;
    font-size: 0.7rem;
  }

  .home-product-stage {
    min-height: 430px;
  }

  .home-sem-backdrop {
    inset: 14px 14px auto;
    height: 52%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
  }

  .home-product-lineup {
    bottom: 52px;
    width: 118%;
  }

  .home-product-label {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: auto;
  }

  .label-left {
    position: absolute;
    left: 14px;
    bottom: 14px;
    width: calc(50% - 22px);
  }

  .label-right {
    position: absolute;
    right: 14px;
    bottom: 14px;
    width: calc(50% - 22px);
  }

  .home-product-label span {
    display: none;
  }

  .home-tech-copy article,
  .home-sample-list article {
    grid-template-columns: 58px 1fr;
    padding: 20px;
  }

  .home-sem-feature {
    min-height: 320px;
  }

  .home-format-strip a {
    min-height: 330px;
  }

  .home-format-strip img {
    max-height: 190px;
  }

  .home-program-panel,
  .home-quality-panel {
    min-height: auto;
    padding: 28px 22px;
  }

  .home-final-actions {
    display: grid;
    width: 100%;
  }
}

/* Lighttree-inspired /goal homepage */
.lighttree-home {
  background:
    linear-gradient(180deg, rgba(239, 244, 246, 0.42), rgba(251, 250, 246, 0.92) 34rem),
    url("./assets/parchment-texture.png");
  background-size: auto, 980px auto;
}

.lighttree-home .site-header {
  top: 20px;
  width: min(calc(100% - 160px), 1720px);
  margin: 20px auto 0;
  border: 1px solid rgba(15, 25, 35, 0.1);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 24px 70px rgba(15, 25, 35, 0.09);
}

.lt-main {
  margin-top: -96px;
  color: var(--midnight);
}

.lt-hero {
  position: relative;
  min-height: 100dvh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 148px 0 88px;
  background:
    radial-gradient(circle at 78% 34%, rgba(255, 255, 255, 0.92), transparent 22rem),
    linear-gradient(116deg, rgba(232, 239, 243, 0.92) 0%, rgba(251, 250, 246, 0.88) 46%, rgba(245, 240, 230, 0.96) 100%);
}

.lt-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(180deg, transparent, rgba(251, 250, 246, 0.98));
  pointer-events: none;
}

.lt-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.lt-hero-bg img {
  position: absolute;
  width: 112vw;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05);
  opacity: 0.14;
  mix-blend-mode: multiply;
}

.lt-hero-bg img:first-child {
  left: -18vw;
  top: 0;
  object-position: 22% center;
}

.lt-hero-bg img:last-child {
  right: -28vw;
  top: 0;
  opacity: 0.12;
  object-position: 72% center;
}

.lt-hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  text-align: center;
}

.lt-hero-content .section-kicker::after {
  margin-inline: auto;
}

.lt-hero h1,
.lt-intro h2,
.lt-stats h2,
.lt-process h2,
.lt-section-head h2,
.lt-slider-copy h2,
.lt-sample h2,
.lt-final h2 {
  font-family: var(--ui-sans);
  font-weight: 500;
  letter-spacing: 0;
}

.lt-hero h1 {
  max-width: min(1120px, calc(100vw - 56px));
  margin-bottom: 28px;
  font-size: clamp(4.6rem, 7.2vw, 8.8rem);
  line-height: 0.96;
}

.lt-hero-content > p:not(.section-kicker) {
  max-width: 790px;
  margin-bottom: 30px;
  color: #263746;
  font-size: clamp(1.08rem, 1.35vw, 1.42rem);
  line-height: 1.48;
}

.lt-category-pills {
  position: absolute;
  left: 50%;
  bottom: 42px;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  width: min(calc(100% - 48px), 920px);
  transform: translateX(-50%);
}

.lt-category-pills a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 8px 22px;
  border: 2px solid rgba(15, 25, 35, 0.86);
  background: rgba(251, 250, 246, 0.62);
  color: var(--midnight);
  font-size: 0.96rem;
  font-weight: 650;
  transition: background 220ms var(--ease), color 220ms var(--ease), border-color 220ms var(--ease);
}

.lt-category-pills a:hover,
.lt-category-pills a:focus-visible {
  color: var(--paper);
  border-color: var(--midnight);
  background: var(--midnight);
}

.lt-intro {
  padding-top: clamp(76px, 9vh, 136px);
  padding-bottom: clamp(76px, 9vh, 136px);
  text-align: center;
}

.lt-intro .section-kicker::after {
  margin-inline: auto;
}

.lt-intro h2 {
  max-width: 1180px;
  margin-inline: auto;
  font-size: clamp(3.5rem, 4.8vw, 6.4rem);
  line-height: 1.02;
}

.lt-intro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 60px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  text-align: left;
}

.lt-intro-grid article {
  min-height: 260px;
  padding: 34px 36px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.42);
}

.lt-intro-grid span {
  color: var(--gold-deep);
  font-family: var(--display-serif);
  font-size: 2.6rem;
}

.lt-intro-grid b {
  display: block;
  margin-top: 18px;
  color: var(--midnight);
  font-size: 0.9rem;
  font-weight: 850;
  text-transform: uppercase;
}

.lt-intro-grid p {
  max-width: 420px;
  margin: 16px 0 0;
  font-size: 1.06rem;
}

.lt-stats {
  display: grid;
  grid-template-columns: minmax(420px, 0.78fr) minmax(560px, 1.22fr);
  gap: clamp(60px, 7vw, 128px);
  padding-top: clamp(72px, 8vh, 120px);
  padding-bottom: clamp(72px, 8vh, 120px);
  border-top: 1px solid var(--line);
}

.lt-stats h2 {
  max-width: 760px;
  font-size: clamp(3rem, 3.7vw, 5.2rem);
  line-height: 1.02;
}

.lt-stats p {
  max-width: 600px;
  font-size: 1.2rem;
}

.lt-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.lt-stat-grid article {
  min-height: 190px;
  display: grid;
  align-content: center;
  padding: 26px 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.lt-stat-grid b {
  color: var(--midnight);
  font-size: clamp(3.1rem, 5vw, 5.8rem);
  font-weight: 520;
  line-height: 0.92;
}

.lt-stat-grid span {
  margin-top: 14px;
  color: var(--mute);
  font-size: 1.08rem;
}

.lt-process,
.lt-slider-like {
  display: grid;
  grid-template-columns: minmax(460px, 0.86fr) minmax(620px, 1.14fr);
  min-height: 760px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.34);
}

.lt-process-copy,
.lt-slider-copy {
  display: grid;
  align-content: center;
  padding: clamp(54px, 6vw, 110px);
}

.lt-process h2,
.lt-slider-copy h2,
.lt-section-head h2,
.lt-sample h2,
.lt-final h2 {
  max-width: 860px;
  font-size: clamp(3.2rem, 4.2vw, 5.8rem);
  line-height: 1.02;
}

.lt-process-copy > p:not(.section-kicker),
.lt-slider-copy > p,
.lt-sample-copy > p {
  max-width: 660px;
  font-size: 1.18rem;
}

.lt-process-media {
  position: relative;
  min-height: 760px;
  margin: 0;
  overflow: hidden;
  background: #101010;
}

.lt-process-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.08);
}

.lt-process-media figcaption {
  position: absolute;
  left: 34px;
  bottom: 32px;
  padding-top: 12px;
  border-top: 1px solid #fff;
  color: #fff;
}

.lt-formats,
.lt-quality,
.lt-sample {
  padding-top: clamp(76px, 9vh, 136px);
  padding-bottom: clamp(76px, 9vh, 136px);
  border-top: 1px solid var(--line);
}

.lt-section-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 34px;
  align-items: end;
  margin-bottom: 42px;
}

.lt-section-head h2 {
  margin-bottom: 0;
}

.text-link,
.lt-section-head .text-link {
  width: max-content;
  color: var(--gold-deep);
  font-size: 0.86rem;
  font-weight: 850;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
}

.lt-product-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.lt-product-row a {
  min-height: clamp(360px, 42vh, 500px);
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 22px;
  align-items: end;
  justify-items: center;
  padding: 28px 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.42);
  transition: background 220ms var(--ease), transform 220ms var(--ease);
}

.lt-product-row a:hover,
.lt-product-row a:focus-visible {
  background: rgba(255, 255, 255, 0.66);
  transform: translateY(-4px);
}

.lt-product-row img {
  max-height: 292px;
  object-fit: contain;
  filter: drop-shadow(0 25px 18px rgba(15, 25, 35, 0.14));
}

.lt-product-row b {
  color: var(--midnight);
  font-family: var(--display-serif);
  font-size: 1.65rem;
  font-weight: 650;
}

.lt-slider-like {
  grid-template-columns: minmax(680px, 1.05fr) minmax(520px, 0.95fr);
}

.lt-slider-image {
  display: grid;
  place-items: end center;
  min-height: 740px;
  padding: 60px 42px 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(245, 240, 230, 0.55)),
    url("./assets/approved/hd-particle-field-wide.png");
  background-size: auto, cover;
  background-position: center;
  overflow: hidden;
}

.lt-slider-image img {
  width: min(960px, 112%);
  max-width: none;
  filter: drop-shadow(0 30px 26px rgba(15, 25, 35, 0.17));
}

.lt-slider-copy ol {
  display: grid;
  gap: 0;
  margin: 26px 0 30px;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.lt-slider-copy li {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 22px;
  min-height: 76px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.lt-slider-copy b {
  color: var(--midnight);
  font-weight: 850;
  text-transform: uppercase;
}

.lt-slider-copy span {
  color: var(--mute);
}

.lt-quality-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.lt-quality-grid article {
  min-height: 260px;
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 32px 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.42);
}

.lt-quality-grid b {
  color: var(--midnight);
  font-weight: 850;
  text-transform: uppercase;
}

.lt-quality-grid p {
  margin: 0;
}

.lt-sample {
  display: grid;
  grid-template-columns: minmax(440px, 0.74fr) minmax(680px, 1.26fr);
  gap: clamp(52px, 6vw, 116px);
  align-items: center;
}

.lt-sample img {
  width: min(1080px, 108%);
  max-width: none;
  justify-self: end;
  filter: drop-shadow(0 34px 30px rgba(15, 25, 35, 0.14));
}

.lt-final {
  padding: clamp(94px, 12vh, 160px) 0;
  border-top: 1px solid var(--line);
  text-align: center;
  background: rgba(255, 255, 255, 0.36);
}

.lt-final .section-kicker::after {
  margin-inline: auto;
}

.lt-final h2 {
  margin-inline: auto;
}

.lt-final-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
}

@media (max-width: 1180px) {
  .lighttree-home .site-header {
    top: 0;
    width: 100%;
    margin: 0;
  }

  .lt-main {
    margin-top: 0;
  }

  .lt-hero {
    min-height: auto;
    padding: 64px 0 104px;
  }

  .lt-hero h1 {
    font-size: clamp(3.8rem, 10vw, 6.5rem);
  }

  .lt-stats,
  .lt-process,
  .lt-slider-like,
  .lt-sample {
    grid-template-columns: 1fr;
  }

  .lt-process-media,
  .lt-slider-image {
    min-height: 520px;
  }

  .lt-product-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lt-quality-grid,
  .lt-intro-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .lt-hero {
    padding: 46px 0 116px;
  }

  .lt-hero h1,
  .lt-intro h2,
  .lt-stats h2,
  .lt-process h2,
  .lt-section-head h2,
  .lt-slider-copy h2,
  .lt-sample h2,
  .lt-final h2 {
    font-size: clamp(2.75rem, 12vw, 4.25rem);
    line-height: 1.02;
  }

  .lt-category-pills {
    bottom: 28px;
    gap: 8px;
  }

  .lt-category-pills a {
    min-height: 36px;
    padding: 7px 14px;
    font-size: 0.8rem;
  }

  .lt-intro,
  .lt-stats,
  .lt-formats,
  .lt-quality,
  .lt-sample {
    padding-top: 56px;
    padding-bottom: 64px;
  }

  .lt-intro-grid,
  .lt-stat-grid,
  .lt-product-row,
  .lt-quality-grid {
    grid-template-columns: 1fr;
  }

  .lt-intro-grid article,
  .lt-stat-grid article,
  .lt-quality-grid article {
    min-height: auto;
    padding: 24px 22px;
  }

  .lt-process-copy,
  .lt-slider-copy {
    padding: 42px 22px;
  }

  .lt-process-media,
  .lt-slider-image {
    min-height: 360px;
  }

  .lt-section-head {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .lt-product-row a {
    min-height: 300px;
  }

  .lt-product-row img {
    max-height: 210px;
  }

  .lt-slider-copy li {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 18px 0;
  }

  .lt-sample img {
    width: min(680px, 106%);
    justify-self: center;
  }

  .lt-final-actions {
    display: grid;
  }
}

/* Root homepage rebuild */
.skip-link {
  position: fixed;
  left: 20px;
  top: 14px;
  z-index: 80;
  padding: 12px 16px;
  color: #fff;
  background: var(--midnight);
  transform: translateY(-160%);
  transition: transform 200ms var(--ease);
}

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

body.home-rebuild {
  --hd-blue: #005fd1;
  --hd-blue-deep: #00429b;
  --hd-ice: #edf5fb;
  --hd-ice-2: #f7fbfe;
  --hd-navy: #07121f;
  --hd-gold: #b9831c;
  --hd-muted: #526474;
  background:
    radial-gradient(circle at 8% 22%, rgba(0, 95, 209, 0.18), transparent 23rem),
    radial-gradient(circle at 88% 10%, rgba(185, 131, 28, 0.09), transparent 26rem),
    linear-gradient(180deg, #f6fbff 0%, #fbfaf6 40%, #f4f8fa 100%);
}

.home-rebuild .section-shell {
  width: min(calc(100% - 64px), 1460px);
}

.home-rebuild .site-header {
  top: 24px;
  width: min(calc(100% - 88px), 1510px);
  min-height: 86px;
  margin: 24px auto 0;
  padding: 13px 24px 13px 34px;
  border: 1px solid rgba(119, 143, 162, 0.26);
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 22px 74px rgba(4, 22, 38, 0.1);
}

.home-rebuild .brand span,
.home-rebuild .footer-brand span {
  color: var(--hd-navy);
  font-size: 1.95rem;
}

.home-rebuild .brand small,
.home-rebuild .footer-brand small,
.home-rebuild .gold-dot,
.home-rebuild .section-kicker,
.home-rebuild .text-link {
  color: var(--hd-gold);
}

.home-rebuild .main-nav {
  gap: clamp(24px, 3vw, 52px);
  color: var(--hd-navy);
  font-size: 0.98rem;
}

.home-rebuild .main-nav a:hover,
.home-rebuild .main-nav a:focus-visible {
  color: var(--hd-gold);
}

.home-rebuild .btn {
  min-height: 54px;
  border-radius: 999px !important;
  padding: 0 30px;
  letter-spacing: 0;
  text-transform: none;
}

.home-rebuild .btn-dark {
  color: #fff;
  background: var(--hd-navy);
  border-color: var(--hd-navy);
  box-shadow: 0 16px 36px rgba(7, 18, 31, 0.22);
}

.home-rebuild .btn-dark:hover,
.home-rebuild .btn-dark:focus-visible {
  color: #fff;
  background: #0b2239;
  border-color: #0b2239;
}

.home-rebuild .btn-ghost {
  color: var(--hd-gold);
  background: rgba(255, 255, 255, 0.58);
  border-color: rgba(185, 131, 28, 0.42);
}

.home-rebuild .btn-ghost:hover,
.home-rebuild .btn-ghost:focus-visible {
  color: var(--hd-navy);
  background: rgba(185, 131, 28, 0.12);
}

.home-rebuild a:focus-visible,
.home-rebuild button:focus-visible,
.home-rebuild input:focus-visible,
.home-rebuild select:focus-visible,
.home-rebuild textarea:focus-visible {
  outline: 3px solid rgba(0, 95, 209, 0.32);
  outline-offset: 3px;
}

.hd-main {
  margin-top: -110px;
  overflow: hidden;
}

.hd-hero {
  position: relative;
  min-height: 100dvh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 166px 0 88px;
  isolation: isolate;
}

.hd-hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto auto;
  z-index: -2;
  width: min(54vw, 940px);
  height: 74%;
  background:
    linear-gradient(90deg, rgba(246, 251, 255, 0.9), rgba(246, 251, 255, 0.2)),
    url("./assets/approved/hero-sem-soft.png");
  background-size: cover;
  background-position: center;
  filter: grayscale(1) contrast(1.04);
  opacity: 0.18;
}

.hd-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 180px;
  background: linear-gradient(180deg, transparent, rgba(251, 250, 246, 0.96));
}

.hd-hero-ampoule {
  position: absolute;
  left: max(-46px, calc((100vw - 1480px) / 2 - 84px));
  top: 6px;
  bottom: -70px;
  z-index: -1;
  width: clamp(270px, 33vw, 560px);
  pointer-events: none;
}

.hd-hero-ampoule::after {
  content: "";
  position: absolute;
  inset: 0 -18% 0 auto;
  width: 46%;
  background: linear-gradient(90deg, transparent, rgba(246, 251, 255, 0.92) 74%, rgba(246, 251, 255, 1));
}

.hd-hero-ampoule img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 28px 40px rgba(0, 95, 209, 0.18));
}

.hd-hero-inner {
  position: relative;
  display: grid;
  justify-items: center;
  text-align: center;
}

.home-rebuild .section-kicker {
  margin-bottom: 26px;
  font-size: 0.9rem;
  letter-spacing: 0.14em;
}

.home-rebuild .section-kicker::after {
  width: 48px;
  height: 2px;
  margin-top: 16px;
}

.hd-hero .section-kicker::after,
.hd-process-head .section-kicker::after,
.hd-final-panel .section-kicker::after {
  margin-inline: auto;
}

.hd-hero h1,
.hd-hub h2,
.hd-section-copy h2,
.hd-process h2,
.hd-final h2 {
  color: var(--hd-navy);
  text-wrap: balance;
}

.hd-hero h1 {
  max-width: min(100%, 1040px);
  margin-bottom: 26px;
  font-size: clamp(4.5rem, 7vw, 8.4rem);
  line-height: 0.94;
}

.hd-hero-lede {
  max-width: 780px;
  margin-bottom: 30px;
  color: var(--hd-muted);
  font-size: clamp(1.15rem, 1.6vw, 1.5rem);
  line-height: 1.45;
}

.hd-proof-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  margin: 0 0 32px;
}

.hd-proof-row span {
  min-width: 130px;
  padding: 0 26px;
  border-right: 1px solid rgba(82, 100, 116, 0.22);
  color: var(--hd-navy);
}

.hd-proof-row span:last-child {
  border-right: 0;
}

.hd-proof-row b,
.hd-proof-row small {
  display: block;
}

.hd-proof-row b {
  font-size: clamp(1.15rem, 1.7vw, 1.65rem);
  font-weight: 500;
  line-height: 1.05;
}

.hd-proof-row small {
  margin-top: 5px;
  color: var(--hd-muted);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hd-format-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 42px;
}

.hd-format-chips a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 8px 20px;
  border: 1px solid rgba(7, 18, 31, 0.3);
  border-radius: 999px !important;
  color: var(--hd-navy);
  background: rgba(255, 255, 255, 0.5);
  font-weight: 700;
  transition: color 220ms var(--ease), background 220ms var(--ease), transform 220ms var(--ease);
}

.hd-format-chips a:hover,
.hd-format-chips a:focus-visible {
  color: #fff;
  background: var(--hd-navy);
  transform: translateY(-2px);
}

.hd-hub,
.hd-formats,
.hd-process,
.hd-quality,
.hd-final {
  position: relative;
}

.hd-hub {
  padding: clamp(78px, 10vh, 144px) 0;
}

.hd-platform-panel {
  padding: clamp(42px, 6vw, 88px);
  border: 1px solid rgba(119, 143, 162, 0.2);
  border-radius: clamp(30px, 4vw, 54px) !important;
  background:
    radial-gradient(circle at 10% 12%, rgba(0, 95, 209, 0.07), transparent 24rem),
    rgba(255, 255, 255, 0.88);
  box-shadow: 0 30px 90px rgba(12, 32, 50, 0.08);
  text-align: center;
}

.hd-platform-panel h2 {
  max-width: 920px;
  margin-inline: auto;
  font-family: var(--ui-sans);
  font-size: clamp(3.25rem, 4.8vw, 6.3rem);
  font-weight: 700;
  line-height: 0.98;
}

.hd-hub-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(38px, 5vw, 76px);
}

.hd-hub-columns article {
  display: grid;
  justify-items: center;
  gap: 16px;
  padding: 0 clamp(20px, 4vw, 56px);
  border-right: 1px solid rgba(82, 100, 116, 0.18);
}

.hd-hub-columns article:last-child {
  border-right: 0;
}

.hd-hub-columns .line-icon,
.hd-process-steps .line-icon {
  width: 86px;
  height: 86px;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.6);
}

.hd-hub-columns h3,
.hd-process-steps h3 {
  margin: 6px 0 0;
  color: var(--hd-navy);
  font-family: var(--ui-sans);
  font-size: clamp(1.15rem, 1.4vw, 1.42rem);
  font-weight: 800;
  line-height: 1.1;
}

.hd-hub-columns p,
.hd-process-steps p {
  max-width: 330px;
  margin: 0;
  color: var(--hd-muted);
  font-size: 0.98rem;
}

.hd-hub-bottom {
  display: grid;
  grid-template-columns: minmax(280px, 0.74fr) minmax(480px, 1.26fr);
  gap: clamp(38px, 6vw, 82px);
  align-items: center;
  margin-top: clamp(48px, 6vw, 86px);
  padding-top: clamp(34px, 5vw, 56px);
  border-top: 1px solid rgba(82, 100, 116, 0.18);
  text-align: left;
}

.hd-hub-bottom p {
  max-width: 470px;
  margin: 0;
  color: var(--hd-navy);
  font-size: clamp(1.25rem, 1.75vw, 1.72rem);
  line-height: 1.42;
}

.hd-hub-bottom dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  border-top: 1px solid rgba(82, 100, 116, 0.18);
  border-left: 1px solid rgba(82, 100, 116, 0.18);
}

.hd-hub-bottom div {
  min-height: 112px;
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 18px;
  border-right: 1px solid rgba(82, 100, 116, 0.18);
  border-bottom: 1px solid rgba(82, 100, 116, 0.18);
}

.hd-hub-bottom dt {
  color: var(--hd-navy);
  font-size: clamp(2.1rem, 3vw, 3.2rem);
  font-weight: 600;
  line-height: 1;
}

.hd-hub-bottom dd {
  margin: 8px 0 0;
  color: var(--hd-muted);
  font-size: 0.84rem;
}

.hd-formats {
  padding: clamp(78px, 10vh, 138px) 0 clamp(88px, 10vh, 150px);
}

.hd-formats::before,
.hd-process::before,
.hd-final::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(180, 211, 229, 0.16) 1px, transparent 1px),
    linear-gradient(180deg, rgba(180, 211, 229, 0.11) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, transparent, #000 22%, #000 78%, transparent);
  opacity: 0.52;
}

.hd-formats-inner,
.hd-quality-inner {
  display: grid;
  grid-template-columns: minmax(360px, 0.42fr) minmax(640px, 0.58fr);
  gap: clamp(42px, 6vw, 96px);
  align-items: center;
}

.hd-section-copy h2,
.hd-process h2,
.hd-final h2 {
  max-width: 760px;
  font-size: clamp(3.6rem, 5vw, 6.6rem);
  line-height: 0.96;
}

.hd-section-copy p:not(.section-kicker),
.hd-final p,
.hd-process-head p {
  max-width: 660px;
  color: var(--hd-muted);
  font-size: clamp(1.08rem, 1.35vw, 1.34rem);
  line-height: 1.55;
}

.hd-format-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(82, 100, 116, 0.18);
  border-left: 1px solid rgba(82, 100, 116, 0.18);
  background: rgba(255, 255, 255, 0.38);
}

.hd-format-grid a {
  min-height: clamp(310px, 36vh, 430px);
  display: grid;
  grid-template-rows: 1fr auto auto;
  gap: 10px;
  align-items: end;
  padding: 26px 22px;
  border-right: 1px solid rgba(82, 100, 116, 0.18);
  border-bottom: 1px solid rgba(82, 100, 116, 0.18);
  transition: background 220ms var(--ease), transform 220ms var(--ease);
}

.hd-format-grid a:hover,
.hd-format-grid a:focus-visible {
  background: rgba(255, 255, 255, 0.72);
  transform: translateY(-4px);
}

.hd-format-grid img {
  align-self: end;
  justify-self: center;
  max-height: 245px;
  object-fit: contain;
  filter: drop-shadow(0 24px 20px rgba(7, 18, 31, 0.14));
}

.hd-format-grid b {
  color: var(--hd-navy);
  font-family: var(--display-serif);
  font-size: 1.9rem;
  font-weight: 650;
  line-height: 1;
}

.hd-format-grid span {
  color: var(--hd-muted);
  font-size: 0.92rem;
  line-height: 1.35;
}

.hd-process {
  padding: clamp(82px, 10vh, 152px) 0 clamp(52px, 7vh, 96px);
  text-align: center;
}

.hd-process-head {
  display: grid;
  justify-items: center;
}

.hd-process-head p {
  margin-bottom: clamp(44px, 6vw, 76px);
}

.hd-process-steps {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hd-process-steps::before {
  content: "";
  position: absolute;
  left: 9%;
  right: 9%;
  top: 30px;
  height: 1px;
  background: rgba(185, 131, 28, 0.36);
  z-index: -1;
}

.hd-process-steps li {
  display: grid;
  justify-items: center;
  gap: 18px;
}

.hd-process-steps li > span {
  display: inline-grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 50% !important;
  color: var(--hd-gold);
  background: #f2eee7;
  border: 1px solid rgba(185, 131, 28, 0.18);
  font-size: 1.28rem;
  font-weight: 800;
}

.hd-process-kit {
  display: grid;
  justify-items: end;
  margin-top: clamp(34px, 5vw, 70px);
}

.hd-process-kit img {
  width: min(840px, 70%);
  filter: drop-shadow(0 30px 24px rgba(7, 18, 31, 0.14));
}

.hd-quality {
  padding: clamp(82px, 10vh, 146px) 0;
  background:
    radial-gradient(circle at 84% 24%, rgba(0, 95, 209, 0.12), transparent 26rem),
    rgba(255, 255, 255, 0.42);
}

.hd-proof-row-compact {
  justify-content: flex-start;
  margin: 32px 0 24px;
}

.hd-proof-row-compact span {
  min-width: 108px;
  padding: 0 18px 0 0;
  margin-right: 18px;
}

.hd-proof-row-compact b {
  font-size: 1rem;
  font-weight: 800;
}

.hd-doc-stack {
  position: relative;
  min-height: 640px;
}

.hd-coa-sheet,
.hd-batch-card {
  position: absolute;
  color: var(--hd-navy);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(82, 100, 116, 0.16);
  box-shadow: 0 24px 60px rgba(7, 18, 31, 0.1);
}

.hd-coa-sheet {
  left: 4%;
  top: 4%;
  z-index: 2;
  width: min(520px, 72%);
  padding: 38px 42px;
  transform: rotate(-3deg);
}

.hd-coa-sheet header {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(82, 100, 116, 0.22);
  text-transform: uppercase;
}

.hd-coa-sheet header b {
  letter-spacing: 0.08em;
}

.hd-coa-sheet header span {
  font-family: var(--display-serif);
  font-size: 1.1rem;
  text-transform: none;
}

.hd-coa-sheet dl {
  display: grid;
  gap: 10px;
  margin: 22px 0;
}

.hd-coa-sheet dl div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
}

.hd-coa-sheet dt,
.hd-coa-sheet dd {
  margin: 0;
  font-size: 0.82rem;
}

.hd-coa-sheet dt {
  color: var(--hd-muted);
}

.hd-coa-sheet table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.72rem;
}

.hd-coa-sheet th,
.hd-coa-sheet td {
  padding: 9px 8px;
  border: 1px solid rgba(82, 100, 116, 0.18);
  text-align: left;
}

.hd-batch-card {
  right: 6%;
  top: 12%;
  z-index: 1;
  display: grid;
  gap: 12px;
  width: min(310px, 44%);
  min-height: 230px;
  align-content: center;
  padding: 30px;
  transform: rotate(4deg);
}

.hd-batch-card b {
  font-size: 1.7rem;
  text-transform: uppercase;
}

.hd-batch-card span {
  color: var(--hd-muted);
}

.hd-doc-stack img {
  position: absolute;
  right: -6%;
  bottom: -6%;
  z-index: 3;
  width: min(860px, 98%);
  filter: drop-shadow(0 32px 24px rgba(7, 18, 31, 0.14));
}

.hd-final {
  padding: clamp(80px, 10vh, 142px) 0 clamp(96px, 12vh, 168px);
}

.hd-final-panel {
  position: relative;
  min-height: clamp(680px, 74vh, 860px);
  display: grid;
  justify-items: center;
  align-content: start;
  overflow: hidden;
  padding: clamp(56px, 7vw, 88px) clamp(26px, 6vw, 80px) 0;
  border: 1px solid rgba(119, 143, 162, 0.24);
  border-radius: clamp(34px, 5vw, 70px) !important;
  background:
    radial-gradient(circle at 50% 112%, rgba(0, 95, 209, 0.14), transparent 34rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(250, 252, 252, 0.88));
  box-shadow: 0 34px 90px rgba(12, 32, 50, 0.1);
  text-align: center;
}

.hd-final-panel h2 {
  max-width: 920px;
  margin-inline: auto;
}

.hd-final-panel p:not(.section-kicker) {
  max-width: 760px;
  margin-bottom: 28px;
}

.hd-final-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-bottom: 28px;
}

.hd-final-panel > img {
  position: absolute;
  left: 50%;
  bottom: -3%;
  width: min(1320px, 92%);
  max-width: none;
  transform: translateX(-50%);
  filter: drop-shadow(0 34px 30px rgba(7, 18, 31, 0.15));
}

.home-rebuild .modal-copy {
  overflow: hidden;
}

.home-rebuild .modal-products {
  width: min(760px, 118%);
  margin: 26px 0 -24px -8%;
  filter: drop-shadow(0 28px 24px rgba(7, 18, 31, 0.14));
}

@media (max-width: 1180px) {
  .home-rebuild .site-header {
    top: 0;
    width: 100%;
    min-height: 76px;
    margin: 0;
    border-radius: 0 !important;
    padding: 12px 22px;
  }

  .hd-main {
    margin-top: 0;
  }

  .hd-hero {
    min-height: auto;
    padding: 74px 0 88px;
  }

  .hd-hero-ampoule {
    left: -130px;
    top: 64px;
    width: 430px;
    opacity: 0.56;
  }

  .hd-hub-bottom,
  .hd-formats-inner,
  .hd-quality-inner {
    grid-template-columns: 1fr;
  }

  .hd-process-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 24px;
  }

  .hd-process-steps::before {
    display: none;
  }

  .hd-process-kit img {
    width: min(860px, 100%);
  }

  .hd-doc-stack {
    min-height: 600px;
  }
}

@media (max-width: 860px) {
  .home-rebuild .section-shell {
    width: min(calc(100% - 36px), 1460px);
  }

  .home-rebuild .brand span,
  .home-rebuild .footer-brand span {
    font-size: 1.62rem;
  }

  .home-rebuild .menu-toggle {
    border-radius: 50% !important;
  }

  .home-rebuild .mobile-menu a {
    font-size: clamp(2.7rem, 13vw, 4.1rem);
  }

  .hd-hero {
    padding: 58px 0 72px;
  }

  .hd-hero::before {
    width: 100%;
    opacity: 0.1;
  }

  .hd-hero-ampoule {
    left: -126px;
    top: 54px;
    width: 340px;
    opacity: 0.34;
  }

  .hd-hero-ampoule::after {
    inset: 0 -38% 0 auto;
    width: 58%;
  }

  .hd-hero h1,
  .hd-platform-panel h2,
  .hd-section-copy h2,
  .hd-process h2,
  .hd-final h2 {
    font-size: clamp(3.1rem, 14vw, 4.8rem);
    line-height: 1;
  }

  .hd-hero-lede,
  .hd-section-copy p:not(.section-kicker),
  .hd-final p,
  .hd-process-head p {
    font-size: 1.04rem;
  }

  .home-rebuild .hero-actions,
  .hd-final-actions {
    display: grid;
    width: 100%;
  }

  .hd-hero .hero-actions {
    order: 3;
  }

  .hd-hero .hd-proof-row {
    order: 4;
    margin-top: 22px;
  }

  .hd-hero .hd-format-chips {
    order: 5;
  }

  .home-rebuild .btn {
    width: 100%;
  }

  .hd-proof-row {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .hd-proof-row span,
  .hd-proof-row-compact span {
    min-width: 0;
    margin: 0;
    padding: 14px 10px;
    border: 1px solid rgba(82, 100, 116, 0.16);
    background: rgba(255, 255, 255, 0.46);
  }

  .hd-format-chips {
    gap: 8px;
  }

  .hd-format-chips a {
    min-height: 36px;
    padding: 8px 14px;
    font-size: 0.86rem;
  }

  .hd-platform-panel {
    padding: 34px 20px;
    border-radius: 28px !important;
  }

  .hd-hub-columns,
  .hd-format-grid,
  .hd-hub-bottom dl {
    grid-template-columns: 1fr;
  }

  .hd-hub-columns article {
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(82, 100, 116, 0.18);
  }

  .hd-hub-columns article:last-child {
    border-bottom: 0;
  }

  .hd-format-grid a {
    min-height: 290px;
  }

  .hd-format-grid img {
    max-height: 190px;
  }

  .hd-process-steps {
    grid-template-columns: 1fr;
  }

  .hd-process-steps li {
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(82, 100, 116, 0.16);
  }

  .hd-process-kit {
    justify-items: center;
  }

  .hd-doc-stack {
    min-height: auto;
    display: grid;
    gap: 18px;
  }

  .hd-coa-sheet,
  .hd-batch-card,
  .hd-doc-stack img {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    transform: none;
  }

  .hd-coa-sheet {
    padding: 26px 20px;
    overflow-x: auto;
  }

  .hd-coa-sheet dl div {
    grid-template-columns: 96px 1fr;
  }

  .hd-final-panel {
    min-height: 690px;
    border-radius: 30px !important;
  }

  .hd-final-panel > img {
    width: 125%;
    bottom: 0;
  }
}

@media (max-width: 520px) {
  .home-rebuild .site-header {
    padding-inline: 16px;
  }

  .hd-hero h1,
  .hd-platform-panel h2,
  .hd-section-copy h2,
  .hd-process h2,
  .hd-final h2 {
    font-size: clamp(2.72rem, 15vw, 3.85rem);
  }

  .hd-proof-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hd-hub-bottom div {
    min-height: 96px;
  }

  .hd-coa-sheet table {
    min-width: 460px;
  }

  .hd-final-panel {
    min-height: 620px;
  }
}

/* Root source-v2 homepage */
body.source-v2-home {
  --hdv2-navy: #07121f;
  --hdv2-blue: #003f91;
  --hdv2-blue-deep: #001f49;
  --hdv2-gold: #a66d13;
  --hdv2-muted: #56687a;
  --hdv2-line: rgba(86, 104, 122, 0.2);
  --hdv2-ice: #f4f8fb;
  --hdv2-white: rgba(255, 255, 255, 0.94);
  color: var(--hdv2-navy);
  background:
    radial-gradient(circle at 90% 0%, rgba(0, 63, 145, 0.12), transparent 28rem),
    linear-gradient(180deg, #f4f8fb 0%, #fbfcfc 46%, #f3f7f9 100%);
}

.source-v2-home .skip-link {
  position: fixed;
  left: 20px;
  top: 16px;
  z-index: 100;
  padding: 12px 16px;
  color: #fff;
  background: var(--hdv2-navy);
  transform: translateY(-160%);
  transition: transform 200ms var(--ease);
}

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

.source-v2-home .section-shell {
  width: min(calc(100% - 70px), 1510px);
}

.source-v2-home .site-header {
  position: fixed;
  left: 50%;
  top: 24px;
  z-index: 50;
  width: min(calc(100% - 88px), 1510px);
  min-height: 90px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 14px 26px 14px 36px;
  border: 1px solid rgba(102, 122, 140, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 20px 70px rgba(4, 22, 38, 0.12);
  transform: translateX(-50%);
  backdrop-filter: blur(22px);
}

.source-v2-home .brand span,
.source-v2-home .footer-brand span {
  color: var(--hdv2-navy);
  font-size: 1.95rem;
}

.source-v2-home .brand small,
.source-v2-home .footer-brand small,
.source-v2-home .gold-dot {
  color: var(--hdv2-gold);
}

.source-v2-home .main-nav {
  gap: 52px;
  color: var(--hdv2-navy);
  font-size: 0.98rem;
  font-weight: 650;
}

.source-v2-home .main-nav a:hover,
.source-v2-home .main-nav a:focus-visible {
  color: var(--hdv2-gold);
}

.source-v2-home .main-nav a[aria-current="page"] {
  color: var(--hdv2-gold);
}

.source-v2-home .btn {
  min-height: 56px;
  border-radius: 999px;
  padding: 0 30px;
  letter-spacing: 0;
  text-transform: none;
  font-size: 0.92rem;
}

.source-v2-home .btn-dark {
  color: #fff;
  background: var(--hdv2-navy);
  border-color: var(--hdv2-navy);
  box-shadow: 0 16px 34px rgba(7, 18, 31, 0.24);
}

.source-v2-home .btn-dark:hover,
.source-v2-home .btn-dark:focus-visible {
  color: #fff;
  background: #10283f;
  border-color: #10283f;
  transform: translateY(-2px);
}

.source-v2-home .btn-ghost {
  color: var(--hdv2-gold);
  background: rgba(255, 255, 255, 0.62);
  border-color: rgba(166, 109, 19, 0.52);
}

.source-v2-home .btn-ghost:hover,
.source-v2-home .btn-ghost:focus-visible {
  color: var(--hdv2-navy);
  background: rgba(166, 109, 19, 0.1);
  transform: translateY(-2px);
}

.source-v2-home a:focus-visible,
.source-v2-home button:focus-visible,
.source-v2-home input:focus-visible,
.source-v2-home select:focus-visible,
.source-v2-home textarea:focus-visible {
  outline: 3px solid rgba(0, 63, 145, 0.32);
  outline-offset: 3px;
}

.hdv2-main {
  overflow: hidden;
}

.hdv2-hero {
  position: relative;
  min-height: 100dvh;
  overflow: hidden;
  padding: 138px 0 42px;
  isolation: isolate;
}

.hdv2-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(246, 250, 253, 0.94) 0%, rgba(246, 250, 253, 0.78) 36%, rgba(246, 250, 253, 0.16) 68%),
    url("./assets/source-v2/hero-background-plate.png");
  background-size: cover;
  background-position: center top;
}

.hdv2-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 47% 26%, rgba(255, 255, 255, 0.62), transparent 22rem),
    linear-gradient(180deg, rgba(244, 248, 251, 0) 0%, rgba(244, 248, 251, 0.3) 66%, rgba(244, 248, 251, 0.96) 100%);
}

.hdv2-hero-grid {
  min-height: 650px;
  display: grid;
  grid-template-columns: minmax(460px, 0.43fr) minmax(660px, 0.57fr);
  align-items: center;
  gap: 18px;
}

.hdv2-hero-copy {
  position: relative;
  z-index: 2;
  padding-top: 26px;
}

.hdv2-kicker {
  margin: 0 0 26px;
  color: var(--hdv2-gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.hdv2-kicker::before {
  content: "";
  display: block;
  width: 52px;
  height: 2px;
  margin-bottom: 28px;
  background: var(--hdv2-gold);
}

.hdv2-hero h1,
.hdv2-hub h2,
.hdv2-section-head h2,
.hdv2-process h2,
.hdv2-quality h2,
.hdv2-final h2 {
  max-width: 780px;
  margin: 0;
  color: var(--hdv2-navy);
  text-wrap: balance;
}

.hdv2-hero h1 {
  max-width: 720px;
  font-size: 5.75rem;
  line-height: 0.94;
}

.hdv2-lede {
  max-width: 640px;
  margin: 24px 0 34px;
  color: #41566a;
  font-size: 1.28rem;
  line-height: 1.48;
}

.hdv2-proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-bottom: 32px;
}

.hdv2-proof-row span {
  min-width: 126px;
  padding: 0 24px;
  border-right: 1px solid var(--hdv2-line);
}

.hdv2-proof-row span:first-child {
  padding-left: 0;
}

.hdv2-proof-row span:last-child {
  border-right: 0;
}

.hdv2-proof-row b,
.hdv2-proof-row small {
  display: block;
}

.hdv2-proof-row b {
  color: var(--hdv2-navy);
  font-size: 1.18rem;
  font-weight: 650;
  line-height: 1;
}

.hdv2-proof-row small {
  margin-top: 8px;
  color: var(--hdv2-muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.hdv2-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.hdv2-format-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}

.hdv2-format-chips a {
  min-width: 94px;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  border: 1px solid rgba(7, 18, 31, 0.22);
  border-radius: 999px;
  color: var(--hdv2-navy);
  background: rgba(255, 255, 255, 0.48);
  font-size: 0.86rem;
  font-weight: 700;
  transition: color 220ms var(--ease), background 220ms var(--ease), transform 220ms var(--ease);
}

.hdv2-format-chips a:hover,
.hdv2-format-chips a:focus-visible {
  color: #fff;
  background: var(--hdv2-navy);
  transform: translateY(-2px);
}

.hdv2-wholesale-note {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 34px 0 0;
  color: #42566b;
  font-size: 0.98rem;
  line-height: 1.45;
}

.hdv2-wholesale-note img {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
}

.hdv2-hero-stage {
  position: relative;
  z-index: 1;
  min-height: 610px;
  display: grid;
  align-items: end;
  justify-items: center;
}

.hdv2-hero-stage::before {
  content: "";
  position: absolute;
  left: 4%;
  right: 1%;
  bottom: 5%;
  height: 190px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(202, 215, 224, 0.56));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88), 0 26px 60px rgba(7, 18, 31, 0.12);
  transform: perspective(900px) rotateX(58deg) skewX(-13deg);
  transform-origin: center bottom;
}

.hdv2-hero-stage img {
  position: relative;
  z-index: 2;
  width: min(980px, 112%);
  max-width: none;
  margin: 0 -7% -2% 0;
  filter: drop-shadow(0 34px 32px rgba(7, 18, 31, 0.18));
}

.hdv2-feature-rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: -8px;
  padding: 34px 42px;
  border: 1px solid rgba(102, 122, 140, 0.16);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 24px 70px rgba(7, 18, 31, 0.09);
  backdrop-filter: blur(18px);
}

.hdv2-feature-rail article {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 26px;
  align-items: center;
  padding: 0 36px;
  border-right: 1px solid var(--hdv2-line);
}

.hdv2-feature-rail article:first-child {
  padding-left: 0;
}

.hdv2-feature-rail article:last-child {
  border-right: 0;
  padding-right: 0;
}

.hdv2-feature-rail img,
.hdv2-process-steps img {
  width: 86px;
  height: 86px;
  padding: 22px;
  border: 1px solid rgba(166, 109, 19, 0.2);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.68);
}

.hdv2-feature-rail img {
  padding: 0;
}

.hdv2-feature-rail h2 {
  margin: 0 0 10px;
  color: var(--hdv2-navy);
  font-family: var(--ui-sans);
  font-size: 1.28rem;
  line-height: 1.1;
}

.hdv2-feature-rail p {
  margin: 0;
  color: var(--hdv2-muted);
  font-size: 0.96rem;
  line-height: 1.55;
}

.hdv2-hub {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 0.42fr) minmax(620px, 0.58fr);
  gap: 76px;
  align-items: center;
  padding: 138px 0 108px;
}

.hdv2-hub-copy h2,
.hdv2-section-head h2,
.hdv2-process h2,
.hdv2-quality h2,
.hdv2-final h2 {
  font-size: 4.65rem;
  line-height: 0.98;
}

.hdv2-hub-copy p:not(.hdv2-kicker),
.hdv2-section-head p,
.hdv2-process-copy p:not(.hdv2-kicker),
.hdv2-quality-copy p,
.hdv2-final-copy p {
  max-width: 650px;
  color: var(--hdv2-muted);
  font-size: 1.12rem;
  line-height: 1.65;
}

.hdv2-text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  color: var(--hdv2-gold);
  font-weight: 800;
}

.hdv2-text-link::after {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
  transition: width 220ms var(--ease);
}

.hdv2-text-link:hover::after,
.hdv2-text-link:focus-visible::after {
  width: 54px;
}

.hdv2-hub-visual {
  position: relative;
  min-height: 620px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 64% 20%, rgba(0, 63, 145, 0.11), transparent 20rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(239, 245, 248, 0.55));
}

.hdv2-hub-visual img {
  position: absolute;
  filter: drop-shadow(0 28px 24px rgba(7, 18, 31, 0.15));
}

.hdv2-hub-box {
  left: 14%;
  bottom: 10%;
  z-index: 2;
  width: 54%;
}

.hdv2-hub-coa {
  left: 11%;
  top: 4%;
  z-index: 1;
  width: 34%;
  transform: rotate(-4deg);
}

.hdv2-hub-clipboard {
  right: 10%;
  top: 1%;
  z-index: 1;
  width: 34%;
  transform: rotate(4deg);
}

.hdv2-hub-bottle {
  right: 18%;
  bottom: 7%;
  z-index: 3;
  width: 20%;
}

.hdv2-hub-metrics {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: -10px 0 0;
  border-top: 1px solid var(--hdv2-line);
  border-left: 1px solid var(--hdv2-line);
}

.hdv2-hub-metrics div {
  min-height: 116px;
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 20px;
  border-right: 1px solid var(--hdv2-line);
  border-bottom: 1px solid var(--hdv2-line);
}

.hdv2-hub-metrics dt {
  color: var(--hdv2-navy);
  font-size: 2.62rem;
  font-weight: 700;
  line-height: 1;
}

.hdv2-hub-metrics dd {
  margin: 8px 0 0;
  color: var(--hdv2-muted);
  font-size: 0.84rem;
}

.hdv2-formats {
  position: relative;
  padding: 98px 0 116px;
  background: transparent;
}

.hdv2-section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  align-items: start;
  margin-bottom: 44px;
}

.hdv2-section-head .hdv2-kicker {
  margin-bottom: 24px;
}

.hdv2-section-head p {
  margin: 0 0 8px;
}

.hdv2-formats-intro {
  max-width: 560px;
  color: var(--hdv2-muted);
  font-size: 1.08rem;
  line-height: 1.58;
}

.hdv2-format-gallery {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
}

.hdv2-format-gallery::before {
  content: none;
  position: absolute;
  z-index: -1;
  inset: -34px -28px 94px;
  background: none;
  pointer-events: none;
}

.hdv2-format-card {
  position: relative;
  display: grid;
  grid-template-rows: 250px auto;
  min-height: 438px;
  overflow: hidden;
  padding: 26px 22px 30px;
  color: var(--hdv2-navy);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 253, 248, 0.16)),
    url("./assets/generated/formats-card-stock-v3.png");
  background-size: auto, cover;
  background-position: center;
  border: 1px solid rgba(86, 104, 122, 0.1);
  border-radius: 2px;
  box-shadow: 0 18px 32px rgba(18, 24, 30, 0.08);
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), background 220ms var(--ease);
}

.hdv2-format-card:hover,
.hdv2-format-card:focus-visible {
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 253, 248, 0.2)),
    url("./assets/generated/formats-card-stock-v3.png");
  background-size: auto, cover;
  background-position: center;
  box-shadow: 0 24px 42px rgba(18, 24, 30, 0.14);
  transform: translateY(-3px);
}

.hdv2-format-card:focus-visible,
.hdv2-sample-strip:focus-visible {
  outline: 2px solid var(--hdv2-gold);
  outline-offset: 4px;
}

.hdv2-format-card figure {
  position: relative;
  display: grid;
  place-items: end center;
  min-height: 0;
  margin: 0;
}

.hdv2-format-card figure::after {
  content: "";
  position: absolute;
  left: 13%;
  right: 13%;
  bottom: 18px;
  height: 20px;
  background: radial-gradient(ellipse at center, rgba(24, 25, 22, 0.22), transparent 68%);
  filter: blur(7px);
}

.hdv2-format-card img {
  position: relative;
  z-index: 1;
  max-width: 92%;
  max-height: 218px;
  object-fit: contain;
  filter: drop-shadow(0 18px 18px rgba(7, 18, 31, 0.1));
}

.hdv2-format-render {
  display: block;
  min-height: 0;
  padding: 0;
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.hdv2-format-render:hover,
.hdv2-format-render:focus-visible {
  background: transparent;
  box-shadow: none;
  transform: translateY(-3px);
}

.hdv2-format-render figure {
  display: block;
  margin: 0;
}

.hdv2-format-render figure::after {
  content: none;
}

.hdv2-format-render img {
  display: block;
  width: 100%;
  max-width: none;
  max-height: none;
  height: auto;
  object-fit: contain;
  filter: none;
}

.hdv2-format-render .hdv2-format-copy {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.hdv2-format-copy {
  display: grid;
  align-content: end;
}

.hdv2-format-copy b {
  display: block;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(166, 109, 19, 0.72);
  font-family: var(--display-serif);
  font-size: 1.68rem;
  line-height: 1;
}

.hdv2-format-copy em {
  color: var(--hdv2-navy);
  font-size: 0.93rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.38;
}

.hdv2-format-copy small {
  margin-top: 12px;
  color: var(--hdv2-muted);
  font-size: 0.88rem;
  font-style: normal;
  line-height: 1.55;
}

.hdv2-sample-strip {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) auto;
  gap: 26px;
  align-items: center;
  min-height: 86px;
  margin-top: 14px;
  padding: 18px 28px;
  color: var(--hdv2-navy);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  border-top: 2px solid rgba(166, 109, 19, 0.78);
  box-shadow: 0 16px 28px rgba(18, 24, 30, 0.09);
  transition: background 220ms var(--ease), transform 220ms var(--ease), box-shadow 220ms var(--ease);
}

.hdv2-sample-strip:hover,
.hdv2-sample-strip:focus-visible {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 20px 34px rgba(18, 24, 30, 0.12);
  transform: translateY(-2px);
}

.hdv2-sample-strip span:not(.hdv2-sample-icon) {
  display: grid;
  gap: 5px;
}

.hdv2-sample-strip b {
  font-size: 1rem;
  line-height: 1.2;
}

.hdv2-sample-strip em {
  color: var(--hdv2-muted);
  font-size: 0.9rem;
  font-style: normal;
  line-height: 1.4;
}

.hdv2-sample-strip strong {
  color: var(--hdv2-gold);
  font-size: 2.7rem;
  font-weight: 400;
  line-height: 1;
}

.hdv2-sample-icon {
  position: relative;
  width: 36px;
  height: 36px;
  border: 2px solid rgba(166, 109, 19, 0.86);
}

.hdv2-sample-icon::before,
.hdv2-sample-icon::after {
  content: "";
  position: absolute;
  background: rgba(166, 109, 19, 0.86);
}

.hdv2-sample-icon::before {
  left: 50%;
  top: -2px;
  bottom: -2px;
  width: 2px;
  transform: translateX(-50%);
}

.hdv2-sample-icon::after {
  left: -2px;
  right: -2px;
  top: 50%;
  height: 2px;
  transform: translateY(-50%);
}

.hdv2-process {
  position: relative;
  display: grid;
  grid-template-columns: minmax(380px, 0.36fr) minmax(720px, 0.64fr);
  gap: 82px;
  align-items: start;
  padding: 138px 0;
}

.hdv2-process::before,
.hdv2-final::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 50%;
  z-index: -1;
  width: 100vw;
  background: radial-gradient(circle at 35% 35%, rgba(0, 63, 145, 0.1), transparent 24rem);
  transform: translateX(-50%);
}

.hdv2-process-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--hdv2-line);
  border-left: 1px solid var(--hdv2-line);
}

.hdv2-process-steps li {
  min-height: 420px;
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  gap: 18px;
  align-content: start;
  padding: 28px 22px;
  border-right: 1px solid var(--hdv2-line);
  border-bottom: 1px solid var(--hdv2-line);
  background: rgba(255, 255, 255, 0.56);
}

.hdv2-process-steps img {
  width: 74px;
  height: 74px;
  padding: 19px;
}

.hdv2-process-steps span {
  color: var(--hdv2-gold);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.hdv2-process-steps h3 {
  margin: 0;
  color: var(--hdv2-navy);
  font-family: var(--ui-sans);
  font-size: 1.15rem;
  line-height: 1.14;
}

.hdv2-process-steps p {
  margin: 0;
  color: var(--hdv2-muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.hdv2-quality {
  position: relative;
  overflow: hidden;
  padding: 118px 0 124px;
  background: transparent;
}

.hdv2-quality::before {
  content: none;
}

.hdv2-quality::after {
  content: none;
}

.hdv2-quality-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(440px, 0.4fr) minmax(560px, 0.6fr);
  gap: 68px;
  align-items: center;
  min-height: 0;
}

.hdv2-quality h2,
.hdv2-quality .hdv2-kicker {
  color: var(--hdv2-navy);
}

.hdv2-quality h2 {
  max-width: 560px;
  font-size: clamp(2.85rem, 3.1vw, 3.65rem);
  line-height: 1.04;
}

.hdv2-quality .hdv2-kicker::before {
  background: var(--hdv2-gold);
}

.hdv2-quality-copy {
  max-width: 560px;
  padding: 0;
}

.hdv2-quality-copy p {
  color: var(--hdv2-muted);
  font-size: 1.08rem;
  line-height: 1.58;
}

.hdv2-quality-copy ul {
  display: grid;
  gap: 0;
  margin: 36px 0 10px;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--hdv2-line);
}

.hdv2-quality-copy li {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--hdv2-line);
}

.hdv2-quality-copy li img {
  width: 52px;
  height: 52px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(7, 18, 31, 0.06));
}

.hdv2-quality-copy li b {
  display: block;
  margin-bottom: 4px;
  color: var(--hdv2-navy);
  font-size: 1.05rem;
}

.hdv2-quality-copy li em {
  display: block;
  color: var(--hdv2-muted);
  font-style: normal;
  font-size: 0.98rem;
  line-height: 1.42;
}

.hdv2-quality-visual {
  position: relative;
  isolation: isolate;
  display: grid;
  place-items: center;
  justify-self: end;
  min-height: 0;
  margin: 0;
  padding: 0;
  overflow: visible;
  width: min(100%, 900px);
  max-width: 900px;
  background: transparent;
  border: 0;
  border-radius: 2px;
  box-shadow: none;
}

.hdv2-quality-visual::before {
  content: none;
}

.hdv2-quality-visual::after {
  content: none;
}

.hdv2-quality-visual img {
  display: block;
}

.hdv2-quality-scene {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  opacity: 1;
  filter:
    drop-shadow(0 24px 26px rgba(7, 18, 31, 0.12))
    drop-shadow(0 3px 3px rgba(7, 18, 31, 0.06));
  pointer-events: none;
}

.hdv2-quality-details {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 46px;
  border-top: 1px solid var(--hdv2-line);
  border-left: 1px solid var(--hdv2-line);
}

.hdv2-quality-details article {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  min-height: 172px;
  padding: 24px 22px;
  border-right: 1px solid var(--hdv2-line);
  border-bottom: 1px solid var(--hdv2-line);
  background: rgba(255, 255, 255, 0.44);
}

.hdv2-quality-details .line-icon {
  width: 42px;
  height: 42px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.42);
}

.hdv2-quality-details .line-icon::before {
  width: 22px;
  height: 22px;
}

.hdv2-quality-details b {
  display: block;
  margin: 0 0 8px;
  color: var(--hdv2-navy);
  font-size: 1rem;
  line-height: 1.2;
}

.hdv2-quality-details p {
  margin: 0;
  color: var(--hdv2-muted);
  font-size: 0.92rem;
  line-height: 1.52;
}

.hdv2-final {
  position: relative;
  display: grid;
  grid-template-columns: minmax(440px, 0.48fr) minmax(520px, 0.52fr);
  gap: 74px;
  align-items: start;
  padding: 132px 0 144px;
}

.hdv2-final::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  height: 48%;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.72));
}

.hdv2-inquiry-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 34px;
  border: 1px solid rgba(86, 104, 122, 0.2);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 24px 70px rgba(7, 18, 31, 0.1);
}

.hdv2-inquiry-form h3 {
  grid-column: 1 / -1;
  margin: 0 0 8px;
  color: var(--hdv2-navy);
  font-family: var(--display-serif);
  font-size: 2.35rem;
  line-height: 1;
}

.hdv2-inquiry-form label,
.hdv2-inquiry-form fieldset {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  border: 0;
}

.hdv2-inquiry-form label span,
.hdv2-inquiry-form legend {
  color: var(--hdv2-navy);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hdv2-inquiry-form input,
.hdv2-inquiry-form select,
.hdv2-inquiry-form textarea {
  width: 100%;
  border: 1px solid rgba(86, 104, 122, 0.22);
  border-radius: 0;
  padding: 14px 14px;
  color: var(--hdv2-navy);
  background: rgba(255, 255, 255, 0.88);
}

.hdv2-inquiry-form textarea {
  resize: vertical;
}

.hdv2-inquiry-form .full {
  grid-column: 1 / -1;
}

.hdv2-inquiry-form fieldset {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.hdv2-inquiry-form fieldset legend {
  grid-column: 1 / -1;
}

.hdv2-inquiry-form fieldset label {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(86, 104, 122, 0.2);
  color: var(--hdv2-navy);
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 800;
}

.source-v2-home .modal-products {
  width: min(800px, 116%);
  margin: 26px 0 -22px -8%;
  filter: drop-shadow(0 28px 24px rgba(7, 18, 31, 0.14));
}

@media (max-width: 1320px) {
  .source-v2-home .main-nav {
    gap: 28px;
  }

  .source-v2-home .btn {
    padding-inline: 22px;
  }

  .hdv2-hero-grid {
    grid-template-columns: minmax(430px, 0.46fr) minmax(500px, 0.54fr);
  }

  .hdv2-hero h1 {
    font-size: 4.8rem;
  }

  .hdv2-hero-stage img {
    width: min(840px, 112%);
  }

  .hdv2-feature-rail article {
    grid-template-columns: 86px 1fr;
    padding-inline: 24px;
  }

  .hdv2-feature-rail img {
    width: 72px;
    height: 72px;
    padding: 18px;
  }

  .hdv2-process {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1180px) {
  .source-v2-home .site-header {
    left: 0;
    top: 0;
    width: 100%;
    min-height: 76px;
    padding: 12px 22px;
    border-radius: 0;
    transform: none;
  }

  .hdv2-hero {
    padding-top: 94px;
  }

  .hdv2-hero-grid,
  .hdv2-hub,
  .hdv2-quality-grid,
  .hdv2-final {
    grid-template-columns: 1fr;
  }

  .hdv2-hero-grid {
    min-height: auto;
    gap: 20px;
  }

  .hdv2-hero-copy {
    max-width: 780px;
    padding-top: 36px;
  }

  .hdv2-hero-stage {
    min-height: 470px;
  }

  .hdv2-hero-stage img {
    width: min(880px, 100%);
    margin-right: 0;
  }

  .hdv2-feature-rail,
  .hdv2-section-head,
  .hdv2-hub-metrics {
    grid-template-columns: 1fr;
  }

  .hdv2-feature-rail {
    gap: 28px;
  }

  .hdv2-feature-rail article,
  .hdv2-feature-rail article:first-child,
  .hdv2-feature-rail article:last-child {
    padding: 0 0 28px;
    border-right: 0;
    border-bottom: 1px solid var(--hdv2-line);
  }

  .hdv2-feature-rail article:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .hdv2-section-head .hdv2-kicker {
    grid-column: auto;
    margin-bottom: 0;
  }

  .hdv2-format-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hdv2-process-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hdv2-process-steps li {
    min-height: 300px;
  }

  .hdv2-quality {
    padding-bottom: 104px;
  }

  .hdv2-quality::after {
    content: none;
  }

  .hdv2-quality-grid {
    min-height: 0;
  }

  .hdv2-quality-copy {
    max-width: 720px;
  }

  .hdv2-quality-visual {
    min-height: 0;
    margin: 20px 0 0;
    padding: 0;
    overflow: visible;
    max-width: 900px;
  }

  .hdv2-quality-scene {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
    opacity: 1;
  }

  .hdv2-quality-details {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 34px;
  }
}

@media (max-width: 760px) {
  .source-v2-home .section-shell {
    width: min(calc(100% - 34px), 1510px);
  }

  .source-v2-home .brand span,
  .source-v2-home .footer-brand span {
    font-size: 1.6rem;
  }

  .source-v2-home .mobile-menu a {
    font-size: 3.2rem;
  }

  .hdv2-hero {
    padding: 84px 0 28px;
  }

  .hdv2-hero-bg {
    background:
      linear-gradient(180deg, rgba(246, 250, 253, 0.96) 0%, rgba(246, 250, 253, 0.78) 48%, rgba(246, 250, 253, 0.42) 100%),
      url("./assets/source-v2/hero-background-plate.png");
    background-size: auto 100%, cover;
    background-position: right top;
  }

  .hdv2-kicker {
    margin-bottom: 18px;
  }

  .hdv2-kicker::before {
    margin-bottom: 18px;
  }

  .hdv2-hero h1 {
    font-size: 3.45rem;
    line-height: 0.98;
  }

  .hdv2-hub-copy h2,
  .hdv2-section-head h2,
  .hdv2-process h2,
  .hdv2-quality h2,
  .hdv2-final h2 {
    font-size: 3rem;
    line-height: 1.02;
  }

  .hdv2-lede,
  .hdv2-hub-copy p:not(.hdv2-kicker),
  .hdv2-section-head p,
  .hdv2-process-copy p:not(.hdv2-kicker),
  .hdv2-quality-copy p,
  .hdv2-final-copy p {
    font-size: 1rem;
  }

  .hdv2-actions,
  .source-v2-home .nav-actions {
    display: grid;
    width: 100%;
  }

  .source-v2-home .btn {
    width: 100%;
  }

  .hdv2-proof-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .hdv2-proof-row span,
  .hdv2-proof-row span:first-child {
    min-width: 0;
    padding: 14px 12px;
    border: 1px solid rgba(86, 104, 122, 0.18);
    background: rgba(255, 255, 255, 0.48);
  }

  .hdv2-hero-stage {
    min-height: 340px;
  }

  .hdv2-hero-stage::before {
    height: 100px;
  }

  .hdv2-feature-rail {
    padding: 26px 22px;
    border-radius: 24px;
  }

  .hdv2-feature-rail article {
    grid-template-columns: 64px 1fr;
    gap: 18px;
  }

  .hdv2-feature-rail img {
    width: 58px;
    height: 58px;
    padding: 14px;
  }

  .hdv2-hub,
  .hdv2-formats,
  .hdv2-process,
  .hdv2-quality,
  .hdv2-final {
    padding-top: 84px;
    padding-bottom: 84px;
  }

  .hdv2-quality-copy li {
    grid-template-columns: 50px minmax(0, 1fr);
    gap: 14px;
    padding: 18px 0;
  }

  .hdv2-quality-copy li img {
    width: 46px;
    height: 46px;
    padding: 0;
  }

  .hdv2-quality-details {
    grid-template-columns: 1fr;
  }

  .hdv2-quality-details article {
    min-height: 0;
    padding: 20px 18px;
  }

  .hdv2-hub-visual {
    min-height: 420px;
  }

  .hdv2-hub-box {
    left: 6%;
    width: 68%;
  }

  .hdv2-hub-coa {
    left: 3%;
    width: 40%;
  }

  .hdv2-hub-clipboard {
    right: 3%;
    width: 40%;
  }

  .hdv2-hub-bottle {
    right: 10%;
    width: 25%;
  }

  .hdv2-format-gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: 270px;
  }

  .hdv2-format-gallery .is-wide,
  .hdv2-format-gallery .is-tall {
    grid-column: auto;
    grid-row: auto;
  }

  .hdv2-format-gallery .is-wide img,
  .hdv2-format-gallery img {
    max-width: 70%;
    max-height: 68%;
  }

  .hdv2-process-steps {
    grid-template-columns: 1fr;
  }

  .hdv2-process-steps li {
    min-height: auto;
  }

  .hdv2-quality-visual {
    min-height: 0;
  }

  .hdv2-quality-coa {
    left: 0;
    width: 62%;
  }

  .hdv2-quality-clipboard {
    right: 0;
    width: 52%;
  }

  .hdv2-inquiry-form,
  .hdv2-inquiry-form fieldset {
    grid-template-columns: 1fr;
  }

  .hdv2-inquiry-form {
    padding: 24px;
    border-radius: 22px;
  }
}

@media (max-width: 480px) {
  .source-v2-home .site-header {
    padding-inline: 16px;
  }

  .hdv2-hero h1 {
    font-size: 2.92rem;
  }

  .hdv2-hub-copy h2,
  .hdv2-section-head h2,
  .hdv2-process h2,
  .hdv2-quality h2,
  .hdv2-final h2 {
    font-size: 2.55rem;
  }

  .hdv2-format-chips a {
    min-width: 0;
    padding-inline: 14px;
  }

  .hdv2-hero-stage {
    min-height: 300px;
  }

  .hdv2-hub-visual {
    min-height: 360px;
  }

  .hdv2-quality-visual {
    min-height: 0;
  }
}

/* Source-v2 wins over the legacy square-system reset on the root homepage. */
.source-v2-home .site-header {
  border-radius: 999px !important;
}

.source-v2-home .btn,
.source-v2-home .hdv2-format-chips a {
  border-radius: 999px !important;
}

.source-v2-home .menu-toggle,
.source-v2-home .hdv2-feature-rail img,
.source-v2-home .hdv2-process-steps img {
  border-radius: 50% !important;
}

.source-v2-home .hdv2-hero-stage::before,
.source-v2-home .hdv2-feature-rail,
.source-v2-home .hdv2-hub-visual,
.source-v2-home .hdv2-inquiry-form {
  border-radius: 28px !important;
}

.source-v2-home .hdv2-hero {
  --hdv2-hero-top: clamp(104px, 10dvh, 142px);
  --hdv2-hero-bottom: clamp(26px, 3dvh, 42px);
  --hdv2-hero-grid-offset: clamp(8px, 2.2dvh, 34px);
  --hdv2-copy-gap-sm: clamp(16px, 1.8dvh, 24px);
  --hdv2-copy-gap-md: clamp(20px, 2.35dvh, 31px);
  --hdv2-copy-gap-lg: clamp(24px, 2.8dvh, 38px);
  --hdv2-copy-shift: 0px;
  min-height: 100dvh;
  display: grid;
  grid-template-rows: 1fr auto;
  align-content: stretch;
  padding: var(--hdv2-hero-top) 0 var(--hdv2-hero-bottom);
}

.source-v2-home .hdv2-hero-bg {
  background:
    linear-gradient(90deg, rgba(246, 250, 253, 0.92) 0%, rgba(246, 250, 253, 0.68) 30%, rgba(246, 250, 253, 0.24) 51%, rgba(246, 250, 253, 0.06) 66%, rgba(246, 250, 253, 0.02) 100%),
    url("./assets/source-v2/hero-background-plate.png");
  background-size: cover;
  background-position: center top;
}

.source-v2-home .hdv2-hero-grid {
  min-height: clamp(560px, 62dvh, 760px);
  grid-template-columns: minmax(560px, 0.43fr) minmax(680px, 0.57fr);
  align-self: start;
  align-items: start;
  gap: 0;
  margin-top: var(--hdv2-hero-grid-offset);
}

.source-v2-home .hdv2-hero-copy {
  max-width: 690px;
  display: grid;
  justify-items: start;
  padding-top: 0;
  transform: translateX(var(--hdv2-copy-shift));
}

.source-v2-home .hdv2-kicker {
  margin-bottom: var(--hdv2-copy-gap-md);
}

.source-v2-home .hdv2-kicker::before {
  margin-bottom: var(--hdv2-copy-gap-sm);
}

.source-v2-home .hdv2-hero h1 {
  max-width: 650px;
  font-size: clamp(4.65rem, 4.1vw, 5.45rem);
  line-height: 0.96;
}

.source-v2-home .hdv2-hero h1 > span {
  display: block;
  white-space: nowrap;
}

.source-v2-home .hdv2-lede {
  max-width: 610px;
  width: 100%;
  margin: var(--hdv2-copy-gap-md) 0 0;
}

.source-v2-home .hdv2-proof-row {
  max-width: 650px;
  width: 100%;
  margin-top: var(--hdv2-copy-gap-md);
  margin-bottom: 0;
}

.source-v2-home .hdv2-proof-row span {
  min-width: 92px;
  padding: 0 18px;
}

.source-v2-home .hdv2-proof-row b {
  font-size: 1.02rem;
}

.source-v2-home .hdv2-proof-row small {
  font-size: 0.61rem;
}

.source-v2-home .hdv2-actions {
  width: 100%;
  gap: 18px;
  margin-top: var(--hdv2-copy-gap-lg);
}

.source-v2-home .hdv2-format-chips {
  max-width: 650px;
  width: 100%;
  gap: 14px;
  margin-top: var(--hdv2-copy-gap-md);
}

.source-v2-home .hdv2-wholesale-note {
  max-width: 650px;
  width: 100%;
  margin-top: var(--hdv2-copy-gap-md);
}

.source-v2-home .hdv2-hero-stage {
  min-height: clamp(590px, 64dvh, 820px);
  align-self: stretch;
}

.source-v2-home .hdv2-hero-stage img {
  width: min(1090px, 124%);
  transform: translate(82px, 22px);
}

.source-v2-home .hdv2-feature-rail {
  align-self: end;
  margin-top: clamp(20px, 2.4dvh, 38px);
}

@media (min-width: 1181px) {
  .source-v2-home .hdv2-hero {
    --hdv2-copy-shift: clamp(0px, calc(168px - ((100vw - 1510px) / 2)), 132px);
  }
}

@media (min-width: 1181px) and (max-height: 820px) {
  .source-v2-home .hdv2-hero {
    --hdv2-hero-top: 102px;
    --hdv2-hero-bottom: 24px;
    --hdv2-hero-grid-offset: 0px;
    --hdv2-copy-gap-sm: 13px;
    --hdv2-copy-gap-md: 16px;
    --hdv2-copy-gap-lg: 20px;
  }

  .source-v2-home .hdv2-hero-grid {
    min-height: 500px;
    align-items: center;
  }

  .source-v2-home .hdv2-hero h1 {
    max-width: 600px;
    font-size: clamp(3.85rem, 5vw, 4.65rem);
  }

  .source-v2-home .hdv2-hero-stage {
    min-height: 500px;
  }

  .source-v2-home .hdv2-hero-stage img {
    width: min(880px, 108%);
    transform: translate(64px, 12px);
  }

  .source-v2-home .hdv2-feature-rail {
    margin-top: 18px;
    padding-top: 28px;
    padding-bottom: 28px;
  }
}

@media (min-width: 1321px) and (max-width: 1599px) {
  .source-v2-home .hdv2-hero {
    --hdv2-copy-gap-sm: clamp(13px, 1.6dvh, 18px);
    --hdv2-copy-gap-md: clamp(16px, 1.9dvh, 24px);
    --hdv2-copy-gap-lg: clamp(20px, 2.35dvh, 30px);
  }

  .source-v2-home .hdv2-hero-grid {
    grid-template-columns: minmax(640px, 0.51fr) minmax(500px, 0.49fr);
    gap: 18px;
  }

  .source-v2-home .hdv2-hero-copy,
  .source-v2-home .hdv2-hero h1,
  .source-v2-home .hdv2-proof-row,
  .source-v2-home .hdv2-format-chips,
  .source-v2-home .hdv2-wholesale-note {
    max-width: 620px;
  }

  .source-v2-home .hdv2-hero h1 {
    font-size: clamp(4.15rem, 4.8vw, 4.65rem);
  }

  .source-v2-home .hdv2-proof-row span {
    min-width: 82px;
    padding-inline: 12px;
  }

  .source-v2-home .hdv2-hero-stage {
    min-height: clamp(500px, 58dvh, 700px);
  }

  .source-v2-home .hdv2-hero-stage img {
    width: min(700px, 96%);
    transform: translate(38px, 18px);
  }
}

@media (min-width: 1181px) and (min-height: 960px) {
  .source-v2-home .hdv2-hero {
    --hdv2-hero-top: clamp(116px, 10dvh, 152px);
    --hdv2-hero-grid-offset: clamp(20px, 3dvh, 46px);
    --hdv2-copy-gap-sm: clamp(18px, 1.7dvh, 26px);
    --hdv2-copy-gap-md: clamp(24px, 2.2dvh, 34px);
    --hdv2-copy-gap-lg: clamp(30px, 2.8dvh, 44px);
  }

  .source-v2-home .hdv2-hero-grid {
    min-height: clamp(620px, 60dvh, 850px);
  }

  .source-v2-home .hdv2-hero-stage img {
    transform: translate(72px, 28px);
  }
}

@media (min-width: 1321px) and (max-width: 1599px) and (min-height: 960px) {
  .source-v2-home .hdv2-hero-stage img {
    width: min(700px, 96%);
    transform: translate(38px, 24px);
  }
}

@media (min-width: 1921px) and (max-aspect-ratio: 20 / 9) {
  .source-v2-home .hdv2-hero-copy {
    max-width: clamp(690px, calc(690px + (100vw - 1920px) * 1), 820px);
  }

  .source-v2-home .hdv2-hero h1 {
    max-width: clamp(650px, calc(650px + (100vw - 1920px) * 1), 790px);
    text-wrap: wrap;
  }
}

@media (min-width: 1600px) and (min-aspect-ratio: 21 / 9) {
  .source-v2-home .hdv2-hero-grid,
  .source-v2-home .hdv2-feature-rail {
    width: min(calc(100% - 120px), 1880px);
  }

  .source-v2-home .hdv2-hero-grid {
    grid-template-columns: minmax(760px, 0.43fr) minmax(850px, 0.57fr);
  }

  .source-v2-home .hdv2-hero-copy,
  .source-v2-home .hdv2-hero h1,
  .source-v2-home .hdv2-proof-row,
  .source-v2-home .hdv2-format-chips,
  .source-v2-home .hdv2-wholesale-note {
    max-width: 780px;
  }

  .source-v2-home .hdv2-hero-stage img {
    width: min(1220px, 112%);
    transform: translate(72px, 18px);
  }
}

@media (max-width: 1320px) {
  .source-v2-home .hdv2-hero {
    padding-top: 118px;
  }

  .source-v2-home .hdv2-hero-grid {
    min-height: 540px;
    grid-template-columns: minmax(500px, 0.46fr) minmax(500px, 0.54fr);
    align-items: center;
  }

  .source-v2-home .hdv2-kicker {
    margin-bottom: 16px;
  }

  .source-v2-home .hdv2-kicker::before {
    margin-bottom: 16px;
  }

  .source-v2-home .hdv2-hero h1 {
    max-width: 560px;
    font-size: 4.06rem;
  }

  .source-v2-home .hdv2-lede {
    margin-top: 18px;
  }

  .source-v2-home .hdv2-proof-row {
    margin-top: 22px;
  }

  .source-v2-home .hdv2-proof-row span {
    min-width: 78px;
    padding: 0 11px;
  }

  .source-v2-home .hdv2-proof-row b {
    font-size: 0.92rem;
  }

  .source-v2-home .hdv2-proof-row small {
    font-size: 0.56rem;
  }

  .source-v2-home .hdv2-format-chips {
    gap: 10px;
    margin-top: 24px;
  }

  .source-v2-home .hdv2-format-chips a {
    min-width: 82px;
    padding-inline: 14px;
  }

  .source-v2-home .hdv2-hero-stage img {
    width: min(700px, 102%);
    transform: translate(18px, 14px);
  }
}

@media (max-width: 1180px) {
  .source-v2-home .site-header {
    border-radius: 0 !important;
  }

  .source-v2-home .hdv2-hero {
    min-height: auto;
    display: block;
    padding: 94px 0 34px;
  }

  .source-v2-home .hdv2-hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .source-v2-home .hdv2-hero-copy {
    transform: none;
  }

  .source-v2-home .hdv2-hero-stage {
    min-height: 470px;
  }

  .source-v2-home .hdv2-hero-stage img {
    transform: translateY(0);
  }
}

@media (max-width: 760px) {
  .source-v2-home .hdv2-hero {
    padding: 84px 0 28px;
  }

  .source-v2-home .hdv2-hero h1 {
    font-size: 3.35rem;
  }

  .source-v2-home .hdv2-hero h1 > span {
    display: inline;
    white-space: normal;
  }

  .source-v2-home .hdv2-hero-stage {
    min-height: 340px;
  }

  .source-v2-home .hdv2-proof-row span {
    min-width: 0;
    padding: 14px 12px;
  }

  .source-v2-home .hdv2-feature-rail,
  .source-v2-home .hdv2-hub-visual,
  .source-v2-home .hdv2-inquiry-form {
    border-radius: 22px !important;
  }
}

@media (max-width: 480px) {
  .source-v2-home .hdv2-hero h1 {
    font-size: 2.82rem;
  }

  .source-v2-home .hdv2-hero h1 > span {
    white-space: normal;
  }

  .source-v2-home .hdv2-hero-stage {
    min-height: 300px;
  }
}

@media (max-width: 760px) {
  .source-v2-home {
    overflow-x: hidden;
  }

  .source-v2-home .section-shell {
    width: 340px;
    max-width: calc(100vw - 34px);
    margin-left: 17px;
    margin-right: auto;
  }

  .source-v2-home .site-header {
    grid-template-columns: auto auto;
  }

  .source-v2-home .main-nav,
  .source-v2-home .nav-actions {
    display: none !important;
  }

  .source-v2-home .menu-toggle {
    display: grid !important;
    justify-self: end;
    position: fixed !important;
    top: 14px !important;
    right: auto !important;
    left: min(calc(100vw - 64px), 326px) !important;
    z-index: 80;
    width: 48px !important;
    height: 48px !important;
    border: 1px solid var(--hdv2-navy) !important;
    background: var(--hdv2-navy) !important;
    box-shadow: 0 12px 28px rgba(7, 18, 31, 0.18) !important;
    padding: 0 !important;
  }

  .source-v2-home .menu-toggle span {
    position: absolute !important;
    left: 14px !important;
    right: 14px !important;
    display: block !important;
    height: 1px !important;
    background: #fff !important;
  }

  .source-v2-home .menu-toggle span:first-child {
    top: 18px !important;
  }

  .source-v2-home .menu-toggle span:last-child {
    top: 28px !important;
  }

  .source-v2-home .mobile-menu {
    overflow-x: hidden;
    z-index: 1000 !important;
    background: #f7fafc !important;
    backdrop-filter: blur(22px);
  }

  .source-v2-home .hdv2-actions {
    display: grid;
    width: 100%;
  }

  .source-v2-home .hdv2-lede,
  .source-v2-home .hdv2-wholesale-note {
    max-width: 100%;
  }
}

.source-v2-home .hdv2-mobile-menu-link {
  position: fixed;
  top: 14px;
  right: auto;
  left: min(calc(100vw - 64px), 326px);
  z-index: 90;
  width: 48px;
  height: 48px;
  display: grid;
  border: 1px solid var(--hdv2-navy);
  border-radius: 50% !important;
  background: var(--hdv2-navy);
  box-shadow: 0 12px 28px rgba(7, 18, 31, 0.18);
}

.source-v2-home .hdv2-mobile-menu-link span {
  position: absolute;
  left: 14px;
  right: 14px;
  height: 1px;
  background: #fff;
}

.source-v2-home .hdv2-mobile-menu-link span:first-child {
  top: 18px;
}

.source-v2-home .hdv2-mobile-menu-link span:last-child {
  top: 28px;
}

.source-v2-home #mobile-menu:target {
  display: grid;
  z-index: 1000 !important;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  background: #f7fafc !important;
}

@media (min-width: 761px) {
  .source-v2-home .hdv2-mobile-menu-link {
    display: none !important;
  }
}

.source-v2-home .hdv2-stem-stack {
  position: absolute;
  left: clamp(-84px, calc(-240px + 12vw), -12px);
  top: clamp(68px, 8dvh, 88px);
  bottom: auto;
  z-index: -1;
  width: clamp(360px, 28vw, 720px);
  height: clamp(520px, calc(100dvh - 168px), 860px);
  pointer-events: none;
  opacity: 0.84;
  mix-blend-mode: multiply;
  mask-image: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.88) 54%, rgba(0, 0, 0, 0.34) 84%, transparent 100%);
}

.source-v2-home .hdv2-stem-stack::before {
  content: "";
  position: absolute;
  inset: -8% -46% -8% 0;
  z-index: 3;
  background:
    linear-gradient(180deg, rgba(246, 250, 253, 0.9) 0%, rgba(246, 250, 253, 0) 12%, rgba(246, 250, 253, 0) 58%, rgba(246, 250, 253, 0.98) 82%, #f6fafd 100%),
    linear-gradient(90deg, rgba(0, 63, 145, 0.04), rgba(255, 255, 255, 0.26) 68%, rgba(255, 255, 255, 0)),
    radial-gradient(circle at 18% 68%, rgba(0, 95, 209, 0.16), transparent 14rem);
}

.source-v2-home .hdv2-stem-stack::after {
  content: "";
  position: absolute;
  inset: -2% -18% -4% -24%;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 63, 145, 0.08), rgba(255, 255, 255, 0.22)),
    url("./assets/approved/hd-particle-field-a.png");
  background-size: cover;
  background-position: center 42%;
  filter: grayscale(1) contrast(1.18) brightness(1.1);
  opacity: 1;
  mask-image: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.9) 54%, rgba(0, 0, 0, 0.34) 84%, transparent 100%);
}

.source-v2-home .hdv2-stem-stack img {
  position: absolute;
  z-index: 2;
  width: 72%;
  height: 34%;
  object-fit: cover;
  object-position: center 42%;
  border: 0;
  filter: grayscale(1) contrast(1.18) brightness(1.08);
  box-shadow: 0 22px 60px rgba(7, 18, 31, 0.06);
  mask-image: radial-gradient(ellipse at 50% 50%, #000 0%, rgba(0, 0, 0, 0.82) 34%, transparent 78%);
}

.source-v2-home .hdv2-stem-stack img:nth-child(1) {
  left: -42%;
  top: 4%;
}

.source-v2-home .hdv2-stem-stack img:nth-child(2) {
  left: -4%;
  top: 34%;
  width: 86%;
  height: 36%;
}

.source-v2-home .hdv2-stem-stack img:nth-child(3) {
  left: -36%;
  bottom: 2%;
  width: 78%;
  height: 30%;
}

@media (min-width: 1181px) and (max-width: 1320px) {
  .source-v2-home .hdv2-stem-stack {
    left: clamp(-76px, calc(-216px + 11vw), -44px);
    top: clamp(64px, 7.5dvh, 76px);
    width: clamp(360px, 30vw, 410px);
    height: clamp(500px, calc(100dvh - 150px), 650px);
    opacity: 0.82;
  }
}

@media (min-width: 1321px) and (max-width: 1599px) {
  .source-v2-home .hdv2-stem-stack {
    left: clamp(-76px, calc(-240px + 12vw), -48px);
    width: clamp(386px, 28vw, 448px);
    height: clamp(540px, calc(100dvh - 160px), 700px);
    opacity: 0.84;
  }
}

@media (min-width: 1600px) {
  .source-v2-home .hdv2-stem-stack {
    left: clamp(-44px, calc(-180px + 9vw), 0px);
    width: clamp(520px, 30vw, 780px);
    height: clamp(620px, 74dvh, 900px);
    opacity: 0.84;
  }
}

@media (min-width: 1181px) and (max-height: 820px) {
  .source-v2-home .hdv2-stem-stack {
    left: clamp(-80px, calc(-230px + 11vw), -34px);
    top: clamp(60px, 7dvh, 68px);
    width: clamp(350px, 28vw, 440px);
    height: clamp(500px, calc(100dvh - 134px), 640px);
    opacity: 0.82;
  }
}

@media (min-width: 1181px) and (min-height: 960px) {
  .source-v2-home .hdv2-stem-stack {
    top: clamp(76px, 7dvh, 86px);
    height: clamp(650px, 70dvh, 780px);
  }
}

@media (min-width: 1600px) and (min-aspect-ratio: 21 / 9) {
  .source-v2-home .hdv2-stem-stack {
    left: clamp(-44px, calc(((100vw - 1880px) / 2) - 350px), 0px);
    top: clamp(68px, 7dvh, 78px);
    width: clamp(560px, 26vw, 860px);
    height: clamp(620px, 78dvh, 920px);
  }
}

@media (max-width: 1180px) {
  .source-v2-home .hdv2-stem-stack {
    top: 74px;
    bottom: auto;
    left: -108px;
    width: clamp(420px, 48vw, 560px);
    height: clamp(520px, 72dvh, 690px);
    opacity: 0.46;
    mask-image: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.72) 42%, rgba(0, 0, 0, 0.18) 72%, transparent 100%);
  }

  .source-v2-home .hdv2-stem-stack::before {
    background:
      linear-gradient(180deg, rgba(246, 250, 253, 0) 54%, rgba(246, 250, 253, 0.96) 84%, #f6fafd 100%),
      linear-gradient(90deg, rgba(0, 63, 145, 0.03), rgba(255, 255, 255, 0.38) 64%, rgba(255, 255, 255, 0)),
      radial-gradient(circle at 18% 68%, rgba(0, 95, 209, 0.12), transparent 14rem);
  }

  .source-v2-home .hdv2-stem-stack::after {
    mask-image: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.76) 42%, rgba(0, 0, 0, 0.2) 72%, transparent 100%);
  }
}

@media (max-width: 760px) {
  .source-v2-home .hdv2-stem-stack {
    display: none;
  }
}

/* Tighter hero rhythm after removing the intro lede and wholesale note. */
.source-v2-home .hdv2-hero {
  min-height: auto;
  grid-template-rows: auto auto;
  padding-bottom: clamp(18px, 2.4dvh, 34px);
}

.source-v2-home .hdv2-hero-grid {
  min-height: clamp(510px, 55dvh, 660px);
  align-items: center;
}

.source-v2-home .hdv2-hero-copy {
  row-gap: 0;
}

.source-v2-home .hdv2-proof-row {
  margin-top: clamp(28px, 3.2dvh, 42px);
}

.source-v2-home .hdv2-actions {
  margin-top: clamp(30px, 3.4dvh, 46px);
}

.source-v2-home .hdv2-format-chips {
  margin-top: clamp(24px, 2.8dvh, 36px);
}

.source-v2-home .hdv2-hero-stage {
  min-height: clamp(500px, 54dvh, 700px);
}

.source-v2-home .hdv2-feature-rail {
  margin-top: clamp(8px, 1.2dvh, 18px);
}

@media (min-width: 1321px) and (max-width: 1599px) {
  .source-v2-home .hdv2-hero-grid {
    min-height: clamp(500px, 54dvh, 640px);
  }

  .source-v2-home .hdv2-hero-stage {
    min-height: clamp(470px, 52dvh, 640px);
  }
}

@media (min-width: 1181px) and (max-height: 820px) {
  .source-v2-home .hdv2-hero-grid,
  .source-v2-home .hdv2-hero-stage {
    min-height: 470px;
  }

  .source-v2-home .hdv2-proof-row {
    margin-top: 22px;
  }

  .source-v2-home .hdv2-actions {
    margin-top: 24px;
  }

  .source-v2-home .hdv2-format-chips {
    margin-top: 20px;
  }
}

@media (max-width: 1180px) {
  .source-v2-home .hdv2-hero-grid {
    min-height: auto;
  }

  .source-v2-home .hdv2-hero-stage {
    min-height: 420px;
  }
}

@media (max-width: 760px) {
  .source-v2-home .hdv2-hero {
    padding-bottom: 24px;
  }
}

/* Bring the hero imagery together while preserving headline readability. */
.source-v2-home .hdv2-hero-copy {
  position: relative;
  isolation: isolate;
}

.source-v2-home .hdv2-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(246, 250, 253, 0) 0%, rgba(246, 250, 253, 0.2) 31%, rgba(255, 255, 255, 0.82) 43%, rgba(255, 255, 255, 0.86) 56%, rgba(246, 250, 253, 0.22) 68%, rgba(246, 250, 253, 0) 100%),
    radial-gradient(ellipse at 48% 48%, rgba(255, 255, 255, 0.76) 0%, rgba(255, 255, 255, 0.42) 35%, rgba(255, 255, 255, 0) 66%);
}

.source-v2-home .hdv2-hero-copy::before {
  content: "";
  position: absolute;
  inset: -42px -118px -48px -52px;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 40% 44%, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.68) 38%, rgba(255, 255, 255, 0.24) 64%, rgba(255, 255, 255, 0) 82%),
    linear-gradient(90deg, rgba(246, 250, 253, 0.48) 0%, rgba(246, 250, 253, 0.28) 52%, rgba(246, 250, 253, 0) 100%);
  filter: blur(10px);
  mask-image: radial-gradient(ellipse at 42% 48%, #000 0%, rgba(0, 0, 0, 0.92) 42%, rgba(0, 0, 0, 0.36) 68%, transparent 100%);
}

.source-v2-home .hdv2-hero h1,
.source-v2-home .hdv2-proof-row,
.source-v2-home .hdv2-format-chips {
  text-shadow: 0 1px 18px rgba(255, 255, 255, 0.9);
}

.source-v2-home .hdv2-stem-stack {
  top: 0;
  bottom: 0;
  left: 0;
  width: clamp(520px, 39vw, 860px);
  height: auto;
  opacity: 0.88;
  mix-blend-mode: multiply;
  mask-image: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.9) 50%, rgba(0, 0, 0, 0.28) 72%, transparent 100%);
}

.source-v2-home .hdv2-stem-stack::before {
  inset: 0 -44% 0 0;
  background:
    linear-gradient(180deg, rgba(246, 250, 253, 0.82) 0%, rgba(246, 250, 253, 0) 12%, rgba(246, 250, 253, 0) 70%, rgba(246, 250, 253, 0.94) 94%, #f6fafd 100%),
    linear-gradient(90deg, rgba(0, 63, 145, 0.03), rgba(255, 255, 255, 0.42) 70%, rgba(255, 255, 255, 0.18)),
    radial-gradient(circle at 32% 54%, rgba(0, 95, 209, 0.13), transparent 16rem);
}

.source-v2-home .hdv2-stem-stack::after {
  inset: 0;
  opacity: 1;
  background:
    linear-gradient(90deg, rgba(0, 63, 145, 0.1), rgba(255, 255, 255, 0.18)),
    url("./assets/approved/hd-particle-field-b.png");
  background-size: cover;
  background-position: 34% center;
  filter: grayscale(1) contrast(1.12) brightness(1.18);
  mask-image: none;
}

.source-v2-home .hdv2-stem-stack img {
  display: none;
}

.source-v2-home .hdv2-hero-stage img {
  width: min(1080px, 122%);
  transform: translate(46px, 4px);
}

@media (min-width: 1321px) and (max-width: 1599px) {
  .source-v2-home .hdv2-stem-stack {
    left: 0;
    width: clamp(500px, 39vw, 640px);
  }

  .source-v2-home .hdv2-hero-stage img {
    width: min(780px, 106%);
    transform: translate(34px, 4px);
  }
}

@media (min-width: 1600px) {
  .source-v2-home .hdv2-stem-stack {
    left: 0;
    width: clamp(620px, 39vw, 900px);
  }

  .source-v2-home .hdv2-hero-stage img {
    width: min(1120px, 118%);
    transform: translate(56px, 4px);
  }
}

/* Ground the transparent hero product render on a visible glass surface. */
.source-v2-home .hdv2-hero-stage {
  isolation: isolate;
}

.source-v2-home .hdv2-hero-stage::before {
  left: -7%;
  right: -22%;
  bottom: clamp(-18px, -1.2dvh, -6px);
  z-index: 1;
  height: clamp(300px, 34dvh, 440px);
  border: 0;
  border-radius: 0 !important;
  background: url("./assets/source-v2/hero-frosted-table-cutout.png") center bottom / 112% auto no-repeat;
  box-shadow: none;
  opacity: 0.98;
  transform: none;
  transform-origin: center bottom;
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.88) 8%, #000 22%, #000 88%, rgba(0, 0, 0, 0.7) 96%, transparent 100%);
}

.source-v2-home .hdv2-hero-stage::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 0;
  bottom: clamp(70px, 8.6dvh, 126px);
  z-index: 2;
  height: clamp(72px, 8.4dvh, 116px);
  pointer-events: none;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 42% 56%, rgba(7, 18, 31, 0.3) 0%, rgba(7, 18, 31, 0.2) 22%, rgba(7, 18, 31, 0.08) 50%, rgba(7, 18, 31, 0) 74%),
    radial-gradient(ellipse at 82% 50%, rgba(7, 18, 31, 0.26) 0%, rgba(7, 18, 31, 0.12) 40%, rgba(7, 18, 31, 0) 70%);
  filter: blur(10px);
  opacity: 0.58;
  transform: perspective(1000px) rotateX(68deg) skewX(-8deg);
  transform-origin: center bottom;
}

.source-v2-home .hdv2-hero-stage img {
  z-index: 3;
  filter:
    drop-shadow(0 24px 18px rgba(7, 18, 31, 0.14))
    drop-shadow(0 46px 36px rgba(7, 18, 31, 0.16));
}

@media (min-width: 1321px) and (max-width: 1599px) {
  .source-v2-home .hdv2-hero-stage::before {
    left: 3%;
    right: -18%;
    bottom: -14px;
    height: clamp(260px, 31dvh, 360px);
  }

  .source-v2-home .hdv2-hero-stage::after {
    left: 16%;
    right: 1%;
    bottom: clamp(56px, 7.6dvh, 88px);
  }
}

@media (max-width: 1180px) {
  .source-v2-home .hdv2-stem-stack {
    left: 0;
    width: min(560px, 52vw);
  }

  .source-v2-home .hdv2-hero-copy::before {
    inset: -28px -40px -34px -30px;
  }

  .source-v2-home .hdv2-hero-stage::before {
    left: -8%;
    right: -10%;
    bottom: -8px;
    height: 230px;
  }

  .source-v2-home .hdv2-hero-stage::after {
    left: 11%;
    right: 9%;
    bottom: 46px;
    height: 76px;
  }
}

@media (min-width: 1900px) {
  .source-v2-home:not(.hdv2-interior) .site-header {
    width: min(calc(100% - 520px), 1260px);
    min-height: 72px;
    padding: 10px 22px 10px 30px;
  }

  .source-v2-home:not(.hdv2-interior) .brand span {
    font-size: 1.55rem;
  }

  .source-v2-home:not(.hdv2-interior) .brand small {
    font-size: 0.6rem;
  }

  .source-v2-home:not(.hdv2-interior) .main-nav {
    gap: 42px;
    font-size: 0.86rem;
  }

  .source-v2-home:not(.hdv2-interior) .nav-actions .btn {
    min-height: 48px;
    padding-inline: 24px;
    font-size: 0.82rem;
  }

  .source-v2-home:not(.hdv2-interior) .hdv2-hero {
    --hdv2-copy-shift: 0px;
    --hdv2-hero-grid-offset: clamp(6px, 1.4dvh, 18px);
    --hdv2-copy-gap-sm: 13px;
    --hdv2-copy-gap-md: 18px;
    --hdv2-copy-gap-lg: 24px;
  }

  .source-v2-home:not(.hdv2-interior) .hdv2-hero-grid,
  .source-v2-home:not(.hdv2-interior) .hdv2-feature-rail {
    width: min(calc(100% - 520px), 1260px);
  }

  .source-v2-home:not(.hdv2-interior) .hdv2-hero-grid {
    min-height: clamp(520px, 57dvh, 650px);
    grid-template-columns: minmax(500px, 0.49fr) minmax(560px, 0.51fr);
    gap: 24px;
  }

  .source-v2-home:not(.hdv2-interior) .hdv2-hero-copy,
  .source-v2-home:not(.hdv2-interior) .hdv2-hero h1,
  .source-v2-home:not(.hdv2-interior) .hdv2-proof-row,
  .source-v2-home:not(.hdv2-interior) .hdv2-format-chips {
    max-width: 650px;
  }

  .source-v2-home:not(.hdv2-interior) .hdv2-hero h1 {
    font-size: clamp(4.05rem, 3.2vw, 4.7rem);
  }

  .source-v2-home:not(.hdv2-interior) .hdv2-proof-row span {
    min-width: 78px;
    padding-inline: 12px;
  }

  .source-v2-home:not(.hdv2-interior) .hdv2-actions .btn {
    min-height: 50px;
    padding-inline: 26px;
  }

  .source-v2-home:not(.hdv2-interior) .hdv2-format-chips {
    gap: 12px;
  }

  .source-v2-home:not(.hdv2-interior) .hdv2-format-chips a {
    min-height: 42px;
    min-width: 88px;
    padding-inline: 18px;
  }

  .source-v2-home:not(.hdv2-interior) .hdv2-hero-stage {
    min-height: clamp(470px, 51dvh, 600px);
  }

  .source-v2-home:not(.hdv2-interior) .hdv2-hero-stage img {
    width: min(900px, 108%);
    transform: translate(30px, 0);
  }

  .source-v2-home:not(.hdv2-interior) .hdv2-hero-stage::before {
    left: -6%;
    right: -28%;
    bottom: -18px;
    height: clamp(280px, 31dvh, 360px);
    background-size: 116% auto;
  }

  .source-v2-home:not(.hdv2-interior) .hdv2-hero-stage::after {
    left: 12%;
    right: 2%;
    bottom: clamp(58px, 7dvh, 82px);
    height: clamp(64px, 7dvh, 92px);
    opacity: 0.5;
  }

  .source-v2-home:not(.hdv2-interior) .hdv2-feature-rail {
    padding: 30px 38px;
  }
}

/* The glass table and products are now one composed asset, so they scale together. */
.source-v2-home:not(.hdv2-interior) .hdv2-hero-stage::before,
.source-v2-home:not(.hdv2-interior) .hdv2-hero-stage::after {
  display: none;
}

.source-v2-home:not(.hdv2-interior) .hdv2-hero-stage img {
  width: min(1120px, 132%);
  transform: translate(28px, 0);
  filter: drop-shadow(0 32px 38px rgba(7, 18, 31, 0.17));
}

@media (min-width: 1321px) {
  .source-v2-home:not(.hdv2-interior) .site-header,
  .source-v2-home:not(.hdv2-interior) .hdv2-hero-grid,
  .source-v2-home:not(.hdv2-interior) .hdv2-feature-rail {
    width: min(calc(100% - 170px), 1400px);
  }

  .source-v2-home:not(.hdv2-interior) .hdv2-hero-grid {
    grid-template-columns: minmax(520px, 0.5fr) minmax(520px, 0.5fr);
    gap: 24px;
  }

  .source-v2-home:not(.hdv2-interior) .hdv2-hero h1 {
    font-size: clamp(4rem, 3.7vw, 4.9rem);
  }

  .source-v2-home:not(.hdv2-interior) .hdv2-hero-stage {
    min-height: clamp(455px, 51dvh, 620px);
  }

  .source-v2-home:not(.hdv2-interior) .hdv2-hero-stage img {
    width: min(730px, 116%);
    transform: translate(76px, 0);
  }
}

@media (min-width: 1600px) {
  .source-v2-home:not(.hdv2-interior) .site-header,
  .source-v2-home:not(.hdv2-interior) .hdv2-hero-grid,
  .source-v2-home:not(.hdv2-interior) .hdv2-feature-rail {
    width: min(calc(100% - 260px), 1360px);
  }

  .source-v2-home:not(.hdv2-interior) .hdv2-hero-stage img {
    width: min(1040px, 136%);
    transform: translate(24px, 0);
  }
}

@media (min-width: 1900px) {
  .source-v2-home:not(.hdv2-interior) .site-header,
  .source-v2-home:not(.hdv2-interior) .hdv2-hero-grid,
  .source-v2-home:not(.hdv2-interior) .hdv2-feature-rail {
    width: min(calc(100% - 520px), 1260px);
  }

  .source-v2-home:not(.hdv2-interior) .hdv2-hero-stage img {
    width: min(980px, 148%);
    transform: translate(18px, 0);
  }
}

@media (max-width: 1180px) {
  .source-v2-home:not(.hdv2-interior) .hdv2-hero-stage img {
    width: min(920px, 118%);
    transform: translateY(0);
  }
}

/* Shared source-v2 chrome for top-level interior pages */
.source-v2-home .site-footer {
  grid-template-columns: auto 1fr auto;
  gap: 44px;
  align-items: center;
  padding: 44px 60px 30px;
  color: var(--hdv2-navy);
  background:
    radial-gradient(circle at 8% 0%, rgba(0, 63, 145, 0.1), transparent 25rem),
    linear-gradient(180deg, #fbfcfd 0%, #eaf2f6 100%);
  border-top: 1px solid rgba(86, 104, 122, 0.18);
}

.source-v2-home .site-footer nav {
  gap: 44px;
  color: var(--hdv2-navy);
  font-size: 0.95rem;
  font-weight: 650;
  letter-spacing: 0;
  text-transform: none;
}

.source-v2-home .site-footer nav a:hover,
.source-v2-home .site-footer nav a:focus-visible,
.source-v2-home .footer-email:hover,
.source-v2-home .footer-email:focus-visible {
  color: var(--hdv2-gold);
}

.source-v2-home .site-footer .footer-brand span {
  color: var(--hdv2-navy);
}

.source-v2-home .site-footer .footer-brand small,
.source-v2-home .footer-email {
  color: var(--hdv2-gold);
}

.source-v2-home .site-footer p {
  border-top: 1px solid rgba(86, 104, 122, 0.18);
  color: #5b6a77;
  font-size: 0.82rem;
  font-weight: 650;
  letter-spacing: 0;
  text-transform: none;
}

.source-v2-home .site-footer p span {
  background: rgba(86, 104, 122, 0.3);
}

.source-v2-home.hdv2-interior .hdv2-interior-main {
  min-height: 0;
  padding: 156px 0 86px;
  background:
    radial-gradient(circle at 10% 8%, rgba(0, 63, 145, 0.1), transparent 26rem),
    radial-gradient(circle at 92% 18%, rgba(166, 109, 19, 0.09), transparent 22rem),
    linear-gradient(180deg, rgba(244, 248, 251, 0.92) 0%, rgba(251, 252, 252, 0.98) 48%, rgba(243, 247, 249, 0.96) 100%);
}

.source-v2-home.hdv2-interior .technology,
.source-v2-home.hdv2-interior .formats,
.source-v2-home.hdv2-interior .partner-program,
.source-v2-home.hdv2-interior .quality-page,
.source-v2-home.hdv2-interior .sample-kit,
.source-v2-home.hdv2-interior .about,
.source-v2-home.hdv2-interior .partner-inquiry {
  padding-top: 0;
}

.source-v2-home.hdv2-interior .section-kicker {
  color: var(--hdv2-gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.source-v2-home.hdv2-interior .section-kicker::before {
  background: var(--hdv2-gold);
}

.source-v2-home.hdv2-interior h1,
.source-v2-home.hdv2-interior h2,
.source-v2-home.hdv2-interior h3,
.source-v2-home.hdv2-interior .center-intro h2,
.source-v2-home.hdv2-interior .tech-copy h2,
.source-v2-home.hdv2-interior .inquiry-copy h2 {
  color: var(--hdv2-navy);
}

.source-v2-home.hdv2-interior .center-intro p,
.source-v2-home.hdv2-interior .tech-copy > p:not(.section-kicker),
.source-v2-home.hdv2-interior .inquiry-copy > p,
.source-v2-home.hdv2-interior .partner-program p,
.source-v2-home.hdv2-interior .quality-page p,
.source-v2-home.hdv2-interior .sample-kit p,
.source-v2-home.hdv2-interior .about p {
  color: #41566a;
}

.source-v2-home.hdv2-interior .format-card,
.source-v2-home.hdv2-interior .layer-card,
.source-v2-home.hdv2-interior .partner-form,
.source-v2-home.hdv2-interior .sample-form,
.source-v2-home.hdv2-interior .inquiry-shell,
.source-v2-home.hdv2-interior .quality-strip article,
.source-v2-home.hdv2-interior .program-card,
.source-v2-home.hdv2-interior .quality-card,
.source-v2-home.hdv2-interior .about-card {
  border-color: rgba(86, 104, 122, 0.18);
  background-color: rgba(255, 255, 255, 0.78);
  box-shadow: 0 24px 70px rgba(4, 22, 38, 0.08);
  backdrop-filter: blur(16px);
}

.source-v2-home.hdv2-interior .dark-cta,
.source-v2-home.hdv2-interior .section-tabs {
  border-color: rgba(7, 18, 31, 0.08);
  background:
    linear-gradient(135deg, rgba(7, 18, 31, 0.96), rgba(16, 40, 63, 0.96));
  box-shadow: 0 24px 70px rgba(4, 22, 38, 0.14);
}

@media (max-width: 1180px) {
  .source-v2-home .site-footer {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 22px;
    padding: 36px 34px 26px;
  }

  .source-v2-home .site-footer nav {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 18px 28px;
  }

  .source-v2-home.hdv2-interior .hdv2-interior-main {
    padding-top: 104px;
  }
}

@media (max-width: 760px) {
  .source-v2-home .site-footer {
    padding-inline: 22px;
  }

  .source-v2-home .site-footer nav,
  .source-v2-home .site-footer p {
    display: grid;
    gap: 14px;
  }

  .source-v2-home .site-footer p span {
    display: none;
  }

  .source-v2-home.hdv2-interior .hdv2-interior-main {
    padding: 92px 0 64px;
  }
}

.source-v2-home:not(.hdv2-interior) .hdv2-feature-rail img {
  padding: 0;
}

/* Homepage platform section revamp */
.source-v2-home:not(.hdv2-interior) .hdv2-hub {
  grid-template-columns: minmax(430px, 0.44fr) minmax(620px, 0.56fr);
  gap: clamp(46px, 5vw, 88px);
  align-items: center;
  padding: clamp(92px, 8vw, 126px) 0 clamp(86px, 8vw, 116px);
}

.source-v2-home:not(.hdv2-interior) .hdv2-hub-copy {
  align-self: center;
}

.source-v2-home:not(.hdv2-interior) .hdv2-hub-copy h2 {
  max-width: 760px;
  font-size: clamp(3.3rem, 4.45vw, 5.15rem);
}

.source-v2-home:not(.hdv2-interior) .hdv2-hub-copy > p:not(.hdv2-kicker) {
  max-width: 640px;
}

.source-v2-home:not(.hdv2-interior) .hdv2-hub-points {
  display: grid;
  gap: 0;
  max-width: 650px;
  margin: clamp(24px, 2.4vw, 34px) 0 4px;
  border-top: 1px solid rgba(86, 104, 122, 0.18);
}

.source-v2-home:not(.hdv2-interior) .hdv2-hub-points article {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 3px 18px;
  padding: 17px 0;
  border-bottom: 1px solid rgba(86, 104, 122, 0.18);
}

.source-v2-home:not(.hdv2-interior) .hdv2-hub-points span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(166, 109, 19, 0.24);
  border-radius: 50%;
  color: var(--hdv2-gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.source-v2-home:not(.hdv2-interior) .hdv2-hub-points b {
  color: var(--hdv2-navy);
  font-size: 1rem;
}

.source-v2-home:not(.hdv2-interior) .hdv2-hub-points p {
  max-width: 560px;
  margin: 0;
  color: var(--hdv2-muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.source-v2-home:not(.hdv2-interior) .hdv2-hub-visual {
  min-height: clamp(570px, 48vw, 690px);
  overflow: hidden;
  border: 1px solid rgba(86, 104, 122, 0.13);
  background:
    radial-gradient(circle at 74% 18%, rgba(32, 92, 150, 0.16), transparent 18rem),
    radial-gradient(circle at 23% 76%, rgba(166, 109, 19, 0.08), transparent 15rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(238, 246, 250, 0.66));
  box-shadow: 0 34px 90px rgba(7, 18, 31, 0.08);
}

.source-v2-home:not(.hdv2-interior) .hdv2-hub-visual::before {
  content: "";
  position: absolute;
  inset: 8%;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 24px;
  pointer-events: none;
}

.source-v2-home:not(.hdv2-interior) .hdv2-hub-visual::after {
  content: "";
  position: absolute;
  left: 10%;
  right: 8%;
  bottom: 8%;
  height: 30%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(44, 82, 112, 0.16), transparent 70%);
  filter: blur(10px);
  pointer-events: none;
}

.source-v2-home:not(.hdv2-interior) .hdv2-hub-surface {
  position: absolute;
  left: 11%;
  right: 7%;
  bottom: 12%;
  z-index: 1;
  height: 32%;
  border: 1px solid rgba(162, 199, 222, 0.48);
  border-bottom-color: rgba(88, 143, 180, 0.22);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(205, 229, 242, 0.28)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.46), rgba(78, 137, 178, 0.16));
  clip-path: polygon(8% 0, 100% 0, 91% 100%, 0 100%);
  box-shadow: 0 28px 45px rgba(7, 18, 31, 0.08);
}

.source-v2-home:not(.hdv2-interior) .hdv2-hub-visual img {
  filter: drop-shadow(0 30px 25px rgba(7, 18, 31, 0.14));
}

.source-v2-home:not(.hdv2-interior) .hdv2-hub-box {
  left: 23%;
  bottom: 20%;
  z-index: 3;
  width: 47%;
}

.source-v2-home:not(.hdv2-interior) .hdv2-hub-coa {
  left: 13%;
  top: 8%;
  z-index: 2;
  width: 28%;
  transform: rotate(-5deg);
}

.source-v2-home:not(.hdv2-interior) .hdv2-hub-clipboard {
  right: 10%;
  top: 7%;
  z-index: 2;
  width: 25%;
  transform: rotate(4deg);
}

.source-v2-home:not(.hdv2-interior) .hdv2-hub-bottle {
  right: 17%;
  bottom: 19%;
  z-index: 4;
  width: 15%;
}

.source-v2-home:not(.hdv2-interior) .hdv2-hub-badge {
  position: absolute;
  z-index: 5;
  display: grid;
  gap: 3px;
  min-width: 176px;
  padding: 13px 16px;
  border: 1px solid rgba(166, 109, 19, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 34px rgba(7, 18, 31, 0.08);
  backdrop-filter: blur(14px);
}

.source-v2-home:not(.hdv2-interior) .hdv2-hub-badge b {
  color: var(--hdv2-navy);
  font-size: 0.82rem;
  line-height: 1;
}

.source-v2-home:not(.hdv2-interior) .hdv2-hub-badge span {
  color: var(--hdv2-muted);
  font-size: 0.72rem;
  line-height: 1.1;
}

.source-v2-home:not(.hdv2-interior) .hdv2-hub-badge-left {
  left: 9%;
  bottom: 12%;
}

.source-v2-home:not(.hdv2-interior) .hdv2-hub-badge-right {
  right: 8%;
  top: 39%;
}

.source-v2-home:not(.hdv2-interior) .hdv2-hub-metrics {
  gap: 0;
  margin: clamp(10px, 1.6vw, 24px) 0 0;
  overflow: hidden;
  border: 1px solid rgba(86, 104, 122, 0.16);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 22px 65px rgba(7, 18, 31, 0.06);
  backdrop-filter: blur(18px);
}

.source-v2-home:not(.hdv2-interior) .hdv2-hub-metrics div {
  min-height: 106px;
  border: 0;
  border-right: 1px solid rgba(86, 104, 122, 0.15);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(246, 250, 252, 0.34));
}

.source-v2-home:not(.hdv2-interior) .hdv2-hub-metrics div:last-child {
  border-right: 0;
}

.source-v2-home:not(.hdv2-interior) .hdv2-hub-metrics dt {
  font-size: clamp(2.05rem, 3vw, 2.8rem);
}

.source-v2-home:not(.hdv2-interior) .hdv2-hub-metrics dd {
  max-width: 170px;
  text-align: center;
  line-height: 1.3;
}

@media (max-width: 1180px) {
  .source-v2-home:not(.hdv2-interior) .hdv2-hub {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .source-v2-home:not(.hdv2-interior) .hdv2-hub-copy h2,
  .source-v2-home:not(.hdv2-interior) .hdv2-hub-copy > p:not(.hdv2-kicker),
  .source-v2-home:not(.hdv2-interior) .hdv2-hub-points {
    max-width: 780px;
  }

  .source-v2-home:not(.hdv2-interior) .hdv2-hub-points {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 0;
    gap: 14px;
  }

  .source-v2-home:not(.hdv2-interior) .hdv2-hub-points article {
    grid-template-columns: 1fr;
    padding: 18px;
    border: 1px solid rgba(86, 104, 122, 0.16);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.62);
  }

  .source-v2-home:not(.hdv2-interior) .hdv2-hub-points span {
    grid-row: auto;
  }

  .source-v2-home:not(.hdv2-interior) .hdv2-hub-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .source-v2-home:not(.hdv2-interior) .hdv2-hub-metrics div:nth-child(2) {
    border-right: 0;
  }

  .source-v2-home:not(.hdv2-interior) .hdv2-hub-metrics div:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(86, 104, 122, 0.15);
  }
}

@media (max-width: 760px) {
  .source-v2-home:not(.hdv2-interior) .hdv2-hub {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .source-v2-home:not(.hdv2-interior) .hdv2-hub-copy h2 {
    font-size: clamp(2.78rem, 12vw, 3.65rem);
  }

  .source-v2-home:not(.hdv2-interior) .hdv2-hub-points {
    grid-template-columns: 1fr;
  }

  .source-v2-home:not(.hdv2-interior) .hdv2-hub-visual {
    min-height: 430px;
  }

  .source-v2-home:not(.hdv2-interior) .hdv2-hub-box {
    left: 11%;
    bottom: 17%;
    width: 66%;
  }

  .source-v2-home:not(.hdv2-interior) .hdv2-hub-coa {
    left: 4%;
    top: 8%;
    width: 37%;
  }

  .source-v2-home:not(.hdv2-interior) .hdv2-hub-clipboard {
    right: 4%;
    top: 7%;
    width: 36%;
  }

  .source-v2-home:not(.hdv2-interior) .hdv2-hub-bottle {
    right: 10%;
    bottom: 17%;
    width: 23%;
  }

  .source-v2-home:not(.hdv2-interior) .hdv2-hub-badge {
    min-width: 0;
    padding: 10px 12px;
  }

  .source-v2-home:not(.hdv2-interior) .hdv2-hub-badge-left {
    left: 6%;
    bottom: 8%;
  }

  .source-v2-home:not(.hdv2-interior) .hdv2-hub-badge-right {
    right: 5%;
    top: 40%;
  }

  .source-v2-home:not(.hdv2-interior) .hdv2-hub-metrics {
    grid-template-columns: 1fr;
  }

  .source-v2-home:not(.hdv2-interior) .hdv2-hub-metrics div,
  .source-v2-home:not(.hdv2-interior) .hdv2-hub-metrics div:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid rgba(86, 104, 122, 0.15);
  }

  .source-v2-home:not(.hdv2-interior) .hdv2-hub-metrics div:last-child {
    border-bottom: 0;
  }
}

/* Homepage technology knowledge teaser */
.source-v2-home:not(.hdv2-interior) .hdv2-hub {
  grid-template-columns: minmax(410px, 0.34fr) minmax(700px, 0.66fr);
  gap: clamp(38px, 4.2vw, 74px);
  align-items: center;
  padding: clamp(86px, 7vw, 118px) 0 clamp(58px, 5.4vw, 84px);
}

.source-v2-home:not(.hdv2-interior) .hdv2-hub-copy h2 {
  max-width: 650px;
  font-size: clamp(3rem, 4.15vw, 4.84rem);
}

.source-v2-home:not(.hdv2-interior) .hdv2-hub-copy > p:not(.hdv2-kicker) {
  max-width: 610px;
  font-size: clamp(1.02rem, 1.2vw, 1.24rem);
}

.source-v2-home:not(.hdv2-interior) .hdv2-knowledge-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-width: 250px;
  min-height: 64px;
  margin-top: clamp(24px, 2.6vw, 40px);
  padding: 0 31px;
  border: 1px solid var(--hdv2-navy);
  border-radius: 999px !important;
  background: var(--hdv2-navy);
  color: #fff;
  box-shadow: 0 20px 42px rgba(7, 18, 31, 0.16);
  clip-path: none !important;
  font-size: 1.02rem;
  font-weight: 850;
  text-decoration: none;
}

.source-v2-home:not(.hdv2-interior) .hdv2-knowledge-button span {
  color: var(--hdv2-gold);
  font-size: 1.35rem;
  transform: translateY(-1px);
}

.source-v2-home:not(.hdv2-interior) .hdv2-hub-visual {
  min-height: clamp(500px, 39vw, 620px);
  overflow: visible;
  border: 0;
  border-radius: 32px !important;
  background: transparent;
  box-shadow: none;
}

.source-v2-home:not(.hdv2-interior) .hdv2-hub-visual::before,
.source-v2-home:not(.hdv2-interior) .hdv2-hub-visual::after {
  display: none;
}

.source-v2-home:not(.hdv2-interior) .hdv2-tech-journey {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(100%, 1088px);
  height: auto;
  right: auto;
  max-height: 100%;
  object-fit: contain;
  border-radius: 22px !important;
  filter: drop-shadow(0 28px 52px rgba(7, 18, 31, 0.06));
  transform: translateX(-50%);
}

@media (max-width: 1180px) {
  .source-v2-home:not(.hdv2-interior) .hdv2-hub {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .source-v2-home:not(.hdv2-interior) .hdv2-hub-copy h2,
  .source-v2-home:not(.hdv2-interior) .hdv2-hub-copy > p:not(.hdv2-kicker) {
    max-width: 780px;
  }

  .source-v2-home:not(.hdv2-interior) .hdv2-hub-visual {
    min-height: clamp(430px, 62vw, 610px);
  }

  .source-v2-home:not(.hdv2-interior) .hdv2-tech-journey {
    left: 50%;
    right: auto;
    width: min(100%, 1040px);
    transform: translateX(-50%);
  }
}

@media (max-width: 760px) {
  .source-v2-home:not(.hdv2-interior) .hdv2-hub {
    padding-top: 72px;
    padding-bottom: 52px;
  }

  .source-v2-home:not(.hdv2-interior) .hdv2-hub-copy h2 {
    font-size: clamp(2.58rem, 11vw, 3.45rem);
  }

  .source-v2-home:not(.hdv2-interior) .hdv2-knowledge-button {
    min-width: min(100%, 248px);
    min-height: 58px;
  }

  .source-v2-home:not(.hdv2-interior) .hdv2-hub-visual {
    min-height: 0;
    aspect-ratio: 1088 / 670;
    overflow: hidden;
  }

  .source-v2-home:not(.hdv2-interior) .hdv2-tech-journey {
    inset: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: contain;
    transform: none;
  }
}

.source-v2-home:not(.hdv2-interior) .hdv2-formats .hdv2-section-head {
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  align-items: start;
}

.source-v2-home:not(.hdv2-interior) .hdv2-formats .hdv2-section-head .hdv2-kicker {
  grid-column: auto;
  margin-bottom: 24px;
}

@media (max-width: 1120px) {
  .source-v2-home:not(.hdv2-interior) .hdv2-format-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: auto;
  }
}

@media (max-width: 860px) {
  .source-v2-home:not(.hdv2-interior) .hdv2-format-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: auto;
    gap: 18px;
  }

  .source-v2-home:not(.hdv2-interior) .hdv2-format-card {
    grid-template-rows: 220px auto;
    min-height: 404px;
  }

  .source-v2-home:not(.hdv2-interior) .hdv2-format-card img {
    max-width: 92%;
    max-height: 190px;
  }
}

@media (max-width: 620px) {
  .source-v2-home:not(.hdv2-interior) .hdv2-format-gallery {
    grid-template-columns: minmax(0, 1fr);
    grid-auto-rows: auto;
  }

  .source-v2-home:not(.hdv2-interior) .hdv2-format-card {
    grid-template-rows: 210px auto;
    min-height: 388px;
    padding: 22px 20px 26px;
  }

  .source-v2-home:not(.hdv2-interior) .hdv2-sample-strip {
    grid-template-columns: 40px minmax(0, 1fr) auto;
    gap: 16px;
    padding: 16px 18px;
  }

  .source-v2-home:not(.hdv2-interior) .hdv2-sample-strip strong {
    font-size: 2.15rem;
  }
}

.source-v2-home:not(.hdv2-interior) .hdv2-format-render img {
  width: 100%;
  max-width: none;
  max-height: none;
  height: auto;
  filter: none;
}

/* Partner process section refresh. */
.source-v2-home:not(.hdv2-interior) .hdv2-process {
  grid-template-columns: minmax(340px, 0.34fr) minmax(760px, 0.66fr);
  gap: 72px;
  align-items: center;
  padding-top: 124px;
  padding-bottom: 124px;
}

.source-v2-home:not(.hdv2-interior) .hdv2-process::before {
  inset: 38px auto 38px 50%;
  border-top: 1px solid rgba(13, 29, 49, 0.06);
  border-bottom: 1px solid rgba(13, 29, 49, 0.06);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(247, 250, 252, 0.58)),
    repeating-linear-gradient(90deg, rgba(13, 29, 49, 0.035) 0 1px, transparent 1px 19.8%);
}

.source-v2-home:not(.hdv2-interior) .hdv2-process-copy {
  max-width: 520px;
  padding: 28px 0 34px;
}

.source-v2-home:not(.hdv2-interior) .hdv2-process-copy .hdv2-kicker {
  margin-bottom: 22px;
}

.source-v2-home:not(.hdv2-interior) .hdv2-process-copy p:not(.hdv2-kicker) {
  max-width: 560px;
  margin-top: 24px;
}

.source-v2-home:not(.hdv2-interior) .hdv2-process-copy .hdv2-text-link {
  margin-top: 30px;
}

.source-v2-home:not(.hdv2-interior) .hdv2-process-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  border: 0;
}

.source-v2-home:not(.hdv2-interior) .hdv2-process-steps::before {
  content: "";
  position: absolute;
  top: 58px;
  right: 8%;
  left: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(181, 123, 24, 0.42), transparent);
}

.source-v2-home:not(.hdv2-interior) .hdv2-process-steps li {
  position: relative;
  min-height: 372px;
  display: grid;
  grid-template-rows: 76px auto auto 1fr;
  gap: 16px;
  padding: 28px 22px 30px;
  overflow: hidden;
  border: 1px solid rgba(13, 29, 49, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(249, 251, 253, 0.74)),
    linear-gradient(135deg, rgba(181, 123, 24, 0.07), transparent 48%);
  box-shadow: 0 20px 44px rgba(13, 29, 49, 0.07);
}

.source-v2-home:not(.hdv2-interior) .hdv2-process-steps li::before {
  content: "";
  position: absolute;
  top: 55px;
  left: 50%;
  width: 10px;
  height: 10px;
  border: 2px solid rgba(181, 123, 24, 0.52);
  border-radius: 999px;
  background: #fff;
  transform: translate(-50%, -50%);
}

.source-v2-home:not(.hdv2-interior) .hdv2-process-steps li::after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, rgba(181, 123, 24, 0.86), rgba(0, 63, 145, 0.48));
}

.source-v2-home:not(.hdv2-interior) .hdv2-process-steps img {
  position: relative;
  z-index: 1;
  width: 64px;
  height: 64px;
  justify-self: center;
  padding: 16px;
  border: 1px solid rgba(181, 123, 24, 0.22);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 14px 32px rgba(13, 29, 49, 0.08);
}

.source-v2-home:not(.hdv2-interior) .hdv2-process-steps span {
  width: max-content;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(181, 123, 24, 0.1);
}

.source-v2-home:not(.hdv2-interior) .hdv2-process-steps h3 {
  max-width: 11rem;
  font-size: 1.08rem;
  line-height: 1.12;
}

.source-v2-home:not(.hdv2-interior) .hdv2-process-steps p {
  color: #52667c;
  font-size: 0.9rem;
  line-height: 1.52;
}

@media (max-width: 1380px) {
  .source-v2-home:not(.hdv2-interior) .hdv2-process {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .source-v2-home:not(.hdv2-interior) .hdv2-process-copy {
    max-width: 780px;
  }
}

@media (max-width: 1180px) {
  .source-v2-home:not(.hdv2-interior) .hdv2-process-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  .source-v2-home:not(.hdv2-interior) .hdv2-process {
    padding-top: 84px;
    padding-bottom: 84px;
  }

  .source-v2-home:not(.hdv2-interior) .hdv2-process-steps {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .source-v2-home:not(.hdv2-interior) .hdv2-process-steps::before {
    top: 30px;
    bottom: 30px;
    left: 34px;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, transparent, rgba(181, 123, 24, 0.42), transparent);
  }

  .source-v2-home:not(.hdv2-interior) .hdv2-process-steps li {
    min-height: 0;
    grid-template-columns: 64px minmax(0, 1fr);
    grid-template-rows: auto auto auto;
    column-gap: 18px;
    padding: 24px 20px;
  }

  .source-v2-home:not(.hdv2-interior) .hdv2-process-steps li::before {
    top: 55px;
    left: 32px;
  }

  .source-v2-home:not(.hdv2-interior) .hdv2-process-steps img {
    grid-row: 1 / span 3;
    align-self: start;
  }

  .source-v2-home:not(.hdv2-interior) .hdv2-process-steps h3 {
    max-width: none;
  }
}

/* Partner process blueprint: simple document route. */
.source-v2-home:not(.hdv2-interior) .hdv2-process {
  grid-template-columns: minmax(360px, 0.34fr) minmax(780px, 0.66fr);
  gap: 82px;
  align-items: center;
  padding-top: 118px;
  padding-bottom: 118px;
}

.source-v2-home:not(.hdv2-interior) .hdv2-process::before {
  inset: 28px auto 28px 50%;
  border: 0;
  background:
    radial-gradient(circle at 91% 12%, rgba(153, 170, 188, 0.18), transparent 14rem),
    radial-gradient(circle at 93% 88%, rgba(153, 170, 188, 0.12), transparent 11rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(247, 250, 252, 0.58)),
    linear-gradient(rgba(101, 124, 148, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(101, 124, 148, 0.04) 1px, transparent 1px);
  background-size: auto, auto, auto, 34px 34px, 34px 34px;
}

.source-v2-home:not(.hdv2-interior) .hdv2-process-copy {
  max-width: 520px;
  padding: 18px 0 30px;
}

.source-v2-home:not(.hdv2-interior) .hdv2-process h2 {
  max-width: 560px;
  font-size: clamp(2.85rem, 3.1vw, 3.65rem);
  line-height: 1.04;
}

.source-v2-home:not(.hdv2-interior) .hdv2-process-copy .hdv2-kicker {
  margin-bottom: 22px;
}

.source-v2-home:not(.hdv2-interior) .hdv2-process-copy p:not(.hdv2-kicker) {
  max-width: 560px;
  margin-top: 24px;
}

.source-v2-home:not(.hdv2-interior) .hdv2-process-copy .hdv2-text-link {
  margin-top: 30px;
}

.source-v2-home:not(.hdv2-interior) .hdv2-process-board {
  position: relative;
  display: grid;
  grid-template-rows: auto 54px auto;
  gap: 0;
  min-width: 0;
}

.source-v2-home:not(.hdv2-interior) .hdv2-process-board::before,
.source-v2-home:not(.hdv2-interior) .hdv2-process-board::after {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
  border: 1px solid rgba(101, 124, 148, 0.14);
}

.source-v2-home:not(.hdv2-interior) .hdv2-process-board::before {
  right: -20px;
  bottom: 12px;
  width: min(78%, 760px);
  height: 54%;
  border-left-width: 0;
  border-bottom-width: 0;
}

.source-v2-home:not(.hdv2-interior) .hdv2-process-board::after {
  top: 82px;
  left: -28px;
  width: min(42%, 420px);
  height: 52%;
  border-right-width: 0;
}

.source-v2-home:not(.hdv2-interior) .hdv2-process-support {
  display: grid;
  grid-template-columns: minmax(180px, 0.95fr) minmax(260px, 1.28fr) minmax(180px, 0.95fr);
  gap: 24px;
  align-items: end;
  padding: 0 26px;
}

.source-v2-home:not(.hdv2-interior) .hdv2-process-panel {
  min-height: 182px;
  padding: 22px 24px;
  border: 1px solid rgba(13, 29, 49, 0.09);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 20px 44px rgba(13, 29, 49, 0.08);
  backdrop-filter: blur(10px);
}

.source-v2-home:not(.hdv2-interior) .hdv2-process-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.source-v2-home:not(.hdv2-interior) .hdv2-process-panel-head b {
  color: var(--hdv2-navy);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.source-v2-home:not(.hdv2-interior) .hdv2-process-panel-head b::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  margin-top: 10px;
  background: var(--hdv2-gold);
}

.source-v2-home:not(.hdv2-interior) .hdv2-process-panel-head .line-icon {
  width: 34px;
  height: 34px;
  border-color: rgba(181, 123, 24, 0.22);
  color: var(--hdv2-gold);
}

.source-v2-home:not(.hdv2-interior) .hdv2-process-chart-icon {
  display: inline-grid;
  grid-template-columns: repeat(3, 4px);
  align-items: end;
  justify-content: center;
  gap: 3px;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(181, 123, 24, 0.22);
  color: var(--hdv2-gold);
}

.source-v2-home:not(.hdv2-interior) .hdv2-process-chart-icon i {
  display: block;
  width: 4px;
  background: currentColor;
}

.source-v2-home:not(.hdv2-interior) .hdv2-process-chart-icon i:nth-child(1) {
  height: 9px;
}

.source-v2-home:not(.hdv2-interior) .hdv2-process-chart-icon i:nth-child(2) {
  height: 14px;
}

.source-v2-home:not(.hdv2-interior) .hdv2-process-chart-icon i:nth-child(3) {
  height: 20px;
}

.source-v2-home:not(.hdv2-interior) .hdv2-process-panel dl,
.source-v2-home:not(.hdv2-interior) .hdv2-process-panel ul,
.source-v2-home:not(.hdv2-interior) .hdv2-process-panel p {
  margin: 0;
}

.source-v2-home:not(.hdv2-interior) .hdv2-process-panel dl {
  display: grid;
  gap: 9px;
}

.source-v2-home:not(.hdv2-interior) .hdv2-process-panel dl div {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 12px;
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(101, 124, 148, 0.14);
}

.source-v2-home:not(.hdv2-interior) .hdv2-process-panel dt,
.source-v2-home:not(.hdv2-interior) .hdv2-process-panel dd {
  margin: 0;
  color: #52667c;
  font-size: 0.72rem;
  line-height: 1.1;
}

.source-v2-home:not(.hdv2-interior) .hdv2-process-panel dd {
  color: #637893;
  font-family: var(--serif);
  font-size: 0.95rem;
  font-style: italic;
}

.source-v2-home:not(.hdv2-interior) .hdv2-process-panel ul {
  display: grid;
  gap: 10px;
  padding: 0;
  list-style: none;
}

.source-v2-home:not(.hdv2-interior) .hdv2-process-panel li {
  position: relative;
  padding-left: 20px;
  color: #52667c;
  font-size: 0.73rem;
  line-height: 1.15;
}

.source-v2-home:not(.hdv2-interior) .hdv2-process-panel li::before {
  content: "";
  position: absolute;
  top: 0.34em;
  left: 0;
  width: 7px;
  height: 4px;
  border-bottom: 1.5px solid var(--hdv2-gold);
  border-left: 1.5px solid var(--hdv2-gold);
  transform: rotate(-45deg);
}

.source-v2-home:not(.hdv2-interior) .hdv2-process-panel.is-ready {
  min-height: 218px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 110px;
  column-gap: 24px;
}

.source-v2-home:not(.hdv2-interior) .hdv2-process-panel.is-ready .hdv2-process-panel-head {
  grid-column: 1 / -1;
}

.source-v2-home:not(.hdv2-interior) .hdv2-process-panel.is-ready strong {
  align-self: end;
  justify-self: stretch;
  display: grid;
  place-items: center;
  min-height: 82px;
  border: 1px solid rgba(181, 123, 24, 0.34);
  border-radius: 999px;
  color: var(--hdv2-gold);
  font-size: 0.94rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: rotate(-8deg);
}

.source-v2-home:not(.hdv2-interior) .hdv2-process-bars {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: end;
  gap: 8px;
  height: 84px;
  margin: 8px 0 18px;
  padding: 12px 0 0;
  border-bottom: 1px solid rgba(101, 124, 148, 0.18);
}

.source-v2-home:not(.hdv2-interior) .hdv2-process-bars::before {
  content: "";
  position: absolute;
  right: 4px;
  bottom: 34px;
  left: 6px;
  border-top: 1px dashed rgba(181, 123, 24, 0.62);
  transform: rotate(-16deg);
  transform-origin: left center;
}

.source-v2-home:not(.hdv2-interior) .hdv2-process-bars i {
  display: block;
  height: var(--bar);
  background: linear-gradient(180deg, rgba(153, 170, 188, 0.82), rgba(153, 170, 188, 0.36));
}

.source-v2-home:not(.hdv2-interior) .hdv2-process-panel.is-forecast p {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  color: #52667c;
  font-size: 0.66rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.source-v2-home:not(.hdv2-interior) .hdv2-process-panel.is-forecast p b {
  display: block;
  color: var(--hdv2-navy);
  font-size: 0.9rem;
}

.source-v2-home:not(.hdv2-interior) .hdv2-process-route {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  margin: 0 8px;
}

.source-v2-home:not(.hdv2-interior) .hdv2-process-route::before {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  top: 50%;
  height: 2px;
  background: var(--hdv2-gold);
  transform: translateY(-50%);
}

.source-v2-home:not(.hdv2-interior) .hdv2-process-route::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -1px;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--hdv2-gold);
  border-right: 2px solid var(--hdv2-gold);
  transform: translateY(-50%) rotate(45deg);
}

.source-v2-home:not(.hdv2-interior) .hdv2-process-route span {
  position: relative;
  z-index: 1;
  justify-self: center;
  width: 16px;
  height: 16px;
  border: 3px solid var(--hdv2-gold);
  border-radius: 999px;
  background: #fff;
}

.source-v2-home:not(.hdv2-interior) .hdv2-process-route span::before {
  content: "";
  position: absolute;
  bottom: 13px;
  left: 50%;
  height: 28px;
  border-left: 1px dashed rgba(181, 123, 24, 0.52);
  transform: translateX(-50%);
}

.source-v2-home:not(.hdv2-interior) .hdv2-process-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
  margin: 0;
  padding: 0 26px;
  list-style: none;
  border: 0;
}

.source-v2-home:not(.hdv2-interior) .hdv2-process-steps::before {
  content: none;
}

.source-v2-home:not(.hdv2-interior) .hdv2-process-steps li {
  position: relative;
  min-height: 286px;
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  gap: 14px;
  padding: 28px 24px 30px;
  overflow: hidden;
  border: 1px solid rgba(13, 29, 49, 0.09);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 20px 42px rgba(13, 29, 49, 0.08);
}

.source-v2-home:not(.hdv2-interior) .hdv2-process-steps li::before,
.source-v2-home:not(.hdv2-interior) .hdv2-process-steps li::after {
  content: none;
}

.source-v2-home:not(.hdv2-interior) .hdv2-process-steps img {
  width: 62px;
  height: 62px;
  justify-self: center;
  padding: 15px;
  border: 1px solid rgba(181, 123, 24, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: none;
}

.source-v2-home:not(.hdv2-interior) .hdv2-process-steps span {
  width: max-content;
  padding: 4px 8px;
  border-radius: 0;
  background: rgba(181, 123, 24, 0.1);
  color: var(--hdv2-gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.source-v2-home:not(.hdv2-interior) .hdv2-process-steps h3 {
  max-width: none;
  margin: 0;
  color: var(--hdv2-navy);
  font-family: var(--ui-sans);
  font-size: 1.06rem;
  line-height: 1.1;
}

.source-v2-home:not(.hdv2-interior) .hdv2-process-steps p {
  margin: 0;
  color: #52667c;
  font-size: 0.82rem;
  line-height: 1.56;
}

@media (max-width: 1420px) {
  .source-v2-home:not(.hdv2-interior) .hdv2-process {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .source-v2-home:not(.hdv2-interior) .hdv2-process-copy {
    max-width: 780px;
  }
}

@media (max-width: 1020px) {
  .source-v2-home:not(.hdv2-interior) .hdv2-process-board {
    grid-template-rows: auto auto;
    gap: 22px;
  }

  .source-v2-home:not(.hdv2-interior) .hdv2-process-support {
    grid-template-columns: 1fr;
    padding: 0;
  }

  .source-v2-home:not(.hdv2-interior) .hdv2-process-panel,
  .source-v2-home:not(.hdv2-interior) .hdv2-process-panel.is-ready {
    min-height: 0;
  }

  .source-v2-home:not(.hdv2-interior) .hdv2-process-route {
    display: none;
  }

  .source-v2-home:not(.hdv2-interior) .hdv2-process-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    padding: 0;
  }
}

@media (max-width: 620px) {
  .source-v2-home:not(.hdv2-interior) .hdv2-process {
    padding-top: 84px;
    padding-bottom: 84px;
  }

  .source-v2-home:not(.hdv2-interior) .hdv2-process-panel.is-ready {
    grid-template-columns: 1fr;
    row-gap: 18px;
  }

  .source-v2-home:not(.hdv2-interior) .hdv2-process-panel.is-ready strong {
    min-height: 58px;
    max-width: 160px;
  }

  .source-v2-home:not(.hdv2-interior) .hdv2-process-steps {
    grid-template-columns: 1fr;
  }

  .source-v2-home:not(.hdv2-interior) .hdv2-process-steps li {
    min-height: 0;
    grid-template-columns: 62px minmax(0, 1fr);
    grid-template-rows: auto auto auto;
    column-gap: 18px;
    padding: 22px 20px;
  }

  .source-v2-home:not(.hdv2-interior) .hdv2-process-steps img {
    grid-row: 1 / span 3;
    align-self: start;
  }
}

.source-v2-home:not(.hdv2-interior) .hdv2-process-art {
  display: block;
  width: 100%;
  height: auto;
  filter: none;
}

@media (min-width: 1021px) {
  .source-v2-home:not(.hdv2-interior) .hdv2-process {
    grid-template-columns: minmax(350px, 0.31fr) minmax(840px, 0.69fr);
    gap: clamp(30px, 3.2vw, 58px);
  }

  .source-v2-home:not(.hdv2-interior) .hdv2-process-board {
    display: block;
    justify-self: end;
    width: min(62vw, 1160px);
    min-width: 0;
    margin-right: clamp(-96px, -4.6vw, -42px);
    overflow: hidden;
  }

  .source-v2-home:not(.hdv2-interior) .hdv2-process-board::before,
  .source-v2-home:not(.hdv2-interior) .hdv2-process-board::after {
    content: none;
  }

  .source-v2-home:not(.hdv2-interior) .hdv2-process-support,
  .source-v2-home:not(.hdv2-interior) .hdv2-process-route,
  .source-v2-home:not(.hdv2-interior) .hdv2-process-steps {
    display: none;
  }

  .source-v2-home:not(.hdv2-interior) .hdv2-process-art {
    width: 112%;
    max-width: none;
    margin: -2.2% -6% -2.8%;
  }
}

@media (max-width: 1020px) {
  .source-v2-home:not(.hdv2-interior) .hdv2-process-art {
    display: none;
  }
}

@media (min-width: 701px) and (max-width: 1020px) {
  .source-v2-home:not(.hdv2-interior) .hdv2-process-board {
    display: block;
    justify-self: center;
    width: min(100%, 980px);
    margin: 0 auto;
    overflow: hidden;
  }

  .source-v2-home:not(.hdv2-interior) .hdv2-process-board::before,
  .source-v2-home:not(.hdv2-interior) .hdv2-process-board::after {
    content: none;
  }

  .source-v2-home:not(.hdv2-interior) .hdv2-process-support,
  .source-v2-home:not(.hdv2-interior) .hdv2-process-route,
  .source-v2-home:not(.hdv2-interior) .hdv2-process-steps {
    display: none;
  }

  .source-v2-home:not(.hdv2-interior) .hdv2-process-art {
    display: block;
    width: 112%;
    max-width: none;
    margin: -2.2% -6% -2.8%;
  }
}

@media (max-width: 700px) {
  .source-v2-home:not(.hdv2-interior) .hdv2-process-art {
    display: none;
  }
}

/* Partner portal demo */
.portal-demo-page {
  min-height: 100vh;
  overflow-x: hidden;
  background:
    linear-gradient(180deg, rgba(248, 251, 253, 0.94), rgba(238, 244, 248, 0.96)),
    #f6f9fb;
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
}

.portal-demo-page * {
  box-sizing: border-box;
}

.portal-shell-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1640px, calc(100% - 48px));
  margin: 28px auto 0;
  padding: 16px 20px 16px 26px;
  border: 1px solid rgba(15, 26, 43, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 24px 80px rgba(15, 26, 43, 0.1);
  backdrop-filter: blur(18px);
}

.portal-brand {
  min-width: 190px;
}

.portal-top-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 46px);
  font-size: 0.9rem;
  font-weight: 800;
}

.portal-top-nav a {
  color: var(--ink);
  text-decoration: none;
}

.portal-user-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  padding: 8px 12px 8px 8px;
  border: 1px solid rgba(15, 26, 43, 0.1);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 800;
}

.portal-user-pill span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  font-size: 0.78rem;
}

.portal-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(560px, 1.8fr) minmax(280px, 0.9fr);
  gap: 18px;
  width: min(1640px, calc(100% - 48px));
  margin: 18px auto 40px;
}

.portal-project-rail,
.portal-main-panel,
.portal-side-panel {
  min-width: 0;
}

.portal-project-rail,
.portal-main-panel,
.portal-payment-card,
.portal-communication-card,
.portal-support-card,
.portal-timeline-card {
  border: 1px solid rgba(15, 26, 43, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 60px rgba(15, 26, 43, 0.08);
}

.portal-project-rail {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 24px;
}

.portal-small-label {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.portal-project-rail h1,
.portal-main-head h2,
.portal-stage-card h3,
.portal-payment-card h3,
.portal-communication-card h3,
.portal-support-card h3,
.portal-timeline-card h3 {
  margin: 0;
  color: var(--ink);
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  letter-spacing: 0;
}

.portal-project-rail h1 {
  max-width: 310px;
  font-size: clamp(2.35rem, 2.7vw, 3.15rem);
  line-height: 0.96;
}

.portal-project-rail p,
.portal-main-head p,
.portal-action-band p,
.portal-payment-card p,
.portal-communication-card p,
.portal-support-card p,
.portal-detail-grid p,
.portal-timeline-card p {
  color: var(--muted);
  line-height: 1.55;
}

.portal-project-rail p {
  max-width: 320px;
  margin: 16px 0 0;
  font-size: 0.98rem;
}

.portal-project-list {
  display: grid;
  gap: 10px;
}

.portal-project-filter {
  display: grid;
  gap: 10px;
}

.portal-project-filter label {
  display: grid;
  gap: 7px;
}

.portal-project-filter input {
  width: 100%;
  min-width: 0;
  padding: 11px 12px;
  border: 1px solid rgba(15, 26, 43, 0.12);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 0.92rem;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.portal-project-filter input:focus {
  border-color: rgba(180, 124, 28, 0.5);
  box-shadow: 0 0 0 3px rgba(180, 124, 28, 0.14);
}

.portal-project-filter-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
}

.portal-project-filter-tabs button {
  min-width: 0;
  min-height: 36px;
  padding: 8px 6px;
  border: 1px solid rgba(15, 26, 43, 0.1);
  border-radius: 8px;
  background: #fff;
  color: var(--muted);
  font: inherit;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  cursor: pointer;
}

.portal-project-filter-tabs button[aria-pressed="true"] {
  border-color: rgba(180, 124, 28, 0.55);
  background: #fbf8f1;
  color: var(--ink);
}

.portal-project-filter small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.35;
}

.portal-action-queue {
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid rgba(15, 26, 43, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.66);
}

.portal-action-queue-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.portal-action-queue-head p,
.portal-action-queue-head small {
  margin: 0;
}

.portal-action-queue-tools {
  display: grid;
  justify-items: end;
  gap: 6px;
}

.portal-action-queue-tools small {
  max-width: 150px;
  color: var(--muted-text);
  font-size: 0.75rem;
  font-weight: 800;
  line-height: 1.35;
  text-align: right;
}

.portal-action-queue-filter {
  min-height: 28px;
  padding: 5px 9px;
  border: 1px solid rgba(180, 124, 28, 0.35);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 0.72rem;
  font-weight: 900;
}

.portal-action-queue-filter:hover,
.portal-action-queue-filter:focus-visible {
  border-color: rgba(180, 124, 28, 0.58);
  background: #fbf8f1;
  outline: none;
}

.portal-action-queue-list {
  display: grid;
  gap: 8px;
}

.portal-action-queue-button {
  display: grid;
  gap: 4px;
  width: 100%;
  padding: 11px 12px;
  border: 1px solid rgba(15, 26, 43, 0.09);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.portal-action-queue-button:hover,
.portal-action-queue-button:focus-visible {
  border-color: rgba(180, 124, 28, 0.42);
  box-shadow: 0 12px 28px rgba(15, 26, 43, 0.1);
  outline: none;
  transform: translateY(-1px);
}

.portal-action-queue-button.is-active {
  border-color: rgba(180, 124, 28, 0.55);
  background: #fbf8f1;
}

.portal-action-queue-button span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.portal-action-queue-button b {
  color: var(--ink);
  font-size: 0.88rem;
  line-height: 1.25;
}

.portal-action-queue-button small {
  color: var(--muted-text);
  font-size: 0.75rem;
  font-weight: 800;
  line-height: 1.35;
}

.portal-project-group-label {
  margin: 6px 0 -2px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.portal-project-button {
  display: grid;
  gap: 5px;
  width: 100%;
  padding: 15px;
  border: 1px solid rgba(15, 26, 43, 0.09);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.portal-project-button:hover,
.portal-project-button:focus-visible {
  border-color: rgba(180, 124, 28, 0.42);
  box-shadow: 0 14px 34px rgba(15, 26, 43, 0.1);
  outline: none;
  transform: translateY(-1px);
}

.portal-project-button.is-active {
  border-color: rgba(180, 124, 28, 0.62);
  background: linear-gradient(180deg, #fff, #fbf8f1);
}

.portal-project-button span {
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.portal-project-button b {
  font-size: 1rem;
}

.portal-project-button small {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.35;
}

.portal-project-button .portal-project-next-milestone {
  color: var(--gold-deep);
  font-weight: 900;
}

.portal-project-button .portal-project-next-action {
  color: var(--ink);
  font-weight: 900;
}

.portal-project-button .portal-project-latest-date {
  color: var(--muted-text);
  font-size: 0.76rem;
}

.portal-project-status {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 2px;
}

.portal-project-status em {
  display: inline-flex;
  max-width: 100%;
  padding: 4px 7px;
  border: 1px solid rgba(15, 26, 43, 0.08);
  border-radius: 999px;
  background: rgba(246, 248, 250, 0.9);
  color: var(--muted);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 850;
  line-height: 1.2;
}

.portal-mini-card {
  display: grid;
  grid-template-columns: 86px 1fr;
  align-items: center;
  gap: 14px;
  margin-top: auto;
  padding: 14px;
  border: 1px solid rgba(15, 26, 43, 0.08);
  border-radius: 8px;
  background: #f8fbfd;
}

.portal-mini-card img {
  display: block;
  width: 86px;
  height: 68px;
  object-fit: contain;
}

.portal-mini-card b {
  display: block;
  color: var(--ink);
}

.portal-mini-card p {
  margin: 4px 0 0;
  font-size: 0.85rem;
}

.portal-account-card {
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid rgba(15, 26, 43, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.portal-account-card b {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.portal-account-card p,
.portal-account-card small {
  margin: 0;
  color: var(--muted-text);
  font-size: 0.84rem;
  line-height: 1.4;
}

.portal-account-card dl {
  display: grid;
  gap: 8px;
  margin: 2px 0;
}

.portal-account-card div {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  border-top: 1px solid rgba(15, 26, 43, 0.08);
  padding-top: 8px;
}

.portal-account-card dt,
.portal-account-card dd {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.3;
}

.portal-account-card dt {
  color: var(--muted);
  text-transform: uppercase;
}

.portal-account-card dd {
  color: var(--ink);
  text-align: right;
}

.portal-auth-panel {
  border: 1px solid rgba(184, 128, 26, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  padding: 16px;
  box-shadow: 0 18px 40px rgba(11, 19, 32, 0.08);
}

.portal-auth-panel b {
  display: block;
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.25;
}

.portal-auth-panel p,
.portal-empty {
  margin: 6px 0 0;
  color: var(--muted-text);
  font-size: 0.9rem;
  line-height: 1.45;
}

.portal-auth-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.portal-user-pill button {
  border: 0;
  border-left: 1px solid rgba(15, 26, 43, 0.12);
  background: transparent;
  color: var(--gold);
  cursor: pointer;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 900;
  margin-left: 4px;
  padding: 2px 0 2px 12px;
  text-transform: uppercase;
}

.portal-main-panel {
  display: grid;
  gap: 16px;
  padding: 22px;
}

.portal-main-head,
.portal-section-heading,
.portal-action-band {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.portal-main-head h2 {
  font-size: clamp(2.35rem, 4vw, 5.1rem);
  line-height: 0.92;
}

.portal-main-head p {
  max-width: 610px;
  margin: 10px 0 0;
  font-size: 1rem;
}

.portal-status-badge {
  flex: 0 0 auto;
  max-width: 220px;
  padding: 10px 12px;
  border: 1px solid rgba(180, 124, 28, 0.34);
  border-radius: 8px;
  background: #fffaf1;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  text-align: center;
}

.portal-status-stack {
  display: grid;
  flex: 0 0 auto;
  justify-items: end;
  gap: 8px;
  width: min(230px, 100%);
}

.portal-status-stack .portal-status-badge {
  width: 100%;
  max-width: none;
}

.portal-action-status-badge {
  width: 100%;
  padding: 9px 12px;
  border: 1px solid rgba(15, 26, 43, 0.14);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  text-align: center;
}

.portal-action-status-badge[data-action-status-state="partner"] {
  border-color: rgba(15, 26, 43, 0.24);
  background: #eef4f8;
}

.portal-action-status-badge[data-action-status-state="honest-dose"] {
  border-color: rgba(180, 124, 28, 0.26);
  background: #fffaf1;
  color: var(--gold);
}

.portal-action-status-badge[data-action-status-state="complete"] {
  border-color: rgba(47, 119, 88, 0.24);
  background: #eef8f3;
  color: #27624a;
}

.portal-at-a-glance {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
}

.portal-at-a-glance div {
  min-width: 0;
  padding: 10px 12px;
  border: 1px solid rgba(15, 26, 43, 0.08);
  border-radius: 8px;
  background: #f8fbfd;
}

.portal-at-a-glance dt,
.portal-at-a-glance dd {
  margin: 0;
  overflow-wrap: anywhere;
}

.portal-at-a-glance dt {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.portal-at-a-glance dd {
  margin-top: 5px;
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 900;
  line-height: 1.22;
}

.portal-order-snapshot {
  align-self: start;
  margin: 4px 0 0;
  padding: 10px 12px;
  border: 1px solid rgba(15, 26, 43, 0.08);
  border-radius: 8px;
  background: #fff;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.portal-action-band {
  align-items: center;
  padding: 20px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  box-shadow: 0 20px 54px rgba(15, 26, 43, 0.2);
}

.portal-action-band span {
  display: block;
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.portal-action-band b {
  display: block;
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  overflow-wrap: anywhere;
}

.portal-action-band p {
  max-width: 620px;
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.94rem;
  overflow-wrap: anywhere;
}

.portal-order-state {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.portal-order-state article {
  min-width: 0;
  min-height: 118px;
  padding: 16px;
  border: 1px solid rgba(15, 26, 43, 0.08);
  border-radius: 8px;
  background: #fffdf9;
}

.portal-order-state span {
  display: block;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.portal-order-state b {
  display: block;
  margin-top: 6px;
  color: var(--ink);
  font-size: 1.12rem;
  line-height: 1.15;
}

.portal-order-state p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.portal-next-milestone {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(190px, 0.38fr);
  gap: 16px;
  align-items: start;
  padding: 18px 20px;
  border: 1px solid rgba(180, 124, 28, 0.2);
  border-radius: 8px;
  background: #fffaf1;
}

.portal-next-milestone h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.26rem;
  line-height: 1.12;
  overflow-wrap: anywhere;
}

.portal-next-milestone p:not(.portal-small-label) {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.portal-next-milestone dl {
  display: grid;
  gap: 8px;
  margin: 0;
}

.portal-next-milestone dl div {
  min-width: 0;
  padding: 10px 12px;
  border: 1px solid rgba(180, 124, 28, 0.18);
  border-radius: 8px;
  background: #fff;
}

.portal-next-milestone dt,
.portal-next-milestone dd {
  margin: 0;
  overflow-wrap: anywhere;
}

.portal-next-milestone dt {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.portal-next-milestone dd {
  margin-top: 4px;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1.25;
}

.portal-latest-update {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 0.42fr);
  gap: 16px;
  align-items: start;
  padding: 18px 20px;
  border: 1px solid rgba(15, 26, 43, 0.08);
  border-radius: 8px;
  background: #f8fbfd;
}

.portal-latest-update b {
  display: block;
  color: var(--ink);
  font-size: 1.16rem;
  line-height: 1.18;
  overflow-wrap: anywhere;
}

.portal-latest-update p:not(.portal-small-label) {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.portal-latest-update dl {
  display: grid;
  gap: 8px;
  margin: 0;
}

.portal-latest-update dl div {
  min-width: 0;
  padding: 10px 12px;
  border: 1px solid rgba(15, 26, 43, 0.08);
  border-radius: 8px;
  background: #fff;
}

.portal-latest-update dt,
.portal-latest-update dd {
  margin: 0;
  overflow-wrap: anywhere;
}

.portal-latest-update dt {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.portal-latest-update dd {
  margin-top: 4px;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1.25;
}

.portal-activity-summary {
  display: grid;
  gap: 14px;
  padding: 18px 20px;
  border: 1px solid rgba(15, 26, 43, 0.08);
  border-radius: 8px;
  background: #fff;
}

.portal-activity-summary h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.22rem;
  line-height: 1.05;
}

.portal-activity-summary dl {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
}

.portal-activity-summary dl div {
  min-width: 0;
  padding: 12px;
  border: 1px solid rgba(180, 124, 28, 0.18);
  border-radius: 8px;
  background: #f8fbfd;
}

.portal-activity-summary dt,
.portal-activity-summary dd {
  margin: 0;
  overflow-wrap: anywhere;
}

.portal-activity-summary dt {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.portal-activity-summary dd {
  margin-top: 5px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1.2;
}

.portal-primary-action,
.portal-secondary-action {
  min-height: 46px;
  border-radius: 8px;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 900;
  cursor: pointer;
}

.portal-action-controls {
  flex: 0 0 220px;
  display: grid;
  gap: 8px;
  justify-items: end;
  min-width: 0;
}

.portal-action-controls small {
  max-width: 260px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.35;
  text-align: right;
  overflow-wrap: anywhere;
}

.portal-action-controls .portal-action-feedback {
  color: rgba(255, 255, 255, 0.84);
}

.portal-action-feedback[data-feedback-tone="error"] {
  color: #f7c9bd;
}

.portal-action-feedback[data-feedback-tone="ready"] {
  color: #dce8d4;
}

.portal-primary-action {
  flex: 0 0 auto;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #fff;
  color: var(--ink);
}

.portal-action-controls .portal-primary-action {
  width: 100%;
}

.portal-secondary-action {
  width: 100%;
  border: 1px solid rgba(180, 124, 28, 0.36);
  background: #fff;
  color: var(--gold);
}

.portal-sample-packet-action {
  margin-top: 16px;
}

.portal-stage-card {
  padding: 20px;
  border: 1px solid rgba(15, 26, 43, 0.08);
  border-radius: 8px;
  background: #f9fbfd;
}

.portal-reference-card,
.portal-format-confirmation-card {
  padding: 18px 20px;
  border: 1px solid rgba(15, 26, 43, 0.08);
  border-radius: 8px;
  background: #fff;
}

.portal-section-heading {
  align-items: center;
  margin-bottom: 18px;
}

.portal-section-heading.compact {
  margin-bottom: 12px;
}

.portal-section-heading h3,
.portal-payment-card h3,
.portal-communication-card h3,
.portal-sample-status-card h3,
.portal-document-review-card h3,
.portal-shipping-card h3,
.portal-timeline-card h3 {
  font-size: clamp(1.7rem, 2vw, 2.3rem);
  line-height: 1;
}

.portal-section-heading > span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.portal-stage-meta {
  display: grid;
  gap: 4px;
  justify-items: end;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-align: right;
}

.portal-stage-meta span:first-child {
  color: var(--gold);
  text-transform: uppercase;
}

.portal-stage-guide {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(240px, 0.9fr);
  gap: 14px;
  margin: 0 0 20px;
  padding: 16px;
  border: 1px solid rgba(180, 124, 28, 0.18);
  border-radius: 8px;
  background: #fff;
}

.portal-stage-guide > div,
.portal-stage-guide dl div {
  min-width: 0;
}

.portal-stage-guide span,
.portal-stage-guide dt {
  display: block;
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.portal-stage-guide b {
  display: block;
  margin-top: 7px;
  color: var(--ink);
  font-size: 1.2rem;
  line-height: 1.05;
}

.portal-stage-guide p,
.portal-stage-guide dd {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.45;
  overflow-wrap: break-word;
}

.portal-stage-guide dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.portal-stage-guide dd {
  color: var(--ink);
}

.portal-format-confirmation-card p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.portal-reference-list,
.portal-format-confirmation-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
  margin: 0;
}

.portal-reference-list div,
.portal-format-confirmation-list div {
  min-width: 0;
  padding: 12px;
  border: 1px solid rgba(15, 26, 43, 0.08);
  border-radius: 8px;
  background: #f8fbfd;
}

.portal-reference-list dt,
.portal-reference-list dd,
.portal-format-confirmation-list dt,
.portal-format-confirmation-list dd {
  margin: 0;
  overflow-wrap: break-word;
  word-break: normal;
}

.portal-reference-list dt,
.portal-format-confirmation-list dt {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.portal-reference-list dd,
.portal-format-confirmation-list dd {
  margin-top: 6px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1.25;
}

.portal-stage-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(130px, 1fr));
  gap: 18px 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.portal-stage-list li {
  position: relative;
  display: grid;
  gap: 8px;
  min-width: 0;
  padding: 0 2px;
}

.portal-stage-list li::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 24px;
  right: -20px;
  height: 2px;
  background: rgba(15, 26, 43, 0.11);
}

.portal-stage-list li:last-child::before {
  content: none;
}

.portal-stage-list li:nth-child(3n)::before {
  content: none;
}

.portal-stage-list span {
  position: relative;
  z-index: 1;
  display: block;
  width: 24px;
  height: 24px;
  border: 2px solid rgba(15, 26, 43, 0.16);
  border-radius: 50%;
  background: #fff;
}

.portal-stage-list .is-done span,
.portal-stage-list .is-current span {
  border-color: var(--gold);
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(180, 124, 28, 0.12);
}

.portal-stage-list b {
  color: var(--ink);
  font-size: 0.82rem;
  line-height: 1.18;
}

.portal-stage-list em {
  color: var(--muted);
  font-size: 0.74rem;
  font-style: normal;
  font-weight: 800;
}

.portal-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.portal-detail-grid article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  min-width: 0;
  padding: 16px;
  border: 1px solid rgba(15, 26, 43, 0.08);
  border-radius: 8px;
  background: #fff;
}

.portal-detail-grid b {
  color: var(--ink);
  font-size: 0.98rem;
}

.portal-detail-grid p {
  margin: 5px 0 0;
  font-size: 0.88rem;
}

.portal-workstream-card {
  padding: 18px 20px;
  border: 1px solid rgba(15, 26, 43, 0.08);
  border-radius: 8px;
  background: #fff;
}

.portal-workstream-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.portal-workstream-grid article {
  display: grid;
  gap: 8px;
  min-width: 0;
  padding: 14px;
  border: 1px solid rgba(15, 26, 43, 0.08);
  border-radius: 8px;
  background: #f8fbfd;
}

.portal-workstream-grid article[data-workstream-state="current"] {
  border-color: rgba(180, 124, 28, 0.32);
  background: #fffaf1;
}

.portal-workstream-grid article[data-workstream-state="complete"] {
  background: #f4f8f0;
}

.portal-workstream-grid article[data-workstream-state="blocked"] {
  border-color: rgba(180, 124, 28, 0.28);
  background: #fff7ed;
}

.portal-workstream-grid span {
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.portal-workstream-grid b {
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.18;
  overflow-wrap: anywhere;
}

.portal-workstream-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.4;
}

.portal-workstream-grid small {
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.portal-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(180, 124, 28, 0.24);
  border-radius: 8px;
  background: #fffaf1;
  color: var(--gold);
}

.portal-icon::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  border: 2px solid currentColor;
}

.portal-icon-invoice::before {
  border-radius: 2px;
  box-shadow: inset 0 -6px 0 rgba(180, 124, 28, 0.2);
}

.portal-icon-label::before {
  border-radius: 50%;
}

.portal-icon-material::before {
  width: 16px;
  height: 20px;
  border-radius: 8px 8px 3px 3px;
  box-shadow: inset 0 -7px 0 rgba(180, 124, 28, 0.18);
}

.portal-icon-production::before {
  width: 20px;
  height: 12px;
  border-top-width: 7px;
}

.portal-icon-review::before {
  width: 19px;
  height: 16px;
  border-radius: 3px;
  box-shadow: 5px -5px 0 -3px currentColor;
}

.portal-icon-docs::before {
  width: 14px;
  height: 20px;
  border-radius: 2px;
}

.portal-icon-sample::before {
  width: 20px;
  height: 16px;
  border-radius: 3px;
}

.portal-icon-shipping::before {
  width: 22px;
  height: 13px;
  border-radius: 1px;
}

.portal-icon-completion::before {
  width: 19px;
  height: 19px;
  border-radius: 50%;
  box-shadow: inset 5px -5px 0 -3px currentColor;
}

.portal-side-panel {
  display: grid;
  align-content: start;
  gap: 18px;
}

.portal-payment-card,
.portal-communication-card,
.portal-support-card,
.portal-sample-status-card,
.portal-label-review-card,
.portal-shipping-card,
.portal-document-review-card,
.portal-timeline-card {
  padding: 20px;
}

.portal-payment-card p,
.portal-communication-card p,
.portal-support-card p,
.portal-sample-status-card p,
.portal-label-review-card p,
.portal-shipping-card p,
.portal-document-review-card p {
  margin: 10px 0 18px;
  font-size: 0.92rem;
}

.portal-sample-status-card,
.portal-communication-card,
.portal-support-card,
.portal-label-review-card,
.portal-shipping-card,
.portal-document-review-card {
  border: 1px solid rgba(15, 26, 43, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 60px rgba(15, 26, 43, 0.08);
}

.portal-payment-facts,
.portal-communication-facts,
.portal-support-facts,
.portal-sample-facts,
.portal-label-review-facts,
.portal-document-review-facts,
.portal-shipping-facts {
  display: grid;
  gap: 8px;
  margin: 0 0 16px;
}

.portal-sample-facts,
.portal-communication-facts,
.portal-support-facts,
.portal-label-review-facts,
.portal-document-review-facts,
.portal-shipping-facts {
  margin-bottom: 0;
}

.portal-payment-facts div,
.portal-communication-facts div,
.portal-support-facts div,
.portal-sample-facts div,
.portal-label-review-facts div,
.portal-document-review-facts div,
.portal-shipping-facts div {
  display: grid;
  grid-template-columns: minmax(86px, 0.55fr) minmax(0, 1fr);
  gap: 10px;
  align-items: baseline;
  min-width: 0;
  padding: 9px 10px;
  border: 1px solid rgba(15, 26, 43, 0.08);
  border-radius: 8px;
  background: #f8fbfd;
}

.portal-payment-facts dt,
.portal-payment-facts dd,
.portal-communication-facts dt,
.portal-communication-facts dd,
.portal-support-facts dt,
.portal-support-facts dd,
.portal-sample-facts dt,
.portal-sample-facts dd,
.portal-label-review-facts dt,
.portal-label-review-facts dd,
.portal-document-review-facts dt,
.portal-document-review-facts dd,
.portal-shipping-facts dt,
.portal-shipping-facts dd {
  margin: 0;
  overflow-wrap: anywhere;
}

.portal-payment-facts dt,
.portal-communication-facts dt,
.portal-support-facts dt,
.portal-sample-facts dt,
.portal-label-review-facts dt,
.portal-document-review-facts dt,
.portal-shipping-facts dt {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.portal-payment-facts dd,
.portal-communication-facts dd,
.portal-support-facts dd,
.portal-sample-facts dd,
.portal-label-review-facts dd,
.portal-document-review-facts dd,
.portal-shipping-facts dd {
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 900;
  line-height: 1.25;
  text-align: right;
}

.portal-timeline-card ul {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.portal-timeline-card li {
  position: relative;
  display: grid;
  gap: 4px;
  padding-left: 24px;
}

.portal-timeline-card li::before {
  content: "";
  position: absolute;
  top: 18px;
  bottom: -18px;
  left: 7px;
  width: 1px;
  background: rgba(15, 26, 43, 0.12);
}

.portal-timeline-card li:last-child::before {
  content: none;
}

.portal-timeline-card li span {
  position: absolute;
  top: 4px;
  left: 0;
  width: 15px;
  height: 15px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 1px rgba(180, 124, 28, 0.34);
}

.portal-timeline-card b {
  color: var(--ink);
  font-size: 0.92rem;
}

.portal-timeline-card time {
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.portal-timeline-card li em {
  color: var(--gold);
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.portal-timeline-card li[data-event-type="notification_sent"] span {
  background: var(--ink);
  box-shadow: 0 0 0 1px rgba(15, 26, 43, 0.24);
}

.portal-timeline-card p {
  margin: 0;
  font-size: 0.84rem;
}

.portal-doc-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.portal-doc-list li {
  padding-left: 0;
  color: var(--muted-text);
  font-size: 0.9rem;
  line-height: 1.45;
}

.portal-doc-list li::before {
  content: none;
}

.portal-document-summary,
.portal-timeline-summary {
  display: block;
  margin: -6px 0 10px;
  color: var(--muted-text);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.4;
}

.portal-document-tabs,
.portal-timeline-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 12px;
}

.portal-document-tabs button,
.portal-timeline-tabs button {
  min-height: 30px;
  border: 1px solid rgba(184, 128, 26, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--muted-text);
  cursor: pointer;
  font: inherit;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
  padding: 7px 10px;
}

.portal-document-tabs button[aria-pressed="true"],
.portal-timeline-tabs button[aria-pressed="true"] {
  border-color: rgba(180, 124, 28, 0.5);
  background: #fff7e8;
  color: var(--gold-deep);
}

.portal-doc-list button {
  display: grid;
  gap: 4px;
  width: 100%;
  border: 1px solid rgba(184, 128, 26, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 900;
  padding: 12px 14px;
  text-align: left;
}

.portal-doc-list button span,
.portal-doc-list button small {
  position: static;
  display: block;
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.portal-doc-list button small {
  color: var(--muted-text);
  font-size: 0.76rem;
  font-weight: 700;
}

.portal-doc-list button .portal-document-badge {
  display: inline-flex;
  width: fit-content;
  padding: 3px 7px;
  border: 1px solid rgba(180, 124, 28, 0.24);
  border-radius: 999px;
  background: #fffaf1;
  color: var(--gold-deep);
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 900;
  line-height: 1.2;
}

.portal-primary-action:disabled,
.portal-secondary-action:disabled,
.portal-doc-list button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

@media (max-width: 1180px) {
  .portal-layout {
    grid-template-columns: minmax(250px, 0.7fr) minmax(0, 1.5fr);
  }

  .portal-side-panel {
    grid-column: 1 / -1;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  }

}

@media (max-width: 860px) {
  .portal-shell-header {
    align-items: stretch;
    flex-direction: column;
    width: calc(100vw - 28px);
    max-width: 680px;
  }

  .portal-top-nav {
    justify-content: flex-start;
    width: 100%;
    gap: 12px;
    flex-wrap: wrap;
  }

  .portal-top-nav a {
    white-space: normal;
  }

  .portal-user-pill {
    width: 100%;
    overflow-wrap: anywhere;
  }

  .portal-user-pill b {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .portal-layout {
    grid-template-columns: 1fr;
    width: calc(100vw - 28px);
    max-width: 680px;
  }

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

  .portal-main-head,
  .portal-action-band,
  .portal-section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .portal-stage-meta {
    justify-items: start;
    text-align: left;
  }

  .portal-action-band {
    min-width: 0;
  }

  .portal-status-stack,
  .portal-status-badge,
  .portal-action-status-badge,
  .portal-action-controls,
  .portal-primary-action {
    width: 100%;
    max-width: none;
  }

  .portal-action-controls {
    justify-items: stretch;
    min-width: 0;
  }

  .portal-action-controls small {
    max-width: none;
    text-align: left;
  }

  .portal-action-band > div,
  .portal-action-band b,
  .portal-action-band p {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .portal-detail-grid,
  .portal-workstream-grid {
    grid-template-columns: 1fr;
  }

  .portal-order-state {
    grid-template-columns: 1fr;
  }

  .portal-at-a-glance {
    grid-template-columns: 1fr;
  }

  .portal-latest-update {
    grid-template-columns: 1fr;
  }

  .portal-next-milestone {
    grid-template-columns: 1fr;
  }

  .portal-activity-summary dl {
    grid-template-columns: 1fr;
  }

  .portal-stage-guide {
    grid-template-columns: 1fr;
  }

  .portal-reference-list {
    grid-template-columns: 1fr;
  }

  .portal-stage-list {
    grid-template-columns: 1fr;
  }

  .portal-stage-list li {
    grid-template-columns: 24px 1fr;
    column-gap: 12px;
  }

  .portal-stage-list li::before {
    top: 24px;
    bottom: -18px;
    left: 11px;
    right: auto;
    width: 2px;
    height: auto;
  }

  .portal-stage-list li:nth-child(3n)::before {
    content: "";
  }

  .portal-stage-list li:last-child::before {
    content: none;
  }

  .portal-stage-list b,
  .portal-stage-list em {
    grid-column: 2;
  }

  .portal-stage-list span {
    grid-row: 1 / span 2;
  }
}

@media (max-width: 520px) {
  .portal-project-rail,
  .portal-main-panel,
  .portal-payment-card,
  .portal-communication-card,
  .portal-timeline-card {
    padding: 16px;
  }

  .portal-project-rail h1 {
    font-size: 2.55rem;
  }

  .portal-main-head h2 {
    font-size: 2.6rem;
  }

  .portal-action-band b {
    max-width: 260px;
    font-size: 1.08rem;
    line-height: 1.22;
  }

  .portal-mini-card {
    grid-template-columns: 1fr;
  }
}
