:root {
  --ink: #061326;
  --navy: #062c57;
  --navy-2: #0a3b72;
  --muted: #607083;
  --soft: #f5f9fa;
  --surface: #ffffff;
  --line: #dfe9ee;
  --green: #55b66d;
  --green-2: #2d9652;
  --gold: #d9972b;
  --shadow: 0 22px 60px rgba(6, 44, 87, 0.1);
  --wrap: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(140deg, rgba(85, 182, 109, 0.1), transparent 34rem),
    linear-gradient(180deg, #ffffff 0%, #ffffff 58%, #f7fafb 100%);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body::selection {
  background: rgba(85, 182, 109, 0.24);
}

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

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 20;
  transform: translateY(-140%);
  border-radius: 6px;
  background: var(--navy);
  color: #fff;
  padding: 0.7rem 1rem;
  font-weight: 800;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(223, 233, 238, 0.8);
  backdrop-filter: blur(18px);
}

.wrap {
  width: min(var(--wrap), calc(100% - 40px));
  margin: 0 auto;
}

.header-inner {
  width: 100%;
  min-height: 82px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 16px clamp(20px, 5vw, 76px);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 3px;
  width: max-content;
  font-weight: 900;
  letter-spacing: 0.22em;
  line-height: 1;
}

.brand strong {
  font-size: 25px;
}

.brand span {
  color: var(--muted);
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
}

.nav,
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 44px);
  color: #172232;
  font-size: 14px;
  font-weight: 650;
}

.nav a,
.nav-links a {
  white-space: nowrap;
}

.nav a:hover,
.nav-links a:hover {
  color: var(--navy);
}

.header-cta {
  justify-self: end;
  padding: 15px 22px;
  border-radius: 8px;
  background: var(--navy);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 14px 28px rgba(8, 42, 87, 0.18);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.header-cta:hover {
  background: #061c3d;
  transform: translateY(-1px);
}

@media (max-width: 1080px) {
  .header-inner {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: auto auto;
    gap: 10px 18px;
    min-height: auto;
    padding: 14px clamp(18px, 4vw, 42px) 10px;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
  }

  .nav,
  .nav-links {
    grid-column: 1 / -1;
    grid-row: 2;
    display: flex;
    align-items: center;
    justify-self: center;
    width: max-content;
    max-width: 100%;
    gap: 2px;
    overflow-x: auto;
    padding: 4px;
    border: 1px solid rgba(143, 177, 210, 0.36);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.74);
    color: #263b55;
    font-size: 12px;
    font-weight: 750;
    box-shadow:
      0 10px 28px rgba(8, 45, 95, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.92);
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .nav::-webkit-scrollbar,
  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav a,
  .nav-links a {
    flex: 0 0 auto;
    padding: 7px 10px;
    border-radius: 999px;
    line-height: 1;
    white-space: nowrap;
  }

  .nav a:hover,
  .nav-links a:hover {
    background: rgba(8, 45, 95, 0.08);
  }

  .header-cta {
    grid-column: 2;
    grid-row: 1;
  }
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  border: 1px solid transparent;
  border-radius: 6px;
  background: var(--navy);
  color: #fff;
  padding: 0.78rem 1.22rem;
  box-shadow: 0 15px 34px rgba(6, 44, 87, 0.18);
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1;
  text-align: center;
}

.button.secondary {
  background: #fff;
  color: var(--navy);
  border-color: var(--line);
  box-shadow: none;
}

.hero {
  padding: 88px 0 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 72px;
}

.hero-grid > * {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--green-2);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.keep-together {
  white-space: nowrap;
}

h1 {
  margin-bottom: 24px;
  max-width: 640px;
  font-size: clamp(3.4rem, 7vw, 5.8rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.92;
}

.hero-copy {
  max-width: 590px;
  color: #495b70;
  font-size: 1.18rem;
  font-weight: 650;
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 32px;
}

.signal {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #52667a;
  font-size: 0.84rem;
  font-weight: 850;
}

.signal::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(85, 182, 109, 0.12);
}

.scan-visual {
  position: relative;
  min-height: 455px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(130deg, rgba(255, 255, 255, 0.92), rgba(246, 250, 251, 0.96)),
    linear-gradient(90deg, transparent 0%, rgba(85, 182, 109, 0.1) 52%, transparent 100%);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.scan-visual::before {
  content: "";
  position: absolute;
  inset: 16% -6% auto 34%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(6, 44, 87, 0.18), transparent);
  transform: rotate(-13deg);
}

.scanner-rail {
  position: absolute;
  left: 12%;
  right: 8%;
  bottom: 102px;
  height: 11px;
  border-radius: 99px;
  background: #223144;
  opacity: 0.48;
  transform: rotate(-3deg);
}

.body-silhouette {
  position: absolute;
  left: 14%;
  right: 8%;
  bottom: 125px;
  height: 120px;
  color: #1e2c3d;
  opacity: 0.62;
}

.scan-beam {
  position: absolute;
  left: 33%;
  bottom: 88px;
  width: 10px;
  height: 235px;
  border-radius: 99px;
  background: linear-gradient(180deg, transparent, rgba(85, 182, 109, 0.86), transparent);
  box-shadow: 0 0 28px rgba(85, 182, 109, 0.58);
}

.mini-card,
.stat-strip,
.search-card {
  position: absolute;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 45px rgba(6, 44, 87, 0.11);
}

.mini-card {
  left: 48px;
  top: 44px;
  width: 240px;
  padding: 20px;
}

.search-card {
  right: 38px;
  top: 72px;
  width: 250px;
  padding: 20px;
}

.mini-card h3,
.search-card h3 {
  margin: 0 0 16px;
  color: var(--green-2);
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.metric-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 10px;
  font-size: 0.82rem;
  font-weight: 850;
}

.metric-row span:last-child {
  color: var(--green-2);
}

.stat-strip {
  left: 28px;
  right: 28px;
  bottom: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  box-shadow: none;
}

.stat {
  padding: 18px;
  border-right: 1px solid var(--line);
}

.stat:last-child {
  border-right: 0;
}

.stat strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.88rem;
  font-weight: 950;
}

.stat span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 750;
  line-height: 1.4;
}

.section {
  padding: 74px 0;
}

.section.compact {
  padding-top: 36px;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  align-items: end;
  gap: 56px;
  margin-bottom: 34px;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.1rem, 4vw, 3.65rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.98;
}

.section-head p,
.intro-panel p,
.card p,
.feature p,
.article-body p,
.article-body li,
.answer-card p,
.faq-card p,
.cta-panel p {
  color: var(--muted);
  font-weight: 650;
  line-height: 1.62;
}

.intro-panel {
  display: grid;
  grid-template-columns: 350px 1fr;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 52px rgba(6, 44, 87, 0.07);
  overflow: hidden;
}

