:root {
  --brand-navy: #001838;
  --brand-bg: #001830;
  --brand-teal: #089888;
  --brand-teal-rgb: 8, 152, 136;
  --brand-navy-rgb: 0, 24, 56;
  color: #eef7f4;
  background: var(--brand-bg);
  font-family:
    "IBM Plex Mono", "JetBrains Mono", "SFMono-Regular", Consolas, "Segoe UI",
    ui-monospace, monospace;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  overflow-x: hidden;
}

body {
  background: var(--brand-bg);
}

button,
input {
  font: inherit;
}

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

.data-field {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(to bottom, transparent, black 20%, black 70%, transparent);
}

.top-nav {
  position: fixed;
  top: 18px;
  left: 0;
  z-index: 20;
  display: grid;
  width: 100%;
  grid-template-columns: 1fr minmax(420px, 760px) 1fr;
  gap: 0;
  align-items: center;
  padding: 0 clamp(22px, 4vw, 72px) 0 clamp(8px, 1.4vw, 24px);
  transform: none;
}

.brand {
  display: inline-flex;
  width: fit-content;
  min-height: auto;
  align-items: center;
  gap: 8px;
  padding: 0;
  color: rgba(238, 247, 244, 0.72);
  font-size: 0.78rem;
  font-weight: 680;
  letter-spacing: 0;
}

.brand-logo img {
  display: block;
  width: auto;
  height: 72px;
  object-fit: contain;
}

.brand-mark {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(var(--brand-teal-rgb), 0.46);
  background: rgba(var(--brand-teal-rgb), 0.08);
  color: var(--brand-teal);
  font-size: 0.72rem;
}

.scroll-progress {
  position: relative;
  grid-column: 2;
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2vw, 28px);
  padding: 8px 18px 10px;
  color: rgba(238, 247, 244, 0.48);
  font-size: 0.68rem;
  font-weight: 720;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: transparent;
  backdrop-filter: none;
}

.scroll-progress a {
  position: relative;
  z-index: 1;
  white-space: nowrap;
  transition: color 220ms ease, transform 220ms ease;
}

.scroll-progress a.is-active {
  color: var(--brand-teal);
  transform: translateY(-1px);
}

.progress-line {
  position: absolute;
  right: 18px;
  bottom: 0;
  left: 18px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.16);
}

.progress-line span {
  display: block;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, rgba(var(--brand-teal-rgb), 0.15), var(--brand-teal));
  transition: width 520ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

main {
  position: relative;
  z-index: 2;
}

.hero {
  display: grid;
  min-height: 100vh;
  width: min(1440px, calc(100vw - clamp(44px, 8vw, 144px)));
  margin: 0 auto;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.54fr);
  gap: clamp(42px, 7vw, 112px);
  align-items: center;
  padding: 15vh 0 10vh;
}

.hero-copy {
  max-width: 780px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--brand-teal);
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero h1,
.chapter h2,
.section-heading h2 {
  margin: 0;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 820px;
  font-size: clamp(3rem, 6.4vw, 7.2rem);
  line-height: 0.92;
  font-weight: 760;
}

.lead {
  max-width: 760px;
  margin: 30px 0 0;
  color: rgba(238, 247, 244, 0.74);
  font-size: clamp(0.96rem, 1.15vw, 1.14rem);
  line-height: 1.55;
}

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

.hero-actions a {
  border: 1px solid rgba(var(--brand-teal-rgb), 0.42);
  border-radius: 999px;
  background: rgba(var(--brand-teal-rgb), 0.12);
  color: #e9fffb;
  font-weight: 720;
  padding: 14px 20px;
}

.secondary-action {
  border-color: rgba(255, 255, 255, 0.18) !important;
  background: transparent !important;
  color: rgba(238, 247, 244, 0.72) !important;
}

.signal-panel {
  display: grid;
  gap: 22px;
  align-self: center;
  border-left: 1px solid rgba(var(--brand-teal-rgb), 0.28);
  padding-left: 34px;
}

.signal-panel div {
  padding: 6px 0;
  background: transparent;
}

