@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("./fonts/manrope-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("./fonts/manrope-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  color-scheme: light;
  --bg: #f6f8fb;
  --surface: #ffffff;
  --surface-soft: #eef4f8;
  --text: #17212b;
  --muted: #5b6876;
  --line: #d9e2ea;
  --brand: #0b4f71;
  --brand-dark: #07354c;
  --green: #15864b;
  --blue: #1d4e89;
  --red: #9f2d2d;
}

[data-theme="dark"] {
  color-scheme: dark;
  --bg: #07151d;
  --surface: #0c202b;
  --surface-soft: #123040;
  --text: #eef7fb;
  --muted: #a8bac6;
  --line: #1e4656;
  --brand: #5ec8f0;
  --brand-dark: #b8ecff;
  --green: #39d98a;
  --blue: #71b8ff;
  --red: #ff817d;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    color-scheme: dark;
    --bg: #07151d;
    --surface: #0c202b;
    --surface-soft: #123040;
    --text: #eef7fb;
    --muted: #a8bac6;
    --line: #1e4656;
    --brand: #5ec8f0;
    --brand-dark: #b8ecff;
    --green: #39d98a;
    --blue: #71b8ff;
    --red: #ff817d;
  }
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

a {
  color: var(--brand);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.topbar {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.nav {
  max-width: 1120px;
  margin: 0 auto;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  font-weight: 800;
  color: var(--brand-dark);
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 14px;
}

.theme-toggle {
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-soft);
  color: var(--text);
  cursor: pointer;
  font: inherit;
  font-weight: 700;
}

.theme-toggle:hover {
  border-color: var(--brand);
}

.public-language-toggle {
  min-width: 44px;
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--text);
  background: color-mix(in srgb, var(--surface) 82%, transparent);
  font: inherit;
  font-weight: 800;
  letter-spacing: 0.04em;
  cursor: pointer;
}

.public-language-toggle:hover,
.public-language-toggle:focus-visible {
  border-color: var(--brand);
  outline: none;
}

.hero {
  max-width: 1120px;
  margin: 0 auto;
  padding: 56px 20px 34px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: center;
}

.hero h1 {
  margin: 0 0 16px;
  font-size: 42px;
  line-height: 1.1;
  letter-spacing: 0;
}

.hero p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 18px;
}

.official-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.hero-logo {
  width: 76px;
  height: 76px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid var(--line);
}

.panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
}

.hero-card {
  background: linear-gradient(160deg, #0b2634, #0c4e58);
  color: #ffffff;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-card p,
.hero-card .muted {
  color: #d6eef2;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 28px 20px 56px;
}

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

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

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
}

.card h2,
.card h3 {
  margin-top: 0;
}

.muted {
  color: var(--muted);
}

.badge {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  background: var(--surface-soft);
  color: var(--brand-dark);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 8px;
  font-weight: 700;
  background: var(--brand);
  color: #ffffff;
}

.button.secondary {
  background: var(--surface);
  color: var(--brand);
  border: 1px solid var(--line);
}

.button:hover {
  text-decoration: none;
}

.table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.table th,
.table td {
  padding: 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.table th {
  background: var(--surface-soft);
}

.notice {
  border-left: 4px solid var(--blue);
  background: var(--surface-soft);
  padding: 14px 16px;
  border-radius: 8px;
}

.success {
  color: var(--green);
  font-weight: 700;
}

.danger {
  color: var(--red);
  font-weight: 700;
}

.footer {
  border-top: 1px solid var(--line);
  background: var(--surface);
  color: var(--muted);
  padding: 24px 20px;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  text-align: center;
}

.support-widget {
  position: fixed;
  right: 24px;
  bottom: 18px;
  z-index: 20;
}

.support-toggle {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  color: var(--brand);
  cursor: pointer;
  font-size: 0;
  font-weight: 800;
  box-shadow: 0 10px 28px rgba(7, 21, 29, 0.14);
  backdrop-filter: blur(10px);
}

.support-toggle::before {
  content: "";
  width: 20px;
  height: 20px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 4h16a2 2 0 0 1 2 2v9a2 2 0 0 1-2 2H9.3L4.8 20.6A.5.5 0 0 1 4 20.2V6a2 2 0 0 1 2-2Zm2 2v11.1L8.6 15H20V6H6Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 4h16a2 2 0 0 1 2 2v9a2 2 0 0 1-2 2H9.3L4.8 20.6A.5.5 0 0 1 4 20.2V6a2 2 0 0 1 2-2Zm2 2v11.1L8.6 15H20V6H6Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.support-toggle:hover,
.support-toggle[aria-expanded="true"] {
  border-color: var(--brand);
  background: var(--surface-soft);
}

.support-panel {
  position: absolute;
  right: 0;
  bottom: 56px;
  width: min(320px, calc(100vw - 44px));
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 16px 40px rgba(7, 21, 29, 0.22);
}

.support-panel[hidden] {
  display: none;
}

.support-panel h2 {
  margin: 0 0 8px;
  font-size: 20px;
}

.support-panel p {
  margin: 0 0 14px;
  color: var(--muted);
}

.support-actions {
  display: grid;
  gap: 10px;
}

.support-actions .button {
  width: 100%;
}

.support-form {
  display: grid;
  gap: 10px;
}

.support-form input,
.support-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-soft);
  color: var(--text);
  font: inherit;
  padding: 10px 12px;
}

.support-form textarea {
  min-height: 96px;
  resize: vertical;
}

.support-status {
  min-height: 22px;
  margin: 0;
  font-size: 14px;
}

.support-status.success {
  color: var(--green);
}

.support-status.error {
  color: var(--red);
}

@media (max-width: 760px) {
  .hero,
  .grid,
  .grid.two {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 34px;
  }

  .hero h1 {
    font-size: 32px;
  }

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

  .support-widget {
    right: 14px;
    bottom: 16px;
  }
}

/* Public Wi-Fi Hub landing */

.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;
}

body.landing {
  --landing-ink: #071b3a;
  --landing-blue: #147efb;
  --landing-violet: #6558f5;
  --landing-cyan: #2cd4e8;
  --landing-line: rgba(255, 255, 255, 0.28);
  color: var(--landing-ink);
  background: #f6fbff;
  font-family: "Manrope", "Segoe UI", Arial, Helvetica, sans-serif;
  line-height: 1.45;
  overflow-x: hidden;
}

.landing main {
  flex: 1;
}

.landing-topbar {
  position: absolute;
  inset: 0 0 auto;
  z-index: 30;
  border-bottom: 1px solid rgba(255, 255, 255, 0.56);
  background: rgba(244, 250, 255, 0.86);
  box-shadow: 0 8px 40px rgba(12, 39, 70, 0.06);
  backdrop-filter: blur(18px) saturate(145%);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
}

.landing-nav {
  width: min(100% - 40px, 1480px);
  max-width: none;
  min-height: 78px;
  padding: 12px 0;
}

.landing-brand {
  gap: 12px;
  color: var(--landing-ink);
  font-size: 20px;
  letter-spacing: -0.025em;
}

.landing-brand:hover,
.landing-links a:hover,
.nav-download:hover,
.hero-button:hover,
.hero-text-link:hover {
  text-decoration: none;
}

.brand-symbol {
  width: 34px;
  height: 28px;
  overflow: visible;
  color: var(--landing-blue);
}

.brand-symbol path,
.nav-download svg path,
.hero-button svg path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-symbol circle {
  fill: currentColor;
}

.landing-menu {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3.2vw, 56px);
}

.language-picker {
  position: relative;
  flex: 0 0 auto;
}

.language-toggle {
  min-width: 70px;
  min-height: 42px;
  padding: 0 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid rgba(10, 45, 85, 0.12);
  border-radius: 12px;
  color: var(--landing-ink);
  background: rgba(255, 255, 255, 0.5);
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.language-globe {
  width: 17px;
  height: 17px;
  display: inline-grid;
  place-items: center;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  font-size: 0;
}

.language-globe::before {
  content: "";
  width: 5px;
  height: 13px;
  border-right: 1px solid currentColor;
  border-left: 1px solid currentColor;
  border-radius: 50%;
}

.language-chevron {
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.language-menu {
  position: absolute;
  z-index: 40;
  top: calc(100% + 8px);
  right: 0;
  width: 148px;
  padding: 7px;
  border: 1px solid rgba(16, 55, 94, 0.12);
  border-radius: 14px;
  background: rgba(250, 253, 255, 0.98);
  box-shadow: 0 20px 44px rgba(9, 31, 57, 0.16);
}

.language-menu[hidden] {
  display: none;
}

.language-menu button {
  width: 100%;
  padding: 10px 11px;
  border: 0;
  border-radius: 9px;
  color: var(--landing-ink);
  background: transparent;
  font: inherit;
  font-size: 13px;
  font-weight: 650;
  text-align: left;
  cursor: pointer;
}

.language-menu button:hover,
.language-menu button[data-current] {
  background: rgba(32, 126, 248, 0.1);
}

.landing-links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.1vw, 34px);
  font-size: 14px;
  font-weight: 700;
}

.landing-links a {
  color: var(--landing-ink);
}

.landing-links a::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  margin: 5px auto -7px;
  border-radius: 999px;
  background: var(--landing-blue);
  transition: width 180ms ease;
}

.landing-links a:hover::after,
.landing-links a:focus-visible::after {
  width: 100%;
}

.nav-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 13px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--landing-blue), var(--landing-violet));
  box-shadow: 0 14px 32px rgba(40, 103, 244, 0.24);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.nav-download:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(40, 103, 244, 0.3);
}

.nav-download svg,
.hero-button svg {
  width: 20px;
  height: 20px;
}

.landing-menu-toggle {
  position: relative;
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.66);
  color: var(--landing-ink);
}

.landing-menu-toggle > span:not(.sr-only) {
  position: absolute;
  left: 10px;
  display: block;
  width: 24px;
  height: 2px;
  margin: 0;
  border-radius: 999px;
  background: currentColor;
  transition: top 180ms ease, transform 180ms ease, opacity 180ms ease;
}

.landing-menu-toggle > span:nth-child(1) {
  top: 14px;
}

.landing-menu-toggle > span:nth-child(2) {
  top: 21px;
}

.landing-menu-toggle > span:nth-child(3) {
  top: 28px;
}

.landing-hero {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  color: #ffffff;
  background: #09182a url("./hero-0619-poster.jpg") center / cover no-repeat;
}

.hero-video,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  z-index: -3;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  filter: saturate(0.96) contrast(1.03);
  transition: opacity 650ms ease;
}

