:root {
  color-scheme: dark;
  --bg: #080b12;
  --surface: #101721;
  --ink: #f5f7fa;
  --muted: #aab6c8;
  --line: #293447;
  --blue: #77bfff;
  --cyan: #7fd9ed;
  --copper: #e7b795;
  --font: 'IBM Plex Sans', sans-serif;
  --display: 'Bricolage Grotesque', sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-padding-top: 105px;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font: 16px/1.65 var(--font);
}
[hidden] {
  display: none !important;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
summary {
  font: inherit;
}
button,
summary {
  cursor: pointer;
}
button {
  color: inherit;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 5px;
}
a:hover {
  color: var(--cyan);
}
img,
video {
  display: block;
  max-width: 100%;
  height: auto;
}
p,
h1,
h2,
h3,
figure {
  margin: 0;
}
p {
  max-width: 68ch;
}
h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.12;
  text-wrap: balance;
}
h1 {
  font-size: clamp(40px, 4.4vw, 66px);
  letter-spacing: -0.045em;
}
h2 {
  font-size: clamp(30px, 3vw, 44px);
  letter-spacing: -0.035em;
}
h3 {
  font-size: 24px;
  letter-spacing: -0.025em;
}
p + p {
  margin-top: 16px;
}
.wrap {
  width: min(1240px, calc(100% - 80px));
  margin-inline: auto;
}
.skip {
  position: fixed;
  top: -80px;
  left: 20px;
  background: var(--ink);
  color: var(--bg);
  padding: 12px 20px;
  z-index: 100;
}
.skip:focus {
  top: 12px;
}
.preview-strip {
  font-size: 12px;
  background: #172132;
  color: #c0cddd;
}
.preview-strip .wrap {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-block: 7px;
}
.header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(8, 11, 18, 0.97);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.brand {
  display: inline-block;
  flex-shrink: 0;
}
.brand img {
  width: 184px;
  height: auto;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 27px;
  font-size: 15px;
}
.desktop-nav [aria-current] {
  color: var(--cyan);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 11px 23px;
  background: #126be5;
  color: #fff;
  border: 1px solid #4b9bff;
  border-radius: 7px;
  font-weight: 500;
  line-height: 1.35;
  text-align: center;
}
.button:hover {
  background: #237bf2;
  color: white;
}
.button.secondary {
  background: transparent;
  border-color: #4c607a;
}
.button.secondary:hover {
  background: var(--surface);
}
.button.compact {
  min-height: 44px;
  padding: 10px 17px;
}
.mobile-nav {
  display: none;
}
.hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 72px;
  align-items: center;
  padding-block: 90px 74px;
}
.category-label {
  font-size: 15px;
  font-weight: 500;
  color: var(--cyan);
  margin-bottom: 20px;
}
.hero h1 {
  max-width: 650px;
}
.hero-description {
  font-size: 19px;
  line-height: 1.65;
  color: #c3cedd;
  margin-top: 27px;
  max-width: 510px;
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.small-note {
  font-size: 13px;
  color: var(--muted);
  margin-top: 18px;
}
.small-note a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.small-note span {
  margin: 0 6px;
}
.decision-demo {
  background: var(--surface);
  border: 1px solid #3d4e64;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 80px #0004;
}
.demo-top {
  padding: 20px 24px 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 5px 16px;
  justify-content: space-between;
  font-size: 14px;
}
.example-label {
  color: var(--muted);
  font-size: 12px;
}
.scenario-controls {
  display: flex;
  gap: 5px;
  padding: 0 20px 18px;
  border-bottom: 1px solid var(--line);
}
.scenario-controls button,
.library-filters button {
  background: transparent;
  border: 1px solid transparent;
  border-radius: 5px;
  padding: 9px 12px;
  font-size: 13px;
  line-height: 1.4;
  min-height: 40px;
}
.scenario-controls button[aria-pressed='true'] {
  background: #20364f;
  border-color: #496c95;
  color: #e7f4ff;
}
.memory-step {
  padding: 24px;
  color: #b6c3d3;
}
.step-label {
  font-size: 12px;
  font-weight: 500;
  display: block;
  margin-bottom: 12px;
}
.memory-step p {
  font-size: 17px;
  line-height: 1.5;
}
.memory-step p + p {
  margin-top: 5px;
}
.reason-step {
  margin: 0 12px 12px;
  padding: 24px;
  background: #1b2938;
  border-left: 3px solid var(--copper);
  border-radius: 4px;
}
.reason-step .step-label {
  color: var(--copper);
}
.reason-step h3 {
  font-size: 27px;
  line-height: 1.18;
}
.reason-step p {
  font-size: 15px;
  color: #c6d0de;
  margin-top: 13px;
}
.approval-step {
  border-top: 1px solid var(--line);
  padding: 17px 24px;
  font-size: 12px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 10px;
}
.approval-dot {
  width: 6px;
  height: 6px;
  background: var(--copper);
  border-radius: 50%;
  flex-shrink: 0;
}
.demo-note {
  padding: 16px;
}
.definition {
  border-block: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  padding-block: 29px;
  font-family: var(--display);
  font-size: 23px;
  line-height: 1.3;
}
.definition p + p {
  margin: 0;
  color: var(--cyan);
}
.section {
  padding-block: 90px;
}
.section-heading {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 90px;
  align-items: end;
  margin-bottom: 40px;
}
.section-heading > p {
  color: var(--muted);
  font-size: 17px;
}
.platform-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  margin-top: 48px;
}
.platform-flow > div {
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.flow-number {
  display: inline-flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #1e3144;
  color: var(--cyan);
  font-size: 14px;
  margin-bottom: 22px;
}
.platform-flow p {
  color: var(--muted);
  margin-top: 15px;
  font-size: 17px;
}
.section-links {
  display: flex;
  gap: 30px;
  margin-top: 35px;
}
.section-links a,
.text-link {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 5px;
}
.surface {
  background: #0e141e;
  border-block: 1px solid #1c2738;
}
.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 65px;
}
.business-feature {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 40px;
  background: linear-gradient(125deg, #193750, #16232e);
  border-radius: 9px;
  border: 1px solid #3b536b;
}
.business-feature h3 {
  font-size: 38px;
  margin-top: 15px;
}
.business-feature p {
  color: #bcccdc;
  margin-top: 20px;
}
.card-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 14px;
  color: var(--blue);
  margin-top: 26px;
  width: 100%;
}
.card-link svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  flex-shrink: 0;
}
.card-category {
  color: var(--cyan);
  font-size: 13px;
}
.audience-list > a {
  display: block;
  padding: 25px 35px 25px 0;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.audience-list > a:first-child {
  padding-top: 0;
}
.audience-list > a > span {
  position: absolute;
  right: 0;
  top: 25px;
  color: var(--blue);
}
.audience-list p {
  color: var(--muted);
  font-size: 15px;
  margin-top: 12px;
  max-width: 52ch;
}
.product-proof {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 90px;
  align-items: center;
}
.product-proof h2 {
  margin-bottom: 25px;
}
.product-proof p {
  color: #c4cfdd;
}
.product-proof p.muted {
  color: var(--muted);
  font-size: 14px;
}
.product-proof .text-link {
  display: inline-block;
  margin-top: 25px;
}
.product-proof video {
  width: 100%;
  background: #05070c;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.product-proof figcaption {
  font-size: 12px;
  color: var(--muted);
  margin-top: 13px;
}
.product-proof figcaption a {
  text-decoration: underline;
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.page-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px;
  background: #121b28;
  border: 1px solid #2c3b50;
  border-radius: 8px;
  height: 100%;
}
.page-card:hover {
  border-color: #6c96bc;
  color: var(--ink);
}
.page-card h3 {
  margin-block: 18px 15px;
  font-size: 26px;
}
.page-card p {
  font-size: 15px;
  color: var(--muted);
}
.page-card .card-link {
  padding-top: 30px;
  margin-top: auto;
}
.final-invite {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 120px;
  align-items: center;
}
.final-invite > div > p:not(.category-label) {
  color: var(--muted);
  margin-top: 24px;
}
.final-invite .text-link {
  display: inline-block;
  margin-top: 25px;
}
.invite {
  padding-left: 45px;
  border-left: 1px solid var(--line);
}
.invite .button {
  margin-top: 25px;
}
.footer {
  border-top: 1px solid var(--line);
  background: #06090f;
  padding: 55px 0 24px;
}
.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-main h2 {
  font: 500 14px var(--font);
  color: #dce7f5;
  margin-bottom: 18px;
}
.footer-main > div:not(.footer-intro) > a {
  display: block;
  color: var(--muted);
  font-size: 14px;
  padding-block: 5px;
}
.footer-intro p {
  font-size: 14px;
  color: var(--muted);
  margin-top: 20px;
}
.footer-access {
  display: flex;
  gap: 20px;
  font-size: 14px;
  color: var(--blue);
  margin-top: 20px;
}
.footer-bottom {
  border-top: 1px solid #202b3d;
  margin-top: 40px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 12px;
  color: var(--muted);
}
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--muted);
  font-size: 13px;
  padding-top: 30px;
}
.breadcrumbs a {
  color: var(--blue);
}
.page-heading {
  padding-block: 55px 65px;
  max-width: 900px;
}
.page-heading h1 {
  font-size: clamp(38px, 5vw, 66px);
}
.page-heading > p:last-child {
  font-size: 21px;
  color: #b8c7d8;
  margin-top: 24px;
  max-width: 700px;
}
.route-choices {
  margin-bottom: 70px;
}
.route-choices .card-grid:has(> .page-card:nth-child(4)) {
  grid-template-columns: repeat(2, 1fr);
}
.outline-layout {
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 100px;
  padding-bottom: 75px;
}
.outline-layout aside {
  align-self: start;
  position: sticky;
  top: 120px;
}
.outline-badge {
  display: inline-block;
  font-size: 12px;
  color: var(--copper);
  padding: 3px 10px;
  border: 1px solid #67503d;
  border-radius: 4px;
  margin-bottom: 20px;
}
.outline-layout aside h2 {
  font-size: 23px;
  line-height: 1.25;
}
.outline-layout aside p {
  font-size: 14px;
  color: var(--muted);
  margin-top: 15px;
}
.outline-layout aside nav {
  margin-top: 25px;
  display: grid;
  gap: 12px;
  font-size: 13px;
  color: var(--blue);
}
.outline-sections > section {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 15px;
  padding: 32px 0;
  border-top: 1px solid var(--line);
  scroll-margin-top: 110px;
}
.outline-sections h2 {
  font-size: 30px;
}
.outline-sections p {
  font-size: 18px;
  color: #b8c7d8;
  margin-top: 17px;
  max-width: 60ch;
}
.section-index {
  color: #8b9eb6;
  font-size: 13px;
  padding-top: 7px;
}
.next-page {
  border-top: 1px solid var(--line);
  padding-block: 45px 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
.next-page h2 {
  font-size: 30px;
  margin-top: 15px;
}
.next-page .button {
  max-width: 330px;
}
.founders {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  padding-bottom: 60px;
}
.founders img {
  width: 130px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
}
.founders figcaption {
  margin-top: 10px;
  font-size: 15px;
}
.founders p {
  color: var(--muted);
  max-width: 300px;
}
.agent-team {
  padding-bottom: 60px;
  border-top: 1px solid #2c3b50;
  padding-top: 50px;
}
.agent-team h2 {
  font-size: 26px;
}
.agent-team > p.muted {
  max-width: 560px;
  margin-bottom: 30px;
}
.agent-team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.agent-card {
  padding: 24px;
  background: #121b28;
  border: 1px solid #2c3b50;
  border-radius: 8px;
}
.agent-card svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  color: var(--blue);
}
.agent-card h3 {
  margin-block: 14px 6px;
  font-size: 17px;
}
.agent-role {
  color: var(--cyan);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}