.signal-panel span,
.stage-card p {
  display: block;
  color: rgba(238, 247, 244, 0.62);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.signal-panel strong {
  display: block;
  margin-top: 10px;
  color: #eef7f4;
  font-size: clamp(2.6rem, 4.2vw, 4.8rem);
  font-weight: 760;
  line-height: 0.9;
}

.chapters {
  display: grid;
  grid-template-columns: minmax(360px, 0.72fr) minmax(0, 1.28fr);
  gap: min(10vw, 140px);
  width: min(1440px, calc(100vw - clamp(44px, 8vw, 144px)));
  margin: 0 auto;
  padding: 8vh 0 10vh;
}

.chapter-stage {
  position: sticky;
  top: 120px;
  height: calc(100vh - 150px);
  display: grid;
  align-items: center;
}

.stage-card {
  min-height: 520px;
  border: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0;
  padding: 34px 0 34px 36px;
  display: grid;
  align-content: end;
  overflow: hidden;
  position: relative;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  transition: transform 420ms ease, border-color 420ms ease;
}

.stage-visual {
  position: absolute;
  top: 44px;
  right: 8px;
  width: min(330px, 82%);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 34% 66% 48% 52% / 48% 38% 62% 52%;
  background:
    radial-gradient(circle at 30% 24%, rgba(var(--brand-teal-rgb), 0.18), transparent 24%),
    radial-gradient(circle at 72% 70%, rgba(var(--brand-navy-rgb), 0.44), transparent 26%),
    rgba(255, 255, 255, 0.025);
  box-shadow:
    inset 0 0 80px rgba(255, 255, 255, 0.04),
    0 0 90px rgba(var(--brand-teal-rgb), 0.08);
  transform: rotate(-8deg);
  transition:
    border-radius 760ms cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 760ms cubic-bezier(0.2, 0.8, 0.2, 1),
    background 760ms ease;
}

.stage-node,
.stage-path {
  position: absolute;
  display: block;
  transition:
    inset 760ms cubic-bezier(0.2, 0.8, 0.2, 1),
    width 760ms cubic-bezier(0.2, 0.8, 0.2, 1),
    height 760ms cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 760ms cubic-bezier(0.2, 0.8, 0.2, 1),
    opacity 500ms ease;
}

.stage-node {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--brand-teal);
  box-shadow: 0 0 30px rgba(var(--brand-teal-rgb), 0.45);
}

.stage-node-b {
  background: #ffffff;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.26);
}

.stage-node-c {
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 0 24px rgba(255, 255, 255, 0.22);
}

.stage-path {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(238, 247, 244, 0.58), transparent);
  transform-origin: left center;
}

.stage-node-a {
  left: 18%;
  top: 28%;
}

.stage-node-b {
  left: 62%;
  top: 22%;
}

.stage-node-c {
  left: 42%;
  top: 64%;
}

.stage-path-a {
  left: 24%;
  top: 32%;
  width: 44%;
  transform: rotate(-7deg);
}

.stage-path-b {
  left: 36%;
  top: 58%;
  width: 34%;
  transform: rotate(42deg);
}

.stage-visual[data-stage-visual="1"] {
  border-radius: 18% 82% 26% 74% / 65% 28% 72% 35%;
  transform: rotate(10deg);
}

.stage-visual[data-stage-visual="1"] .stage-node-a {
  left: 48%;
  top: 16%;
}

.stage-visual[data-stage-visual="1"] .stage-node-b {
  left: 24%;
  top: 58%;
}

.stage-visual[data-stage-visual="1"] .stage-node-c {
  left: 72%;
  top: 64%;
}

.stage-visual[data-stage-visual="1"] .stage-path-a {
  left: 31%;
  top: 53%;
  width: 46%;
  transform: rotate(-48deg);
}

.stage-visual[data-stage-visual="1"] .stage-path-b {
  left: 48%;
  top: 52%;
  width: 34%;
  transform: rotate(38deg);
}

.stage-visual[data-stage-visual="2"] {
  border-radius: 50%;
  transform: rotate(0deg) scale(0.94);
}

.stage-visual[data-stage-visual="2"] .stage-node-a {
  left: 18%;
  top: 50%;
}

