:root {
  --bg: #07101f;
  --bg-soft: #0b1628;
  --panel: #101d31;
  --panel-light: #f3f6fb;
  --ink: #f7f9fc;
  --ink-dark: #101827;
  --muted: #92a0b6;
  --muted-dark: #667085;
  --line: rgba(255, 255, 255, 0.09);
  --line-dark: rgba(16, 24, 39, 0.1);
  --blue: #75a7ff;
  --blue-bright: #4e8cff;
  --blue-soft: #dce9ff;
  --green: #7ee6b1;
  --radius: 26px;
  --shadow: 0 32px 90px rgba(0, 0, 0, 0.32);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 78% 4%, rgba(61, 117, 220, 0.17), transparent 27rem),
    var(--bg);
  font-family: "Onest", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 140 140' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
  content: "";
  pointer-events: none;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

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

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--ink-dark);
  background: #fff;
  border-radius: 10px;
  transform: translateY(-150%);
}

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

.topbar {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 50%;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  width: min(1180px, calc(100% - 40px));
  min-height: 70px;
  padding: 0 10px 0 16px;
  border: 1px solid transparent;
  border-radius: 18px;
  transform: translateX(-50%);
  transition: background 180ms ease, border-color 180ms ease, top 180ms ease, box-shadow 180ms ease;
}

.topbar.is-scrolled {
  top: 10px;
  border-color: var(--line);
  background: rgba(7, 16, 31, 0.82);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-self: start;
  font-family: "Unbounded", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.brand img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.text-link,
.footer nav a {
  transition: color 160ms ease;
}

.text-link:hover,
.footer nav a:hover {
  color: #fff;
}

.topbar__actions {
  display: flex;
  align-items: center;
  gap: 18px;
  justify-self: end;
}

.text-link {
  color: #b7c2d3;
  font-size: 0.82rem;
  font-weight: 500;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: #fff;
  background: rgba(255, 255, 255, 0.035);
  font-size: 0.9rem;
  font-weight: 600;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-2px);
}

.button--small {
  min-height: 42px;
  padding: 0 17px;
  border-radius: 11px;
  font-size: 0.8rem;
}

.button--primary {
  border-color: #78a8ff;
  color: #07101f;
  background: linear-gradient(135deg, #a8c7ff, #6b9efa);
  box-shadow: 0 14px 34px rgba(71, 126, 230, 0.24);
}

.button--primary:hover {
  border-color: #a9c8ff;
  background: linear-gradient(135deg, #b8d1ff, #7aa8fc);
  box-shadow: 0 18px 44px rgba(71, 126, 230, 0.32);
}

.button--ghost {
  color: #d7deea;
}

.button--light {
  border-color: #fff;
  color: #10203b;
  background: #fff;
}

.button--light:hover {
  border-color: #fff;
  color: #07101f;
  background: #eef4ff;
}

.download-arrow {
  display: inline-grid;
  place-items: center;
  width: 23px;
  height: 23px;
  border-radius: 8px;
  background: rgba(7, 16, 31, 0.1);
  font-family: "JetBrains Mono", monospace;
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(600px, 1.14fr);
  align-items: center;
  gap: 42px;
  width: min(1320px, calc(100% - 40px));
  min-height: 790px;
  margin: 0 auto;
  padding: 120px 0 76px;
}

.hero__copy {
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-label,
.card-kicker {
  color: var(--blue);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
}

.eyebrow i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(126, 230, 177, 0.1);
}

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

h1 {
  max-width: 670px;
  margin: 24px 0 24px;
  font-size: clamp(3.5rem, 4.5vw, 4.35rem);
  line-height: 0.99;
  letter-spacing: -0.066em;
}

h1 span {
  color: #91b7fa;
}

.lead {
  max-width: 590px;
  margin-bottom: 0;
  color: #aab5c7;
  font-size: 1.04rem;
  line-height: 1.72;
}

.hero__actions {
  display: flex;
  gap: 12px;
  margin-top: 34px;
}

.hero__facts {
  display: flex;
  gap: 26px;
  margin-top: 34px;
  color: #8695ab;
  font-size: 0.75rem;
}

.hero__facts span {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.hero__facts b {
  color: #eaf0fa;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.92rem;
}

.product-preview {
  position: relative;
  min-width: 0;
  padding: 40px 0 36px;
  perspective: 1200px;
}

.product-preview__glow {
  position: absolute;
  top: 12%;
  right: 2%;
  bottom: 6%;
  left: 5%;
  border-radius: 50%;
  background: rgba(65, 126, 235, 0.22);
  filter: blur(80px);
}

.app-window {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 1px solid rgba(178, 204, 250, 0.17);
  border-radius: 26px;
  background: #0a1424;
  box-shadow: var(--shadow);
  transform: rotateY(-4deg) rotateX(1deg);
  transform-origin: center left;
}

.app-window__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 53px;
  padding: 0 18px;
  border-bottom: 1px solid var(--line);
  background: #0d192b;
}

.window-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
}

.window-brand img {
  width: 23px;
  height: 23px;
}

.window-controls {
  display: flex;
  gap: 7px;
}

.window-controls i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #3c495c;
}

.app-shell {
  display: grid;
  grid-template-columns: 118px 1fr;
  min-height: 440px;
}

.app-sidebar {
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: 24px 10px;
  border-right: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.012);
}

.app-sidebar span {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 35px;
  padding: 0 9px;
  border-radius: 9px;
  color: #77869d;
  font-size: 0.57rem;
}

.app-sidebar span i {
  display: grid;
  flex: 0 0 16px;
  place-items: center;
  width: 16px;
  height: 16px;
  color: #7eaafa;
  font-style: normal;
}

.app-sidebar span i svg {
  width: 15px;
  height: 15px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.app-sidebar .app-sidebar__active {
  color: #e7eef9;
  background: rgba(108, 158, 250, 0.1);
}

.app-content {
  min-width: 0;
  padding: 24px;
}

.app-content__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.app-content__top small,
.connection-copy__label,
.subscription-card small,
.route-card small {
  color: #718198;
  font-size: 0.58rem;
}

.app-content__top h2 {
  margin: 4px 0 0;
  font-size: 1.1rem;
  letter-spacing: -0.03em;
}

.app-status {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  border: 1px solid rgba(135, 173, 238, 0.14);
  border-radius: 20px;
  color: #9eafc7;
  background: rgba(135, 173, 238, 0.05);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.52rem;
  text-transform: uppercase;
}

.app-status i,
.preview-note--bottom i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
}

.app-status i {
  background: #71829a;
  box-shadow: 0 0 0 3px rgba(113, 130, 154, 0.1);
}

.preview-note--bottom i {
  background: var(--green);
  box-shadow: 0 0 10px rgba(126, 230, 177, 0.7);
}

.connection-card {
  display: grid;
  grid-template-columns: 92px 1fr auto;
  align-items: center;
  gap: 17px;
  padding: 19px;
  border: 1px solid rgba(116, 165, 253, 0.18);
  border-radius: 18px;
  background:
    radial-gradient(circle at 10% 50%, rgba(89, 143, 241, 0.12), transparent 11rem),
    #101e33;
}

.connection-orbit {
  position: relative;
  display: grid;
  place-items: center;
  width: 80px;
  height: 80px;
}

.connection-orbit span,
.connection-orbit::before,
.connection-orbit::after {
  position: absolute;
  border: 1px solid rgba(112, 165, 255, 0.17);
  border-radius: 50%;
  content: "";
}

.connection-orbit span {
  inset: 0;
}

.connection-orbit::before {
  inset: 8px;
}

.connection-orbit::after {
  inset: 16px;
  background: rgba(94, 145, 237, 0.1);
}

.connection-orbit img {
  position: relative;
  z-index: 1;
  width: 43px;
  height: 43px;
}

.connection-copy h3 {
  margin: 4px 0 3px;
  font-size: 1.02rem;
  letter-spacing: -0.03em;
}

.connection-copy > p {
  margin-bottom: 14px;
  color: #8190a5;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.52rem;
}

.connection-stats {
  display: flex;
  gap: 20px;
}

.connection-stats span {
  display: grid;
  gap: 2px;
}

.connection-stats small {
  color: #66768e;
  font-size: 0.49rem;
}

.connection-stats b {
  color: #c8d4e7;
  font-size: 0.58rem;
}

.connection-card button {
  padding: 9px 12px;
  border: 1px solid rgba(117, 167, 255, 0.24);
  border-radius: 10px;
  color: #dbe8ff;
  background: rgba(117, 167, 255, 0.11);
  font-size: 0.56rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease, transform 180ms ease;
}

.connection-card button:hover,
.connection-card button:focus-visible {
  border-color: rgba(150, 190, 255, 0.48);
  background: rgba(117, 167, 255, 0.19);
  outline: none;
  transform: translateY(-1px);
}

.connection-card button:disabled {
  cursor: wait;
  transform: none;
}

.app-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 12px;
  margin-top: 12px;
}

.subscription-card,
.route-card {
  min-width: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.025);
}

.card-title {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 9px;
}

.mini-icon {
  display: grid;
  place-items: center;
  width: 29px;
  height: 29px;
  border-radius: 9px;
  color: #cfe0ff;
  background: rgba(93, 147, 245, 0.16);
  font-family: "Unbounded", sans-serif;
  font-size: 0.58rem;
}

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

.card-title b {
  font-size: 0.66rem;
}

.card-title em {
  color: #9bbcf8;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.58rem;
  font-style: normal;
}

.usage-line {
  height: 5px;
  margin: 16px 0 8px;
  overflow: hidden;
  border-radius: 4px;
  background: #1d2a3c;
}

.usage-line i {
  display: block;
  width: 72%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #5f95f5, #8ab1fa);
}

.subscription-card > p {
  display: flex;
  justify-content: space-between;
  margin: 0;
  color: #6f7e94;
  font-size: 0.48rem;
}

.route-card > b {
  display: block;
  margin: 3px 0 17px;
  font-size: 0.68rem;
}

.route-card > div {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto;
  align-items: center;
  gap: 5px;
  color: #718198;
  font-size: 0.43rem;
}

.route-card > div i {
  height: 1px;
  background: #35455e;
}

.route-card > div strong {
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  border-radius: 8px;
  color: #0c1a2d;
  background: #8ab1fa;
  font-family: "Unbounded", sans-serif;
  font-size: 0.48rem;
}

.preview-note {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 12px;
  color: #c8d2e2;
  background: rgba(13, 26, 45, 0.88);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(12px);
  font-size: 0.61rem;
}

.preview-note span {
  color: #92b8fb;
  font-family: "JetBrains Mono", monospace;
  font-weight: 600;
}

.preview-note--top {
  top: 15px;
  right: -12px;
}

.preview-note--bottom {
  bottom: 8px;
  left: 18%;
}

.page-nav {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 12px;
  width: min(1180px, calc(100% - 40px));
  margin: 18px auto 22px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    radial-gradient(circle at 75% 0%, rgba(72, 130, 228, 0.1), transparent 25rem),
    rgba(12, 25, 43, 0.72);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(16px);
}

.page-nav__intro {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 126px;
  padding: 18px;
}

.page-nav__intro span {
  color: #7fa8ed;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.page-nav__intro p {
  max-width: 125px;
  margin: 0;
  color: #7e8da3;
  font-size: 0.72rem;
  line-height: 1.5;
}

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

.page-nav__links a {
  position: relative;
  display: grid;
  align-content: end;
  min-width: 0;
  min-height: 126px;
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(135, 173, 238, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.025);
  outline: none;
  transition: border-color 220ms ease, background 220ms ease, box-shadow 220ms ease, transform 220ms cubic-bezier(.2,.8,.2,1);
}

.page-nav__links a::before {
  position: absolute;
  top: -55px;
  right: -48px;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(116, 167, 255, 0.13);
  border-radius: 50%;
  box-shadow: 0 0 0 18px rgba(91, 143, 236, 0.025), 0 0 0 37px rgba(91, 143, 236, 0.018);
  content: "";
  transition: border-color 220ms ease, transform 420ms cubic-bezier(.2,.8,.2,1);
}

.page-nav__links a::after {
  position: absolute;
  right: 18px;
  bottom: 0;
  left: 18px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, #5d91eb, #9bc0ff);
  content: "";
  opacity: 0;
  transform: scaleX(0.25);
  transform-origin: left;
  transition: opacity 220ms ease, transform 320ms ease;
}

.page-nav__links a:hover,
.page-nav__links a:focus-visible {
  border-color: rgba(116, 167, 255, 0.32);
  background: rgba(67, 116, 199, 0.11);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.16);
  transform: translateY(-4px);
}

.page-nav__links a.is-current {
  border-color: rgba(116, 167, 255, 0.25);
  background: rgba(67, 116, 199, 0.075);
}

.page-nav__links a:hover::before,
.page-nav__links a:focus-visible::before {
  border-color: rgba(129, 176, 255, 0.32);
  transform: translate(-8px, 8px) scale(1.08);
}

.page-nav__links a.is-current::before {
  border-color: rgba(129, 176, 255, 0.24);
  transform: translate(-5px, 5px) scale(1.04);
}

