:root {
  --night-950: #050b1a;
  --night-900: #071127;
  --night-850: #0a1731;
  --night-800: #0e1e3d;
  --ink-900: #0c1934;
  --ink-700: #354563;
  --ink-500: #63718c;
  --blue-600: #245ff5;
  --blue-500: #3778ff;
  --blue-400: #6295ff;
  --cyan-400: #3ce0d0;
  --cyan-300: #72f1e5;
  --frost-100: #f3f7ff;
  --frost-50: #f8faff;
  --white: #fff;
  --line: #dce5f4;
  --line-dark: rgba(167, 190, 235, .16);
  --shadow: 0 26px 70px rgba(13, 36, 85, .12);
  --shadow-blue: 0 18px 42px rgba(36, 95, 245, .25);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --font-display: "Bahnschrift SemiCondensed", "Arial Narrow", "HarmonyOS Sans SC", "Microsoft YaHei", sans-serif;
  --font-body: "HarmonyOS Sans SC", "MiSans", "PingFang SC", "Microsoft YaHei", sans-serif;
  --font-data: "DIN Alternate", "Bahnschrift", "Arial Narrow", sans-serif;
  --shell: min(1180px, calc(100% - 48px));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  min-width: 0;
  margin: 0;
  overflow-x: clip;
  color: var(--ink-900);
  background: var(--frost-50);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

img,
svg {
  display: block;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.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 16px;
  border-radius: 10px;
  color: var(--white);
  background: var(--blue-600);
  transform: translateY(-160%);
  transition: transform .2s ease;
}

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

:focus-visible {
  outline: 3px solid rgba(60, 224, 208, .58);
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid var(--line-dark);
  color: var(--white);
  background: rgba(5, 11, 26, .84);
  backdrop-filter: blur(20px);
  transition: background .2s ease, box-shadow .2s ease;
}

.site-header.is-scrolled {
  background: rgba(5, 11, 26, .96);
  box-shadow: 0 12px 35px rgba(0, 0, 0, .18);
}

.header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 76px;
  gap: 34px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: max-content;
  gap: 11px;
}

.brand__mark {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 42px;
  height: 42px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 13px 13px 5px;
  color: var(--white);
  background: linear-gradient(145deg, var(--blue-500), #174bcf);
  box-shadow: 5px 5px 0 rgba(60, 224, 208, .2);
  font-family: var(--font-data);
  font-size: 15px;
  font-weight: 800;
  line-height: 42px;
  text-align: center;
}

.brand__mark span + span {
  border-left: 1px solid rgba(255, 255, 255, .2);
}

.brand__copy {
  display: grid;
  line-height: 1;
  gap: 5px;
}

.brand__copy strong {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: .12em;
}

.brand__copy small {
  color: #93a5ca;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: .12em;
}

.primary-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(16px, 2vw, 29px);
}

.primary-nav a {
  position: relative;
  padding-block: 28px 25px;
  color: #b2bed6;
  font-size: 13px;
  font-weight: 650;
  white-space: nowrap;
  transition: color .2s ease;
}

.primary-nav a::after {
  position: absolute;
  right: 50%;
  bottom: 19px;
  left: 50%;
  height: 2px;
  border-radius: 2px;
  content: "";
  background: var(--cyan-400);
  transition: right .2s ease, left .2s ease;
}

.primary-nav a:hover {
  color: var(--white);
}

.primary-nav a:hover::after {
  right: 12%;
  left: 12%;
}

.nav-toggle {
  display: none;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 780;
  line-height: 1;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.button svg {
  width: 19px;
  margin-left: 9px;
  transition: transform .2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:hover svg {
  transform: translateX(3px);
}

.button--header {
  min-height: 42px;
  padding-inline: 18px;
  color: var(--night-900);
  background: var(--cyan-400);
  box-shadow: 0 10px 26px rgba(60, 224, 208, .18);
}

.button--header:hover {
  background: var(--cyan-300);
}

.eyebrow {
  display: flex;
  align-items: center;
  margin: 0 0 20px;
  color: var(--blue-600);
  font-family: var(--font-data);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
}

.eyebrow::before {
  width: 24px;
  height: 2px;
  margin-right: 10px;
  content: "";
  background: currentColor;
}

.eyebrow--light {
  color: var(--cyan-400);
}

.eyebrow--light::before {
  display: none;
}

.eyebrow__pulse {
  width: 8px;
  height: 8px;
  margin-right: 10px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 6px rgba(60, 224, 208, .1);
  animation: pulse 2.4s ease-out infinite;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 720px;
  overflow: hidden;
  color: var(--white);
  background: var(--night-900);
}

.hero::after {
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 0;
  width: 41%;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--cyan-400));
}

.hero__grid {
  position: absolute;
  z-index: -3;
  inset: 0;
  opacity: .2;
  background-image:
    linear-gradient(rgba(125, 159, 224, .16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(125, 159, 224, .16) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to right, #000 0%, transparent 64%);
}

.hero__glow {
  position: absolute;
  z-index: -2;
  border-radius: 50%;
  filter: blur(1px);
  pointer-events: none;
}

.hero__glow--one {
  top: -300px;
  right: -80px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(55, 120, 255, .28), transparent 68%);
}

.hero__glow--two {
  bottom: -380px;
  left: 25%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(60, 224, 208, .1), transparent 65%);
}

.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(440px, .96fr);
  align-items: center;
  min-height: 644px;
  padding-block: 72px 82px;
  gap: clamp(48px, 6vw, 86px);
}

.hero__copy {
  min-width: 0;
}

.hero h1 {
  max-width: 710px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(52px, 5vw, 74px);
  font-weight: 800;
  letter-spacing: -.045em;
  line-height: .99;
}

.hero h1 span {
  display: block;
}

.hero-title__quiet {
  margin-bottom: 12px;
  color: #aebfe1;
  font-size: .74em;
  letter-spacing: -.025em;
}

.hero-title__strong {
  color: var(--white);
}