.stage-visual[data-stage-visual="2"] .stage-node-b {
  left: 48%;
  top: 20%;
}

.stage-visual[data-stage-visual="2"] .stage-node-c {
  left: 70%;
  top: 62%;
}

.stage-visual[data-stage-visual="2"] .stage-path-a {
  left: 24%;
  top: 48%;
  width: 50%;
  transform: rotate(-30deg);
}

.stage-visual[data-stage-visual="2"] .stage-path-b {
  left: 50%;
  top: 42%;
  width: 38%;
  transform: rotate(56deg);
}

.stage-visual[data-stage-visual="3"] {
  border-radius: 10% 54% 14% 58% / 14% 50% 12% 58%;
  transform: rotate(-14deg) scale(0.9);
}

.stage-visual[data-stage-visual="3"] .stage-node-a {
  left: 20%;
  top: 24%;
}

.stage-visual[data-stage-visual="3"] .stage-node-b {
  left: 62%;
  top: 42%;
}

.stage-visual[data-stage-visual="3"] .stage-node-c {
  left: 34%;
  top: 72%;
}

.stage-visual[data-stage-visual="3"] .stage-path-a {
  left: 26%;
  top: 30%;
  width: 46%;
  transform: rotate(19deg);
}

.stage-visual[data-stage-visual="3"] .stage-path-b {
  left: 28%;
  top: 67%;
  width: 44%;
  transform: rotate(-36deg);
}

.stage-card h2 {
  margin: 10px 0 0;
  max-width: 360px;
  font-size: clamp(2.2rem, 4.2vw, 4.2rem);
  line-height: 0.96;
}

.stage-card small {
  display: block;
  max-width: 380px;
  margin-top: 20px;
  color: rgba(238, 247, 244, 0.58);
  font-size: 0.88rem;
  line-height: 1.6;
}

.chapter-list {
  display: grid;
  gap: 12vh;
}

.chapter {
  min-height: 82vh;
  display: grid;
  align-content: center;
  position: relative;
  padding-left: min(11vw, 160px);
  padding-right: min(6vw, 90px);
  opacity: 0.5;
  transform: translateY(18px);
  transition: opacity 420ms ease, transform 420ms ease;
}

.chapter:nth-child(even) {
  padding-left: min(2vw, 32px);
  padding-right: min(14vw, 190px);
}

.chapter:nth-child(even) .chapter-icon {
  margin-left: auto;
}

.chapter:nth-child(even) h2,
.chapter:nth-child(even) > p:last-child,
.chapter:nth-child(even) .eyebrow {
  margin-left: auto;
  text-align: right;
}

.chapter.is-active {
  opacity: 1;
  transform: translateY(0);
}

.chapter-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 26px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.035);
  color: var(--brand-teal);
  font-size: 1.5rem;
}

.chapter h2 {
  max-width: 800px;
  font-size: clamp(2.15rem, 4.8vw, 5.8rem);
  line-height: 0.95;
  font-weight: 760;
}

.chapter > p:last-child {
  max-width: 620px;
  margin: 28px 0 0;
  color: rgba(238, 247, 244, 0.72);
  font-size: clamp(1rem, 1.5vw, 1.26rem);
  line-height: 1.55;
}

.chapter-cta {
  width: fit-content;
  margin-top: 28px;
  border-bottom: 1px solid rgba(var(--brand-teal-rgb), 0.5);
  color: var(--brand-teal);
  font-size: 0.82rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.chapter:nth-child(even) .chapter-cta {
  margin-left: auto;
}

.intelligence-band {
  padding: 14vh 0;
  background: transparent;
}

.section-heading {
  width: min(1440px, calc(100vw - clamp(44px, 8vw, 144px)));
  margin: 0 auto;
  max-width: 960px;
}

.section-heading h2,
.closing-panel h2 {
  font-size: clamp(2.2rem, 5vw, 5.6rem);
  line-height: 0.98;
}

.feature-grid {
  width: min(1440px, calc(100vw - clamp(44px, 8vw, 144px)));
  margin-right: auto;
  margin-left: auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 68px);
  margin-top: 72px;
}