.page-nav__links a:hover::after,
.page-nav__links a:focus-visible::after,
.page-nav__links a.is-current::after {
  opacity: 1;
  transform: scaleX(1);
}

.page-nav__links a > span {
  position: absolute;
  top: 17px;
  left: 18px;
  color: #5f7699;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.52rem;
}

.page-nav__links strong {
  position: relative;
  z-index: 1;
  margin-bottom: 4px;
  color: #dce6f5;
  font-size: 0.88rem;
  letter-spacing: -0.02em;
}

.page-nav__links small {
  position: relative;
  z-index: 1;
  color: #75859d;
  font-size: 0.61rem;
}

.page-nav__links i {
  position: absolute;
  z-index: 1;
  top: 15px;
  right: 16px;
  color: #6f91c9;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.75rem;
  font-style: normal;
  transition: color 220ms ease, transform 220ms ease;
}

.page-nav__links a:hover i,
.page-nav__links a:focus-visible i,
.page-nav__links a.is-current i {
  color: #a9c8ff;
  transform: translateX(4px);
}

.compatibility {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 42px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.compatibility > span {
  color: #68788f;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.compatibility div {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.compatibility b {
  color: #9aa8bc;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.72rem;
  font-weight: 500;
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 118px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  align-items: end;
  gap: 80px;
  margin-bottom: 46px;
}

.section-heading h2,
.details-panel h2,
.download h2 {
  margin: 10px 0 0;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  line-height: 1.04;
  letter-spacing: -0.055em;
}

.section-heading > p,
.details-panel__copy > p,
.download__copy > p {
  margin: 0;
  color: #8d9ab0;
  font-size: 0.93rem;
  line-height: 1.7;
}

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

.feature-card {
  position: relative;
  overflow: hidden;
  min-height: 340px;
  padding: 32px;
  border: 1px solid rgba(135, 173, 238, 0.13);
  border-radius: var(--radius);
  color: var(--ink);
  background:
    radial-gradient(circle at var(--card-x, 80%) var(--card-y, 10%), rgba(82, 139, 239, 0.12), transparent 15rem),
    #101c2f;
  outline: none;
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease, background 240ms ease;
}

.feature-card::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, transparent 25%, rgba(255, 255, 255, 0.055), transparent 62%);
  content: "";
  opacity: 0;
  pointer-events: none;
  transform: translateX(-35%);
  transition: opacity 240ms ease, transform 500ms ease;
}

.feature-card:hover,
.feature-card:focus-visible {
  border-color: rgba(126, 173, 255, 0.34);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.2);
  transform: translateY(-5px);
}

.feature-card:hover::after,
.feature-card:focus-visible::after {
  opacity: 1;
  transform: translateX(35%);
}

.feature-card--wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 50px;
}