.agent-card p:not(.agent-role) {
  color: var(--muted);
  font-size: 14px;
}
@media (max-width: 780px) {
  .agent-team-grid {
    grid-template-columns: 1fr;
  }
}
.library-heading {
  padding-top: 75px;
}
.library-start {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 90px;
  padding: 40px;
  background: #142334;
  border: 1px solid #344c66;
  border-radius: 10px;
}
.library-start h2 {
  font-size: 35px;
}
.library-start p:not(.category-label) {
  color: #b8cadd;
  margin-top: 20px;
}
.library-start .text-link {
  display: inline-block;
  margin-top: 22px;
}
.library-principle {
  align-self: center;
  font-family: var(--display);
  font-size: 28px;
  line-height: 1.2;
  border-left: 1px solid #496680;
  padding-left: 40px;
}
.library-principle p:nth-child(2) {
  color: var(--cyan);
}
.library-section {
  padding-block: 65px 85px;
}
.library-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}
.library-toolbar h2 {
  font-size: 30px;
}
.library-toolbar label {
  font-size: 13px;
  color: var(--muted);
  width: 300px;
}
.library-toolbar input {
  display: block;
  width: 100%;
  background: #121c29;
  color: var(--ink);
  border: 1px solid #53647b;
  border-radius: 6px;
  padding: 10px 13px;
  margin-top: 7px;
}
.library-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-block: 28px 15px;
}
.library-filters button {
  border-color: #374b65;
  font-size: 14px;
}
.library-filters button[aria-pressed='true'] {
  background: #bce8f1;
  color: #0a2535;
  border-color: #bce8f1;
}
.library-status {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 20px;
}
.library-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.library-item {
  min-width: 0;
}
.no-results {
  padding: 35px;
  border: 1px solid var(--line);
}
.legal-page {
  max-width: 900px;
  padding-block: 70px;
}
.legal-page h1 {
  margin-bottom: 35px;
}
.legal-page h2 {
  font-size: 28px;
  margin-block: 35px 15px;
}
.legal-page h3 {
  margin-block: 25px 15px;
}
.legal-page p {
  color: #c4cfdd;
}
.legal-page a {
  text-decoration: underline;
  color: var(--blue);
}
.legal-page .endcta {
  display: none;
}
@media (min-width: 1600px) {
  .hero {
    padding-block: 110px 90px;
  }
}
@media (max-width: 1100px) {
  .wrap {
    width: calc(100% - 48px);
  }
  .desktop-nav {
    gap: 16px;
    font-size: 14px;
  }
  .brand img {
    width: 160px;
  }
  .hero {
    gap: 35px;
  }
  .hero h1 {
    font-size: 50px;
  }
  .hero-description {
    font-size: 17px;
  }
  .section-heading,
  .product-proof {
    gap: 45px;
  }
  .outline-layout {
    gap: 50px;
    grid-template-columns: 240px 1fr;
  }
  .final-invite {
    gap: 60px;
  }
  .card-grid,
  .library-grid {
    gap: 15px;
  }
  .page-card {
    padding: 22px;
  }
}
@media (max-width: 900px) {
  .desktop-nav {
    display: none;
  }
  .mobile-nav {
    display: block;
  }
  .mobile-nav summary {
    display: flex;
    align-items: center;
    gap: 18px;
    list-style: none;
    padding: 10px 0 10px 20px;
    min-height: 48px;
  }
  .mobile-nav summary::-webkit-details-marker {
    display: none;
  }
  .menu-symbol {
    font-size: 26px;
  }
  .mobile-nav[open] .menu-symbol {
    transform: rotate(45deg);
  }
  .mobile-nav nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: calc(100dvh - 80px);
    overflow: auto;
    padding: 20px 24px 28px;
    background: #101925;
    border-bottom: 1px solid #52657e;
    display: grid;
    gap: 5px;
    box-shadow: 0 20px 40px #0008;
  }
  .mobile-nav nav a {
    padding: 12px 10px;
    min-height: 48px;
  }
  .mobile-nav nav a[aria-current] {
    color: var(--cyan);
  }
  .header-inner {
    min-height: 76px;
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 42px;
    padding-top: 55px;
  }
  .hero-copy {
    max-width: 670px;
  }
  .hero h1 {
    font-size: 60px;
  }
  .hero-description {
    max-width: 580px;
    font-size: 19px;
  }
  .decision-demo {
    max-width: 650px;
    width: 100%;
  }
  .hero .decision-demo {
    justify-self: end;
  }
  .definition {
    font-size: 21px;
  }
  .section-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .section-heading > p {
    max-width: 650px;
  }
  .platform-flow {
    gap: 25px;
  }
  .audience-grid {
    gap: 30px;
  }
  .business-feature {
    padding: 27px;
  }
  .business-feature h3 {
    font-size: 31px;
  }
  .product-proof {
    gap: 30px;
    grid-template-columns: 1fr 1fr;
  }
  .card-grid,
  .library-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .card-grid > .page-card:last-child:nth-child(3) {
    grid-column: 1/-1;
  }
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .outline-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .outline-layout aside {
    position: static;
  }
  .outline-layout aside nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 25px;
  }
  .outline-layout aside p {
    max-width: 600px;
  }
  .library-start {
    gap: 40px;
    padding: 30px;
  }
  .library-principle {
    font-size: 23px;
    padding-left: 25px;
  }
  .final-invite {
    gap: 45px;
  }
  .invite {
    padding-left: 25px;
  }
}
@media (max-width: 600px) {
  .wrap {
    width: calc(100% - 40px);
  }
  .preview-strip {
    font-size: 10px;
  }
  .preview-strip .wrap {
    gap: 12px;
  }
  .brand img {
    width: 154px;
  }
  .hero {
    padding-block: 42px;
    gap: 35px;
  }
  .hero h1 {
    font-size: 43px;
    letter-spacing: -0.04em;
  }
  .hero-description {
    font-size: 17px;
    margin-top: 23px;
  }
  .category-label {
    font-size: 13px;
    margin-bottom: 17px;
  }
  .actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 25px;
  }
  .actions .button {
    min-height: 50px;
  }
  .small-note {
    font-size: 12px;
  }
  .demo-top {
    padding: 18px 17px 13px;
    font-size: 13px;
  }
  .scenario-controls {
    padding: 0 12px 14px;
    gap: 2px;
  }
  .scenario-controls button {
    font-size: 12px;
    padding: 8px 9px;
    flex: 1;
  }
  .memory-step {
    padding: 20px;
  }
  .reason-step {
    padding: 20px;
    margin: 0 8px 8px;
  }
  .reason-step h3 {
    font-size: 25px;
  }
  .approval-step {
    padding: 14px 20px;
  }
  .definition {
    grid-template-columns: 1fr;
    gap: 12px;
    font-size: 21px;
    padding-block: 25px;
  }
  .section {
    padding-block: 55px;
  }
  .section-heading {
    gap: 22px;
    margin-bottom: 30px;
  }
  .section-heading h2 {
    font-size: 33px;
  }
  .section-heading > p {
    font-size: 16px;
  }
  .platform-flow {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 30px;
  }
  .platform-flow > div {
    display: grid;
    grid-template-columns: 32px 1fr;
    gap: 0 17px;
    padding-top: 22px;
  }
  .flow-number {
    grid-row: span 2;
    margin: 0;
  }
  .platform-flow h3 {
    font-size: 24px;
  }
  .platform-flow p {
    font-size: 16px;
    margin-top: 12px;
  }
  .section-links {
    gap: 20px;
    flex-wrap: wrap;
    font-size: 15px;
    margin-top: 28px;
  }
  .audience-grid,
  .product-proof {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .business-feature {
    padding: 28px;
  }
  .business-feature h3 {
    font-size: 35px;
  }
  .audience-list h3 {
    font-size: 23px;
  }
  .card-grid,
  .library-grid {
    grid-template-columns: 1fr;
  }
  .card-grid > .page-card:last-child:nth-child(3) {
    grid-column: auto;
  }
  .page-card {
    padding: 25px;
  }
  .page-card h3 {
    font-size: 26px;
  }
  .page-card .card-link {
    padding-top: 25px;
  }
  .final-invite {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .invite {
    padding: 30px 0 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .final-invite > div > p:not(.category-label) {
    margin-top: 18px;
  }
  .footer {
    padding-top: 40px;
  }
  .footer-main {
    gap: 35px 25px;
  }
  .footer-intro {
    grid-column: 1/-1;
  }
  .footer-main > div:not(.footer-intro) > a {
    padding-block: 7px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }
  .breadcrumbs {
    padding-top: 24px;
  }
  .page-heading {
    padding-block: 37px 40px;
  }
  .page-heading h1 {
    font-size: 41px;
  }
  .page-heading > p:last-child {
    font-size: 18px;
    margin-top: 20px;
  }
  .route-choices {
    margin-bottom: 40px;
  }
  .route-choices .card-grid:has(> .page-card:nth-child(4)) {
    grid-template-columns: 1fr;
  }
  .outline-layout {
    padding-bottom: 35px;
  }
  .outline-sections > section {
    grid-template-columns: 26px 1fr;
    gap: 10px;
    padding-block: 28px;
  }
  .outline-sections h2 {
    font-size: 27px;
  }
  .outline-sections p {
    font-size: 16px;
    margin-top: 14px;
  }
  .next-page {
    flex-direction: column;
    align-items: start;
    gap: 25px;
    padding-block: 35px 50px;
  }
  .next-page h2 {
    font-size: 28px;
  }
  .next-page .button {
    max-width: 100%;
  }
  .library-start {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 26px;
  }
  .library-start h2 {
    font-size: 30px;
  }
  .library-principle {
    border-left: 0;
    border-top: 1px solid #496680;
    padding: 22px 0 0;
    font-size: 24px;
  }
  .library-principle p {
    margin-top: 10px !important;
  }
  .library-section {
    padding-block: 42px 55px;
  }
  .library-toolbar {
    flex-direction: column;
    align-items: stretch;
    gap: 22px;
  }
  .library-toolbar label {
    width: 100%;
  }
  .library-filters {
    gap: 8px;
  }
  .library-filters button {
    font-size: 13px;
    padding: 10px;
  }
  .legal-page {
    padding-block: 40px;
  }
  .legal-page h1 {
    font-size: 39px;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}
.ask-page .page-heading {
  padding-bottom: 40px;
}
.ask-workspace {
  padding: 30px;
  background: #101a27;
  border: 1px solid #3a526e;
  border-radius: 12px;
}
.ask-context {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 15px;
  font-size: 12px;
  padding-bottom: 24px;
  color: var(--muted);
}
.ask-context a {
  color: var(--cyan);
  text-decoration: underline;
}
.ask-workspace h2 {
  font-size: 29px;
  margin-bottom: 25px;
}
.ask-workspace form label {
  font-size: 13px;
  color: var(--muted);
  display: block;
  margin-bottom: 10px;
}
.ask-input {
  border: 1px solid #576d88;
  background: #0b121c;
  border-radius: 8px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: 14px;
}
.ask-input textarea {
  width: 100%;
  border: 0;
  resize: vertical;
  min-height: 95px;
  background: transparent;
  color: var(--ink);
  font: 17px/1.5 var(--font);
  padding: 3px;
}
.ask-input textarea:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}
.ask-input .button {
  font-size: 14px;
  min-height: 44px;
}
.suggested-questions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.suggested-questions button {
  background: #1a2b3f;
  color: #c8d8e9;
  border: 1px solid #3f5772;
  padding: 10px 13px;
  min-height: 42px;
  border-radius: 5px;
  font-size: 12px;
}
.ask-status {
  font-size: 13px;
  color: var(--muted);
  margin-top: 24px;
}
.ask-results article {
  padding: 25px 0;
  border-top: 1px solid #32455f;
}
.ask-results article:first-child {
  margin-top: 25px;
}
.ask-results h3 {
  font-size: 23px;
  margin-block: 10px;
}
.ask-results h3 a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.ask-results p {
  color: var(--muted);
  font-size: 15px;
}
.ask-results .result-source {
  font-size: 11px;
  color: var(--cyan);
}
.visit-controls {
  border-top: 1px solid var(--line);
  margin-top: 30px;
  padding-top: 25px;
}
.visit-controls label {
  display: flex;
  align-items: start;
  gap: 10px;
  font-size: 14px;
}
.visit-controls input {
  margin-top: 5px;
  accent-color: var(--blue);
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}
.visit-controls p {
  font-size: 12px;
  color: var(--muted);
  margin-top: 12px;
}
.visit-controls button {
  background: transparent;
  border: 1px solid #4b627d;
  border-radius: 5px;
  padding: 10px 13px;
  font-size: 12px;
  min-height: 42px;
  margin-top: 15px;
}
@media (max-width: 900px) {
  .ask-workspace {
    padding: 23px;
  }
}
@media (max-width: 600px) {
  .ask-workspace {
    padding: 20px;
  }
  .ask-workspace h2 {
    font-size: 25px;
  }
  .ask-input {
    padding: 12px;
  }
  .ask-input textarea {
    font-size: 16px;
  }
  .suggested-questions {
    gap: 7px;
  }
  .suggested-questions button {
    font-size: 12px;
    padding: 9px 10px;
  }
}

/* Authored reading pages and the people / agents / company explanation. */
.reading-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 760px);
  gap: clamp(32px, 6vw, 100px);
  align-items: start;
  padding-block: 32px 80px;
}
.reading-nav {
  position: sticky;
  top: 110px;
}
.reading-nav h2 {
  font-size: 19px;
  letter-spacing: 0;
}
.reading-nav nav {
  display: grid;
  gap: 14px;
  margin-block: 22px 30px;
}
.reading-nav nav a {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}
.reading-nav nav a:hover {
  color: var(--cyan);
}
.reading-nav > p {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 20px;
}
.reading-body {
  min-width: 0;
}
.reading-body > section {
  margin-bottom: 48px;
  scroll-margin-top: 110px;
}
.reading-body h2 {
  font-size: clamp(26px, 2.5vw, 34px);
  margin-bottom: 24px;
}
.reading-body p {
  color: #d2dbe8;
  font-size: 18px;
  line-height: 1.8;
}
.reading-related {
  display: flex;
  gap: 16px 28px;
  flex-wrap: wrap;
  color: var(--cyan);
}
.evidence-table {
  overflow-x: auto;
  margin-top: 28px;
  border: 1px solid var(--line);
  border-radius: 12px;
}
.evidence-table table {
  border-collapse: collapse;
  width: 100%;
  font-size: 15px;
}
.evidence-table caption {
  text-align: left;
  padding: 18px;
  background: var(--surface);
  color: var(--muted);
}
.evidence-table th,
.evidence-table td {
  text-align: left;
  padding: 14px 18px;
  border-top: 1px solid var(--line);
}
.evidence-table tbody th {
  font-weight: 500;
}
.evidence-table td {
  white-space: nowrap;
}
.command-guide h3 {
  font: 500 17px/1.5 var(--font);
  margin: 24px 0 10px;
}
.command-guide pre {
  overflow-x: auto;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  font-size: 14px;
  line-height: 1.7;
}
.team-map {
  margin: 0 0 64px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: clamp(22px, 3vw, 40px);
}
.team-map-heading {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 36px;
}
.team-map-heading h2 {
  font-size: clamp(26px, 2.6vw, 34px);
}
.team-map-heading > span {
  color: var(--muted);
  font-size: 13px;
}
.team-map-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 36px;
}
.team-map svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  flex-shrink: 0;
}
.role-kind {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
}
.team-map h3 {
  font-size: 24px;
  margin: 6px 0 16px;
}
.team-map p {
  font-size: 15px;
  line-height: 1.6;
  color: #d2dbe8;
}
.team-company {
  padding-inline: 28px;
  border-inline: 1px solid #40516b;
}
.team-company > svg {
  color: var(--copper);
}
.team-company ul {
  padding-left: 18px;
  font-size: 15px;
  color: #d2dbe8;
  line-height: 1.7;
}
.team-people > svg {
  color: var(--cyan);
}
.team-agents > svg,
.personal-assistant > svg {
  color: var(--blue);
}
.personal-assistant {
  display: flex;
  gap: 12px;
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.personal-assistant p {
  margin-top: 6px;
  font-size: 14px;
}
.team-map .boundary-note {
  font-size: 13px;
  color: var(--muted);
  margin-top: 22px;
}
.team-agents dl {
  margin: 0;
}
.team-agents dl div {
  margin-bottom: 14px;
}
.team-agents dt {
  font-weight: 600;
}
.team-agents dd {
  margin: 3px 0 0;
  color: #d2dbe8;
  font-size: 14px;
}
.team-tools {
  margin-top: 30px;
  padding: 20px 0;
  border-block: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  font-size: 14px;
}
.team-tools strong {
  color: var(--cyan);
}
.team-map figcaption {
  max-width: 85ch;
  margin-top: 18px;
  color: var(--muted);
  font-size: 13px;
}
.brand-downloads figure {
  border: 1px solid var(--line);
  padding: 32px;
  margin-top: 20px;
  border-radius: 12px;
}
.brand-downloads figcaption {
  margin-top: 26px;
  color: var(--cyan);
}
@media (max-width: 900px) {
  .reading-layout {
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 32px;
  }
  .team-map-grid {
    gap: 20px;
  }
  .team-company {
    padding-inline: 20px;
  }
}
@media (max-width: 680px) {
  .reading-layout {
    grid-template-columns: 1fr;
    padding-bottom: 30px;
  }
  .reading-nav {
    position: static;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--line);
  }
  .reading-nav nav {
    gap: 10px;
    margin-bottom: 20px;
  }
  .reading-nav > p {
    margin-bottom: 10px;
  }
  .reading-body p {
    font-size: 17px;
  }
  .reading-body > section {
    margin-bottom: 36px;
  }
  .team-map-heading {
    display: block;
  }
  .team-map-heading > span {
    display: block;
    margin-top: 16px;
  }
  .team-map-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .team-company {
    border-inline: 0;
    border-block: 1px solid #40516b;
    padding: 24px 0;
  }
  .team-map {
    border-radius: 14px;
    margin-bottom: 28px;
  }
  .team-map .boundary-note {
    margin-top: 14px;
  }
  .team-tools {
    gap: 10px 18px;
  }
  .team-tools strong {
    width: 100%;
  }
  .evidence-table th,
  .evidence-table td {
    padding: 12px;
  }
}
/* TOS-4505: a persistent guide and a public Mind worth exploring. */
.category-label {
  font-size: 18px;
  line-height: 1.45;
}
.header-inner {
  gap: 20px;
}
.desktop-nav {
  margin-left: auto;
  gap: 22px;
}
.header-ask {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  white-space: nowrap;
  font-size: 15px;
  font-weight: 500;
  padding: 8px 13px;
  border: 1px solid #476581;
  border-radius: 7px;
  background: #162332;
}
.header-ask span {
  color: var(--cyan);
  font-size: 21px;
}
.hero {
  gap: 42px;
  grid-template-columns: 1fr 1.12fr;
  padding-block: 60px;
}
.hero h1 {
  font-size: clamp(46px, 5.4vw, 78px);
  line-height: 1.04;
}
.hero .category-label {
  max-width: 34ch;
}
.hero-description {
  max-width: 470px;
}
.interest-paths {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.interest-paths > a {
  display: block;
  color: var(--ink);
}
.interest-paths > a + a {
  border-left: 1px solid var(--line);
  padding-left: 70px;
}
.interest-paths .category-label {
  display: block;
}
.interest-paths p {
  color: var(--muted);
  margin-block: 22px;
  max-width: 43ch;
}
.interest-paths a:hover .text-link {
  color: var(--cyan);
}
.decision-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}
.decision-section > div > p:not(.category-label) {
  color: var(--muted);
  margin-block: 25px;
}
.mind-experience {
  width: 100%;
  min-width: 0;
  border: 1px solid #344760;
  border-radius: 16px;
  background: #090f1a;
  overflow: hidden;
  box-shadow: 0 25px 85px #0003;
}
.mind-heading {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 4px 12px;
  padding: 17px 22px 0;
}
.mind-wordmark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}
.mind-wordmark > span {
  color: var(--cyan);
  font-size: 23px;
}
.mind-demo-label {
  color: var(--muted);
  font-size: 11px;
}
.mind-stage {
  width: 100%;
  position: relative;
  aspect-ratio: 600/270;
  isolation: isolate;
}
.mind-network {
  display: block;
  width: 100%;
  height: 100%;
}
.memory-orbits {
  fill: none;
  stroke: #7bd9df;
  stroke-width: 0.6;
  opacity: 0.16;
}
.memory-point {
  fill: #9befea;
  opacity: 0;
  transition: opacity 1.2s var(--delay);
}
.memory-point.is-present {
  opacity: 0.85;
}
.memory-point:nth-child(11n).is-present {
  filter: drop-shadow(0 0 4px #68e7ee);
}
.memory-flow,
.mind-edge {
  fill: none;
  stroke: #8eacdf;
  stroke-width: 1;
  opacity: 0;
  transition: opacity 1s;
}
.mind-edge.is-present {
  opacity: 0.14;
}
.memory-flow.is-active {
  opacity: 0.48;
  stroke: #70d7d9;
  stroke-dasharray: 3 7;
}
.mind-edge.is-active {
  opacity: 0.7;
  stroke-width: 1.5;
}
.timeline-running .memory-flow.is-active {
  animation: memory-flow 4s linear infinite;
}
@keyframes memory-flow {
  to {
    stroke-dashoffset: -40;
  }
}
.mind-core {
  opacity: 0;
  transition: opacity 1s;
}
.mind-core.is-present {
  opacity: 0.05;
}
.mind-core.is-active {
  opacity: 0.22;
  filter: blur(10px);
}
.timeline-running .nebula {
  animation: nebula-breathe 9s ease-in-out infinite alternate;
}
@keyframes nebula-breathe {
  to {
    opacity: 0.55;
  }
}
.mind-object {
  position: absolute;
  left: var(--x);
  top: var(--y);
  transform: translate(-50%, -50%);
  width: 23%;
  max-width: 138px;
  border: 1px solid #35415d;
  border-radius: 8px;
  padding: 9px 10px;
  background: #0d1524eb;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.8s,
    border-color 0.8s,
    box-shadow 0.8s;
}
.mind-object.is-present {
  opacity: 0.5;
  visibility: visible;
}
.mind-object.is-active {
  opacity: 1;
  border-color: var(--node-color);
  box-shadow: 0 0 22px #7399ff14;
}
.mind-object span {
  display: block;
  font-size: 10px;
  color: var(--node-color);
  margin-bottom: 4px;
}
.mind-object strong {
  display: block;
  font-weight: 500;
  font-size: 12px;
  line-height: 1.35;
}
.memory-label {
  position: absolute;
  left: 22%;
  top: 88%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 43%;
}
.memory-label strong {
  display: block;
  font-size: 15px;
  color: #9ce7e2;
  font-weight: 500;
}
.memory-label span {
  display: block;
  font-size: 10px;
  color: var(--muted);
}
.mind-region-label {
  position: absolute;
  left: 71.7%;
  top: 8%;
  transform: translateX(-50%);
  color: #b9bddb;
  font-size: 10px;
  letter-spacing: 0.15em;
}
.mind-story {
  padding: 0 22px 16px;
  min-height: 115px;
}
.mind-context {
  color: var(--cyan);
  font-size: 11px;
  margin-bottom: 5px;
}
.mind-story-title {
  font-size: clamp(19px, 1.8vw, 23px);
  line-height: 1.2;
}
.mind-story-description {
  font-size: 13px;
  line-height: 1.5;
  color: #bdcadb;
  margin-top: 8px;
  max-width: 58ch;
}
.mind-timeline {
  border-top: 1px solid #28374d;
  padding: 10px 22px 12px;
  background: #10192980;
}
.mind-time-heading,
.mind-time-ends {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 11px;
  color: var(--muted);
}
.mind-time-label {
  color: var(--cyan);
}
.mind-time-controls {
  display: flex;
  gap: 14px;
  align-items: center;
}
.mind-time-controls button {
  flex: 0 0 64px;
  border: 1px solid #465f7d;
  background: #142239;
  border-radius: 5px;
  min-height: 36px;
  font-size: 12px;
}
.mind-time-controls button:hover {
  background: #213c5b;
}
.mind-time-controls input {
  width: 100%;
  min-width: 0;
  min-height: 44px;
  accent-color: #80cfe5;
  cursor: pointer;
}
.mind-time-ends {
  margin-left: 78px;
  font-size: 10px;
}
.ask-is-open {
  overflow: hidden;
}
.ask-drawer {
  position: fixed;
  inset: 0 0 0 auto;
  margin: 0;
  width: min(500px, 100%);
  max-width: 100%;
  height: 100dvh;
  max-height: 100dvh;
  padding: 0;
  border: 0;
  border-left: 1px solid #48617e;
  background: #0c141f;
  color: var(--ink);
  box-shadow: -25px 0 85px #0005;
}
.ask-drawer[open] {
  display: flex;
  flex-direction: column;
}
.ask-drawer::backdrop {
  background: #02050a66;
}
.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  padding: 22px 25px;
  border-bottom: 1px solid var(--line);
  flex-shrink: 0;
}
.drawer-header h2 {
  font-size: 25px;
}
.drawer-header span {
  font-size: 12px;
  color: var(--muted);
}
.drawer-close {
  border: 1px solid #465c74;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  background: transparent;
  font-size: 20px;
}
.drawer-scroll {
  overflow-y: auto;
  overscroll-behavior: contain;
  flex: 1;
  min-height: 0;
}
.ask-drawer .ask-workspace {
  padding: 25px;
  background: none;
  border: 0;
  border-radius: 0;
}
.ask-drawer .ask-workspace h2 {
  font-size: 24px;
}
.drawer-footer {
  padding: 15px 25px max(15px, env(safe-area-inset-bottom));
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 6px 16px;
  font-size: 12px;
  flex-shrink: 0;
}
.drawer-footer a {
  color: var(--blue);
  text-decoration: underline;
}
.drawer-footer span {
  color: var(--muted);
}
.ask-page {
  padding-bottom: 70px;
}
.ask-page .ask-workspace {
  max-width: 820px;
}
textarea:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 3px;
}
@media (max-width: 1100px) {
  .desktop-nav {
    display: none;
  }
  .mobile-nav {
    display: block;
  }
  .header-ask {
    margin-left: auto;
  }
  .mobile-nav nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #101925;
    padding: 20px 24px;
    display: grid;
    gap: 6px;
    max-height: calc(100dvh - 80px);
    overflow-y: auto;
    border-bottom: 1px solid #52657e;
  }
  .mobile-nav nav a {
    padding: 12px 10px;
  }
  .mobile-nav summary {
    display: flex;
    list-style: none;
    gap: 10px;
    align-items: center;
    min-height: 44px;
  }
  .mobile-nav summary::-webkit-details-marker {
    display: none;
  }
  .hero {
    gap: 30px;
  }
}
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .mind-experience {
    max-width: 600px;
    justify-self: center;
  }
  .hero-copy {
    max-width: 680px;
  }
  .hero h1 {
    font-size: 64px;
  }
  .interest-paths {
    gap: 35px;
  }
  .interest-paths > a + a {
    padding-left: 35px;
  }
  .decision-section {
    gap: 35px;
    grid-template-columns: 1fr;
  }
  .decision-section .decision-demo {
    max-width: none;
  }
}
@media (max-width: 600px) {
  .header-inner {
    gap: 10px;
    min-height: 72px;
  }
  .header .brand img {
    width: 112px;
  }
  .header-ask {
    font-size: 13px;
    gap: 6px;
    padding: 7px 9px;
  }
  .header-ask span {
    font-size: 18px;
  }
  .mobile-nav summary {
    padding: 6px;
  }
  .mobile-nav summary > span:first-child {
    display: none;
  }
  .category-label {
    font-size: 16px;
  }
  .hero {
    padding-block: 40px;
    gap: 35px;
  }
  .hero h1 {
    font-size: clamp(43px, 10.8vw, 60px);
  }
  .hero .category-label {
    margin-bottom: 18px;
  }
  .hero-description {
    font-size: 18px;
    margin-top: 22px;
  }
  .interest-paths {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .interest-paths > a + a {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 35px 0 0;
  }
  .mind-heading {
    padding: 12px 14px 0;
  }
  .mind-wordmark {
    font-size: 12px;
  }
  .mind-demo-label {
    font-size: 10px;
  }
  .mind-stage {
    aspect-ratio: 600/320;
    min-height: 200px;
  }
  .mind-network {
    position: absolute;
    inset: 0;
  }
  .mind-region-label {
    top: 1%;
  }
  .mind-object {
    padding: 6px;
    width: 24%;
  }
  .mind-object span {
    font-size: 9px;
  }
  .mind-object strong {
    font-size: 10px;
  }
  .mind-story {
    padding: 5px 16px 15px;
    min-height: 153px;
  }
  .mind-story-title {
    font-size: 20px;
  }
  .mind-timeline {
    padding-inline: 16px;
  }
  .ask-drawer {
    width: 100%;
    border-left: 0;
  }
  .drawer-header {
    padding: 16px 20px;
  }
  .ask-drawer .ask-workspace {
    padding: 20px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .mind-experience *,
  .mind-experience *::before {
    animation: none !important;
    transition: none !important;
  }
}

/* Generated by web/scripts/extract-ported-page-css.mjs - do not edit by hand.
 * Layout rules for the ported pricing and partners pages (TOS-4506), scoped
 * to .ported-page so the retired design cannot reach the rest of the site. */

/* Custom properties the new stylesheet does not define, taken from the
 * retired one so the ported markup keeps its intended colours. */
.ported-page {
  padding-block: 70px;
  --ink-soft: #b3bed2;
  --cyan-deep: #2e9fe0;
  --glow-cyan: rgba(91,200,255,.45);
  --line-bright: rgba(123,210,255,.28);
}

.ported-page a:focus-visible, .ported-page button:focus-visible, .ported-page .btn:focus-visible, .ported-page .card:focus-visible, .ported-page .feature:focus-visible, .ported-page summary:focus-visible {outline:2px solid var(--cyan);outline-offset:3px;border-radius:8px}
.ported-page .nav-links a:not(.btn) {font-size:14px;color:var(--ink-soft);transition:color .2s}
.ported-page .nav-links a:not(.btn):hover {color:var(--ink)}
.ported-page .btn {font-family:"IBM Plex Sans",sans-serif;font-weight:500;font-size:14px;padding:10px 20px;min-height:44px;border-radius:11px;cursor:pointer;border:1px solid transparent;transition:transform .18s ease-out,box-shadow .25s ease-out,border-color .2s;display:inline-flex;align-items:center;justify-content:center;gap:8px;white-space:nowrap}
.ported-page .btn-primary {background:linear-gradient(100deg,var(--cyan),var(--cyan-deep));color:#04121d;font-weight:600;box-shadow:0 6px 26px -8px var(--glow-cyan)}
.ported-page .btn-primary:hover {transform:translateY(-2px)}
.ported-page .btn-ghost {background:rgba(255,255,255,.03);border:1px solid var(--line);color:var(--ink)}
.ported-page .btn-ghost:hover {border-color:var(--line-bright);transform:translateY(-2px)}
.ported-page .btn:active {transform:translateY(0)}
@media(max-width:900px) {
.ported-page .nav-links a:not(.btn) {padding:13px 28px;font-size:15px;min-height:44px;display:flex;align-items:center}
.ported-page .nav-links a.btn {margin:8px 28px;justify-content:center}
}
.ported-page .eyebrow {font-family:"IBM Plex Mono",monospace;font-size:11px;letter-spacing:.3em;text-transform:uppercase;color:var(--cyan);display:block;margin-bottom:20px}
.ported-page .feature .more {color:var(--cyan);font-size:14px;font-weight:500}
.ported-page .card .more {font-size:12.5px;color:var(--cyan)}
.ported-page .endcta .row {display:flex;gap:12px;justify-content:center;flex-wrap:wrap}
.ported-page .dev .hero .lead {font-size:19px;line-height:1.6;color:var(--ink-soft);font-weight:300;margin:0}
.ported-page .science-page .nav-links a:not(.btn) {font-size:14px;font-weight:400;color:rgba(238,243,251,.68)}
.ported-page .science-page .nav-links a:not(.btn):hover, .ported-page .science-page .nav-links .nav-active {color:var(--ink)}
.ported-page .science-page .nav-links .btn {min-height:44px;border-radius:11px;padding:10px 20px;font-size:14px}
.ported-page .science-hero .eyebrow {margin-bottom:18px}
.ported-page .science-cta .btn {min-width:0;min-height:46px;border-radius:11px;font-size:14px}
@media(max-width:1320px) and (min-width:1041px) {
.ported-page .science-page .nav-links a:not(.btn) {font-size:14px}
.ported-page .science-page .nav-links .btn {min-height:44px;padding:10px 20px;font-size:14px}
.ported-page .science-cta .btn {min-width:0;min-height:46px;padding:10px 18px;font-size:14px}
}
@media(max-width:1040px) {
.ported-page .science-page .nav-links a:not(.btn) {font-size:14px}
.ported-page .science-page .nav-links .btn {min-height:44px;padding:10px 16px;font-size:14px}
.ported-page .science-cta .btn {min-width:0;min-height:46px}
}
.ported-page .install-hero .lead {font-size:19px;line-height:1.6;color:var(--ink-soft);font-weight:300;margin:0}
.ported-page .install-body a:not(.btn) {color:var(--cyan);border-bottom:1px solid rgba(91,200,255,.3)}

/* Generated by web/scripts/extract-install-css.mjs - do not edit by hand.
 * Layout rules for the ported install page (TOS-4506 cutover), scoped
 * to .install-page so the retired design cannot reach the rest of the site. */

/* Custom properties the new stylesheet does not define, taken from the
 * retired one so the ported markup keeps its intended colours. */
.install-page {
  padding-block: 70px;
  --ink-soft: #b3bed2;
  --cyan-deep: #2e9fe0;
  --glow-cyan: rgba(91,200,255,.45);
  --line-bright: rgba(123,210,255,.28);
  --violet: #a78bfa;
  --panel: #0c111d;
  --ink-mute: #7e8ba4;
  --read: 720px;
  --maxw: 1200px;
}

.install-page a:focus-visible, .install-page button:focus-visible, .install-page .btn:focus-visible, .install-page .card:focus-visible, .install-page .feature:focus-visible, .install-page summary:focus-visible {outline:2px solid var(--cyan);outline-offset:3px;border-radius:8px}
.install-page .nav-links a:not(.btn) {font-size:14px;color:var(--ink-soft);transition:color .2s}
.install-page .nav-links a:not(.btn):hover {color:var(--ink)}
.install-page .btn {font-family:"IBM Plex Sans",sans-serif;font-weight:500;font-size:14px;padding:10px 20px;min-height:44px;border-radius:11px;cursor:pointer;border:1px solid transparent;transition:transform .18s ease-out,box-shadow .25s ease-out,border-color .2s;display:inline-flex;align-items:center;justify-content:center;gap:8px;white-space:nowrap}
.install-page .btn-primary {background:linear-gradient(100deg,var(--cyan),var(--cyan-deep));color:#04121d;font-weight:600;box-shadow:0 6px 26px -8px var(--glow-cyan)}
.install-page .btn-primary:hover {transform:translateY(-2px)}
.install-page .btn-ghost {background:rgba(255,255,255,.03);border:1px solid var(--line);color:var(--ink)}
.install-page .btn-ghost:hover {border-color:var(--line-bright);transform:translateY(-2px)}
.install-page .btn:active {transform:translateY(0)}
@media(max-width:900px) {
.install-page .nav-links a:not(.btn) {padding:13px 28px;font-size:15px;min-height:44px;display:flex;align-items:center}
.install-page .nav-links a.btn {margin:8px 28px;justify-content:center}
}
.install-page .tablewrap {overflow-x:auto;-webkit-overflow-scrolling:touch;margin:24px 0}
.install-page .eyebrow {font-family:"IBM Plex Mono",monospace;font-size:11px;letter-spacing:.3em;text-transform:uppercase;color:var(--cyan);display:block;margin-bottom:20px}
.install-page .grad {background:linear-gradient(100deg,var(--cyan),var(--violet));-webkit-background-clip:text;background-clip:text;color:transparent}
.install-page .cards {display:grid;grid-template-columns:1fr 1fr;gap:16px}
.install-page .card {display:block;border:1px solid var(--line);border-radius:16px;padding:24px;background:var(--panel);transition:transform .2s,border-color .2s}
.install-page .card:hover {transform:translateY(-3px);border-color:var(--line-bright)}
.install-page .card .tag {font-family:"IBM Plex Mono",monospace;font-size:10px;letter-spacing:.16em;text-transform:uppercase;color:var(--ink-mute);margin-bottom:10px}
.install-page .card h3 {font-family:"Bricolage Grotesque",sans-serif;font-weight:600;font-size:18px;line-height:1.2;margin-bottom:8px}
.install-page .card p {font-size:13.5px;color:var(--ink-mute);font-weight:300;margin-bottom:12px}
.install-page .card .more {font-size:12.5px;color:var(--cyan)}
@media(max-width:680px) {
.install-page .cards {grid-template-columns:1fr}
}
.install-page .endcta {max-width:var(--read);margin:0 auto;padding:8px 28px 80px}
.install-page .endcta-inner {border:1px solid var(--line);border-radius:18px;padding:30px;background:var(--panel);text-align:center}
.install-page .endcta h4 {font-family:"Bricolage Grotesque",sans-serif;font-weight:700;font-size:22px;margin-bottom:8px}
.install-page .endcta p {color:var(--ink-mute);font-size:14px;margin-bottom:20px}
.install-page .endcta .row {display:flex;gap:12px;justify-content:center;flex-wrap:wrap}
.install-page .dev .hero .lead {font-size:19px;line-height:1.6;color:var(--ink-soft);font-weight:300;margin:0}
.install-page .cards.three {grid-template-columns:repeat(3,1fr)}
@media(max-width:760px) {
.install-page .cards.three {grid-template-columns:1fr}
}
.install-page .science-page .nav-links a:not(.btn) {font-size:14px;font-weight:400;color:rgba(238,243,251,.68)}
.install-page .science-page .nav-links a:not(.btn):hover, .install-page .science-page .nav-links .nav-active {color:var(--ink)}
.install-page .science-page .nav-links .btn {min-height:44px;border-radius:11px;padding:10px 20px;font-size:14px}
.install-page .science-hero .eyebrow {margin-bottom:18px}
.install-page .science-cta .btn {min-width:0;min-height:46px;border-radius:11px;font-size:14px}
@media(max-width:1320px) and (min-width:1041px) {
.install-page .science-page .nav-links a:not(.btn) {font-size:14px}
.install-page .science-page .nav-links .btn {min-height:44px;padding:10px 20px;font-size:14px}
.install-page .science-cta .btn {min-width:0;min-height:46px;padding:10px 18px;font-size:14px}
}
@media(max-width:1040px) {
.install-page .science-page .nav-links a:not(.btn) {font-size:14px}
.install-page .science-page .nav-links .btn {min-height:44px;padding:10px 16px;font-size:14px}
.install-page .science-cta .btn {min-width:0;min-height:46px}
}
.install-page .install {max-width:var(--maxw);margin:0 auto;padding:0 28px}
.install-page .install-hero {max-width:820px;margin:0 auto;padding:72px 0 10px;text-align:center}
.install-page .install-hero h1 {font-family:"Bricolage Grotesque",sans-serif;font-weight:800;font-size:clamp(34px,5.6vw,56px);line-height:1.04;letter-spacing:-.02em;margin:14px 0 16px}
.install-page .install-hero .lead {font-size:19px;line-height:1.6;color:var(--ink-soft);font-weight:300;margin:0}
.install-page .install-body {max-width:800px;margin:0 auto}
.install-page .install-body section {padding:44px 0;border-top:1px solid var(--line)}
.install-page .install-body h2 {font-family:"Bricolage Grotesque",sans-serif;font-weight:700;font-size:clamp(22px,3vw,28px);line-height:1.15;letter-spacing:-.01em;margin:0 0 14px}
.install-page .install-body p {font-size:16px;line-height:1.7;color:var(--ink-soft);font-weight:300;margin:0 0 14px}
.install-page .install-body p:last-child {margin-bottom:0}
.install-page .install-body code {font-family:"IBM Plex Mono",monospace;font-size:.88em;background:rgba(255,255,255,.05);border:1px solid var(--line);border-radius:5px;padding:1px 5px;color:var(--ink)}
.install-page .install-body a:not(.btn) {color:var(--cyan);border-bottom:1px solid rgba(91,200,255,.3)}
.install-page .checklist {list-style:none;margin:0;padding:0;display:grid;gap:11px}
.install-page .checklist li {position:relative;padding-left:30px;font-size:16px;line-height:1.65;color:var(--ink-soft);font-weight:300}
.install-page .checklist li::before {content:"";position:absolute;left:0;top:12px;width:16px;height:16px;margin-top:-8px;border-radius:50%;border:1px solid var(--line-bright);background:rgba(91,200,255,.1)}
.install-page .checklist li::after {content:"";position:absolute;left:5.5px;top:9px;width:4px;height:8px;border:solid var(--cyan);border-width:0 1.5px 1.5px 0;transform:rotate(45deg)}
.install-page .checklist b {color:var(--ink);font-weight:500}
.install-page .step {display:grid;grid-template-columns:38px minmax(0,1fr);gap:18px;padding:0 0 32px}
.install-page .step:last-of-type {padding-bottom:0}
.install-page .step-n {width:38px;height:38px;border-radius:50%;border:1px solid var(--line-bright);background:rgba(91,200,255,.08);color:var(--cyan);font-family:"IBM Plex Mono",monospace;font-size:15px;display:flex;align-items:center;justify-content:center}
.install-page .step h3 {font-family:"Bricolage Grotesque",sans-serif;font-weight:600;font-size:19px;line-height:1.3;margin:7px 0 10px}
.install-page .step p {font-size:15.5px}
.install-page pre.cmd {font-family:"IBM Plex Mono",monospace;font-size:13.5px;line-height:1.9;color:var(--ink);background:rgba(0,0,0,.35);border:1px solid var(--line);border-radius:10px;padding:14px 16px;overflow-x:auto;margin:0 0 14px}
.install-page pre.cmd .c {color:var(--ink-mute)}
.install-page pre.cmd b {color:var(--cyan);font-weight:400}
.install-page .flags {width:100%;border-collapse:collapse;font-size:14.5px}
.install-page .flags th, .install-page .flags td {border-bottom:1px solid var(--line);padding:11px 12px;text-align:left;vertical-align:top;color:var(--ink-soft);font-weight:300}
.install-page .flags th {color:var(--ink);font-weight:600;font-size:11px;letter-spacing:.14em;text-transform:uppercase;font-family:"IBM Plex Mono",monospace}
.install-page .flags td:first-child {white-space:nowrap}
.install-page .flags td:first-child code {color:var(--cyan);background:none;border:0;padding:0;font-size:13px}
.install-page .note {border-left:2px solid var(--line-bright);background:rgba(91,200,255,.045);border-radius:0 10px 10px 0;padding:14px 18px;margin:0 0 14px}
.install-page .note p {margin:0;font-size:15px}
.install-page .note b {color:var(--cyan);font-weight:500}
.install-page .tshoot details {border-bottom:1px solid var(--line)}
.install-page .tshoot details:first-child {border-top:1px solid var(--line)}
.install-page .tshoot summary {cursor:pointer;list-style:none;padding:15px 0;font-family:"IBM Plex Mono",monospace;font-size:13.5px;color:var(--ink);display:flex;gap:12px;align-items:flex-start}
.install-page .tshoot summary::-webkit-details-marker {display:none}
.install-page .tshoot summary::before {content:"+";color:var(--cyan);font-size:15px;line-height:1.3;flex:0 0 auto}
.install-page .tshoot details[open] summary::before {content:"\2212"}
.install-page .tshoot details p {padding:0 0 16px 25px;font-size:15px;margin:0}
@media(max-width:680px) {
.install-page .install {padding:0 20px}
.install-page .install-hero {padding:44px 0 6px}
.install-page .install-body section {padding:34px 0}
.install-page .step {grid-template-columns:30px minmax(0,1fr);gap:14px}
.install-page .step-n {width:30px;height:30px;font-size:13px}
.install-page pre.cmd {font-size:12px;padding:12px 13px}
.install-page .flags td:first-child {white-space:normal}
}

/* Generated by web/scripts/extract-satellite-css.mjs - do not edit by hand.
 * Layout rules for the ported connect-tools satellite page (TOS-4619), scoped
 * to .satellite-page so the retired design cannot reach the rest of the site. */

/* Custom properties the new stylesheet does not define, taken from the
 * retired one so the ported markup keeps its intended colours. */
.satellite-page {
  padding-block: 70px;
  --ink-soft: #b3bed2;
  --cyan-deep: #2e9fe0;
  --glow-cyan: rgba(91,200,255,.45);
  --line-bright: rgba(123,210,255,.28);
  --maxw: 1200px;
  --ink-mute: #7e8ba4;
  --read: 720px;
  --panel: #0c111d;
}

.satellite-page a:focus-visible, .satellite-page button:focus-visible, .satellite-page .btn:focus-visible, .satellite-page .card:focus-visible, .satellite-page .feature:focus-visible, .satellite-page summary:focus-visible {outline:2px solid var(--cyan);outline-offset:3px;border-radius:8px}
.satellite-page .nav-links a:not(.btn) {font-size:14px;color:var(--ink-soft);transition:color .2s}
.satellite-page .nav-links a:not(.btn):hover {color:var(--ink)}
.satellite-page .btn {font-family:"IBM Plex Sans",sans-serif;font-weight:500;font-size:14px;padding:10px 20px;min-height:44px;border-radius:11px;cursor:pointer;border:1px solid transparent;transition:transform .18s ease-out,box-shadow .25s ease-out,border-color .2s;display:inline-flex;align-items:center;justify-content:center;gap:8px;white-space:nowrap}
.satellite-page .btn-primary {background:linear-gradient(100deg,var(--cyan),var(--cyan-deep));color:#04121d;font-weight:600;box-shadow:0 6px 26px -8px var(--glow-cyan)}
.satellite-page .btn-primary:hover {transform:translateY(-2px)}
.satellite-page .btn-ghost {background:rgba(255,255,255,.03);border:1px solid var(--line);color:var(--ink)}
.satellite-page .btn-ghost:hover {border-color:var(--line-bright);transform:translateY(-2px)}
.satellite-page .btn:active {transform:translateY(0)}
@media(max-width:900px) {
.satellite-page .nav-links a:not(.btn) {padding:13px 28px;font-size:15px;min-height:44px;display:flex;align-items:center}
.satellite-page .nav-links a.btn {margin:8px 28px;justify-content:center}
}
.satellite-page .reader {max-width:var(--maxw);margin:0 auto;padding:64px 28px 36px}
.satellite-page .backlink {display:inline-flex;gap:8px;font-family:"IBM Plex Mono",monospace;font-size:12px;letter-spacing:.05em;color:var(--ink-mute);margin-bottom:22px}
.satellite-page .backlink:hover {color:var(--cyan)}
.satellite-page .reader h1 {font-family:"Bricolage Grotesque",sans-serif;font-weight:800;font-size:clamp(34px,5.4vw,54px);line-height:1.05;letter-spacing:-.02em;margin-bottom:10px}
.satellite-page .reader h3 {font-family:"IBM Plex Sans",sans-serif;font-weight:400;font-size:18px;color:var(--ink-mute);font-style:normal;margin:0 0 38px}
.satellite-page .reader p.subtitle {color:var(--ink-mute);font-size:18px;font-style:italic;margin:0 0 40px;line-height:1.55}
.satellite-page .reader h2 {font-family:"Bricolage Grotesque",sans-serif;font-weight:700;font-size:clamp(22px,3vw,30px);line-height:1.15;letter-spacing:-.01em;margin:50px 0 18px}
.satellite-page .reader p {font-size:17px;line-height:1.85;color:var(--ink-soft);margin:0 0 22px}
.satellite-page .reader strong {color:var(--ink);font-weight:600}
.satellite-page .reader a {color:var(--cyan);border-bottom:1px solid rgba(91,200,255,.3)}
.satellite-page .reader a:hover {border-color:var(--cyan)}
.satellite-page .reader hr {border:0;height:1px;background:linear-gradient(90deg,transparent,var(--line),transparent);margin:46px 0}
.satellite-page .reader em {font-style:italic}
.satellite-page .reader ul {margin:0 0 22px;padding-left:22px;list-style:disc}
.satellite-page .reader li {font-size:17px;line-height:1.85;color:var(--ink-soft);margin:0 0 10px}
.satellite-page .reader li::marker {color:var(--cyan)}
.satellite-page .reader code {font-family:"IBM Plex Mono",monospace;font-size:.88em;background:rgba(255,255,255,.05);border:1px solid var(--line);border-radius:5px;padding:1px 5px;color:var(--ink)}
.satellite-page .reader table {width:100%;border-collapse:collapse;margin:0;font-size:15px}
.satellite-page .reader th, .satellite-page .reader td {border:1px solid var(--line);padding:10px 14px;text-align:left;color:var(--ink-soft)}
.satellite-page .reader th {color:var(--ink);font-weight:600;background:rgba(255,255,255,.02)}
.satellite-page .endcta {max-width:var(--read);margin:0 auto;padding:8px 28px 80px}
.satellite-page .endcta-inner {border:1px solid var(--line);border-radius:18px;padding:30px;background:var(--panel);text-align:center}
.satellite-page .endcta h4 {font-family:"Bricolage Grotesque",sans-serif;font-weight:700;font-size:22px;margin-bottom:8px}
.satellite-page .endcta p {color:var(--ink-mute);font-size:14px;margin-bottom:20px}
.satellite-page .endcta .row {display:flex;gap:12px;justify-content:center;flex-wrap:wrap}
.satellite-page .science-page .nav-links a:not(.btn) {font-size:14px;font-weight:400;color:rgba(238,243,251,.68)}
.satellite-page .science-page .nav-links a:not(.btn):hover, .satellite-page .science-page .nav-links .nav-active {color:var(--ink)}
.satellite-page .science-page .nav-links .btn {min-height:44px;border-radius:11px;padding:10px 20px;font-size:14px}
.satellite-page .science-cta .btn {min-width:0;min-height:46px;border-radius:11px;font-size:14px}
@media(max-width:1320px) and (min-width:1041px) {
.satellite-page .science-page .nav-links a:not(.btn) {font-size:14px}
.satellite-page .science-page .nav-links .btn {min-height:44px;padding:10px 20px;font-size:14px}
.satellite-page .science-cta .btn {min-width:0;min-height:46px;padding:10px 18px;font-size:14px}
}
@media(max-width:1040px) {
.satellite-page .science-page .nav-links a:not(.btn) {font-size:14px}
.satellite-page .science-page .nav-links .btn {min-height:44px;padding:10px 16px;font-size:14px}
.satellite-page .science-cta .btn {min-width:0;min-height:46px}
}
.satellite-page .install-body a:not(.btn) {color:var(--cyan);border-bottom:1px solid rgba(91,200,255,.3)}