.feature-card {
  min-height: 230px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  column-gap: 12px;
  align-content: start;
  align-items: center;
  padding: 24px 0 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.feature-card span {
  color: var(--brand-teal);
  font-size: 1.5rem;
  line-height: 1;
}

.feature-card h3 {
  margin: 0;
  font-size: 1.1rem;
}

.feature-card p {
  grid-column: 1 / -1;
  margin: 48px 0 0;
  color: rgba(238, 247, 244, 0.68);
  line-height: 1.55;
}

.site-footer {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(1440px, calc(100vw - clamp(44px, 8vw, 144px)));
  margin: 0 auto;
  justify-content: space-between;
  gap: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(5, 7, 8, 0.94);
  box-shadow: 0 0 0 100vmax rgba(5, 7, 8, 0.94);
  clip-path: inset(0 -100vmax);
  padding: 28px 0 40px;
  color: rgba(238, 247, 244, 0.62);
  font-size: 0.82rem;
}

.site-footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
}

.site-footer strong {
  color: rgba(238, 247, 244, 0.92);
}

.site-footer a {
  color: var(--brand-teal);
}

.explore-page {
  background:
    linear-gradient(180deg, rgba(0, 24, 48, 0.98), rgba(0, 24, 56, 1)),
    var(--brand-bg);
}

.explore-nav {
  display: flex;
  width: min(1440px, calc(100vw - clamp(44px, 8vw, 144px)));
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  color: rgba(238, 247, 244, 0.68);
  font-size: 0.82rem;
}

.explore-nav > a:last-child {
  color: var(--brand-teal);
}

.explore-shell {
  width: min(1440px, calc(100vw - clamp(44px, 8vw, 144px)));
  margin: 0 auto;
}

.explore-hero {
  padding: 9vh 0 6vh;
}

.explore-hero h1 {
  max-width: 940px;
  margin: 0;
  font-size: clamp(2.4rem, 5.6vw, 6rem);
  line-height: 0.98;
}

.explore-search {
  display: grid;
  width: min(980px, 100%);
  min-height: 70px;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  margin-top: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  padding: 12px 14px 12px 22px;
  backdrop-filter: blur(22px) saturate(170%);
}

.search-icon {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(238, 247, 244, 0.86);
  border-radius: 50%;
  position: relative;
}

.search-icon::after {
  position: absolute;
  right: -7px;
  bottom: -5px;
  width: 8px;
  height: 2px;
  content: "";
  background: rgba(238, 247, 244, 0.86);
  border-radius: 4px;
  transform: rotate(45deg);
}

.explore-search input,
.filter-panel input,
.filter-panel select {
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: #ffffff;
}

.explore-search input::placeholder,
.filter-panel input::placeholder {
  color: rgba(238, 247, 244, 0.5);
}

.explore-search button {
  min-height: 46px;
  border: 0;
  border-radius: 6px;
  background: var(--brand-teal);
  color: #ffffff;
  cursor: pointer;
  font-weight: 760;
  padding: 0 18px;
}

.kpi-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.12);
}

.kpi-strip article {
  padding: 24px;
  background: rgba(0, 24, 48, 0.88);
}

.kpi-strip span,
.filter-panel label,
.preview-table span {
  color: rgba(238, 247, 244, 0.58);
  font-size: 0.78rem;
}

.kpi-strip strong {
  display: block;
  margin-top: 10px;
  color: #eef7f4;
  font-size: 2rem;
}

.explore-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 24px;
  padding: 24px 0 10vh;
}

.filter-panel,
.workspace-panel {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.045);
}

.filter-panel {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 22px;
}

.filter-panel h2,
.workspace-panel h2 {
  margin: 0;
}

.filter-panel label {
  display: grid;
  gap: 9px;
}

.filter-panel input,
.filter-panel select {
  min-height: 42px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.workspace-panel {
  padding: 26px;
}

.query-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.query-grid button {
  min-height: 78px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.035);
  color: rgba(238, 247, 244, 0.82);
  cursor: pointer;
  padding: 18px;
  text-align: left;
}