.intro-copy {
  padding: 42px;
  border-right: 1px solid var(--line);
  background: linear-gradient(180deg, #fff, #fbfdfe);
}

.intro-copy h2 {
  font-size: clamp(2.1rem, 4vw, 3.25rem);
}

.link-map {
  padding: 34px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.map-item,
.card,
.path-card,
.faq-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.map-item {
  min-height: 118px;
  padding: 22px;
}

.map-item strong,
.path-card strong,
.faq-card strong {
  display: block;
  margin-bottom: 8px;
  font-weight: 950;
}

.map-item span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.45;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.card {
  min-height: 350px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 12px 36px rgba(6, 44, 87, 0.05);
}

a.card {
  color: inherit;
}

.card.local {
  border-color: rgba(85, 182, 109, 0.42);
  background: linear-gradient(180deg, #fafffb, #fff);
}

.card.cost {
  border-color: rgba(217, 151, 43, 0.38);
  background: linear-gradient(180deg, #fffaf0, #fff);
}

.research-card {
  min-height: 420px;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.research-card:hover {
  border-color: rgba(6, 44, 87, 0.28);
  box-shadow: 0 22px 54px rgba(6, 44, 87, 0.14);
  transform: translateY(-4px);
}

.research-card:focus-visible {
  outline: 3px solid rgba(85, 182, 109, 0.34);
  outline-offset: 4px;
}

.research-card:hover h3 {
  color: var(--navy);
}

.research-card-image {
  display: block;
  aspect-ratio: 16 / 9;
  border-bottom: 1px solid var(--line);
  background: var(--soft);
  overflow: hidden;
}

.research-card-image img,
.article-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.research-card-image img {
  transition: transform 220ms ease;
}

.research-card-image img[data-src],
.research-directory-thumb img[data-src] {
  opacity: 0;
}

.research-card:hover .research-card-image img {
  transform: scale(1.035);
}

.research-card .url-label,
.research-card h3,
.research-card p {
  margin-right: 24px;
  margin-left: 24px;
}

.research-card .url-label {
  margin-top: 22px;
}

.research-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.latest-articles {
  background: linear-gradient(180deg, rgba(245, 249, 250, 0.4), rgba(255, 255, 255, 0));
}

.research-index-hero {
  position: relative;
  min-height: 430px;
  display: grid;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(223, 233, 238, 0.9);
  padding: 58px 0 48px;
  background: #f8fbfc;
}

.research-index-hero-bg,
.research-index-hero-shade {
  position: absolute;
  inset: 0;
}

.research-index-hero-bg {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center right;
}

.research-index-hero-shade {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.9) 34%, rgba(255, 255, 255, 0.46) 52%, rgba(255, 255, 255, 0.05) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(245, 249, 250, 0.52) 100%);
}

.research-index-hero-inner {
  position: relative;
  z-index: 1;
}

.research-index-hero-content {
  max-width: 620px;
}

.research-index-hero .eyebrow {
  margin-bottom: 14px;
  color: var(--green-2);
}

.research-index-hero h1 {
  margin: 0 0 18px;
  max-width: 760px;
  color: var(--ink);
  font-size: clamp(3.4rem, 5.6vw, 5.35rem);
  letter-spacing: 0;
  line-height: 0.95;
  overflow-wrap: anywhere;
}

.research-index-hero .hero-copy {
  max-width: 520px;
  color: #2e425b;
  font-size: 1.12rem;
  line-height: 1.62;
}

.research-hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
  max-width: 590px;
  margin-top: 44px;
}

.research-hero-point {
  min-width: 0;
  color: var(--ink);
}

.research-hero-point svg {
  width: 32px;
  height: 32px;
  margin-bottom: 16px;
  fill: none;
  stroke: var(--green-2);
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.research-hero-point strong,
.research-hero-point span {
  display: block;
}

.research-hero-point strong {
  margin-bottom: 6px;
  font-size: 0.9rem;
  font-weight: 950;
  line-height: 1.2;
}

.research-hero-point span {
  color: #32465d;
  font-size: 0.82rem;
  font-weight: 650;
  line-height: 1.35;
}

.research-topic-selector {
  border-bottom: 1px solid rgba(223, 233, 238, 0.86);
  background: #fff;
  padding: 30px 0 24px;
}

.research-topic-selector-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
  margin-bottom: 14px;
}

.research-topic-selector .eyebrow {
  margin: 0;
  color: var(--green-2);
  font-size: 0.7rem;
}

.research-topic-selector-head span {
  color: #4d5f74;
  font-size: 0.78rem;
  font-weight: 850;
  line-height: 1.3;
}

.research-topic-pills {
  display: grid;
  grid-template-columns: repeat(6, minmax(max-content, 1fr));
  gap: 16px;
}

.research-topic-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 8px 22px rgba(6, 44, 87, 0.04);
  cursor: default;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.1;
  min-width: 0;
  padding: 0 16px;
  white-space: nowrap;
}

.research-topic-pill.is-active {
  border-color: rgba(45, 150, 82, 0.54);
  box-shadow: 0 0 0 1px rgba(45, 150, 82, 0.12), 0 8px 22px rgba(6, 44, 87, 0.04);
  color: var(--navy);
}

.research-topic-pill:focus {
  outline: none;
}

.research-topic-pill:focus-visible {
  outline: 3px solid rgba(85, 182, 109, 0.34);
  outline-offset: 3px;
}

.research-topic-pill svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.research-topic-pill.is-active svg {
  color: var(--green-2);
}

.research-results-section {
  padding-top: 28px;
  padding-bottom: 48px;
}

.research-card-carousel {
  position: relative;
}

.research-card-carousel-track {
  display: flex;
  grid-template-columns: none;
  gap: 24px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 4px 2px 12px;
  scroll-behavior: smooth;
  scroll-padding-left: 2px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  transition: opacity 160ms ease, transform 160ms ease;
}

.research-card-carousel-track::-webkit-scrollbar {
  display: none;
}

.research-card-carousel-track .research-card {
  flex: 0 0 calc((100% - 48px) / 3);
  min-width: 0;
  scroll-snap-align: start;
}

.research-card-carousel-track.is-transitioning {
  opacity: 0;
  transform: translateY(8px);
}

.research-card-carousel-track .research-card.is-filtered-out {
  display: none;
}

.research-card-carousel-track .research-card.is-fading-in {
  animation: researchCardFadeIn 360ms ease both;
}

@keyframes researchCardFadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.research-carousel-next {
  position: absolute;
  top: 50%;
  right: -18px;
  z-index: 2;
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(6, 44, 87, 0.16);
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  box-shadow: 0 18px 44px rgba(6, 44, 87, 0.22);
  cursor: pointer;
  transform: translateY(-50%);
}

.research-carousel-next:hover {
  background: var(--navy-2);
}

.research-carousel-next[hidden] {
  display: none;
}

.research-carousel-next:focus-visible {
  outline: 3px solid rgba(85, 182, 109, 0.34);
  outline-offset: 4px;
}

.research-carousel-next svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.research-insight-section {
  padding: 0 0 46px;
}

.research-insight-band {
  display: grid;
  grid-template-columns: minmax(240px, 1.18fr) repeat(3, minmax(122px, 0.66fr)) minmax(230px, 1.02fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(245, 249, 250, 0.86)),
    #fff;
  box-shadow: 0 18px 42px rgba(6, 44, 87, 0.05);
}

.research-insight-intro,
.research-insight-metric,
.research-insight-report {
  min-height: 126px;
  padding: 20px 24px;
}

.research-insight-intro,
.research-insight-metric {
  border-right: 1px solid var(--line);
}

.research-insight-intro h2 {
  max-width: 280px;
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 0.96rem;
  line-height: 1.08;
  text-transform: uppercase;
}

.research-insight-intro p,
.research-insight-metric span {
  margin: 0;
  color: #40536a;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.4;
}

.research-insight-metric svg {
  width: 22px;
  height: 22px;
  margin-bottom: 12px;
  fill: none;
  stroke: var(--green-2);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.research-insight-metric strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 950;
  line-height: 1.15;
}

.research-insight-report {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 7px;
}

.research-report-action {
  position: relative;
  display: grid;
  place-items: center;
  width: min(100%, 220px);
  min-height: 112px;
  isolation: isolate;
}

.research-report-preview {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  border: 1px solid rgba(8, 45, 95, 0.16);
  border-radius: 10px;
  background:
    linear-gradient(90deg, rgba(8, 45, 95, 0.08) 1px, transparent 1px) 0 0 / 28px 28px,
    linear-gradient(rgba(8, 45, 95, 0.06) 1px, transparent 1px) 0 0 / 28px 28px,
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(235, 244, 250, 0.9));
  box-shadow: 0 18px 34px rgba(6, 44, 87, 0.12);
  filter: blur(2px);
  opacity: 0.74;
  transform: rotate(-2deg) scale(0.95);
}