.mobile-title-break {
  display: none;
}

.hero-title__strong::after {
  display: block;
  width: 128px;
  height: 5px;
  margin-top: 22px;
  border-radius: 4px;
  content: "";
  background: linear-gradient(90deg, var(--blue-500), var(--cyan-400));
}

.hero__lead {
  max-width: 620px;
  margin: 27px 0 0;
  color: #a9b8d4;
  font-size: 16px;
  line-height: 1.85;
}

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

.button--primary {
  color: var(--white);
  background: var(--blue-500);
  box-shadow: var(--shadow-blue);
}

.button--primary:hover {
  background: #4b84ff;
  box-shadow: 0 22px 48px rgba(36, 95, 245, .34);
}

.button--ghost {
  color: #d7e2f8;
  border-color: rgba(183, 201, 236, .2);
  background: rgba(255, 255, 255, .04);
}

.button--ghost:hover {
  border-color: rgba(60, 224, 208, .46);
  background: rgba(60, 224, 208, .07);
}

.hero__assurance {
  display: flex;
  flex-wrap: wrap;
  margin-top: 31px;
  gap: 10px 18px;
}

.hero__assurance span {
  display: inline-flex;
  align-items: center;
  color: #a4b4d1;
  font-size: 12px;
  gap: 7px;
}

.hero__assurance svg {
  width: 16px;
  color: var(--cyan-400);
}

.mobile-chooser {
  display: none;
}

.activation-console {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(164, 190, 240, .2);
  border-radius: 28px;
  background: rgba(12, 26, 54, .92);
  box-shadow: 0 40px 100px rgba(0, 0, 0, .36);
}

.activation-console::before {
  position: absolute;
  z-index: 2;
  inset: 0 auto 0 0;
  width: 3px;
  content: "";
  background: linear-gradient(var(--blue-500), var(--cyan-400), transparent 88%);
}

.console__topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 74px;
  padding: 15px 20px;
  border-bottom: 1px solid var(--line-dark);
  gap: 16px;
}

.console__identity {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 12px;
}

.console__logo {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  border: 1px solid rgba(60, 224, 208, .32);
  border-radius: 12px;
  color: var(--cyan-400);
  background: rgba(60, 224, 208, .08);
  font-family: var(--font-data);
  font-size: 19px;
  font-weight: 800;
}

.console__identity > span:last-child {
  display: grid;
  min-width: 0;
  gap: 4px;
}

.console__identity strong {
  font-size: 14px;
}

.console__identity small {
  overflow: hidden;
  color: #7185ad;
  font-family: var(--font-data);
  font-size: 9px;
  letter-spacing: .13em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.console__status {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  padding: 8px 10px;
  border: 1px solid rgba(60, 224, 208, .16);
  border-radius: 20px;
  color: #9cebe4;
  background: rgba(60, 224, 208, .06);
  font-size: 10px;
  font-weight: 700;
}

.console__status i {
  width: 6px;
  height: 6px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--cyan-400);
  box-shadow: 0 0 9px var(--cyan-400);
}

.console__body {
  padding: 25px;
}

.console__heading {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.console__heading span {
  color: #7185ad;
  font-size: 11px;
}

.console__heading strong {
  font-family: var(--font-display);
  font-size: 19px;
  letter-spacing: .02em;
}

.console__plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 19px;
  gap: 8px;
}

.console__plans > div {
  position: relative;
  display: grid;
  padding: 13px 12px;
  border: 1px solid var(--line-dark);
  border-radius: 12px;
  color: #8092b6;
  background: rgba(255, 255, 255, .025);
  gap: 5px;
}

.console__plans > div.is-active {
  border-color: rgba(55, 120, 255, .7);
  color: var(--white);
  background: linear-gradient(145deg, rgba(55, 120, 255, .22), rgba(55, 120, 255, .06));
}

.console__plans span {
  font-family: var(--font-data);
  font-size: 12px;
  font-weight: 800;
}

.console__plans strong {
  font-size: 10px;
  font-weight: 550;
}

.console__plans i {
  position: absolute;
  top: -8px;
  right: 6px;
  padding: 3px 6px;
  border-radius: 7px;
  color: var(--night-900);
  background: var(--cyan-400);
  font-size: 8px;
  font-style: normal;
  font-weight: 800;
}

.status-track {
  position: relative;
  display: grid;
  margin: 26px 0 24px;
  padding: 0;
  list-style: none;
  gap: 2px;
}

.status-track::before {
  position: absolute;
  top: 21px;
  bottom: 21px;
  left: 20px;
  width: 1px;
  content: "";
  background: linear-gradient(var(--cyan-400) 0 37%, rgba(142, 166, 211, .18) 37%);
}

.status-track li {
  position: relative;
  display: grid;
  grid-template-columns: 41px 1fr;
  align-items: center;
  min-height: 54px;
  gap: 14px;
}

.status-track li > span {
  z-index: 1;
  display: grid;
  place-items: center;
  width: 41px;
  height: 41px;
  border: 1px solid rgba(141, 164, 208, .18);
  border-radius: 12px;
  color: #687da7;
  background: var(--night-850);
  font-family: var(--font-data);
  font-size: 10px;
  font-weight: 800;
}

.status-track li.is-done > span,
.status-track li.is-active > span {
  border-color: rgba(60, 224, 208, .55);
  color: var(--night-900);
  background: var(--cyan-400);
}

.status-track li.is-active > span {
  color: var(--white);
  border-color: var(--blue-500);
  background: var(--blue-500);
  box-shadow: 0 0 0 5px rgba(55, 120, 255, .1);
}

.status-track li > div {
  display: grid;
  gap: 3px;
}

.status-track strong {
  color: #dce6fa;
  font-size: 12px;
}

.status-track small {
  color: #667ba5;
  font-size: 10px;
}