.feature-card--blue {
  color: #fff;
  background:
    radial-gradient(circle at var(--card-x, 82%) var(--card-y, 12%), rgba(151, 190, 255, 0.2), transparent 15rem),
    linear-gradient(145deg, #1b4f9f, #12366f);
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 42px;
  border: 1px solid rgba(139, 181, 255, 0.2);
  border-radius: 13px;
  color: #91b8ff;
  background: rgba(117, 167, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.feature-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card--blue .feature-icon {
  border-color: rgba(255, 255, 255, 0.13);
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.feature-card .card-kicker {
  margin-bottom: 9px;
  color: #7fa9ef;
}

.feature-card--blue .card-kicker {
  color: #b8d1ff;
}

.feature-card h3 {
  max-width: 500px;
  margin: 0 0 12px;
  font-size: clamp(1.55rem, 2.6vw, 2.25rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.feature-card > p,
.feature-card__copy > p:not(.card-kicker) {
  max-width: 510px;
  margin-bottom: 0;
  color: #8f9db2;
  font-size: 0.88rem;
  line-height: 1.65;
}

.feature-card--blue > p {
  color: #c5d6f5;
}

.tag-row {
  display: flex;
  gap: 7px;
  margin-top: 25px;
}

.tag-row span {
  padding: 7px 10px;
  border: 1px solid rgba(135, 173, 238, 0.14);
  border-radius: 9px;
  color: #8fa2bd;
  background: rgba(255, 255, 255, 0.035);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.57rem;
}

.import-preview {
  padding: 18px;
  border: 1px solid rgba(135, 173, 238, 0.16);
  border-radius: 19px;
  background: #0b1729;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.24);
  transform: rotate(1.6deg);
  transition: transform 240ms ease, border-color 240ms ease;
}

.feature-card:hover .import-preview,
.feature-card:focus-visible .import-preview {
  border-color: rgba(135, 180, 255, 0.31);
  transform: rotate(0deg) translateY(-3px);
}

.import-preview__input {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 45px;
  padding: 0 7px 0 13px;
  border: 1px solid rgba(135, 173, 238, 0.12);
  border-radius: 11px;
  color: #71849f;
  background: #101e33;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.58rem;
}

.import-preview__input button {
  padding: 9px 11px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: #2869d4;
  font-family: "Onest", sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: background 160ms ease, transform 160ms ease;
}

.import-preview__input button:hover,
.import-preview__input button:focus-visible {
  background: #397ce8;
  outline: none;
  transform: translateY(-1px);
}

.import-preview__input button:disabled {
  color: #b8cae8;
  background: #1d467f;
  cursor: wait;
  transform: none;
}

.import-preview__result {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 11px;
  margin-top: 11px;
  padding: 13px;
  border: 1px solid rgba(135, 173, 238, 0.12);
  border-radius: 12px;
}

.import-preview__result .mini-icon {
  width: 24px;
  height: 24px;
  border-radius: 7px;
  font-size: 0.48rem;
}

.import-preview__result div {
  display: grid;
  gap: 2px;
}

.import-preview__result small {
  color: #718198;
  font-size: 0.57rem;
}

.import-preview__result b {
  color: #dfe8f6;
  font-size: 0.73rem;
}

.import-preview__result em {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  color: #198353;
  background: #daf4e8;
  font-size: 0.66rem;
  font-style: normal;
}

.mode-switch {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin-top: 36px;
  padding: 5px;
  border-radius: 12px;
  border: 1px solid rgba(135, 173, 238, 0.1);
  background: #0b1729;
}

.mode-switch button {
  display: grid;
  place-items: center;
  min-height: 37px;
  border: 0;
  border-radius: 9px;
  color: #75869f;
  background: transparent;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.58rem;
  cursor: pointer;
  transition: color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.mode-switch .is-on {
  color: #dce9ff;
  background: #1b3f78;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16);
}

.route-list {
  display: grid;
  gap: 7px;
  margin-top: 28px;
}

.route-list button {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 10px;
  color: #dce8ff;
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.66rem;
  text-align: left;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.route-list button:hover,
.route-list button:focus-visible {
  border-color: rgba(166, 200, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
  outline: none;
  transform: translateX(3px);
}

.route-list button i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #87b1ff;
  box-shadow: 0 0 0 4px rgba(135, 177, 255, 0.1);
}

.route-list button[data-direct] i {
  background: #7fd7ab;
  box-shadow: 0 0 0 4px rgba(127, 215, 171, 0.09);
}

.route-list button b {
  margin-left: auto;
  color: #9fb7df;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.52rem;
  font-weight: 500;
}

.feature-card--compact {
  min-height: 270px;
}

.feature-card--compact .feature-icon {
  margin-bottom: 25px;
}

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

.clean-list li {
  position: relative;
  padding: 13px 15px 13px 42px;
  border: 1px solid rgba(135, 173, 238, 0.12);
  border-radius: 12px;
  color: #9aa9bd;
  background: rgba(255, 255, 255, 0.025);
  font-size: 0.75rem;
}

.clean-list li::before {
  position: absolute;
  top: 50%;
  left: 14px;
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  color: #fff;
  background: #3974d9;
  content: "✓";
  font-size: 0.55rem;
  transform: translateY(-50%);
}

.import-preview__input input {
  flex: 1;
  min-width: 0;
  padding: 0;
  border: 0;
  color: #cdddf3;
  background: transparent;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.58rem;
  outline: none;
}

.import-preview__input input::placeholder {
  color: #5e7088;
}

.import-preview__input:focus-within {
  border-color: rgba(135, 180, 255, 0.4);
}

.import-preview__result em[data-state="idle"] {
  color: #8294ad;
  background: rgba(125, 140, 163, 0.16);
}

.import-preview__result em[data-state="warn"] {
  color: #b9742a;
  background: #fbedda;
}

.helper-session {
  margin-top: 26px;
  padding: 16px;
  border: 1px solid rgba(135, 173, 238, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.025);
}

.helper-session__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.helper-session__status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #93a3ba;
  font-size: 0.74rem;
  font-weight: 500;
}

.helper-session__status i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #647088;
  transition: background 200ms ease, box-shadow 200ms ease;
}

.helper-session.is-on .helper-session__status {
  color: #cfe0f5;
}

.helper-session.is-on .helper-session__status i {
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(126, 230, 177, 0.16);
}

.helper-session__btn {
  padding: 9px 15px;
  border: 1px solid rgba(135, 173, 238, 0.2);
  border-radius: 10px;
  color: #dce8ff;
  background: rgba(117, 167, 255, 0.1);
  font-family: "Onest", sans-serif;
  font-size: 0.74rem;
  font-weight: 600;
  cursor: pointer;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.helper-session__btn:hover,
.helper-session__btn:focus-visible {
  border-color: rgba(166, 200, 255, 0.4);
  background: rgba(117, 167, 255, 0.18);
  outline: none;
  transform: translateY(-1px);
}

.helper-session.is-on .helper-session__btn {
  color: #b9f2d4;
  border-color: rgba(126, 230, 177, 0.3);
  background: rgba(126, 230, 177, 0.12);
}

.helper-session__meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 15px 0 0;
}

.helper-session__meta div {
  display: grid;
  gap: 3px;
}

.helper-session__meta dt {
  color: #71839c;
  font-size: 0.58rem;
}

.helper-session__meta dd {
  margin: 0;
  color: #c6d3e6;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.66rem;
}

[data-app-tab] {
  cursor: pointer;
}

.app-sidebar span:hover {
  color: #cdd9ec;
  background: rgba(108, 158, 250, 0.06);
}

.app-panel {
  display: none;
}

.app-panel.is-active {
  display: block;
}

@media (prefers-reduced-motion: no-preference) {
  .app-panel.is-active {
    animation: appPanelIn 280ms ease;
  }
}

@keyframes appPanelIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.app-stack {
  display: grid;
  gap: 12px;
}

.usage-line--mid i {
  width: 41%;
}

.app-routes {
  display: grid;
  gap: 9px;
}

.app-route-row {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 13px;
  color: #c5d2e6;
  background: rgba(255, 255, 255, 0.025);
  font-size: 0.74rem;
}

.app-route-row b {
  margin-left: auto;
  color: #8fb4f6;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.62rem;
  font-weight: 500;
}

.app-route-row[data-direct] b {
  color: #e0a86a;
}

.app-route-dot {
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #6c9efa;
  box-shadow: 0 0 0 4px rgba(108, 158, 250, 0.14);
}

.app-route-row[data-direct] .app-route-dot {
  background: #d99a52;
  box-shadow: 0 0 0 4px rgba(217, 154, 82, 0.14);
}

.app-settings {
  display: grid;
  gap: 10px;
}

.app-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 13px;
  color: #c5d2e6;
  background: rgba(255, 255, 255, 0.025);
  font-size: 0.74rem;
  cursor: pointer;
  user-select: none;
}

.app-toggle i {
  position: relative;
  flex: 0 0 auto;
  width: 34px;
  height: 19px;
  border-radius: 20px;
  background: #2a3a52;
  transition: background 200ms ease;
}

.app-toggle i::after {
  position: absolute;
  top: 2.5px;
  left: 2.5px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #8294ad;
  content: "";
  transition: transform 200ms ease, background 200ms ease;
}

.app-toggle.is-on i {
  background: rgba(126, 230, 177, 0.3);
}

.app-toggle.is-on i::after {
  background: var(--green);
  transform: translateX(15px);
}

.workflow {
  padding-top: 80px;
}

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

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

.workflow-step {
  position: relative;
  min-height: 365px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 23px;
  background: rgba(255, 255, 255, 0.025);
  outline: none;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.workflow-step:hover,
.workflow-step:focus-visible,
.workflow-step.is-active {
  border-color: rgba(119, 167, 255, 0.32);
  background: rgba(96, 145, 235, 0.06);
  transform: translateY(-3px);
}

.step-number {
  color: #687990;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.62rem;
}

.step-visual {
  position: relative;
  display: grid;
  place-items: center;
  height: 155px;
  margin: 20px 0 25px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 17px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    #0b1728;
  background-size: 20px 20px;
}

.step-visual > b {
  position: absolute;
  right: 14px;
  bottom: 12px;
  color: #7892bb;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.5rem;
}

.step-icon {
  width: 82px;
  height: 82px;
  overflow: visible;
  fill: none;
  stroke: #80adff;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 12px rgba(92, 145, 242, 0.16));
  transition: transform 240ms ease, stroke 240ms ease;
}

.step-icon--power {
  width: 76px;
  height: 76px;
  padding: 12px;
  border: 1px solid rgba(126, 173, 255, 0.5);
  border-radius: 50%;
  background: rgba(92, 145, 242, 0.09);
  box-shadow: 0 0 0 10px rgba(92, 145, 242, 0.04);
  stroke-width: 6;
}

.step-visual--connect {
  isolation: isolate;
}

.connect-demo {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  gap: 12px;
  padding: 0;
  border: 0;
  color: #8fa8ca;
  background: transparent;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
}

.connect-demo:hover,
.connect-demo:focus-visible {
  color: #c7dcff;
  outline: none;
}

.connect-demo:focus-visible .step-icon--power {
  outline: 2px solid rgba(142, 183, 255, 0.62);
  outline-offset: 5px;
}

.connect-demo__status {
  position: absolute;
  z-index: 2;
  top: 12px;
  right: 12px;
  padding: 5px 8px;
  border: 1px solid rgba(135, 173, 238, 0.12);
  border-radius: 20px;
  color: #74869f;
  background: rgba(8, 19, 34, 0.72);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.47rem;
}

.app-window.is-connecting .app-status,
.workflow-step.is-connecting .connect-demo__status {
  border-color: rgba(117, 167, 255, 0.28);
  color: #a9c8ff;
  background: rgba(92, 145, 242, 0.1);
}

.app-window.is-connecting .app-status i {
  background: #74a7ff;
  box-shadow: 0 0 0 4px rgba(116, 167, 255, 0.14);
}

.app-window.is-connected .app-status,
.workflow-step.is-connected .connect-demo__status {
  border-color: rgba(126, 230, 177, 0.2);
  color: #a9e9c8;
  background: rgba(126, 230, 177, 0.08);
}

.app-window.is-connected .app-status i {
  background: var(--green);
  box-shadow: 0 0 10px rgba(126, 230, 177, 0.7);
}

.app-window.is-connected .connection-card button {
  border-color: rgba(126, 230, 177, 0.28);
  color: #b8f0d2;
  background: rgba(126, 230, 177, 0.1);
}

.app-window.is-connected .connection-orbit::after {
  background: rgba(126, 230, 177, 0.1);
  box-shadow: 0 0 28px rgba(126, 230, 177, 0.12);
}

.workflow-step.is-connected .step-icon--power {
  border-color: rgba(126, 230, 177, 0.62);
  color: var(--green);
  background: rgba(126, 230, 177, 0.09);
  stroke: var(--green);
  box-shadow: 0 0 0 10px rgba(126, 230, 177, 0.05), 0 0 28px rgba(126, 230, 177, 0.13);
}

.workflow-step.is-connected .connect-demo {
  color: #a9e9c8;
}

@media (prefers-reduced-motion: no-preference) {
  .app-window.is-connecting .connection-orbit span {
    border-top-color: #78aaff;
    animation: connectionOrbit 900ms linear infinite;
  }

  .app-window.is-connecting .connection-orbit::before {
    border-right-color: #78aaff;
    animation: connectionOrbit 1250ms linear infinite reverse;
  }

  .app-window.is-connecting .connection-orbit img,
  .workflow-step.is-connecting .step-icon--power {
    animation: connectionPulse 900ms ease-in-out infinite;
  }

  .app-window.is-connected .connection-orbit span {
    animation: connectedBreath 2.2s ease-in-out infinite;
  }
}

@keyframes connectionOrbit {
  to { transform: rotate(360deg); }
}

@keyframes connectionPulse {
  50% { transform: scale(0.92); filter: drop-shadow(0 0 18px rgba(92, 145, 242, 0.48)); }
}

@keyframes connectedBreath {
  50% { border-color: rgba(126, 230, 177, 0.38); transform: scale(1.05); }
}

.workflow-step:hover .step-icon,
.workflow-step:focus-visible .step-icon,
.workflow-step.is-active .step-icon {
  stroke: #a7c7ff;
  transform: scale(1.06);
}

.step-visual--nodes {
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 22px;
}

.step-visual--nodes span {
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 1;
  max-width: 65px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: #95b8f5;
  background: #101f35;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.64rem;
}

.step-visual--nodes span:first-child {
  border-color: #6e9bed;
  box-shadow: 0 0 0 7px rgba(91, 143, 236, 0.08);
}

.workflow-step h3 {
  margin-bottom: 8px;
  font-size: 1.15rem;
  letter-spacing: -0.03em;
}

.workflow-step p {
  margin: 0;
  color: #8492a7;
  font-size: 0.78rem;
  line-height: 1.6;
}

.details {
  padding-top: 70px;
}

.details-panel {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: center;
  gap: 58px;
  overflow: hidden;
  padding: 66px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    radial-gradient(circle at 78% 42%, rgba(69, 124, 226, 0.11), transparent 28rem),
    linear-gradient(135deg, #0d192a, #0a1525);
}

.details-panel::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(rgba(120, 164, 238, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120, 164, 238, 0.025) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(90deg, transparent 30%, #000 68%);
  content: "";
}

.details-panel__copy > p {
  max-width: 460px;
  margin-top: 22px;
}

.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 27px;
  color: #aec9fb;
  font-size: 0.8rem;
  font-weight: 600;
}

.inline-link span {
  font-family: "JetBrains Mono", monospace;
  transition: transform 160ms ease;
}

.inline-link:hover span {
  transform: translateX(3px);
}

.tech-stack {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 38px minmax(0, 1fr) 38px minmax(0, 1fr);
  align-items: center;
  min-width: 0;
}

.tech-bridge {
  position: relative;
  z-index: 2;
  height: 28px;
}

.tech-bridge::before {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, #31425d, #5279b8, #31425d);
  content: "";
}

.tech-bridge::after {
  position: absolute;
  top: calc(50% - 3px);
  left: -2px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #7fb0ff;
  box-shadow: 0 0 12px rgba(127, 176, 255, 0.9);
  content: "";
  opacity: 0;
}

.tech-bridge span {
  position: absolute;
  top: calc(50% - 5px);
  right: -1px;
  width: 9px;
  height: 9px;
  border-top: 1px solid #638cd0;
  border-right: 1px solid #638cd0;
  transform: rotate(45deg);
}

.tech-bridge b {
  position: absolute;
  top: -8px;
  left: 50%;
  color: #536b91;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.39rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  transform: translateX(-50%);
}

.tech-layer {
  position: relative;
  min-width: 0;
  min-height: 292px;
  overflow: hidden;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 21px;
  background:
    radial-gradient(circle at 75% 10%, rgba(96, 151, 248, 0.08), transparent 9rem),
    rgba(255, 255, 255, 0.025);
  outline: none;
  cursor: default;
  transform: translateY(0) scale(1);
  transition: border-color 280ms ease, background 280ms ease, box-shadow 280ms ease, opacity 280ms ease, transform 280ms cubic-bezier(.2,.8,.2,1);
}

.tech-layer::before {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, transparent 25%, rgba(142, 186, 255, 0.1), transparent 68%);
  content: "";
  opacity: 0;
  transform: translateX(-65%);
  transition: opacity 240ms ease, transform 650ms ease;
}

.tech-stack:hover .tech-layer:not(:hover):not(:focus-visible) {
  opacity: 0.62;
  transform: scale(0.975);
}

.tech-layer:hover,
.tech-layer:focus-visible,
.tech-layer.is-active {
  z-index: 3;
  border-color: rgba(116, 167, 255, 0.42);
  background:
    radial-gradient(circle at 72% 12%, rgba(96, 151, 248, 0.18), transparent 10rem),
    rgba(37, 66, 111, 0.18);
  box-shadow: 0 22px 48px rgba(1, 8, 20, 0.3), 0 0 0 1px rgba(91, 143, 236, 0.05) inset;
  transform: translateY(-10px) scale(1.025);
}

.tech-layer:hover::before,
.tech-layer:focus-visible::before,
.tech-layer.is-active::before {
  opacity: 1;
  transform: translateX(65%);
}

.tech-layer__head {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 38px;
}

.tech-layer__head > span:first-child {
  color: #6681ac;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.47rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.tech-layer .tech-layer__icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  color: #9fc1ff;
  background: rgba(72, 126, 222, 0.14);
  transition: color 240ms ease, background 240ms ease, box-shadow 240ms ease, transform 320ms cubic-bezier(.2,.8,.2,1);
}

.tech-layer .tech-layer__icon svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tech-layer:hover .tech-layer__icon,
.tech-layer:focus-visible .tech-layer__icon,
.tech-layer.is-active .tech-layer__icon {
  color: #d7e6ff;
  background: rgba(83, 141, 242, 0.24);
  box-shadow: 0 0 24px rgba(84, 144, 247, 0.2);
  transform: rotate(-7deg) scale(1.08);
}

.tech-layer strong {
  position: relative;
  z-index: 2;
  display: block;
  margin: 14px 0 5px;
  font-size: 0.94rem;
  letter-spacing: -0.02em;
}

.tech-layer small {
  position: relative;
  z-index: 2;
  display: block;
  min-height: 30px;
  color: #77869a;
  font-size: 0.58rem;
  line-height: 1.5;
}

.tech-layer__status {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 12px;
  color: #71829a;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.45rem;
  transition: color 240ms ease;
}

.tech-layer__status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #53627a;
  transition: background 240ms ease, box-shadow 240ms ease;
}

.tech-layer:hover .tech-layer__status,
.tech-layer:focus-visible .tech-layer__status,
.tech-layer.is-active .tech-layer__status {
  color: #a9c8f7;
}

.tech-layer:hover .tech-layer__status i,
.tech-layer:focus-visible .tech-layer__status i,
.tech-layer.is-active .tech-layer__status i {
  background: #74a7ff;
  box-shadow: 0 0 0 4px rgba(116, 167, 255, 0.12), 0 0 12px rgba(116, 167, 255, 0.6);
}

.tech-visual {
  position: relative;
  z-index: 2;
  height: 92px;
  margin-top: 16px;
  overflow: hidden;
  border: 1px solid rgba(125, 165, 230, 0.12);
  border-radius: 14px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    rgba(4, 13, 26, 0.48);
  background-size: 16px 16px;
}

.tech-ui__sidebar {
  position: absolute;
  top: 12px;
  bottom: 12px;
  left: 12px;
  display: grid;
  align-content: start;
  gap: 7px;
  width: 24px;
  padding: 8px 6px;
  border-radius: 8px;
  background: rgba(69, 112, 184, 0.12);
}

.tech-ui__sidebar i {
  height: 3px;
  border-radius: 3px;
  background: #536f9b;
}

.tech-ui__sidebar i:first-child {
  background: #83b0ff;
  box-shadow: 0 0 8px rgba(131, 176, 255, 0.5);
}

.tech-ui__screen {
  position: absolute;
  top: 12px;
  right: 12px;
  bottom: 12px;
  left: 44px;
  padding: 10px;
  border-radius: 8px;
  background: rgba(28, 53, 90, 0.34);
}

.tech-ui__screen b,
.tech-ui__screen i,
.tech-ui__screen em {
  display: block;
  border-radius: 4px;
  background: #526b93;
}

.tech-ui__screen b {
  width: 52%;
  height: 5px;
  margin-bottom: 9px;
  background: #9abfff;
}

.tech-ui__screen i {
  width: 82%;
  height: 3px;
  margin-top: 6px;
}

.tech-ui__screen i:nth-child(3) { width: 63%; }

.tech-ui__screen em {
  position: absolute;
  right: 9px;
  bottom: 9px;
  width: 20px;
  height: 11px;
  background: #356fce;
}

.tech-ui__cursor {
  position: absolute;
  top: 44px;
  left: 66%;
  width: 8px;
  height: 11px;
  background: #d7e7ff;
  clip-path: polygon(0 0, 100% 68%, 58% 72%, 42% 100%);
  filter: drop-shadow(0 0 5px rgba(145, 188, 255, 0.8));
}

.tech-chip {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(128, 176, 255, 0.35);
  border-radius: 12px;
  color: #aac9ff;
  background: #142b4c;
  box-shadow: 0 0 0 7px rgba(72, 126, 222, 0.06);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.48rem;
  transform: translate(-50%, -50%);
}

.tech-chip i {
  position: absolute;
  inset: 7px;
  border: 1px dashed rgba(137, 180, 250, 0.24);
  border-radius: 7px;
}

.tech-circuit {
  position: absolute;
  top: 50%;
  width: 52px;
  height: 24px;
  border-top: 1px solid #456594;
  border-bottom: 1px solid #456594;
}

.tech-circuit--one { right: calc(50% + 27px); border-left: 1px solid #456594; }
.tech-circuit--two { left: calc(50% + 27px); border-right: 1px solid #456594; }

.tech-pulse {
  position: absolute;
  top: calc(50% - 3px);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #7fb0ff;
  box-shadow: 0 0 10px rgba(127, 176, 255, 0.9);
  opacity: 0;
}

.tech-pulse--one { left: 16%; }
.tech-pulse--two { right: 16%; }

.tech-core__globe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 45px;
  height: 45px;
  border: 1px solid rgba(125, 173, 255, 0.48);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(73, 128, 224, 0.24), rgba(25, 54, 95, 0.16));
  box-shadow: 0 0 25px rgba(83, 139, 235, 0.16);
  transform: translate(-50%, -50%);
}

.tech-core__globe::before,
.tech-core__globe::after {
  position: absolute;
  content: "";
}

.tech-core__globe::before {
  inset: 8px 0;
  border-top: 1px solid rgba(128, 176, 255, 0.3);
  border-bottom: 1px solid rgba(128, 176, 255, 0.3);
  border-radius: 50%;
}

.tech-core__globe::after {
  top: 0;
  bottom: 0;
  left: 50%;
  border-left: 1px solid rgba(128, 176, 255, 0.3);
}

.tech-core__orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(115, 159, 231, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.tech-core__orbit--one { width: 78px; height: 48px; transform: translate(-50%, -50%) rotate(18deg); }
.tech-core__orbit--two { width: 84px; height: 38px; transform: translate(-50%, -50%) rotate(-31deg); }

.tech-core__orbit i {
  position: absolute;
  top: 50%;
  right: -3px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #82b2ff;
  box-shadow: 0 0 10px rgba(130, 178, 255, 0.8);
}

.tech-visual--core > b {
  position: absolute;
  right: 9px;
  bottom: 8px;
  color: #84aeef;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.43rem;
  font-weight: 500;
}

@media (prefers-reduced-motion: no-preference) {
  .tech-bridge.is-flowing::after {
    animation: techPacket 950ms cubic-bezier(.4,0,.2,1) infinite;
    opacity: 1;
  }

  .tech-layer:hover .tech-ui__cursor,
  .tech-layer:focus-visible .tech-ui__cursor,
  .tech-layer.is-active .tech-ui__cursor {
    animation: techCursor 1.8s ease-in-out infinite;
  }

  .tech-layer:hover .tech-chip,
  .tech-layer:focus-visible .tech-chip,
  .tech-layer.is-active .tech-chip {
    animation: techChip 1.5s ease-in-out infinite;
  }

  .tech-layer:hover .tech-pulse,
  .tech-layer:focus-visible .tech-pulse,
  .tech-layer.is-active .tech-pulse {
    animation: techCircuitPulse 1.2s ease-in-out infinite alternate;
  }

  .tech-layer:hover .tech-pulse--two,
  .tech-layer:focus-visible .tech-pulse--two,
  .tech-layer.is-active .tech-pulse--two { animation-delay: 350ms; }

  .tech-layer:hover .tech-core__orbit--one,
  .tech-layer:focus-visible .tech-core__orbit--one,
  .tech-layer.is-active .tech-core__orbit--one { animation: techOrbitOne 2.4s linear infinite; }

  .tech-layer:hover .tech-core__orbit--two,
  .tech-layer:focus-visible .tech-core__orbit--two,
  .tech-layer.is-active .tech-core__orbit--two { animation: techOrbitTwo 3.2s linear infinite reverse; }
}

@keyframes techPacket {
  0% { left: -2px; opacity: 0; }
  15%, 82% { opacity: 1; }
  100% { left: calc(100% - 5px); opacity: 0; }
}

@keyframes techPacketMobile {
  0% { top: -2px; opacity: 0; }
  15%, 82% { opacity: 1; }
  100% { top: calc(100% - 5px); opacity: 0; }
}

@keyframes techCursor {
  0%, 100% { transform: translate(0, 0); }
  42% { transform: translate(-14px, 13px); }
  70% { transform: translate(7px, 18px) scale(0.9); }
}

@keyframes techChip {
  50% { box-shadow: 0 0 0 10px rgba(72, 126, 222, 0.08), 0 0 26px rgba(84, 145, 247, 0.18); }
}

@keyframes techCircuitPulse {
  from { opacity: 0.2; transform: translateX(-10px); }
  to { opacity: 1; transform: translateX(10px); }
}

@keyframes techOrbitOne {
  to { transform: translate(-50%, -50%) rotate(378deg); }
}

@keyframes techOrbitTwo {
  to { transform: translate(-50%, -50%) rotate(329deg); }
}

.download {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 40px;
  overflow: hidden;
  border-radius: 31px;
  color: #fff;
  background:
    radial-gradient(circle at 86% 15%, rgba(177, 208, 255, 0.3), transparent 20rem),
    linear-gradient(135deg, #2459b3, #173c7d);
}

.download__inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 80px;
  min-height: 545px;
  padding: 70px;
}

.download .section-label {
  color: #c5d9ff;
}

.download__copy > p {
  max-width: 480px;
  margin-top: 20px;
  color: #c2d3f1;
}

.download__actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 31px;
}

.inline-link--light {
  margin-top: 0;
  color: #fff;
}

.download__platforms {
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 23px;
  background: rgba(5, 22, 52, 0.23);
  backdrop-filter: blur(12px);
}

.platform-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  margin-bottom: 10px;
}

.platform-tabs button {
  min-height: 42px;
  border: 0;
  border-radius: 10px;
  color: #bfd1ee;
  background: transparent;
  font-size: 0.68rem;
  font-weight: 600;
  cursor: pointer;
}

.platform-tabs button.is-active {
  color: #e5efff;
  background: #173b73;
  box-shadow: inset 0 0 0 1px rgba(135, 177, 255, 0.16);
}

.platform-card {
  padding: 27px;
  border: 1px solid rgba(135, 177, 255, 0.13);
  border-radius: 17px;
  color: #f3f7fd;
  background: #0d1b30;
  transition: transform 180ms ease, border-color 180ms ease;
}

.download__platforms:hover .platform-card {
  border-color: rgba(159, 194, 255, 0.27);
  transform: translateY(-2px);
}

.platform-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.platform-card__head p {
  margin-bottom: 6px;
  color: #7399d7;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.54rem;
  text-transform: uppercase;
}

.platform-card h3 {
  margin: 0;
  font-size: 1.5rem;
  letter-spacing: -0.04em;
}

.platform-logo {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 13px;
  color: #9fc1ff;
  background: rgba(72, 126, 222, 0.15);
}

.platform-logo svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.platform-card > p {
  min-height: 50px;
  margin: 22px 0;
  color: #8fa0b8;
  font-size: 0.76rem;
  line-height: 1.6;
}

.platform-card__meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 9px;
}

.platform-card__meta span {
  display: grid;
  gap: 5px;
  padding: 12px;
  border: 1px solid rgba(135, 177, 255, 0.12);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.025);
}

.platform-card__meta small {
  color: #71839c;
  font-size: 0.53rem;
}

.platform-card__meta b {
  font-size: 0.65rem;
}

.footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(1180px, calc(100% - 40px));
  min-height: 95px;
  margin: 0 auto;
  color: #718198;
  font-size: 0.67rem;
}

.brand--footer {
  color: #d9e2ef;
  font-size: 0.82rem;
}

.brand--footer img {
  width: 30px;
  height: 30px;
}

.footer p {
  margin: 0;
}

.footer nav {
  display: flex;
  gap: 22px;
  justify-self: end;
}

.route-dock {
  position: fixed;
  z-index: 75;
  top: 50%;
  right: 18px;
  display: grid;
  gap: 5px;
  width: 48px;
  padding: 7px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(9, 20, 36, 0.82);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
  opacity: 0;
  transform: translate(18px, -50%);
  pointer-events: none;
  backdrop-filter: blur(18px);
  transition: width 260ms cubic-bezier(.2,.8,.2,1), opacity 180ms ease, transform 220ms ease, border-color 180ms ease;
}

.route-dock.is-visible {
  opacity: 1;
  transform: translate(0, -50%);
  pointer-events: auto;
}

.route-dock:hover,
.route-dock:focus-within {
  width: 202px;
  border-color: rgba(117, 167, 255, 0.24);
}

.route-dock__rail {
  position: absolute;
  z-index: -1;
  top: 25px;
  bottom: 25px;
  left: 23px;
  width: 1px;
  background: linear-gradient(transparent, rgba(105, 147, 215, 0.28) 12%, rgba(105, 147, 215, 0.28) 88%, transparent);
}

.route-dock a {
  position: relative;
  display: grid;
  grid-template-columns: 66px 1fr;
  align-items: center;
  width: 32px;
  min-height: 38px;
  border: 1px solid transparent;
  border-radius: 11px;
  color: #718199;
  outline: none;
  transition: width 260ms cubic-bezier(.2,.8,.2,1), color 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.route-dock:hover a,
.route-dock:focus-within a {
  width: 186px;
}

.route-dock a::before {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 12px;
  width: 7px;
  height: 7px;
  border: 2px solid #61718a;
  border-radius: 50%;
  background: #0b1728;
  content: "";
  transform: translateY(-50%);
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.route-dock a > span {
  position: relative;
  z-index: 2;
  grid-column: 1;
  justify-self: start;
  width: 25px;
  margin-left: 35px;
  padding: 3px 0 3px 5px;
  border-radius: 6px;
  color: transparent;
  background: transparent;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.48rem;
  text-align: left;
  transition: color 180ms ease, background 180ms ease;
}

.route-dock a strong {
  grid-column: 2;
  padding-right: 10px;
  overflow: hidden;
  font-size: 0.69rem;
  font-weight: 550;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(7px);
  transition: opacity 180ms ease, transform 220ms ease;
}

.route-dock:hover a strong,
.route-dock:focus-within a strong {
  opacity: 1;
  transform: translateX(0);
}

.route-dock:hover a > span,
.route-dock:focus-within a > span {
  color: #5f7393;
  background: rgba(9, 20, 36, 0.92);
}

.route-dock:hover a::before,
.route-dock:focus-within a::before {
  opacity: 1;
  transform: translateY(-50%);
}

.route-dock a:hover,
.route-dock a:focus-visible {
  border-color: rgba(117, 167, 255, 0.16);
  color: #d6e2f4;
  background: rgba(80, 132, 221, 0.09);
  transform: translateX(-2px);
}

.route-dock a.is-current {
  color: #bed4f8;
}

.route-dock a.is-current::before {
  border-color: #90b9ff;
  background: #6b9efa;
  box-shadow: 0 0 0 4px rgba(107, 158, 250, 0.12), 0 0 13px rgba(107, 158, 250, 0.7);
  transform: translateY(-50%) scale(1.08);
}

.route-dock:hover a.is-current,
.route-dock:focus-within a.is-current {
  border-color: rgba(117, 167, 255, 0.23);
  background: rgba(80, 132, 221, 0.13);
}

.route-dock:hover a.is-current::before,
.route-dock:focus-within a.is-current::before {
  opacity: 1;
  transform: translateY(-50%) scale(1.08);
}

.to-top {
  position: fixed;
  z-index: 80;
  right: 22px;
  bottom: 22px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 13px;
  color: #dce6f5;
  background: rgba(12, 25, 43, 0.82);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.22);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease;
  backdrop-filter: blur(12px);
  cursor: pointer;
}

.to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.reveal .section-heading,
.reveal .feature-card,
.reveal .workflow-step,
.reveal .details-panel,
.reveal .download__copy,
.reveal .download__platforms {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible .section-heading,
.reveal.is-visible .feature-card,
.reveal.is-visible .workflow-step,
.reveal.is-visible .details-panel,
.reveal.is-visible .download__copy,
.reveal.is-visible .download__platforms {
  opacity: 1;
  transform: translateY(0);
}

.reveal.is-visible .feature-card:nth-child(2),
.reveal.is-visible .workflow-step:nth-child(2) {
  transition-delay: 70ms;
}

.reveal.is-visible .feature-card:nth-child(3),
.reveal.is-visible .workflow-step:nth-child(3) {
  transition-delay: 140ms;
}

.reveal.is-visible .feature-card:nth-child(4) {
  transition-delay: 210ms;
}

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

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

  .hero__copy {
    max-width: 780px;
  }

  .product-preview {
    width: min(760px, 100%);
    margin: 0 auto;
  }

  .section-heading {
    gap: 45px;
  }

  .page-nav {
    grid-template-columns: 155px minmax(0, 1fr);
  }

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

  .download__inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

@media (max-width: 760px) {
  .topbar {
    width: calc(100% - 24px);
    min-height: 62px;
    padding: 0 8px 0 12px;
  }

  .topbar.is-scrolled {
    top: 7px;
  }

  .topbar > .brand,
  .topbar__actions {
    position: relative;
    z-index: 2;
  }

  .brand img {
    width: 34px;
    height: 34px;
  }

  .brand {
    font-size: 0.88rem;
  }

  .text-link,
  .topbar__download {
    display: none;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.04);
  }

  .menu-toggle > span:not(.sr-only) {
    position: absolute;
    width: 16px;
    height: 1px;
    background: #fff;
    transition: transform 160ms ease;
  }

  .menu-toggle > span:first-child {
    transform: translateY(-4px);
  }

  .menu-toggle > span:nth-child(2) {
    transform: translateY(4px);
  }

  .menu-toggle[aria-expanded="true"] > span:first-child {
    transform: rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(2) {
    transform: rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    z-index: 1;
    top: 0;
    right: -13px;
    left: -13px;
    display: block;
    padding: 80px 18px 18px;
    border-bottom: 1px solid var(--line);
    background: rgba(7, 16, 31, 0.98);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: none;
  }

  .mobile-menu.is-open {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0);
  }

  .mobile-menu nav {
    display: grid;
  }

  .mobile-menu a {
    padding: 17px 3px;
    border-bottom: 1px solid var(--line);
    font-size: 0.9rem;
  }

  .hero,
  .page-nav,
  .compatibility,
  .section,
  .download,
  .footer {
    width: calc(100% - 28px);
  }

  .hero {
    gap: 30px;
    min-height: auto;
    padding: 118px 0 56px;
  }

  .page-nav {
    grid-template-columns: 1fr;
    gap: 5px;
    margin-top: 12px;
    padding: 9px;
    border-radius: 20px;
  }

  .page-nav__intro {
    flex-direction: row;
    align-items: center;
    min-height: 0;
    padding: 11px 10px 14px;
  }

  .page-nav__intro p {
    max-width: none;
    font-size: 0.65rem;
  }

  .page-nav__links {
    grid-template-columns: none;
    grid-auto-columns: minmax(220px, 82%);
    grid-auto-flow: column;
    overflow-x: auto;
    padding-bottom: 3px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .page-nav__links::-webkit-scrollbar {
    display: none;
  }

  .page-nav__links a {
    min-height: 112px;
    scroll-snap-align: start;
  }

  .route-dock,
  .route-dock:hover,
  .route-dock:focus-within {
    top: auto;
    right: 50%;
    bottom: 12px;
    grid-template-columns: repeat(5, 1fr);
    gap: 3px;
    width: min(342px, calc(100% - 28px));
    padding: 6px;
    border-radius: 17px;
    transform: translate(50%, 18px);
  }

  .route-dock.is-visible {
    transform: translate(50%, 0);
  }

  .route-dock__rail {
    display: none;
  }

  .route-dock a,
  .route-dock:hover a,
  .route-dock:focus-within a {
    display: grid;
    grid-template-columns: 1fr;
    place-items: center;
    width: auto;
    min-height: 40px;
    border-radius: 11px;
  }

  .route-dock a::before {
    top: 13px;
    left: 50%;
    width: 6px;
    height: 6px;
    border-width: 1px;
    transform: translate(-50%, -50%);
  }

  .route-dock a > span {
    display: none;
  }

  .route-dock a strong,
  .route-dock:hover a strong,
  .route-dock:focus-within a strong {
    display: none;
    grid-column: 1;
    align-self: end;
    max-width: 58px;
    padding: 0 2px 4px;
    font-size: 0.45rem;
    text-align: center;
    text-overflow: ellipsis;
    opacity: 1;
    transform: none;
  }

  .route-dock a.is-current strong {
    display: block;
  }

  .route-dock:hover a::before,
  .route-dock:focus-within a::before,
  .route-dock:hover a.is-current::before,
  .route-dock:focus-within a.is-current::before {
    opacity: 1;
    transform: translate(-50%, -50%);
  }

  .route-dock a.is-current::before {
    transform: translate(-50%, -50%) scale(1.08);
  }

  .to-top {
    bottom: 70px;
  }

  h1 {
    font-size: clamp(2.55rem, 12vw, 4.1rem);
  }

  .lead {
    font-size: 0.93rem;
  }

  .hero__facts {
    flex-wrap: wrap;
    gap: 12px 20px;
  }

  .product-preview {
    padding: 24px 0 20px;
  }

  .app-window {
    border-radius: 19px;
    transform: none;
  }

  .app-window__bar {
    height: 45px;
  }

  .app-shell {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .app-sidebar {
    display: none;
  }

  .app-content {
    padding: 17px;
  }

  .connection-card {
    grid-template-columns: 70px 1fr;
    padding: 14px;
  }

  .connection-orbit {
    width: 63px;
    height: 63px;
  }

  .connection-orbit img {
    width: 35px;
    height: 35px;
  }

  .connection-card button {
    display: inline-flex;
    grid-column: 1 / -1;
    justify-content: center;
    width: 100%;
  }

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

  .route-card {
    display: none;
  }

  .preview-note--top {
    top: 2px;
    right: 8px;
  }

  .preview-note--bottom {
    bottom: 4px;
    left: 16px;
  }

  .compatibility {
    grid-template-columns: 1fr;
    gap: 17px;
  }

  .compatibility div {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 13px 22px;
  }

  .section {
    padding: 72px 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 30px;
  }

  .section-heading h2,
  .details-panel h2,
  .download h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

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

  .feature-card,
  .feature-card--wide {
    grid-column: auto;
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 32px;
    padding: 25px;
  }

  .feature-card:not(.feature-card--wide) {
    min-height: 320px;
  }

  .feature-icon {
    margin-bottom: 32px;
  }

  .feature-card--compact {
    gap: 25px;
  }

  .workflow-step {
    display: grid;
    grid-template-columns: 38px 1fr;
    min-height: 0;
    padding: 22px;
    column-gap: 10px;
  }

  .workflow-step .step-number {
    grid-row: 1 / 3;
    padding-top: 4px;
  }

  .workflow-step .step-visual {
    display: none;
  }

  .workflow-step[data-workflow-step="connect"] .step-number {
    grid-row: 1 / 4;
  }

  .workflow-step[data-workflow-step="connect"] .step-visual {
    display: grid;
    grid-column: 2;
    height: 132px;
    margin: 10px 0 14px;
  }

  .workflow-step[data-workflow-step="connect"] .step-icon--power {
    width: 62px;
    height: 62px;
  }

  .workflow-step[data-workflow-step="connect"] .connect-demo {
    gap: 8px;
    font-size: 0.5rem;
  }

  .workflow-step h3,
  .workflow-step p {
    grid-column: 2;
  }

  .workflow-step h3 {
    margin: 0 0 6px;
  }

  .details-panel {
    gap: 45px;
    padding: 32px 24px;
  }

  .tech-stack {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .tech-bridge {
    width: 28px;
    height: 38px;
    margin-left: 30px;
  }

  .tech-bridge::before {
    top: 0;
    right: auto;
    bottom: 0;
    left: 50%;
    width: 1px;
    height: auto;
    background: linear-gradient(#31425d, #5279b8, #31425d);
  }

  .tech-bridge::after {
    top: -2px;
    left: calc(50% - 3px);
  }

  .tech-bridge span {
    top: auto;
    right: auto;
    bottom: 1px;
    left: calc(50% - 4px);
    transform: rotate(135deg);
  }

  .tech-bridge b {
    top: 50%;
    left: 22px;
    transform: translateY(-50%);
  }

  .tech-bridge.is-flowing::after {
    animation-name: techPacketMobile;
  }

  .tech-layer {
    min-height: 130px;
  }

  .tech-layer strong {
    margin-top: 23px;
  }

  .download {
    margin-bottom: 20px;
    border-radius: 24px;
  }

  .download__inner {
    min-height: auto;
    padding: 45px 22px 22px;
  }

  .download__actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .download__actions .button {
    width: 100%;
  }

  .platform-card {
    padding: 21px;
  }

  .footer {
    grid-template-columns: 1fr auto;
    min-height: 85px;
  }

  .footer > p {
    display: none;
  }
}

@media (max-width: 460px) {
  .hero__actions {
    display: grid;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__facts {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .app-content__top h2 {
    font-size: 0.94rem;
  }

  .app-status {
    padding: 6px 8px;
    font-size: 0.45rem;
  }

  .connection-copy h3 {
    font-size: 0.86rem;
  }

  .connection-stats {
    gap: 12px;
  }

  .preview-note {
    font-size: 0.52rem;
  }

  .tag-row {
    flex-wrap: wrap;
  }

  .import-preview {
    padding: 12px;
  }

  .import-preview__input span {
    display: block;
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .platform-card__meta {
    grid-template-columns: 1fr;
  }

  .footer nav {
    gap: 13px;
  }
}

@media (hover: none) {
  .button:hover,
  .workflow-step:hover {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal .section-heading,
  .reveal .feature-card,
  .reveal .workflow-step,
  .reveal .details-panel,
  .reveal .download__copy,
  .reveal .download__platforms {
    opacity: 1;
    transform: none;
  }
}

/* Shared theme control */
.theme-toggle {
  position: relative;
  display: grid;
  flex: 0 0 40px;
  place-items: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 11px;
  color: #a9b9cf;
  background: rgba(255, 255, 255, 0.035);
  cursor: pointer;
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.theme-toggle:hover,
.theme-toggle:focus-visible {
  border-color: rgba(139, 177, 240, 0.28);
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
  outline: none;
  transform: translateY(-1px);
}

.theme-toggle svg {
  position: absolute;
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: opacity 160ms ease, transform 200ms ease;
}

.theme-toggle__sun {
  opacity: 0;
  transform: rotate(-30deg) scale(0.7);
}

.theme-toggle__moon {
  opacity: 1;
  transform: rotate(0) scale(1);
}

html[data-theme="light"] .theme-toggle__sun {
  opacity: 1;
  transform: rotate(0) scale(1);
}

html[data-theme="light"] .theme-toggle__moon {
  opacity: 0;
  transform: rotate(30deg) scale(0.7);
}

/* Light theme */
html[data-theme="light"] {
  background: #eef3fa;
}

html[data-theme="light"] body {
  color: #142033;
  background:
    radial-gradient(circle at 78% 4%, rgba(83, 139, 235, 0.14), transparent 28rem),
    #eef3fa;
}

html[data-theme="light"] body::before {
  opacity: 0.022;
}

html[data-theme="light"] .topbar.is-scrolled {
  border-color: rgba(34, 64, 107, 0.11);
  background: rgba(245, 248, 253, 0.86);
  box-shadow: 0 14px 40px rgba(39, 66, 104, 0.1);
}

html[data-theme="light"] .brand,
html[data-theme="light"] h1,
html[data-theme="light"] .section-heading h2 {
  color: #101b2c;
}

html[data-theme="light"] h1 span {
  color: #366fc7;
}

html[data-theme="light"] .nav,
html[data-theme="light"] .text-link {
  color: #5f7088;
}

html[data-theme="light"] .nav a:hover,
html[data-theme="light"] .text-link:hover {
  color: #16243a;
}

html[data-theme="light"] .theme-toggle {
  border-color: rgba(34, 64, 107, 0.12);
  color: #315f9f;
  background: rgba(255, 255, 255, 0.72);
}

html[data-theme="light"] .theme-toggle:hover,
html[data-theme="light"] .theme-toggle:focus-visible {
  border-color: rgba(57, 111, 196, 0.3);
  color: #1f57ac;
  background: #fff;
}

html[data-theme="light"] .button--ghost {
  border-color: rgba(34, 64, 107, 0.14);
  color: #314158;
  background: rgba(255, 255, 255, 0.48);
}

html[data-theme="light"] .button--ghost:hover {
  border-color: rgba(57, 111, 196, 0.28);
  background: #fff;
}

html[data-theme="light"] .lead,
html[data-theme="light"] .section-heading > p {
  color: #617188;
}

html[data-theme="light"] .hero__facts {
  color: #718096;
}

html[data-theme="light"] .hero__facts b {
  color: #223149;
}

html[data-theme="light"] .compatibility {
  border-color: rgba(34, 64, 107, 0.12);
}

html[data-theme="light"] .page-nav {
  border-color: rgba(34, 64, 107, 0.12);
  background:
    radial-gradient(circle at 75% 0%, rgba(72, 130, 228, 0.12), transparent 25rem),
    rgba(248, 250, 254, 0.78);
  box-shadow: 0 20px 55px rgba(48, 73, 108, 0.08);
}

html[data-theme="light"] .page-nav__intro p {
  color: #718096;
}

html[data-theme="light"] .page-nav__links a {
  border-color: rgba(47, 87, 144, 0.1);
  background: rgba(255, 255, 255, 0.66);
}

html[data-theme="light"] .page-nav__links a:hover,
html[data-theme="light"] .page-nav__links a:focus-visible,
html[data-theme="light"] .page-nav__links a.is-current {
  border-color: rgba(63, 119, 210, 0.26);
  background: #ffffff;
  box-shadow: 0 16px 35px rgba(48, 73, 108, 0.12);
}

html[data-theme="light"] .page-nav__links strong {
  color: #1a2940;
}

html[data-theme="light"] .page-nav__links small {
  color: #718096;
}

html[data-theme="light"] .route-dock {
  border-color: rgba(34, 64, 107, 0.13);
  background: rgba(248, 250, 254, 0.86);
  box-shadow: 0 18px 44px rgba(48, 73, 108, 0.14);
}

html[data-theme="light"] .route-dock a {
  color: #728198;
}

html[data-theme="light"] .route-dock a::before {
  border-color: #8190a4;
  background: #f8faff;
}

html[data-theme="light"] .route-dock:hover a > span,
html[data-theme="light"] .route-dock:focus-within a > span {
  color: #61728b;
  background: rgba(248, 250, 254, 0.96);
}

html[data-theme="light"] .route-dock a:hover,
html[data-theme="light"] .route-dock a:focus-visible,
html[data-theme="light"] .route-dock a.is-current {
  color: #214f91;
  background: rgba(72, 130, 228, 0.1);
}

html[data-theme="light"] .route-dock a.is-current::before {
  border-color: #4f83d5;
  background: #5f96ed;
}

html[data-theme="light"] .compatibility > span {
  color: #7c899b;
}

html[data-theme="light"] .compatibility b {
  color: #53647a;
}

html[data-theme="light"] .feature-card {
  border-color: rgba(47, 87, 144, 0.12);
  color: #17243a;
  background:
    radial-gradient(circle at var(--card-x, 80%) var(--card-y, 10%), rgba(72, 130, 228, 0.12), transparent 15rem),
    #f8faff;
  box-shadow: 0 14px 35px rgba(48, 73, 108, 0.055);
}

html[data-theme="light"] .feature-card:hover,
html[data-theme="light"] .feature-card:focus-visible {
  border-color: rgba(63, 119, 210, 0.28);
  box-shadow: 0 22px 48px rgba(48, 73, 108, 0.11);
}

html[data-theme="light"] .feature-card--blue {
  color: #fff;
  background:
    radial-gradient(circle at var(--card-x, 82%) var(--card-y, 12%), rgba(177, 207, 255, 0.23), transparent 15rem),
    linear-gradient(145deg, #2c67c4, #174486);
}

html[data-theme="light"] .feature-card .card-kicker {
  color: #4776b9;
}

html[data-theme="light"] .feature-card--blue .card-kicker {
  color: #c3d8ff;
}

html[data-theme="light"] .feature-card > p,
html[data-theme="light"] .feature-card__copy > p:not(.card-kicker) {
  color: #66768b;
}

html[data-theme="light"] .feature-card--blue > p {
  color: #d1def4;
}

html[data-theme="light"] .feature-icon {
  border-color: rgba(47, 87, 144, 0.12);
  color: #356dbe;
  background: #fff;
  box-shadow: 0 8px 22px rgba(40, 70, 110, 0.07);
}

html[data-theme="light"] .feature-card--blue .feature-icon {
  border-color: rgba(255, 255, 255, 0.16);
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

html[data-theme="light"] .tag-row span,
html[data-theme="light"] .clean-list li {
  border-color: rgba(47, 87, 144, 0.12);
  color: #64748a;
  background: rgba(255, 255, 255, 0.72);
}

html[data-theme="light"] .import-preview {
  border-color: rgba(47, 87, 144, 0.14);
  background: #fff;
  box-shadow: 0 22px 55px rgba(48, 73, 108, 0.11);
}

html[data-theme="light"] .import-preview__input,
html[data-theme="light"] .mode-switch {
  border-color: rgba(47, 87, 144, 0.1);
  color: #8290a4;
  background: #edf2f8;
}

html[data-theme="light"] .import-preview__result {
  border-color: rgba(47, 87, 144, 0.1);
}

html[data-theme="light"] .import-preview__result b {
  color: #1d2b40;
}

html[data-theme="light"] .mode-switch button {
  color: #718096;
}

html[data-theme="light"] .mode-switch .is-on {
  color: #245da8;
  background: #fff;
  box-shadow: 0 7px 17px rgba(40, 70, 110, 0.08);
}

html[data-theme="light"] .workflow-step {
  border-color: rgba(47, 87, 144, 0.12);
  background: rgba(255, 255, 255, 0.52);
}

html[data-theme="light"] .workflow-step:hover,
html[data-theme="light"] .workflow-step:focus-visible,
html[data-theme="light"] .workflow-step.is-active {
  border-color: rgba(63, 119, 210, 0.28);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 42px rgba(48, 73, 108, 0.08);
}

html[data-theme="light"] .workflow-step h3 {
  color: #17243a;
}

html[data-theme="light"] .workflow-step p {
  color: #68788e;
}

html[data-theme="light"] .step-visual {
  border-color: rgba(47, 87, 144, 0.12);
  background:
    linear-gradient(rgba(31, 62, 105, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 62, 105, 0.035) 1px, transparent 1px),
    #edf3fb;
  background-size: 20px 20px;
}

html[data-theme="light"] .step-visual--nodes span {
  border-color: rgba(47, 87, 144, 0.12);
  color: #4776b9;
  background: #f8fbff;
}

html[data-theme="light"] .product-preview__glow {
  background: rgba(96, 148, 240, 0.16);
}

html[data-theme="light"] .app-window {
  border-color: rgba(47, 87, 144, 0.14);
  background: #f4f7fc;
  box-shadow: 0 30px 72px rgba(40, 70, 110, 0.17);
}

html[data-theme="light"] .app-window__bar {
  border-color: rgba(47, 87, 144, 0.1);
  background: #e9eff8;
}

html[data-theme="light"] .window-controls i {
  background: #c3cee0;
}

html[data-theme="light"] .app-sidebar {
  border-color: rgba(47, 87, 144, 0.1);
  background: #eef3fb;
}

html[data-theme="light"] .app-sidebar span {
  color: #5e6f88;
}

html[data-theme="light"] .app-sidebar span i {
  color: #4f82d8;
}

html[data-theme="light"] .app-sidebar .app-sidebar__active {
  color: #1b365f;
  background: rgba(78, 130, 230, 0.14);
}

html[data-theme="light"] .app-content__top h2,
html[data-theme="light"] .connection-copy h3 {
  color: #16233a;
}

html[data-theme="light"] .app-content__top small,
html[data-theme="light"] .connection-copy__label,
html[data-theme="light"] .connection-copy > p,
html[data-theme="light"] .connection-stats small,
html[data-theme="light"] .subscription-card small,
html[data-theme="light"] .subscription-card > p,
html[data-theme="light"] .route-card small,
html[data-theme="light"] .route-card > div {
  color: #6c7c93;
}

html[data-theme="light"] .app-status {
  border-color: rgba(47, 87, 144, 0.14);
  color: #607089;
  background: rgba(78, 130, 230, 0.06);
}

html[data-theme="light"] .app-status i {
  background: #8391a5;
  box-shadow: 0 0 0 3px rgba(96, 112, 137, 0.1);
}

html[data-theme="light"] .preview-note--bottom i {
  background: #1faf63;
  box-shadow: 0 0 10px rgba(31, 175, 99, 0.5);
}

html[data-theme="light"] .app-window.is-connecting .app-status {
  border-color: rgba(47, 102, 196, 0.24);
  color: #245da8;
  background: rgba(72, 130, 228, 0.1);
}

html[data-theme="light"] .app-window.is-connected .app-status {
  border-color: rgba(33, 150, 96, 0.26);
  color: #137040;
  background: rgba(40, 175, 108, 0.1);
}

html[data-theme="light"] .app-window.is-connected .app-status i {
  background: #1faf63;
  box-shadow: 0 0 10px rgba(31, 175, 99, 0.5);
}

html[data-theme="light"] .connection-card {
  border-color: rgba(78, 130, 230, 0.22);
  background:
    radial-gradient(circle at 10% 50%, rgba(89, 143, 241, 0.1), transparent 11rem),
    #ffffff;
}

html[data-theme="light"] .connection-orbit span,
html[data-theme="light"] .connection-orbit::before,
html[data-theme="light"] .connection-orbit::after {
  border-color: rgba(78, 130, 230, 0.24);
}

html[data-theme="light"] .connection-orbit::after {
  background: rgba(94, 145, 237, 0.12);
}

html[data-theme="light"] .connection-stats b {
  color: #1d2b40;
}

html[data-theme="light"] .connection-card button {
  border-color: rgba(63, 119, 210, 0.26);
  color: #235ba8;
  background: rgba(72, 130, 228, 0.1);
}

html[data-theme="light"] .app-window.is-connected .connection-card button {
  border-color: rgba(33, 150, 96, 0.3);
  color: #137040;
  background: rgba(40, 175, 108, 0.12);
}

html[data-theme="light"] .connect-demo {
  color: #54729f;
}

html[data-theme="light"] .connect-demo__status {
  border-color: rgba(47, 87, 144, 0.12);
  color: #607089;
  background: rgba(255, 255, 255, 0.82);
}

html[data-theme="light"] .workflow-step.is-connecting .connect-demo__status {
  border-color: rgba(47, 102, 196, 0.2);
  color: #245da8;
  background: rgba(72, 130, 228, 0.1);
}

html[data-theme="light"] .workflow-step.is-connected .connect-demo__status {
  border-color: rgba(33, 150, 96, 0.22);
  color: #137040;
  background: rgba(40, 175, 108, 0.1);
}

html[data-theme="light"] .subscription-card,
html[data-theme="light"] .route-card {
  border-color: rgba(47, 87, 144, 0.1);
  background: #ffffff;
}

html[data-theme="light"] .card-title b,
html[data-theme="light"] .route-card > b {
  color: #18263d;
}

html[data-theme="light"] .mini-icon {
  color: #2f63b0;
  background: rgba(93, 147, 245, 0.16);
}

html[data-theme="light"] .card-title em {
  color: #3f74c6;
}

html[data-theme="light"] .usage-line {
  background: #e3ebf6;
}

html[data-theme="light"] .route-card > div i,
html[data-theme="light"] .tech-stack > i {
  background: #c5d1e3;
}

html[data-theme="light"] .preview-note {
  border-color: rgba(47, 87, 144, 0.14);
  color: #34425c;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 34px rgba(40, 70, 110, 0.14);
}

html[data-theme="light"] .preview-note span {
  color: #2f66c4;
}

html[data-theme="light"] .details-panel {
  border-color: rgba(47, 87, 144, 0.12);
  background: #f8faff;
  box-shadow: 0 22px 55px rgba(48, 73, 108, 0.07);
}

html[data-theme="light"] .details-panel h2 {
  color: #101b2c;
}

html[data-theme="light"] .details-panel__copy > p {
  color: #617188;
}

html[data-theme="light"] .details-panel .section-label {
  color: #4776b9;
}

html[data-theme="light"] .details-panel .inline-link {
  color: #2f66c4;
}

html[data-theme="light"] .tech-layer {
  border-color: rgba(47, 87, 144, 0.1);
  background:
    radial-gradient(circle at 75% 10%, rgba(96, 151, 248, 0.08), transparent 9rem),
    #ffffff;
}

html[data-theme="light"] .tech-layer:hover,
html[data-theme="light"] .tech-layer:focus-visible,
html[data-theme="light"] .tech-layer.is-active {
  border-color: rgba(63, 119, 210, 0.3);
  background:
    radial-gradient(circle at 72% 12%, rgba(96, 151, 248, 0.2), transparent 10rem),
    #ffffff;
  box-shadow: 0 22px 48px rgba(48, 73, 108, 0.16), 0 0 0 1px rgba(91, 143, 236, 0.04) inset;
}

html[data-theme="light"] .tech-layer .tech-layer__icon {
  color: #356dbe;
  background: rgba(93, 147, 245, 0.12);
}

html[data-theme="light"] .tech-layer > span:not(.tech-layer__icon) {
  color: #566f99;
}

html[data-theme="light"] .tech-layer strong {
  color: #17243a;
}

html[data-theme="light"] .tech-layer small {
  color: #66768b;
}

html[data-theme="light"] .tech-visual {
  border-color: rgba(47, 87, 144, 0.12);
  background:
    linear-gradient(rgba(45, 91, 156, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45, 91, 156, 0.035) 1px, transparent 1px),
    linear-gradient(145deg, #e9f0fa, #dce7f6);
  background-size: 16px 16px, 16px 16px, auto;
}

html[data-theme="light"] .tech-layer__status {
  color: #66768b;
}

html[data-theme="light"] .platform-tabs button.is-active {
  color: #173b73;
  background: #ffffff;
  box-shadow: 0 6px 16px rgba(13, 38, 76, 0.18);
}

html[data-theme="light"] .platform-card {
  border-color: rgba(47, 87, 144, 0.14);
  color: #16233a;
  background: #f7faff;
}

html[data-theme="light"] .download__platforms:hover .platform-card {
  border-color: rgba(63, 119, 210, 0.3);
}

html[data-theme="light"] .platform-card__head p {
  color: #3f6cae;
}

html[data-theme="light"] .platform-logo {
  color: #356dbe;
  background: rgba(93, 147, 245, 0.14);
}

html[data-theme="light"] .platform-card > p {
  color: #5d6c82;
}

html[data-theme="light"] .platform-card__meta span {
  border-color: rgba(47, 87, 144, 0.12);
  background: #eef3fb;
}

html[data-theme="light"] .platform-card__meta small {
  color: #5c6b82;
}

html[data-theme="light"] .platform-card__meta b {
  color: #18263d;
}

html[data-theme="light"] .import-preview__input input {
  color: #2c3a52;
}

html[data-theme="light"] .import-preview__input input::placeholder {
  color: #8290a4;
}

html[data-theme="light"] .helper-session {
  border-color: rgba(47, 87, 144, 0.12);
  background: #f4f7fc;
}

html[data-theme="light"] .helper-session__status {
  color: #4f6079;
}

html[data-theme="light"] .helper-session__status i {
  background: #aab6c8;
}

html[data-theme="light"] .helper-session.is-on .helper-session__status {
  color: #16345e;
}

html[data-theme="light"] .helper-session.is-on .helper-session__status i {
  background: #1faf63;
  box-shadow: 0 0 0 4px rgba(31, 175, 99, 0.14);
}

html[data-theme="light"] .helper-session__btn {
  border-color: rgba(63, 119, 210, 0.26);
  color: #235ba8;
  background: rgba(72, 130, 228, 0.1);
}

html[data-theme="light"] .helper-session.is-on .helper-session__btn {
  color: #137040;
  border-color: rgba(33, 150, 96, 0.3);
  background: rgba(40, 175, 108, 0.12);
}

html[data-theme="light"] .helper-session__meta dt {
  color: #59687f;
}

html[data-theme="light"] .helper-session__meta dd {
  color: #21304a;
}

html[data-theme="light"] .app-route-row,
html[data-theme="light"] .app-toggle {
  border-color: rgba(47, 87, 144, 0.12);
  color: #21304a;
  background: #f4f7fc;
}

html[data-theme="light"] .app-route-row b {
  color: #2f66c4;
}

html[data-theme="light"] .app-route-row[data-direct] b {
  color: #9c5e16;
}

html[data-theme="light"] .app-toggle i {
  background: #c4d0e2;
}

html[data-theme="light"] .app-toggle i::after {
  background: #ffffff;
  box-shadow: 0 1px 2px rgba(40, 70, 110, 0.25);
}

html[data-theme="light"] .app-toggle.is-on i {
  background: #2bbd77;
}

html[data-theme="light"] .footer {
  color: #728198;
}

html[data-theme="light"] .brand--footer {
  color: #27364c;
}

html[data-theme="light"] .footer nav a:hover {
  color: #15243a;
}

html[data-theme="light"] .to-top {
  border-color: rgba(34, 64, 107, 0.12);
  color: #315f9f;
  background: rgba(248, 250, 253, 0.9);
}

@media (max-width: 760px) {
  html[data-theme="light"] .mobile-menu {
    border-color: rgba(34, 64, 107, 0.12);
    background: rgba(238, 243, 250, 0.98);
  }

  html[data-theme="light"] .mobile-menu a {
    border-color: rgba(34, 64, 107, 0.1);
    color: #26364d;
  }

  html[data-theme="light"] .menu-toggle {
    border-color: rgba(34, 64, 107, 0.12);
    background: rgba(255, 255, 255, 0.6);
  }

  html[data-theme="light"] .menu-toggle > span:not(.sr-only) {
    background: #26364d;
  }
}

main [id] {
  scroll-margin-top: 96px;
}

:where(a, button, article)[data-magnetic] {
  transform-origin: center;
  will-change: translate, scale;
}

:where(a, button, article)[data-magnetic].is-magnetized {
  z-index: 3;
}

.text-link[aria-current="page"] {
  color: #fff;
}

.text-link[aria-current="page"]::after {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-left: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(126, 230, 177, 0.1);
  content: "";
  vertical-align: middle;
}

.utility-body {
  min-width: 320px;
}

.subpage-main {
  position: relative;
  overflow: hidden;
}

.subpage-main::before {
  position: fixed;
  z-index: -1;
  top: 82px;
  left: 50%;
  width: min(1120px, calc(100% - 40px));
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(126, 230, 177, 0.36), rgba(117, 167, 255, 0.4), transparent);
  content: "";
  transform: translateX(-50%);
}

.subpage-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(390px, 0.74fr);
  align-items: center;
  gap: 56px;
  width: min(1180px, calc(100% - 40px));
  min-height: 640px;
  margin: 0 auto;
  padding: 132px 0 58px;
}

.subpage-hero__copy {
  min-width: 0;
}

.subpage-hero h1 {
  max-width: 810px;
  margin: 24px 0 22px;
  font-size: clamp(3.1rem, 7vw, 6.7rem);
  line-height: 0.92;
  letter-spacing: -0.075em;
}

.subpage-hero h1 span {
  color: var(--green);
}

.subpage-hero__lead {
  max-width: 690px;
  margin: 0;
  color: #a0aec2;
  font-size: 1.03rem;
  line-height: 1.75;
}

.subpage-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 34px;
}

.subpage-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 13px;
  border: 1px solid rgba(126, 230, 177, 0.18);
  border-radius: 999px;
  color: var(--green);
  background: rgba(126, 230, 177, 0.055);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.subpage-kicker i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 5px rgba(126, 230, 177, 0.1);
}

.subpage-visual {
  position: relative;
  min-width: 0;
  border: 1px solid rgba(139, 177, 240, 0.13);
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(126, 230, 177, 0.08), transparent 34%),
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    rgba(12, 25, 43, 0.78);
  background-size: auto, 28px 28px, 28px 28px, auto;
  box-shadow: 0 24px 65px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(16px);
}

.subpage-visual__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  padding: 0 19px;
  border-bottom: 1px solid var(--line);
}

.subpage-visual__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #dfe8f6;
  font-family: "Unbounded", sans-serif;
  font-size: 0.82rem;
  letter-spacing: -0.04em;
}

.subpage-visual__brand img {
  width: 34px;
  height: 34px;
}

.subpage-visual__state {
  color: #7f90a8;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.58rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.subpage-section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0;
}

.subpage-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: 48px;
  margin-bottom: 30px;
}

.subpage-heading h2 {
  margin: 10px 0 0;
  font-size: clamp(2.05rem, 4.2vw, 4.1rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.subpage-heading p {
  margin: 0;
  color: #8d9ab0;
  font-size: 0.9rem;
  line-height: 1.68;
}

.roadmap-visual {
  padding-bottom: 20px;
}

.roadmap-scan {
  display: grid;
  gap: 13px;
  padding: 22px;
}

.roadmap-scan__row {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 0 14px;
  border: 1px solid rgba(139, 177, 240, 0.1);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.026);
}

.roadmap-scan__row span {
  color: #6e809a;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.56rem;
}

.roadmap-scan__line {
  position: relative;
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
}

.roadmap-scan__line i {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--line-width, 55%);
  border-radius: inherit;
  background: linear-gradient(90deg, #75a7ff, #7ee6b1);
}

.roadmap-scan__row b {
  color: #dbe6f5;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.62rem;
  font-weight: 600;
}

.roadmap-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 8px;
}

.roadmap-stat {
  min-height: 116px;
  padding: 18px;
  border: 1px solid rgba(139, 177, 240, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.025);
}

.roadmap-stat span {
  color: #73849d;
  font-size: 0.68rem;
}

.roadmap-stat strong {
  display: block;
  margin-top: 18px;
  color: #f3f7fd;
  font-family: "JetBrains Mono", monospace;
  font-size: clamp(1.45rem, 2.5vw, 2rem);
}

.roadmap-filter {
  position: sticky;
  z-index: 20;
  top: 88px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(8, 18, 32, 0.82);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
}

.roadmap-filter button {
  min-height: 40px;
  padding: 0 15px;
  border: 1px solid transparent;
  border-radius: 12px;
  color: #8fa0b8;
  background: transparent;
  cursor: pointer;
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease;
}

.roadmap-filter button:hover,
.roadmap-filter button:focus-visible,
.roadmap-filter button.is-active {
  border-color: rgba(126, 230, 177, 0.22);
  color: #eaf4ef;
  background: rgba(126, 230, 177, 0.085);
  outline: none;
}

.roadmap-track {
  position: relative;
  display: grid;
  gap: 14px;
}

.roadmap-track::before {
  position: absolute;
  top: 28px;
  bottom: 28px;
  left: 84px;
  width: 1px;
  background: linear-gradient(transparent, rgba(126, 230, 177, 0.3), rgba(117, 167, 255, 0.28), transparent);
  content: "";
}

.roadmap-card {
  position: relative;
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr) minmax(160px, auto);
  align-items: center;
  gap: 24px;
  min-height: 146px;
  padding: 20px 22px;
  border: 1px solid rgba(139, 177, 240, 0.13);
  border-radius: 22px;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(126, 230, 177, 0.06), transparent 42%),
    rgba(16, 29, 49, 0.88);
  outline: none;
  transition: opacity 180ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease, transform 220ms cubic-bezier(.2,.8,.2,1);
}

.roadmap-card:hover,
.roadmap-card:focus-visible {
  border-color: rgba(126, 230, 177, 0.32);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.22);
  transform: translateY(-3px);
}

.roadmap-card.is-hidden {
  display: none;
}

.roadmap-card__date {
  position: relative;
  display: grid;
  gap: 6px;
  color: #7890b2;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.62rem;
  text-transform: uppercase;
}

.roadmap-card__date::before {
  position: absolute;
  top: 50%;
  left: 61px;
  width: 11px;
  height: 11px;
  border: 2px solid #7ee6b1;
  border-radius: 50%;
  background: #101d31;
  box-shadow: 0 0 0 7px rgba(126, 230, 177, 0.08);
  content: "";
  transform: translate(-50%, -50%);
}

.roadmap-card__date strong {
  color: #dfe8f6;
  font-size: 0.92rem;
  text-transform: none;
}

.roadmap-card__copy h3 {
  margin: 0 0 8px;
  color: #f5f8fd;
  font-size: clamp(1.15rem, 2.1vw, 1.6rem);
  line-height: 1.16;
  letter-spacing: -0.04em;
}

.roadmap-card__copy p {
  max-width: 650px;
  margin: 0;
  color: #92a0b6;
  font-size: 0.84rem;
  line-height: 1.65;
}

.roadmap-card__meta {
  display: grid;
  justify-items: end;
  gap: 9px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  padding: 0 10px;
  border-radius: 999px;
  color: #cbd9ec;
  background: rgba(255, 255, 255, 0.055);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.54rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

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

.status-pill--active {
  color: #ffc36b;
  background: rgba(255, 195, 107, 0.11);
}

.status-pill--planned {
  color: #94bbff;
  background: rgba(117, 167, 255, 0.11);
}

.status-pill--shipped {
  color: #7ee6b1;
  background: rgba(126, 230, 177, 0.11);
}

.roadmap-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
}

.roadmap-tags span {
  padding: 5px 8px;
  border: 1px solid rgba(139, 177, 240, 0.1);
  border-radius: 8px;
  color: #7c8da5;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.51rem;
}

.roadmap-note {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  margin-top: 34px;
  padding: 24px;
  border: 1px solid rgba(126, 230, 177, 0.16);
  border-radius: 22px;
  background:
    linear-gradient(90deg, rgba(126, 230, 177, 0.085), transparent 55%),
    rgba(255, 255, 255, 0.025);
}

.roadmap-note h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
  letter-spacing: -0.035em;
}

.roadmap-note p {
  max-width: 760px;
  margin: 0;
  color: #92a0b6;
  font-size: 0.85rem;
  line-height: 1.65;
}

.helper-hero {
  grid-template-columns: minmax(0, 0.86fr) minmax(430px, 0.86fr);
}

.helper-hero h1 span {
  color: #45d49e;
}

.helper-visual {
  min-height: 430px;
  padding-bottom: 0;
  overflow: hidden;
}

.helper-orbit {
  display: grid;
  place-items: center;
  min-height: 365px;
  padding: 30px;
}

.helper-orbit__core {
  display: grid;
  place-items: center;
  width: 132px;
  height: 132px;
  border: 1px solid rgba(126, 230, 177, 0.24);
  border-radius: 36px;
  color: #8ff0bf;
  background:
    linear-gradient(145deg, rgba(126, 230, 177, 0.14), rgba(117, 167, 255, 0.08)),
    rgba(5, 12, 22, 0.52);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 22px 55px rgba(0, 0, 0, 0.26);
}

.helper-orbit__core svg {
  width: 54px;
  height: 54px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.helper-orbit__chips {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
  margin-top: 28px;
}

.helper-orbit__chips span {
  min-height: 54px;
  padding: 13px;
  border: 1px solid rgba(139, 177, 240, 0.12);
  border-radius: 14px;
  color: #9baabd;
  background: rgba(255, 255, 255, 0.026);
  font-size: 0.73rem;
  line-height: 1.35;
}

.helper-layout {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  gap: 18px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 76px;
}

.helper-sidebar {
  position: sticky;
  top: 100px;
  align-self: start;
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(12, 25, 43, 0.74);
  backdrop-filter: blur(18px);
}

.helper-sidebar__title {
  margin: 4px 5px 8px;
  color: #71839b;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.topic-button {
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: center;
  gap: 11px;
  min-height: 52px;
  padding: 8px 10px;
  border: 1px solid transparent;
  border-radius: 14px;
  color: #a5b2c4;
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: color 170ms ease, border-color 170ms ease, background 170ms ease;
}

.topic-button:hover,
.topic-button:focus-visible,
.topic-button.is-active {
  border-color: rgba(126, 230, 177, 0.18);
  color: #ecf5ee;
  background: rgba(126, 230, 177, 0.06);
  outline: none;
}

.topic-button i {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 9px;
  color: #7ee6b1;
  background: rgba(126, 230, 177, 0.1);
  font-style: normal;
}

.assistant-shell {
  display: grid;
  grid-template-rows: auto minmax(430px, 1fr) auto;
  min-height: 720px;
  overflow: hidden;
  border: 1px solid rgba(139, 177, 240, 0.14);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(126, 230, 177, 0.055), transparent 33%),
    rgba(9, 19, 34, 0.88);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.25);
}

.assistant-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 0 22px;
  border-bottom: 1px solid var(--line);
}