.research-report-preview::before,
.research-report-preview::after {
  content: "";
  position: absolute;
  border-radius: 999px;
}

.research-report-preview::before {
  left: 18px;
  right: 58px;
  top: 18px;
  height: 9px;
  background: linear-gradient(90deg, rgba(8, 45, 95, 0.78), rgba(8, 45, 95, 0.16));
}

.research-report-preview::after {
  right: 18px;
  top: 14px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: conic-gradient(var(--green-2) 0 68%, rgba(8, 45, 95, 0.12) 68% 100%);
}

.research-report-preview span {
  position: absolute;
  display: block;
  border-radius: 7px;
  background: rgba(8, 45, 95, 0.1);
}

.research-report-preview span:nth-child(1) {
  left: 18px;
  right: 18px;
  top: 52px;
  height: 38px;
  background:
    linear-gradient(135deg, transparent 45%, rgba(85, 182, 109, 0.55) 46% 51%, transparent 52%),
    linear-gradient(24deg, transparent 48%, rgba(8, 45, 95, 0.58) 49% 54%, transparent 55%),
    rgba(8, 45, 95, 0.06);
}

.research-report-preview span:nth-child(2) {
  left: 18px;
  bottom: 12px;
  width: 42%;
  height: 16px;
}

.research-report-preview span:nth-child(3) {
  right: 18px;
  bottom: 12px;
  width: 42%;
  height: 16px;
}

.research-report-preview span:nth-child(4) {
  left: 18px;
  right: 18px;
  bottom: 36px;
  height: 6px;
  background: linear-gradient(90deg, rgba(85, 182, 109, 0.64), rgba(8, 45, 95, 0.12));
}

.mini-report-preview {
  width: min(100%, 200px);
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  padding: 8px;
  box-shadow: 0 12px 30px rgba(6, 44, 87, 0.08);
}

.mini-report-header {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: start;
  margin-bottom: 5px;
  color: var(--navy);
  font-size: 0.4rem;
  font-weight: 950;
  line-height: 1.1;
}

.mini-report-header span {
  color: var(--ink);
  font-size: 0.36rem;
  font-weight: 850;
}

.mini-report-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0;
  overflow: hidden;
  border: 1px solid #edf2f6;
  border-radius: 4px;
}

.mini-report-grid span,
.mini-report-grid strong {
  min-height: 13px;
  border-bottom: 1px solid #edf2f6;
  padding: 3px 5px;
  color: #29384c;
  font-size: 0.36rem;
  line-height: 1;
}

.mini-report-grid strong {
  border-left: 1px solid #edf2f6;
  color: var(--ink);
  font-weight: 950;
  text-align: right;
}

.mini-report-grid span:nth-last-child(-n + 2),
.mini-report-grid strong:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.mini-report-side {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  margin-top: 6px;
}

.mini-report-side span {
  height: 16px;
  border-radius: 4px;
  background: linear-gradient(180deg, #f6f9fb, #fff);
  color: #41546a;
  font-size: 0.32rem;
  font-weight: 850;
  line-height: 16px;
  text-align: center;
}

.research-report-link {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  min-width: 180px;
  border: 1px solid rgba(8, 45, 95, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--navy);
  cursor: pointer;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 950;
  line-height: 1;
  padding: 0 18px;
  box-shadow: 0 12px 26px rgba(8, 45, 95, 0.12), 0 0 0 5px rgba(85, 182, 109, 0.09);
  backdrop-filter: blur(8px);
}

.research-report-link svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.research-report-link:focus-visible {
  outline: 3px solid rgba(85, 182, 109, 0.34);
  outline-offset: 5px;
}

.research-directory-section {
  padding: 0 0 58px;
}

.research-directory-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.research-directory-column h2 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-transform: uppercase;
}

.research-directory-list {
  display: grid;
  gap: 8px;
}

.research-directory-card {
  display: grid;
  grid-template-columns: 75px minmax(0, 1fr) 20px;
  align-items: center;
  gap: 11px;
  min-height: 90px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: inherit;
  padding: 8px 9px;
  box-shadow: 0 10px 30px rgba(6, 44, 87, 0.04);
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.research-directory-card:hover {
  border-color: rgba(6, 44, 87, 0.22);
  box-shadow: 0 18px 38px rgba(6, 44, 87, 0.1);
  transform: translateY(-2px);
}

.research-directory-card:focus-visible {
  outline: 3px solid rgba(85, 182, 109, 0.34);
  outline-offset: 3px;
}

.research-directory-thumb {
  width: 75px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 1px solid rgba(223, 233, 238, 0.9);
  border-radius: 7px;
  background: var(--soft);
}

.research-directory-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 180ms ease;
}

.research-directory-card:hover .research-directory-thumb img {
  transform: scale(1.035);
}