.console__jump {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 62px;
  padding: 13px 15px;
  border: 1px solid rgba(55, 120, 255, .42);
  border-radius: 14px;
  background: linear-gradient(100deg, rgba(55, 120, 255, .18), rgba(60, 224, 208, .055));
  transition: border-color .2s ease, background .2s ease;
}

.console__jump:hover {
  border-color: rgba(60, 224, 208, .58);
  background: linear-gradient(100deg, rgba(55, 120, 255, .26), rgba(60, 224, 208, .09));
}

.console__jump > span {
  display: grid;
  gap: 4px;
}

.console__jump small {
  color: #7890bd;
  font-size: 9px;
}

.console__jump strong {
  font-size: 12px;
}

.console__jump svg {
  width: 23px;
  color: var(--cyan-400);
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(60, 224, 208, .35); }
  70% { box-shadow: 0 0 0 9px rgba(60, 224, 208, 0); }
  100% { box-shadow: 0 0 0 0 rgba(60, 224, 208, 0); }
}

.trust-rail {
  position: relative;
  z-index: 3;
  border-bottom: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 10px 32px rgba(14, 38, 88, .055);
}

.trust-rail__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  display: flex;
  align-items: center;
  min-width: 0;
  padding: 25px 22px;
  gap: 13px;
}

.trust-item + .trust-item {
  border-left: 1px solid var(--line);
}

.trust-item__icon {
  display: grid;
  place-items: center;
  width: 39px;
  height: 39px;
  flex: 0 0 auto;
  border-radius: 12px;
  color: var(--blue-600);
  background: #edf3ff;
}

.trust-item__icon svg {
  width: 20px;
}

.trust-item > div {
  display: grid;
  min-width: 0;
  gap: 4px;
}

.trust-item strong {
  overflow: hidden;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.trust-item small {
  overflow: hidden;
  color: var(--ink-500);
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.section {
  position: relative;
  padding-block: 110px;
}

.section-heading h2,
.route__intro h2,
.boundary__copy h2,
.contact__copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(39px, 4vw, 56px);
  font-weight: 800;
  letter-spacing: -.038em;
  line-height: 1.1;
}

.section-heading h2 em,
.route__intro h2 em,
.boundary__copy h2 em,
.contact__copy h2 em {
  color: var(--blue-600);
  font-style: normal;
}

.section-heading--split {
  display: grid;
  grid-template-columns: 1fr minmax(310px, .58fr);
  align-items: end;
  margin-bottom: 50px;
  gap: 80px;
}

.section-heading--split > p {
  max-width: 420px;
  margin: 0 0 3px;
  color: var(--ink-500);
  font-size: 14px;
  line-height: 1.9;
}

.plans {
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(36, 95, 245, .035), transparent 38%),
    var(--frost-50);
}

.plans::before {
  position: absolute;
  top: 48px;
  right: calc(50% - 620px);
  color: rgba(36, 95, 245, .035);
  content: "MEMBERSHIP";
  font-family: var(--font-data);
  font-size: 118px;
  font-weight: 900;
  letter-spacing: -.07em;
  pointer-events: none;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 18px;
}

.plan-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 520px;
  flex-direction: column;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 14px 38px rgba(14, 39, 91, .065);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.plan-card:hover {
  z-index: 2;
  border-color: #b6c8eb;
  box-shadow: var(--shadow);
  transform: translateY(-8px);
}

.plan-card::after {
  position: absolute;
  right: -50px;
  bottom: -50px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  content: "";
  background: radial-gradient(circle, rgba(36, 95, 245, .09), transparent 68%);
  pointer-events: none;
}

.plan-card--featured {
  border-color: rgba(55, 120, 255, .55);
  background:
    linear-gradient(180deg, rgba(55, 120, 255, .055), transparent 30%),
    var(--white);
  box-shadow: 0 22px 58px rgba(36, 95, 245, .16);
}

.plan-card--featured::before {
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--blue-500), var(--cyan-400));
}

.plan-card--power {
  color: var(--white);
  border-color: var(--night-800);
  background:
    radial-gradient(circle at 100% 0, rgba(55, 120, 255, .22), transparent 42%),
    var(--night-900);
  box-shadow: 0 22px 55px rgba(5, 11, 26, .2);
}

.plan-card--power::after {
  background: radial-gradient(circle, rgba(60, 224, 208, .14), transparent 68%);
}

.plan-card__badge {
  position: absolute;
  top: 0;
  right: 20px;
  padding: 8px 12px 7px;
  border-radius: 0 0 9px 9px;
  color: var(--white);
  background: var(--blue-600);
  font-family: var(--font-data);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .08em;
}

.plan-card__head {
  display: flex;
  justify-content: space-between;
  min-width: 0;
  gap: 12px;
}

.plan-card__identity {
  display: flex;
  min-width: 0;
  gap: 12px;
}

.plan-card__identity > div {
  min-width: 0;
}

.plan-card__index {
  display: grid;
  place-items: center;
  width: 37px;
  height: 37px;
  flex: 0 0 auto;
  border-radius: 10px;
  color: var(--blue-600);
  background: #edf3ff;
  font-family: var(--font-data);
  font-size: 10px;
  font-weight: 800;
}

.plan-card--power .plan-card__index {
  color: var(--cyan-400);
  background: rgba(60, 224, 208, .1);
}

.plan-card__identity p {
  margin: 0 0 5px;
  color: var(--ink-500);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
}

.plan-card--power .plan-card__identity p {
  color: #8093b8;
}

.plan-card__identity h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -.01em;
  line-height: 1.12;
}

.plan-card__term {
  flex: 0 0 auto;
  padding: 6px 8px;
  border: 1px solid var(--line);
  border-radius: 9px;
  color: var(--ink-500);
  font-family: var(--font-data);
  font-size: 9px;
  font-weight: 700;
}

.plan-card--power .plan-card__term {
  color: #93a6ca;
  border-color: var(--line-dark);
}

.plan-card__price {
  display: flex;
  align-items: baseline;
  margin-top: 34px;
}