.landing-hero[data-video-state="playing"] .hero-video,
.landing-hero[data-video-state="buffering"] .hero-video {
  opacity: 1;
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(4, 15, 29, 0.64) 0%, rgba(4, 18, 34, 0.43) 34%, rgba(5, 18, 31, 0.08) 68%, rgba(5, 18, 31, 0.18) 100%),
    linear-gradient(0deg, rgba(4, 14, 25, 0.62) 0%, transparent 42%, rgba(3, 11, 23, 0.12) 100%);
}

.landing-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 34%, rgba(35, 144, 255, 0.18), transparent 30%),
    radial-gradient(circle at 88% 52%, rgba(94, 82, 246, 0.16), transparent 34%);
}

.landing-hero-inner {
  position: relative;
  width: min(100% - 48px, 1480px);
  min-height: 100vh;
  min-height: 100svh;
  margin: 0 auto;
  padding: clamp(112px, 14vh, 156px) 0 28px;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto auto;
  gap: clamp(12px, 2vh, 22px);
}

.hero-billboard {
  align-self: center;
  width: min(570px, 46vw);
  padding: clamp(22px, 2.4vw, 32px) clamp(18px, 2.2vw, 30px);
  border: 0;
  border-radius: 26px;
  background: linear-gradient(100deg, rgba(6, 22, 39, 0.3), rgba(6, 22, 39, 0.14) 70%, rgba(6, 22, 39, 0));
  box-shadow: none;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: #e9f8ff;
  font-size: 14px;
  font-weight: 650;
  letter-spacing: 0.02em;
}