.assistant-head__title {
  display: flex;
  align-items: center;
  gap: 12px;
}

.assistant-head__title img {
  width: 36px;
  height: 36px;
}

.assistant-head__title b {
  display: block;
  margin-bottom: 2px;
  font-size: 0.96rem;
}

.assistant-head__title small {
  color: #73849d;
  font-size: 0.68rem;
}

.assistant-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 11px;
  border: 1px solid rgba(126, 230, 177, 0.18);
  border-radius: 999px;
  color: #7ee6b1;
  background: rgba(126, 230, 177, 0.07);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.assistant-badge i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 5px rgba(126, 230, 177, 0.09);
}

.assistant-chat {
  display: grid;
  align-content: start;
  gap: 16px;
  max-height: 620px;
  padding: 24px;
  overflow-y: auto;
}

.assistant-empty {
  display: grid;
  place-items: center;
  min-height: 365px;
  text-align: center;
}

.assistant-empty__inner {
  display: grid;
  justify-items: center;
  max-width: 720px;
}

.assistant-empty__icon {
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  margin-bottom: 24px;
  border: 1px solid rgba(126, 230, 177, 0.24);
  border-radius: 24px;
  color: #7ee6b1;
  background: rgba(126, 230, 177, 0.08);
}

.assistant-empty__icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.assistant-empty h2 {
  margin: 0 0 18px;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.helper-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
}