.plan-card__price span {
  align-self: flex-start;
  margin: 10px 4px 0 0;
  color: var(--blue-600);
  font-family: var(--font-data);
  font-size: 17px;
  font-weight: 800;
}

.plan-card--power .plan-card__price span {
  color: var(--cyan-400);
}

.plan-card__price strong {
  font-family: var(--font-data);
  font-size: 52px;
  font-weight: 800;
  letter-spacing: -.055em;
  line-height: 1;
}

.plan-card__price small {
  margin-left: 7px;
  color: var(--ink-500);
  font-size: 11px;
}

.plan-card__summary {
  min-height: 51px;
  margin: 20px 0 0;
  color: var(--ink-700);
  font-size: 13px;
  line-height: 1.75;
}

.plan-card--power .plan-card__summary {
  color: #a7b6d3;
}

.plan-card__list {
  display: grid;
  margin: 24px 0 28px;
  padding: 20px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
  gap: 13px;
}

.plan-card--power .plan-card__list {
  border-color: var(--line-dark);
}

.plan-card__list li {
  display: flex;
  align-items: center;
  color: var(--ink-700);
  font-size: 12px;
}

.plan-card--power .plan-card__list li {
  color: #9baccb;
}

.plan-card__list i {
  width: 6px;
  height: 6px;
  margin-right: 10px;
  flex: 0 0 auto;
  border-radius: 2px;
  background: var(--blue-500);
  transform: rotate(45deg);
}

.plan-card--power .plan-card__list i {
  background: var(--cyan-400);
}

.button--plan {
  width: 100%;
  margin-top: auto;
  color: var(--white);
  background: var(--blue-600);
}

.button--plan:hover {
  background: #174fdf;
  box-shadow: var(--shadow-blue);
}

.plan-card--power .button--plan {
  color: var(--night-900);
  background: var(--cyan-400);
}

.plan-card--power .button--plan:hover {
  background: var(--cyan-300);
  box-shadow: 0 18px 40px rgba(60, 224, 208, .2);
}

.plans__note {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin: 24px 0 0;
  color: var(--ink-500);
  font-size: 11px;
  line-height: 1.65;
  text-align: center;
}

.plans__note span {
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  margin-right: 8px;
  flex: 0 0 auto;
  border: 1px solid #b9c7df;
  border-radius: 50%;
  font-family: serif;
  font-weight: 700;
}

.route {
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 10% 20%, rgba(55, 120, 255, .19), transparent 36%),
    var(--night-900);
}

.route::before {
  position: absolute;
  inset: 0;
  opacity: .15;
  content: "";
  background-image: linear-gradient(90deg, rgba(165, 188, 232, .12) 1px, transparent 1px);
  background-size: 84px 100%;
  pointer-events: none;
}

.route__layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(310px, .7fr) minmax(0, 1.3fr);
  gap: 100px;
}

.route__intro {
  position: sticky;
  top: 116px;
  align-self: start;
}

.route__intro h2 em {
  color: var(--cyan-400);
}

.route__intro > p:not(.eyebrow) {
  max-width: 430px;
  margin: 24px 0 30px;
  color: #9cadcc;
  font-size: 14px;
  line-height: 1.9;
}

.button--outline-light {
  color: var(--white);
  border-color: rgba(162, 186, 231, .25);
  background: rgba(255, 255, 255, .035);
}

.button--outline-light:hover {
  border-color: var(--cyan-400);
  background: rgba(60, 224, 208, .08);
}

.route-steps {
  position: relative;
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 14px;
}

.route-steps::before {
  position: absolute;
  top: 20px;
  bottom: 20px;
  left: 35px;
  width: 1px;
  content: "";
  background: linear-gradient(var(--blue-500), var(--cyan-400), rgba(60, 224, 208, .1));
}

.route-steps li {
  position: relative;
  display: grid;
  grid-template-columns: 70px 1fr;
  min-height: 130px;
  padding: 24px 28px 24px 0;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, .035);
  backdrop-filter: blur(10px);
  gap: 23px;
  transition: border-color .2s ease, background .2s ease;
}

.route-steps li:hover {
  border-color: rgba(60, 224, 208, .3);
  background: rgba(60, 224, 208, .05);
}

.route-step__number {
  z-index: 1;
  display: grid;
  place-items: center;
  width: 70px;
  height: 46px;
  align-self: center;
  color: var(--cyan-400);
  background: var(--night-900);
  font-family: var(--font-data);
  font-size: 12px;
  font-weight: 800;
}

.route-steps li > div {
  align-self: center;
}

.route-steps small {
  color: #687fae;
  font-family: var(--font-data);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .18em;
}

.route-steps h3 {
  margin: 6px 0 7px;
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: .01em;
}

.route-steps p {
  margin: 0;
  color: #8fa0c0;
  font-size: 12px;
  line-height: 1.7;
}

.boundary {
  background: var(--white);
}

.boundary__layout {
  display: grid;
  grid-template-columns: minmax(360px, .85fr) minmax(0, 1.15fr);
  align-items: center;
  gap: 100px;
}

.boundary__visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 470px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at center, rgba(55, 120, 255, .1), transparent 45%),
    linear-gradient(145deg, #f8faff, #eef4ff);
}