.research-directory-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.research-directory-copy strong {
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 950;
  line-height: 1.12;
}

.research-directory-card:hover .research-directory-copy strong {
  color: var(--navy);
}

.research-directory-copy span {
  color: #44576e;
  font-size: 0.66rem;
  font-weight: 750;
  line-height: 1.22;
}

.research-directory-arrow {
  width: 18px;
  height: 18px;
  color: var(--navy);
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
  justify-self: end;
}

.research-waitlist-section {
  padding: 0 0 58px;
}

.waitlist {
  position: relative;
  isolation: isolate;
  scroll-margin-top: 96px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 420px);
  gap: clamp(24px, 4vw, 46px);
  align-items: center;
  overflow: hidden;
  padding: clamp(28px, 3vw, 38px) clamp(28px, 4vw, 46px);
  border: 1px solid rgba(8, 45, 95, 0.12);
  border-radius: 16px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.84) 54%, rgba(255, 255, 255, 0.96) 100%),
    radial-gradient(circle at 48% 32%, rgba(85, 182, 109, 0.11), transparent 30%),
    url("../assets/dexa-scan-experience.jpg") center / cover;
  box-shadow: 0 28px 78px rgba(8, 45, 95, 0.1);
}

.waitlist::before {
  content: "";
  position: absolute;
  left: 7%;
  right: 7%;
  bottom: -34px;
  z-index: -1;
  height: 72px;
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(8, 45, 95, 0.14), rgba(85, 182, 109, 0.12) 42%, transparent 72%);
  filter: blur(18px);
}

.waitlist::after {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: 15px;
  background:
    linear-gradient(90deg, rgba(8, 45, 95, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(8, 45, 95, 0.028) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(135deg, rgba(0, 0, 0, 0.7), transparent 72%);
}

.form-intro {
  display: grid;
  justify-items: start;
}

.waitlist-brand {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 1.12rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  line-height: 1;
}

.waitlist-brand span {
  color: var(--green-2);
}

.waitlist-brand::after {
  content: "";
  display: block;
  width: 42px;
  height: 2px;
  margin-top: 10px;
  background: var(--green-2);
}

.waitlist h2 {
  max-width: 520px;
  margin: 0 0 12px;
  color: var(--ink);
  font-size: clamp(2.15rem, 4vw, 3.1rem);
  line-height: 1.02;
}

.waitlist .form-intro p:not(.waitlist-brand):not(.waitlist-fine-print) {
  max-width: 520px;
  margin: 0;
  color: #40536b;
  font-size: clamp(1rem, 1.45vw, 1.12rem);
  font-weight: 700;
  line-height: 1.42;
}

.waitlist .form-intro p strong {
  display: block;
  color: var(--green-2);
  font-weight: 950;
}

.waitlist-offer-copy span {
  display: block;
  margin-top: 5px;
}

.waitlist-fine-print {
  grid-column: 1 / -1;
  max-width: none;
  margin: -2px 0 0;
  padding-top: 14px;
  border-top: 1px solid rgba(8, 45, 95, 0.1);
  color: #5d6e83;
  font-size: 0.7rem;
  font-weight: 750;
  line-height: 1.42;
}

.waitlist-perks {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: min(100%, 520px);
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.waitlist-perks li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 10px;
  align-items: center;
  min-width: 0;
  border-right: 1px solid rgba(8, 45, 95, 0.14);
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 900;
  line-height: 1.12;
}

.waitlist-perks li:last-child {
  border-right: 0;
}

.waitlist-perks span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(8, 45, 95, 0.1);
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(85, 182, 109, 0.1), rgba(255, 255, 255, 0.88));
  box-shadow: 0 14px 34px rgba(8, 45, 95, 0.08);
  color: var(--green-2);
}

.waitlist-perks svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.waitlist-form {
  position: relative;
  display: grid;
  width: min(100%, 400px);
  min-height: 250px;
  --signup-control-width: min(100%, 320px);
  grid-template-columns: 1fr;
  gap: 12px;
  justify-items: center;
  align-items: center;
  align-content: center;
  justify-self: end;
  overflow: hidden;
  padding: 26px 28px;
  border: 1px solid rgba(143, 177, 210, 0.26);
  border-radius: 14px;
  background:
    radial-gradient(circle at 50% 96%, rgba(79, 156, 87, 0.2), transparent 34%),
    linear-gradient(135deg, #07111f 0%, #082d5f 68%, #061f43 100%);
  box-shadow: 0 30px 76px rgba(7, 17, 31, 0.24);
  isolation: isolate;
}

.waitlist-form::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 36px 36px;
}

.hidden-field,
.field-row label > span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.waitlist .field-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  width: var(--signup-control-width);
}

.waitlist input[type="text"],
.waitlist input[type="email"] {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(194, 211, 227, 0.72);
  border-radius: 6px;
  background: #eef3f7;
  color: var(--ink);
  padding: 0 17px;
  font: inherit;
  font-size: 15px;
  font-weight: 600;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86), 0 12px 28px rgba(0, 0, 0, 0.1);
}

.waitlist input[type="text"]::placeholder,
.waitlist input[type="email"]::placeholder {
  color: #75869a;
}

.waitlist input.hidden-field {
  min-height: 1px;
  padding: 0;
  border: 0;
  box-shadow: none;
  opacity: 0;
}

.waitlist input[name="email"] {
  scroll-margin-top: 150px;
}

.form-action {
  display: grid;
  gap: 10px;
  justify-items: center;
  align-content: start;
  width: var(--signup-control-width, min(100%, 420px));
  padding-top: 0;
}

.form-action .button {
  width: 100%;
  min-height: 52px;
  padding: 0 20px;
  border-color: rgba(169, 235, 153, 0.66);
  background: linear-gradient(135deg, #5abd5d, #34894a);
  color: #fff;
  font-size: 14px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24), 0 0 36px rgba(85, 182, 109, 0.24);
}

.form-action .button:hover {
  background: linear-gradient(135deg, #64c966, #3b9650);
}

.form-action .submit-label {
  line-height: 1.2;
  text-align: center;
}

.button-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.waitlist-safe-note {
  max-width: 280px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
}

.form-message {
  min-height: 18px;
  margin: 0;
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 850;
  line-height: 1.4;
  text-align: center;
}

.form-message.error {
  color: #ffb0a8;
}

.waitlist-form.is-submitting {
  opacity: 0.78;
}

.waitlist-form.is-submitting button {
  cursor: wait;
}

.waitlist input:focus-visible,
.waitlist button:focus-visible {
  outline: 3px solid rgba(85, 182, 109, 0.34);
  outline-offset: 3px;
}

.research-location-section {
  padding: 0 0 54px;
}

.research-location-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1fr);
  align-items: center;
  gap: 54px;
}

.research-location-copy h2,
.research-faq-section h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.02;
}

