@charset "UTF-8";
:root {
  --paper: #f7f9fc;
  --ink: #152039;
  --muted: #67738a;
  --blue: #2159ee;
  --line: #dde3ed;
  --white: #fff;
  --green: #26775b;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --font: Inter, "Segoe UI", Arial, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  font: inherit;
  cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
}
button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid #80a1ff;
  outline-offset: 5px;
}
::selection {
  background: #ccdafe;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  line-height: 1.12;
  letter-spacing: -0.055em;
}
h2 {
  font-size: clamp(36px, 4.1vw, 53px);
  font-weight: 650;
}
h3 {
  font-size: 23px;
  letter-spacing: -0.035em;
}
p {
  color: var(--muted);
}
.container {
  width: min(1200px, calc(100% - 96px));
  margin-inline: auto;
}
.icon {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.icon-library {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.mono {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.01em;
}
.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;
  top: -100px;
  left: 16px;
  background: white;
  padding: 12px;
  z-index: 100;
}
.skip-link:focus {
  top: 10px;
}
.blue {
  color: var(--blue);
}
.muted {
  color: #8994a8;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  background: var(--blue);
  color: white;
  padding: 17px 24px;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  transition:
    transform 0.2s,
    background 0.2s;
  white-space: nowrap;
}
.button:hover {
  background: #1648d4;
  transform: translateY(-2px);
}
.button .icon {
  width: 20px;
  height: 20px;
}
.button-small {
  padding: 12px 17px;
  gap: 14px;
  font-size: 13px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.2s;
}
.text-link:hover {
  color: var(--blue);
}
.text-link .icon {
  width: 19px;
  height: 19px;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  line-height: 1.5;
  font-weight: 500;
}
.status-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #3ea87d;
  box-shadow: 0 0 0 3px #3ea87d14;
}
.tag {
  display: inline-block;
  background: #e9edf4;
  border: 1px solid #dce2ec;
  color: #68748b;
  border-radius: 5px;
  padding: 4px 9px;
  font-family: var(--mono);
  font-size: 10px;
  line-height: 1.4;
  letter-spacing: 0.045em;
}
.tag-blue {
  background: #e9efff;
  color: var(--blue);
  border-color: #d6e2ff;
}
.tag-green {
  background: #e6f3ec;
  color: #277c57;
  border-color: #cfe7d9;
}
.header {
  height: 94px;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
  background: #f7f9fcf2;
  backdrop-filter: blur(16px);
}
.nav {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  white-space: nowrap;
  font-size: 25px;
  font-weight: 700;
  letter-spacing: -1.3px;
  line-height: 1;
}
.brand-mark {
  height: 34px;
  width: 34px;
  color: var(--blue);
  margin-right: 9px;
}
.brand-dot {
  color: var(--blue);
}
.navigation {
  display: flex;
  align-items: center;
  gap: 29px;
}
.navigation > a:not(.button) {
  font-size: 12px;
  font-weight: 500;
  color: #536079;
}
.navigation > a:hover {
  color: var(--blue);
}
.language-switch {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--mono);
  font-size: 10px;
}
.language-switch span {
  color: #bdc6d5;
}
.language-switch a {
  border: 0;
  background: none;
  color: #8590a3;
  font-size: 11px;
  padding: 5px;
}
.language-switch a[aria-current="page"] {
  color: var(--ink);
  font-weight: 700;
}
.menu-button {
  display: none;
}
.hero {
  position: relative;
  padding-top: 86px;
  padding-bottom: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 55px;
  align-items: center;
}
.hero-copy {
  padding-bottom: 32px;
}
.hero .eyebrow {
  color: #68768f;
  margin-bottom: 23px;
}
.hero h1 {
  font-size: clamp(51px, 5.2vw, 72px);
  font-weight: 650;
  line-height: 1.05;
  letter-spacing: -0.07em;
}
.hero-description {
  font-size: 16px;
  max-width: 425px;
  line-height: 1.8;
  margin-top: 26px;
}
.hero-actions {
  display: flex;
  gap: 26px;
  align-items: center;
  margin-top: 30px;
}
.hero-proof {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 27px;
  font-size: 10px;
  color: #6b778c;
}
.hero-proof .icon {
  height: 14px;
  width: 14px;
}
.proof-divider {
  height: 12px;
  width: 1px;
  background: #d0d8e6;
  margin: 0 4px;
}
.hero-footnote {
  grid-column: 1/-1;
  font-size: 10px;
  text-align: right;
  margin-top: 5px;
  line-height: 1.7;
  color: #8a94a7;
}
.protocol-strip {
  margin-top: 32px;
  border-block: 1px solid var(--line);
  background: #fff6;
}
.protocol-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 28px;
  gap: 20px;
  color: #7d899d;
}
.strip-label {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.06em;
  max-width: 180px;
  line-height: 1.7;
}
.protocol-inner > span:not(.strip-label) {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 16px;
  font-weight: 550;
  letter-spacing: -0.03em;
}
.protocol-inner .icon {
  width: 19px;
  height: 19px;
}
.section {
  padding-block: 108px;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  align-items: end;
  margin-bottom: 55px;
}
.section-heading .eyebrow {
  margin-bottom: 18px;
  color: #6d7b93;
}
.section-heading > p {
  max-width: 355px;
  font-size: 14px;
  line-height: 1.85;
  margin-bottom: 5px;
}
.how-layout {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 94px;
  align-items: center;
}
.steps {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.step {
  display: flex;
  gap: 22px;
}
.step-number {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border: 1px solid #d6e0f0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #2159ee;
  font-family: var(--mono);
  font-size: 10px;
  margin-top: 1px;
}
.step h3 {
  font-size: 19px;
  margin: 6px 0 9px;
  letter-spacing: -0.03em;
}
.step p {
  font-size: 13px;
  line-height: 1.85;
  max-width: 370px;
}
.path-explainer {
  border: 1px solid #dce3ef;
  background: #fff;
  border-radius: 13px;
  padding: 25px 30px;
  box-shadow: 0 14px 34px #16387505;
}
.segmented {
  display: flex;
  border: 1px solid #e0e5ef;
  background: #f3f5f9;
  border-radius: 7px;
  padding: 4px;
  gap: 3px;
}
.segmented button {
  flex: 1;
  font-size: 12px;
  background: none;
  border: 0;
  border-radius: 4px;
  padding: 9px 10px;
  color: #7a879e;
  font-weight: 500;
  white-space: nowrap;
}
.segmented button[aria-pressed="true"] {
  background: white;
  color: #2458df;
  box-shadow: 0 1px 5px #162c5012;
}
.mini-path {
  display: flex;
  align-items: center;
  padding: 38px 14px 30px;
  color: #5375b2;
  gap: 11px;
}
.mini-path > .icon {
  width: 29px;
  height: 29px;
}
.mini-line {
  height: 1px;
  flex: 1;
  background: #b4c7f2;
  position: relative;
}
.mini-line:after {
  content: "";
  height: 4px;
  width: 4px;
  background: #2159ee;
  position: absolute;
  top: -1.5px;
  left: 0;
  border-radius: 50%;
  animation: mini-flow 2.5s linear infinite;
}
.mini-middle {
  border: 1px solid #dce5fa;
  background: #f7f9ff;
  color: #2159ee;
  border-radius: 5px;
  padding: 5px 8px;
  font-family: var(--mono);
  font-size: 10px;
}
.path-explainer h3 {
  font-size: 23px;
  margin: 17px 0 12px;
}
.path-explainer p {
  font-size: 13px;
  line-height: 1.85;
  min-height: 96px;
}
.path-detail {
  border-top: 1px solid #e6eaf2;
  margin-top: 21px;
  padding-top: 15px;
  font-size: 10px;
  display: flex;
  align-items: center;
  gap: 7px;
  color: #8994a8;
}
.path-detail .icon {
  width: 13px;
  height: 13px;
}
.features-section {
  background: #111d34;
  color: #f9fbff;
  padding-block: 86px;
}
.light-heading .eyebrow {
  color: #8495b4;
}
.light-heading > p {
  color: #a0adc4;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px;
}
.feature {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: start;
  padding-right: 20px;
}
.feature + .feature {
  border-left: 1px solid #ffffff14;
  padding-left: 38px;
  padding-right: 0;
}
.feature-icon {
  color: #8faeff;
  margin-bottom: 25px;
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  border: 1px solid #ffffff18;
  border-radius: 10px;
  background: #ffffff04;
}
.feature-kicker {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  color: #8a9bbd;
}
.feature h3 {
  font-size: 25px;
  line-height: 1.2;
  margin: 15px 0 15px;
  letter-spacing: -0.045em;
}
.feature p {
  font-size: 13px;
  color: #93a2bd;
  line-height: 1.9;
}
.feature-bottom {
  margin-top: auto;
  padding-top: 24px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.035em;
  color: #6f8ac0;
}
.features-footer {
  margin-top: 55px;
  border-top: 1px solid #ffffff14;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 10px;
  color: #788dad;
}
.features-footer > span:first-child {
  display: flex;
  align-items: center;
  gap: 9px;
}
.features-footer .icon {
  width: 15px;
  height: 15px;
}
.access-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}
.access-copy .eyebrow {
  margin-bottom: 19px;
}
.section-description {
  margin-top: 24px;
  font-size: 14px;
  line-height: 1.85;
  max-width: 400px;
}
.check-list {
  list-style: none;
  margin: 23px 0 27px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.check-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  color: #596983;
}
.check-list .icon {
  width: 16px;
  height: 16px;
  color: #285bea;
}
.access-demo {
  border: 1px solid #dce3ef;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 20px 60px #1d3b6b08;
}
.demo-top {
  height: 45px;
  border-bottom: 1px solid #e6eaf2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-inline: 19px;
  background: #fafbfe;
}
.demo-dots {
  display: flex;
  gap: 5px;
}
.demo-dots i {
  width: 6px;
  height: 6px;
  background: #d5dce9;
  border-radius: 50%;
}
.demo-top .mono {
  font-size: 9px;
  color: #8c99ac;
}
.demo-top .tag {
  font-size: 8px;
}
.demo-content {
  padding: 24px;
}
.policy-grant {
  margin-top: 24px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #f7f9fc;
}
.policy-step {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  color: #5778bf;
}
.policy-grant strong {
  display: block;
  margin-top: 8px;
  font-size: 14px;
}
.policy-grant p {
  margin-top: 8px;
  font-size: 12px;
  line-height: 1.7;
}
.policy-user-step {
  margin-top: 24px;
}
.policy-user-step:not([hidden]) + .policy-user {
  margin-top: 12px;
}
.policy-grant[hidden], .policy-user-step[hidden], .device-row[hidden] {
  display: none;
}
.policy-user {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 25px 0;
}
.avatar {
  width: 37px;
  height: 37px;
  border-radius: 50%;
  background: #e9effe;
  color: #5778bf;
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 600;
}
.policy-user > div:nth-child(2) {
  flex: 1;
}
.policy-user strong {
  font-size: 12px;
  display: block;
}
.policy-user > div > span {
  font-size: 9px;
  display: block;
  color: #8a98ae;
}
.policy-status {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 8px;
  color: #459378;
  white-space: nowrap;
}
.policy-status .status-dot {
  width: 4px;
  height: 4px;
  box-shadow: none;
}
.device-list {
  border: 1px solid #e5eaf3;
  border-radius: 7px;
  overflow: hidden;
}
.device-row {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 16px 13px;
}
.device-row + .device-row {
  border-top: 1px solid #e9edf5;
}
.device-row > .icon {
  height: 19px;
  width: 19px;
  color: #94a4bf;
}
.device-row > div {
  flex: 1;
  min-width: 0;
}
.device-row strong {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  display: block;
  overflow-wrap: anywhere;
}
.device-row > div > span {
  font-size: 8px;
  color: #94a1b6;
  display: block;
  margin-top: 3px;
}
.permission {
  font-family: var(--mono);
  font-size: 8px;
  padding: 3px 7px;
  border-radius: 4px;
  white-space: nowrap;
}
.allowed {
  background: #e9f5ef;
  color: #3b9271;
}
.denied {
  background: #f2f3f7;
  color: #929db0;
}
.policy-note {
  font-size: 10px;
  margin-top: 18px;
  line-height: 1.8;
  min-height: 36px;
}
.demo-footer {
  background: #fafbfe;
  border-top: 1px solid #e6eaf2;
  padding: 12px 24px;
  font-size: 9px;
  color: #8493ab;
  display: flex;
  align-items: center;
  gap: 7px;
}
.demo-footer .icon {
  height: 13px;
  width: 13px;
}
.service-section {
  background: #edf1f8;
  border-block: 1px solid #e3e8f1;
}
.service-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 70px;
  align-items: center;
}
.service-layout .eyebrow {
  margin-bottom: 19px;
}
.service-layout h2 {
  font-size: 46px;
}
.service-buttons {
  display: flex;
  gap: 7px;
  margin-top: 27px;
  flex-wrap: wrap;
}
.service-buttons button {
  border: 1px solid #d4ddec;
  background: transparent;
  border-radius: 6px;
  padding: 9px 13px;
  font-family: var(--mono);
  font-size: 10px;
  color: #7b8aa3;
}
.service-buttons button[aria-pressed="true"] {
  background: white;
  border-color: #bacbf3;
  color: #2159ee;
  box-shadow: 0 2px 7px #2159ee07;
}
.service-note {
  font-size: 10px;
  line-height: 1.8;
  margin-top: 15px;
  max-width: 330px;
  min-height: 36px;
}
.terminal {
  background: #142039;
  color: #dde6f5;
  border-radius: 12px;
  box-shadow: 0 22px 38px #122b5218;
  overflow: hidden;
  min-width: 0;
}
.terminal-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 49px;
  background: #1b2944;
  border-bottom: 1px solid #ffffff08;
  padding: 0 18px;
  font-family: var(--mono);
  font-size: 9px;
  color: #8c9dba;
}
.terminal .demo-dots i {
  background: #4f5f7b;
}
.copy-button {
  background: none;
  border: 0;
  color: #a2b3d2;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 9px;
  padding: 5px;
}
.copy-button:hover {
  color: white;
}
.copy-button .icon {
  height: 12px;
  width: 12px;
}
.terminal-content {
  padding: 26px 24px;
}
.terminal-caption {
  font-family: var(--mono);
  font-size: 10px;
  color: #6e86ad;
  margin-bottom: 10px;
}
.terminal pre {
  margin: 0 0 26px;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  font-size: 10px;
  line-height: 1.9;
  font-family: var(--mono);
  color: #b7cbf0;
}
.terminal pre code {
  font-family: inherit;
}
.terminal-divider {
  height: 1px;
  background: #ffffff0a;
  margin-top: 2px;
  margin-bottom: 22px;
}
.terminal .client-command {
  color: #95e0c0;
  margin-bottom: 0;
}
.terminal-footer {
  padding: 12px 24px;
  border-top: 1px solid #ffffff0b;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 8px;
  color: #6f87ad;
}
.terminal-footer .status-dot {
  width: 4px;
  height: 4px;
}
.positioning-section {
  padding-bottom: 85px;
}
.positioning-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
  margin-top: 20px;
}
.positioning-heading h2 {
  font-size: 40px;
  max-width: 450px;
}
.positioning-heading p {
  font-size: 13px;
  line-height: 1.9;
}
.positioning-points {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.positioning-points > div {
  display: flex;
  align-items: center;
  gap: 14px;
}
.positioning-points .mono {
  color: #9aa8bf;
  font-size: 10px;
}
.positioning-points strong {
  font-size: 12px;
  font-weight: 500;
}
.comparison-note {
  font-size: 9px;
  margin-top: 27px;
  color: #94a0b5;
}
.comparison-note a {
  text-decoration: underline;
  text-underline-offset: 3px;
  color: #768cb4;
}
.roadmap-section {
  background: #eff3fa;
  border-block: 1px solid #e3e9f4;
}
.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.roadmap-card {
  border: 1px solid #dce4f0;
  border-radius: 10px;
  padding: 25px 24px;
  background: #ffffff80;
  display: flex;
  flex-direction: column;
}
.roadmap-card.current {
  background: white;
  border-color: #cadbce;
  box-shadow: 0 5px 20px #254a6b04;
}
.roadmap-card .tag {
  align-self: start;
  font-size: 8px;
}
.roadmap-card h3 {
  margin-top: 23px;
  font-size: 22px;
  line-height: 1.25;
}
.roadmap-card ul {
  list-style: none;
  padding: 0;
  margin: 20px 0 25px;
  font-size: 11px;
  line-height: 1.85;
  color: #7c8aa0;
}
.roadmap-card li {
  position: relative;
  padding-left: 12px;
  margin-bottom: 8px;
}
.roadmap-card li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  border-radius: 50%;
  width: 3px;
  height: 3px;
  background: #a7b4ca;
}
.current li:before {
  background: #4c9b79;
}
.roadmap-bottom {
  border-top: 1px solid #e0e6f1;
  margin-top: auto;
  padding-top: 16px;
  color: #95a1b5;
  font-family: var(--mono);
  font-size: 8px;
  line-height: 1.8;
}
.roadmap-link {
  margin-top: 29px;
  font-size: 12px;
  color: #637898;
}
.faq-section {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 85px;
}
.faq-section h2 {
  font-size: 40px;
  margin-top: 19px;
}
.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
.faq-list details:first-child {
  padding-top: 0;
}
.faq-list summary {
  list-style: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  line-height: 1.5;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary:after {
  content: "+";
  font-family: var(--mono);
  font-size: 20px;
  color: #8b9bb6;
  font-weight: 400;
  flex-shrink: 0;
}
.faq-list details[open] summary:after {
  content: "−";
}
.faq-list p {
  font-size: 12px;
  line-height: 1.9;
  margin-top: 16px;
  padding-right: 20px;
}
.start-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #2159ee;
  color: white;
  border-radius: 16px;
  padding: 62px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.start-copy {
  position: relative;
  z-index: 1;
  max-width: 590px;
}
.start-copy .eyebrow {
  color: #a9c1ff;
  font-size: 9px;
  margin-bottom: 19px;
}
.start-copy h2 {
  font-size: 53px;
  line-height: 1.05;
}
.start-copy p {
  font-size: 13px;
  color: #c5d4fc;
  line-height: 1.9;
  max-width: 440px;
  margin-top: 21px;
}
.start-copy .hero-actions {
  margin-top: 28px;
}
.button-white {
  background: white;
  color: #2159ee;
  font-size: 12px;
}
.button-white:hover {
  background: #e5edff;
}
.start-github {
  color: #c8d8ff;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
}
.start-github:hover {
  color: #fff;
}
.start-github .icon {
  height: 16px;
  width: 16px;
}
.start-symbol {
  height: 160px;
  width: 160px;
  color: #c6d7ff;
  opacity: 0.85;
  margin-right: 30px;
}
.start-orbit {
  position: absolute;
  right: -50px;
  top: 50%;
  transform: translateY(-50%);
  height: 430px;
  width: 430px;
  border: 1px solid #ffffff14;
  border-radius: 50%;
  z-index: -1;
}
.start-orbit:before,
.start-orbit:after {
  content: "";
  position: absolute;
  border: 1px solid #ffffff14;
  border-radius: 50%;
  inset: 65px;
}
.start-orbit:after {
  inset: -65px;
}
.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  padding-top: 60px;
  padding-bottom: 48px;
}
.footer .brand {
  font-size: 23px;
}
.footer p {
  font-size: 10px;
  margin-top: 10px;
}
.footer-links {
  display: flex;
  gap: 24px;
  font-size: 10px;
  color: #7b8aa1;
}
.footer-links a:hover {
  color: var(--blue);
}
.footer-meta {
  display: flex;
  flex-direction: column;
  align-items: end;
  font-family: var(--mono);
  font-size: 9px;
  color: #9aa6b9;
  gap: 5px;
}
.reveal {
  transition:
    opacity 0.6s,
    transform 0.6s;
}
.js-motion .reveal:not(.visible) {
  opacity: 1;
  transform: none;
}
@keyframes mini-flow {
  from {
    left: 0;
  }
  to {
    left: 100%;
  }
}
@media (min-width: 1500px) {
  .hero {
    padding-top: 110px;
    padding-bottom: 40px;
  }
  .hero h1 {
    font-size: 76px;
  }
  .hero-description {
    font-size: 17px;
  }
}
@media (max-width: 1100px) {
  .container {
    width: calc(100% - 64px);
  }
  .navigation {
    gap: 18px;
  }
  .hero {
    gap: 28px;
    padding-top: 70px;
  }
  .hero h1 {
    font-size: 58px;
  }
  .hero-actions {
    gap: 20px;
  }
  .hero .text-link {
    font-size: 12px;
  }
  .hero-description {
    font-size: 14px;
  }
  .how-layout {
    gap: 45px;
  }
  .access-section {
    gap: 45px;
  }
  .service-layout {
    gap: 40px;
  }
  .service-layout h2 {
    font-size: 40px;
  }
  .feature-grid {
    gap: 25px;
  }
  .feature + .feature {
    padding-left: 25px;
  }
  .feature h3 {
    font-size: 23px;
  }
  .positioning-heading {
    gap: 45px;
  }
  .faq-section {
    gap: 45px;
  }
}
@media (max-width: 850px) {
  .container {
    width: calc(100% - 48px);
  }
  .header {
    height: 76px;
  }
  .brand {
    font-size: 23px;
  }
  .brand-mark {
    height: 29px;
    width: 29px;
  }
  .menu-button {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: none;
    border: 1px solid var(--line);
    border-radius: 7px;
  }
  .menu-button span {
    width: 16px;
    height: 1px;
    background: #516079;
    transition: transform 0.2s;
  }
  .menu-button[aria-expanded="true"] span:first-child {
    transform: translateY(3px) rotate(45deg);
  }
  .menu-button[aria-expanded="true"] span:last-child {
    transform: translateY(-3px) rotate(-45deg);
  }
  .navigation {
    display: none;
    position: absolute;
    top: 75px;
    left: 0;
    right: 0;
    padding: 25px;
    background: #f7f9cfff;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    box-shadow: 0 14px 20px #172c4c06;
  }
  .navigation.open {
    display: flex;
  }
  .navigation > a:not(.button) {
    font-size: 14px;
  }
  .language-switch {
    justify-content: start;
  }
  .hero {
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    padding-top: 62px;
  }
  .hero h1 {
    font-size: 45px;
  }
  .hero .eyebrow {
    font-size: 8px;
  }
  .hero-description {
    font-size: 13px;
    margin-top: 21px;
  }
  .hero-actions {
    align-items: start;
    flex-direction: column;
    gap: 17px;
    margin-top: 24px;
  }
  .hero .button {
    padding: 14px 17px;
    font-size: 12px;
  }
  .hero-proof {
    flex-wrap: wrap;
    font-size: 8px;
  }
  .hero-footnote {
    font-size: 8px;
  }
  .protocol-inner {
    gap: 15px;
    flex-wrap: wrap;
  }
  .strip-label {
    font-size: 8px;
    width: 100%;
    max-width: none;
  }
  .protocol-inner > span:not(.strip-label) {
    font-size: 13px;
  }
  .section {
    padding-block: 78px;
  }
  .section-heading {
    gap: 30px;
  }
  .section-heading > p {
    max-width: 290px;
    font-size: 12px;
  }
  .section-heading h2 {
    font-size: 39px;
  }
  .how-layout {
    gap: 30px;
  }
  .step {
    gap: 15px;
  }
  .step h3 {
    font-size: 16px;
  }
  .step p {
    font-size: 11px;
  }
  .path-explainer {
    padding: 19px;
  }
  .path-explainer h3 {
    font-size: 20px;
  }
  .path-explainer p {
    font-size: 11px;
    min-height: 120px;
  }
  .segmented button {
    font-size: 10px;
    padding: 8px 6px;
  }
  .feature-grid {
    gap: 18px;
  }
  .feature + .feature {
    padding-left: 18px;
  }
  .feature h3 {
    font-size: 20px;
  }
  .feature p {
    font-size: 11px;
  }
  .feature-kicker {
    font-size: 7px;
  }
  .feature-bottom {
    font-size: 7px;
  }
  .access-section {
    gap: 30px;
  }
  .access-section h2 {
    font-size: 38px;
  }
  .section-description {
    font-size: 12px;
  }
  .check-list li {
    font-size: 10px;
  }
  .access-copy .text-link {
    font-size: 12px;
  }
  .demo-content {
    padding: 18px;
  }
  .policy-status {
    display: none;
  }
  .device-row {
    padding: 13px 9px;
    gap: 8px;
  }
  .device-row strong {
    font-size: 9px;
  }
  .device-row > div > span {
    font-size: 7px;
  }
  .permission {
    font-size: 7px;
  }
  .service-layout {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .service-layout h2 {
    font-size: 42px;
  }
  .service-layout .section-description {
    max-width: 550px;
  }
  .service-note {
    max-width: none;
    min-height: 0;
  }
  .terminal pre {
    font-size: 12px;
  }
  .terminal-caption {
    font-size: 11px;
  }
  .terminal-footer {
    font-size: 10px;
  }
  .positioning-heading {
    gap: 30px;
  }
  .positioning-heading h2 {
    font-size: 34px;
  }
  .positioning-heading p {
    font-size: 11px;
  }
  .positioning-points strong {
    font-size: 10px;
  }
  .roadmap-grid {
    gap: 12px;
  }
  .roadmap-card {
    padding: 21px 17px;
  }
  .roadmap-card h3 {
    font-size: 19px;
  }
  .roadmap-card ul {
    font-size: 10px;
  }
  .roadmap-bottom {
    font-size: 7px;
  }
  .faq-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .faq-section h2 {
    font-size: 38px;
  }
  .start-section {
    padding: 45px;
  }
  .start-copy h2 {
    font-size: 45px;
  }
  .start-copy p {
    max-width: 390px;
  }
  .start-symbol {
    height: 110px;
    width: 110px;
    margin: 0;
  }
  .start-copy .hero-actions {
    flex-direction: row;
    align-items: center;
  }
  .footer {
    gap: 20px;
  }
  .footer-links {
    gap: 13px;
    font-size: 9px;
  }
  .footer-meta {
    font-size: 8px;
  }
}
@media (max-width: 600px) {
  .container {
    width: calc(100% - 40px);
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 45px;
  }
  .hero-copy {
    padding-bottom: 10px;
  }
  .hero .eyebrow {
    font-size: 9px;
  }
  .hero h1 {
    font-size: clamp(49px, 11.5vw, 66px);
  }
  .tr-break {
    display: none;
  }
  .hero-description {
    font-size: 14px;
    max-width: 400px;
  }
  .hero-actions {
    flex-direction: row;
    align-items: center;
    gap: 21px;
  }
  .hero-proof {
    font-size: 9px;
    margin-top: 24px;
  }
  .hero-footnote {
    text-align: left;
    font-size: 8px;
    margin-top: 0;
  }
  .protocol-strip {
    margin-top: 12px;
  }
  .protocol-inner {
    padding-block: 22px;
    gap: 17px 25px;
    justify-content: start;
  }
  .protocol-inner > span:not(.strip-label) {
    font-size: 12px;
  }
  .protocol-inner .icon {
    width: 16px;
    height: 16px;
  }
  .section {
    padding-block: 64px;
  }
  .section-heading {
    flex-direction: column;
    align-items: start;
    gap: 23px;
    margin-bottom: 32px;
  }
  .section-heading h2,
  h2 {
    font-size: 39px;
  }
  .section-heading > p {
    max-width: none;
    font-size: 13px;
  }
  .section-heading .eyebrow {
    font-size: 9px;
    margin-bottom: 16px;
  }
  .how-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .step h3 {
    font-size: 18px;
  }
  .step p {
    font-size: 12px;
    max-width: none;
  }
  .step {
    gap: 18px;
  }
  .steps {
    gap: 23px;
  }
  .path-explainer {
    padding: 22px;
  }
  .path-explainer h3 {
    font-size: 22px;
  }
  .path-explainer p {
    font-size: 12px;
    min-height: 82px;
  }
  .segmented button {
    font-size: 11px;
  }
  .path-detail {
    font-size: 9px;
  }
  .features-section {
    padding-block: 62px;
  }
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .feature,
  .feature + .feature {
    padding: 0;
    border: 0;
  }
  .feature + .feature {
    border-top: 1px solid #ffffff14;
    padding-top: 27px;
  }
  .feature {
    display: grid;
    grid-template-columns: 45px 1fr;
    gap: 0 18px;
    align-items: start;
  }
  .feature-icon {
    grid-row: 1/5;
    margin-bottom: 0;
  }
  .feature-kicker {
    font-size: 8px;
  }
  .feature h3 {
    font-size: 24px;
    margin-block: 10px 12px;
  }
  .feature p {
    font-size: 12px;
    grid-column: 2;
  }
  .feature-bottom {
    font-size: 8px;
    grid-column: 2;
    padding-top: 17px;
  }
  .features-footer {
    flex-direction: column;
    font-size: 9px;
    gap: 15px;
    margin-top: 36px;
  }
  .access-section {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .access-section h2 {
    font-size: 39px;
  }
  .section-description {
    font-size: 13px;
  }
  .check-list li {
    font-size: 11px;
  }
  .access-demo {
    transform: none;
  }
  .demo-content {
    padding: 21px;
  }
  .device-row {
    padding: 16px 12px;
  }
  .device-row strong {
    font-size: 10px;
  }
  .device-row > div > span {
    font-size: 8px;
  }
  .permission {
    font-size: 8px;
  }
  .policy-status {
    display: flex;
    font-size: 7px;
  }
  .service-layout h2 {
    font-size: 38px;
  }
  .service-buttons button {
    padding: 8px 10px;
  }
  .terminal-content {
    padding: 23px 19px;
  }
  .terminal pre {
    font-size: 10px;
  }
  .terminal-caption {
    font-size: 9px;
  }
  .terminal-footer {
    font-size: 8px;
    padding-inline: 19px;
  }
  .terminal-top {
    padding-inline: 15px;
    font-size: 8px;
  }
  .copy-button {
    font-size: 8px;
  }
  .positioning-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .positioning-heading h2 {
    font-size: 34px;
  }
  .positioning-heading p {
    font-size: 12px;
  }
  .positioning-points {
    grid-template-columns: 1fr;
    gap: 17px;
    padding-top: 25px;
  }
  .positioning-points strong {
    font-size: 12px;
  }
  .comparison-note {
    font-size: 8px;
  }
  .roadmap-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .roadmap-card {
    padding: 24px;
  }
  .roadmap-card h3 {
    font-size: 23px;
    margin-top: 19px;
  }
  .roadmap-card ul {
    font-size: 12px;
  }
  .roadmap-bottom {
    font-size: 9px;
  }
  .roadmap-card .tag {
    font-size: 9px;
  }
  .faq-section {
    gap: 30px;
  }
  .faq-section h2 {
    font-size: 35px;
  }
  .faq-list summary {
    font-size: 13px;
  }
  .faq-list p {
    font-size: 12px;
    padding-right: 0;
  }
  .start-section {
    padding: 36px 26px;
    border-radius: 12px;
  }
  .start-copy .eyebrow {
    font-size: 8px;
    max-width: 230px;
  }
  .start-copy h2 {
    font-size: 43px;
  }
  .start-copy p {
    font-size: 12px;
  }
  .start-copy .hero-actions {
    flex-direction: column;
    align-items: start;
    gap: 20px;
  }
  .start-symbol {
    display: none;
  }
  .start-orbit {
    right: -300px;
  }
  .footer {
    align-items: start;
    flex-wrap: wrap;
    padding-top: 40px;
    padding-bottom: 32px;
    gap: 30px;
  }
  .footer > div:first-child {
    width: 100%;
  }
  .footer-links {
    font-size: 10px;
    gap: 16px;
  }
  .footer-meta {
    margin-left: auto;
    font-size: 8px;
  }
  .footer .brand {
    font-size: 24px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
  .js-motion .reveal:not(.visible) {
    opacity: 1;
    transform: none;
  }
}

/* The complete diagram scales in one SVG coordinate system. */
.network-demo {
  min-width: 0;
  align-self: center;
  border: 1px solid #d4deed;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 20px 60px #183f7908;
  overflow: hidden;
}
.network-header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 23px 24px 16px;
}
.network-header .eyebrow {
  font-size: 9px !important;
  margin: 0 !important;
  color: #657592;
}
.network-header .tag {
  font-size: 8px;
  white-space: nowrap;
}
.network-controls {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 0 24px 12px;
}
.network-controls .segmented {
  flex: 1;
  min-width: 0;
}
.motion-toggle {
  border: 0;
  background: transparent;
  color: #536988;
  font-size: 10px;
  text-decoration: underline;
  text-underline-offset: 4px;
  padding: 8px 0;
  max-width: 90px;
  line-height: 1.5;
}
.network-map {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 600/450;
  background: #f8faff;
  border-block: 1px solid #edf1f8;
}
.network-map text {
  font-family: var(--font);
}
.network-map .map-title {
  font-size: 18px;
  fill: #213650;
  font-weight: 600;
  letter-spacing: -0.3px;
}
.network-map .map-subtitle {
  font-size: 15px;
  fill: #647998;
}
.network-map .map-control-label {
  font-size: 12px;
  fill: #7a8da9;
  letter-spacing: 1px;
  font-family: var(--mono);
}
.network-map .map-data-label {
  font-size: 16px;
  fill: #2159ee;
  font-weight: 600;
}
.map-icon {
  fill: none;
  stroke: #5476a7;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.network-control-lines path {
  stroke: #9aacc7;
  stroke-width: 1.5;
  stroke-dasharray: 5 6;
  fill: none;
}
.network-control-card rect,
.network-peer rect {
  fill: #fff;
  stroke: #ccdaed;
  stroke-width: 1.5;
}
.network-encryption rect {
  fill: #edf3ff;
}
.network-encryption text {
  fill: #4565a2 !important;
}
.network-data-lines path {
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
}
.network-direct {
  stroke: #2159ee;
}
.network-relay {
  stroke: #c7d1e0;
  stroke-dasharray: 4 6;
}
.network-relay-card rect {
  fill: #f4f7fb;
  stroke: #d3ddec;
  stroke-width: 1.5;
}
.network-relay-card .map-title,
.network-relay-card .map-subtitle {
  fill: #8493aa;
}
.network-data-lines .network-pulse {
  stroke: #8aaaff;
  stroke-width: 4;
  stroke-dasharray: 12 520;
  animation: network-flow 4s linear infinite;
}
.network-pulse.network-relay {
  display: none;
}
.network-demo[data-mode="relay"] .network-direct {
  stroke: #d6deeb;
  stroke-dasharray: 4 6;
}
.network-demo[data-mode="relay"] .network-relay {
  stroke: #2159ee;
  stroke-dasharray: none;
}
.network-demo[data-mode="relay"] .network-pulse.network-direct {
  display: none;
}
.network-demo[data-mode="relay"] .network-pulse.network-relay {
  display: block;
  stroke: #8aaaff;
  stroke-dasharray: 18 670;
  animation-duration: 5s;
}
.network-demo[data-mode="relay"] .network-relay-card rect {
  fill: #edf3ff;
  stroke: #7599ef;
}
.network-demo[data-mode="relay"] .network-relay-card .map-title {
  fill: #2159ee;
}
.network-caption {
  padding: 19px 24px 16px;
  display: flex;
  align-items: start;
  gap: 11px;
  min-height: 108px;
}
.network-key {
  flex: 0 0 7px;
  height: 7px;
  border-radius: 50%;
  background: #2159ee;
  margin-top: 6px;
}
.network-caption strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
}
.network-caption p {
  font-size: 11px;
  line-height: 1.75;
  margin-top: 5px;
  color: #687d9b;
}
.network-legend {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  border-top: 1px solid #edf1f8;
  padding: 13px 24px;
  color: #72839d;
  font-size: 9px;
}
.network-legend > span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.network-legend i {
  display: inline-block;
  width: 15px;
  height: 0;
}
.legend-control {
  border-top: 1px dashed #98aac7;
}
.legend-data {
  border-top: 2px solid #2159ee;
}
.technology-section {
  padding-bottom: 100px;
}
.technology-section h2 {
  max-width: 650px;
  font-size: 43px;
}
.technology-section .section-heading {
  align-items: start;
}
.transport-stack {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid #d5e0f1;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  margin-bottom: 35px;
}
.transport-stack > div {
  display: flex;
  flex-direction: column;
  padding: 23px 25px;
  gap: 8px;
  position: relative;
}
.transport-stack > div + div {
  border-left: 1px solid #e0e7f3;
}
.stack-level {
  font: 10px var(--mono);
  color: #7290c2;
}
.transport-stack strong {
  font-size: 14px;
  letter-spacing: -0.02em;
}
.transport-stack > div > span:last-child {
  font-size: 11px;
  line-height: 1.7;
  color: #71829d;
}
.technology-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}
.technology-grid h3 {
  font-size: 22px;
  margin: 19px 0 12px;
  line-height: 1.2;
}
.technology-grid p {
  font-size: 13px;
  line-height: 1.85;
}
.technology-grid .tag {
  font-size: 9px;
}
html[data-motion="paused"] .network-pulse,
html[data-motion="paused"] .mini-line:after {
  animation-play-state: paused;
}
.mini-line:after {
  animation: none;
}
.path-explainer p {
  min-height: 0;
}
.path-explainer {
  align-self: start;
}
.hero {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 28px 48px;
}
.hero h1 {
  font-size: clamp(46px, 4.6vw, 65px);
}
@keyframes network-flow {
  to {
    stroke-dashoffset: -532;
  }
}
@media (max-width: 1100px) {
  .hero {
    gap: 25px;
  }
  .network-header {
    padding: 18px 18px 14px;
  }
  .network-controls {
    padding: 0 18px 12px;
  }
  .network-header .tag {
    display: none;
  }
  .network-caption {
    padding: 17px 18px;
    min-height: 116px;
  }
  .network-legend {
    padding: 12px 18px;
    gap: 8px;
  }
  .technology-grid {
    gap: 25px;
  }
  .transport-stack > div {
    padding: 20px 18px;
  }
}
@media (max-width: 850px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-copy {
    max-width: 620px;
  }
  .hero h1 {
    font-size: 60px;
  }
  .hero-description {
    max-width: 540px;
    font-size: 16px;
  }
  .hero-actions {
    flex-direction: row;
    align-items: center;
  }
  .network-demo {
    width: 100%;
    max-width: 620px;
    justify-self: center;
  }
  .network-header .tag {
    display: block;
  }
  .network-caption {
    min-height: 95px;
  }
  .network-caption p {
    font-size: 12px;
  }
  .network-legend {
    font-size: 10px;
  }
  .technology-section h2 {
    font-size: 37px;
  }
  .transport-stack {
    grid-template-columns: repeat(2, 1fr);
  }
  .transport-stack > div:nth-child(3) {
    border-left: 0;
  }
  .transport-stack > div:nth-child(n + 3) {
    border-top: 1px solid #e0e7f3;
  }
  .technology-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .technology-grid article {
    padding-bottom: 25px;
    border-bottom: 1px solid var(--line);
  }
  .technology-grid h3 {
    margin-top: 13px;
  }
  .technology-grid p {
    max-width: 650px;
  }
  .technology-section {
    padding-bottom: 70px;
  }
}
@media (max-width: 600px) {
  .hero h1 {
    font-size: clamp(45px, 11.5vw, 62px);
  }
  .hero-description {
    font-size: 14px;
  }
  .network-header .eyebrow {
    font-size: 8px !important;
  }
  .network-header .tag {
    font-size: 7px;
  }
  .network-controls {
    gap: 10px;
  }
  .network-controls .segmented button {
    font-size: 10px;
  }
  .motion-toggle {
    font-size: 9px;
    max-width: 66px;
  }
  .network-caption {
    min-height: 113px;
    padding: 17px;
  }
  .network-caption strong {
    font-size: 12px;
  }
  .network-caption p {
    font-size: 11px;
  }
  .network-legend {
    font-size: 8px;
    padding: 12px 17px;
    gap: 12px;
  }
  .technology-section h2 {
    font-size: 34px;
  }
  .transport-stack > div {
    padding: 18px 15px;
  }
  .transport-stack strong {
    font-size: 12px;
  }
  .transport-stack > div > span:last-child {
    font-size: 10px;
  }
  .technology-grid h3 {
    font-size: 22px;
  }
  .technology-grid p {
    font-size: 13px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .network-pulse {
    display: none !important;
  }
}
.development-notice {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: #5a7191;
  line-height: 1.6;
  margin-bottom: 23px;
  max-width: 410px;
}
.development-notice .status-dot {
  background: #ca9543;
  box-shadow: 0 0 0 3px #ca954314;
}
.request-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 65px;
  background: #eaf0fb;
  border: 1px solid #d6e1f3;
  border-radius: 16px;
  padding: 55px;
  margin-bottom: 30px;
  align-items: start;
}
.request-copy .eyebrow {
  color: #5b77a2;
  margin-bottom: 22px;
}
.request-copy h2 {
  font-size: 43px;
  white-space: pre-line;
  line-height: 1.13;
}
.request-copy > p {
  font-size: 14px;
  line-height: 1.9;
  margin-top: 22px;
}
.request-expectations {
  padding-left: 19px;
  margin-block: 25px;
  color: #526a8a;
  font-size: 12px;
  line-height: 2;
}
.request-copy .request-footnote {
  font-size: 11px;
  color: #7487a3;
}
.request-form {
  padding: 27px;
  background: #fff;
  border: 1px solid #d5e0f0;
  border-radius: 12px;
  min-width: 0;
}
.request-form h3 {
  font-size: 25px;
  margin-bottom: 24px;
}
.request-form > label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-top: 17px;
  font-size: 12px;
  font-weight: 500;
  color: #526782;
}
.request-form input:not([type="checkbox"]),
.request-form textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid #cbd7e8;
  background: #fbfcff;
  padding: 12px;
  border-radius: 7px;
  color: #1b2e4b;
  font: 14px var(--font);
  line-height: 1.5;
}
.request-form textarea {
  resize: vertical;
  min-height: 120px;
}
.request-form input:focus-visible,
.request-form textarea:focus-visible {
  outline: 2px solid #7199f6;
  outline-offset: 2px;
}
.request-form .request-consent {
  flex-direction: row;
  align-items: start;
  padding: 14px;
  border: 1px solid #cbd7e8;
  border-radius: 8px;
  background: #f7f9fc;
  color: #344761;
  cursor: pointer;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.8;
  gap: 10px;
}
.request-consent input {
  appearance: none;
  width: 22px;
  height: 22px;
  margin: 1px 0 0;
  border: 2px solid #526782;
  border-radius: 4px;
  background: #fff;
  display: grid;
  place-content: center;
  cursor: pointer;
  flex-shrink: 0;
}
.request-consent input:checked {
  border-color: #2159ee;
  background: #2159ee;
}
.request-consent input:checked::before {
  content: "";
  width: 6px;
  height: 11px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: translateY(-1px) rotate(45deg);
}
.request-form .request-consent:hover {
  border-color: #526782;
}
@media (forced-colors: active) {
  .request-consent input {
    appearance: auto;
  }
  .request-consent input:checked::before {
    content: none;
  }
}
.form-help {
  font-size: 10px;
  line-height: 1.8;
  margin-top: 8px;
  color: #7a8aa2;
}
.request-captcha {
  margin-top: 22px;
  min-height: 65px;
}
.request-form .button {
  border: 0;
  width: 100%;
  margin-top: 20px;
}
.request-form .button:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}
.request-status {
  font-size: 12px;
  margin-top: 16px;
  line-height: 1.7;
  min-height: 40px;
}
.request-status[data-kind="error"] {
  color: #a13b43;
}
.request-status[data-kind="success"] {
  color: #26775b;
}
@media (max-width: 1000px) {
  .request-section {
    padding: 35px;
    gap: 35px;
  }
  .request-copy h2 {
    font-size: 36px;
  }
  .request-form {
    padding: 22px;
  }
}
@media (max-width: 750px) {
  .request-section {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 28px;
  }
  .request-copy h2 {
    font-size: 39px;
  }
  .request-copy > p {
    font-size: 13px;
  }
}
@media (max-width: 400px) {
  .request-section {
    padding: 20px;
  }
  .request-form {
    padding: 17px;
  }
  .request-copy h2 {
    font-size: 33px;
  }
  .request-captcha {
    min-height: 140px;
  }
}

