:root {
  --ink: #111418;
  --muted: #737981;
  --line: #e8eaed;
  --soft: #f6f7f8;
  --paper: #fbfcfd;
  --paper-cool: #f4f7fa;
  --blue: #245cff;
  --green: #28a779;
  --dark: #101418;
  --max: 1240px;
  --nodrift-line-logo: url("data:image/svg+xml,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%20220%20150'%3E%3Cpath%20d%3D'M110%208L116%2060L111.5%2069H108.5L104%2060L110%208ZM110%20142L104%2090L108.5%2081H111.5L116%2090L110%20142Z'%20fill%3D'none'%20stroke%3D'%233fcfd1'%20stroke-width%3D'2.1'%20stroke-linejoin%3D'round'%2F%3E%3Cpath%20d%3D'M99%2075L110%2064L121%2075L110%2086Z'%20fill%3D'none'%20stroke%3D'%233fcfd1'%20stroke-width%3D'2.1'%20stroke-linejoin%3D'round'%2F%3E%3Cpath%20d%3D'M30%20103V57L76%20103V57M90%20103V57H121C141%2057%20153%2066%20153%2080C153%2094%20141%20103%20121%20103H90M194%2058H166C153%2058%20146%2064%20146%2073C146%2082%20153%2085%20166%2086.5L179%2088C191%2089.5%20198%2095%20198%20103C198%20111%20190%20116%20176%20116H148'%20fill%3D'none'%20stroke%3D'%237f8790'%20stroke-width%3D'4.3'%20stroke-linecap%3D'round'%20stroke-linejoin%3D'round'%2F%3E%3Cpath%20d%3D'M89%2059C94%2047%20102%2041%20110%2041C118%2041%20126%2047%20131%2059M89%20101C94%20113%20102%20119%20110%20119C118%20119%20126%20113%20131%20101'%20fill%3D'none'%20stroke%3D'%23b8bec5'%20stroke-width%3D'2.3'%20stroke-linecap%3D'round'%20opacity%3D'.78'%2F%3E%3Cpath%20d%3D'M16%2059V38C16%2034%2018%2032%2022%2031L55%2023M204%2059V38C204%2034%20202%2032%20198%2031L165%2023M16%2091V112C16%20116%2018%20118%2022%20119L55%20127M204%2091V112C204%20116%20202%20118%20198%20119L165%20127'%20fill%3D'none'%20stroke%3D'%239da4ac'%20stroke-width%3D'2.2'%20stroke-linecap%3D'round'%20stroke-linejoin%3D'round'%20opacity%3D'.82'%2F%3E%3Cpath%20d%3D'M4%2075H24M196%2075H216'%20fill%3D'none'%20stroke%3D'%233fcfd1'%20stroke-width%3D'1.9'%20stroke-linecap%3D'round'%20opacity%3D'.72'%2F%3E%3C%2Fsvg%3E");
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 82% 8%, rgba(36, 92, 255, 0.026), transparent 30vw),
    radial-gradient(circle at 18% 34%, rgba(40, 167, 121, 0.018), transparent 26vw),
    linear-gradient(rgba(17, 20, 24, 0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 20, 24, 0.02) 1px, transparent 1px),
    linear-gradient(180deg, #ffffff 0%, var(--paper) 34%, var(--paper-cool) 100%);
  background-size: auto, auto, 44px 44px, 44px 44px, auto;
  background-attachment: fixed, fixed, fixed, fixed, fixed;
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  letter-spacing: 0;
}

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

a:focus-visible {
  outline: 2px solid rgba(36, 92, 255, 0.45);
  outline-offset: 4px;
}

header {
  position: sticky;
  top: 0;
  z-index: 5;
  background: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid rgba(214, 220, 228, 0.52);
  backdrop-filter: blur(20px);
}

.nav {
  width: min(var(--max), calc(100vw - 48px));
  height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 300;
  gap: 28px;
}

.brand {
  font-size: 19px;
  font-weight: 400;
}

.navlinks {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: max-content;
  align-items: center;
  justify-content: end;
  gap: 14px;
  color: rgba(115, 121, 129, 0.82);
  font-size: 12px;
  white-space: nowrap;
}

.navlinks a {
  text-align: center;
  padding: 6px 0;
}

.navlinks a.active-page {
  color: var(--ink);
  font-weight: 500;
  border-bottom: 1px solid rgba(36, 92, 255, 0.55);
}

main {
  overflow: hidden;
}

section {
  width: min(var(--max), calc(100vw - 48px));
  margin: 0 auto;
}

h1,
h2,
h3 {
  margin: 0;
  font-weight: 200;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(56px, 7.8vw, 118px);
  line-height: 0.94;
}

h2 {
  font-size: clamp(38px, 4.6vw, 74px);
  line-height: 1.02;
}

h3 {
  font-size: 24px;
  line-height: 1.2;
}

p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.55;
  max-width: 640px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.chip {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 300;
  background: #fff;
  transition: border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.mock-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 20px 60px rgba(17, 20, 24, 0.06);
  overflow: hidden;
}

.panel-top {
  height: 54px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 300;
}

.panel-body {
  min-height: 500px;
  padding: 24px;
  display: grid;
  gap: 16px;
  align-content: start;
}

.workflow-map {
  min-height: 500px;
  padding: 22px 22px 24px;
  gap: 18px;
  align-content: start;
}

.workflow-map-intro {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 18px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
}

.workflow-map-intro span {
  border-bottom: 1px solid rgba(232, 234, 237, 0.9);
  padding: 0 2px 12px;
}

.workflow-visual {
  position: relative;
  min-height: 412px;
  border-radius: 8px;
  background:
    linear-gradient(115deg, rgba(36, 92, 255, 0.1) 0 18%, transparent 18% 100%),
    linear-gradient(145deg, transparent 0 28%, rgba(40, 167, 121, 0.12) 28% 42%, transparent 42% 100%),
    linear-gradient(28deg, transparent 0 58%, rgba(240, 132, 74, 0.12) 58% 72%, transparent 72% 100%),
    linear-gradient(160deg, transparent 0 74%, rgba(220, 95, 151, 0.11) 74% 88%, transparent 88% 100%),
    linear-gradient(180deg, rgba(247, 249, 251, 0.92), rgba(255, 255, 255, 0.96));
  padding: 28px 18px 26px;
  overflow: hidden;
}

.workflow-visual::before {
  content: "";
  position: absolute;
  left: 58px;
  right: 245px;
  top: 104px;
  height: 2px;
  background: linear-gradient(90deg, rgba(36, 92, 255, 0.34), rgba(40, 167, 121, 0.34));
  box-shadow: 0 0 0 5px rgba(36, 92, 255, 0.035);
}

.workflow-visual::after {
  content: "";
  position: absolute;
  left: 50px;
  right: 50px;
  bottom: 118px;
  height: 2px;
  background: linear-gradient(90deg, rgba(40, 167, 121, 0.34), rgba(240, 132, 74, 0.32), rgba(220, 95, 151, 0.28));
  box-shadow: 0 0 0 5px rgba(40, 167, 121, 0.035);
}

.workflow-level {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
}

.startup-level {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: 56%;
  margin-left: 3%;
}

.project-level {
  grid-template-columns: repeat(7, minmax(0, 1fr));
  margin-top: 102px;
}

.startup-level::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 94px;
  right: -16%;
  top: 60px;
  background: linear-gradient(180deg, rgba(40, 167, 121, 0.34), rgba(36, 92, 255, 0.08));
  box-shadow: 0 0 0 5px rgba(40, 167, 121, 0.035);
}

.workflow-step {
  position: relative;
  min-height: 122px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.64);
  padding: 13px 10px 12px;
  display: grid;
  align-content: start;
  justify-items: start;
  gap: 7px;
  box-shadow:
    inset 0 0 0 1px rgba(232, 234, 237, 0.64),
    0 18px 44px rgba(17, 20, 24, 0.075);
  backdrop-filter: blur(16px);
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.workflow-step small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 300;
  line-height: 1.45;
}

.workflow-step h3 {
  font-size: 13px;
  line-height: 1.14;
  font-weight: 400;
}

.workflow-step p {
  font-size: 14px;
  max-width: none;
  display: none;
}

.workflow-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow:
    0 12px 26px rgba(17, 20, 24, 0.14),
    inset 0 0 0 1px rgba(255, 255, 255, 0.28);
}