.research-location-copy address {
  margin: 18px 0;
  color: #172333;
  font-size: 0.94rem;
  font-style: normal;
  font-weight: 900;
  line-height: 1.45;
}

.research-location-copy p {
  max-width: 440px;
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.6;
}

.research-map-link {
  width: fit-content;
  min-height: 48px;
  margin-top: 20px;
  padding: 0 22px;
  box-shadow: none;
}

.research-button-pin {
  position: relative;
  width: 16px;
  height: 16px;
  color: currentColor;
}

.research-button-pin::before {
  content: "";
  position: absolute;
  inset: 1px 3px 3px;
  border: 2px solid currentColor;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.research-button-pin::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 5px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
}

.research-map-frame {
  position: relative;
  min-height: 290px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--soft);
  box-shadow: 0 18px 52px rgba(6, 44, 87, 0.08);
}

.research-map-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.research-faq-section {
  padding: 14px 0 48px;
}

.research-faq-section h2 {
  margin-bottom: 22px;
}

.research-faq-list {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #fff;
  box-shadow: 0 12px 36px rgba(6, 44, 87, 0.04);
}

.research-faq-list details + details {
  border-top: 1px solid rgba(223, 233, 238, 0.72);
}

.research-faq-list summary {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 26px;
  cursor: pointer;
  color: #172333;
  font-size: 0.88rem;
  font-weight: 850;
  line-height: 1.35;
  list-style: none;
}

.research-faq-list summary::-webkit-details-marker {
  display: none;
}

.research-faq-list summary::after {
  content: "+";
  color: var(--navy);
  font-size: 1.12rem;
  line-height: 1;
}

.research-faq-list details[open] summary::after {
  content: "-";
}

.research-faq-list p {
  margin: 0;
  padding: 0 26px 20px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 650;
  line-height: 1.55;
}

.research-final-cta {
  position: relative;
  overflow: hidden;
  background: #061f43;
  color: #fff;
}

.research-final-cta::before,
.research-final-cta::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 160px;
  opacity: 0.25;
  background: repeating-radial-gradient(ellipse at center, transparent 0 13px, rgba(79, 156, 87, 0.42) 14px 15px, transparent 16px 28px);
}

.research-final-cta::before {
  left: -130px;
  top: 14px;
}

.research-final-cta::after {
  right: -120px;
  bottom: 4px;
}

.research-final-cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  min-height: 178px;
  padding: 42px 0;
}

.research-final-cta h2 {
  max-width: 520px;
  margin-bottom: 10px;
  color: #fff;
  font-size: 2.25rem;
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1.05;
}

.research-final-cta p {
  max-width: 470px;
  color: #c8d6e4;
  font-size: 1rem;
  line-height: 1.55;
}

.research-final-cta-button {
  min-width: 278px;
  background: var(--green);
  box-shadow: 0 18px 42px rgba(5, 17, 35, 0.24);
}

.sample-report-overlay[hidden] {
  display: none;
}

.sample-report-overlay {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: clamp(12px, 2.4vw, 28px);
  background: rgba(7, 17, 31, 0.58);
  backdrop-filter: blur(10px);
}

body.sample-report-open {
  overflow: hidden;
}

.sample-report-dialog {
  position: relative;
  width: min(100%, 1040px);
  max-height: min(92vh, 980px);
  overflow: auto;
  border-radius: 18px;
  outline: none;
}

.sample-report-close {
  position: sticky;
  top: 14px;
  z-index: 4;
  float: right;
  min-height: 38px;
  margin: 14px 14px -52px 0;
  border: 1px solid rgba(8, 45, 95, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy);
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  padding: 0 14px;
  box-shadow: 0 10px 28px rgba(7, 17, 31, 0.1);
  backdrop-filter: blur(12px);
}

.sample-report-card {
  border: 1px solid rgba(8, 45, 95, 0.1);
  border-radius: 18px;
  background: #fff;
  color: var(--ink);
  padding: clamp(24px, 4vw, 44px);
  box-shadow: 0 28px 84px rgba(7, 17, 31, 0.22);
}

.sample-report-header {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: start;
  margin-bottom: 22px;
}

.sample-report-header h2 {
  margin-bottom: 8px;
  font-size: clamp(1.75rem, 3vw, 2.4rem);
}

.sample-report-header p,
.sample-report-note {
  margin: 0;
  color: #53677f;
  font-size: 0.95rem;
}

.sample-report-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  border-radius: 8px;
  background: rgba(85, 182, 109, 0.14);
  color: #287234;
  font-size: 0.86rem;
  font-weight: 900;
  padding: 0 18px;
  white-space: nowrap;
}

.sample-report-badge::before {
  content: "";
  width: 17px;
  height: 17px;
  border: 2px solid currentColor;
  border-radius: 4px;
  transform: rotate(-34deg);
}

.sample-report-meta {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  overflow: hidden;
  margin-bottom: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfd;
}

.sample-report-meta span {
  min-height: 48px;
  border-right: 1px solid var(--line);
  color: #111b2a;
  font-size: 0.82rem;
  font-weight: 850;
  padding: 14px 16px;
  white-space: nowrap;
}

.sample-report-meta span:last-child {
  border-right: 0;
}

.sample-report-summary {
  display: grid;
  grid-template-columns: minmax(240px, 0.78fr) minmax(0, 1.58fr);
  gap: 14px;
  margin-bottom: 14px;
}

.report-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}

.report-panel h3 {
  margin: 0;
  color: #111b2a;
  font-size: 1.25rem;
  line-height: 1.1;
  padding: 18px 22px 14px;
}

.total-body-panel dl {
  margin: 0;
}

.total-body-panel div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  min-height: 43px;
  align-items: center;
  border-top: 1px solid #edf2f6;
  padding: 0 22px;
}

.total-body-panel dt,
.total-body-panel dd {
  margin: 0;
  color: #111b2a;
  font-size: 0.94rem;
}

.total-body-panel dd {
  font-weight: 950;
}

.history-panel {
  padding-bottom: 10px;
}

.history-panel svg {
  width: 100%;
  height: auto;
  padding: 0 14px 12px;
}

.report-grid {
  fill: none;
  stroke: #dfe6ec;
  stroke-width: 1.4;
}

.report-line {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4;
}

.report-total,
.report-points circle:nth-child(-n + 5) {
  stroke: var(--navy);
  fill: var(--navy);
}

.report-fat,
.report-points circle:nth-child(n + 6):nth-child(-n + 10) {
  stroke: var(--green);
  fill: var(--green);
}

.report-lean,
.report-points circle:nth-child(n + 11) {
  stroke: #2d6dcc;
  fill: #2d6dcc;
}

.report-points circle {
  stroke-width: 0;
}

.report-labels text {
  fill: #1f3046;
  font-size: 14px;
  font-weight: 850;
}

.report-labels .green {
  fill: #287234;
}