.boundary__visual::before {
  position: absolute;
  inset: 0;
  opacity: .6;
  content: "";
  background-image:
    linear-gradient(rgba(68, 107, 180, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(68, 107, 180, .07) 1px, transparent 1px);
  background-size: 38px 38px;
}

.boundary-ring {
  position: absolute;
  border: 1px solid rgba(55, 120, 255, .15);
  border-radius: 50%;
}

.boundary-ring--outer {
  width: 350px;
  height: 350px;
  border-style: dashed;
  animation: spin 32s linear infinite;
}

.boundary-ring--inner {
  width: 250px;
  height: 250px;
  border-color: rgba(60, 224, 208, .32);
}

.boundary-shield {
  z-index: 2;
  display: grid;
  place-items: center;
  width: 174px;
  height: 174px;
  border: 1px solid rgba(55, 120, 255, .24);
  border-radius: 36px;
  background: rgba(255, 255, 255, .84);
  box-shadow: 0 30px 65px rgba(36, 95, 245, .14);
  backdrop-filter: blur(8px);
}

.boundary-shield svg {
  width: 54px;
  color: var(--blue-600);
}

.boundary-shield strong {
  margin-top: 2px;
  font-family: var(--font-display);
  font-size: 17px;
}

.boundary-shield span {
  color: var(--ink-500);
  font-size: 10px;
}

.boundary-tag {
  position: absolute;
  z-index: 3;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 20px;
  color: var(--ink-700);
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 12px 30px rgba(20, 48, 104, .1);
  font-size: 10px;
  font-weight: 700;
}

.boundary-tag::before {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 7px;
  border-radius: 50%;
  content: "";
  background: var(--cyan-400);
}

.boundary-tag--one {
  top: 76px;
  left: 36px;
}

.boundary-tag--two {
  top: 115px;
  right: 29px;
}

.boundary-tag--three {
  right: 52px;
  bottom: 59px;
}

.boundary__copy h2 em {
  color: var(--blue-600);
}

.boundary__lead {
  max-width: 570px;
  margin: 24px 0 31px;
  color: var(--ink-500);
  font-size: 14px;
  line-height: 1.9;
}

.boundary__facts {
  display: grid;
  border-top: 1px solid var(--line);
}

.boundary__facts > div {
  display: grid;
  grid-template-columns: 43px 1fr;
  align-items: center;
  min-height: 76px;
  border-bottom: 1px solid var(--line);
  gap: 14px;
}

.boundary__facts > div > span {
  color: var(--blue-600);
  font-family: var(--font-data);
  font-size: 10px;
  font-weight: 800;
}

.boundary__facts p {
  display: grid;
  margin: 0;
  gap: 5px;
}

.boundary__facts strong {
  font-size: 12px;
}

.boundary__facts small {
  color: var(--ink-500);
  font-size: 11px;
}

.faq {
  border-top: 1px solid var(--line);
  background: var(--frost-100);
}

.faq__layout {
  display: grid;
  grid-template-columns: minmax(290px, .72fr) minmax(0, 1.28fr);
  gap: 90px;
}

.faq__heading {
  align-self: start;
}

.faq__heading > p:last-child {
  max-width: 380px;
  margin: 23px 0 0;
  color: var(--ink-500);
  font-size: 14px;
  line-height: 1.8;
}

.faq__list {
  border-top: 1px solid var(--line);
}

.faq__list details {
  border-bottom: 1px solid var(--line);
}

.faq__list summary {
  display: grid;
  grid-template-columns: 1fr 28px;
  align-items: center;
  min-height: 82px;
  padding: 12px 4px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 750;
  list-style: none;
  gap: 22px;
}

.faq__list summary::-webkit-details-marker {
  display: none;
}

.faq__list summary i {
  position: relative;
  width: 28px;
  height: 28px;
  border: 1px solid #c6d3e8;
  border-radius: 9px;
}

.faq__list summary i::before,
.faq__list summary i::after {
  position: absolute;
  top: 13px;
  left: 8px;
  width: 10px;
  height: 1px;
  content: "";
  background: var(--blue-600);
  transition: transform .2s ease;
}

.faq__list summary i::after {
  transform: rotate(90deg);
}

.faq__list details[open] summary i::after {
  transform: rotate(0);
}

.faq__list details[open] summary {
  color: var(--blue-600);
}

.faq__list details p {
  max-width: 650px;
  margin: -5px 44px 25px 4px;
  color: var(--ink-500);
  font-size: 12px;
  line-height: 1.85;
}

.contact {
  overflow: hidden;
  background: var(--frost-100);
  padding-top: 0;
}

.contact__card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  align-items: center;
  min-height: 450px;
  padding: 62px 70px;
  overflow: hidden;
  border: 1px solid rgba(122, 153, 215, .16);
  border-radius: var(--radius-xl);
  color: var(--white);
  background:
    radial-gradient(circle at 80% 20%, rgba(55, 120, 255, .23), transparent 33%),
    var(--night-900);
  box-shadow: 0 30px 80px rgba(5, 11, 26, .2);
  gap: 80px;
}

.contact__card::before {
  position: absolute;
  top: -90px;
  left: 42%;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(60, 224, 208, .13);
  border-radius: 50%;
  content: "";
}

.contact__copy {
  position: relative;
  z-index: 1;
}

.contact__copy h2 em {
  color: var(--cyan-400);
}

.contact__copy > p:not(.eyebrow) {
  max-width: 610px;
  margin: 24px 0 28px;
  color: #9eafcd;
  font-size: 14px;
  line-height: 1.9;
}

.contact__copy ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 12px 22px;
}

.contact__copy li {
  display: inline-flex;
  align-items: center;
  color: #c8d5ec;
  font-size: 11px;
}

.contact__copy li span {
  margin-right: 7px;
  color: var(--cyan-400);
  font-family: var(--font-data);
  font-size: 9px;
  font-weight: 800;
}

.contact-qr {
  position: relative;
  z-index: 1;
  margin: 0;
}

.contact-qr__frame {
  display: grid;
  place-items: center;
  width: 250px;
  height: 250px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .17);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 25px 55px rgba(0, 0, 0, .25);
}

.contact-qr__image {
  display: block;
  width: 141px;
  max-width: 100%;
  height: auto;
  border-radius: 0;
  background: var(--white);
  object-fit: contain;
}

.contact-qr__image[hidden] {
  display: none !important;
}

.contact-qr__placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  border: 1px dashed #becbe0;
  border-radius: 14px;
  color: var(--ink-700);
  background:
    linear-gradient(135deg, rgba(36, 95, 245, .03), transparent),
    var(--frost-50);
  text-align: center;
}

.contact-qr__placeholder[hidden] {
  display: none;
}

