:root {
  --black: #050505;
  --ink: #111111;
  --ink-soft: #6c6c69;
  --navy: #050505;
  --navy-2: #050505;
  --teal: #f25b43;
  --teal-bright: #f25b43;
  --mint: #91d7e8;
  --mint-soft: #eef9fc;
  --cream: #f6f5f2;
  --paper: #ffffff;
  --line: #d8d7d2;
  --line-dark: #c9c8c3;
  --dark-line: #2d2d2d;
  --amber: #d94530;
  --amber-soft: #fff0ed;
  --red: #ad413d;
  --red-soft: #fce9e6;
  --green: #2f7a62;
  --green-soft: #e5f3eb;
  --blue: #257083;
  --blue-soft: #e7f7fb;
  --shadow: none;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "SF Pro Display",
    "Helvetica Neue", Arial, sans-serif;
  --brand-sans: "DM Sans", ui-sans-serif, sans-serif;
  --page-pad: clamp(20px, 5vw, 72px);
  --section-space: clamp(88px, 11vw, 156px);
  --max-width: 1440px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 14px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

body.drawer-open {
  overflow: hidden;
}

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

button,
a,
select {
  -webkit-tap-highlight-color: transparent;
}

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

button {
  cursor: pointer;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  min-height: 76px;
  padding: 0 max(28px, calc((100vw - 1320px) / 2));
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  color: white;
  background: rgba(13, 44, 37, 0.97);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 11px;
  font-family: var(--serif);
  font-size: 23px;
}

.brand > span:last-child {
  display: grid;
  gap: 1px;
}

.brand strong {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 600;
  line-height: 1;
}

.brand small {
  color: #9ec4bc;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.topbar nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: #c7ded8;
  font-size: 12px;
  font-weight: 700;
}

.topbar nav a {
  transition: color 150ms ease;
}

.topbar nav a:hover {
  color: white;
}

.source-date {
  justify-self: end;
  padding: 7px 11px;
  color: #a8c8c1;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.topbar-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
}

.topbar-cta {
  min-height: 38px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-2);
  background: var(--cream);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 850;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

main {
  overflow: hidden;
}

section,
.hero {
  scroll-margin-top: 78px;
}

.hero {
  color: white;
  background:
    linear-gradient(90deg, rgba(13, 44, 37, 0.98), rgba(13, 44, 37, 0.92)),
    radial-gradient(circle at 78% 40%, rgba(45, 122, 99, 0.88), transparent 26rem);
}

.hero-grid {
  width: min(1320px, calc(100% - 56px));
  margin: 0 auto;
  min-height: 610px;
  padding: 88px 0 74px;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(360px, 0.6fr);
  align-items: center;
  gap: 90px;
}

.eyebrow {
  color: var(--teal);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: #78c8ba;
}

.hero h1 {
  max-width: 870px;
  margin-top: 16px;
  font-family: var(--serif);
  font-size: clamp(54px, 6vw, 88px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.94;
}

.hero-lede {
  max-width: 720px;
  margin-top: 28px;
  color: #bed6d1;
  font-size: 17px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 38px;
}

.button {
  min-height: 44px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 10px;
  font-weight: 800;
  transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  color: white;
  background: var(--navy);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
}

.hero .button.primary,
.bottom-cta .button.primary {
  color: var(--navy-2);
  background: var(--cream);
}

.button.secondary {
  color: white;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.22);
}

.section .button.secondary {
  color: var(--ink);
  background: var(--paper);
  border-color: var(--line-dark);
}

.button.compact {
  min-height: 38px;
  padding: 0 14px;
  font-size: 11px;
}

.hero-proof {
  position: relative;
  padding: 34px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 22px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

.hero-proof::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  top: -90px;
  right: -70px;
  background: rgba(70, 207, 187, 0.17);
  border-radius: 50%;
}

.proof-label {
  color: #94beb5;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.proof-number {
  margin-top: 18px;
  font-family: var(--serif);
  font-size: clamp(66px, 7vw, 92px);
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.hero-proof > p {
  max-width: 290px;
  margin-top: 16px;
  color: #b8d3cd;
  font-size: 13px;
  line-height: 1.6;
}

.proof-divider {
  height: 1px;
  margin: 27px 0 17px;
  background: rgba(255, 255, 255, 0.14);
}

.proof-row {
  padding: 10px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #b8d3cd;
  font-size: 12px;
}

.proof-row strong {
  color: white;
  font-size: 16px;
}

.freshness-note {
  width: min(1320px, calc(100% - 56px));
  min-height: 50px;
  margin: 0 auto;
  padding: 13px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #a8cbc3;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  font-size: 12px;
}

.freshness-note strong,
.freshness-note span:last-child {
  color: white;
}

.pulse {
  width: 7px;
  height: 7px;
  margin-right: 2px;
  background: #4fd0ba;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(79, 208, 186, 0.12);
}

.section {
  width: min(1320px, calc(100% - 56px));
  margin: 0 auto;
  padding: 94px 0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
}

.section-heading h2,
.methodology-section h2,
.decision-copy h2 {
  margin-top: 10px;
  font-family: var(--serif);
  font-size: clamp(37px, 4vw, 53px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.section-heading > p {
  max-width: 460px;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.65;
}

.specialty-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 42px;
}

.specialty-card {
  min-height: 240px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(30, 60, 53, 0.04);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

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

.specialty-card .card-index {
  color: #8b9a95;
  font-family: var(--serif);
  font-size: 15px;
}

.specialty-card h3 {
  margin-top: 28px;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 600;
}

.specialty-card .specialty-count {
  margin-top: auto;
  padding-top: 28px;
  font-family: var(--serif);
  font-size: 43px;
  letter-spacing: -0.05em;
}

.specialty-card p {
  margin-top: 5px;
  color: var(--ink-soft);
  font-size: 11px;
  line-height: 1.5;
}

.specialty-card[data-specialty="Oncology"] {
  border-top: 4px solid #1e8075;
}

.specialty-card[data-specialty="Rheumatology"] {
  border-top: 4px solid #96764a;
}

.specialty-card[data-specialty="Urology"] {
  border-top: 4px solid #4e6e91;
}

.specialty-card[data-specialty="Neurology"] {
  border-top: 4px solid #775f9d;
}

.decision-section {
  width: 100%;
  max-width: none;
  padding: 88px max(28px, calc((100vw - 1320px) / 2));
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(370px, 0.75fr);
  gap: 90px;
  color: white;
  background:
    radial-gradient(circle at 20% 110%, rgba(35, 157, 143, 0.28), transparent 32rem),
    var(--navy);
}

.decision-copy > p:not(.eyebrow) {
  max-width: 720px;
  margin-top: 20px;
  color: #abcac3;
  font-size: 15px;
  line-height: 1.7;
}

.logic-flow {
  margin-top: 44px;
  display: grid;
  grid-template-columns: 1fr 50px 1fr 50px 1fr;
  align-items: center;
}

.logic-flow > div {
  min-height: 135px;
  padding: 18px;
  display: grid;
  align-content: start;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 13px;
}

.logic-flow span {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--teal);
  border-radius: 8px;
  font-size: 11px;
  font-weight: 850;
}

.logic-flow strong {
  margin-top: 6px;
  font-size: 13px;
}

.logic-flow small {
  color: #91b3ac;
  font-size: 10px;
  line-height: 1.45;
}

.logic-flow > i {
  height: 1px;
  background: rgba(255, 255, 255, 0.23);
}

.decision-card {
  padding: 25px;
  color: var(--ink);
  background: var(--paper);
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.21);
}

.decision-card-head {
  padding-bottom: 18px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  font-weight: 850;
}

.decision-card-head strong {
  color: var(--red);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.decision-card label {
  margin-top: 17px;
  display: grid;
  gap: 7px;
  color: #63726d;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.decision-card select,
.small-select select {
  width: 100%;
  height: 42px;
  padding: 0 35px 0 12px;
  color: var(--ink);
  background: white;
  border: 1px solid var(--line-dark);
  border-radius: 9px;
  outline: none;
  text-transform: none;
}

.decision-card select:focus,
.small-select select:focus,
.search-field input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(8, 123, 116, 0.1);
}

.decision-result {
  margin-top: 20px;
  padding: 16px;
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 13px;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.result-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background: #edf1ef;
  border-radius: 10px;
  font-weight: 900;
}

.decision-result small {
  color: #788680;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.decision-result strong {
  margin-top: 3px;
  display: block;
  font-size: 15px;
}

.decision-result p {
  margin-top: 5px;
  color: var(--ink-soft);
  font-size: 11px;
  line-height: 1.45;
}

.decision-result.eligible {
  background: var(--green-soft);
  border-color: #b9dccb;
}

.decision-result.eligible .result-icon {
  color: var(--green);
  background: white;
}

.decision-result.excluded {
  background: var(--red-soft);
  border-color: #edc0bb;
}

.decision-result.excluded .result-icon {
  color: var(--red);
  background: white;
}

.section-intro {
  max-width: 820px;
  margin-top: 20px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.7;
}

.priority-heading {
  align-items: center;
}

.filter-bar {
  margin-top: 30px;
  padding: 13px;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto 180px;
  align-items: end;
  gap: 15px;
  background: #ebece7;
  border: 1px solid #dfe3de;
  border-radius: 13px;
}

.search-field,
.small-select {
  display: grid;
  gap: 6px;
  color: #68766f;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.search-field input {
  width: 100%;
  height: 42px;
  padding: 0 13px;
  background: white;
  border: 1px solid var(--line-dark);
  border-radius: 9px;
  outline: none;
}

.chip-group {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.chip {
  height: 34px;
  padding: 0 11px;
  color: #5a6b65;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid #d1d9d5;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
}

.chip.active {
  color: white;
  background: var(--navy-2);
  border-color: var(--navy-2);
}

.table-shell {
  margin-top: 14px;
  max-width: 100%;
  contain: paint;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.data-table th {
  height: 43px;
  padding: 0 15px;
  color: #78867f;
  background: #f3f4f0;
  border-bottom: 1px solid var(--line);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-align: left;
  text-transform: uppercase;
}

.priority-table th:nth-child(1) {
  width: 20%;
}

.priority-table th:nth-child(2) {
  width: 14%;
}

.priority-table th:nth-child(3) {
  width: 18%;
}

.priority-table th:nth-child(4) {
  width: 13%;
}

.priority-table th:nth-child(5) {
  width: 15%;
}

.priority-table th:nth-child(6) {
  width: 14%;
}

.priority-table th:nth-child(7) {
  width: 6%;
}

.all-products-table th:nth-child(1) {
  width: 22%;
}

.all-products-table th:nth-child(2) {
  width: 16%;
}

.all-products-table th:nth-child(3) {
  width: 18%;
}

.all-products-table th:nth-child(4) {
  width: 22%;
}

.all-products-table th:nth-child(5) {
  width: 14%;
}

.all-products-table th:nth-child(6) {
  width: 8%;
}

.data-table td {
  min-height: 68px;
  padding: 15px;
  border-bottom: 1px solid #e8ece9;
  vertical-align: middle;
}

.data-table tr:last-child td {
  border-bottom: 0;
}

.data-table tbody tr {
  transition: background 130ms ease;
}

.data-table tbody tr:hover {
  background: var(--mint-soft);
}

.drug-cell {
  display: grid;
  grid-template-columns: 29px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}

.rank {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  color: #64736d;
  background: #eef0ed;
  border-radius: 8px;
  font-size: 10px;
  font-weight: 850;
}

.drug-cell strong {
  display: block;
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.2;
}

.drug-cell small,
.cell-subtle {
  margin-top: 4px;
  display: block;
  color: #7b8883;
  font-size: 10px;
  line-height: 1.35;
}

.tag-list {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}

.tag {
  padding: 5px 7px;
  color: #4d625c;
  background: #edf2ef;
  border-radius: 6px;
  font-size: 9px;
  font-weight: 800;
}

.ndc-chip-list {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}

.ndc-chip,
.ndc-more {
  padding: 5px 7px;
  color: var(--navy);
  background: var(--mint-soft);
  border: 1px solid #d8e8e0;
  border-radius: 6px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 9px;
  font-weight: 800;
}

.ndc-more {
  color: #6b7772;
  background: #f1f3ef;
}

.ndc-confidence {
  width: fit-content;
  padding: 5px 7px;
  color: var(--green);
  background: var(--green-soft);
  border: 1px solid #cfe4d8;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 850;
  white-space: nowrap;
}

.money-cell strong {
  display: block;
  font-size: 14px;
}

.money-cell small {
  margin-top: 3px;
  display: block;
  color: #7b8883;
  font-size: 9px;
}

.status-pill {
  width: fit-content;
  padding: 5px 8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 850;
}

.status-pill::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.status-pill.active {
  color: var(--amber);
  background: var(--amber-soft);
}

.status-pill.active::before {
  background: var(--amber);
}

.status-pill.none {
  color: var(--green);
  background: var(--green-soft);
}

.status-pill.none::before {
  background: var(--green);
}

.status-pill.historical {
  color: var(--blue);
  background: var(--blue-soft);
}

.status-pill.historical::before {
  background: var(--blue);
}

.eligibility-label {
  font-size: 10px;
  font-weight: 850;
}

.eligibility-label.conditional {
  color: var(--amber);
}

.eligibility-label.clear {
  color: var(--green);
}

.open-row {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--teal);
  background: transparent;
  border: 1px solid var(--line-dark);
  border-radius: 9px;
  font-size: 19px;
  line-height: 1;
}

.open-row:hover {
  color: white;
  background: var(--teal);
  border-color: var(--teal);
}

.empty-state {
  padding: 50px 20px;
  color: var(--ink-soft);
  text-align: center;
}

.table-footer {
  padding: 12px 2px 0;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  color: #74817c;
  font-size: 10px;
}

.all-products-section {
  padding-top: 70px;
}

.all-products-filters {
  grid-template-columns: minmax(260px, 1fr) auto 180px 190px;
}

.all-products-footer {
  align-items: center;
}

.compact-pager {
  margin-top: 0;
  justify-content: flex-end;
}

.all-designation-stack {
  display: grid;
  gap: 4px;
}

.all-designation-stack strong {
  font-size: 14px;
}

.priority-mini {
  color: var(--teal);
  font-size: 10px;
  font-weight: 850;
}

.patient-mix-section {
  padding-top: 70px;
}

.mix-panel {
  margin-top: 34px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(330px, 0.9fr);
  gap: 14px;
}

.mix-formula {
  min-height: 300px;
  padding: 30px;
  display: grid;
  align-content: space-between;
  background:
    radial-gradient(circle at 100% 0%, rgba(25, 160, 146, 0.12), transparent 17rem),
    var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(30, 60, 53, 0.04);
}

.formula-kicker {
  width: fit-content;
  padding: 6px 9px;
  color: var(--teal);
  background: var(--mint-soft);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.mix-formula h3 {
  margin-top: 18px;
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 50px);
  font-weight: 500;
  letter-spacing: -0.04em;
}

.formula-line {
  margin-top: 35px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
  gap: 10px;
}

.formula-line > div {
  min-height: 118px;
  padding: 17px;
  display: grid;
  align-content: space-between;
  background: #f1f4f0;
  border: 1px solid #dce5df;
  border-radius: 12px;
}

.formula-line > span {
  width: 44px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--navy-2);
  border-radius: 12px;
  font-family: var(--serif);
  font-size: 26px;
}

.formula-line strong {
  font-size: 14px;
  line-height: 1.35;
}

.formula-line small {
  margin-top: 12px;
  color: #75837e;
  font-size: 10px;
  line-height: 1.5;
}

.mix-requirements {
  display: grid;
  gap: 10px;
}

.mix-requirements article {
  min-height: 93px;
  padding: 18px;
  display: grid;
  grid-template-columns: 35px 1fr;
  gap: 11px 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.mix-requirements span {
  grid-row: span 2;
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  color: var(--teal);
  background: var(--mint-soft);
  border-radius: 9px;
  font-size: 10px;
  font-weight: 850;
}

.mix-requirements strong {
  align-self: end;
  font-size: 14px;
}

.mix-requirements p {
  color: var(--ink-soft);
  font-size: 11px;
  line-height: 1.55;
}

.mix-note {
  margin-top: 14px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: #5f6e69;
  background: #edf1ee;
  border: 1px solid #dbe4de;
  border-radius: 14px;
  font-size: 12px;
  line-height: 1.65;
}

.mix-note strong {
  color: var(--ink);
}

.explorer-section {
  width: 100%;
  max-width: none;
  padding-right: max(28px, calc((100vw - 1320px) / 2));
  padding-left: max(28px, calc((100vw - 1320px) / 2));
  background: #ecefeab8;
  border-top: 1px solid #e2e7e2;
  border-bottom: 1px solid #e2e7e2;
}

.explorer-filters {
  background: rgba(255, 255, 255, 0.55);
}

.record-list {
  margin-top: 15px;
  display: grid;
  gap: 8px;
}

.record-card {
  padding: 19px 20px;
  display: grid;
  grid-template-columns: minmax(180px, 0.8fr) minmax(300px, 1.7fr) minmax(150px, 0.55fr);
  gap: 30px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.record-card h3 {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 600;
}

.record-card .trade-name {
  margin-top: 4px;
  color: #75837e;
  font-size: 10px;
}

.record-card .designation-text {
  color: #364842;
  font-size: 12px;
  line-height: 1.55;
}

.record-meta {
  display: grid;
  justify-items: start;
  align-content: start;
  gap: 6px;
  color: #71807a;
  font-size: 9px;
}

.approval-badge {
  padding: 4px 7px;
  color: var(--green);
  background: var(--green-soft);
  border-radius: 5px;
  font-weight: 850;
}

.approval-badge.designated {
  color: var(--amber);
  background: var(--amber-soft);
}

.pager {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: #64736d;
  font-size: 11px;
}

.pager-button {
  height: 35px;
  padding: 0 13px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  font-size: 10px;
  font-weight: 800;
}

.pager-button:disabled {
  cursor: default;
  opacity: 0.45;
}

.methodology-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.65fr) minmax(0, 1.35fr);
  gap: 80px;
}

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

.method-grid article {
  min-height: 260px;
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.method-grid article > span {
  color: var(--teal);
  font-family: var(--serif);
  font-size: 14px;
}

.method-grid h3 {
  margin-top: 34px;
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.15;
}

.method-grid p {
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 11px;
  line-height: 1.7;
}

.sources-section {
  padding-top: 50px;
}

.source-list {
  margin-top: 35px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.source-item {
  padding: 20px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.source-item strong {
  font-family: var(--serif);
  font-size: 16px;
}

.source-item p {
  margin-top: 6px;
  color: var(--ink-soft);
  font-size: 10px;
  line-height: 1.5;
}

.source-item span {
  color: #7a8882;
  font-size: 9px;
  text-align: right;
}

.source-item:hover {
  border-color: #9fc5bc;
}

.disclaimer {
  margin-top: 22px;
  padding: 17px 20px;
  color: #6c7974;
  background: #edeee9;
  border-left: 3px solid #8d9a95;
  font-size: 10px;
  line-height: 1.6;
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(4, 24, 27, 0.55);
  backdrop-filter: blur(3px);
}

.drug-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 70;
  width: min(640px, 92vw);
  padding: 34px;
  overflow: auto;
  background: var(--paper);
  box-shadow: -25px 0 70px rgba(4, 24, 27, 0.2);
  transform: translateX(104%);
  transition: transform 230ms ease;
}

.drug-drawer.open {
  transform: translateX(0);
}

.drawer-close {
  position: absolute;
  top: 18px;
  right: 20px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: #59706a;
  background: #eef1ee;
  border: 0;
  border-radius: 10px;
  font-size: 22px;
}

.drawer-kicker {
  color: var(--teal);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.drug-drawer h2 {
  margin-top: 12px;
  padding-right: 42px;
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.drawer-generic {
  margin-top: 7px;
  color: #64736d;
  font-size: 12px;
}

.drawer-summary {
  margin-top: 24px;
  padding: 17px;
  background: var(--mint-soft);
  border-radius: 12px;
  font-size: 12px;
  line-height: 1.6;
}

.drawer-stats {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.drawer-stats > div {
  min-height: 82px;
  padding: 13px;
  display: grid;
  align-content: space-between;
  background: #f1f2ee;
  border-radius: 10px;
}

.drawer-stats small {
  color: #798680;
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.drawer-stats strong {
  font-size: 14px;
}

.impact-overview {
  margin-top: 14px;
  padding: 14px 16px;
  color: #5e6d68;
  background: #edf1ee;
  border: 1px solid #dce5df;
  border-radius: 10px;
  font-size: 11px;
  line-height: 1.6;
}

.impact-overview strong {
  color: var(--ink);
}

.drawer-section {
  margin-top: 32px;
}

.drawer-section h3 {
  padding-bottom: 10px;
  font-family: var(--serif);
  font-size: 21px;
  border-bottom: 1px solid var(--line);
}

.patient-share-explainer {
  margin-top: 12px;
  padding: 13px 15px;
  color: #60706a;
  background: var(--mint-soft);
  border: 1px solid #d4e9e1;
  border-radius: 10px;
  font-size: 10px;
  line-height: 1.6;
}

.patient-share-explainer strong {
  color: var(--ink);
}

.ndc-list {
  margin-top: 10px;
  display: grid;
  gap: 8px;
}

.ndc-item {
  padding: 14px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.ndc-item > div:first-child {
  display: grid;
  gap: 4px;
}

.ndc-item strong {
  color: var(--navy);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 13px;
}

.ndc-item small {
  color: #6f7d78;
  font-size: 10px;
  line-height: 1.4;
}

.ndc-item p {
  margin-top: 9px;
  color: var(--ink-soft);
  font-size: 10px;
  line-height: 1.55;
}

.ndc-meta {
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 7px;
  flex-wrap: wrap;
  color: #7a8782;
  font-size: 9px;
}

.designation-list {
  margin-top: 8px;
  display: grid;
  gap: 8px;
}

.designation-item {
  padding: 15px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.designation-item > p {
  font-size: 12px;
  line-height: 1.55;
}

.designation-meta {
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  color: #7a8782;
  font-size: 9px;
}

.patient-share-row {
  margin-top: 10px;
  padding: 9px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: #788680;
  background: #f3f5f2;
  border: 1px solid #e1e7e2;
  border-radius: 8px;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.patient-share-row strong {
  color: var(--teal);
  font-size: 9px;
}

.impact-spend-row {
  margin-top: 6px;
  padding: 9px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: #7a6548;
  background: var(--amber-soft);
  border: 1px solid #f0d7af;
  border-radius: 8px;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.impact-spend-row strong {
  color: var(--amber);
  font-size: 9px;
}

.impact-rationale {
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: 10px;
  line-height: 1.55;
}

.confidence-pill {
  padding: 4px 7px;
  border-radius: 5px;
  font-weight: 850;
}

.confidence-pill.high {
  color: var(--green);
  background: var(--green-soft);
}

.confidence-pill.medium {
  color: var(--blue);
  background: var(--blue-soft);
}

.confidence-pill.low {
  color: var(--amber);
  background: var(--amber-soft);
}

.designation-item details {
  margin-top: 10px;
}

.designation-item summary {
  color: var(--teal);
  cursor: pointer;
  font-size: 10px;
  font-weight: 800;
}

.designation-item details p {
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: 10px;
  line-height: 1.55;
}

.drawer-warning {
  margin-top: 22px;
  padding: 15px;
  color: #7c541f;
  background: var(--amber-soft);
  border: 1px solid #efd6ab;
  border-radius: 10px;
  font-size: 10px;
  line-height: 1.55;
}

.bottom-cta {
  width: 100%;
  padding: 92px max(28px, calc((100vw - 1320px) / 2));
  color: white;
  background:
    radial-gradient(circle at 18% 0%, rgba(45, 122, 99, 0.34), transparent 30rem),
    linear-gradient(135deg, var(--navy-2), var(--navy));
}

.bottom-cta-card {
  max-width: 980px;
}

.bottom-cta h2 {
  margin-top: 13px;
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.bottom-cta p:not(.eyebrow) {
  max-width: 720px;
  margin-top: 22px;
  color: #bdd7d0;
  font-size: 15px;
  line-height: 1.7;
}

.bottom-cta-actions {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.route-link {
  min-height: 44px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  color: #d7ebe6;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.legal-disclaimer {
  width: 100%;
  padding: 58px max(28px, calc((100vw - 1320px) / 2));
  color: #aaa9a5;
  background: #0b0b0a;
  border-top: 1px solid #333331;
}

.legal-disclaimer-inner {
  max-width: 1180px;
}

.legal-kicker {
  color: var(--teal);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legal-disclaimer h2 {
  margin-top: 9px;
  color: #ffffff;
  font-family: var(--sans);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 650;
  letter-spacing: -0.025em;
}

.legal-disclaimer-copy {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 34px;
}

.legal-disclaimer-copy p {
  color: #92928f;
  font-size: 10px;
  line-height: 1.75;
}

.legal-review-note {
  margin-top: 24px;
  padding-top: 18px;
  color: #d5d4cf;
  border-top: 1px solid #333331;
  font-size: 10px;
  font-weight: 750;
  line-height: 1.6;
}

footer {
  min-height: 170px;
  padding: 40px max(28px, calc((100vw - 1320px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: white;
  background: var(--navy);
}

.footer-brand {
  color: white;
}

footer p {
  color: #8fb2aa;
  font-size: 10px;
}

.footer-copy {
  display: grid;
  justify-items: end;
  gap: 6px;
  text-align: right;
}

.footer-copy small {
  color: #6f9991;
  font-size: 9px;
}

/* Homepage-aligned Varick skin */
.topbar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  min-height: 0;
  height: 78px;
  width: 100%;
  padding: 0 var(--page-pad);
  background: rgba(5, 5, 5, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: none;
}

.brand {
  gap: 9px;
}

.brand-mark {
  width: 27px;
  height: 27px;
  border: 0;
  border-radius: 0;
  object-fit: contain;
}

.brand strong {
  font-family: var(--brand-sans);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0;
}

.brand small {
  color: #8f8f8c;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.topbar nav {
  gap: 32px;
  color: var(--white, #ffffff);
  font-size: 13px;
  font-weight: 600;
}

.topbar nav a:hover,
.topbar nav a:focus-visible,
.topbar-cta:hover,
.topbar-cta:focus-visible {
  color: var(--teal);
}

.topbar-actions {
  gap: 18px;
}

.source-date {
  color: #8f8f8c;
  background: #111110;
  border-color: var(--dark-line);
  border-radius: 4px;
}

.topbar-cta {
  min-height: auto;
  padding: 0;
  color: #ffffff;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  font-size: 13px;
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: min(900px, 94svh);
  color: #ffffff;
  background: var(--black);
  overflow: hidden;
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image: url("./assets/varick-telehealth-source.jpg");
  background-position: 58% center;
  background-size: cover;
  filter: saturate(0.55) contrast(1.12) brightness(0.62);
  transform: scale(1.01);
  content: "";
}

.hero::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #050505 0%, rgba(5, 5, 5, 0.96) 30%, rgba(5, 5, 5, 0.64) 62%, rgba(5, 5, 5, 0.25) 100%),
    linear-gradient(0deg, rgba(5, 5, 5, 0.72) 0%, transparent 46%);
  content: "";
}

.hero-grid,
.freshness-note {
  position: relative;
  z-index: 2;
}

.hero-grid {
  width: min(100%, var(--max-width));
  min-height: min(900px, 94svh);
  padding: 128px var(--page-pad) 116px;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.55fr);
  gap: clamp(56px, 8vw, 128px);
}

.eyebrow {
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.eyebrow.light {
  color: var(--teal);
}

.hero h1,
.section-heading h2,
.methodology-section h2,
.decision-copy h2,
.mix-formula h3,
.bottom-cta h2 {
  font-family: var(--sans);
  font-weight: 540;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 870px;
  margin-top: 22px;
  font-size: clamp(60px, 6.6vw, 102px);
  line-height: 0.94;
}

.hero-lede {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.55;
}

.hero-actions {
  gap: 26px;
}

.button {
  min-height: 52px;
  padding: 0 22px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 750;
  gap: 12px;
}

.button.primary,
.hero .button.primary,
.bottom-cta .button.primary {
  color: var(--black);
  background: #ffffff;
  box-shadow: none;
}

.button.primary:hover,
.button.primary:focus-visible,
.hero .button.primary:hover,
.hero .button.primary:focus-visible,
.bottom-cta .button.primary:hover,
.bottom-cta .button.primary:focus-visible {
  background: var(--teal);
  color: var(--black);
}

.button.secondary,
.section .button.secondary {
  color: var(--ink);
  background: transparent;
  border-color: var(--line-dark);
}

.hero .button.secondary,
.bottom-cta .button.secondary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.42);
}

.hero .button.secondary:hover,
.bottom-cta .button.secondary:hover {
  color: var(--teal);
  border-color: var(--teal);
}

.hero-proof {
  padding: 30px;
  background: rgba(17, 17, 16, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: none;
  backdrop-filter: blur(10px);
}

.hero-proof::after {
  display: none;
}

.proof-label {
  color: var(--teal);
}

.proof-number {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.proof-row,
.hero-proof > p {
  color: #9b9b98;
}

.freshness-note {
  width: min(100%, var(--max-width));
  padding: 16px var(--page-pad) 22px;
  color: #9b9b98;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.pulse {
  background: var(--teal);
  box-shadow: 0 0 0 5px rgba(242, 91, 67, 0.16);
}

.section {
  width: min(100%, var(--max-width));
  padding: var(--section-space) var(--page-pad);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.55fr);
  align-items: end;
  gap: clamp(60px, 10vw, 160px);
}

.section-heading h2,
.methodology-section h2,
.decision-copy h2 {
  font-size: clamp(42px, 5vw, 76px);
  line-height: 1.02;
}

.section-heading > p {
  color: var(--muted, #6c6c69);
  font-size: 17px;
  line-height: 1.6;
}

.specialty-card,
.method-grid article,
.source-item,
.mix-formula,
.mix-requirements article,
.table-shell,
.record-card {
  border-radius: 8px;
  box-shadow: none;
}

.specialty-card {
  min-height: 320px;
  background: transparent;
  border: 0;
  border-top: 1px solid var(--ink);
}

.specialty-card:hover {
  transform: none;
  box-shadow: none;
}

.specialty-card[data-specialty] {
  border-top: 1px solid var(--ink);
}

.specialty-card h3,
.method-grid h3,
.source-item strong,
.drug-cell strong {
  font-family: var(--sans);
}

.specialty-card h3 {
  font-size: 21px;
  font-weight: 700;
}

.specialty-card .specialty-count {
  color: var(--teal);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.decision-section,
.explorer-section,
.bottom-cta,
footer {
  background: var(--black);
  color: #ffffff;
}

.decision-section {
  padding: var(--section-space) var(--page-pad);
  border-top: 1px solid var(--dark-line);
  border-bottom: 1px solid var(--dark-line);
}

.decision-copy > p:not(.eyebrow),
.bottom-cta p:not(.eyebrow) {
  color: #9b9b98;
}

.logic-flow > div,
.decision-card,
.single-dark-card {
  background: #111110;
  border: 1px solid #373735;
  border-radius: 8px;
}

.logic-flow span {
  color: var(--black);
  background: var(--teal);
  border-radius: 4px;
}

.logic-flow small {
  color: #8f8f8c;
}

.decision-card {
  color: #ffffff;
  box-shadow: none;
}

.decision-card-head {
  border-bottom-color: #30302e;
}

.decision-card label {
  color: #858582;
}

.decision-card select,
.small-select select,
.search-field input {
  color: #ffffff;
  background: #191918;
  border-color: #3d3d3b;
  border-radius: 4px;
}

#priority,
.patient-mix-section,
.methodology-section,
.sources-section,
.specialty-section {
  background: var(--cream);
}

.filter-bar {
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.chip {
  border-radius: 4px;
}

.chip.active {
  color: var(--black);
  background: var(--teal);
  border-color: var(--teal);
}

.table-shell {
  border-color: var(--line);
  border-radius: 8px;
}

.data-table th {
  color: #8f8f8c;
  background: #111110;
  border-bottom-color: #30302e;
}

.data-table tbody tr:hover {
  background: #fbfaf7;
}

.rank,
.tag,
.ndc-chip,
.ndc-more {
  border-radius: 4px;
}

.tag {
  color: var(--ink);
  background: #ebe9e4;
}

.ndc-chip,
.ndc-item strong,
.open-row,
.drawer-kicker,
.designation-item summary,
.patient-share-row strong {
  color: var(--teal);
}

.open-row:hover {
  color: var(--black);
  background: var(--teal);
  border-color: var(--teal);
}

.mix-formula,
.mix-requirements article,
.method-grid article,
.source-item {
  background: transparent;
  border-color: var(--line);
}

.formula-line > div,
.mix-note,
.impact-overview,
.patient-share-explainer {
  background: #ebe9e4;
  border-color: var(--line);
}

.formula-line > span {
  color: var(--black);
  background: var(--teal);
  border-radius: 4px;
}

.explorer-section {
  border-top: 1px solid var(--dark-line);
  border-bottom: 1px solid var(--dark-line);
}

.explorer-section .section-heading > p,
.record-card .designation-text,
.record-meta,
.record-card .trade-name {
  color: #9b9b98;
}

.explorer-filters {
  background: transparent;
}

.record-card {
  background: #111110;
  border-color: #373735;
}

.record-card h3 {
  color: #ffffff;
  font-family: var(--sans);
}

.pager {
  color: #8f8f8c;
}

.pager-button {
  color: #ffffff;
  background: #111110;
  border-color: #373735;
  border-radius: 4px;
}

.bottom-cta {
  padding: var(--section-space) var(--page-pad);
  border-top: 1px solid var(--dark-line);
}

.bottom-cta-card {
  max-width: 980px;
}

.bottom-cta h2 {
  font-size: clamp(42px, 5vw, 76px);
  line-height: 1.02;
}

.route-link {
  color: #ffffff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.42);
  border-radius: 4px;
}

.route-link:hover,
.route-link:focus-visible {
  color: var(--teal);
  border-color: var(--teal);
}

footer {
  border-top: 1px solid var(--dark-line);
}

.footer-copy p,
footer p {
  color: #777773;
  font-size: 12px;
}

.footer-copy small {
  color: #777773;
}

@media (max-width: 1250px) {
  .topbar {
    grid-template-columns: 1fr auto;
  }

  .topbar nav,
  .source-date {
    display: none;
  }
}

@media (max-width: 1050px) {
  .topbar {
    height: 68px;
    padding: 0 var(--page-pad);
  }

  .brand-mark {
    width: 27px;
    height: 27px;
  }

  .source-date {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .section-heading,
  .decision-section,
  .methodology-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 800px) {
  .topbar {
    height: 66px;
    padding: 0 var(--page-pad);
  }

  .brand-mark {
    width: 27px;
    height: 27px;
  }

  .hero {
    min-height: 820px;
  }

  .hero::before {
    background-position: 64% center;
  }

  .hero::after {
    background:
      linear-gradient(90deg, rgba(5, 5, 5, 0.98) 0%, rgba(5, 5, 5, 0.9) 52%, rgba(5, 5, 5, 0.5) 100%),
      linear-gradient(0deg, rgba(5, 5, 5, 0.72) 0%, transparent 45%);
  }

  .hero-grid {
    width: min(100%, var(--max-width));
    min-height: 820px;
    padding: 132px var(--page-pad) 78px;
  }

  .hero h1 {
    font-size: clamp(54px, 17vw, 76px);
  }

  .freshness-note,
  .section {
    width: min(100%, var(--max-width));
    padding-right: var(--page-pad);
    padding-left: var(--page-pad);
  }

  .decision-section,
  .explorer-section,
  .bottom-cta {
    padding-right: var(--page-pad);
    padding-left: var(--page-pad);
  }
}

@media (max-width: 520px) {
  .topbar-cta {
    display: none;
  }
}

/* Combined product + treatment explorer */
.combined-explorer {
  padding-top: clamp(88px, 10vw, 140px);
  padding-bottom: clamp(88px, 10vw, 140px);
}

.explorer-heading {
  align-items: start;
}

.explorer-heading-meta {
  display: grid;
  justify-items: end;
  gap: 18px;
  color: #9b9b98;
  font-size: 13px;
  line-height: 1.55;
  text-align: right;
}

.explorer-section .button.secondary {
  color: #ffffff;
  border-color: #4a4a47;
}

.explorer-section .button.secondary:hover,
.explorer-section .button.secondary:focus-visible {
  color: var(--black);
  background: var(--teal);
  border-color: var(--teal);
}

.count-bridge {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr) auto) minmax(0, 1fr);
  align-items: center;
  gap: 14px;
}

.count-bridge > div {
  min-height: 118px;
  padding: 20px 22px;
  display: grid;
  align-content: space-between;
  background: #111110;
  border: 1px solid #373735;
  border-radius: 8px;
}

.count-bridge span {
  color: #92928f;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.count-bridge strong {
  color: var(--teal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 400;
}

.count-bridge i {
  color: #666663;
  font-size: 24px;
  font-style: normal;
}

.count-explanation {
  max-width: 980px;
  margin-top: 16px;
  color: #8f8f8c;
  font-size: 12px;
  line-height: 1.7;
}

.impact-definition {
  margin-top: 30px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: #aaa9a5;
  background: #111110;
  border: 1px solid #373735;
  border-left: 3px solid var(--teal);
  border-radius: 8px;
  font-size: 12px;
  line-height: 1.65;
}

.impact-definition strong {
  color: #ffffff;
}

.impact-definition > span {
  flex: 0 0 auto;
  color: var(--teal);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.accordion-guidance {
  margin-top: 18px;
  color: #aaa9a5;
  font-size: 11px;
  line-height: 1.6;
}

.combined-filters {
  grid-template-columns: minmax(300px, 1.1fr) minmax(390px, auto) repeat(3, minmax(150px, 0.4fr));
}

.combined-filters .search-field,
.combined-filters .small-select {
  color: #8f8f8c;
}

.combined-filters .chip {
  color: #b6b6b2;
  background: #191918;
  border-color: #3d3d3b;
}

.combined-filters .chip.active {
  color: var(--black);
  background: var(--teal);
  border-color: var(--teal);
}

.combined-product-list {
  margin-top: 18px;
  display: grid;
  gap: 12px;
}

.combined-product-card {
  background: #111110;
  border: 1px solid #373735;
  border-radius: 8px;
  overflow: hidden;
}

.combined-product-card[open] {
  border-color: #555550;
}

.combined-product-head {
  padding: 22px;
  display: grid;
  grid-template-columns: minmax(260px, 1.25fr) minmax(130px, 0.45fr) minmax(260px, 0.9fr) minmax(170px, 0.55fr) minmax(105px, 0.3fr);
  align-items: center;
  gap: 24px;
  cursor: pointer;
  list-style: none;
  transition: background 160ms ease;
}

.combined-product-head::-webkit-details-marker {
  display: none;
}

.combined-product-head:hover,
.combined-product-head:focus-visible {
  background: #171716;
  outline: none;
}

.combined-product-name {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.combined-product-name h3 {
  color: #ffffff;
  font-family: var(--sans);
  font-size: 20px;
  line-height: 1.2;
}

.combined-product-name p {
  margin-top: 5px;
  color: #92928f;
  font-size: 11px;
  line-height: 1.45;
}

.combined-product-name .tag-list {
  margin-top: 11px;
}

.combined-product-card .tag {
  color: #c6c5c1;
  background: #242422;
  border: 1px solid #3d3d3b;
}

.combined-product-card .priority-mini {
  padding: 4px 7px;
  color: var(--black);
  background: var(--teal);
  border-radius: 4px;
  font-size: 9px;
}

.combined-product-metric {
  min-width: 0;
  display: grid;
  justify-items: start;
  gap: 6px;
}

.combined-product-metric > small {
  color: #7d7d79;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.combined-product-metric > strong {
  color: #ffffff;
  font-size: 15px;
}

.combined-product-metric > span {
  color: #92928f;
  font-size: 10px;
  line-height: 1.45;
}

.combined-product-card .ndc-chip {
  color: var(--teal);
  background: #211916;
  border-color: #58362f;
}

.combined-product-card .ndc-more {
  color: #b9b8b4;
  background: #242422;
  border-color: #3d3d3b;
}

.combined-product-card .cell-subtle {
  color: #7d7d79;
}

.product-accordion-toggle {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 9px;
  color: var(--teal);
  font-size: 10px;
  font-weight: 800;
  white-space: nowrap;
}

.product-accordion-toggle i {
  display: inline-block;
  font-size: 18px;
  font-style: normal;
  transition: transform 160ms ease;
}

.combined-product-card:not([open]) .close-label,
.combined-product-card[open] .open-label {
  display: none;
}

.combined-product-card[open] .product-accordion-toggle i {
  transform: rotate(180deg);
}

.combined-product-body {
  padding-top: 16px;
  border-top: 1px solid #333331;
}

.mobile-product-facts {
  display: none;
}

.ndc-details.product-ndc-details {
  width: auto;
  margin: 0 22px 14px;
  padding: 12px 14px;
  background: #151514;
  border: 1px solid #333331;
  border-radius: 6px;
}

.ndc-details,
.treatment-more,
.label-details {
  width: 100%;
}

.ndc-details summary,
.treatment-more > summary,
.label-details summary {
  color: var(--teal);
  cursor: pointer;
  font-size: 10px;
  font-weight: 750;
}

.ndc-details > div {
  margin-top: 9px;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.ndc-details code {
  padding: 4px 6px;
  color: #d6d5d1;
  background: #242422;
  border: 1px solid #3d3d3b;
  border-radius: 4px;
  font-size: 9px;
}

.combined-treatment-list {
  padding: 0 22px 22px;
  display: grid;
  gap: 8px;
}

.combined-treatment {
  padding: 17px 18px;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.6fr);
  gap: 30px;
  background: #191918;
  border: 1px solid #333331;
  border-left: 3px solid #555551;
  border-radius: 6px;
}

.combined-treatment.estimated {
  border-left-color: var(--teal);
}

.combined-treatment-copy > p {
  color: #f2f1ed;
  font-size: 13px;
  line-height: 1.55;
}

.combined-treatment .record-meta {
  margin-top: 11px;
  display: flex;
  align-items: center;
  gap: 7px;
  flex-wrap: wrap;
  color: #858581;
}

.combined-treatment .approval-badge {
  color: #85c8ae;
  background: #1d3229;
}

.combined-treatment .approval-badge.designated {
  color: #e8a997;
  background: #38231f;
}

.label-details {
  margin-top: 11px;
}

.label-details p {
  margin-top: 8px;
  color: #9d9d99;
  font-size: 10px;
  line-height: 1.6;
}

.combined-impact {
  display: grid;
  align-content: start;
  justify-items: start;
  gap: 7px;
}

.combined-impact > small {
  color: #7f7f7b;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.combined-impact > strong {
  color: var(--teal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.1;
}

.combined-treatment.unquantified .combined-impact > strong {
  color: #c2c1bd;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;
}

.combined-impact > p {
  margin-top: 3px;
  color: #969692;
  font-size: 10px;
  line-height: 1.55;
}

.combined-impact .confidence-pill {
  font-size: 9px;
}

.confidence-pill.unquantified {
  color: #aaa9a5;
  background: #2b2b29;
}

.impact-proxy {
  color: #c0a486;
  font-size: 9px;
  font-weight: 750;
}

.treatment-more {
  padding: 12px 14px;
  background: #151514;
  border: 1px solid #333331;
  border-radius: 6px;
}

.treatment-more > div {
  margin-top: 10px;
  display: grid;
  gap: 8px;
}

.explorer-empty {
  margin-top: 18px;
  color: #9b9b98;
  background: #111110;
  border: 1px solid #373735;
  border-radius: 8px;
}

.explorer-caveat {
  max-width: 960px;
  margin-top: 20px;
  color: #777773;
  font-size: 10px;
  line-height: 1.7;
}

@media (max-width: 1220px) {
  .combined-filters {
    grid-template-columns: minmax(260px, 1fr) minmax(360px, 1.2fr) repeat(3, minmax(150px, 0.5fr));
  }

  .combined-product-head {
    grid-template-columns: 1fr 1fr;
  }

  .combined-product-name {
    grid-column: 1 / -1;
  }
}

@media (max-width: 1050px) {
  .combined-filters {
    grid-template-columns: 1fr 1fr;
  }

  .combined-filters .search-field,
  .combined-filters .chip-group {
    grid-column: 1 / -1;
  }

}

@media (max-width: 800px) {
  .explorer-heading-meta {
    justify-items: start;
    text-align: left;
  }

  .explorer-heading-meta .button {
    width: 100%;
  }

  .count-bridge {
    grid-template-columns: 1fr;
  }

  .count-bridge i {
    transform: rotate(90deg);
    justify-self: center;
  }

  .impact-definition {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .combined-filters,
  .combined-product-head,
  .combined-treatment {
    grid-template-columns: 1fr;
  }

  .combined-filters .search-field,
  .combined-filters .chip-group,
  .combined-product-name {
    grid-column: auto;
  }

  .combined-product-head,
  .combined-treatment-list {
    padding-right: 16px;
    padding-left: 16px;
  }

  .combined-product-head {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .combined-product-head .combined-product-metric {
    display: none;
  }

  .mobile-product-facts {
    margin: 0 16px 14px;
    padding: 14px;
    display: grid;
    gap: 13px;
    background: #151514;
    border: 1px solid #333331;
    border-radius: 6px;
  }

  .mobile-product-facts > div {
    display: grid;
    gap: 6px;
  }

  .mobile-product-facts small {
    color: #7d7d79;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
  }

  .mobile-product-facts strong {
    color: #ffffff;
    font-size: 12px;
  }

  .product-ndc-details {
    margin-right: 16px;
    margin-left: 16px;
  }

  .product-accordion-toggle {
    justify-content: flex-end;
  }

  .combined-treatment {
    gap: 18px;
  }

  .combined-impact {
    padding-top: 14px;
    border-top: 1px solid #333331;
  }

  .combined-explorer .pager {
    align-items: stretch;
    flex-direction: column;
  }

  .combined-explorer .pager-button {
    width: 100%;
  }
}

@media (max-width: 1100px) {
  .topbar {
    grid-template-columns: 1fr auto;
  }

  .topbar nav {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr 360px;
    gap: 40px;
  }

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

  .decision-section {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .filter-bar {
    grid-template-columns: 1fr 1fr;
  }

  .all-products-filters {
    grid-template-columns: 1fr 1fr;
  }

  .filter-bar .search-field {
    grid-column: 1 / -1;
  }

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

  .methodology-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 800px) {
  .topbar {
    min-height: 66px;
    padding: 0 18px;
  }

  .source-date {
    display: none;
  }

  .topbar-cta {
    min-height: 36px;
    padding: 0 12px;
    font-size: 10px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .hero-grid {
    width: min(100% - 36px, 680px);
    padding: 62px 0 48px;
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: clamp(47px, 14vw, 68px);
  }

  .hero-proof {
    max-width: 440px;
  }

  .freshness-note,
  .section {
    width: calc(100% - 36px);
  }

  .freshness-note {
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 16px 0;
  }

  .section {
    padding: 68px 0;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
    gap: 16px;
  }

  .priority-heading .button {
    width: 100%;
  }

  .decision-section,
  .explorer-section {
    width: 100%;
    padding: 65px 18px;
  }

  .logic-flow {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .logic-flow > i {
    width: 1px;
    height: 16px;
    margin-left: 29px;
  }

  .filter-bar {
    grid-template-columns: 1fr;
  }

  .all-products-filters {
    grid-template-columns: 1fr;
  }

  .filter-bar .search-field {
    grid-column: auto;
  }

  .table-shell {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
  }

  .data-table {
    min-width: 1040px;
  }

  .all-products-table {
    min-width: 980px;
  }

  .formula-line {
    grid-template-columns: 1fr;
  }

  .formula-line > span {
    width: 100%;
    min-height: 44px;
  }

  .mix-note {
    align-items: stretch;
    flex-direction: column;
  }

  .mix-note .button {
    width: 100%;
  }

  .record-card {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .method-grid,
  .source-list {
    grid-template-columns: 1fr;
  }

  .method-grid article {
    min-height: 220px;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .legal-disclaimer {
    padding: 46px var(--page-pad);
  }

  .legal-disclaimer-copy {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .footer-copy {
    justify-items: start;
    text-align: left;
  }
}

@media (max-width: 520px) {
  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button,
  .bottom-cta-actions .button,
  .route-link {
    width: 100%;
  }

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

  .decision-card,
  .drug-drawer {
    padding: 22px;
  }

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

  .table-footer {
    flex-direction: column;
    gap: 5px;
  }

  .all-products-footer {
    align-items: stretch;
  }

  .compact-pager {
    justify-content: space-between;
  }
}

/* Final homepage responsive alignment overrides */
@media (max-width: 1250px) {
  .topbar {
    right: 0;
    left: 0;
    width: 100%;
    grid-template-columns: 1fr auto;
  }

  .topbar nav,
  .source-date {
    display: none;
  }
}

@media (max-width: 1050px) {
  .topbar {
    height: 68px;
    min-height: 0;
    padding: 0 var(--page-pad);
  }

  .brand-mark {
    width: 27px;
    height: 27px;
  }

  .source-date {
    display: none;
  }

  .hero-grid {
    width: min(100%, var(--max-width));
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .section-heading,
  .decision-section,
  .methodology-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 800px) {
  .topbar {
    height: 66px;
    min-height: 0;
    padding: 0 var(--page-pad);
  }

  .brand-mark {
    width: 27px;
    height: 27px;
  }

  .hero {
    min-height: 820px;
  }

  .hero::before {
    background-position: 64% center;
  }

  .hero::after {
    background:
      linear-gradient(90deg, rgba(5, 5, 5, 0.98) 0%, rgba(5, 5, 5, 0.9) 52%, rgba(5, 5, 5, 0.5) 100%),
      linear-gradient(0deg, rgba(5, 5, 5, 0.72) 0%, transparent 45%);
  }

  .hero-grid {
    width: min(100%, var(--max-width));
    min-height: 820px;
    padding: 132px var(--page-pad) 78px;
  }

  .hero h1 {
    font-size: clamp(54px, 17vw, 76px);
  }

  .freshness-note,
  .section {
    width: min(100%, var(--max-width));
    padding-right: var(--page-pad);
    padding-left: var(--page-pad);
  }

  .decision-section,
  .explorer-section,
  .bottom-cta {
    padding-right: var(--page-pad);
    padding-left: var(--page-pad);
  }
}

@media (max-width: 520px) {
  .topbar-cta {
    display: none;
  }
}