.kicker-spark {
  width: 26px;
  height: 26px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 9px;
  background:
    radial-gradient(circle, #ffffff 0 11%, transparent 13%),
    conic-gradient(from 45deg, transparent 0 10%, #70d9ff 11% 15%, transparent 16% 35%, #8378ff 36% 40%, transparent 41% 100%);
  box-shadow: inset 0 0 14px rgba(80, 191, 255, 0.24);
}

.hero-billboard h1 {
  margin: 0;
  text-shadow: 0 2px 24px rgba(1, 10, 22, 0.28);
}

.hero-billboard h1 span {
  display: block;
  color: #aaf3ff;
  font-size: clamp(54px, 5vw, 78px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.045em;
}

.hero-billboard h1 strong {
  display: block;
  max-width: 15ch;
  margin-top: 16px;
  font-size: clamp(31px, 2.75vw, 44px);
  font-weight: 650;
  line-height: 1.14;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.hero-lead {
  max-width: 590px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(15px, 1.12vw, 18px);
  font-weight: 450;
  line-height: 1.66;
  text-shadow: 0 1px 18px rgba(1, 10, 22, 0.34);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 26px;
  flex-wrap: wrap;
}

.hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 54px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 15px;
  font-size: 15px;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

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

.hero-button-primary {
  color: #ffffff;
  background: linear-gradient(135deg, #148dff, #6758f5);
  box-shadow: 0 18px 36px rgba(35, 103, 246, 0.26);
}

.hero-button-primary:hover {
  color: #ffffff;
  box-shadow: 0 22px 42px rgba(35, 103, 246, 0.34);
}

.hero-button-secondary,
.hero-button-light {
  border-color: rgba(255, 255, 255, 0.34);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
}

.hero-button-secondary:hover,
.hero-button-light:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.2);
}

.hero-text-link {
  padding: 14px 8px;
  color: #d9f7ff;
  font-size: 14px;
  font-weight: 650;
}

.hero-sound-toggle {
  position: absolute;
  z-index: 4;
  top: 92px;
  right: 0;
  min-height: 42px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 13px;
  color: #ffffff;
  background: rgba(5, 18, 32, 0.24);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font: inherit;
  font-size: 13px;
  font-weight: 650;
  cursor: pointer;
  isolation: isolate;
  transition:
    opacity 240ms ease,
    visibility 240ms ease,
    transform 240ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.hero-sound-toggle[data-sound-hidden] {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-6px) scale(0.96);
}

.hero-sound-toggle::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -2px;
  border: 1px solid rgba(125, 218, 255, 0.72);
  border-radius: 15px;
  opacity: 0;
  pointer-events: none;
}

.hero-sound-toggle[data-sound-pulse]::before {
  animation: sound-pulse-ring 1.35s ease-out 3;
}

@keyframes sound-pulse-ring {
  0% {
    opacity: 0;
    transform: scale(0.96);
  }

  14% {
    opacity: 0.52;
  }

  100% {
    opacity: 0;
    transform: scale(1.42);
  }
}

.sound-icon {
  position: relative;
  width: 17px;
  height: 17px;
  display: inline-block;
}

.sound-icon::before {
  content: "";
  position: absolute;
  inset: 5px 9px 5px 0;
  border-radius: 2px;
  background: currentColor;
  box-shadow: 5px 0 0 -1px currentColor;
}

.sound-icon::after {
  content: "";
  position: absolute;
  top: 3px;
  right: 0;
  width: 7px;
  height: 11px;
  border: 1.5px solid currentColor;
  border-left: 0;
  border-radius: 0 9px 9px 0;
  opacity: 0.38;
}

.hero-sound-toggle[data-sound-active="true"] .sound-icon::after {
  opacity: 1;
}

.hero-caption {
  justify-self: center;
  width: min(78%, 900px);
  min-height: 62px;
  padding: 14px 24px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 19px;
  color: rgba(255, 255, 255, 0.48);
  background: rgba(5, 17, 30, 0.22);
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(12px) saturate(112%);
  -webkit-backdrop-filter: blur(12px) saturate(112%);
}

.hero-caption[hidden] {
  visibility: hidden;
}

.hero-caption p {
  max-width: 760px;
  margin: 0;
  font-size: clamp(14px, 1.05vw, 17px);
  font-weight: 450;
  line-height: 1.55;
  text-align: center;
}

.caption-word {
  color: rgba(255, 255, 255, 0.42);
  transition: color 160ms ease, text-shadow 160ms ease;
}

.caption-word.is-past {
  color: rgba(255, 255, 255, 0.9);
}

.caption-word.is-active {
  color: #ffffff;
  text-shadow: 0 0 15px rgba(126, 220, 255, 0.9), 0 0 28px rgba(111, 94, 246, 0.46);
}

.hero-text-link::after {
  content: " ↗";
}

.hero-dock {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(100%, 1180px);
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 24px;
  background: rgba(240, 248, 255, 0.76);
  color: var(--landing-ink);
  box-shadow: 0 24px 70px rgba(0, 12, 33, 0.22);
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
}

.hero-dock article {
  position: relative;
  min-width: 0;
  padding: 21px clamp(16px, 2vw, 30px);
  display: flex;
  align-items: center;
  gap: 15px;
}

.hero-dock article + article::before {
  content: "";
  position: absolute;
  inset: 22px auto 22px 0;
  width: 1px;
  background: rgba(8, 34, 66, 0.14);
}

.hero-dock article div {
  min-width: 0;
}

.hero-dock strong,
.hero-dock article span:last-child {
  display: block;
}

.hero-dock strong {
  margin-bottom: 3px;
  font-size: 15px;
}

.hero-dock article span:last-child {
  overflow: hidden;
  color: #52657c;
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dock-icon {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background-color: #207af8;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.7);
}

.dock-server {
  background:
    linear-gradient(#ffffff 0 0) 12px 11px / 20px 7px no-repeat,
    radial-gradient(circle, #2591ff 0 2px, transparent 2.5px) 14px 12.5px / 6px 6px no-repeat,
    linear-gradient(#ffffff 0 0) 12px 25px / 20px 7px no-repeat,
    radial-gradient(circle, #2591ff 0 2px, transparent 2.5px) 14px 26.5px / 6px 6px no-repeat,
    linear-gradient(145deg, #47c9ff, #5f5bf5);
}

.dock-shield {
  position: relative;
  background: linear-gradient(145deg, #9e8dff, #6758f5);
}

.dock-shield::before {
  content: "";
  position: absolute;
  inset: 10px 12px 9px;
  border: 2px solid #ffffff;
  border-radius: 11px 11px 14px 14px;
  clip-path: polygon(50% 0, 100% 19%, 90% 76%, 50% 100%, 10% 76%, 0 19%);
}

.dock-chat {
  position: relative;
  background: linear-gradient(145deg, #46e0e7, #15a5cf);
}

.dock-chat::before {
  content: "";
  position: absolute;
  inset: 11px 10px 13px;
  border: 2px solid #ffffff;
  border-radius: 7px;
}

.dock-chat::after {
  content: "";
  position: absolute;
  left: 16px;
  bottom: 8px;
  width: 8px;
  height: 8px;
  border-left: 2px solid #ffffff;
  transform: skew(-28deg);
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 8px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  color: #ffffff;
  background: rgba(6, 20, 36, 0.3);
  transform: translateX(-50%);
  backdrop-filter: blur(8px);
}

.hero-scroll span {
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.possibilities-section {
  scroll-margin-top: 30px;
  padding: clamp(76px, 9vw, 130px) max(24px, calc((100% - 1480px) / 2));
  background:
    radial-gradient(circle at 8% 10%, rgba(36, 143, 255, 0.12), transparent 28%),
    radial-gradient(circle at 92% 80%, rgba(100, 84, 246, 0.12), transparent 28%),
    #f7fbff;
}

.possibilities-heading {
  max-width: 780px;
  margin: 0 auto clamp(42px, 5vw, 70px);
  text-align: center;
}

.section-kicker {
  margin: 0 0 12px;
  color: #346be9;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.possibilities-heading h2,
.landing-cta h2 {
  margin: 0;
  color: var(--landing-ink);
  font-size: clamp(34px, 4vw, 60px);
  font-weight: 650;
  line-height: 1.06;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.possibilities-heading > p:last-child,
.landing-cta-copy > p:last-of-type {
  margin: 22px auto 0;
  color: #5d6f84;
  font-size: 17px;
  font-weight: 450;
  line-height: 1.65;
}

.story-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(520px, 1.28fr);
  min-height: 560px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 28px;
  background: rgba(238, 247, 255, 0.38);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    0 28px 70px rgba(27, 67, 112, 0.11);
  backdrop-filter: blur(24px);
}

.story-shell::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -120px;
  left: -100px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(63, 177, 255, 0.2);
  filter: blur(70px);
}

.story-rail {
  position: relative;
  z-index: 2;
  padding: 34px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-right: 1px solid rgba(36, 77, 116, 0.1);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.7), rgba(232, 242, 251, 0.42));
}

.story-step {
  position: relative;
  width: 100%;
  padding: 22px 20px;
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: start;
  gap: 14px;
  border: 0;
  border-radius: 18px;
  color: #102a49;
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition:
    color 350ms ease,
    background 350ms ease,
    box-shadow 350ms ease,
    transform 420ms cubic-bezier(0.22, 0.78, 0.2, 1);
}

.story-step::after {
  content: "";
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 0;
  width: 2px;
  border-radius: 2px;
  background: linear-gradient(#38c7ff, #695af5);
  opacity: 0;
  transform: scaleY(0.3);
  transition: opacity 300ms ease, transform 420ms ease;
}

.story-step:hover,
.story-step:focus-visible {
  background: rgba(255, 255, 255, 0.46);
  outline: none;
}

.story-step[aria-selected="true"] {
  color: #082a53;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(225, 239, 251, 0.58));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    0 18px 44px rgba(30, 79, 128, 0.1);
  transform: translateX(4px);
}

.story-step[aria-selected="true"]::after {
  opacity: 1;
  transform: scaleY(1);
}

.story-number {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(37, 96, 154, 0.13);
  border-radius: 13px;
  color: #52708f;
  background: rgba(239, 248, 255, 0.72);
  font-size: 12px;
  font-weight: 750;
  transition: color 350ms ease, background 350ms ease;
}

.story-step[aria-selected="true"] .story-number {
  color: #ffffff;
  border-color: transparent;
  background: linear-gradient(145deg, #249df8, #6757f5);
}

.story-step-copy {
  min-width: 0;
  display: grid;
  gap: 8px;
}

.story-step-copy strong {
  font-size: clamp(18px, 1.5vw, 23px);
  font-weight: 650;
  line-height: 1.2;
  letter-spacing: -0.018em;
}

.story-step-copy small {
  max-height: 0;
  overflow: hidden;
  color: #637990;
  font-size: 14px;
  line-height: 1.55;
  opacity: 0;
  transform: translateY(-5px);
  transition:
    max-height 450ms ease,
    opacity 300ms ease,
    transform 400ms ease;
}

.story-step[aria-selected="true"] .story-step-copy small {
  max-height: 120px;
  opacity: 1;
  transform: translateY(0);
}

.story-more {
  align-self: flex-start;
  margin: auto 0 3px 62px;
  display: inline-flex;
  gap: 8px;
  color: #285fc6;
  font-size: 14px;
  font-weight: 700;
}

.story-more span:last-child {
  transition: transform 260ms ease;
}

.story-more:hover span:last-child {
  transform: translateX(4px);
}

.story-stage {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  color: #ffffff;
  background:
    radial-gradient(circle at 73% 24%, rgba(80, 93, 246, 0.38), transparent 32%),
    radial-gradient(circle at 28% 78%, rgba(23, 196, 239, 0.2), transparent 35%),
    linear-gradient(145deg, #071a31, #102d53 54%, #192b60);
}

.story-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(255, 255, 255, 0.05), transparent 44%);
  pointer-events: none;
}

.story-stage-grid {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(141, 211, 255, 0.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(141, 211, 255, 0.22) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(135deg, transparent 5%, #000 46%, transparent 100%);
}

.story-scene {
  position: absolute;
  z-index: 1;
  inset: 0;
  padding: clamp(34px, 4vw, 58px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px) scale(0.985);
  transition:
    opacity 480ms ease,
    transform 650ms cubic-bezier(0.22, 0.78, 0.2, 1);
}

.story-scene[data-active] {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.scene-heading {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: rgba(223, 240, 255, 0.62);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.scene-heading strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #dffbf5;
  font-size: 12px;
  letter-spacing: 0;
  text-transform: none;
}

.scene-heading strong i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #46e3bd;
  box-shadow: 0 0 14px rgba(70, 227, 189, 0.78);
}

.vps-visual,
.route-visual,
.profile-visual {
  position: absolute;
  inset: 90px 40px 40px;
}

.vps-server {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  width: 230px;
  padding: 18px;
  display: grid;
  gap: 12px;
  border: 1px solid rgba(175, 226, 255, 0.34);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(211, 238, 255, 0.2), rgba(126, 172, 211, 0.08));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 30px 70px rgba(0, 9, 27, 0.32);
  transform: translate(-50%, -50%);
  backdrop-filter: blur(18px);
}

.vps-server > span {
  height: 45px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(194, 231, 255, 0.17);
  border-radius: 13px;
  background: rgba(5, 24, 45, 0.56);
}

.vps-server i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #51d9ff;
  box-shadow: 0 0 12px rgba(81, 217, 255, 0.7);
}

.vps-server b {
  width: 55%;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, rgba(162, 214, 247, 0.65), transparent);
}

.vps-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(107, 208, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.vps-orbit-one {
  width: 360px;
  height: 360px;
}

.vps-orbit-two {
  width: 490px;
  height: 490px;
}

.vps-signal {
  position: absolute;
  top: 50%;
  width: 34%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(87, 215, 255, 0.82));
  box-shadow: 0 0 13px rgba(69, 203, 255, 0.46);
}

.vps-signal-left {
  left: 0;
}

.vps-signal-right {
  right: 0;
  transform: rotate(180deg);
}

.vps-node {
  position: absolute;
  z-index: 2;
  top: 50%;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(183, 231, 255, 0.38);
  border-radius: 18px;
  background: rgba(153, 211, 245, 0.13);
  box-shadow: 0 18px 42px rgba(0, 11, 31, 0.25);
  transform: translateY(-50%);
  backdrop-filter: blur(12px);
}

.vps-node::before {
  content: "";
  position: absolute;
  inset: 15px;
  border: 2px solid #8ce7ff;
  border-radius: 5px;
}

.vps-node-phone {
  left: 3%;
}

.vps-node-cloud {
  right: 3%;
}

.vps-node-cloud::before {
  inset: 17px 12px;
  border-radius: 50%;
}

.route-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2.5vw, 30px);
}

.route-apps {
  width: 180px;
  display: grid;
  gap: 9px;
}

.route-app {
  width: 100%;
  height: 58px;
  padding: 0 12px;
  display: grid;
  grid-template-columns: 32px 1fr 18px;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(207, 238, 255, 0.22);
  border-radius: 15px;
  color: #ffffff;
  background: rgba(155, 203, 238, 0.1);
  box-shadow: 0 13px 30px rgba(0, 12, 31, 0.16);
  backdrop-filter: blur(12px);
}

.route-app b {
  font-size: 12px;
  font-weight: 600;
}

.route-app small {
  width: 17px;
  height: 17px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #092f42;
  background: #5ce1bf;
  font-size: 10px;
  font-weight: 700;
}

.route-app-icon {
  position: relative;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(190, 229, 252, 0.24);
  border-radius: 9px;
  background: rgba(82, 160, 221, 0.16);
}

.route-app-icon::before,
.route-app-icon::after {
  content: "";
  position: absolute;
}

.route-app-browser .route-app-icon::before {
  inset: 7px 5px 6px;
  border: 1px solid #82ddfa;
  border-radius: 3px;
}

.route-app-browser .route-app-icon::after {
  top: 10px;
  right: 8px;
  left: 8px;
  height: 1px;
  background: rgba(130, 221, 250, 0.72);
}

.route-app-communication .route-app-icon::before {
  inset: 6px 5px 8px;
  border: 1px solid #8edff8;
  border-radius: 6px;
}

.route-app-communication .route-app-icon::after {
  bottom: 5px;
  left: 9px;
  border-top: 5px solid #8edff8;
  border-right: 5px solid transparent;
}

.route-app-work .route-app-icon::before {
  inset: 5px 7px;
  border: 1px solid #a7a0fa;
  border-radius: 3px;
}

.route-app-work .route-app-icon::after {
  top: 10px;
  right: 11px;
  left: 11px;
  height: 1px;
  background: #a7a0fa;
  box-shadow: 0 4px 0 rgba(167, 160, 250, 0.74), 0 8px 0 rgba(167, 160, 250, 0.48);
}

.route-track {
  position: relative;
  flex: 1;
  max-width: 220px;
  height: 2px;
  background: linear-gradient(90deg, rgba(85, 214, 255, 0.28), rgba(100, 93, 246, 0.74));
}

.route-track i {
  position: absolute;
  top: -3px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #80e7ff;
  box-shadow: 0 0 14px rgba(85, 218, 255, 0.86);
  animation: story-route-flow 2.8s linear infinite;
}

.route-track i:nth-child(2) {
  animation-delay: -0.9s;
}

.route-track i:nth-child(3) {
  animation-delay: -1.8s;
}

.route-node {
  width: 135px;
  padding: 15px;
  display: grid;
  gap: 10px;
  border: 1px solid rgba(192, 229, 255, 0.3);
  border-radius: 23px;
  background: rgba(123, 175, 219, 0.12);
  backdrop-filter: blur(15px);
}

.route-node > span {
  height: 35px;
  padding: 0 10px;
  display: flex;
  align-items: center;
  border-radius: 11px;
  background: rgba(5, 22, 42, 0.6);
}

.route-node i {
  width: 55%;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, #6edcff, transparent);
}

.route-node > b {
  color: rgba(215, 236, 249, 0.66);
  font-size: 10px;
  font-weight: 550;
  text-align: center;
}

.route-direct {
  position: absolute;
  right: 0;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(213, 233, 248, 0.55);
  font-size: 12px;
}

.route-direct > i {
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(108, 207, 245, 0.62));
}

.profile-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.profile-phone {
  position: relative;
  z-index: 2;
  width: 180px;
  height: 310px;
  padding: 52px 25px 24px;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 18px;
  border: 1px solid rgba(205, 237, 255, 0.36);
  border-radius: 36px;
  background: linear-gradient(155deg, rgba(187, 226, 251, 0.2), rgba(100, 144, 188, 0.07));
  box-shadow: 0 34px 80px rgba(0, 10, 28, 0.34);
  backdrop-filter: blur(17px);
}

.profile-speaker {
  position: absolute;
  top: 19px;
  width: 42px;
  height: 4px;
  border-radius: 4px;
  background: rgba(207, 237, 255, 0.35);
}

.profile-avatar {
  width: 72px;
  height: 72px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 34%, #a3e8ff 0 14%, transparent 15%),
    radial-gradient(ellipse at 50% 84%, #7f7af7 0 31%, transparent 32%),
    linear-gradient(145deg, rgba(46, 161, 244, 0.62), rgba(104, 84, 243, 0.62));
}

.profile-phone > i {
  width: 100%;
  height: 5px;
  border-radius: 5px;
  background: linear-gradient(90deg, rgba(204, 234, 252, 0.48), transparent);
}

.profile-phone > i:nth-of-type(2) {
  width: 68%;
}

.profile-phone > b {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #0c4051;
  background: #64edc9;
  box-shadow: 0 0 24px rgba(73, 229, 190, 0.42);
}

.profile-link {
  width: 130px;
  height: 2px;
  background: linear-gradient(90deg, rgba(93, 223, 255, 0.72), rgba(108, 90, 245, 0.72));
  box-shadow: 0 0 13px rgba(85, 209, 255, 0.4);
}

.profile-session {
  position: relative;
  width: 190px;
  padding: 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(206, 237, 255, 0.29);
  border-radius: 24px;
  background: rgba(154, 202, 237, 0.12);
  backdrop-filter: blur(14px);
}

.profile-session > span {
  width: 43px;
  height: 43px;
  border-radius: 14px;
  background: linear-gradient(145deg, #31baf3, #6358f3);
}

.profile-session div {
  flex: 1;
  display: grid;
  gap: 8px;
}

.profile-session i {
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, rgba(211, 239, 255, 0.57), transparent);
}

.profile-session i:last-child {
  width: 62%;
}

.profile-session b {
  color: #63edc8;
}

.story-progress {
  position: absolute;
  z-index: 5;
  right: 34px;
  bottom: 26px;
  display: flex;
  gap: 7px;
}

.story-progress span {
  width: 7px;
  height: 3px;
  border-radius: 3px;
  background: rgba(205, 234, 252, 0.3);
  transition: width 350ms ease, background 350ms ease;
}

.story-progress span[data-active] {
  width: 30px;
  background: linear-gradient(90deg, #4dd8ff, #7262f6);
}

@keyframes story-route-flow {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(210px);
  }
}

.landing-cta {
  width: min(100% - 48px, 1480px);
  margin: clamp(34px, 5vw, 72px) auto clamp(48px, 6vw, 86px);
  padding: clamp(38px, 5vw, 60px);
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  align-items: center;
  gap: clamp(36px, 6vw, 100px);
  overflow: hidden;
  border: 1px solid rgba(93, 131, 168, 0.16);
  border-radius: 24px;
  color: var(--landing-ink);
  background: linear-gradient(118deg, rgba(250, 253, 255, 0.88), rgba(232, 241, 248, 0.7));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 22px 58px rgba(28, 70, 111, 0.09);
  backdrop-filter: blur(20px);
}

.landing-cta::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 3px;
  background: linear-gradient(180deg, rgba(69, 202, 250, 0.1), rgba(49, 126, 248, 0.76), rgba(108, 86, 245, 0.26));
}

.landing-cta h2 {
  font-size: clamp(31px, 3.1vw, 47px);
  font-weight: 650;
  letter-spacing: -0.032em;
}

.landing-cta-copy {
  position: relative;
  z-index: 2;
}

.landing-cta-copy > p:last-of-type {
  max-width: 640px;
  margin-left: 0;
}

.landing-cta-actions {
  margin-top: 26px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.cta-text-link {
  padding: 13px 10px;
  display: inline-flex;
  gap: 8px;
  color: #315b91;
  font-size: 14px;
  font-weight: 650;
}

.cta-text-link span:last-child {
  transition: transform 240ms ease;
}

.cta-text-link:hover span:last-child {
  transform: translateX(4px);
}

.cta-system-scene {
  position: relative;
  min-height: 220px;
  display: grid;
  place-items: center;
}

.cta-system-panel {
  position: relative;
  width: min(100%, 430px);
  padding: 24px;
  display: grid;
  gap: 28px;
  overflow: hidden;
  border: 1px solid rgba(164, 207, 237, 0.22);
  border-radius: 18px;
  color: #ffffff;
  background:
    linear-gradient(rgba(119, 178, 222, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(119, 178, 222, 0.08) 1px, transparent 1px),
    linear-gradient(145deg, #0a2038, #102f52 58%, #142d5d);
  background-size: 32px 32px, 32px 32px, auto;
  box-shadow: 0 22px 50px rgba(10, 39, 70, 0.2);
}

.cta-system-panel::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 36%;
  background: linear-gradient(90deg, transparent, rgba(91, 83, 244, 0.14));
  pointer-events: none;
}

.cta-system-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: rgba(218, 236, 250, 0.66);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.cta-system-head strong {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #c9f7ec;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0;
  text-transform: none;
}

.cta-system-head i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #55dfba;
  box-shadow: 0 0 12px rgba(85, 223, 186, 0.68);
}

.cta-system-route {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 48px 1fr 58px 1fr 48px;
  align-items: center;
}

.cta-system-route > i {
  height: 1px;
  background: linear-gradient(90deg, rgba(79, 210, 250, 0.42), rgba(100, 92, 244, 0.74));
}

.cta-route-point {
  position: relative;
  width: 42px;
  height: 42px;
  justify-self: center;
  border: 1px solid rgba(184, 222, 248, 0.28);
  border-radius: 12px;
  background: rgba(160, 207, 239, 0.11);
}

.cta-route-point::before,
.cta-route-point::after {
  content: "";
  position: absolute;
}

.cta-route-device::before {
  inset: 11px 14px;
  border: 1px solid #77ddfb;
  border-radius: 3px;
}

.cta-route-vps {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(52, 164, 239, 0.42), rgba(99, 83, 242, 0.34));
}

.cta-route-vps::before,
.cta-route-vps::after {
  right: 12px;
  left: 12px;
  height: 8px;
  border: 1px solid rgba(199, 234, 255, 0.54);
  border-radius: 3px;
}

.cta-route-vps::before {
  top: 14px;
}

.cta-route-vps::after {
  bottom: 14px;
}

.cta-route-profile::before {
  top: 9px;
  left: 15px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #8ce6fc;
}

.cta-route-profile::after {
  right: 10px;
  bottom: 9px;
  left: 10px;
  height: 12px;
  border-radius: 10px 10px 4px 4px;
  background: rgba(115, 96, 244, 0.76);
}

.cta-system-legend {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  color: rgba(215, 235, 249, 0.6);
  font-size: 10px;
  font-weight: 500;
  text-align: center;
}

.public-pricing {
  width: min(100% - 48px, 1480px);
  margin: 0 auto clamp(50px, 7vw, 96px);
  padding: clamp(42px, 6vw, 76px);
  border: 1px solid rgba(80, 126, 173, 0.15);
  border-radius: 26px;
  color: var(--landing-ink);
  background:
    radial-gradient(circle at 8% 8%, rgba(76, 198, 249, 0.12), transparent 31%),
    radial-gradient(circle at 92% 92%, rgba(107, 83, 244, 0.13), transparent 34%),
    linear-gradient(145deg, rgba(250, 253, 255, 0.94), rgba(235, 243, 250, 0.78));
  box-shadow: 0 28px 72px rgba(26, 68, 110, 0.09);
}

.public-pricing-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.65fr);
  gap: clamp(34px, 7vw, 110px);
  align-items: end;
  margin-bottom: 34px;
}

.public-pricing-heading h2 {
  margin: 9px 0 0;
  font-size: clamp(34px, 4.2vw, 62px);
  font-weight: 650;
  line-height: 1.02;
  letter-spacing: -0.052em;
}

.public-pricing-heading > p {
  margin: 0 0 5px;
  color: #5d7188;
  font-size: 15px;
  line-height: 1.68;
}

.personal-pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(54, 111, 164, 0.18);
  border-bottom: 1px solid rgba(54, 111, 164, 0.18);
}

.public-plan {
  position: relative;
  min-height: 220px;
  padding: 30px 26px 26px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(54, 111, 164, 0.14);
}

.public-plan:last-child {
  border-right: 0;
}

.public-plan-recommended {
  background: linear-gradient(145deg, rgba(44, 137, 251, 0.1), rgba(105, 82, 245, 0.1));
}

.public-plan-badge {
  position: absolute;
  top: 12px;
  right: 18px;
  color: #5a4ce6;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.public-plan-period {
  color: #526980;
  font-size: 13px;
  font-weight: 650;
}

.public-plan > strong {
  margin-top: 18px;
  color: #0a2442;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 670;
  letter-spacing: -0.045em;
}

.public-plan > small {
  color: #8190a0;
  font-size: 11px;
}

.public-plan > a {
  width: fit-content;
  margin-top: auto;
  padding: 9px 0 2px;
  border-bottom: 1px solid rgba(39, 119, 234, 0.3);
  color: #276fda;
  font-size: 13px;
  font-weight: 680;
}

.pricing-inclusions-heading {
  padding: 28px 0 17px;
}

.pricing-inclusions-heading h3 {
  margin: 0;
  color: #0c294a;
  font-size: 20px;
  font-weight: 680;
  letter-spacing: -0.025em;
}

.pricing-inclusions-heading p {
  margin: 6px 0 0;
  color: #60768d;
  font-size: 13px;
  line-height: 1.5;
}

.pricing-inclusions {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  padding: 0 0 36px;
}

.pricing-inclusion {
  min-width: 0;
  min-height: 82px;
  padding: 14px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border: 1px solid rgba(50, 112, 171, 0.22);
  border-radius: 16px;
  color: #213d5c;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 9px 24px rgba(35, 82, 128, 0.06);
}

.pricing-inclusion svg {
  width: 25px;
  height: 25px;
  flex: 0 0 auto;
  padding: 4px;
  overflow: visible;
  border-radius: 8px;
  color: #2c7eeb;
  background: rgba(45, 130, 240, 0.1);
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.pricing-inclusion strong {
  min-width: 0;
  color: #173655;
  font-size: 12px;
  font-weight: 690;
  line-height: 1.35;
}

.organization-pricing {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(36px, 6vw, 82px);
  padding-top: 34px;
  border-top: 1px solid rgba(54, 111, 164, 0.16);
}

.organization-pricing-copy h3 {
  margin: 10px 0 14px;
  color: #0c2645;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 640;
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.organization-pricing-copy > p:last-child {
  margin: 0;
  color: #63778d;
  font-size: 13px;
  line-height: 1.65;
}

.organization-plan-list {
  border-top: 1px solid rgba(54, 111, 164, 0.17);
}

.organization-plan-list > a {
  min-height: 64px;
  padding: 13px 4px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
  border-bottom: 1px solid rgba(54, 111, 164, 0.14);
  color: #0b2748;
}

.organization-plan-list span {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.organization-plan-list strong,
.organization-plan-list b {
  font-size: 14px;
  font-weight: 680;
}

.organization-plan-list small {
  color: #708398;
  font-size: 11px;
  font-weight: 520;
}

.pricing-boundary {
  margin: 30px 0 0;
  color: #6b7d90;
  font-size: 11px;
  line-height: 1.55;
}

.landing-footer {
  position: relative;
  width: min(100% - 48px, 1480px);
  margin: 0 auto;
  padding: 30px 4px 34px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  color: #6b7b8c;
  font-size: 13px;
  font-weight: 450;
}

.landing-footer::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(38, 102, 158, 0.16) 18%, rgba(38, 102, 158, 0.16) 82%, transparent);
}

.footer-brand {
  font-size: 16px;
  opacity: 0.86;
}

.footer-brand .brand-symbol {
  width: 29px;
  height: 24px;
}

.landing-footer-links {
  display: flex;
  gap: 24px;
}

.landing-footer-links a {
  color: #52677c;
  opacity: 0.78;
  transition: opacity 200ms ease;
}

.landing-footer-links a:hover {
  opacity: 1;
}

.landing-footer > span {
  justify-self: end;
}

.landing .support-widget {
  z-index: 50;
  top: auto;
  right: 22px;
  bottom: 20px;
  transform: none;
}

.landing .support-panel {
  top: auto;
  right: 0;
  bottom: 38px;
  width: min(320px, calc(100vw - 44px));
  padding: 22px;
  color: #f5fbff;
  border-color: rgba(188, 229, 255, 0.34);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(13, 38, 59, 0.64), rgba(5, 22, 39, 0.5));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 20px 54px rgba(1, 12, 27, 0.2);
  backdrop-filter: blur(30px) saturate(118%);
  transform-origin: 100% 100%;
  animation: support-curtain-in 560ms cubic-bezier(0.22, 0.78, 0.2, 1) both;
}

.landing .support-panel[data-closing] {
  pointer-events: none;
  animation: support-curtain-out 340ms cubic-bezier(0.4, 0, 0.8, 0.2) both;
}

.landing .support-panel::before {
  content: "";
  position: absolute;
  top: 0;
  right: 18px;
  left: 18px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(132, 225, 255, 0.9), transparent);
}

.landing .support-panel p,
.landing .support-panel a {
  color: rgba(230, 244, 255, 0.76);
}

.landing .support-panel h2 {
  margin-bottom: 6px;
  font-size: 19px;
}

.landing .support-panel > p {
  margin-bottom: 18px;
  font-size: 13px;
}

.landing .support-form {
  gap: 12px;
}

.landing .support-panel h2,
.landing .support-panel > p,
.landing .support-form > * {
  animation: support-content-in 300ms ease both;
}

.landing .support-panel > p {
  animation-delay: 150ms;
}

.landing .support-form > :nth-child(1) {
  animation-delay: 190ms;
}

.landing .support-form > :nth-child(2) {
  animation-delay: 225ms;
}

.landing .support-form > :nth-child(3) {
  animation-delay: 260ms;
}

.landing .support-form > :nth-child(n + 4) {
  animation-delay: 295ms;
}

.landing .support-panel input,
.landing .support-panel textarea {
  color: #f7fbff;
  padding: 11px 13px;
  border-color: rgba(204, 235, 255, 0.2);
  border-radius: 13px;
  background: rgba(238, 248, 255, 0.08);
}

.landing .support-panel textarea {
  min-height: 82px;
}

.landing .support-panel input::placeholder,
.landing .support-panel textarea::placeholder {
  color: rgba(224, 240, 252, 0.56);
}

.landing .support-panel .button {
  min-height: 44px;
  border: 0;
  border-radius: 13px;
  color: #ffffff;
  background: linear-gradient(135deg, #1d90ff, #6558f5);
}

.landing .support-panel .support-status {
  min-height: 8px;
  font-size: 12px;
}

.landing .support-panel .support-status:empty {
  display: none;
}

.landing .support-panel .support-form > a {
  margin-top: 5px;
  font-size: 12px;
}

.landing .support-toggle {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 96px;
  height: 32px;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: #ffffff;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.landing .support-toggle::before {
  display: none;
}

.support-line {
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(135, 225, 255, 0.92));
  box-shadow: 0 0 10px rgba(91, 211, 255, 0.42);
  transform-origin: 100% 50%;
  transition:
    width 360ms cubic-bezier(0.22, 0.78, 0.2, 1),
    box-shadow 300ms ease;
}

.support-tab-icon {
  width: 17px;
  height: 17px;
  margin-left: 9px;
  opacity: 0.86;
  background: #8de6ff;
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 4h16a2 2 0 0 1 2 2v9a2 2 0 0 1-2 2H9.3L4.8 20.6A.5.5 0 0 1 4 20.2V6a2 2 0 0 1 2-2Zm2 2v11.1L8.6 15H20V6H6Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 4h16a2 2 0 0 1 2 2v9a2 2 0 0 1-2 2H9.3L4.8 20.6A.5.5 0 0 1 4 20.2V6a2 2 0 0 1 2-2Zm2 2v11.1L8.6 15H20V6H6Z'/%3E%3C/svg%3E") center / contain no-repeat;
  filter: drop-shadow(0 0 6px rgba(86, 214, 255, 0.38));
  transition: opacity 220ms ease;
}

.landing .support-toggle:focus-visible,
.landing .support-toggle[aria-expanded="true"],
.landing .support-toggle[data-line-active],
.landing .support-toggle[data-support-intro] {
  outline: none;
}

.landing .support-toggle:focus-visible .support-line,
.landing .support-toggle[aria-expanded="true"] .support-line,
.landing .support-toggle[data-line-active] .support-line,
.landing .support-toggle[data-support-intro] .support-line {
  width: 70px;
  box-shadow: 0 0 15px rgba(91, 211, 255, 0.68);
}

@media (hover: hover) and (pointer: fine) {
  .landing .support-toggle:hover .support-line {
    width: 70px;
    box-shadow: 0 0 15px rgba(91, 211, 255, 0.68);
  }
}

@keyframes support-curtain-in {
  from {
    opacity: 0;
    clip-path: inset(100% 0 0 72% round 22px);
    transform: translateY(12px) scale(0.98);
  }

  42% {
    opacity: 0.56;
    clip-path: inset(54% 0 0 38% round 22px);
  }

  to {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    transform: translateY(0) scale(1);
  }
}

@keyframes support-curtain-out {
  from {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    transform: translateY(0) scale(1);
  }

  to {
    opacity: 0;
    clip-path: inset(100% 0 0 72% round 22px);
    transform: translateY(12px) scale(0.98);
  }
}

@keyframes support-content-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1100px) {
  .landing-menu {
    gap: 22px;
  }

  .landing-links {
    gap: 18px;
  }

  .landing-links a:first-child {
    display: none;
  }

  .hero-billboard {
    width: min(560px, 62vw);
  }

  .story-shell {
    grid-template-columns: minmax(280px, 0.78fr) minmax(440px, 1.22fr);
    min-height: 520px;
  }

  .story-rail {
    padding: 26px;
  }

  .story-step {
    padding: 19px 16px;
  }

  .story-stage {
    min-height: 520px;
  }

  .vps-orbit-one {
    width: 310px;
    height: 310px;
  }

  .vps-orbit-two {
    width: 410px;
    height: 410px;
  }

  .profile-link {
    width: 76px;
  }

  .landing-cta {
    grid-template-columns: minmax(0, 1fr) 320px;
  }

  .pricing-inclusions {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  body.landing[data-menu-open] {
    overflow: hidden;
  }

  .landing-nav {
    width: min(100% - 28px, 1480px);
    min-height: 70px;
    align-items: center;
    flex-direction: row;
  }

  .landing-menu-toggle {
    display: block;
    margin-left: auto;
    cursor: pointer;
  }

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

  .landing-menu-toggle[aria-expanded="true"] > span:nth-child(2) {
    opacity: 0;
  }

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

  body.landing[data-menu-open] .support-widget {
    display: none;
  }

  .landing-menu {
    position: absolute;
    top: 70px;
    right: 14px;
    left: 14px;
    padding: 18px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
    border: 1px solid rgba(28, 70, 112, 0.14);
    border-radius: 22px;
    background: rgba(247, 252, 255, 0.98);
    box-shadow: 0 24px 60px rgba(7, 32, 60, 0.18);
  }

  .landing-menu[data-open] {
    display: flex;
  }

  .landing-links {
    align-items: stretch;
    flex-direction: column;
    gap: 0;
  }

  .landing-links a,
  .landing-links a:first-child {
    display: block;
    padding: 12px;
    border-radius: 10px;
  }

  .landing-links a:hover {
    background: rgba(32, 126, 248, 0.08);
  }

  .landing-links a::after {
    display: none;
  }

  .nav-download {
    width: 100%;
  }

  .language-picker,
  .language-toggle {
    width: 100%;
  }

  .language-menu {
    position: static;
    width: 100%;
    margin-top: 8px;
    box-shadow: none;
  }

  .landing-hero-inner {
    width: min(100% - 28px, 1480px);
    padding-top: 94px;
    padding-bottom: 20px;
  }

  .hero-billboard {
    width: min(560px, 100%);
  }

  .hero-sound-toggle {
    top: 82px;
    right: 0;
  }

  .hero-caption {
    width: min(100%, 760px);
  }

  .hero-dock article {
    justify-content: center;
    flex-direction: column;
    gap: 7px;
    padding: 15px 10px;
    text-align: center;
  }

  .hero-dock article div {
    display: block;
  }

  .hero-dock strong {
    margin: 0;
    font-size: 11px;
    line-height: 1.2;
  }

  .hero-dock article span:last-child {
    display: none;
  }

  .hero-dock .dock-icon {
    width: 42px;
    height: 42px;
  }

  .hero-scroll {
    display: none;
  }

  .possibilities-section {
    padding-right: 20px;
    padding-left: 20px;
  }

  .story-shell {
    grid-template-columns: 1fr;
    min-height: 0;
    border-radius: 30px;
  }

  .story-rail {
    padding: 18px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    border-right: 0;
    border-bottom: 1px solid rgba(36, 77, 116, 0.1);
  }

  .story-step {
    min-height: 120px;
    padding: 14px;
    grid-template-columns: 1fr;
    align-content: start;
    gap: 10px;
  }

  .story-step::after {
    top: auto;
    right: 14px;
    bottom: 0;
    left: 14px;
    width: auto;
    height: 2px;
    transform: scaleX(0.3);
  }

  .story-step[aria-selected="true"],
  .story-step[aria-selected="true"]::after {
    transform: none;
  }

  .story-step-copy {
    gap: 0;
  }

  .story-step-copy strong {
    font-size: 15px;
  }

  .story-step-copy small,
  .story-step[aria-selected="true"] .story-step-copy small {
    display: none;
  }

  .story-more {
    grid-column: 1 / -1;
    margin: 4px 10px 0;
  }

  .story-stage {
    min-height: 470px;
  }

  .story-scene {
    padding: 30px;
  }

  .vps-visual,
  .route-visual,
  .profile-visual {
    inset: 86px 28px 34px;
  }

  .route-apps {
    width: 150px;
  }

  .route-app {
    height: 50px;
    padding: 0 10px;
    grid-template-columns: 29px 1fr 16px;
    gap: 8px;
    border-radius: 14px;
  }

  .route-node {
    width: 112px;
  }

  .profile-phone {
    width: 150px;
    height: 270px;
  }

  .profile-session {
    width: 160px;
    padding: 17px;
  }

  .landing-cta-actions {
    width: 100%;
  }

  .landing-cta-actions .hero-button {
    flex: 1;
  }

  .landing-cta {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .public-pricing-heading,
  .organization-pricing {
    grid-template-columns: 1fr;
  }

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

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

  .public-plan:nth-child(2) {
    border-right: 0;
  }

  .public-plan:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(54, 111, 164, 0.14);
  }

  .cta-system-scene {
    min-height: 200px;
  }
}

@media (max-width: 620px) {
  .landing-hero {
    min-height: max(760px, 100svh);
    background-image: url("./hero-0619-mobile-poster.jpg");
    background-position: center;
  }

  .hero-video {
    object-position: center;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(3, 13, 25, 0.94) 0%, rgba(4, 16, 30, 0.68) 62%, rgba(4, 16, 30, 0.24) 100%),
      linear-gradient(90deg, rgba(4, 16, 30, 0.3), rgba(4, 16, 30, 0.14));
  }

  .landing-brand {
    font-size: 18px;
  }

  .brand-symbol {
    width: 30px;
    height: 25px;
  }

  .landing-hero-inner {
    min-height: max(760px, 100svh);
    grid-template-rows: minmax(0, 1fr) auto auto;
    gap: 12px;
  }

  .hero-billboard {
    align-self: end;
    padding: 22px 18px;
    border-radius: 24px;
    background: linear-gradient(105deg, rgba(5, 17, 31, 0.3), rgba(5, 17, 31, 0.12) 72%, rgba(5, 17, 31, 0));
  }

  .hero-kicker {
    margin-bottom: 16px;
    font-size: 12px;
  }

  .hero-billboard h1 {
    max-width: none;
  }

  .hero-billboard h1 span {
    font-size: clamp(40px, 11.2vw, 50px);
  }

  .hero-billboard h1 strong {
    max-width: 12ch;
    margin-top: 12px;
    font-size: clamp(29px, 8.8vw, 38px);
    line-height: 1.1;
  }

  .hero-lead {
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.58;
  }

  .hero-actions {
    margin-top: 22px;
  }

  .hero-button {
    min-height: 50px;
    padding: 0 16px;
  }

  .hero-button-primary,
  .hero-button-secondary {
    flex: 1 0 100%;
    width: 100%;
  }

  .hero-text-link {
    flex: 1 0 100%;
    padding: 4px 2px 0;
  }

  .hero-sound-toggle {
    top: 80px;
    right: auto;
    left: 0;
    min-width: 42px;
    min-height: 42px;
    padding: 0 12px;
  }

  .hero-sound-toggle [data-sound-label] {
    display: none;
  }

  .hero-caption {
    width: 100%;
    min-height: 54px;
    padding: 11px 15px;
    border-radius: 16px;
  }

  .hero-caption p {
    font-size: 13px;
    line-height: 1.45;
  }

  .hero-dock {
    display: none;
  }

  .pricing-inclusions-heading {
    padding-top: 24px;
  }

  .pricing-inclusions-heading h3 {
    font-size: 18px;
  }

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

  .pricing-inclusion {
    min-height: 0;
    align-items: center;
  }

  .possibilities-section {
    padding: 66px 14px;
  }

  .possibilities-heading {
    margin-bottom: 34px;
  }

  .possibilities-heading h2 {
    font-size: clamp(31px, 9vw, 42px);
  }

  .possibilities-heading > p:last-child {
    margin-top: 16px;
    font-size: 15px;
  }

  .story-shell {
    border-radius: 26px;
  }

  .story-rail {
    padding: 12px;
    gap: 5px;
  }

  .story-step {
    min-height: 102px;
    padding: 10px 8px;
    border-radius: 17px;
  }

  .story-step::after {
    right: 9px;
    left: 9px;
  }

  .story-number {
    width: 30px;
    height: 30px;
    border-radius: 10px;
    font-size: 10px;
  }

  .story-step-copy strong {
    font-size: 12px;
    line-height: 1.25;
  }

  .story-more {
    margin: 6px 6px 0;
    font-size: 13px;
  }

  .story-stage {
    min-height: 370px;
  }

  .story-scene {
    padding: 22px 18px;
  }

  .scene-heading {
    align-items: flex-start;
    gap: 10px;
    font-size: 9px;
  }

  .scene-heading strong {
    justify-content: flex-end;
    text-align: right;
    font-size: 10px;
  }

  .vps-visual,
  .route-visual,
  .profile-visual {
    inset: 76px 16px 28px;
  }

  .vps-server {
    width: 154px;
    padding: 12px;
    gap: 8px;
    border-radius: 22px;
  }

  .vps-server > span {
    height: 34px;
  }

  .vps-orbit-one {
    width: 235px;
    height: 235px;
  }

  .vps-orbit-two {
    width: 315px;
    height: 315px;
  }

  .vps-node {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .vps-node::before {
    inset: 12px;
  }

  .route-visual {
    gap: 10px;
  }

  .route-apps {
    width: 105px;
    gap: 6px;
  }

  .route-app {
    height: 42px;
    padding: 0 7px;
    grid-template-columns: 24px 1fr 12px;
    gap: 5px;
    border-radius: 11px;
  }

  .route-app-icon {
    width: 24px;
    height: 24px;
    border-radius: 7px;
  }

  .route-app b {
    font-size: 8px;
  }

  .route-app small {
    width: 13px;
    height: 13px;
    font-size: 8px;
  }

  .route-track {
    max-width: 72px;
  }

  .route-node {
    width: 82px;
    padding: 10px;
    gap: 7px;
    border-radius: 17px;
  }

  .route-node > span {
    height: 28px;
  }

  .route-node > b {
    font-size: 8px;
  }

  .route-direct {
    bottom: 8px;
    font-size: 10px;
  }

  .profile-phone {
    width: 112px;
    height: 205px;
    padding: 42px 18px 18px;
    gap: 12px;
    border-radius: 27px;
  }

  .profile-avatar {
    width: 54px;
    height: 54px;
    border-radius: 18px;
  }

  .profile-phone > b {
    width: 32px;
    height: 32px;
  }

  .profile-link {
    width: 38px;
  }

  .profile-session {
    width: 100px;
    padding: 11px;
    gap: 8px;
    border-radius: 17px;
  }

  .profile-session > span {
    width: 30px;
    height: 30px;
    border-radius: 10px;
  }

  .profile-session div {
    gap: 5px;
  }

  .story-progress {
    right: 20px;
    bottom: 17px;
  }

  .landing-cta {
    width: min(100% - 28px, 1480px);
    padding: 28px 22px;
    grid-template-columns: 1fr;
    gap: 18px;
    border-radius: 25px;
  }

  .public-pricing {
    width: min(100% - 28px, 1480px);
    padding: 32px 20px;
    border-radius: 24px;
  }

  .public-pricing-heading {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 28px;
  }

  .public-pricing-heading h2 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .personal-pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    border: 0;
  }

  .public-plan {
    min-height: 148px;
    padding: 19px 14px 16px;
    border: 1px solid rgba(54, 111, 164, 0.16);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.44);
  }

  .public-plan:nth-child(2),
  .public-plan:nth-child(-n + 2),
  .public-plan:last-child {
    border: 1px solid rgba(54, 111, 164, 0.16);
  }

  .public-plan-badge {
    top: 8px;
    right: 9px;
    max-width: 74px;
    text-align: right;
    line-height: 1.2;
  }

  .public-plan > strong {
    margin-top: 13px;
    font-size: clamp(25px, 8vw, 34px);
  }

  .public-plan > a {
    padding-top: 8px;
  }

  .pricing-inclusion {
    padding: 12px 10px;
    gap: 9px;
  }

  .pricing-inclusion strong {
    font-size: 11px;
    line-height: 1.35;
  }

  .organization-pricing {
    gap: 26px;
  }

  .organization-plan-list > a {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .organization-plan-list span {
    justify-content: space-between;
  }

  .landing-cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .landing-cta-actions .hero-button {
    width: 100%;
  }

  .cta-text-link {
    justify-content: center;
  }

  .cta-system-scene {
    min-height: 0;
  }

  .cta-system-panel {
    padding: 18px;
    gap: 22px;
    border-radius: 16px;
  }

  .cta-system-route {
    grid-template-columns: 38px 1fr 48px 1fr 38px;
  }

  .cta-route-point {
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }

  .cta-route-vps {
    width: 44px;
    height: 44px;
  }

  .cta-route-vps::before {
    top: 11px;
  }

  .cta-route-vps::after {
    bottom: 11px;
  }

  .cta-system-legend {
    gap: 6px;
    font-size: 9px;
  }

  .landing-footer {
    width: min(100% - 28px, 1480px);
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .landing-footer-links {
    flex-wrap: wrap;
    gap: 12px 20px;
  }

  .landing-footer > span {
    justify-self: start;
  }

  .landing .support-widget {
    top: auto;
    right: 14px;
    bottom: 18px;
    transform: none;
  }

  .landing .support-panel {
    top: auto;
    right: 0;
    bottom: 38px;
    width: min(320px, calc(100vw - 28px));
    max-height: calc(100svh - 82px);
    overflow: auto;
  }

  .landing .support-toggle {
    width: 88px;
    height: 30px;
  }
}

@media (max-width: 350px) {
  .personal-pricing-grid,
  .pricing-inclusions {
    grid-template-columns: 1fr;
  }
}

@media (max-height: 760px) and (min-width: 621px) {
  .landing-hero-inner {
    padding-top: 98px;
    padding-bottom: 18px;
    gap: 16px;
  }

  .hero-billboard {
    padding: 19px 24px;
  }

  .hero-kicker {
    margin-bottom: 14px;
  }

  .hero-billboard h1 span {
    font-size: clamp(48px, 4.6vw, 68px);
  }

  .hero-billboard h1 strong {
    margin-top: 12px;
    font-size: clamp(28px, 2.6vw, 39px);
  }

  .hero-lead {
    margin-top: 16px;
  }

  .hero-actions {
    margin-top: 20px;
  }

  .hero-dock article {
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .hero-caption {
    min-height: 52px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-video {
    display: none;
  }

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

  .hero-sound-toggle::before {
    animation: none !important;
  }
}

/* Unified Wi-Fi Hub public subpages */

body.subpage {
  position: relative;
  min-width: 320px;
  overflow-x: hidden;
  font-family: "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 8%, color-mix(in srgb, var(--brand) 12%, transparent), transparent 28rem),
    radial-gradient(circle at 92% 30%, color-mix(in srgb, #665cf5 10%, transparent), transparent 32rem),
    linear-gradient(150deg, color-mix(in srgb, var(--bg) 94%, #e8f4ff), var(--bg));
  -webkit-font-smoothing: antialiased;
}

body.subpage::before {
  content: "";
  position: fixed;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  opacity: 0.42;
  background-image:
    linear-gradient(color-mix(in srgb, var(--brand) 5%, transparent) 1px, transparent 1px),
    linear-gradient(90deg, color-mix(in srgb, var(--brand) 5%, transparent) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 72%);
}

.subpage .topbar {
  position: sticky;
  z-index: 30;
  top: 0;
  border-bottom: 1px solid color-mix(in srgb, var(--line) 74%, transparent);
  background: color-mix(in srgb, var(--surface) 82%, transparent);
  box-shadow: 0 12px 36px color-mix(in srgb, #07172c 7%, transparent);
  backdrop-filter: blur(22px) saturate(128%);
}

.subpage .nav {
  width: min(1240px, calc(100% - 40px));
  max-width: none;
  min-height: 80px;
  margin: 0 auto;
  padding: 0;
  gap: 28px;
}

.subpage .brand {
  gap: 12px;
  flex: 0 0 auto;
  color: var(--text);
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.subpage .brand::before {
  content: "";
  width: 32px;
  height: 26px;
  flex: 0 0 auto;
  background: linear-gradient(145deg, #15a6ff, #6358f5);
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 40 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='none' stroke='black' stroke-linecap='round' stroke-width='3' d='M4 11.5C13.4 3.2 26.6 3.2 36 11.5M10 17.7c5.8-5 14.2-5 20 0M16 23.8c2.3-1.9 5.7-1.9 8 0'/%3E%3Ccircle cx='20' cy='28' r='2.6' fill='black'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 40 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='none' stroke='black' stroke-linecap='round' stroke-width='3' d='M4 11.5C13.4 3.2 26.6 3.2 36 11.5M10 17.7c5.8-5 14.2-5 20 0M16 23.8c2.3-1.9 5.7-1.9 8 0'/%3E%3Ccircle cx='20' cy='28' r='2.6' fill='black'/%3E%3C/svg%3E") center / contain no-repeat;
}

.subpage a:hover {
  text-decoration: none;
}

.subpage .nav-links {
  gap: clamp(12px, 2vw, 26px);
  flex-wrap: nowrap;
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
}

.subpage .nav-links a {
  position: relative;
  padding: 10px 2px;
  color: color-mix(in srgb, var(--text) 84%, var(--muted));
  white-space: nowrap;
  transition: color 180ms ease;
}

.subpage .nav-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, #1b9dff, #6758f5);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 200ms ease;
}

.subpage .nav-links a:hover,
.subpage .nav-links a[aria-current="page"] {
  color: var(--text);
}

.subpage .nav-links a:hover::after,
.subpage .nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
}

.subpage .nav-links a[href*="cabinet"] {
  padding: 10px 15px;
  border: 1px solid color-mix(in srgb, var(--brand) 22%, var(--line));
  border-radius: 12px;
  background: color-mix(in srgb, var(--surface) 72%, transparent);
}

.subpage .nav-links a[href*="cabinet"]::after {
  display: none;
}

.subpage .theme-toggle {
  min-width: 54px;
  min-height: 38px;
  padding: 0 13px;
  border-color: color-mix(in srgb, var(--brand) 18%, var(--line));
  border-radius: 12px;
  background: color-mix(in srgb, var(--surface-soft) 74%, transparent);
  font-size: 12px;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.subpage .theme-toggle:hover {
  border-color: color-mix(in srgb, var(--brand) 58%, var(--line));
  background: color-mix(in srgb, var(--surface-soft) 94%, transparent);
  transform: translateY(-1px);
}

.subpage .public-language-toggle {
  flex: 0 0 auto;
  min-width: 46px;
  min-height: 42px;
  border-color: color-mix(in srgb, var(--brand) 22%, var(--line));
  color: var(--text);
  background: color-mix(in srgb, var(--surface-soft) 72%, transparent);
  backdrop-filter: blur(14px);
}

.subpage .language-picker {
  flex: 0 0 auto;
}

.subpage .language-toggle {
  min-width: 66px;
  min-height: 38px;
  border-color: color-mix(in srgb, var(--brand) 22%, var(--line));
  color: var(--text);
  background: color-mix(in srgb, var(--surface-soft) 72%, transparent);
  backdrop-filter: blur(14px);
}

.subpage .language-menu {
  border-color: color-mix(in srgb, var(--brand) 20%, var(--line));
  background: color-mix(in srgb, var(--surface) 96%, transparent);
  box-shadow: 0 20px 44px color-mix(in srgb, var(--text) 16%, transparent);
}

.subpage .language-menu button {
  color: var(--text);
}

.subpage .language-menu button:hover,
.subpage .language-menu button[data-current] {
  background: color-mix(in srgb, var(--brand) 13%, transparent);
}

.cabinet-header .language-picker {
  margin-left: auto;
}

.subpage .container {
  position: relative;
  width: min(1180px, calc(100% - 40px));
  max-width: none;
  margin: 0 auto;
  padding: clamp(72px, 9vw, 126px) 0 clamp(84px, 10vw, 132px);
}

.subpage .page-kicker,
.subpage .card-kicker {
  display: block;
  margin-bottom: 14px;
  color: #287df1;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.subpage .container > h1 {
  max-width: 900px;
  margin: 0;
  color: var(--text);
  font-size: clamp(46px, 6.8vw, 82px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.subpage .page-lead {
  max-width: 720px;
  margin: 24px 0 48px;
  font-size: clamp(16px, 1.7vw, 20px);
  line-height: 1.65;
}

.subpage .grid {
  gap: 20px;
}

.subpage .card,
.subpage .table-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--brand) 13%, var(--line));
  border-radius: 26px;
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--surface) 92%, transparent), color-mix(in srgb, var(--surface-soft) 54%, transparent));
  box-shadow:
    inset 0 1px 0 color-mix(in srgb, #ffffff 70%, transparent),
    0 24px 70px color-mix(in srgb, #112846 9%, transparent);
  backdrop-filter: blur(20px) saturate(120%);
}

.subpage .card {
  padding: clamp(26px, 3.2vw, 40px);
}

.subpage .card::before,
.subpage .table-shell::before {
  content: "";
  position: absolute;
  top: 0;
  right: 12%;
  left: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--brand) 42%, #ffffff), transparent);
  opacity: 0.66;
}

.subpage a.card {
  color: var(--text);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.subpage a.card:hover {
  border-color: color-mix(in srgb, var(--brand) 36%, var(--line));
  box-shadow:
    inset 0 1px 0 color-mix(in srgb, #ffffff 74%, transparent),
    0 30px 82px color-mix(in srgb, #175794 13%, transparent);
  transform: translateY(-4px);
}

.subpage .card h2,
.subpage .card h3 {
  color: var(--text);
  line-height: 1.2;
  letter-spacing: -0.035em;
}

.subpage .card h2 {
  font-size: clamp(25px, 2.6vw, 36px);
}

.subpage .card h3 {
  margin-bottom: 14px;
  font-size: clamp(20px, 2vw, 27px);
}

.subpage .card p,
.subpage .card li {
  color: color-mix(in srgb, var(--text) 82%, var(--muted));
}

.subpage .document-grid {
  align-items: stretch;
}

.subpage .document-grid .card,
.subpage .contact-grid .card {
  min-height: 220px;
}

.subpage .document-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  min-height: 30px;
  margin-bottom: 34px;
  padding: 0 10px;
  border: 1px solid color-mix(in srgb, var(--brand) 20%, var(--line));
  border-radius: 999px;
  color: #377ff0;
  background: color-mix(in srgb, var(--surface-soft) 72%, transparent);
  font-size: 11px;
  font-weight: 800;
}

.subpage .download-card {
  max-width: 920px;
}

.subpage .card-heading {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 30px;
}

.subpage .card-heading h2,
.subpage .card-heading .card-kicker {
  margin: 0;
}

.subpage .card-heading .card-kicker {
  margin-bottom: 4px;
}

.subpage .card-icon {
  width: 56px;
  height: 56px;
  flex: 0 0 auto;
  border: 1px solid color-mix(in srgb, var(--brand) 22%, var(--line));
  border-radius: 18px;
  background:
    linear-gradient(145deg, color-mix(in srgb, #1b9dff 18%, transparent), color-mix(in srgb, #6558f5 18%, transparent));
}

.subpage .card-icon-download {
  position: relative;
}

.subpage .card-icon-download::before,
.subpage .card-icon-download::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.subpage .card-icon-download::before {
  top: 14px;
  width: 2px;
  height: 18px;
  background: #3a8cf2;
  box-shadow: -5px 11px 0 -1px #3a8cf2, 5px 11px 0 -1px #3a8cf2;
}

.subpage .card-icon-download::after {
  right: 14px;
  bottom: 12px;
  left: 14px;
  height: 9px;
  border: 2px solid #3a8cf2;
  border-top: 0;
  border-radius: 0 0 4px 4px;
  transform: none;
}

.subpage .release-details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 26px;
}

.subpage .release-details div {
  padding: 18px;
  border: 1px solid color-mix(in srgb, var(--brand) 10%, var(--line));
  border-radius: 17px;
  background: color-mix(in srgb, var(--surface-soft) 58%, transparent);
}

.subpage .release-details dt {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.subpage .release-details dd {
  margin: 0;
  color: var(--text);
  font-weight: 700;
}

.subpage .notice {
  padding: 18px 20px;
  border: 1px solid color-mix(in srgb, #2d8eff 18%, var(--line));
  border-left: 3px solid #2d8eff;
  border-radius: 16px;
  background: color-mix(in srgb, #2d8eff 7%, var(--surface-soft));
}

.subpage .notice p:last-child {
  margin-bottom: 0;
}

.subpage .button {
  min-height: 50px;
  padding: 0 21px;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, #168fff, #6658f5);
  box-shadow: 0 14px 28px rgba(39, 113, 235, 0.2);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.subpage .button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(39, 113, 235, 0.27);
}

.subpage .button.secondary {
  color: var(--text);
  border: 1px solid color-mix(in srgb, var(--brand) 20%, var(--line));
  background: color-mix(in srgb, var(--surface) 76%, transparent);
  box-shadow: none;
}

.subpage .button[aria-disabled="true"] {
  cursor: default;
}

.subpage .button[aria-disabled="true"]:hover {
  transform: none;
}

.subpage .table-shell {
  overflow-x: auto;
  scrollbar-width: thin;
}

.subpage .table {
  width: 100%;
  min-width: 760px;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.subpage .table th,
.subpage .table td {
  padding: 20px 22px;
  border-bottom-color: color-mix(in srgb, var(--brand) 10%, var(--line));
}

.subpage .table th {
  color: #2f78e5;
  background: color-mix(in srgb, var(--surface-soft) 70%, transparent);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.subpage .table tbody tr {
  transition: background 180ms ease;
}

.subpage .table tbody tr:hover {
  background: color-mix(in srgb, var(--brand) 5%, transparent);
}

.subpage .table td:first-child {
  width: 18%;
  color: var(--text);
  font-weight: 700;
}

.subpage .table td:nth-child(2) {
  width: 18%;
  color: #367df0;
  font-weight: 700;
}

.subpage.legal-page .container {
  width: min(960px, calc(100% - 40px));
}

.subpage.legal-page .card {
  padding: clamp(30px, 4vw, 54px);
}

.subpage.legal-page .card h2 {
  margin-top: 44px;
}

.subpage.legal-page .card h2:first-child {
  margin-top: 0;
}

.subpage .error-grid {
  gap: 18px;
}

.subpage .error-card {
  min-height: 220px;
}

.subpage .badge {
  padding: 7px 11px;
  border: 1px solid color-mix(in srgb, var(--brand) 20%, var(--line));
  color: #337fee;
  background: color-mix(in srgb, var(--surface-soft) 72%, transparent);
  font-size: 11px;
  letter-spacing: 0.06em;
}

.subpage .join-card {
  max-width: 760px;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.subpage .footer {
  padding: 0 20px;
  border-top-color: color-mix(in srgb, var(--line) 76%, transparent);
  background: color-mix(in srgb, var(--surface) 62%, transparent);
  backdrop-filter: blur(18px);
}

.subpage .footer-inner {
  width: min(1180px, 100%);
  max-width: none;
  min-height: 94px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  text-align: left;
}

.subpage .footer-brand-link {
  justify-self: start;
  color: var(--text);
  font-weight: 800;
  letter-spacing: -0.035em;
}

.subpage .footer-links {
  display: flex;
  gap: 24px;
}

.subpage .footer-links a {
  color: var(--muted);
  font-size: 12px;
}

.subpage .footer-inner > span {
  justify-self: end;
  font-size: 12px;
}

.subpage .support-widget {
  right: 22px;
  bottom: 18px;
}

.subpage .support-toggle {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 94px;
  height: 32px;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: var(--brand);
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.subpage .support-toggle::before {
  width: 38px;
  height: 1px;
  margin-right: 9px;
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--brand) 82%, #73dcff));
  box-shadow: 0 0 11px color-mix(in srgb, var(--brand) 34%, transparent);
  -webkit-mask: none;
  mask: none;
  transition:
    width 340ms cubic-bezier(0.22, 0.78, 0.2, 1),
    box-shadow 220ms ease;
}

.subpage .support-toggle::after {
  content: "";
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 4h16a2 2 0 0 1 2 2v9a2 2 0 0 1-2 2H9.3L4.8 20.6A.5.5 0 0 1 4 20.2V6a2 2 0 0 1 2-2Zm2 2v11.1L8.6 15H20V6H6Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 4h16a2 2 0 0 1 2 2v9a2 2 0 0 1-2 2H9.3L4.8 20.6A.5.5 0 0 1 4 20.2V6a2 2 0 0 1 2-2Zm2 2v11.1L8.6 15H20V6H6Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.subpage .support-toggle:hover,
.subpage .support-toggle[aria-expanded="true"],
.subpage .support-toggle[data-line-active] {
  color: color-mix(in srgb, var(--brand) 76%, #44cfff);
  background: transparent;
}

.subpage .support-toggle:hover::before,
.subpage .support-toggle[aria-expanded="true"]::before,
.subpage .support-toggle[data-line-active]::before {
  width: 66px;
  box-shadow: 0 0 16px color-mix(in srgb, var(--brand) 54%, transparent);
}

.subpage .support-panel {
  right: 0;
  bottom: 38px;
  width: min(320px, calc(100vw - 44px));
  padding: 22px;
  border-color: color-mix(in srgb, var(--brand) 22%, var(--line));
  border-radius: 22px;
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--surface) 86%, transparent), color-mix(in srgb, var(--surface-soft) 66%, transparent));
  box-shadow:
    inset 0 1px 0 color-mix(in srgb, #ffffff 68%, transparent),
    0 24px 64px rgba(8, 27, 50, 0.22);
  backdrop-filter: blur(28px) saturate(122%);
  transform-origin: 100% 100%;
  animation: support-curtain-in 520ms cubic-bezier(0.22, 0.78, 0.2, 1) both;
}

.subpage .support-panel[data-closing] {
  pointer-events: none;
  animation: support-curtain-out 340ms cubic-bezier(0.4, 0, 0.8, 0.2) both;
}

.subpage .support-panel input,
.subpage .support-panel textarea {
  border-color: color-mix(in srgb, var(--brand) 16%, var(--line));
  border-radius: 13px;
  background: color-mix(in srgb, var(--surface-soft) 64%, transparent);
}

.subpage .support-panel textarea {
  min-height: 82px;
}

.subpage .support-panel .button {
  width: 100%;
}

@media (max-width: 980px) {
  .subpage .nav {
    width: min(100% - 28px, 1240px);
  }

  .subpage .nav-links {
    gap: 13px;
    font-size: 12px;
  }

  .subpage .nav-links a:first-child {
    display: none;
  }

  .subpage .container {
    width: min(100% - 32px, 1180px);
  }
}

@media (max-width: 760px) {
  .subpage .nav {
    min-height: 74px;
    padding: 14px 0 10px;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .subpage .brand {
    font-size: 17px;
  }

  .subpage .brand::before {
    width: 28px;
    height: 23px;
  }

  .subpage .nav-links {
    width: 100%;
    order: 2;
    padding: 6px 0 2px;
    overflow-x: visible;
    flex-wrap: wrap;
    gap: 4px 12px;
    justify-content: flex-start;
  }

  .subpage .nav-links a {
    padding: 8px 0;
  }

  .subpage .nav-links a[href*="cabinet"] {
    padding: 8px 12px;
  }

  .subpage .theme-toggle {
    min-width: 50px;
    min-height: 34px;
  }

  .subpage .public-language-toggle {
    min-width: 52px;
    min-height: 34px;
  }

  .subpage .container {
    width: min(100% - 28px, 1180px);
    padding: 58px 0 84px;
  }

  .subpage .container > h1 {
    font-size: clamp(40px, 13.6vw, 60px);
    line-height: 1.02;
  }

  .subpage .page-lead {
    margin: 20px 0 38px;
    font-size: 16px;
  }

  .subpage .grid,
  .subpage .grid.two {
    grid-template-columns: 1fr;
  }

  .subpage .card {
    padding: 26px;
    border-radius: 22px;
  }

  .subpage .document-grid .card,
  .subpage .contact-grid .card {
    min-height: 0;
  }

  .subpage .document-number {
    margin-bottom: 24px;
  }

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

  .subpage .table {
    min-width: 700px;
  }

  .subpage .footer-inner {
    min-height: 120px;
    padding: 22px 0;
    grid-template-columns: 1fr auto;
  }

  .subpage .footer-links {
    grid-column: 1 / -1;
    grid-row: 2;
    gap: 16px;
    flex-wrap: wrap;
  }

  .subpage .support-widget {
    right: 14px;
    bottom: 14px;
  }
}

@media (max-width: 440px) {
  .subpage .container > h1 {
    letter-spacing: -0.055em;
    overflow-wrap: anywhere;
  }

  .subpage .card-heading {
    align-items: flex-start;
  }

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

  .subpage .footer-inner > span,
  .subpage .footer-brand-link {
    justify-self: start;
  }
}

.launch-qr-dialog {
  width: min(92vw, 520px);
  max-height: min(90vh, 760px);
  padding: 0;
  border: 0;
  color: var(--text);
  background: transparent;
}

.launch-qr-dialog::backdrop {
  background: rgba(4, 15, 31, 0.66);
  backdrop-filter: blur(10px);
}

.launch-qr-panel {
  position: relative;
  padding: 34px;
  overflow: auto;
  border: 1px solid rgba(123, 201, 255, 0.34);
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(241, 249, 255, 0.96), rgba(222, 235, 252, 0.93));
  box-shadow: 0 28px 80px rgba(4, 21, 47, 0.35);
}

[data-theme="dark"] .launch-qr-panel {
  background:
    linear-gradient(145deg, rgba(9, 30, 44, 0.96), rgba(16, 34, 62, 0.95));
}

.launch-qr-panel h2 {
  margin: 10px 0 8px;
  font-size: clamp(27px, 5vw, 38px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.launch-qr-copy,
.launch-qr-security {
  color: var(--muted);
  line-height: 1.6;
}

.launch-qr-close {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(123, 201, 255, 0.28);
  border-radius: 50%;
  color: currentColor;
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
  font-size: 24px;
}

.launch-qr-plan {
  margin: 18px 0 0;
  padding: 12px 14px;
  border-left: 2px solid #5684ff;
  color: var(--text);
  background: rgba(86, 132, 255, 0.08);
}

.launch-qr-frame {
  display: grid;
  place-items: center;
  min-height: 286px;
  margin-top: 20px;
  padding: 14px;
  border: 1px solid rgba(123, 201, 255, 0.28);
  border-radius: 22px;
  background: #fff;
}

.launch-qr-frame img {
  display: block;
  width: min(100%, 256px);
  height: auto;
}

.launch-qr-status {
  max-width: 290px;
  color: #28415e;
  text-align: center;
}

.launch-qr-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.launch-qr-actions .button {
  justify-content: center;
}

.launch-qr-security {
  margin: 18px 0 0;
  font-size: 12px;
}

@media (max-width: 620px) {
  .launch-qr-panel {
    padding: 28px 20px 22px;
    border-radius: 22px;
  }

  .launch-qr-actions {
    flex-direction: column;
  }
}