.contact-qr__placeholder svg {
  width: 54px;
  color: #a4b4cf;
}

.contact-qr__placeholder strong {
  margin-top: 6px;
  font-size: 12px;
}

.contact-qr__placeholder span {
  color: var(--ink-500);
  font-size: 10px;
}

.contact-qr figcaption {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 15px;
  color: #8fa2c6;
  font-size: 10px;
}

.contact-qr figcaption i {
  width: 6px;
  height: 6px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--cyan-400);
}

.wechat-float {
  position: fixed;
  z-index: 60;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
}

.wechat-float__trigger {
  display: grid;
  width: 189px;
  padding: 12px;
  border: 1px solid rgba(96, 228, 215, .34);
  border-radius: 20px 6px 20px 20px;
  color: var(--white);
  background: rgba(6, 17, 42, .96);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .3), 0 0 0 1px rgba(42, 104, 243, .08) inset;
  backdrop-filter: blur(18px);
  cursor: pointer;
  gap: 9px;
  transition: border-color .2s ease, box-shadow .2s ease, translate .2s ease;
}

.wechat-float__trigger:hover {
  border-color: rgba(96, 228, 215, .7);
  box-shadow: 0 28px 68px rgba(0, 0, 0, .36), 0 0 26px rgba(60, 224, 208, .12);
  translate: 0 -3px;
}

.wechat-float__trigger:focus-visible,
.mobile-dock__wechat:focus-visible,
.wechat-dialog__close:focus-visible,
.wechat-dialog__link:focus-visible {
  outline: 3px solid rgba(60, 224, 208, .8);
  outline-offset: 3px;
}

.wechat-float__title {
  display: flex;
  align-items: center;
  font-size: 13px;
  gap: 7px;
}

.wechat-float__title i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan-400);
  box-shadow: 0 0 12px rgba(60, 224, 208, .75);
}

.wechat-float__qr,
.wechat-dialog__qr {
  display: grid;
  place-items: center;
  padding: 10px;
  border-radius: 13px;
  background: var(--white);
}

.wechat-float__qr img,
.wechat-dialog__qr img {
  display: block;
  width: 141px;
  max-width: 100%;
  height: auto;
  border-radius: 0;
  background: var(--white);
  object-fit: contain;
}

.wechat-float__hint {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #aabbd8;
  font-size: 10px;
}

.wechat-float__hint b {
  color: var(--cyan-400);
  font-weight: 700;
}

.wechat-dialog {
  width: min(380px, calc(100vw - 32px));
  max-width: none;
  margin: auto;
  padding: 0;
  border: 0;
  color: var(--ink-900);
  background: transparent;
  overflow: visible;
}

.wechat-dialog:not([open]) {
  display: none;
}

.wechat-dialog::backdrop {
  background: rgba(2, 8, 22, .76);
  backdrop-filter: blur(8px);
}

.wechat-dialog__surface {
  position: relative;
  display: grid;
  justify-items: center;
  padding: 34px 30px 30px;
  border: 1px solid rgba(113, 143, 202, .28);
  border-radius: 26px;
  background: var(--white);
  box-shadow: 0 34px 90px rgba(0, 0, 0, .42);
  text-align: center;
}

.wechat-dialog__surface .eyebrow {
  margin-bottom: 10px;
}

.wechat-dialog__surface h2 {
  margin: 0;
  font-size: 28px;
  letter-spacing: -.03em;
}

.wechat-dialog__surface > p:not(.eyebrow) {
  max-width: 290px;
  margin: 18px 0 0;
  color: var(--ink-500);
  font-size: 12px;
  line-height: 1.8;
}

.wechat-dialog__qr {
  width: 177px;
  min-height: 179px;
  margin-top: 24px;
  border: 1px solid var(--line);
  box-shadow: 0 16px 38px rgba(24, 62, 136, .14);
}

.wechat-dialog__close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink-700);
  background: var(--frost-50);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.wechat-dialog__link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 46px;
  margin-top: 20px;
  padding-inline: 22px;
  border-radius: 12px;
  color: var(--night-900);
  background: var(--cyan-400);
  font-size: 12px;
  font-weight: 800;
}

body.qr-dialog-open {
  overflow: hidden;
}

.site-footer {
  color: #95a7c8;
  background: var(--night-950);
}

.footer__top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 125px;
  gap: 55px;
}

.brand--footer {
  color: var(--white);
}

.footer__top > p {
  margin: 0;
  color: #7185a9;
  font-size: 11px;
}

.footer__top nav {
  display: flex;
  gap: 25px;
}

.footer__top nav a {
  font-size: 11px;
  transition: color .2s ease;
}

.footer__top nav a:hover {
  color: var(--cyan-400);
}

.footer__bottom {
  display: grid;
  grid-template-columns: auto 1fr;
  min-height: 64px;
  align-items: center;
  border-top: 1px solid rgba(142, 163, 202, .12);
  font-size: 9px;
  gap: 30px;
}

.footer__bottom > span:last-child {
  justify-self: end;
  max-width: 720px;
  line-height: 1.65;
  text-align: right;
}

.mobile-dock {
  display: none;
}

.mobile-dock__wechat {
  display: none;
}

.reveal-ready .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease, transform .65s cubic-bezier(.2, .7, .2, 1);
}

.reveal-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

@media (max-width: 1390px) {
  .wechat-float {
    right: 10px;
  }

  .wechat-float__trigger {
    width: 106px;
    padding: 8px;
    border-radius: 16px 5px 16px 16px;
    gap: 7px;
  }

  .wechat-float__title {
    justify-content: center;
    font-size: 11px;
  }

  .wechat-float__qr {
    padding: 6px;
    border-radius: 10px;
  }

  .wechat-float__qr img {
    width: 82px;
  }

  .wechat-float__hint {
    display: grid;
    justify-content: center;
    text-align: center;
    font-size: 9px;
    gap: 2px;
  }
}