/* Connection story: geometry and traffic share a single SVG coordinate space. */
.traversal-demo {
  min-width: 0;
}
.traversal-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 15px;
}
.traversal-top .eyebrow {
  font-size: 9px;
  margin: 0;
}
.demo-label {
  font: 10px var(--mono);
  color: #72819c;
}
.traversal-demo > h3 {
  font-size: 28px;
  line-height: 1.2;
  margin: 0 0 22px;
}
.traversal-map {
  width: 100%;
  height: auto;
  display: block;
  margin: 20px 0 10px;
  overflow: visible;
}
.traversal-map text {
  font: 14px var(--font);
  text-anchor: middle;
  fill: #355079;
}
.traversal-map .traversal-small {
  font-size: 12px;
  fill: #7185a6;
}
.traversal-map .traversal-turn-name {
  font-size: 17px;
  font-weight: 650;
}
.traversal-map .icon {
  color: #517fc6;
}
.traversal-node {
  fill: #f7faff;
  stroke: #cbdaf0;
}
.traversal-boundary {
  fill: #f5f6fa;
  stroke: #e2e7ef;
}
.traversal-turn-node {
  fill: #f8faff;
  stroke: #dde5f1;
}
.traversal-line,
.traversal-packet {
  fill: none;
  stroke-linejoin: round;
  stroke-linecap: round;
}
.traversal-line {
  stroke: #d9e2f0;
  stroke-width: 2;
}
.traversal-packet {
  stroke: #2159ee;
  stroke-width: 4;
  stroke-dasharray: 12 900;
  animation: traversal-flow 3.2s linear infinite;
  display: none;
}
.traversal-blocked {
  display: none;
}
.traversal-blocked circle {
  fill: #fff5f3;
  stroke: #d67167;
}
.traversal-blocked path {
  fill: none;
  stroke: #c55c53;
  stroke-width: 2;
}
.traversal-demo[data-stage="1"] .traversal-line.traversal-direct {
  stroke: #829dcc;
  stroke-dasharray: 5 7;
}
.traversal-demo[data-stage="1"] .traversal-packet.traversal-direct {
  display: block;
}
.traversal-demo[data-stage="1"][data-network="restricted"] .traversal-blocked,
.traversal-demo[data-stage="2"][data-network="restricted"] .traversal-blocked {
  display: block;
}
.traversal-demo[data-stage="2"][data-network="open"]
  .traversal-line.traversal-direct,