.helper-chip {
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid rgba(139, 177, 240, 0.14);
  border-radius: 999px;
  color: #9baabd;
  background: rgba(255, 255, 255, 0.028);
  cursor: pointer;
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease;
}

.helper-chip:hover,
.helper-chip:focus-visible {
  border-color: rgba(126, 230, 177, 0.24);
  color: #ecf8f2;
  background: rgba(126, 230, 177, 0.07);
  outline: none;
}

.chat-message {
  display: grid;
  gap: 8px;
  max-width: min(760px, 88%);
  animation: messageIn 220ms ease both;
}

.chat-message--user {
  justify-self: end;
}

.chat-message__label {
  color: #72839c;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.chat-message--user .chat-message__label {
  justify-self: end;
}

.chat-message__bubble {
  padding: 15px 17px;
  border: 1px solid rgba(139, 177, 240, 0.12);
  border-radius: 18px;
  color: #dfe8f6;
  background: rgba(255, 255, 255, 0.038);
  line-height: 1.6;
}

.chat-message--user .chat-message__bubble {
  border-color: rgba(117, 167, 255, 0.2);
  color: #07101f;
  background: linear-gradient(135deg, #9fc1ff, #75a7ff);
}

.chat-message__bubble p {
  margin: 0;
}

.chat-message__bubble p + p,
.chat-message__bubble ul + p {
  margin-top: 10px;
}

.chat-message__bubble ul {
  display: grid;
  gap: 7px;
  margin: 10px 0 0;
  padding-left: 21px;
}

.chat-message__bubble li::marker {
  color: #7ee6b1;
}

.assistant-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 58px;
  gap: 10px;
  padding: 16px;
  border-top: 1px solid var(--line);
  background: rgba(5, 12, 22, 0.36);
}