@media (max-width: 1080px) {
  :root {
    --shell: min(940px, calc(100% - 40px));
  }

  .header__inner {
    gap: 20px;
  }

  .primary-nav {
    gap: 16px;
  }

  .primary-nav a {
    font-size: 12px;
  }

  .hero__inner {
    grid-template-columns: minmax(0, 1fr) minmax(400px, .9fr);
    gap: 42px;
  }

  .hero h1 {
    font-size: clamp(48px, 5.6vw, 62px);
  }

  .trust-item {
    padding-inline: 15px;
  }

  .trust-item__icon {
    width: 35px;
    height: 35px;
  }

  .plan-card {
    padding: 24px 21px;
  }

  .plan-card__identity h3 {
    font-size: 18px;
  }

  .route__layout,
  .boundary__layout {
    gap: 60px;
  }

  .contact__card {
    padding-inline: 50px;
    gap: 55px;
  }
}

@media (max-width: 900px) {
  html {
    scroll-padding-top: 72px;
  }

  .header__inner {
    grid-template-columns: auto 1fr auto;
    min-height: 68px;
  }

  .button--header {
    display: none;
  }

  .nav-toggle {
    position: relative;
    z-index: 3;
    display: grid;
    grid-column: 3;
    place-content: center;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid rgba(171, 193, 235, .18);
    border-radius: 12px;
    color: var(--white);
    background: rgba(255, 255, 255, .04);
    gap: 6px;
  }

  .nav-toggle__line {
    display: block;
    width: 19px;
    height: 1px;
    background: currentColor;
    transition: transform .2s ease;
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle__line:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(2) {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .primary-nav {
    position: absolute;
    z-index: 2;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: grid;
    padding: 16px max(20px, calc((100% - var(--shell)) / 2)) 22px;
    border-bottom: 1px solid var(--line-dark);
    background: rgba(5, 11, 26, .98);
    box-shadow: 0 20px 42px rgba(0, 0, 0, .28);
    opacity: 0;
    transform: translateY(-10px);
    visibility: hidden;
    pointer-events: none;
    gap: 0;
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
  }

  .primary-nav.is-open {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
  }

  .primary-nav a {
    padding: 14px 4px;
    border-bottom: 1px solid rgba(158, 183, 228, .1);
    color: #c3d0e8;
    font-size: 14px;
  }

  .primary-nav a::after {
    display: none;
  }

  .hero {
    min-height: 0;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    padding-block: 74px 82px;
  }

  .hero__copy {
    max-width: 720px;
  }

  .activation-console {
    width: min(550px, 100%);
  }

  .trust-rail__inner {
    grid-template-columns: 1fr 1fr;
  }

  .trust-item {
    padding: 20px;
  }

  .trust-item:nth-child(3) {
    border-left: 0;
  }

  .trust-item:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .section {
    padding-block: 88px;
  }

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

  .plans-grid {
    grid-template-columns: 1fr;
    max-width: 680px;
    margin-inline: auto;
  }

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

  .plan-card__summary {
    min-height: 0;
  }

  .route__layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .route__intro {
    position: static;
  }

  .route-steps {
    max-width: 720px;
  }

  .boundary__layout {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .boundary__visual {
    min-height: 420px;
  }

  .faq__layout {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .contact__card {
    grid-template-columns: 1fr 240px;
    padding: 48px 42px;
    gap: 40px;
  }

  .contact-qr__frame {
    width: 220px;
    height: 220px;
  }

  .footer__top {
    grid-template-columns: auto 1fr;
    padding-block: 34px;
    gap: 20px 45px;
  }

  .footer__top > p {
    text-align: right;
  }

  .footer__top nav {
    grid-column: 1 / -1;
  }
}

@media (max-width: 700px) {
  :root {
    --shell: calc(100% - 32px);
  }

  .section {
    padding-block: 72px;
  }

  .section-heading h2,
  .route__intro h2,
  .boundary__copy h2,
  .contact__copy h2 {
    font-size: clamp(34px, 9vw, 43px);
  }

  .contact {
    padding-top: 0;
  }

  .contact__card {
    grid-template-columns: 1fr;
    padding: 42px 28px;
    gap: 38px;
  }

  .contact-qr {
    justify-self: center;
  }

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

  .footer__top > p {
    text-align: left;
  }

  .footer__top nav {
    grid-column: auto;
    flex-wrap: wrap;
  }

  .footer__bottom {
    grid-template-columns: 1fr;
    padding-block: 20px 104px;
    gap: 10px;
  }

  .footer__bottom > span:last-child {
    justify-self: start;
    text-align: left;
  }

  .mobile-dock {
    position: fixed;
    z-index: 70;
    right: 12px;
    bottom: max(10px, env(safe-area-inset-bottom));
    left: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 66px;
    padding: 9px;
    border: 1px solid rgba(170, 193, 235, .19);
    border-radius: 18px;
    color: var(--white);
    background: rgba(5, 11, 26, .94);
    box-shadow: 0 18px 46px rgba(0, 0, 0, .34);
    backdrop-filter: blur(18px);
    gap: 8px;
  }

  .wechat-float {
    display: none;
  }

  .mobile-dock__wechat {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    padding: 4px;
    flex: 0 0 auto;
    overflow: hidden;
    border: 1px solid rgba(60, 224, 208, .4);
    border-radius: 12px;
    background: var(--white);
    cursor: pointer;
  }

  .mobile-dock__wechat img {
    display: block;
    width: 38px;
    max-width: none;
    height: auto;
    border-radius: 0;
    object-fit: contain;
  }

  .mobile-dock > span {
    display: grid;
    flex: 1 1 auto;
    min-width: 0;
    gap: 4px;
  }

  .mobile-dock small {
    color: #8fa2c5;
    font-size: 9px;
  }

  .mobile-dock strong {
    overflow: hidden;
    font-size: 12px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-dock a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 46px;
    padding-inline: 17px;
    flex: 0 0 auto;
    border-radius: 12px;
    color: var(--night-900);
    background: var(--cyan-400);
    font-size: 12px;
    font-weight: 800;
  }

  .mobile-dock svg {
    width: 16px;
    margin-left: 6px;
  }
}

@media (max-width: 620px) {
  .brand__mark {
    width: 38px;
    height: 38px;
    border-radius: 11px 11px 4px;
    font-size: 13px;
    line-height: 38px;
  }

  .brand__copy strong {
    font-size: 17px;
  }

  .hero {
    min-height: 660px;
  }

  .hero__inner {
    display: block;
    min-height: 0;
    padding-block: 50px 38px;
  }

  .hero h1 {
    font-size: clamp(39px, 11.6vw, 49px);
    line-height: 1.02;
  }

  .hero-title__quiet {
    margin-bottom: 9px;
  }

  .mobile-title-break {
    display: block;
  }

  .hero-title__strong::after {
    width: 88px;
    height: 4px;
    margin-top: 16px;
  }

  .hero__lead {
    margin-top: 20px;
    font-size: 13px;
    line-height: 1.72;
  }

  .hero__actions {
    margin-top: 23px;
  }

  .hero__actions .button {
    min-height: 48px;
    padding-inline: 17px;
    font-size: 12px;
  }

  .hero__assurance {
    margin-top: 21px;
    gap: 8px 13px;
  }

  .hero__assurance span {
    font-size: 10px;
  }

  .activation-console {
    display: none;
  }

  .mobile-chooser {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    min-height: 68px;
    margin-top: 23px;
    padding: 12px 15px;
    border: 1px solid rgba(60, 224, 208, .24);
    border-radius: 15px;
    background: linear-gradient(100deg, rgba(55, 120, 255, .17), rgba(60, 224, 208, .07));
    gap: 12px;
  }

  .mobile-chooser > span:first-child {
    display: grid;
    min-width: 0;
    gap: 4px;
  }

  .mobile-chooser small {
    overflow: hidden;
    color: #7890ba;
    font-family: var(--font-data);
    font-size: 8px;
    letter-spacing: .1em;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-chooser strong {
    font-size: 12px;
  }

  .mobile-chooser > span:last-child {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    color: var(--cyan-400);
    font-family: var(--font-data);
    font-size: 12px;
    font-weight: 800;
  }

  .mobile-chooser svg {
    width: 17px;
    margin-left: 5px;
  }

  .trust-item {
    align-items: flex-start;
    padding: 17px 13px;
    gap: 10px;
  }

  .trust-item__icon {
    width: 31px;
    height: 31px;
    border-radius: 9px;
  }

  .trust-item__icon svg {
    width: 17px;
  }

  .trust-item strong {
    font-size: 10px;
  }

  .trust-item small {
    font-size: 9px;
  }

  .plans::before {
    display: none;
  }

  .section-heading--split {
    margin-bottom: 31px;
  }

  .section-heading--split > p {
    font-size: 12px;
    line-height: 1.75;
  }

  .plan-card {
    padding: 24px 20px;
    border-radius: 18px;
  }

  .plan-card__identity h3 {
    max-width: 190px;
    font-size: 18px;
  }

  .plan-card__price {
    margin-top: 28px;
  }

  .plan-card__price strong {
    font-size: 47px;
  }

  .plan-card__summary {
    font-size: 12px;
  }

  .route::before {
    background-size: 52px 100%;
  }

  .route-steps li {
    grid-template-columns: 52px 1fr;
    min-height: 122px;
    padding: 19px 16px 19px 0;
    gap: 14px;
  }

  .route-steps::before {
    left: 26px;
  }

  .route-step__number {
    width: 52px;
  }

  .route-steps h3 {
    font-size: 17px;
  }

  .boundary__visual {
    min-height: 350px;
  }

  .boundary-ring--outer {
    width: 290px;
    height: 290px;
  }

  .boundary-ring--inner {
    width: 210px;
    height: 210px;
  }

  .boundary-shield {
    width: 148px;
    height: 148px;
    border-radius: 30px;
  }

  .boundary-tag--one {
    top: 42px;
    left: 19px;
  }

  .boundary-tag--two {
    top: 84px;
    right: 14px;
  }

  .boundary-tag--three {
    right: 26px;
    bottom: 38px;
  }

  .faq__list summary {
    min-height: 74px;
    font-size: 12px;
  }

  .faq__list details p {
    margin-right: 32px;
    font-size: 11px;
  }
}

@media (max-width: 430px) {
  .hero {
    min-height: 650px;
  }

  .eyebrow {
    margin-bottom: 16px;
    font-size: 9px;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
  }

  .hero__actions .button {
    padding-inline: 10px;
  }

  .hero__actions .button svg {
    display: none;
  }

  .hero__assurance span {
    width: calc(50% - 7px);
  }

  .trust-item > div {
    overflow: hidden;
  }

  .plan-card__term {
    display: none;
  }

  .boundary__facts > div {
    grid-template-columns: 34px 1fr;
  }

  .contact__card {
    padding-inline: 22px;
    border-radius: 22px;
  }

  .contact-qr__frame {
    width: min(220px, 100%);
    height: auto;
    aspect-ratio: 1;
  }

  .footer__top nav {
    gap: 18px;
  }

  .mobile-dock {
    left: 8px;
    right: 8px;
  }

  .mobile-dock a {
    padding-inline: 12px;
  }

  .mobile-dock__wechat {
    width: 46px;
    height: 46px;
  }

  .mobile-dock__wechat img {
    width: 36px;
  }

  .wechat-dialog__surface {
    padding: 32px 20px 24px;
    border-radius: 22px;
  }

  .wechat-dialog__surface h2 {
    font-size: 25px;
  }
}

@media (max-width: 350px) {
  .mobile-dock > span {
    display: none;
  }

  .mobile-dock a {
    flex: 1 1 auto;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .reveal-ready .reveal {
    opacity: 1;
    transform: none;
  }
}