.traversal-demo[data-stage="2"][data-network="restricted"]
  .traversal-line.traversal-relay {
  stroke: #91b1ed;
}
.traversal-demo[data-stage="2"][data-network="open"]
  .traversal-packet.traversal-direct,
.traversal-demo[data-stage="2"][data-network="restricted"]
  .traversal-packet.traversal-relay {
  display: block;
}
.traversal-demo[data-stage="2"][data-network="restricted"]
  .traversal-line.traversal-direct {
  stroke: #dfb6b1;
  stroke-dasharray: 4 6;
}
.traversal-demo[data-stage="2"][data-network="restricted"]
  .traversal-turn-node {
  fill: #edf3ff;
  stroke: #8aaef3;
}
.traversal-stages {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}
.traversal-stages button {
  padding: 10px 8px;
  border: 1px solid #e0e7f1;
  border-radius: 7px;
  background: #fafbfd;
  color: #7b8aa0;
  text-align: left;
  font-size: 11px;
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}
.traversal-stages button > span:first-child {
  font: 10px var(--mono);
  padding-top: 2px;
}
.traversal-stages button[aria-pressed="true"] {
  background: #eef3ff;
  color: #2159ee;
  border-color: #aec5f5;
}
.traversal-copy {
  min-height: 150px;
  padding-top: 22px;
}
.traversal-copy h4 {
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: -0.025em;
  margin: 0 0 10px;
}
.traversal-copy p {
  font-size: 12px;
  line-height: 1.85;
}
.traversal-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px 18px;
  border-top: 1px solid #e4eaf4;
  padding-top: 15px;
  margin-top: 10px;
}
.traversal-actions button {
  background: none;
  border: 0;
  padding: 0;
  color: #2159ee;
  font-size: 11px;
}
.traversal-actions button:disabled {
  color: #8491a6;
  cursor: default;
}
.traversal-actions > span {
  font-size: 10px;
  color: #8090a9;
  width: 100%;
}
.traversal-demo .traversal-footnote {
  margin-top: 16px;
  font-size: 10px;
  line-height: 1.8;
  color: #8291a8;
}
html[data-motion="paused"] .traversal-packet {
  animation-play-state: paused;
}
@keyframes traversal-flow {
  to {
    stroke-dashoffset: -912;
  }
}
.connection-summary {
  margin-top: 44px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.connection-summary > h3 {
  margin-bottom: 20px;
  font-size: 26px;
  line-height: 1.3;
}
.connection-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.connection-options article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}
.connection-label {
  font: 11px/1.6 var(--mono);
  color: #476caa;
}
.connection-options h4 {
  margin: 12px 0 10px;
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: -0.025em;
}
.connection-options p {
  font-size: 14px;
  line-height: 1.8;
}
.gui-preview {
  border: 1px solid #cfdbee;
  background: white;
  border-radius: 14px;
  box-shadow: 0 20px 60px #17376208;
  min-width: 0;
  overflow: hidden;
}
.gui-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 25px;
  border-bottom: 1px solid #e1e8f2;
  background: #fbfcff;
}
.gui-brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -1px;
}
.gui-brand > span {
  color: #2159ee;
}
.gui-top .tag {
  font-size: 9px;
  white-space: normal;
  text-align: center;
}
.gui-content {
  padding: 28px;
}
.gui-device,
.gui-service,
.gui-connection {
  display: flex;
  gap: 17px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid #e8edf5;
}
.gui-device {
  padding-top: 0;
}
.gui-device > div,
.gui-service > div,
.gui-connection > div {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.gui-device > .icon {
  color: #6c88b4;
}
.gui-step {
  font: 11px var(--mono);
  color: #8a9bb6;
}
.gui-caption {
  font: 9px/1.7 var(--mono);
  color: #8291aa;
  letter-spacing: 0.045em;
}
.gui-device strong,
.gui-service strong {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.gui-device-note {
  font-size: 11px;
  color: #65829b;
}
.gui-service .tag {
  font-size: 10px;
  white-space: nowrap;
}
.gui-connection code {
  font: 15px var(--mono);
  color: #325f9d;
}
.gui-content > .button {
  width: 100%;
  font-size: 12px;
  padding: 14px;
  border: 0;
  margin-top: 24px;
  white-space: normal;
}
.gui-result {
  font-size: 12px;
  line-height: 1.9;
  color: #7c8ea8;
  padding-top: 18px;
  min-height: 110px;
}
.gui-result[data-connected="true"] {
  color: #325f9d;
}
.gui-footer {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 15px 24px;
  border-top: 1px solid #e4eaf3;
  font-size: 10px;
  line-height: 1.7;
  color: #7f90a9;
  background: #fafcff;
}
.gui-footer .icon {
  width: 15px;
  height: 15px;
}
.gui-scope {
  font-size: 12px;
  line-height: 1.9;
  margin-top: 24px;
  max-width: 450px;
}
@media (max-width: 1100px) {
  .traversal-demo .segmented button {
    white-space: normal;
  }
}
@media (max-width: 750px) {
  .connection-options {
    grid-template-columns: 1fr;
  }
  .traversal-copy {
    min-height: 130px;
  }
  .gui-top {
    padding: 18px;
  }
  .gui-content {
    padding: 22px;
  }
}
@media (max-width: 500px) {
  .traversal-map text {
    font-size: 20px;
  }
  .traversal-map .traversal-small {
    font-size: 18px;
    fill: #627998;
  }
  .traversal-map .traversal-turn-name {
    font-size: 24px;
  }
  .traversal-demo {
    padding: 22px 18px;
  }
  .traversal-demo > h3 {
    font-size: 25px;
  }
  .traversal-copy {
    min-height: 180px;
  }
  .traversal-top {
    align-items: start;
  }
  .traversal-stages button {
    flex-direction: column;
    gap: 4px;
  }
  .gui-content {
    padding: 20px;
  }
  .gui-service {
    flex-wrap: wrap;
  }
  .gui-service .tag {
    margin-left: 30px;
  }
  .gui-caption {
    font-size: 8px;
  }
  .gui-top {
    gap: 10px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .traversal-packet {
    animation: none;
    display: none !important;
  }
}

.industries-section {
  padding-top: 25px;
  padding-bottom: 90px;
}
.industries-section .section-heading {
  align-items: start;
}
.industries-section h2 {
  max-width: 600px;
  font-size: 43px;
}
.industry-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.industry-card {
  padding: 32px;
  background: #fff;
  border: 1px solid #dce4f1;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
}
.industry-energy {
  background: #edf3ff;
  border-color: #c8d9f8;
}
.industry-number {
  font: 10px var(--mono);
  color: #6584b7;
  letter-spacing: 0.06em;
}
.industry-card h3 {
  font-size: 26px;
  line-height: 1.25;
  margin: 20px 0 15px;
}
.industry-card p {
  font-size: 13px;
  line-height: 1.9;
  margin-bottom: 26px;
}
.industry-tags {
  font-size: 11px;
  color: #647fa5;
  border-top: 1px solid #dfe7f4;
  padding-top: 18px;
  margin-top: auto;
}
.industry-bottom {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.industry-bottom p {
  font-size: 11px;
  line-height: 1.8;
  max-width: 690px;
}
.industry-bottom a {
  font-size: 12px;
  flex-shrink: 0;
}
.policy-user > div:nth-child(2) {
  min-width: 0;
}
#policy-name {
  overflow-wrap: anywhere;
}
@media (max-width: 1100px) {
  .navigation {
    gap: 18px;
  }
}
@media (max-width: 750px) {
  .industries-section {
    padding-bottom: 65px;
  }
  .industries-section h2 {
    font-size: 34px;
  }
  .industry-grid {
    grid-template-columns: 1fr;
  }
  .industry-card {
    padding: 26px;
  }
  .industry-card h3 {
    font-size: 25px;
  }
  .industry-bottom {
    align-items: start;
    flex-direction: column;
    gap: 15px;
  }
}

/* Optional analytics consent with no modal overlay. */
.analytics-consent[hidden],
#analytics-preferences[hidden],
.analytics-reload-note[hidden] {
  display: none;
}
.analytics-consent {
  position: fixed;
  z-index: 100;
  bottom: 20px;
  left: 20px;
  width: min(540px, calc(100% - 40px));
  max-height: calc(100dvh - 40px);
  overflow-y: auto;
  padding: 24px;
  border: 1px solid #cbd7e8;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 40px #15203920;
}
.analytics-consent h2 {
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: -0.025em;
  margin-bottom: 10px;
}
.analytics-consent p {
  font-size: 13px;
  line-height: 1.75;
  color: #526782;
}
.analytics-consent .analytics-reload-note {
  margin-top: 10px;
  font-size: 12px;
}
.analytics-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 18px;
}
.analytics-actions button {
  min-height: 44px;
  padding: 10px;
  border: 1px solid #526782;
  border-radius: 7px;
  background: #fff;
  color: #213a60;
  font-size: 13px;
}
.analytics-actions button:hover {
  background: #eef3ff;
  border-color: #2159ee;
}
#analytics-accept {
  background: #26775b;
  border-color: #26775b;
  color: #fff;
}
#analytics-accept:hover {
  background: #1d5e47;
  border-color: #1d5e47;
}
#analytics-preferences {
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  font: inherit;
  text-align: left;
}
#analytics-preferences:hover {
  color: #2159ee;
}
@media (max-width: 500px) {
  .analytics-consent {
    left: 12px;
    bottom: 12px;
    width: calc(100% - 24px);
    padding: 18px;
  }
  .analytics-actions {
    gap: 8px;
  }
}

.industry-link { margin-top: 20px; font-size: 13px; }