.report-labels .blue {
  fill: #2d6dcc;
}

.regional-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.48fr);
}

.regional-table-wrap {
  overflow-x: auto;
}

.regional-panel table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
  color: #111b2a;
  font-size: 0.82rem;
}

.regional-panel th,
.regional-panel td {
  border-top: 1px solid #edf2f6;
  border-right: 1px solid #edf2f6;
  padding: 10px 12px;
  text-align: right;
  white-space: nowrap;
}

.regional-panel th:first-child,
.regional-panel td:first-child {
  text-align: left;
}

.regional-panel thead th {
  color: #1f3046;
  font-size: 0.75rem;
  font-weight: 900;
}

.regional-panel tbody th {
  font-weight: 750;
}

.regional-panel tfoot th,
.regional-panel tfoot td {
  font-size: 1.05rem;
  font-weight: 950;
}

.regional-figure {
  display: flex;
  min-height: 300px;
  align-items: center;
  justify-content: center;
  border-left: 1px solid #edf2f6;
  background: linear-gradient(180deg, #fbfcfd, #fff);
  padding: 14px;
}

.regional-scan-image {
  width: min(100%, 300px);
  height: auto;
}

.sample-report-note {
  margin-top: 14px;
  font-size: 0.75rem;
}

.url-label {
  margin-bottom: 24px;
  color: var(--green-2);
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-transform: uppercase;
}

.card h3 {
  margin-bottom: 16px;
  font-size: 1.72rem;
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1.04;
}

.card p {
  margin-bottom: 22px;
  font-size: 0.92rem;
}

.text-link {
  margin-top: auto;
  color: var(--navy);
  font-size: 0.86rem;
  font-weight: 950;
}

.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 52px rgba(6, 44, 87, 0.07);
  overflow: hidden;
}

.feature-copy {
  padding: 46px;
}

.feature-copy h2 {
  max-width: 520px;
}

.feature-copy p {
  max-width: 520px;
  margin-top: 20px;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 12px;
  align-items: start;
  color: #28394d;
  font-size: 0.9rem;
  font-weight: 850;
  line-height: 1.45;
}

.check-list li::before {
  content: "";
  width: 18px;
  height: 18px;
  margin-top: 1px;
  border: 2px solid var(--green);
  border-radius: 5px;
  background:
    linear-gradient(135deg, transparent 45%, var(--green) 47%, var(--green) 62%, transparent 64%),
    #f5fbf6;
}

.feature-visual {
  position: relative;
  min-height: 390px;
  background:
    linear-gradient(135deg, #f8fbfc, #fff 45%, #f3faf5);
}

.content-sheet {
  position: absolute;
  left: 15%;
  top: 72px;
  width: 68%;
  min-height: 240px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(6, 44, 87, 0.12);
  padding: 28px;
}

.sheet-line {
  height: 9px;
  border-radius: 99px;
  background: #e7eef3;
  margin-bottom: 14px;
}

.sheet-line:nth-child(1) {
  width: 72%;
  height: 15px;
  background: var(--navy);
}

.sheet-line:nth-child(2) {
  width: 88%;
}

.sheet-line:nth-child(3) {
  width: 78%;
}

.sheet-line:nth-child(4) {
  width: 94%;
}

.sheet-cta {
  margin-top: 30px;
  height: 45px;
  border-radius: 6px;
  background: var(--navy);
}

.keyword-stack {
  position: absolute;
  right: 8%;
  bottom: 44px;
  display: grid;
  gap: 10px;
}

.keyword-stack span {
  width: max-content;
  max-width: 260px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  padding: 10px 14px;
  box-shadow: 0 12px 28px rgba(6, 44, 87, 0.09);
  color: #26384c;
  font-size: 0.8rem;
  font-weight: 900;
}

.path-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.path-card {
  padding: 26px;
}

.path-card span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.55;
}

.cta-panel {
  display: grid;
  grid-template-columns: 1fr 350px;
  align-items: center;
  gap: 56px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, #062c57, #071d3c 72%),
    #062c57;
  color: #fff;
  padding: 52px;
}

.cta-panel h2 {
  color: #fff;
}

.cta-panel p {
  max-width: 600px;
  color: rgba(255, 255, 255, 0.78);
}

.signup-card {
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  padding: 26px;
}

.signup-card strong {
  display: block;
  margin-bottom: 15px;
  font-size: 1.05rem;
  font-weight: 950;
}

.field {
  display: block;
  width: 100%;
  height: 44px;
  margin-bottom: 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: #7f8b98;
  padding: 0 14px;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 700;
}

.signup-card .button {
  width: 100%;
  box-shadow: none;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.faq-card {
  min-height: 120px;
  padding: 24px;
}

.faq-card p {
  margin-bottom: 0;
  font-size: 0.88rem;
}

.site-footer {
  margin-top: 56px;
  border-top: 1px solid var(--line);
  padding: 32px 0 42px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 200px 1fr minmax(260px, 360px);
  gap: 36px;
  align-items: start;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--ink);
  font-weight: 900;
}

.article-hero {
  padding: 74px 0 44px;
}

.article-hero-immersive {
  position: relative;
  min-height: 640px;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 140px 0 78px;
  background: #071725;
  color: #fff;
}

.article-hero-bg-image,
.article-hero-shade {
  position: absolute;
  inset: 0;
}

.article-hero-bg-image {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

.article-hero-shade {
  background:
    linear-gradient(90deg, rgba(5, 14, 26, 0.88) 0%, rgba(5, 14, 26, 0.68) 44%, rgba(5, 14, 26, 0.24) 100%),
    linear-gradient(180deg, rgba(5, 14, 26, 0.16) 0%, rgba(5, 14, 26, 0.78) 100%);
}

.article-hero-immersive .wrap {
  position: relative;
  z-index: 1;
}

.article-hero-immersive .article-layout {
  grid-template-columns: minmax(0, 820px);
}

.article-hero-immersive .article-hero-content {
  max-width: 820px;
}

.article-hero-immersive h1 {
  color: #fff;
  font-size: clamp(3.5rem, 7vw, 6.4rem);
  text-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}

.article-hero-immersive .hero-copy {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 12px 32px rgba(0, 0, 0, 0.26);
}

.article-hero-immersive .eyebrow {
  color: #9be5a4;
}

.article-hero-immersive .meta-pill {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  backdrop-filter: blur(10px);
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 760px) 300px;
  gap: 60px;
  align-items: start;
}

.article-layout h1 {
  max-width: 780px;
  font-size: clamp(3rem, 6vw, 5rem);
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.meta-pill {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  padding: 8px 12px;
  color: #33475e;
  font-size: 0.78rem;
  font-weight: 850;
}

.answer-card {
  position: sticky;
  top: 104px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
  padding: 24px;
}

.answer-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--green-2);
  font-size: 0.75rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.answer-card p {
  margin-bottom: 18px;
  font-size: 0.92rem;
}