.preview-table {
  display: grid;
  margin-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.preview-table > div {
  display: grid;
  grid-template-columns: 1.3fr 1.3fr 0.7fr 1fr;
  gap: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  padding: 15px 0;
}

.preview-table > div:not(:first-child) span {
  color: rgba(238, 247, 244, 0.8);
}

@media (max-width: 980px) {
  .top-nav {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 18px;
  }

  .brand {
    width: fit-content;
  }

  .scroll-progress {
    grid-column: 2;
  }

  .hero {
    min-height: 110vh;
    width: min(100% - 44px, 760px);
    grid-template-columns: 1fr;
    align-items: end;
    padding-top: 22vh;
  }

  .signal-panel {
    grid-template-columns: repeat(3, 1fr);
    border-left: 0;
    border-top: 1px solid rgba(var(--brand-teal-rgb), 0.28);
    padding-top: 24px;
    padding-left: 0;
  }

  .chapters {
    width: min(100% - 44px, 760px);
    grid-template-columns: 1fr;
  }

  .chapter-stage {
    position: sticky;
    top: 116px;
    height: 360px;
    z-index: 3;
  }

  .stage-card {
    min-height: 330px;
  }

  .stage-visual {
    top: 20px;
    right: 0;
    width: min(260px, 68vw);
    opacity: 0.78;
  }

  .chapter {
    min-height: 78vh;
    padding: 18vh 0 4vh 66px;
  }

  .chapter:nth-child(even) {
    padding-right: 0;
    padding-left: 66px;
  }

  .chapter:nth-child(even) .chapter-icon,
  .chapter:nth-child(even) h2,
  .chapter:nth-child(even) > p:last-child,
  .chapter:nth-child(even) .eyebrow {
    margin-left: 0;
    text-align: left;
  }

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

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

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

@media (max-width: 640px) {
  .top-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    grid-template-columns: 1fr;
    gap: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(5, 7, 8, 0.66);
    padding: 8px 14px 12px;
    backdrop-filter: blur(18px) saturate(150%);
  }

  .brand {
    min-height: 44px;
    justify-self: center;
  }

  .brand-logo img {
    height: 58px;
  }

  .scroll-progress {
    grid-column: 1;
    justify-content: flex-start;
    gap: 16px;
    overflow-x: auto;
    padding-right: 4px;
    padding-left: 4px;
    scrollbar-width: none;
  }

  .scroll-progress::-webkit-scrollbar {
    display: none;
  }

  .hero {
    width: calc(100% - 32px);
    padding: 32vh 0 9vh;
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 5.4rem);
  }

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

  .chapters,
  .intelligence-band {
    width: calc(100% - 32px);
    margin-right: auto;
    margin-left: auto;
  }

  .chapters {
    position: relative;
    display: block;
    padding-top: 8vh;
  }

  .intelligence-band {
    padding-right: 0;
    padding-left: 0;
  }

  .section-heading,
  .feature-grid {
    width: 100%;
  }

  .site-footer {
    width: calc(100% - 32px);
    flex-direction: column;
  }

  .chapter-stage {
    position: sticky;
    top: 118px;
    z-index: 0;
    height: 0;
    pointer-events: none;
  }

  .stage-card {
    min-height: calc(100vh - 130px);
    border-left: 0;
    padding: 0;
    opacity: 0.58;
  }

  .stage-card p,
  .stage-card h2,
  .stage-card small {
    display: none;
  }

  .stage-visual {
    position: absolute;
    top: 13vh;
    left: calc(50% - min(320px, 82vw) / 2);
    width: min(320px, 82vw);
    margin-bottom: 0;
  }

  .chapter-list {
    position: relative;
    z-index: 2;
  }

  .chapter {
    min-height: 84vh;
    padding: 22vh 0 8vh;
  }

  .chapter:nth-child(even) {
    padding-left: 0;
  }

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

  .explore-nav,
  .explore-shell {
    width: calc(100% - 32px);
  }

  .explore-search {
    grid-template-columns: auto 1fr;
  }

  .explore-search button {
    grid-column: 1 / -1;
  }

  .kpi-strip,
  .query-grid {
    grid-template-columns: 1fr;
  }

  .preview-table > div {
    grid-template-columns: 1fr;
  }
}