.workflow-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.s1 .workflow-icon { background: linear-gradient(135deg, #245cff, #4d83ff); }
.s2 .workflow-icon { background: linear-gradient(135deg, #2669ff, #3eb4ff); }
.s3 .workflow-icon { background: linear-gradient(135deg, #2a8bff, #34c5d4); }
.s4 .workflow-icon { background: linear-gradient(135deg, #20a7d8, #23ba92); }
.s5 .workflow-icon { background: linear-gradient(135deg, #18a875, #5bc762); }
.s6 .workflow-icon { background: linear-gradient(135deg, #74b84b, #c3c144); }
.s7 .workflow-icon { background: linear-gradient(135deg, #d0b43a, #ec9f39); }
.s8 .workflow-icon { background: linear-gradient(135deg, #f09336, #ed754f); }
.s9 .workflow-icon { background: linear-gradient(135deg, #ef6959, #df5f8f); }
.s10 .workflow-icon { background: linear-gradient(135deg, #bc5fc5, #5d7cf7); }

.workflow-level .workflow-step::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(36, 92, 255, 0.28);
  top: 29px;
  right: -15px;
}

.startup-level .workflow-step:nth-child(3)::after,
.project-level .workflow-step:nth-child(7)::after {
  display: none;
}

.project-level .workflow-step::after {
  background: rgba(40, 167, 121, 0.28);
}

.workflow-step:nth-child(5)::before,
.workflow-step:nth-child(6)::before {
  content: none;
}

.workflow-level .workflow-step:first-child::before {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(36, 92, 255, 0.2);
  top: 30px;
  left: -13px;
}

.workspace-surface {
  grid-template-columns: 72px 1fr;
  gap: 0;
  padding: 0;
  background: #fff;
}

.surface-rail {
  border-right: 1px solid var(--line);
  background: var(--soft);
  padding: 18px 14px;
  display: grid;
  align-content: start;
  gap: 12px;
}

.surface-rail span {
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.surface-main {
  min-width: 0;
  padding: 22px;
  display: grid;
  grid-template-rows: auto auto auto;
  gap: 18px;
}

.surface-status {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 300;
}

.surface-status span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 10px;
  background: #fff;
}

.surface-footer {
  display: grid;
  grid-template-columns: 1fr 0.7fr 0.45fr;
  gap: 10px;
}

.surface-footer span {
  height: 10px;
  border-radius: 999px;
  background: #e3e6ea;
}

.panel-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.panel-card {
  min-height: 150px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.workspace-surface .panel-grid {
  align-content: stretch;
}

.workspace-surface .panel-card {
  min-height: 118px;
}

.workspace-surface .panel-card > div {
  display: grid;
  gap: 12px;
}

.workspace-surface .mark {
  width: 34px;
  height: 34px;
}

.product-hero-panel .panel-body {
  min-height: 500px;
}

.product-choice-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-content: center;
}

.product-choice-group {
  display: grid;
  gap: 12px;
}

.product-choice-group > span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

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

.product-choice-grid.level-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-choice-card {
  min-height: 128px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #fff, #fbfcfd);
  padding: 18px;
  display: grid;
  align-content: start;
  gap: 10px;
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.product-choice-card h3 {
  font-size: 20px;
  font-weight: 300;
}

.product-choice-card p {
  max-width: none;
  font-size: 14px;
  line-height: 1.45;
}

.product-choice-card:hover {
  border-color: rgba(36, 92, 255, 0.24);
  transform: translateY(-3px);
  box-shadow:
    0 20px 42px rgba(17, 20, 24, 0.08),
    0 2px 8px rgba(17, 20, 24, 0.04);
}

.product-family-visual .panel-body {
  min-height: 500px;
}

.product-family-map {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-content: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(36, 92, 255, 0.11), transparent 28%),
    radial-gradient(circle at 88% 78%, rgba(40, 167, 121, 0.12), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(247, 250, 252, 0.88));
}

.family-node {
  position: relative;
  z-index: 1;
  min-height: 116px;
  border: 1px solid rgba(214, 220, 228, 0.94);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  padding: 20px;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 10px 16px;
  align-items: center;
  box-shadow: 0 20px 48px rgba(17, 20, 24, 0.055);
  backdrop-filter: blur(14px);
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.family-node .mark {
  grid-row: span 2;
}

.family-node strong {
  color: var(--ink);
  font-size: 28px;
  font-weight: 300;
  line-height: 1.15;
}

.family-node small {
  color: var(--muted);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.35;
}

.family-node.current {
  border-top: 3px solid rgba(36, 92, 255, 0.7);
}

.family-node.review {
  width: 88%;
  margin-left: 12%;
  border-top: 3px solid rgba(40, 167, 121, 0.68);
}

.family-node.future {
  width: 76%;
  border-top: 3px solid rgba(230, 160, 60, 0.7);
}

.family-node:hover {
  border-color: rgba(36, 92, 255, 0.28);
  transform: translateY(-3px);
  box-shadow:
    0 24px 54px rgba(17, 20, 24, 0.085),
    0 4px 12px rgba(17, 20, 24, 0.04);
}

.family-rail {
  position: absolute;
  inset: auto 20px 18px 20px;
  display: grid;
  grid-template-columns: 1fr 0.72fr 0.46fr;
  gap: 10px;
  opacity: 0.78;
}

.family-rail span {
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(36, 92, 255, 0.18), rgba(40, 167, 121, 0.18));
}

.planned-apps-section {
  padding-top: 34px;
}

.section-heading {
  margin-bottom: 24px;
  display: grid;
  gap: 12px;
}

.section-heading span {
  color: #7d8794;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-heading h2 {
  max-width: 760px;
}

.section-heading p {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

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

.app-target-card {
  min-height: 218px;
  border: 1px solid rgba(214, 220, 228, 0.92);
  border-radius: 8px;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 251, 253, 0.88));
  display: grid;
  align-content: start;
  gap: 14px;
  color: inherit;
  text-decoration: none;
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.app-target-card h3 {
  color: var(--ink);
  font-size: 28px;
  font-weight: 300;
  line-height: 1.15;
}

.app-target-card p {
  max-width: none;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.48;
}

.app-target-card:hover {
  transform: translateY(-3px);
  box-shadow:
    0 22px 48px rgba(17, 20, 24, 0.08),
    0 2px 8px rgba(17, 20, 24, 0.04);
}

.app-status {
  width: fit-content;
  border-radius: 999px;
  padding: 7px 10px;
  color: #5e6672;
  background: rgba(232, 236, 242, 0.78);
  font-size: 12px;
  font-weight: 400;
}

.app-target-card.active {
  border-top: 3px solid rgba(36, 92, 255, 0.72);
}

.app-target-card.active .app-status {
  color: #214fbf;
  background: rgba(36, 92, 255, 0.1);
}

.app-target-card.review {
  border-top: 3px solid rgba(40, 167, 121, 0.7);
}

.app-target-card.review .app-status {
  color: #287957;
  background: rgba(40, 167, 121, 0.12);
}

.app-target-card.planned {
  border-top: 3px solid rgba(230, 160, 60, 0.72);
}

.app-target-card.planned .app-status {
  color: #87601e;
  background: rgba(230, 160, 60, 0.15);
}

.product-selector-panel .panel-body {
  min-height: 500px;
}

.product-family-selector-hero {
  align-items: start;
  padding-top: 34px;
}

.product-family-selector-hero .hero-copy {
  padding-top: 0;
}

.page-hero.product-family-selector-hero .title-two-line {
  padding-top: 0;
}

.product-family-selector-hero .hero-copy p {
  max-width: 620px;
  font-size: 20px;
  line-height: 1.58;
}

.product-family-selector-hero .hero-copy code {
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  font-size: 0.92em;
  font-weight: 400;
}

.product-family-selector-hero .hero-copy a {
  color: #214fbf;
  font-weight: 400;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.product-family-selector-card {
  min-height: 0;
  border: 1px solid rgba(214, 220, 228, 0.94);
  border-radius: 8px;
  padding: 34px;
  background:
    radial-gradient(circle at 18% 20%, rgba(36, 92, 255, 0.18), transparent 34%),
    radial-gradient(circle at 88% 82%, rgba(40, 167, 121, 0.16), transparent 38%),
    linear-gradient(90deg, rgba(36, 92, 255, 0.07), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 252, 0.92));
  box-shadow:
    0 28px 70px rgba(17, 20, 24, 0.08),
    0 2px 8px rgba(17, 20, 24, 0.04);
  display: grid;
  align-content: center;
  gap: 20px;
}

.product-family-selector-card::before {
  content: "NoDrift App Selector";
  width: fit-content;
  border-radius: 999px;
  padding: 8px 11px;
  color: #214fbf;
  background: rgba(36, 92, 255, 0.1);
  font-size: 12px;
  font-weight: 500;
}

.selector-showcase-top {
  min-height: 132px;
  display: grid;
  align-content: center;
  gap: 10px;
}

.selector-kicker {
  color: #6f7885;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.selector-showcase-top strong {
  color: var(--ink);
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 300;
  line-height: 0.98;
}

.product-selector-body {
  display: grid;
  align-content: start;
  gap: 18px;
  background:
    radial-gradient(circle at 15% 20%, rgba(36, 92, 255, 0.12), transparent 30%),
    radial-gradient(circle at 85% 84%, rgba(40, 167, 121, 0.12), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(247, 250, 252, 0.92));
}

.app-select-label {
  color: var(--muted);
  font-size: 15px;
  font-weight: 400;
}

.app-selector {
  width: 100%;
  min-height: 68px;
  border: 1px solid rgba(190, 199, 211, 0.95);
  border-radius: 8px;
  padding: 0 48px 0 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 252, 254, 0.95));
  color: var(--ink);
  font: inherit;
  font-size: 18px;
  font-weight: 300;
  outline: none;
  box-shadow:
    0 18px 44px rgba(17, 20, 24, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  cursor: pointer;
}

.app-selector:focus {
  border-color: rgba(36, 92, 255, 0.5);
  box-shadow: 0 0 0 4px rgba(36, 92, 255, 0.08);
}

.product-family-selector-card p {
  max-width: none;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.product-family-selector-card code {
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  font-size: 0.92em;
  font-weight: 400;
}

.product-family-selector-card a {
  color: #214fbf;
  font-weight: 400;
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

.selector-preview-card {
  min-height: 150px;
  border: 1px solid rgba(214, 220, 228, 0.94);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  padding: 18px;
  display: grid;
  align-content: start;
  gap: 14px;
  box-shadow: 0 18px 42px rgba(17, 20, 24, 0.05);
}

.selector-preview-card h3 {
  color: var(--ink);
  font-size: 22px;
  font-weight: 300;
  line-height: 1.16;
}

.product-tier-section {
  width: min(var(--max), calc(100vw - 48px));
  margin: 0 auto;
  padding: 0 0 76px;
}

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

.tier-column {
  min-height: 430px;
  border: 1px solid rgba(214, 220, 228, 0.94);
  border-top-width: 3px;
  border-radius: 8px;
  padding: 24px;
  background: #fff;
  display: grid;
  align-content: start;
  gap: 18px;
  box-shadow: 0 18px 48px rgba(17, 20, 24, 0.045);
}

.demonstrator-tier {
  border-top-color: rgba(36, 92, 255, 0.72);
}

.basic-tier {
  border-top-color: rgba(40, 167, 121, 0.74);
}

.extended-tier {
  border-top-color: rgba(230, 160, 60, 0.78);
}

.teams-tier {
  border-top-color: rgba(110, 91, 210, 0.72);
}

.tier-topline {
  min-height: 96px;
  display: grid;
  gap: 10px;
  align-content: start;
}

.tier-topline h3 {
  color: var(--ink);
  font-size: 25px;
  font-weight: 300;
  line-height: 1.16;
  white-space: nowrap;
}

.teams-tier .tier-topline h3 {
  font-size: 17px;
  letter-spacing: 0;
}

.tier-topline strong {
  width: fit-content;
  border-radius: 999px;
  padding: 8px 11px;
  color: #214fbf;
  background: rgba(36, 92, 255, 0.1);
  font-size: 13px;
  font-weight: 500;
}

.tier-column p {
  max-width: none;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.52;
}

.tier-includes {
  color: var(--ink);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.35;
  min-height: 42px;
  display: flex;
  align-items: start;
}

.tier-feature-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.42;
}

.tier-feature-list li {
  border-top: 1px solid rgba(232, 234, 237, 0.86);
  padding-top: 12px;
}

.tier-feature-list li:first-child {
  border-top: 0;
  padding-top: 0;
}

.tier-feature-list strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.25;
}

.tier-next-step {
  margin: 16px 0 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.tier-column .chip {
  align-self: end;
  justify-self: start;
}

.contact-hero {
  align-items: end;
}

.contact-note {
  border: 1px solid rgba(214, 220, 228, 0.96);
  border-radius: 8px;
  padding: 30px;
  background:
    radial-gradient(circle at 85% 20%, rgba(40, 167, 121, 0.12), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(247, 250, 252, 0.92));
  box-shadow: 0 24px 60px rgba(17, 20, 24, 0.05);
}

.contact-note span,
.contact-path-card span {
  display: block;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-note p {
  margin: 0;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.45;
}

.contact-path-section {
  width: min(var(--max), calc(100vw - 48px));
  margin: 0 auto;
  padding: 0 0 34px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.contact-path-card {
  min-height: 360px;
  border: 1px solid rgba(214, 220, 228, 0.96);
  border-top-width: 3px;
  border-radius: 8px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.86);
  display: grid;
  align-content: start;
  gap: 16px;
}

.contact-path-card h2 {
  margin: 0;
  color: var(--ink);
  font-size: 31px;
  font-weight: 300;
  line-height: 1.05;
}

.contact-path-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.contact-path-card .chip {
  align-self: end;
  justify-self: start;
}

.disabled-chip {
  border-color: rgba(214, 220, 228, 0.94);
  color: #7f8995;
  background: rgba(247, 250, 252, 0.9);
  cursor: default;
}

.copy-section {
  width: min(var(--max), calc(100vw - 48px));
  margin: 0 auto;
  padding: 0 0 30px;
}

.copy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.copy-card {
  min-height: 238px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
  background: #fff;
  display: grid;
  align-content: start;
  gap: 18px;
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.copy-card.wide {
  grid-column: span 2;
}

.copy-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.55;
}

.copy-card li + li {
  margin-top: 8px;
}

.detail-section {
  width: min(var(--max), calc(100vw - 48px));
  margin: 0 auto;
  padding: 34px 0 86px;
  display: grid;
  gap: 0;
}

.detail-row {
  border-top: 1px solid var(--line);
  padding: 28px 0;
  display: grid;
  grid-template-columns: 0.38fr 0.62fr;
  gap: 42px;
  align-items: start;
}

.detail-row:last-child {
  border-bottom: 1px solid var(--line);
}

.detail-row h3 {
  font-size: 20px;
  line-height: 1.25;
}

.detail-row p {
  font-size: 16px;
  max-width: 760px;
}

.home-feature-section {
  width: min(var(--max), calc(100vw - 48px));
  margin: 0 auto;
  padding: 108px 0 104px;
}

.home-outcome-band {
  width: min(var(--max), calc(100vw - 48px));
  margin: 72px auto 0;
  border: 1px solid rgba(178, 190, 206, 0.82);
  border-radius: 8px;
  background:
    linear-gradient(120deg, rgba(36, 92, 255, 0.2) 0%, rgba(27, 170, 188, 0.14) 44%, rgba(40, 167, 121, 0.13) 100%),
    rgba(255, 255, 255, 0.84);
  box-shadow: 0 30px 78px rgba(36, 92, 255, 0.095);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
}

.home-outcome-band a {
  min-height: 170px;
  padding: 34px;
  border-left: 1px solid rgba(178, 190, 206, 0.64);
  display: grid;
  align-content: space-between;
  gap: 22px;
  position: relative;
}

.home-outcome-band a::before {
  content: "";
  width: 42px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #245cff, #28a779);
}

.home-outcome-band a:first-child {
  border-left: 0;
}

.home-outcome-band span,
.home-route-card span {
  color: rgba(65, 71, 80, 0.86);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.35;
}

.home-outcome-band strong {
  max-width: 280px;
  color: var(--ink);
  font-size: 24px;
  font-weight: 300;
  line-height: 1.25;
}

.home-card-section {
  padding: 58px 0 46px;
}

.home-card-section .copy-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.home-card-section .copy-card {
  min-height: 248px;
  padding: 30px;
  gap: 20px;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.home-card-section .copy-card.wide {
  grid-column: span 1;
}

.home-search-panel {
  width: min(var(--max), calc(100vw - 48px));
  margin: 0 auto 104px;
  position: relative;
  border: 1px solid rgba(200, 208, 218, 0.98);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 22px 58px rgba(17, 20, 24, 0.055);
  padding: 22px;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 20px;
  z-index: 3;
}

.docs-home-search {
  width: 100%;
  margin: 0 0 54px;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
  border-color: rgba(159, 171, 187, 0.96);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.96)),
    radial-gradient(ellipse at 12% 0%, rgba(36, 92, 255, 0.07), transparent 44%);
  box-shadow:
    0 24px 70px rgba(17, 20, 24, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.docs-home-search .home-lookup-window {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(184, 195, 209, 0.96);
}

.docs-home-search .home-lookup-window span,
.docs-home-search .home-lookup-window label {
  font-size: 15px;
  font-weight: 500;
}

.docs-home-search + .docs-grid {
  padding-top: 26px;
  border-top: 1px solid rgba(226, 231, 237, 0.92);
}

.home-route-section {
  width: min(var(--max), calc(100vw - 48px));
  margin: 0 auto;
  padding: 18px 0 116px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.home-route-card {
  min-height: 224px;
  border: 1px solid rgba(214, 220, 228, 0.92);
  border-radius: 8px;
  padding: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 250, 252, 0.92));
  box-shadow: 0 18px 44px rgba(17, 20, 24, 0.045);
  display: grid;
  align-content: start;
  gap: 18px;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.home-route-card:nth-child(1) {
  border-top: 3px solid rgba(36, 92, 255, 0.68);
}

.home-route-card:nth-child(2) {
  border-top: 3px solid rgba(27, 170, 188, 0.68);
}

.home-route-card:nth-child(3) {
  border-top: 3px solid rgba(40, 167, 121, 0.68);
}

.home-route-card h3 {
  font-size: 26px;
  font-weight: 300;
}

.home-route-card p {
  font-size: 15px;
  line-height: 1.55;
}

.home-workflow-preview {
  padding: 0 0 102px;
}

.home-workflow-preview .hero-workflow-image {
  width: min(860px, 100%);
  margin: 0 auto;
}

.home-workflow-preview .hero-workflow-image img {
  max-height: 560px;
}

.home-lookup-window {
  border: 1px solid rgba(214, 220, 228, 0.92);
  border-radius: 8px;
  background: #fff;
  padding: 20px;
  box-shadow: none;
  display: grid;
  gap: 14px;
}

.home-lookup-window span,
.home-lookup-window label {
  color: var(--ink);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
}

.home-preset-select {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.35;
  text-align: left;
  cursor: pointer;
}

.home-search-line button {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.35;
  padding: 13px 16px;
  cursor: pointer;
}

.home-preset-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  right: 0;
  border: 1px solid rgba(214, 220, 228, 0.92);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 28px 72px rgba(17, 20, 24, 0.12);
  padding: 14px;
  display: grid;
  gap: 12px;
}

.home-preset-dropdown[hidden] {
  display: none;
}

.home-preset-dropdown section {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 12px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
}

.home-preset-dropdown h3 {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 4px;
}

.home-preset-dropdown button {
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 13px;
  line-height: 1.25;
  text-align: left;
  padding: 7px 8px;
  cursor: pointer;
}

.home-preset-dropdown button:hover,
.home-preset-dropdown button:focus-visible {
  background: var(--soft);
  outline: none;
}

.home-preset-answer {
  grid-column: 1 / -1;
  border: 1px solid rgba(214, 220, 228, 0.92);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 54px rgba(17, 20, 24, 0.07);
  padding: 18px;
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 18px;
}

.home-preset-answer[hidden] {
  display: none;
}

.home-preset-answer article {
  display: grid;
  gap: 10px;
}

.home-preset-answer article span {
  color: var(--muted);
  font-size: 13px;
}

.home-preset-answer h3 {
  font-size: 22px;
  font-weight: 400;
}

.home-preset-answer p {
  font-size: 15px;
  line-height: 1.55;
}

.home-preset-answer > div {
  display: grid;
  gap: 10px;
}

.home-preset-answer a {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: #fff;
  display: grid;
  gap: 4px;
}

.home-preset-answer a span {
  color: var(--muted);
  font-size: 12px;
}

.home-preset-answer a strong {
  font-size: 14px;
  font-weight: 400;
}

.home-search-line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.home-search-line input {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.35;
}

.home-search-line input::placeholder {
  color: var(--ink);
  opacity: 1;
}

.home-search-line input::-webkit-input-placeholder {
  color: var(--ink);
  opacity: 1;
}

.home-search-line input::-moz-placeholder {
  color: var(--ink);
  opacity: 1;
}

.home-search-line input:focus {
  outline: 2px solid rgba(36, 92, 255, 0.18);
  border-color: rgba(36, 92, 255, 0.34);
}

.home-feature-section .section-title {
  max-width: 820px;
  margin-bottom: 30px;
}

.home-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.home-feature {
  min-height: 232px;
  border: 1px solid rgba(214, 220, 228, 0.78);
  border-radius: 8px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 46px rgba(17, 20, 24, 0.045);
}

.home-feature h3 {
  font-size: 20px;
  font-weight: 300;
  line-height: 1.25;
  margin-bottom: 18px;
}

.home-feature p {
  font-size: 15px;
  line-height: 1.55;
}

.home-outcome-band {
  margin-top: 58px;
  border: 0;
  background: transparent;
  box-shadow: none;
  gap: 16px;
  overflow: visible;
}

.home-outcome-band a {
  min-height: 198px;
  border: 1px solid rgba(199, 208, 220, 0.8);
  border-left: 1px solid rgba(199, 208, 220, 0.8);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(247, 250, 252, 0.76)),
    radial-gradient(ellipse at 12% 0%, rgba(36, 92, 255, 0.1), transparent 56%);
  box-shadow: 0 18px 52px rgba(17, 20, 24, 0.045);
}

.home-outcome-band a:nth-child(2) {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(248, 252, 251, 0.78)),
    radial-gradient(ellipse at 16% 0%, rgba(27, 170, 188, 0.12), transparent 58%);
}

.home-outcome-band a:nth-child(3) {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(248, 252, 249, 0.78)),
    radial-gradient(ellipse at 16% 0%, rgba(40, 167, 121, 0.12), transparent 58%);
}

.home-outcome-band a::before {
  height: 2px;
  width: 58px;
}

.home-outcome-band strong {
  max-width: 340px;
  font-size: 22px;
}

.home-journey-section {
  width: min(var(--max), calc(100vw - 48px));
  margin: 0 auto;
  padding: 104px 0 42px;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 70px;
  align-items: center;
}

.home-journey-copy {
  display: grid;
  gap: 24px;
}

.home-journey-copy span,
.home-feature-intro span {
  display: none;
}

.home-journey-copy h2,
.home-feature-intro h2 {
  max-width: 720px;
  font-size: clamp(44px, 5.6vw, 78px);
  font-weight: 200;
  line-height: 1.04;
}

.home-journey-copy p,
.home-feature-intro p {
  max-width: 620px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.home-journey-visual {
  border: 1px solid rgba(194, 204, 218, 0.84);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(246, 249, 252, 0.88)),
    radial-gradient(ellipse at 14% 10%, rgba(63, 207, 209, 0.12), transparent 42%);
  box-shadow: 0 24px 70px rgba(17, 20, 24, 0.06);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
}

.home-journey-visual div {
  min-height: 170px;
  padding: 28px;
  border-top: 1px solid rgba(218, 225, 234, 0.82);
  border-left: 1px solid rgba(218, 225, 234, 0.82);
  display: grid;
  align-content: start;
  gap: 12px;
}

.home-journey-visual div:nth-child(1),
.home-journey-visual div:nth-child(2) {
  border-top: 0;
}

.home-journey-visual div:nth-child(odd) {
  border-left: 0;
}

.home-journey-visual span {
  color: rgba(36, 92, 255, 0.62);
  font-size: 13px;
}

.home-journey-visual strong {
  font-size: 26px;
  font-weight: 300;
}

.home-journey-visual p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.home-feature-section {
  padding-top: 34px;
}

.home-feature-intro {
  margin-bottom: 38px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.home-feature-intro p {
  display: none;
}

.home-feature-section .section-title {
  display: none;
}

.home-feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.home-feature {
  min-height: 292px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.9));
  position: relative;
  overflow: hidden;
}

.home-feature::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, rgba(36, 92, 255, 0.52), rgba(63, 207, 209, 0.44), transparent);
}

.home-feature:nth-child(1)::before {
  background: linear-gradient(90deg, rgba(36, 92, 255, 0.68), rgba(63, 207, 209, 0.32), transparent);
}

.home-feature:nth-child(2)::before {
  background: linear-gradient(90deg, rgba(40, 167, 121, 0.68), rgba(135, 205, 120, 0.32), transparent);
}

.home-feature:nth-child(3)::before {
  background: linear-gradient(90deg, rgba(230, 160, 60, 0.72), rgba(40, 167, 121, 0.28), transparent);
}

.home-feature:nth-child(4)::before {
  background: linear-gradient(90deg, rgba(220, 95, 151, 0.62), rgba(36, 92, 255, 0.28), transparent);
}

.home-feature:nth-child(5)::before {
  background: linear-gradient(90deg, rgba(27, 170, 188, 0.72), rgba(36, 92, 255, 0.28), transparent);
}

.home-feature:nth-child(1),
.home-feature:nth-child(2) {
  grid-column: auto;
  min-height: 292px;
}

.home-feature:nth-child(3),
.home-feature:nth-child(4),
.home-feature:nth-child(5) {
  grid-column: auto;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 249, 0.92)),
    radial-gradient(ellipse at 10% 0%, rgba(40, 167, 121, 0.07), transparent 48%);
}

.home-feature:nth-child(6) {
  grid-column: auto;
  min-height: 292px;
  display: block;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 249, 0.92)),
    radial-gradient(ellipse at 12% 0%, rgba(36, 92, 255, 0.07), transparent 52%);
}

.home-feature:nth-child(6)::before {
  background: linear-gradient(90deg, rgba(120, 96, 210, 0.66), rgba(40, 167, 121, 0.32), transparent);
}

.home-feature:nth-child(6) p {
  color: var(--muted);
  max-width: 760px;
}

.home-feature:nth-child(6) h3 {
  grid-row: auto;
}

.home-feature:nth-child(6) a {
  grid-column: auto;
}

.home-feature a,
.story-article a {
  color: var(--accent);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid rgba(36, 92, 255, 0.28);
}

.home-feature a {
  align-self: end;
  width: fit-content;
  margin-top: 8px;
  font-size: 14px;
}

.home-feature a:hover,
.story-article a:hover {
  border-bottom-color: currentColor;
}

.home-feature h3::before {
  content: "0" counter(feature);
  counter-increment: feature;
  display: block;
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
}

.home-feature-grid {
  counter-reset: feature;
}

.home-route-section {
  padding-top: 28px;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 16px;
}

.home-story-strip {
  width: min(var(--max), calc(100vw - 48px));
  margin: 0 auto;
  padding: 0 0 76px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 64px;
  align-items: start;
}

.home-story-strip > div:first-child {
  display: grid;
  gap: 16px;
}

.home-story-strip span {
  color: var(--accent);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.home-story-strip h2 {
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.04;
  font-weight: 300;
}

.home-story-strip p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.story-teaser-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.story-teaser-card {
  min-height: 230px;
  border-top: 3px solid rgba(27, 170, 188, 0.58);
  padding-top: 22px;
  color: var(--ink);
  text-decoration: none;
  display: grid;
  align-content: start;
  gap: 14px;
}

.story-teaser-card:nth-child(2) {
  border-top-color: rgba(218, 142, 72, 0.54);
}

.story-teaser-card h3 {
  font-size: 30px;
  line-height: 1.06;
  font-weight: 300;
}

.home-route-card {
  min-height: 190px;
  border-top: 1px solid rgba(214, 220, 228, 0.92);
}

.home-route-card:nth-child(1),
.home-route-card:nth-child(2),
.home-route-card:nth-child(3) {
  grid-column: span 4;
}

.home-route-card:nth-child(4),
.home-route-card:nth-child(5) {
  grid-column: span 6;
}

.home-route-card:nth-child(1) {
  border-top: 3px solid rgba(36, 92, 255, 0.58);
}

.home-route-card:nth-child(2) {
  border-top: 3px solid rgba(27, 170, 188, 0.58);
}

.home-route-card:nth-child(3) {
  border-top: 3px solid rgba(40, 167, 121, 0.58);
}

.home-route-card:nth-child(4) {
  border-top: 3px solid rgba(146, 102, 198, 0.52);
}

.home-route-card:nth-child(5) {
  border-top: 3px solid rgba(218, 142, 72, 0.52);
}

.home-sales-focus {
  width: min(var(--max), calc(100vw - 48px));
  margin: 0 auto;
  padding: 74px 0 78px;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 72px;
  align-items: start;
  border-bottom: 1px solid rgba(210, 218, 228, 0.78);
}

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

.home-sales-copy span,
.home-product-path span,
.home-final-cta span {
  color: var(--accent);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.home-sales-copy h2,
.home-product-path h2,
.home-final-cta h2 {
  font-size: clamp(34px, 4.8vw, 66px);
  line-height: 1.03;
  font-weight: 300;
}

.home-sales-copy p,
.home-final-cta p {
  max-width: 650px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.home-benefit-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(210, 218, 228, 0.84);
}

.home-benefit-list li {
  padding: 18px 0;
  border-bottom: 1px solid rgba(210, 218, 228, 0.84);
  display: grid;
  grid-template-columns: minmax(180px, 0.42fr) minmax(0, 1fr);
  gap: 28px;
}

.home-benefit-list strong {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.3;
}

.home-benefit-list span {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.home-product-path,
.home-final-cta {
  width: min(var(--max), calc(100vw - 48px));
  margin: 0 auto;
  padding: 72px 0;
  display: grid;
  gap: 34px;
  border-bottom: 1px solid rgba(210, 218, 228, 0.78);
}

.home-product-path > div:first-child,
.home-final-cta > div:first-child {
  max-width: 840px;
  display: grid;
  gap: 18px;
}

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

.home-tier-line a {
  min-height: 132px;
  border-top: 3px solid rgba(36, 92, 255, 0.48);
  color: var(--ink);
  text-decoration: none;
  padding-top: 18px;
  display: grid;
  align-content: start;
  gap: 10px;
}

.home-tier-line a:nth-child(2) {
  border-top-color: rgba(27, 170, 188, 0.54);
}

.home-tier-line a:nth-child(3) {
  border-top-color: rgba(40, 167, 121, 0.54);
}

.home-tier-line a:nth-child(4) {
  border-top-color: rgba(218, 142, 72, 0.54);
}

.home-tier-line strong {
  font-size: 24px;
  line-height: 1.12;
  font-weight: 300;
}

.home-tier-line span {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.4;
}

.home-final-cta {
  padding-bottom: 94px;
  border-bottom: 0;
  grid-template-columns: minmax(0, 0.92fr) minmax(260px, 0.5fr);
  align-items: end;
}

.home-final-cta nav {
  display: grid;
  gap: 10px;
}

.home-final-cta a {
  color: var(--ink);
  text-decoration: none;
  border: 1px solid rgba(210, 218, 228, 0.9);
  border-radius: 999px;
  padding: 13px 18px;
  text-align: center;
  font-size: 15px;
}

.note {
  border-top: 1px solid var(--line);
  padding-top: 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.45;
}

.panel-row-line {
  height: 10px;
  border-radius: 999px;
  background: #e3e6ea;
}

.panel-row-line.short { width: 54%; }
.panel-row-line.medium { width: 76%; }
.panel-row-line.blue { background: rgba(36, 92, 255, 0.25); }
.panel-row-line.green { background: rgba(40, 167, 121, 0.28); }

.two-up {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.large-card {
  min-height: 280px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.section-title {
  width: min(var(--max), calc(100vw - 48px));
  margin: 0 auto;
  padding: 132px 0 52px;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 70px;
  align-items: end;
}

.label {
  color: var(--muted);
  font-size: 15px;
  font-weight: 300;
}

.page-hero {
  min-height: auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 74px;
  align-items: start;
  padding: 100px 0 96px;
}

.home-hero {
  --orbit-x: 54%;
  --orbit-y: 48%;
  --orbit-depth: 1;
  width: 100%;
  max-width: none;
  min-height: calc(100vh - 72px);
  grid-template-columns: minmax(0, 920px);
  gap: 0;
  align-content: center;
  justify-content: center;
  padding: clamp(88px, 13vh, 150px) 0 clamp(110px, 16vh, 180px);
  position: relative;
  overflow: hidden;
}

.home-orbit-field {
  position: absolute;
  inset: -10% 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.82;
  transform-style: preserve-3d;
  perspective: 1200px;
}

.home-orbit-field::before,
.home-orbit-field::after {
  content: "";
  position: absolute;
  left: var(--orbit-x);
  top: var(--orbit-y);
  width: min(96vw, 1120px);
  height: min(42vw, 430px);
  transform: translate(-50%, -50%) scale(var(--orbit-depth)) rotateX(12deg) rotateY(-18deg) rotateZ(-5deg);
  pointer-events: none;
  border-radius: 999px;
  background-repeat: no-repeat;
  clip-path: polygon(1% 56%, 10% 40%, 23% 31%, 37% 34%, 49% 49%, 62% 62%, 76% 59%, 91% 42%, 99% 37%, 95% 54%, 82% 70%, 66% 76%, 49% 67%, 35% 51%, 21% 48%, 8% 63%);
}

.home-orbit-field::before {
  background:
    radial-gradient(circle at 5% 58%, rgba(36, 92, 255, 0.66) 0 1.7px, transparent 2.6px),
    radial-gradient(circle at 11% 48%, rgba(27, 170, 188, 0.64) 0 1.45px, transparent 2.4px),
    radial-gradient(circle at 18% 39%, rgba(146, 102, 198, 0.48) 0 1.35px, transparent 2.35px),
    radial-gradient(circle at 27% 35%, rgba(40, 167, 121, 0.56) 0 1.55px, transparent 2.45px),
    radial-gradient(circle at 36% 39%, rgba(36, 92, 255, 0.58) 0 1.45px, transparent 2.4px),
    radial-gradient(circle at 44% 49%, rgba(218, 142, 72, 0.44) 0 1.45px, transparent 2.4px),
    radial-gradient(circle at 51% 58%, rgba(27, 170, 188, 0.58) 0 1.6px, transparent 2.5px),
    radial-gradient(circle at 60% 65%, rgba(36, 92, 255, 0.62) 0 1.45px, transparent 2.4px),
    radial-gradient(circle at 69% 65%, rgba(40, 167, 121, 0.5) 0 1.45px, transparent 2.4px),
    radial-gradient(circle at 78% 58%, rgba(146, 102, 198, 0.48) 0 1.35px, transparent 2.35px),
    radial-gradient(circle at 87% 46%, rgba(27, 170, 188, 0.56) 0 1.5px, transparent 2.45px),
    radial-gradient(circle at 96% 39%, rgba(36, 92, 255, 0.62) 0 1.7px, transparent 2.6px),
    radial-gradient(circle at 14% 61%, rgba(218, 142, 72, 0.32) 0 1.2px, transparent 2.2px),
    radial-gradient(circle at 24% 55%, rgba(36, 92, 255, 0.35) 0 1.2px, transparent 2.2px),
    radial-gradient(circle at 33% 50%, rgba(27, 170, 188, 0.36) 0 1.2px, transparent 2.2px),
    radial-gradient(circle at 57% 49%, rgba(146, 102, 198, 0.34) 0 1.2px, transparent 2.2px),
    radial-gradient(circle at 72% 49%, rgba(218, 142, 72, 0.32) 0 1.2px, transparent 2.2px),
    radial-gradient(circle at 84% 57%, rgba(40, 167, 121, 0.34) 0 1.2px, transparent 2.2px),
    linear-gradient(105deg, transparent 0 4%, rgba(36, 92, 255, 0.05) 18%, rgba(27, 170, 188, 0.08) 45%, rgba(40, 167, 121, 0.05) 70%, transparent 96%);
  filter: drop-shadow(0 16px 30px rgba(36, 92, 255, 0.09));
  mask-image: linear-gradient(90deg, transparent 0, #000 9%, #000 91%, transparent 100%);
  animation: orbitFieldMorph 3.4s ease-in-out infinite alternate;
}

.home-orbit-field::after {
  width: min(76vw, 880px);
  height: min(30vw, 320px);
  background:
    radial-gradient(ellipse at 14% 58%, rgba(36, 92, 255, 0.22) 0 8%, transparent 24%),
    radial-gradient(ellipse at 36% 41%, rgba(27, 170, 188, 0.18) 0 10%, transparent 29%),
    radial-gradient(ellipse at 57% 64%, rgba(146, 102, 198, 0.16) 0 10%, transparent 30%),
    radial-gradient(ellipse at 78% 48%, rgba(40, 167, 121, 0.16) 0 9%, transparent 28%),
    linear-gradient(108deg, transparent 0 9%, rgba(36, 92, 255, 0.12) 22%, rgba(27, 170, 188, 0.08) 48%, rgba(218, 142, 72, 0.08) 68%, transparent 93%);
  filter: blur(8px);
  mask-image: linear-gradient(90deg, transparent 0, #000 14%, #000 86%, transparent 100%);
  opacity: 0.54;
  animation: orbitFieldDepth 4.2s ease-in-out infinite alternate;
}

@keyframes orbitFieldMorph {
  0% {
    transform: translate(-50%, -50%) scale(calc(var(--orbit-depth) * 0.9)) rotateX(28deg) rotateY(-28deg) rotateZ(-8deg) skewX(-7deg);
    filter: blur(0);
  }
  50% {
    transform: translate(-50%, -50%) scale(calc(var(--orbit-depth) * 1.05)) rotateX(54deg) rotateY(18deg) rotateZ(4deg) skewX(6deg);
    filter: blur(0.1px) drop-shadow(0 18px 36px rgba(27, 170, 188, 0.1));
  }
  100% {
    transform: translate(-50%, -50%) scale(calc(var(--orbit-depth) * 0.95)) rotateX(18deg) rotateY(30deg) rotateZ(9deg) skewX(-2deg);
    filter: blur(0);
  }
}

@keyframes orbitFieldDepth {
  0% {
    transform: translate(-50%, -50%) scale(calc(var(--orbit-depth) * 1.14)) rotateX(64deg) rotateY(22deg) rotateZ(-10deg);
    opacity: 0.38;
  }
  100% {
    transform: translate(-50%, -50%) scale(calc(var(--orbit-depth) * 0.82)) rotateX(10deg) rotateY(-24deg) rotateZ(8deg);
    opacity: 0.7;
  }
}

.home-hero::before,
.home-hero::after {
  content: "";
  position: absolute;
  inset: 2% -12% 4%;
  pointer-events: none;
  z-index: 0;
}

.home-hero::before,
.home-hero::after {
  display: none;
}

.home-hero::before {
  background:
    radial-gradient(circle at 20% 68%, rgba(40, 167, 121, 0.48) 0 1.5px, transparent 2px),
    radial-gradient(circle at 32% 28%, rgba(36, 92, 255, 0.52) 0 1.5px, transparent 2px),
    radial-gradient(circle at 58% 18%, rgba(27, 170, 188, 0.44) 0 1.4px, transparent 2px),
    radial-gradient(circle at 72% 58%, rgba(36, 92, 255, 0.44) 0 1.5px, transparent 2px),
    radial-gradient(circle at 46% 82%, rgba(236, 135, 54, 0.44) 0 1.4px, transparent 2px);
  background-size: 74px 74px, 92px 92px, 116px 116px, 86px 86px, 104px 104px;
  background-position: 0 0, 32px 18px, 16px 42px, 58px 8px, 20px 22px;
  opacity: 0.82;
  mask-image: radial-gradient(ellipse at 52% 46%, #000 0 42%, transparent 72%);
}

.home-hero::after {
  background:
    conic-gradient(from 12deg at 54% 48%, transparent 0 8deg, rgba(36, 92, 255, 0.24) 8deg 9deg, transparent 9deg 20deg, rgba(40, 167, 121, 0.2) 20deg 21deg, transparent 21deg 42deg),
    radial-gradient(ellipse at 54% 48%, transparent 0 28%, rgba(36, 92, 255, 0.06) 31%, transparent 50%);
  opacity: 0.75;
  mask-image: radial-gradient(ellipse at 54% 48%, #000 0 46%, transparent 74%);
}

.page-hero .mock-panel {
  min-height: 500px;
}

.home-hero .mock-panel {
  min-height: 560px;
}

.home-control-board {
  display: none;
}

.home-control-board::before {
  content: "";
  position: absolute;
  left: var(--orbit-x, 54%);
  top: var(--orbit-y, 48%);
  width: 220px;
  height: 170px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 8% 70%, rgba(255, 255, 255, 0.72) 0 1.15px, transparent 1.95px),
    radial-gradient(circle at 18% 62%, rgba(255, 255, 255, 0.68) 0 1.15px, transparent 1.95px),
    radial-gradient(circle at 28% 53%, rgba(255, 255, 255, 0.64) 0 1.15px, transparent 1.95px),
    radial-gradient(circle at 39% 44%, rgba(255, 255, 255, 0.6) 0 1.15px, transparent 1.95px),
    radial-gradient(circle at 50% 36%, rgba(255, 255, 255, 0.54) 0 1.15px, transparent 1.95px),
    radial-gradient(circle at 62% 31%, rgba(255, 255, 255, 0.48) 0 1.15px, transparent 1.95px),
    radial-gradient(circle at 74% 31%, rgba(255, 255, 255, 0.42) 0 1.15px, transparent 1.95px),
    radial-gradient(circle at 86% 36%, rgba(255, 255, 255, 0.34) 0 1.15px, transparent 1.95px);
  transform: translate(-8%, -12%);
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.24));
}

.home-control-board::after {
  content: "";
  position: absolute;
  left: var(--orbit-x, 54%);
  top: var(--orbit-y, 48%);
  width: 150px;
  height: 130px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 12% 58%, rgba(255, 255, 255, 0.48) 0 1px, transparent 1.8px),
    radial-gradient(circle at 26% 50%, rgba(255, 255, 255, 0.43) 0 1px, transparent 1.8px),
    radial-gradient(circle at 40% 45%, rgba(255, 255, 255, 0.38) 0 1px, transparent 1.8px),
    radial-gradient(circle at 55% 44%, rgba(255, 255, 255, 0.33) 0 1px, transparent 1.8px),
    radial-gradient(circle at 70% 51%, rgba(255, 255, 255, 0.28) 0 1px, transparent 1.8px);
  opacity: 0.75;
  transform: translate(-4%, 18%);
}

.home-control-board span {
  position: absolute;
  width: min(42vw, 620px);
  height: min(30vw, 420px);
  border-radius: 999px;
  filter: blur(34px);
}

.home-control-board span:nth-child(1) {
  left: 8%;
  top: 18%;
  background: rgba(36, 92, 255, 0.12);
}

.home-control-board span:nth-child(2) {
  right: 0;
  top: 12%;
  background: rgba(120, 96, 210, 0.12);
}

.home-control-board span:nth-child(3) {
  left: 32%;
  bottom: -8%;
  background: rgba(40, 167, 121, 0.09);
}

@keyframes nodriftCloudDrift {
  from {
    background-position: 0 0, 0 0, 0 0, 0 0;
  }
  to {
    background-position: 42px -28px, -34px 22px, 18px 38px, -22px -18px;
  }
}

.hero-workflow-image {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8f9fa;
  box-shadow: 0 20px 60px rgba(17, 20, 24, 0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-workflow-image figcaption {
  width: 100%;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.25;
}

.hero-workflow-image img {
  display: block;
  width: calc(100% - 28px);
  max-width: 100%;
  height: auto;
  max-height: 610px;
  object-fit: contain;
  margin: 14px;
  border: 1px solid #d8dee5;
  box-sizing: border-box;
}

.workflow-setup-hero img {
  opacity: 0.58;
  filter: saturate(0.48) contrast(0.92) brightness(1.06);
}

.workflow-story-section {
  width: min(var(--max), calc(100vw - 48px));
  margin: 0 auto;
  padding: 40px 0 98px;
  display: grid;
  gap: 46px;
}

.workflow-story {
  max-width: 980px;
  display: grid;
  gap: 26px;
}

.workflow-story span {
  color: var(--accent);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.workflow-story h2 {
  max-width: 820px;
  font-size: clamp(34px, 4.4vw, 60px);
  line-height: 1.02;
  font-weight: 300;
}

.workflow-flow-list {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  border-top: 0;
  counter-reset: flow;
}

.workflow-flow-list li {
  min-height: 210px;
  padding: 22px;
  border: 1px solid rgba(210, 218, 228, 0.86);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 252, 0.92));
  box-shadow: 0 18px 46px rgba(17, 20, 24, 0.045);
  display: grid;
  align-content: space-between;
  gap: 18px;
  position: relative;
  overflow: hidden;
}

.workflow-flow-list li + li {
  padding-left: 24px;
  border-left: 1px solid rgba(210, 218, 228, 0.86);
}

.workflow-flow-list li::before {
  content: counter(flow, decimal-leading-zero);
  counter-increment: flow;
  color: rgba(36, 92, 255, 0.82);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
}

.workflow-flow-list li::after {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, rgba(36, 92, 255, 0.68), rgba(63, 207, 209, 0.34), transparent);
}

.workflow-flow-list li:nth-child(2)::after {
  background: linear-gradient(90deg, rgba(40, 167, 121, 0.68), rgba(135, 205, 120, 0.34), transparent);
}

.workflow-flow-list li:nth-child(3)::after {
  background: linear-gradient(90deg, rgba(230, 160, 60, 0.72), rgba(220, 95, 151, 0.28), transparent);
}

.workflow-flow-list li:nth-child(4)::after {
  background: linear-gradient(90deg, rgba(120, 96, 210, 0.66), rgba(40, 167, 121, 0.32), transparent);
}

.workflow-flow-list strong {
  font-size: 21px;
  font-weight: 400;
  line-height: 1.2;
}

.workflow-flow-list p {
  max-width: 210px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.workflow-note-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  border-top: 0;
  padding-top: 8px;
}

.workflow-note-links a {
  color: var(--ink);
  text-decoration: none;
  display: grid;
  gap: 8px;
  min-height: 124px;
  padding: 22px;
  border: 1px solid rgba(210, 218, 228, 0.86);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 40px rgba(17, 20, 24, 0.04);
}

.workflow-note-links span {
  color: var(--accent);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.workflow-note-links strong {
  font-size: 21px;
  font-weight: 400;
  line-height: 1.35;
}

.workflow-loop-hero {
  position: relative;
  min-height: 0;
  border: 1px solid rgba(210, 218, 228, 0.86);
  border-radius: 8px;
  padding: 34px;
  background:
    radial-gradient(ellipse at 14% 16%, rgba(36, 92, 255, 0.11), transparent 30%),
    radial-gradient(ellipse at 88% 82%, rgba(40, 167, 121, 0.12), transparent 34%),
    radial-gradient(ellipse at 76% 18%, rgba(138, 86, 50, 0.08), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(247, 250, 252, 0.88));
  box-shadow: 0 24px 70px rgba(17, 20, 24, 0.06);
  overflow: hidden;
}

.workflow-loop-hero::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 188px;
  bottom: 58px;
  width: 1px;
  background: linear-gradient(180deg, rgba(36, 92, 255, 0.18), rgba(40, 167, 121, 0.18));
  border: 0;
  border-radius: 0;
}

.workflow-loop-hero::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 180px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(36, 92, 255, 0.42);
  box-shadow:
    0 86px 0 rgba(43, 124, 120, 0.4),
    0 172px 0 rgba(117, 96, 46, 0.38),
    0 258px 0 rgba(83, 57, 71, 0.36),
    0 344px 0 rgba(36, 92, 255, 0.36),
    0 430px 0 rgba(40, 167, 121, 0.36),
    0 516px 0 rgba(138, 86, 50, 0.34),
    0 602px 0 rgba(120, 96, 210, 0.34),
    0 688px 0 rgba(49, 93, 122, 0.34),
    0 774px 0 rgba(35, 93, 69, 0.34);
  transform: translateX(-4px);
}

.path-intro {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto 34px;
  padding: 26px;
  border: 1px solid rgba(210, 218, 228, 0.86);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  display: grid;
  gap: 10px;
  text-align: center;
}

.path-intro span {
  color: var(--accent);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.path-intro strong {
  color: var(--ink);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.08;
  font-weight: 300;
}

.path-intro p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.workflow-path-list {
  position: relative;
  z-index: 2;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 18px;
}

.workflow-path-list li {
  width: min(470px, calc(50% - 42px));
  min-height: 150px;
  padding: 24px;
  border: 1px solid rgba(210, 218, 228, 0.72);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(248, 250, 252, 0.84));
  box-shadow: 0 18px 42px rgba(17, 20, 24, 0.045);
  display: grid;
  align-content: start;
  gap: 12px;
}

.workflow-path-list li:nth-child(odd) {
  margin-right: calc(50% + 42px);
}

.workflow-path-list li:nth-child(even) {
  margin-left: calc(50% + 42px);
}

.workflow-path-list li::before {
  content: "";
  width: 28px;
  height: 4px;
  border-radius: 999px;
  margin-bottom: 4px;
  background: rgba(36, 92, 255, 0.58);
}

.workflow-path-list strong {
  color: var(--ink);
  font-size: 22px;
  font-weight: 400;
}

.workflow-path-list p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.workflow-path-list li:nth-child(2)::before { background: rgba(43, 124, 120, 0.58); }
.workflow-path-list li:nth-child(3)::before { background: rgba(117, 96, 46, 0.58); }
.workflow-path-list li:nth-child(4)::before { background: rgba(83, 57, 71, 0.54); }
.workflow-path-list li:nth-child(5)::before { background: rgba(36, 92, 255, 0.52); }
.workflow-path-list li:nth-child(6)::before { background: rgba(40, 167, 121, 0.54); }
.workflow-path-list li:nth-child(7)::before { background: rgba(138, 86, 50, 0.52); }
.workflow-path-list li:nth-child(8)::before { background: rgba(120, 96, 210, 0.52); }
.workflow-path-list li:nth-child(9)::before { background: rgba(49, 93, 122, 0.52); }
.workflow-path-list li:nth-child(10)::before { background: rgba(35, 93, 69, 0.54); }

.workflow-path-hero {
  min-height: 0;
}

.workflow-path-hero::before,
.workflow-path-hero::after {
  display: none;
}

.workflow-path-hero .path-intro {
  max-width: 980px;
}

.workflow-path-hero .workflow-path-list {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.workflow-path-hero .workflow-path-list li,
.workflow-path-hero .workflow-path-list li:nth-child(odd),
.workflow-path-hero .workflow-path-list li:nth-child(even) {
  width: auto;
  min-height: 210px;
  margin: 0;
  padding: 20px;
}

.workflow-path-hero .workflow-path-list strong {
  font-size: 20px;
}

.workflow-path-hero .workflow-path-list p {
  font-size: 14px;
  line-height: 1.45;
}

.workflow-wide-hero {
  grid-template-columns: minmax(0, 1fr);
  gap: 34px;
  padding-top: 18px;
}

.workflow-wide-hero .title-one-line {
  max-width: 100%;
  padding-top: 0;
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(360px, 1fr);
  column-gap: 56px;
  align-items: end;
}

.workflow-wide-hero .title-one-line h1,
.workflow-wide-hero .title-one-line .rule {
  grid-column: 1;
}

.workflow-wide-hero .title-one-line p {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  margin-top: 18px;
}

.workflow-wide-hero .workflow-loop-hero {
  width: 100%;
  min-height: 0;
  padding: 30px;
  overflow: visible;
}

.workflow-wide-hero .workflow-loop-hero::before,
.workflow-wide-hero .workflow-loop-hero::after {
  display: none;
}

.workflow-wide-hero .path-intro {
  max-width: none;
  margin: 0 0 28px;
  text-align: center;
}

.workflow-wide-hero .path-intro p {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

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

.workflow-wide-hero .workflow-path-list li,
.workflow-wide-hero .workflow-path-list li:nth-child(odd),
.workflow-wide-hero .workflow-path-list li:nth-child(even) {
  width: auto;
  min-height: 214px;
  margin: 0;
  padding: 0;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.92)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(238, 246, 247, 0.82));
  box-shadow: 0 10px 24px rgba(17, 20, 24, 0.05);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.workflow-wide-hero .workflow-path-list li:hover {
  transform: translateY(-3px);
  border-color: rgba(36, 92, 255, 0.28);
  box-shadow: 0 22px 52px rgba(17, 20, 24, 0.09);
}

.workflow-wide-hero .workflow-path-list a {
  min-height: 214px;
  padding: 28px 24px 24px;
  display: grid;
  align-content: start;
  gap: 14px;
  color: inherit;
  text-decoration: none;
}

.workflow-wide-hero .workflow-path-list li::before {
  width: 88px;
  height: 4px;
  margin-bottom: 2px;
}

.workflow-wide-hero .workflow-path-list strong {
  min-height: 50px;
  font-size: 22px;
  line-height: 1.12;
  font-weight: 400;
}

.workflow-wide-hero .workflow-path-list p {
  max-width: 34ch;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.workflow-page-hero {
  grid-template-columns: minmax(0, 1fr);
  gap: 44px;
  padding-top: 74px;
}

.workflow-page-hero .title-one-line {
  padding-top: 0;
  max-width: 840px;
}

.workflow-page-hero .title-one-line p {
  max-width: 720px;
  font-size: 20px;
}

.workflow-page-hero .workflow-loop-hero {
  width: min(1120px, 100%);
  min-height: 1120px;
  margin: 0 auto;
  padding: 0;
  overflow: visible;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.96) 0 17%, transparent 18%),
    radial-gradient(circle at 50% 50%, rgba(36, 92, 255, 0.08) 0 31%, transparent 32%),
    radial-gradient(circle at 50% 50%, transparent 0 38%, rgba(255, 255, 255, 0.7) 39% 42%, transparent 43%),
    radial-gradient(ellipse at 22% 18%, rgba(36, 92, 255, 0.12), transparent 32%),
    radial-gradient(ellipse at 86% 76%, rgba(40, 167, 121, 0.13), transparent 34%),
    radial-gradient(ellipse at 30% 86%, rgba(138, 86, 50, 0.1), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 252, 0.9));
}

.workflow-page-hero .workflow-loop-hero::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(690px, 66vw);
  height: min(690px, 66vw);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 2px dashed rgba(36, 92, 255, 0.24);
  background:
    conic-gradient(from -88deg,
      rgba(36, 92, 255, 0.26),
      rgba(43, 124, 120, 0.24),
      rgba(117, 96, 46, 0.24),
      rgba(83, 57, 71, 0.22),
      rgba(49, 93, 122, 0.23),
      rgba(35, 93, 69, 0.24),
      rgba(36, 92, 255, 0.26));
  -webkit-mask: radial-gradient(circle, transparent 0 50%, #000 51% 52%, transparent 53%);
  mask: radial-gradient(circle, transparent 0 50%, #000 51% 52%, transparent 53%);
}

.workflow-page-hero .workflow-loop-hero::after {
  content: ">";
  position: absolute;
  left: calc(50% + 320px);
  top: calc(50% - 42px);
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: rgba(36, 92, 255, 0.74);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(36, 92, 255, 0.2);
  box-shadow: 0 12px 28px rgba(17, 20, 24, 0.08);
}

.workflow-page-hero .path-intro {
  position: absolute;
  z-index: 4;
  left: 50%;
  top: 50%;
  width: min(330px, 35vw);
  min-height: 330px;
  margin: 0;
  padding: 38px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  text-align: center;
  display: grid;
  align-content: center;
  gap: 14px;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.9)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(239, 247, 246, 0.9));
  box-shadow: 0 28px 70px rgba(17, 20, 24, 0.1);
}

.workflow-page-hero .path-intro strong {
  font-size: clamp(24px, 3vw, 36px);
}

.workflow-page-hero .path-intro p {
  font-size: 14px;
  line-height: 1.48;
}

.workflow-page-hero .workflow-path-list {
  position: absolute;
  inset: 0;
  display: block;
}

.workflow-page-hero .workflow-path-list li,
.workflow-page-hero .workflow-path-list li:nth-child(odd),
.workflow-page-hero .workflow-path-list li:nth-child(even) {
  position: absolute;
  z-index: 3;
  width: 188px;
  min-height: 154px;
  margin: 0;
  padding: 20px;
  border-radius: 50%;
  text-align: center;
  align-content: center;
  justify-items: center;
  background:
    radial-gradient(circle at 35% 24%, rgba(255, 255, 255, 0.98), rgba(247, 250, 252, 0.92));
  box-shadow: 0 18px 42px rgba(17, 20, 24, 0.08);
}

.workflow-page-hero .workflow-path-list li::before {
  width: 52px;
  height: 5px;
  margin: 0 auto 10px;
}

.workflow-page-hero .workflow-path-list strong {
  font-size: 18px;
  line-height: 1.15;
}

.workflow-page-hero .workflow-path-list p {
  font-size: 12px;
  line-height: 1.38;
}

.workflow-page-hero .workflow-path-list li:nth-child(1) { left: 50%; top: 8%; transform: translateX(-50%); border-color: rgba(36, 92, 255, 0.38); }
.workflow-page-hero .workflow-path-list li:nth-child(2) { left: 75%; top: 13%; border-color: rgba(43, 124, 120, 0.38); }
.workflow-page-hero .workflow-path-list li:nth-child(3) { left: 80%; top: 31%; border-color: rgba(117, 96, 46, 0.38); }
.workflow-page-hero .workflow-path-list li:nth-child(4) { left: 80%; top: 52%; border-color: rgba(83, 57, 71, 0.36); }
.workflow-page-hero .workflow-path-list li:nth-child(5) { left: 72%; top: 71%; border-color: rgba(36, 92, 255, 0.34); }
.workflow-page-hero .workflow-path-list li:nth-child(6) { left: 54%; top: 80%; border-color: rgba(40, 167, 121, 0.36); }
.workflow-page-hero .workflow-path-list li:nth-child(7) { left: 32%; top: 80%; border-color: rgba(138, 86, 50, 0.36); }
.workflow-page-hero .workflow-path-list li:nth-child(8) { left: 12%; top: 71%; border-color: rgba(120, 96, 210, 0.34); }
.workflow-page-hero .workflow-path-list li:nth-child(9) { left: 4%; top: 52%; border-color: rgba(49, 93, 122, 0.34); }
.workflow-page-hero .workflow-path-list li:nth-child(10) { left: 4%; top: 31%; border-color: rgba(35, 93, 69, 0.36); }
.workflow-page-hero .workflow-path-list li:nth-child(11) { left: 8%; top: 14%; border-color: rgba(36, 92, 255, 0.34); }
.workflow-page-hero .workflow-path-list li:nth-child(12) { left: 23%; top: 8%; border-color: rgba(43, 124, 120, 0.34); }

@media (max-width: 1100px) {
  .workflow-wide-hero .title-one-line {
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: start;
  }

  .workflow-page-hero .workflow-loop-hero {
    min-height: 0;
    padding: 24px;
  }

  .workflow-page-hero .workflow-loop-hero::before,
  .workflow-page-hero .workflow-loop-hero::after {
    display: none;
  }

  .workflow-page-hero .path-intro {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    min-height: 0;
    margin: 0 0 18px;
    padding: 28px;
    transform: none;
    border-radius: 8px;
    text-align: left;
  }

  .workflow-page-hero .workflow-path-list {
    position: relative;
    inset: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .workflow-page-hero .workflow-path-list li,
  .workflow-page-hero .workflow-path-list li:nth-child(odd),
  .workflow-page-hero .workflow-path-list li:nth-child(even) {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    min-height: 0;
    padding: 22px;
    transform: none;
    border-radius: 8px;
    text-align: left;
    justify-items: start;
  }

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

  .workflow-loop-hero {
    min-height: auto;
    padding: 22px;
  }

  .workflow-loop-hero::before,
  .workflow-loop-hero::after {
    display: none;
  }

  .path-intro {
    margin: 0 0 20px;
    text-align: left;
  }

  .workflow-path-list {
    gap: 14px;
  }

  .workflow-path-list li,
  .workflow-path-list li:nth-child(odd),
  .workflow-path-list li:nth-child(even) {
    width: auto;
    margin: 0;
  }
}

.story-hero {
  grid-template-columns: minmax(0, 920px);
  padding-bottom: 48px;
}

.story-page-section {
  width: min(var(--max), calc(100vw - 48px));
  margin: 0 auto;
  padding: 0 0 110px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.story-section-intro {
  grid-column: 1 / -1;
  max-width: 820px;
  margin-bottom: 18px;
  display: grid;
  gap: 14px;
}

.story-section-intro span {
  color: var(--accent);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.story-section-intro h2 {
  font-size: clamp(36px, 5vw, 66px);
  line-height: 1.02;
  font-weight: 300;
  max-width: 780px;
}

.story-article {
  border: 1px solid rgba(210, 218, 228, 0.86);
  border-radius: 8px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.9);
  display: grid;
  gap: 18px;
}

.story-article span {
  color: var(--accent);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.story-article h2 {
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.02;
  font-weight: 300;
}

.story-article p {
  max-width: none;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.62;
}

@media (max-width: 900px) {
  .story-page-section {
    grid-template-columns: 1fr;
  }

  .home-feature:nth-child(6) h3,
  .home-feature:nth-child(6) a {
    grid-row: auto;
    grid-column: auto;
  }
}

.story-article code {
  font-family: Consolas, "Courier New", monospace;
  color: var(--ink);
  background: rgba(36, 92, 255, 0.06);
  border: 1px solid rgba(36, 92, 255, 0.12);
  border-radius: 4px;
  padding: 0 4px;
}

.story-callout {
  margin: 0 0 22px;
  padding: 26px;
  border: 1px solid rgba(210, 218, 228, 0.86);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.92)),
    rgba(255, 255, 255, 0.98);
  box-shadow: 0 14px 34px rgba(17, 20, 24, 0.045);
  display: grid;
  gap: 14px;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.story-callout:target,
article:target > .story-callout,
section:target > .story-callout {
  border: 2px solid rgba(36, 92, 255, 0.36);
  background:
    linear-gradient(135deg, rgba(36, 92, 255, 0.15), rgba(40, 167, 121, 0.12)),
    rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 58px rgba(17, 20, 24, 0.1);
}

.story-callout span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.story-callout h3 {
  color: var(--ink);
  font-size: clamp(25px, 3vw, 36px);
  line-height: 1.08;
  font-weight: 400;
}

.story-callout p {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.5;
  max-width: 780px;
}

.story-callout p strong {
  color: var(--ink);
  font-weight: 500;
}

.story-callout div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.story-callout a {
  border: 1px solid rgba(36, 92, 255, 0.18);
  border-radius: 999px;
  padding: 7px 11px;
  color: var(--accent);
  font-size: 13px;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.72);
}

.story-callout a:hover {
  border-color: rgba(36, 92, 255, 0.42);
}

.hero-copy {
  display: grid;
  gap: 24px;
}

.page-hero .title-one-line {
  padding-top: 162px;
}

.home-hero .title-one-line {
  padding-top: 0;
}

.home-hero .hero-copy {
  max-width: 920px;
  justify-items: center;
  text-align: center;
  animation: homeSplashIn 700ms ease-out both;
  position: relative;
  z-index: 1;
}

.home-hero h1 {
  font-size: clamp(72px, 11.5vw, 154px);
  animation: nodriftTitleBreathe 120s ease-in-out infinite;
}

.home-hero p {
  max-width: 760px;
}

@keyframes homeSplashIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes nodriftTitleBreathe {
  0% {
    color: #315d7a;
    opacity: 1;
  }
  10% {
    color: #743440;
    opacity: 0.96;
  }
  20% {
    color: #2b7c78;
    opacity: 1;
  }
  30% {
    color: #7a622b;
    opacity: 0.94;
  }
  40% {
    color: #245d45;
    opacity: 1;
  }
  50% {
    color: #8a5960;
    opacity: 0.94;
  }
  60% {
    color: #347a86;
    opacity: 1;
  }
  70% {
    color: #5b3d2f;
    opacity: 0.94;
  }
  80% {
    color: #4f5d69;
    opacity: 1;
  }
  90% {
    color: #a35f2f;
    opacity: 0.94;
  }
  100% {
    color: #315d7a;
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-hero .hero-copy {
    animation: none;
  }

  .home-hero h1 {
    animation: none;
  }

  .home-orbit-field {
    display: none;
  }

  .home-orbit-field::before,
  .home-orbit-field::after {
    animation: none;
  }
}

.page-hero .title-two-line {
  padding-top: 167px;
}

.page-hero .title-tall-panel {
  padding-top: 223px;
}

.rule {
  width: min(300px, 58vw);
  height: 1px;
  background: var(--line);
}

.hero-image,
.wide-image,
.tall-image,
.small-image {
  border-radius: 8px;
  background-position: center;
  background-size: cover;
}

.hero-image {
  min-height: 560px;
  border: 1px solid var(--line);
}

.wide-pair {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  padding: 60px 0 150px;
  align-items: end;
}

.wide-image {
  min-height: 420px;
  border: 1px solid var(--line);
}

.tall-image {
  min-height: 520px;
  border: 1px solid var(--line);
}

.hero-image,
.wide-image,
.tall-image {
  box-shadow: 0 20px 60px rgba(17, 20, 24, 0.06);
}

.index-band {
  width: 100%;
  background: var(--soft);
  padding: 118px 0;
}

.index-inner {
  width: min(var(--max), calc(100vw - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.index-label {
  width: min(var(--max), calc(100vw - 48px));
  margin: 0 auto 26px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 300;
}

.link-box {
  min-height: 164px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px 22px 20px;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.link-box small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.45;
}

.next-section {
  width: min(var(--max), calc(100vw - 48px));
  margin: 0 auto;
  padding: 0 0 118px;
}

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

.question-card {
  min-height: 148px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: linear-gradient(180deg, #fff, #fbfcfd);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.question-card span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.45;
}

.question-card h3 {
  font-size: 21px;
}

.question-card:hover,
.link-box:hover,
.home-route-card:hover,
.copy-card:hover,
.panel-card:hover,
.workflow-step:hover {
  border-color: rgba(36, 92, 255, 0.24);
  transform: translateY(-3px);
  box-shadow:
    0 20px 42px rgba(17, 20, 24, 0.08),
    0 2px 8px rgba(17, 20, 24, 0.04);
}

.docs-shell {
  width: min(1320px, calc(100vw - 48px));
  margin: 0 auto;
  padding: 88px 0 112px;
  display: grid;
  grid-template-columns: 172px minmax(0, 1fr);
  gap: 40px;
  overflow: visible;
}

.docs-sidebar {
  position: sticky;
  top: 100px;
  align-self: start;
  display: grid;
  gap: 2px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.docs-kicker {
  color: var(--muted);
  font-size: 12px;
  font-weight: 400;
  margin-bottom: 14px;
}

.docs-sidebar a {
  color: var(--muted);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.3;
  padding: 7px 0;
}

.docs-sidebar a.active,
.docs-sidebar a:hover {
  color: var(--ink);
}

.docs-content {
  min-width: 0;
  display: grid;
  gap: 28px;
}

.docs-content > section {
  width: auto;
  margin: 0;
}

.docs-hero {
  display: grid;
  gap: 18px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line);
}

.docs-hero span,
.docs-card span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 300;
}

.docs-hero h1 {
  font-size: clamp(34px, 4.6vw, 60px);
  line-height: 0.96;
}

.docs-hero p {
  max-width: 920px;
}

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

.docs-card,
.docs-note,
.docs-section,
.docs-list article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 26px;
}

.docs-card {
  min-height: 198px;
  display: grid;
  align-content: start;
  gap: 14px;
  background:
    radial-gradient(circle at 12% 0%, rgba(36, 92, 255, 0.08), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 252, 0.92));
  border-color: rgba(226, 231, 237, 0.92);
  box-shadow: 0 14px 34px rgba(17, 20, 24, 0.055);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.docs-card:hover {
  transform: translateY(-3px);
  border-color: rgba(36, 92, 255, 0.24);
  box-shadow: 0 22px 48px rgba(17, 20, 24, 0.09);
}

.docs-card span {
  width: fit-content;
  border-radius: 999px;
  padding: 5px 9px;
  color: #214fbf;
  background: rgba(36, 92, 255, 0.09);
}

.docs-card h2,
.docs-section h2,
.docs-note h2,
.docs-list h2 {
  font-size: 22px;
  font-weight: 400;
}

.docs-card h2 {
  font-size: 20px;
}

.docs-card p,
.docs-section p,
.docs-note p,
.docs-list p {
  color: var(--muted);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
}

.docs-section,
.docs-note {
  display: grid;
  gap: 18px;
}

.docs-search-panel,
.evidence-live-graphic,
.correction-log-table {
  border: 1px solid rgba(214, 220, 228, 0.92);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  padding: 26px;
  box-shadow: 0 18px 46px rgba(17, 20, 24, 0.045);
}

.docs-search-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.docs-search-panel > div:first-child span,
.docs-answer-card span,
.evidence-live-top span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 300;
}

.docs-search-panel h2 {
  margin-top: 8px;
  font-size: 26px;
  font-weight: 300;
}

.docs-search-panel p {
  margin-top: 10px;
  font-size: 16px;
}

.docs-search-box {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
}

.docs-search-box input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 15px 16px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 16px;
}

.docs-search-box input:focus {
  outline: 2px solid rgba(36, 92, 255, 0.18);
  border-color: rgba(36, 92, 255, 0.34);
}

.docs-question-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.docs-question-tabs button,
.docs-answer-card a {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 11px 13px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 14px;
  cursor: pointer;
}

.docs-answer-card {
  border-top: 1px solid var(--line);
  padding-top: 18px;
  display: grid;
  gap: 12px;
}

.docs-answer-card h3 {
  font-size: 22px;
  font-weight: 400;
}

.docs-answer-card p {
  max-width: 900px;
  font-size: 16px;
}

.docs-answer-card a {
  width: max-content;
}

.evidence-live-graphic {
  display: grid;
  gap: 22px;
  overflow: hidden;
}

.evidence-live-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.evidence-live-top strong {
  font-weight: 400;
}

.evidence-meter-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.evidence-meter {
  min-height: 126px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: linear-gradient(180deg, #fff, #f8fafb);
  display: grid;
  align-content: space-between;
}

.evidence-meter span {
  font-size: 34px;
  font-weight: 300;
  line-height: 1;
}

.evidence-meter small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.evidence-meter.good { border-color: rgba(40, 167, 121, 0.3); }
.evidence-meter.clear { border-color: rgba(36, 92, 255, 0.28); }
.evidence-meter.watch { border-color: rgba(230, 160, 60, 0.42); }
.evidence-meter.limit { border-color: rgba(17, 20, 24, 0.18); }

.evidence-flow {
  display: grid;
  grid-template-columns: max-content 1fr max-content 1fr max-content 1fr max-content;
  gap: 10px;
  align-items: center;
  color: var(--muted);
  font-size: 13px;
}

.evidence-flow i {
  height: 1px;
  background: linear-gradient(90deg, rgba(36, 92, 255, 0.35), rgba(40, 167, 121, 0.35));
}

.evidence-graph {
  position: relative;
  padding: 30px;
  background:
    linear-gradient(rgba(36, 92, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36, 92, 255, 0.04) 1px, transparent 1px),
    rgba(255, 255, 255, 0.92);
  background-size: 38px 38px;
}

.evidence-graph-stage,
.evidence-graph-node {
  position: relative;
  border: 1px solid rgba(214, 220, 228, 0.96);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 42px rgba(17, 20, 24, 0.05);
}

.evidence-graph-stage {
  min-height: 118px;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: center;
}

.evidence-graph-stage-source {
  border-color: rgba(36, 92, 255, 0.26);
}

.evidence-graph-stage-limit {
  border-color: rgba(17, 20, 24, 0.18);
}

.evidence-graph-stage span,
.evidence-graph-node span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.3;
}

.evidence-graph-stage strong {
  display: block;
  margin-top: 8px;
  font-size: 30px;
  font-weight: 300;
  line-height: 1.15;
}

.evidence-graph-stage small,
.evidence-graph-node small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.evidence-graph-pulse {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 36% 34%, rgba(255, 255, 255, 0.92) 0 14%, transparent 15%),
    conic-gradient(from 210deg, #245cff, #24a790, #e6a03c, #245cff);
  box-shadow: 0 18px 34px rgba(36, 92, 255, 0.18);
}

.evidence-graph-line {
  width: 1px;
  height: 34px;
  margin: -2px auto;
  background: linear-gradient(180deg, rgba(36, 92, 255, 0.42), rgba(40, 167, 121, 0.42));
}

.evidence-graph-line.muted {
  background: linear-gradient(180deg, rgba(40, 167, 121, 0.38), rgba(17, 20, 24, 0.18));
}

.evidence-graph-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.evidence-graph-node {
  min-height: 156px;
  padding: 20px;
  display: grid;
  align-content: space-between;
}

.evidence-graph-node strong {
  display: block;
  margin-top: 14px;
  font-size: 46px;
  font-weight: 300;
  line-height: 1;
}

.evidence-graph-node.good {
  border-color: rgba(40, 167, 121, 0.34);
}

.evidence-graph-node.watch {
  border-color: rgba(230, 160, 60, 0.46);
}

.evidence-graph-node.limit {
  border-color: rgba(36, 92, 255, 0.28);
}

.correction-log-table {
  display: grid;
  gap: 0;
  padding: 0;
  overflow: hidden;
}

.correction-row {
  display: grid;
  grid-template-columns: 0.28fr 0.18fr 0.54fr;
  gap: 18px;
  align-items: start;
  padding: 18px 20px;
  border-top: 1px solid var(--line);
}

.correction-row:first-child {
  border-top: 0;
}

.correction-row.header {
  background: var(--soft);
  color: var(--muted);
  font-size: 13px;
}

.correction-row strong {
  font-weight: 400;
  color: var(--ink);
}

.correction-row p {
  font-size: 15px;
  line-height: 1.45;
}

.docs-note {
  background: var(--soft);
}

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

.docs-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.docs-link-row a {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--ink);
  font-size: 14px;
}

.blog-hero {
  min-height: 560px;
  align-items: center;
}

.blog-byline {
  display: grid;
  gap: 4px;
  margin: -12px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.25;
  letter-spacing: 0;
}

.blog-byline span {
  display: block;
}

.blog-byline span:first-child {
  color: var(--ink);
  font-size: 1.08em;
}

.blog-hero .hero-copy {
  max-width: 760px;
}

.blog-hero h1 {
  font-size: clamp(54px, 7vw, 96px);
  line-height: 0.98;
}

.blog-hero-panel {
  min-height: 360px;
  border: 1px solid rgba(214, 220, 228, 0.92);
  border-radius: 8px;
  padding: 34px;
  background:
    radial-gradient(circle at 14% 14%, rgba(36, 92, 255, 0.14), transparent 34%),
    radial-gradient(circle at 86% 82%, rgba(40, 167, 121, 0.13), transparent 38%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 252, 0.92));
  box-shadow:
    0 28px 70px rgba(17, 20, 24, 0.075),
    0 2px 8px rgba(17, 20, 24, 0.035);
  display: grid;
  align-content: center;
  gap: 18px;
}

.blog-hero-panel span,
.blog-search-heading span,
.blog-category-grid span,
.blog-result-card span,
.blog-post-header span,
.blog-related span,
.blog-backlink {
  color: #344150;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-hero-panel strong {
  color: var(--ink);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: 0;
}

.blog-hero-panel p {
  max-width: 540px;
  font-size: 17px;
}

.blog-search-section,
.blog-category-section {
  padding: 84px 0;
}

.blog-search-section {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 26px;
  align-items: start;
  border-top: 1px solid rgba(214, 220, 228, 0.75);
}

.blog-search-heading {
  display: grid;
  gap: 14px;
}

.blog-search-heading h2 {
  font-size: clamp(34px, 4.2vw, 58px);
}

.blog-search-heading p {
  font-size: 17px;
}

.blog-search-box {
  grid-column: 2;
  display: grid;
  gap: 10px;
  align-self: end;
}

.blog-search-box label {
  color: var(--muted);
  font-size: 13px;
  font-weight: 400;
}

.blog-search-box div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content;
  gap: 10px;
}

.blog-search-box input,
.blog-search-box button,
.blog-filter-row button {
  min-height: 46px;
  border: 1px solid rgba(214, 220, 228, 0.95);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 14px;
}

.blog-search-box input {
  padding: 0 14px;
}

.blog-search-box button,
.blog-filter-row button {
  padding: 0 16px;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.blog-search-box button:hover,
.blog-filter-row button:hover,
.blog-filter-row button.active {
  border-color: rgba(36, 92, 255, 0.34);
  background: rgba(36, 92, 255, 0.07);
}

.blog-filter-row {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 10px;
}

.blog-results {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.blog-result-card,
.blog-category-grid a {
  position: relative;
  border: 1px solid rgba(214, 220, 228, 0.92);
  border-radius: 8px;
  background:
    radial-gradient(circle at 10% 0%, rgba(36, 92, 255, 0.075), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 253, 0.9));
  box-shadow:
    0 18px 42px rgba(17, 20, 24, 0.07),
    0 2px 7px rgba(17, 20, 24, 0.035);
  overflow: hidden;
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.blog-result-card::before,
.blog-category-grid a::before,
.blog-post-meta div::before {
  content: "";
  position: absolute;
  top: -1px;
  right: -1px;
  width: 34%;
  height: 3px;
  border-top-right-radius: 8px;
  background: rgba(36, 92, 255, 0.58);
}

.blog-result-card {
  min-height: 176px;
  padding: 16px;
  display: grid;
  align-content: start;
  gap: 8px;
}

.blog-card-topline {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 4px 10px;
  align-items: center;
  padding-bottom: 4px;
}

.blog-card-topline > span {
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
  text-align: right;
}

.blog-card-topline > .blog-access-badge {
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
}

.blog-card-topline > .blog-read-badge {
  grid-column: 2;
  grid-row: 2;
  justify-self: end;
  margin-top: 2px;
  margin-bottom: 4px;
}

.blog-access-badge {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  border: 1px solid rgba(214, 220, 228, 0.92);
  border-radius: 999px;
  padding: 0 10px;
  color: #3d4651;
  background: rgba(255, 255, 255, 0.82);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.blog-access-badge.free {
  border-color: rgba(40, 167, 121, 0.32);
  background: rgba(40, 167, 121, 0.08);
  color: #24664f;
}

.blog-access-badge.member {
  border-color: rgba(36, 92, 255, 0.28);
  background: rgba(36, 92, 255, 0.07);
  color: #254f9d;
}

.blog-access-badge.advanced {
  border-color: rgba(230, 160, 60, 0.42);
  background: rgba(230, 160, 60, 0.1);
  color: #77521b;
}

.blog-read-badge {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  border: 1px solid rgba(38, 49, 61, 0.16);
  border-radius: 999px;
  padding: 0 10px;
  color: #4d5864;
  background: rgba(238, 243, 247, 0.88);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.blog-read-badge.unread {
  color: #71808d;
  background: rgba(255, 255, 255, 0.72);
}

.blog-result-card.read {
  background:
    radial-gradient(circle at 10% 0%, rgba(40, 167, 121, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(250, 252, 250, 0.98), rgba(245, 250, 247, 0.9));
}

.blog-result-card:hover,
.blog-category-grid a:hover {
  border-color: rgba(36, 92, 255, 0.26);
  transform: translateY(-3px);
  box-shadow:
    0 24px 54px rgba(17, 20, 24, 0.085),
    0 2px 8px rgba(17, 20, 24, 0.04);
}

.blog-result-card h3,
.blog-category-grid strong {
  color: var(--ink);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.16;
}

.blog-result-card p,
.blog-category-grid p {
  max-width: none;
  font-size: 14px;
  line-height: 1.42;
}

.blog-result-card p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.blog-result-card dl {
  margin: 0;
  display: grid;
  gap: 4px;
}

.blog-result-card div {
  display: grid;
  gap: 2px;
}

.blog-result-card dl div:nth-child(2),
.blog-result-card dl div:nth-child(3) {
  display: none;
}

.blog-result-card dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-result-card dd {
  margin: 0;
  color: #38414b;
  font-size: 12px;
  line-height: 1.28;
}

.blog-empty {
  grid-column: 1 / -1;
}

.blog-category-section {
  border-top: 1px solid rgba(214, 220, 228, 0.75);
}

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

.blog-category-grid a {
  min-height: 260px;
  padding: 26px;
  display: grid;
  align-content: start;
  gap: 15px;
}

.blog-result-card:nth-child(2n)::before,
.blog-category-grid a:nth-child(2n)::before,
.blog-post-meta div:nth-child(2n)::before {
  background: rgba(40, 167, 121, 0.58);
}

.blog-result-card:nth-child(3n)::before,
.blog-category-grid a:nth-child(3n)::before,
.blog-post-meta div:nth-child(3n)::before {
  background: rgba(230, 160, 60, 0.64);
}

.blog-result-card:nth-child(4n)::before,
.blog-category-grid a:nth-child(4n)::before {
  background: rgba(201, 94, 145, 0.52);
}

.blog-post-shell {
  width: min(920px, calc(100vw - 48px));
  margin: 0 auto;
  padding: 82px 0 118px;
  overflow: visible;
}

.blog-post {
  display: grid;
  gap: 32px;
}

.blog-backlink {
  width: fit-content;
}

.blog-post-header {
  display: grid;
  gap: 18px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(214, 220, 228, 0.86);
}

.blog-post-header h1 {
  font-size: clamp(44px, 6vw, 82px);
  line-height: 0.98;
}

.blog-post-header p {
  max-width: 840px;
  font-size: 21px;
}

.blog-post-meta {
  width: auto;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.blog-post-meta div {
  position: relative;
  border: 1px solid rgba(214, 220, 228, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  padding: 18px;
  display: grid;
  gap: 8px;
  overflow: hidden;
  box-shadow:
    0 14px 30px rgba(17, 20, 24, 0.055),
    0 1px 5px rgba(17, 20, 24, 0.03);
}

.blog-post-meta strong {
  color: #66717d;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-post-meta span {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.4;
}

.blog-post-body {
  width: auto;
  margin: 0;
  display: grid;
  gap: 18px;
}

.blog-post-body h2 {
  margin-top: 18px;
  font-size: 30px;
  font-weight: 300;
}

.blog-post-body p {
  max-width: 820px;
  color: #56616d;
  font-size: 19px;
  line-height: 1.68;
}

.gated-blog-post .blog-post-header {
  border-bottom-color: rgba(36, 92, 255, 0.2);
}

.blog-access-notice {
  border: 1px solid rgba(36, 92, 255, 0.18);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(239, 244, 255, 0.78));
  padding: 28px;
  box-shadow:
    0 18px 42px rgba(17, 20, 24, 0.07),
    0 1px 6px rgba(17, 20, 24, 0.04);
}

.blog-access-notice .blog-access-badge {
  width: fit-content;
}

.blog-lock-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 22px;
  color: #56616d;
  font-size: 18px;
  line-height: 1.55;
}

.blog-related {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(214, 220, 228, 0.86);
}

.blog-related a {
  border: 1px solid rgba(214, 220, 228, 0.95);
  border-radius: 8px;
  background: #fff;
  padding: 12px 14px;
  color: var(--ink);
  font-size: 14px;
}

.chip:hover {
  border-color: rgba(36, 92, 255, 0.28);
  color: var(--ink);
  transform: translateY(-1px);
}

.mark {
  width: 46px;
  height: 46px;
  border-radius: 0;
  background-color: transparent;
  background-image: var(--nodrift-line-logo);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 42px 42px;
  opacity: 0.92;
}

.dark {
  background: var(--dark);
  color: #fff;
}

.dark .link-box {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.18);
}

.site-footer {
  width: 100%;
  margin: 0;
  border-top: 0;
  padding: 42px max(24px, calc((100vw - var(--max)) / 2)) 46px;
  background: #111418;
  color: #c8ced6;
  font-size: 13px;
  font-weight: 300;
  display: grid;
  grid-template-columns: minmax(180px, 0.24fr) minmax(360px, 0.48fr) minmax(260px, 0.28fr);
  gap: 38px;
  align-items: start;
}

.site-footer strong {
  display: block;
  color: #f7f9fb;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 14px;
}

.site-footer p {
  max-width: none;
  font-size: 14px;
  line-height: 1.55;
}

.site-footer .footer-credit {
  color: #f7f9fb;
  font-size: 13px;
  font-weight: 400;
}

.site-footer nav {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  justify-content: end;
  gap: 12px 22px;
}

.site-footer a {
  color: #d8dde5;
}

.site-footer a:hover {
  color: #fff;
}

.footer-smallprint {
  max-width: 620px;
  color: #a9b0ba;
  font-size: 12px;
  line-height: 1.55;
}

.footer-copyright {
  margin-top: 14px;
  color: #8f98a4;
  font-size: 12px;
}

@media (max-width: 980px) {
  .nav {
    height: auto;
    padding: 16px 0;
    align-items: flex-start;
    gap: 16px;
  }

  .navlinks {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px 14px;
    white-space: normal;
    max-width: 72%;
    line-height: 1.3;
  }

  .navlinks a {
    text-align: right;
  }

  .workspace-surface {
    grid-template-columns: 1fr;
  }

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

  .home-journey-section,
  .home-feature-intro {
    grid-template-columns: 1fr;
  }

  .home-feature-intro p,
  .home-feature:nth-child(n) {
    grid-column: auto;
  }

  .home-feature:nth-child(6) {
    display: block;
    min-height: 248px;
  }

  .home-journey-visual {
    grid-template-columns: 1fr;
  }

  .home-journey-visual div,
  .home-journey-visual div:nth-child(2) {
    border-left: 0;
    border-top: 1px solid rgba(218, 225, 234, 0.82);
  }

  .home-journey-visual div:first-child {
    border-top: 0;
  }

  .home-route-card:nth-child(n) {
    grid-column: auto;
  }

  .home-outcome-band,
  .home-route-section,
  .home-story-strip,
  .story-teaser-grid,
  .home-sales-focus,
  .home-product-path,
  .home-final-cta,
  .home-tier-line,
  .app-target-grid,
  .selector-preview,
  .tier-column-grid,
  .workflow-flow-list,
  .workflow-note-links,
  .blog-search-section,
  .blog-results,
  .blog-category-grid,
  .blog-post-meta {
    grid-template-columns: 1fr;
  }

  .blog-search-box,
  .blog-filter-row,
  .blog-results {
    grid-column: auto;
  }

  .blog-search-box div {
    grid-template-columns: 1fr;
  }

  .blog-hero-panel {
    min-height: 280px;
    padding: 24px;
  }

  .home-benefit-list li {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .workflow-flow-list li,
  .workflow-flow-list li + li {
    min-height: 0;
    padding: 22px;
    border-left: 0;
  }

  .workflow-loop-hero {
    min-height: auto;
    padding: 22px;
  }

  .workflow-loop-hero::before,
  .workflow-loop-hero::after {
    display: none;
  }

  .path-intro {
    margin: 0 0 20px;
    text-align: left;
  }

  .workflow-path-list {
    gap: 14px;
  }

  .workflow-path-list li,
  .workflow-path-list li:nth-child(odd),
  .workflow-path-list li:nth-child(even) {
    width: auto;
    margin: 0;
  }

  .home-outcome-band a {
    border-left: 0;
    border-top: 1px solid rgba(214, 220, 228, 0.78);
  }

  .home-outcome-band a:first-child {
    border-top: 0;
  }

  .home-search-panel {
    margin: 0 auto 72px;
    grid-template-columns: 1fr;
  }

  .home-hero {
    min-height: calc(100vh - 72px);
    padding: 72px 0 96px;
  }

  .home-workflow-preview {
    padding-bottom: 78px;
  }

  .home-preset-answer {
    grid-template-columns: 1fr;
  }

  .home-preset-dropdown {
    grid-template-columns: 1fr;
  }

  .home-preset-dropdown section {
    grid-template-columns: 1fr;
  }

  .evidence-meter-row,
  .evidence-graph-grid,
  .correction-row {
    grid-template-columns: 1fr;
  }

  .evidence-flow {
    grid-template-columns: 1fr;
  }

  .evidence-flow i {
    width: 1px;
    height: 18px;
  }

  .evidence-graph-stage {
    align-items: start;
    flex-direction: column;
  }

  .evidence-graph-pulse {
    width: 58px;
    height: 58px;
  }

  .surface-rail {
    display: none;
  }

  .page-hero,
  .wide-pair,
  .index-inner,
  .panel-grid,
  .two-up,
  .section-title,
  .copy-grid,
  .detail-row,
  .question-grid,
  .docs-shell,
  .docs-grid,
  .docs-shell {
    padding: 54px 0 76px;
    gap: 34px;
  }

  .docs-sidebar {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    padding: 16px 0;
  }

  .docs-sidebar a {
    padding: 4px 0;
  }

  h1 {
    font-size: clamp(50px, 15vw, 84px);
  }

  h2 {
    font-size: clamp(34px, 11vw, 58px);
  }

  .page-hero {
    padding: 54px 0 76px;
    gap: 42px;
  }

  .copy-card.wide {
    grid-column: span 1;
  }

  .hero-image,
  .wide-image,
  .tall-image {
    min-height: 420px;
  }

  .workflow-map-intro,
  .startup-level,
  .project-level {
    grid-template-columns: 1fr;
    width: auto;
    margin-left: 0;
  }

  .workflow-visual::before,
  .workflow-visual::after,
  .startup-level::after {
    display: none;
  }

  .workflow-step {
    min-height: auto;
  }

  .project-level {
    margin-top: 14px;
  }

  .workflow-step::after,
  .workflow-level .workflow-step:first-child::before {
    display: none;
  }

  footer {
    display: grid;
    gap: 12px;
  }

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

  .site-footer nav {
    grid-template-columns: 1fr 1fr;
    justify-content: start;
  }
}

@media (min-width: 981px) {
  .home-outcome-band {
    grid-template-columns: 1.22fr 0.92fr 1.08fr;
    align-items: start;
    padding: 0;
  }

  .home-outcome-band a {
    border: 0;
    box-shadow: none;
    background:
      linear-gradient(160deg, rgba(255, 255, 255, 0.86), rgba(247, 250, 252, 0.62)),
      radial-gradient(ellipse at 8% 0%, rgba(36, 92, 255, 0.12), transparent 58%);
  }

  .home-outcome-band a:nth-child(2) {
    min-height: 158px;
    margin-top: 46px;
    border-left: 1px solid rgba(207, 216, 226, 0.9);
    border-right: 1px solid rgba(207, 216, 226, 0.9);
  }

  .home-outcome-band a:nth-child(3) {
    min-height: 220px;
    margin-top: 18px;
  }

  .home-journey-section {
    align-items: start;
  }

  .home-journey-visual {
    border: 0;
    background:
      linear-gradient(90deg, rgba(36, 92, 255, 0.06), transparent 36%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(247, 250, 252, 0.4));
    box-shadow: none;
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 24px 0;
    overflow: visible;
  }

  .home-journey-visual div {
    min-height: 0;
    width: 84%;
    border: 0;
    border-left: 2px solid rgba(36, 92, 255, 0.28);
    border-radius: 0;
    background: transparent;
    padding: 10px 8px 12px 26px;
  }

  .home-journey-visual div:nth-child(2) {
    width: 72%;
    margin-left: 15%;
    border-left-color: rgba(27, 170, 188, 0.38);
  }

  .home-journey-visual div:nth-child(3) {
    width: 88%;
    margin-left: 6%;
    border-left-color: rgba(40, 167, 121, 0.36);
  }

  .home-journey-visual div:nth-child(4) {
    width: 68%;
    margin-left: 28%;
    border-left-color: rgba(218, 142, 72, 0.38);
  }

  .home-journey-visual span {
    display: block;
    margin-bottom: 4px;
  }

  .home-feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    gap: 22px;
  }

  .home-feature {
    border: 0;
    box-shadow: none;
    min-height: 292px;
  }

  .home-feature:nth-child(1) {
    grid-column: auto;
    min-height: 292px;
    padding: 34px;
  }

  .home-feature:nth-child(2) {
    grid-column: auto;
    min-height: 292px;
    margin-top: 0;
    padding: 34px;
  }

  .home-feature:nth-child(3) {
    grid-column: auto;
    min-height: 292px;
  }

  .home-feature:nth-child(4) {
    grid-column: auto;
    min-height: 292px;
    margin-top: 0;
  }

  .home-feature:nth-child(5) {
    grid-column: auto;
    min-height: 292px;
  }

  .home-feature:nth-child(6) {
    grid-column: auto;
    min-height: 292px;
    margin-top: 0;
  }

  .home-route-section {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    align-items: start;
  }

  .home-route-card {
    border: 0;
    border-top-width: 3px;
    border-top-style: solid;
    background: transparent;
    box-shadow: none;
    padding-left: 8px;
    padding-right: 8px;
  }

  .home-route-card:nth-child(1) {
    grid-column: 1 / span 3;
    min-height: 210px;
  }

  .home-route-card:nth-child(2) {
    grid-column: 4 / span 5;
    min-height: 168px;
    margin-top: 42px;
  }

  .home-route-card:nth-child(3) {
    grid-column: 9 / -1;
    min-height: 236px;
  }

  .home-route-card:nth-child(4) {
    grid-column: 2 / span 5;
    min-height: 172px;
  }

  .home-route-card:nth-child(5) {
    grid-column: 7 / span 5;
    min-height: 218px;
    margin-top: 30px;
  }
}

@media (max-width: 980px) {
  .blog-results {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .blog-result-card {
    min-height: 210px;
    padding: 16px;
  }

  .blog-card-topline {
    grid-template-columns: 1fr;
  }

  .blog-card-topline > span,
  .blog-card-topline > .blog-access-badge,
  .blog-card-topline > .blog-read-badge {
    grid-column: auto;
    grid-row: auto;
    justify-self: start;
    text-align: left;
  }

  .blog-card-topline > .blog-read-badge {
    display: none;
  }

  .home-outcome-band a,
  .home-outcome-band a:nth-child(2),
  .home-outcome-band a:nth-child(3),
  .home-journey-visual div,
  .home-journey-visual div:nth-child(2),
  .home-journey-visual div:nth-child(3),
  .home-journey-visual div:nth-child(4),
  .home-feature:nth-child(n),
  .home-route-card:nth-child(n) {
    width: auto;
    margin-top: 0;
    margin-left: 0;
  }
}

@media (max-width: 720px) {
  .blog-results {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nav {
    width: min(var(--max), calc(100vw - 28px));
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
  }

  .brand {
    font-size: 18px;
    line-height: 1.15;
  }

  .navlinks {
    width: 100%;
    max-width: none;
    justify-content: flex-start;
    gap: 8px 12px;
    font-size: 11px;
  }

  .navlinks a {
    text-align: left;
  }

  .blog-hero {
    grid-template-columns: 1fr;
    min-height: 0;
    align-items: start;
    gap: 28px;
    padding-top: 44px;
  }

  .blog-hero .hero-copy {
    max-width: 100%;
    gap: 18px;
  }

  .blog-hero h1 {
    max-width: 360px;
    font-size: 64px;
    line-height: 0.98;
  }

  .blog-hero-panel {
    width: 100%;
    min-width: 0;
    min-height: 0;
    padding: 22px;
  }

  .blog-hero-panel strong {
    font-size: clamp(28px, 9vw, 38px);
    line-height: 1.08;
  }

  .blog-hero-panel p {
    font-size: 15px;
  }

  .docs-shell,
  .docs-content,
  .docs-grid {
    width: min(var(--max), calc(100vw - 28px));
    max-width: 100%;
    grid-template-columns: 1fr;
    margin-left: auto;
    margin-right: auto;
  }

  .docs-content > section {
    width: 100%;
  }

  .docs-card,
  .docs-note,
  .docs-section,
  .docs-list article,
  .docs-home-search {
    min-width: 0;
  }

  .blog-byline {
    gap: 6px;
    margin-top: -4px;
    font-size: 16px;
    line-height: 1.3;
  }
}

@media (max-width: 390px) {
  .blog-results {
    grid-template-columns: 1fr;
  }

  .blog-hero h1 {
    font-size: 56px;
  }
}