.article-image-card {
  padding: 0;
  overflow: hidden;
}

.article-image-card img {
  aspect-ratio: 16 / 10;
}

.article-body {
  padding-bottom: 38px;
}

.article-tag-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 14px;
  align-items: center;
  margin: 0 0 34px;
  border: 1px solid rgba(85, 182, 109, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(85, 182, 109, 0.08), rgba(255, 255, 255, 0.86)),
    #fff;
  padding: 14px 16px;
}

.article-tag-label {
  color: var(--green-2);
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

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

.article-tag-badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border: 1px solid rgba(85, 182, 109, 0.34);
  border-radius: 999px;
  background: #fff;
  padding: 7px 11px;
  color: var(--navy);
  font-size: 0.74rem;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.article-body h2 {
  margin-top: 48px;
  margin-bottom: 18px;
  font-size: clamp(1.8rem, 3vw, 2.45rem);
}

.article-body h3 {
  margin-top: 34px;
  margin-bottom: 12px;
  font-size: 1.35rem;
  line-height: 1.15;
}

.article-body p,
.article-body li {
  font-size: 1.03rem;
}

.article-body ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding-left: 1.2rem;
}

.article-body a {
  color: var(--navy);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.article-body a.external-link {
  display: inline;
}

.article-inline-cta {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  margin: 34px 0 12px;
  padding: 18px 20px 18px 22px;
  border: 1px solid rgba(8, 45, 95, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(85, 182, 109, 0.075), rgba(255, 255, 255, 0.96) 58%),
    #fff;
  box-shadow: 0 14px 34px rgba(6, 44, 87, 0.055);
}

.article-inline-cta::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 18px;
  bottom: 18px;
  width: 3px;
  border-radius: 999px;
  background: var(--green-2);
}

.article-inline-cta p {
  margin: 0;
}

.article-inline-cta .article-inline-cta-kicker {
  color: var(--green-2);
  font-size: 0.62rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}

.article-inline-cta .article-inline-cta-title {
  max-width: 520px;
  margin-top: 7px;
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 950;
  line-height: 1.24;
}

.article-inline-cta .article-inline-cta-copy {
  max-width: 560px;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 750;
  line-height: 1.38;
}

.article-inline-cta .article-inline-cta-button {
  justify-self: end;
  min-width: 164px;
  min-height: 42px;
  padding-inline: 18px;
  border-radius: 7px;
  font-size: 0.78rem;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
}

.external-link-icon {
  display: inline-block;
  width: 0.9em;
  height: 0.9em;
  margin-left: 0.2em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  text-decoration: none;
  vertical-align: -0.08em;
}

.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;
}

.callout {
  margin: 34px 0;
  border-left: 4px solid var(--green);
  border-radius: 0 8px 8px 0;
  background: #f6fbf7;
  padding: 22px 24px;
}