.assistant-input {
  min-height: 58px;
  max-height: 150px;
  resize: none;
  padding: 18px 19px;
  border: 1px solid rgba(139, 177, 240, 0.13);
  border-radius: 18px;
  color: #f3f7fd;
  background: rgba(0, 0, 0, 0.22);
  outline: none;
  line-height: 1.45;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.assistant-input::placeholder {
  color: #596a82;
}

.assistant-input:focus {
  border-color: rgba(126, 230, 177, 0.42);
  background: rgba(5, 12, 22, 0.54);
  box-shadow: 0 0 0 4px rgba(126, 230, 177, 0.06);
}

.assistant-send {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(126, 230, 177, 0.24);
  border-radius: 18px;
  color: #06111d;
  background: #7ee6b1;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.assistant-send:hover,
.assistant-send:focus-visible {
  border-color: rgba(163, 255, 207, 0.42);
  background: #a3ffcf;
  outline: none;
}

.assistant-send svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.assistant-footnote {
  width: min(1180px, calc(100% - 40px));
  margin: -42px auto 58px;
  color: #68788f;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.61rem;
  text-align: center;
}

.assistant-footnote a {
  color: #7ee6b1;
}

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

html[data-theme="light"] .text-link[aria-current="page"] {
  color: #16243a;
}

html[data-theme="light"] .subpage-main::before {
  background: linear-gradient(90deg, transparent, rgba(31, 175, 99, 0.28), rgba(63, 119, 210, 0.28), transparent);
}

html[data-theme="light"] .subpage-hero__lead,
html[data-theme="light"] .subpage-heading p,
html[data-theme="light"] .roadmap-card__copy p,
html[data-theme="light"] .roadmap-note p {
  color: #617188;
}

html[data-theme="light"] .subpage-kicker {
  border-color: rgba(31, 175, 99, 0.18);
  color: #168451;
  background: rgba(31, 175, 99, 0.075);
}

html[data-theme="light"] .subpage-visual,
html[data-theme="light"] .helper-sidebar,
html[data-theme="light"] .assistant-shell {
  border-color: rgba(36, 69, 115, 0.12);
  background:
    linear-gradient(135deg, rgba(31, 175, 99, 0.07), transparent 34%),
    linear-gradient(rgba(31, 62, 105, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 62, 105, 0.035) 1px, transparent 1px),
    rgba(248, 250, 254, 0.82);
  background-size: auto, 28px 28px, 28px 28px, auto;
  box-shadow: 0 24px 65px rgba(48, 73, 108, 0.11);
}

html[data-theme="light"] .subpage-visual__brand,
html[data-theme="light"] .roadmap-stat strong,
html[data-theme="light"] .roadmap-card__date strong,
html[data-theme="light"] .roadmap-card__copy h3,
html[data-theme="light"] .roadmap-note h3,
html[data-theme="light"] .assistant-empty h2 {
  color: #132137;
}

html[data-theme="light"] .roadmap-scan__row,
html[data-theme="light"] .roadmap-stat,
html[data-theme="light"] .roadmap-note,
html[data-theme="light"] .helper-orbit__chips span,
html[data-theme="light"] .chat-message__bubble {
  border-color: rgba(36, 69, 115, 0.11);
  background: rgba(255, 255, 255, 0.58);
}

html[data-theme="light"] .roadmap-card {
  border-color: rgba(36, 69, 115, 0.11);
  color: #17243a;
  background:
    linear-gradient(90deg, rgba(31, 175, 99, 0.055), transparent 42%),
    rgba(255, 255, 255, 0.72);
}

html[data-theme="light"] .roadmap-card:hover,
html[data-theme="light"] .roadmap-card:focus-visible {
  border-color: rgba(31, 175, 99, 0.25);
  box-shadow: 0 22px 48px rgba(48, 73, 108, 0.12);
}

html[data-theme="light"] .roadmap-card__date::before {
  background: #f8faff;
}

html[data-theme="light"] .roadmap-filter {
  border-color: rgba(36, 69, 115, 0.11);
  background: rgba(248, 250, 254, 0.86);
  box-shadow: 0 18px 45px rgba(48, 73, 108, 0.1);
}

html[data-theme="light"] .roadmap-filter button {
  color: #5f7088;
}

html[data-theme="light"] .roadmap-filter button:hover,
html[data-theme="light"] .roadmap-filter button:focus-visible,
html[data-theme="light"] .roadmap-filter button.is-active,
html[data-theme="light"] .topic-button:hover,
html[data-theme="light"] .topic-button:focus-visible,
html[data-theme="light"] .topic-button.is-active {
  border-color: rgba(31, 175, 99, 0.18);
  color: #17345e;
  background: rgba(31, 175, 99, 0.07);
}

html[data-theme="light"] .helper-orbit__core {
  color: #178956;
  background:
    linear-gradient(145deg, rgba(31, 175, 99, 0.12), rgba(72, 130, 228, 0.08)),
    #ffffff;
  box-shadow: 0 20px 50px rgba(48, 73, 108, 0.12);
}

html[data-theme="light"] .topic-button {
  color: #5f7087;
}

html[data-theme="light"] .assistant-head,
html[data-theme="light"] .assistant-form {
  border-color: rgba(36, 69, 115, 0.11);
}

html[data-theme="light"] .assistant-badge,
html[data-theme="light"] .assistant-empty__icon {
  border-color: rgba(31, 175, 99, 0.18);
  color: #168451;
  background: rgba(31, 175, 99, 0.075);
}

html[data-theme="light"] .helper-chip {
  border-color: rgba(36, 69, 115, 0.11);
  color: #607087;
  background: rgba(255, 255, 255, 0.64);
}

html[data-theme="light"] .helper-chip:hover,
html[data-theme="light"] .helper-chip:focus-visible {
  border-color: rgba(31, 175, 99, 0.2);
  color: #17345e;
  background: #fff;
}

html[data-theme="light"] .chat-message__bubble {
  color: #25364e;
}

html[data-theme="light"] .chat-message--user .chat-message__bubble {
  color: #07101f;
  background: linear-gradient(135deg, #b7d2ff, #7fb0ff);
}

html[data-theme="light"] .assistant-input {
  border-color: rgba(36, 69, 115, 0.11);
  color: #17243a;
  background: #fff;
}

html[data-theme="light"] .assistant-input::placeholder {
  color: #8996a8;
}

html[data-theme="light"] .assistant-footnote {
  color: #728198;
}

@media (max-width: 1050px) {
  .topbar__actions {
    gap: 12px;
  }

  .subpage-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 136px;
  }

  .subpage-visual {
    max-width: 720px;
  }

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

  .helper-layout {
    grid-template-columns: 1fr;
  }

  .helper-sidebar {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .helper-sidebar__title {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  main [id] {
    scroll-margin-top: 78px;
  }

  .subpage-hero,
  .subpage-section,
  .roadmap-stats,
  .helper-layout,
  .assistant-footnote {
    width: calc(100% - 28px);
  }

  .subpage-hero {
    gap: 30px;
    padding: 118px 0 42px;
  }

  .subpage-hero h1 {
    font-size: clamp(2.7rem, 15vw, 4.7rem);
  }

  .subpage-heading {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .subpage-section {
    padding: 50px 0;
  }

  .subpage-visual__head {
    min-height: 58px;
    padding: 0 15px;
  }

  .roadmap-scan {
    padding: 14px;
  }

  .roadmap-scan__row {
    grid-template-columns: 54px 1fr;
  }

  .roadmap-scan__row b {
    grid-column: 2;
  }

  .roadmap-filter {
    top: 76px;
    overflow-x: auto;
    flex-wrap: nowrap;
    scrollbar-width: none;
  }

  .roadmap-filter::-webkit-scrollbar {
    display: none;
  }

  .roadmap-filter button {
    flex: 0 0 auto;
  }

  .roadmap-track::before {
    left: 24px;
  }

  .roadmap-card {
    grid-template-columns: 1fr;
    gap: 15px;
    padding-left: 48px;
  }

  .roadmap-card__date {
    grid-template-columns: auto 1fr;
    align-items: baseline;
  }

  .roadmap-card__date::before {
    left: -24px;
  }

  .roadmap-card__meta {
    justify-items: start;
  }

  .roadmap-tags {
    justify-content: flex-start;
  }

  .roadmap-note {
    grid-template-columns: 1fr;
  }

  .helper-sidebar {
    grid-template-columns: 1fr;
  }

  .assistant-shell {
    grid-template-rows: auto minmax(360px, 1fr) auto;
    min-height: 620px;
    border-radius: 22px;
  }

  .assistant-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding: 17px;
  }

  .assistant-chat {
    max-height: 560px;
    padding: 17px;
  }

  .assistant-empty {
    min-height: 330px;
  }

  .chat-message {
    max-width: 100%;
  }

  .assistant-form {
    grid-template-columns: 1fr 52px;
    padding: 12px;
  }

  .assistant-send {
    width: 52px;
    height: 52px;
    border-radius: 15px;
  }

  .assistant-input {
    min-height: 52px;
    padding: 15px;
    border-radius: 15px;
  }
}

@media (max-width: 520px) {
  .subpage-hero__actions {
    display: grid;
  }

  .subpage-hero__actions .button {
    width: 100%;
  }

  .roadmap-stats,
  .helper-orbit__chips {
    grid-template-columns: 1fr;
  }

  .roadmap-card {
    min-height: 0;
  }
}

@media (hover: none), (prefers-reduced-motion: reduce) {
  :where(a, button, article)[data-magnetic] {
    scale: 1 !important;
    translate: 0 0 !important;
  }
}