.related {
  width: min(var(--wrap), calc(100vw - 40px));
  margin-top: 46px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.related h2 {
  margin-bottom: 20px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.related-grid-mobile {
  display: none;
}

.related-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 20px;
  font-weight: 950;
  line-height: 1.25;
}

.related-feature-card {
  min-height: 360px;
}

.article-body .related-feature-card {
  color: inherit;
  text-decoration: none;
}

.related-feature-card .research-card-image {
  aspect-ratio: 16 / 10;
}

.related-feature-card .url-label,
.related-feature-card h3,
.related-feature-card p {
  margin-right: 18px;
  margin-left: 18px;
}

.related-feature-card .url-label {
  margin-top: 18px;
}

.related-feature-card h3 {
  font-size: 1.05rem;
  line-height: 1.12;
}

.related-feature-card p {
  font-size: 0.86rem;
  line-height: 1.45;
}

.related-mini-card {
  min-height: 101px;
  padding: 9px;
}

.article-body .related-mini-card {
  color: inherit;
  text-decoration: none;
}

.article-body .related-mini-card strong,
.article-body .related-mini-card span {
  text-decoration: none;
}

.related-mini-card .research-directory-copy strong {
  font-size: 0.86rem;
  line-height: 1.16;
}

.related-mini-card .research-directory-copy span {
  font-size: 0.73rem;
  line-height: 1.26;
}

.article-cta {
  margin-top: 54px;
}

.article-waitlist-section {
  margin-top: 54px;
  scroll-margin-top: 148px;
}

@media (min-width: 981px) {
  .article-waitlist-section {
    width: min(var(--wrap), calc(100vw - 40px));
  }

}

.article-waitlist {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
  gap: 22px 30px;
  align-items: center;
  padding: 30px 32px 24px;
}

.article-waitlist h2 {
  font-size: clamp(2rem, 4vw, 2.45rem);
}

@media (min-width: 981px) {
  .article-waitlist h2 {
    max-width: none;
    font-size: clamp(1.8rem, 2.2vw, 2.25rem);
    white-space: nowrap;
  }
}

.article-waitlist .form-intro p:not(.waitlist-brand):not(.waitlist-fine-print) {
  font-size: 0.98rem;
}

.article-waitlist .waitlist-fine-print {
  font-size: 0.64rem;
  line-height: 1.38;
}

.article-waitlist .waitlist-perks {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: min(100%, 620px);
  margin-top: 18px;
}

.article-waitlist .waitlist-perks li {
  border-right: 1px solid rgba(8, 45, 95, 0.14);
}

.article-waitlist .waitlist-perks li:last-child {
  border-right: 0;
}

.article-waitlist .waitlist-form {
  width: min(100%, 340px);
  min-height: 250px;
  padding: 24px;
  --signup-control-width: 100%;
}

.article-body .article-waitlist .waitlist-safe-note {
  font-size: 11px;
  line-height: 1.35;
}

.article-body .article-waitlist .form-message {
  font-size: 0.75rem;
  line-height: 1.4;
}

@media (max-width: 1080px) {
  .research-topic-pills {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .header-inner {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  body.research-article-page .header-inner {
    gap: 14px;
  }

  .hero {
    padding-top: 54px;
  }

  .hero-grid,
  .intro-panel,
  .feature,
  .cta-panel,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-waitlist {
    grid-template-columns: 1fr;
  }

  .intro-copy {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .article-grid,
  .research-card-grid,
  .path-grid,
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-head {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .research-index-hero {
    min-height: 430px;
  }

  .research-index-hero-bg {
    object-position: 68% center;
  }

  .research-index-hero-content {
    max-width: 560px;
  }

  .research-index-hero-shade {
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.9) 56%, rgba(255, 255, 255, 0.34) 100%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(245, 249, 250, 0.58) 100%);
  }

  .research-topic-pills {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .research-card-carousel-track .research-card {
    flex-basis: calc((100% - 24px) / 2);
  }

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

  .research-insight-intro,
  .research-insight-metric,
  .research-insight-report {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .research-insight-report {
    border-bottom: 0;
  }

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

  .research-location-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .waitlist {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .waitlist-form {
    justify-self: center;
  }

  .research-final-cta-inner {
    display: grid;
    min-height: auto;
    padding: 34px 0;
  }

  .research-map-frame {
    min-height: 240px;
  }

  .sample-report-summary,
  .regional-panel {
    grid-template-columns: 1fr;
  }

  .regional-figure {
    border-left: 0;
    border-top: 1px solid #edf2f6;
  }

  .answer-card {
    position: static;
  }
}

@media (max-width: 760px) {
  body.research-article-page .header-inner {
    min-height: auto;
    padding: 12px 16px 10px;
  }

  body.research-article-page .header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 14px;
    font-size: 0.76rem;
    line-height: 1;
    white-space: nowrap;
  }

  .article-inline-cta {
    grid-template-columns: 1fr;
    gap: 14px;
    margin: 30px 0 6px;
    padding: 18px;
  }

  .article-inline-cta::before {
    left: 0;
  }

  .article-inline-cta-button {
    width: 100%;
  }

  .article-waitlist .waitlist-perks {
    grid-template-columns: 1fr;
  }

  .article-waitlist .waitlist-perks li {
    border-right: 0;
  }

  .related-grid-desktop {
    display: none;
  }

  .related {
    width: auto;
  }

  .related-grid-mobile {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

@media (max-width: 640px) {
  .wrap {
    width: min(var(--wrap), calc(100% - 28px));
  }

  .header-inner {
    min-height: 68px;
    padding: 12px 18px;
  }

  .brand strong {
    font-size: 18px;
  }

  .header-cta {
    padding: 12px 14px;
    font-size: 13px;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 4.4rem);
  }

  .hero h1 {
    font-size: clamp(2.75rem, 13vw, 3.8rem);
    overflow-wrap: anywhere;
  }

  .research-index-hero {
    min-height: auto;
    padding: 58px 0 38px;
  }

  .research-index-hero-bg {
    opacity: 0.38;
    object-position: 78% center;
  }

  .research-index-hero-shade {
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.94) 70%, rgba(255, 255, 255, 0.82) 100%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.32) 0%, rgba(245, 249, 250, 0.82) 100%);
  }

  .research-index-hero h1 {
    font-size: clamp(3rem, 15vw, 4rem);
    line-height: 1;
  }

  .research-final-cta h2 {
    font-size: 1.75rem;
  }

  .research-final-cta-button {
    width: 100%;
    min-width: 0;
  }

  .research-index-hero .hero-copy {
    max-width: 100%;
    font-size: 1rem;
  }

  .research-hero-points {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 34px;
  }

  .research-hero-point {
    display: grid;
    grid-template-columns: 34px 1fr;
    column-gap: 14px;
    align-items: start;
  }

  .research-hero-point svg {
    grid-row: span 2;
    margin-bottom: 0;
  }

  .research-topic-selector {
    padding: 24px 0 18px;
  }

  .research-topic-selector-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .research-topic-pills {
    display: flex;
    gap: 10px;
    margin-right: -14px;
    overflow-x: auto;
    padding: 0 14px 8px 0;
    scroll-snap-type: x proximity;
  }

  .research-topic-pill {
    flex: 0 0 auto;
    min-height: 40px;
    scroll-snap-align: start;
  }

  .research-card-carousel-track {
    gap: 16px;
    margin-right: -14px;
    padding-right: 64px;
  }

  .research-card-carousel-track .research-card {
    flex-basis: min(82vw, 330px);
  }

  .research-carousel-next {
    right: 0;
    width: 48px;
    height: 48px;
  }

  .research-insight-section {
    padding: 0 0 46px;
  }

  .research-directory-section {
    padding: 0 0 54px;
  }

  .research-location-section {
    padding: 0 0 50px;
  }

  .research-waitlist-section {
    padding: 0 0 50px;
  }

  .research-faq-section {
    padding: 8px 0 58px;
  }

  .research-directory-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .research-insight-band {
    grid-template-columns: 1fr;
  }

  .research-insight-intro,
  .research-insight-metric,
  .research-insight-report {
    min-height: auto;
    padding: 22px;
  }

  .research-insight-metric {
    display: grid;
    grid-template-columns: 32px 1fr;
    column-gap: 14px;
  }

  .research-insight-metric svg {
    grid-row: span 2;
    margin-bottom: 0;
  }

  .research-report-action {
    width: min(100%, 300px);
    min-height: 142px;
  }

  .research-report-link {
    min-width: min(100%, 220px);
  }

  .sample-report-header,
  .sample-report-cta {
    flex-direction: column;
  }

  .sample-report-meta {
    grid-template-columns: 1fr;
  }

  .sample-report-meta span {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .sample-report-meta span:last-child {
    border-bottom: 0;
  }

  .sample-report-dialog {
    max-height: 94vh;
  }

  .history-panel {
    overflow-x: hidden;
  }

  .history-panel h3 {
    padding: 16px 18px 6px;
  }

  .history-panel svg {
    width: 100%;
    min-width: 0;
    padding: 0 8px 10px;
  }

  .history-panel text {
    font-size: 13px;
  }

  .research-map-frame {
    min-height: 220px;
  }

  .waitlist {
    padding: 26px 22px;
  }

  .waitlist-perks {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .waitlist-perks li {
    border-right: 0;
  }

  .waitlist-form {
    width: 100%;
    min-height: 330px;
    --signup-control-width: 100%;
    padding: 26px 22px;
  }

  .research-faq-list summary {
    padding: 16px 18px;
  }

  .research-faq-list p {
    padding: 0 18px 18px;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button,
  .hero-actions .signal {
    width: 100%;
  }

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

  .mini-card {
    left: 18px;
    top: 22px;
    width: 210px;
  }

  .search-card {
    right: 18px;
    top: 142px;
    width: 210px;
  }

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

  .stat {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .link-map,
  .article-grid,
  .research-card-grid,
  .path-grid,
  .faq-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .intro-copy,
  .feature-copy,
  .cta-panel {
    padding: 30px;
  }

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

  .article-body p,
  .article-body li {
    font-size: 0.98rem;
  }

  .article-tag-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .article-hero-immersive {
    min-height: 560px;
    padding: 96px 0 56px;
  }

  .article-hero-immersive h1 {
    font-size: clamp(2.75rem, 13vw, 4.05rem);
  }

  .article-hero-shade {
    background:
      linear-gradient(90deg, rgba(5, 14, 26, 0.9) 0%, rgba(5, 14, 26, 0.7) 70%, rgba(5, 14, 26, 0.52) 100%),
      linear-gradient(180deg, rgba(5, 14, 26, 0.1) 0%, rgba(5, 14, 26, 0.82) 100%);
  }
}
