:root {
  color-scheme: dark;
  --bg: #0b0b0b;
  --bg-soft: #111110;
  --surface: #181817;
  --surface-2: #20201e;
  --line: #30302c;
  --line-strong: #4c4633;
  --text: #f1efe7;
  --muted: #aaa79c;
  --accent: #f3b52b;
  --accent-dark: #c88600;
  --ink: #17130a;
  --radius: 18px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
  --header-h: 72px;
}

* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 20px);
}

body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overscroll-behavior-x: none;
  color: var(--text);
  background:
    radial-gradient(circle at 28% 10%, rgba(243, 181, 43, 0.07), transparent 28rem),
    var(--bg);
  font-family: "Avenir Next", Avenir, "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

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

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

button,
input {
  font: inherit;
}

button:focus-visible,
a:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--accent);
  border-radius: 8px;
  transform: translateY(-160%);
}

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

.section-shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.section-pad {
  padding-block: 88px;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 15;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(11, 11, 11, 0.86);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.nav-shell {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(1240px, calc(100% - 40px));
  height: var(--header-h);
  margin: auto;
}

.brand {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  width: max-content;
  color: var(--text);
  font-size: 15px;
  font-weight: 750;
  letter-spacing: -0.02em;
}

.brand-mark {
  display: block;
  width: 34px;
  height: 34px;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(243, 181, 43, 0.16));
}

.desktop-nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 400px;
  height: 52px;
  padding: 6px;
  overflow: visible;
  background: transparent;
  border-radius: 40px;
  font-size: 13px;
}

.desktop-nav a,
.login-link {
  color: #d2d0c8;
  transition: color 180ms ease;
}

.desktop-nav a {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 76px;
  height: 38px;
  padding: 0 18px;
  border-radius: 12px;
  transition: color 160ms ease, background 160ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible,
.desktop-nav a.is-current {
  color: var(--ink);
  background: var(--button-bg);
}

.login-link:hover {
  color: var(--accent);
}

.nav-actions {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: flex-end;
  font-size: 13px;
}

.register-link {
  padding: 10px 18px;
  color: var(--ink);
  font-weight: 700;
  background: var(--accent);
  border-radius: 10px;
  transition: transform 180ms ease, background 180ms ease;
}

.register-link:hover {
  background: #ffc84b;
  transform: translateY(-2px);
}

.register-link:active,
.primary-button:active {
  transform: translateY(1px) scale(0.98);
}

.menu-toggle {
  display: none;
  width: 38px;
  height: 38px;
  padding: 9px;
  color: var(--text);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 1px;
  margin: 4px 0;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 76px;
  align-items: center;
  isolation: isolate;
  min-height: 100dvh;
  padding-top: calc(var(--header-h) + 42px);
  padding-bottom: 42px;
}

.hero::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: 0;
  width: 100vw;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at 70% 22%, rgba(44, 255, 201, 0.16), transparent 31rem),
    radial-gradient(circle at 16% 42%, rgba(243, 181, 43, 0.12), transparent 28rem),
    linear-gradient(180deg, rgba(11, 11, 11, 0.16), rgba(11, 11, 11, 0.96) 92%);
  transform: translateX(-50%);
}

.hero::after {
  position: absolute;
  top: 0;
  bottom: -1px;
  left: 50%;
  z-index: 1;
  width: 100vw;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(11, 11, 11, 0.76), rgba(11, 11, 11, 0.28) 45%, rgba(11, 11, 11, 0.7)),
    linear-gradient(180deg, transparent 72%, var(--bg));
  transform: translateX(-50%);
}

.hero-aurora {
  position: absolute;
  top: 0;
  bottom: -1px;
  left: 50%;
  z-index: 0;
  display: none;
  width: 100vw;
  overflow: hidden;
  pointer-events: none;
  background:
    radial-gradient(circle at 74% 10%, rgba(44, 255, 201, 0.16), transparent 30rem),
    linear-gradient(180deg, rgba(11, 11, 11, 0.15), rgba(0, 0, 0, 0.9));
  transform: translateX(-50%);
}

.hero-aurora canvas {
  width: 100%;
  height: 100%;
  opacity: 0.82;
  mix-blend-mode: screen;
}

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

.eyebrow {
  margin: 0 0 20px;
  color: var(--accent);
  font-family: "Courier New", monospace;
  font-size: 12px;
  letter-spacing: 0.18em;
}

.hero h1 {
  max-width: 700px;
  margin: 0;
  font-size: clamp(50px, 6.2vw, 86px);
  font-weight: 650;
  line-height: 1.02;
  letter-spacing: -0.065em;
}

.hero h1 em {
  display: inline-block;
  padding-bottom: 7px;
  color: var(--accent);
  font-style: normal;
}

.hero-desc {
  max-width: 420px;
  margin: 26px 0 32px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.hero-text-type {
  display: block;
  min-height: 1.75em;
  margin-top: 10px;
  color: var(--accent);
  font-weight: 720;
  letter-spacing: 0;
}

.hero-text-type-text {
  color: inherit;
}

.hero-text-type-cursor {
  display: inline-block;
  margin-left: 3px;
  color: #ffe08b;
  font-weight: 500;
  animation: text-type-cursor 0.8s ease-in-out infinite alternate;
}

@keyframes text-type-cursor {
  from { opacity: 1; }
  to { opacity: 0.18; }
}

.primary-button {
  --button-text: #17130a;
  --button-outline: color-mix(in srgb, var(--button-bg) 26%, transparent);
  --button-press-shadow: rgba(0, 0, 0, 0.25);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 166px;
  padding: 10px 0 10px 24px;
  color: var(--button-text);
  font-size: 18px;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  background: var(--button-bg);
  border: 0;
  border-radius: 9999px;
  box-shadow: 0 0 0.35em 0 color-mix(in srgb, var(--button-bg) 62%, transparent);
  cursor: pointer;
  outline: none;
  transition: background 500ms ease, box-shadow 500ms ease, transform 160ms ease;
}

.primary-button-label {
  display: inline-block;
  margin-right: 0.35em;
  text-align: center;
  transition: text-shadow 500ms ease;
}

.primary-button-icon {
  position: relative;
  width: 24px;
  height: auto;
  margin-right: -0.18em;
  fill: currentColor;
  transition: margin-right 500ms ease, filter 500ms ease;
}

.primary-button-icon polygon:nth-child(1) {
  transform: translateX(-60%);
  transition: transform 400ms ease;
}

.primary-button-icon polygon:nth-child(2) {
  transform: translateX(-30%);
  transition: transform 500ms ease;
}

.primary-button:active {
  transform: scale(0.95);
}

.primary-button:hover {
  background: var(--button-bg-hover);
  box-shadow: 0 0 1em 0 color-mix(in srgb, var(--button-bg) 76%, transparent);
  animation: primary-button-ripple 1s linear infinite, primary-button-colorize 1s ease-in-out infinite;
}

.primary-button:hover .primary-button-label {
  text-shadow: 5px 5px 5px var(--button-press-shadow);
}

.primary-button:active .primary-button-label {
  text-shadow: none;
}

.primary-button:hover .primary-button-icon {
  margin-right: 0.34em;
  filter: drop-shadow(5px 5px 2.5px var(--button-press-shadow));
}

.primary-button:active .primary-button-icon {
  filter: none;
}

.primary-button:hover .primary-button-icon polygon:nth-child(1),
.primary-button:hover .primary-button-icon polygon:nth-child(2) {
  transform: translateX(0%);
}

.primary-button:hover .primary-button-icon polygon:nth-child(1) {
  animation: primary-button-opacity 1s infinite 0.6s;
}

.primary-button:hover .primary-button-icon polygon:nth-child(2) {
  animation: primary-button-opacity 1s infinite 0.4s;
}

.primary-button:hover .primary-button-icon polygon:nth-child(3) {
  animation: primary-button-opacity 1s infinite 0.2s;
}

@keyframes primary-button-opacity {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

@keyframes primary-button-colorize {
  0%, 100% { background: var(--button-bg); }
  50% { background: var(--button-bg-hover); }
}

@keyframes primary-button-ripple {
  0% {
    outline: 0 solid transparent;
    outline-offset: -0.1em;
  }

  50% {
    outline: 0.18em solid var(--button-outline);
    outline-offset: 0.2em;
  }

  100% {
    outline: 0.36em solid transparent;
    outline-offset: 0.4em;
  }
}

.hero-gallery {
  position: relative;
  z-index: 2;
  min-width: 0;
  height: min(600px, 68vh);
}

.slide-stack {
  position: relative;
  height: 100%;
  cursor: pointer;
  perspective: 1400px;
}

.slide-stack:active .hero-slide.is-active {
  transform: translate3d(0, 0, 0) rotate(-1.4deg) scale(0.985);
}

.slide-stack:focus-visible .hero-slide.is-active {
  outline: 2px solid var(--accent);
  outline-offset: 5px;
}

.hero-slide {
  position: absolute;
  inset: 3% 0 7% 7%;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translate3d(8%, 2%, -140px) rotate(2deg) scale(0.92);
  transition: opacity 700ms cubic-bezier(0.16, 1, 0.3, 1), transform 800ms cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-slide::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(180deg, transparent 48%, rgba(7, 7, 7, 0.86) 100%);
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide.is-active {
  z-index: 3;
  opacity: 1;
  transform: translate3d(0, 0, 0) rotate(-1.4deg) scale(1);
}

.hero-slide.was-active {
  z-index: 2;
  opacity: 0.42;
  transform: translate3d(-6%, 5%, -100px) rotate(-5deg) scale(0.91);
}

.slide-caption {
  position: absolute;
  right: 28px;
  bottom: 25px;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
}

.slide-caption strong {
  max-width: 190px;
  font-size: 16px;
  font-weight: 600;
  text-align: right;
}

.hero-pagination {
  position: absolute;
  right: 28px;
  bottom: 0;
  z-index: 5;
  display: flex;
  gap: 8px;
}

.hero-pagination button {
  width: 28px;
  height: 3px;
  padding: 0;
  cursor: pointer;
  background: #57564f;
  border: 0;
  border-radius: 2px;
  transition: width 180ms ease, background 180ms ease;
}

.hero-pagination button.is-active {
  width: 48px;
  background: var(--accent);
}

.signal-card {
  position: absolute;
  bottom: 4%;
  left: 0;
  z-index: 5;
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 15px 18px;
  color: var(--accent);
  font-family: "Courier New", monospace;
  font-size: 11px;
  background: rgba(29, 29, 27, 0.9);
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  box-shadow: var(--shadow);
  transform: rotate(3deg);
}

.signal-card i {
  font-size: 20px;
}

.marquee-section {
  overflow: hidden;
  padding-block: 18px;
  background: var(--accent);
  border-block: 1px solid #ffe08b;
}

.marquee-row {
  overflow: hidden;
}

.marquee-row + .marquee-row {
  margin-top: 8px;
  color: rgba(23, 19, 10, 0.7);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.marquee-track.is-scroll-velocity {
  animation: none;
  will-change: transform;
}

.marquee-row.reverse .marquee-track {
  animation-direction: reverse;
  animation-duration: 34s;
}

.marquee-track span {
  display: flex;
  gap: 22px;
  align-items: center;
  color: var(--ink);
  font-family: "Courier New", monospace;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.marquee-track span::after {
  width: 5px;
  height: 5px;
  margin-right: 22px;
  content: "";
  background: currentColor;
  transform: rotate(45deg);
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.section-heading {
  margin-bottom: 62px;
}

.section-heading h2,
.access-intro h2,
.security-copy h2 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(38px, 5vw, 66px);
  font-weight: 620;
  line-height: 1.1;
  letter-spacing: -0.052em;
}

.scroll-float-title {
  overflow: hidden;
}

.scroll-float-char {
  display: inline-block;
  will-change: opacity, transform;
}

.section-heading p,
.access-intro > p,
.security-copy header > p {
  max-width: 620px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.benefits {
  background: var(--bg-soft);
}

.benefit-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr 1fr;
  grid-template-rows: 260px 290px;
  gap: 16px;
}

.benefit-card {
  --border-glow-angle: 45deg;
  --border-glow-border-opacity: 0;
  --border-glow-glow-opacity: 0;

  position: relative;
  z-index: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  isolation: isolate;
  overflow: visible;
  padding: 30px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color 220ms ease, transform 220ms ease;
}

.benefit-card::before,
.benefit-card::after {
  position: absolute;
  pointer-events: none;
  content: "";
  border-radius: inherit;
}

.benefit-card::before {
  inset: -1px;
  z-index: 0;
  border: 1px solid transparent;
  opacity: var(--border-glow-border-opacity);
  background:
    linear-gradient(var(--surface) 0 100%) padding-box,
    linear-gradient(rgb(255 255 255 / 0%) 0 100%) border-box,
    radial-gradient(at 80% 55%, #ec540d 0, transparent 52%) border-box,
    radial-gradient(at 69% 34%, #0c6fd9 0, transparent 52%) border-box,
    radial-gradient(at 8% 6%, #ff7a59 0, transparent 52%) border-box,
    radial-gradient(at 41% 38%, #f3b52b 0, transparent 52%) border-box,
    radial-gradient(at 86% 85%, #24d6b5 0, transparent 52%) border-box,
    linear-gradient(135deg, #f3b52b, #f20909 48%, #ff7a59) border-box;
  mask-image: conic-gradient(
    from var(--border-glow-angle) at center,
    black 24%,
    transparent 39%,
    transparent 61%,
    black 76%
  );
  -webkit-mask-image: conic-gradient(
    from var(--border-glow-angle) at center,
    black 24%,
    transparent 39%,
    transparent 61%,
    black 76%
  );
  transition: opacity 260ms ease-out;
}

.benefit-card::after {
  inset: 0;
  z-index: 1;
  opacity: var(--border-glow-glow-opacity);
  box-shadow:
    inset 0 0 1px 0 hsl(40deg 90% 72% / 60%),
    inset 0 0 6px 0 hsl(40deg 90% 72% / 38%),
    inset 0 0 18px 1px hsl(40deg 90% 72% / 22%),
    0 0 2px 0 hsl(40deg 90% 72% / 50%),
    0 0 10px 1px hsl(40deg 90% 72% / 28%),
    0 0 32px 4px hsl(40deg 90% 72% / 16%);
  mix-blend-mode: plus-lighter;
  mask-image: conic-gradient(
    from var(--border-glow-angle) at center,
    black 2.5%,
    transparent 10%,
    transparent 90%,
    black 97.5%
  );
  -webkit-mask-image: conic-gradient(
    from var(--border-glow-angle) at center,
    black 2.5%,
    transparent 10%,
    transparent 90%,
    black 97.5%
  );
  transition: opacity 260ms ease-out;
}

.benefit-card > * {
  position: relative;
  z-index: 2;
}

.benefit-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-5px);
}

.benefit-card h3 {
  margin: 20px 0 10px;
  font-size: 21px;
  letter-spacing: -0.025em;
}

.benefit-card p {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.benefit-icon {
  display: grid;
  width: 38px;
  height: 38px;
  color: var(--accent);
  font-size: 21px;
  background: #28251d;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  place-items: center;
}

.benefit-wide {
  grid-column: span 2;
  flex-direction: row;
  gap: 24px;
  align-items: flex-start;
}

.benefit-wide > div:nth-child(2) {
  margin-right: auto;
}

.benefit-wide h3 {
  margin-top: 0;
}

.route-visual {
  display: flex;
  gap: 12px;
  align-items: center;
  align-self: center;
  padding: 14px 16px;
  color: #77736a;
  font-family: "Courier New", monospace;
  font-size: 9px;
  background: #121211;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.route-visual i {
  width: 8px;
  height: 8px;
  background: rgba(93, 247, 62, 0.32);
  border-radius: 2px;
  box-shadow: 0 0 0 rgba(93, 247, 62, 0);
  animation-duration: 4.8s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

.route-visual i:nth-of-type(1) {
  animation-name: routePulseOne;
}

.route-visual i:nth-of-type(2) {
  animation-name: routePulseTwo;
}

.route-visual i:nth-of-type(3) {
  animation-name: routePulseThree;
}

.route-visual i:nth-of-type(4) {
  animation-name: routePulseFour;
}

@keyframes routePulseOne {
  0%, 100% {
    background: #7cff65;
    box-shadow: 0 0 12px rgba(124, 255, 101, 0.92);
  }
  16.66%, 83.33% {
    background: rgba(93, 247, 62, 0.58);
    box-shadow: 0 0 7px rgba(93, 247, 62, 0.5);
  }
  33.33%, 50%, 66.66% {
    background: rgba(93, 247, 62, 0.3);
    box-shadow: 0 0 0 rgba(93, 247, 62, 0);
  }
}

@keyframes routePulseTwo {
  0%, 100%, 50% {
    background: rgba(93, 247, 62, 0.42);
    box-shadow: 0 0 4px rgba(93, 247, 62, 0.25);
  }
  16.66%, 83.33% {
    background: #7cff65;
    box-shadow: 0 0 12px rgba(124, 255, 101, 0.92);
  }
  33.33%, 66.66% {
    background: rgba(93, 247, 62, 0.58);
    box-shadow: 0 0 7px rgba(93, 247, 62, 0.5);
  }
}

@keyframes routePulseThree {
  0%, 100% {
    background: rgba(93, 247, 62, 0.3);
    box-shadow: 0 0 0 rgba(93, 247, 62, 0);
  }
  16.66%, 83.33% {
    background: rgba(93, 247, 62, 0.58);
    box-shadow: 0 0 7px rgba(93, 247, 62, 0.5);
  }
  33.33%, 66.66% {
    background: #7cff65;
    box-shadow: 0 0 12px rgba(124, 255, 101, 0.92);
  }
  50% {
    background: rgba(93, 247, 62, 0.72);
    box-shadow: 0 0 8px rgba(93, 247, 62, 0.58);
  }
}

@keyframes routePulseFour {
  0%, 100%, 16.66%, 83.33% {
    background: rgba(93, 247, 62, 0.3);
    box-shadow: 0 0 0 rgba(93, 247, 62, 0);
  }
  33.33%, 66.66% {
    background: rgba(93, 247, 62, 0.58);
    box-shadow: 0 0 7px rgba(93, 247, 62, 0.5);
  }
  50% {
    background: #7cff65;
    box-shadow: 0 0 12px rgba(124, 255, 101, 0.92);
  }
}

.benefit-tall {
  grid-row: span 2;
}

.latency-visual {
  display: flex;
  gap: 9px;
  align-items: flex-end;
  height: 128px;
  padding-top: 28px;
}

.latency-visual span {
  flex: 1;
  height: 28%;
  background: linear-gradient(180deg, var(--accent), #574315);
  border-radius: 5px 5px 2px 2px;
  animation: latency 2.8s ease-in-out infinite alternate;
  transform-origin: bottom;
}

.latency-visual span:nth-child(2) { height: 48%; animation-delay: -0.4s; }
.latency-visual span:nth-child(3) { height: 78%; animation-delay: -1s; }
.latency-visual span:nth-child(4) { height: 56%; animation-delay: -1.6s; }
.latency-visual span:nth-child(5) { height: 94%; animation-delay: -2.1s; }

@keyframes latency {
  50% { transform: scaleY(0.65); opacity: 0.65; }
}

.benefit-dark {
  background:
    linear-gradient(135deg, rgba(243, 181, 43, 0.11), transparent 55%),
    #15130e;
}

.city-codes {
  display: flex;
  gap: 7px;
  margin-top: 24px;
}

.city-codes span {
  padding: 8px 10px;
  color: var(--accent);
  font-family: "Courier New", monospace;
  font-size: 10px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
}

.benefit-platform {
  flex-direction: row;
  gap: 24px;
  align-items: flex-end;
}

.device-row {
  display: flex;
  gap: 10px;
  padding-bottom: 2px;
  font-size: 25px;
}

.device-row i {
  color: #77746b;
  transition: color 180ms ease, transform 180ms ease;
}

.device-row i:hover {
  color: var(--accent);
  transform: translateY(-4px);
}

.pricing {
  overflow: hidden;
}

.pricing .section-heading {
  text-align: center;
}

.pricing .section-heading h2,
.pricing .section-heading p {
  margin-inline: auto;
}

.pricing-viewport {
  overflow: hidden;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}

.pricing-viewport:active {
  cursor: grabbing;
}

.pricing-track {
  display: flex;
  gap: 16px;
  width: max-content;
  padding: 34px 16px 26px;
  will-change: transform;
}

.price-card {
  position: relative;
  width: 330px;
  min-height: 560px;
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.12);
  transition: border-color 220ms ease, transform 220ms ease;
}

.price-card:hover,
.price-card.is-paused {
  border-color: var(--accent);
  transform: translateY(-7px);
}

.price-card.featured {
  background:
    linear-gradient(160deg, rgba(243, 181, 43, 0.12), transparent 42%),
    #1b1a16;
  border-color: #7b6428;
}

.plan-corner-badge {
  position: absolute;
  top: -24px;
  right: -14px;
  z-index: 3;
  width: 116px;
  height: auto;
  pointer-events: none;
  transform: rotate(7deg);
}

.popular-label {
  position: absolute;
  top: -14px;
  left: 24px;
  padding: 7px 10px;
  color: var(--ink);
  font-family: "Courier New", monospace;
  font-size: 9px;
  font-weight: 900;
  background: var(--accent);
  border-radius: 7px;
}

.plan-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
  font-weight: 650;
}

.plan-top i {
  color: var(--accent);
  font-size: 25px;
}

.plan-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  padding: 7px 10px;
  font-family: "Courier New", monospace;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  border: 1px solid;
  border-radius: 999px;
}

.plan-badge-month {
  color: #8fd3ff;
  background: rgba(27, 118, 255, 0.14);
  border-color: rgba(77, 165, 255, 0.42);
  box-shadow: inset 0 0 18px rgba(77, 165, 255, 0.08);
}

.plan-badge-lifetime {
  color: var(--accent);
  background: rgba(243, 181, 43, 0.14);
  border-color: rgba(243, 181, 43, 0.48);
  box-shadow: inset 0 0 18px rgba(243, 181, 43, 0.1);
}

.price {
  margin-top: 35px;
  font-family: "Courier New", monospace;
  font-size: 54px;
  font-weight: 700;
  letter-spacing: -0.07em;
}

.price small {
  margin-inline: 4px;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0;
}

.traffic {
  display: inline-block;
  margin: 8px 0 18px;
  color: var(--accent);
  font-family: "Courier New", monospace;
  font-size: 11px;
  font-weight: 700;
  font-variant-numeric: lining-nums;
}

.price-card > p {
  min-height: 68px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.price-card ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 26px;
  padding: 0;
  list-style: none;
  color: #d8d5ca;
  font-size: 12px;
}

.price-card li::before {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 10px;
  vertical-align: 2px;
  content: "";
  background: var(--accent);
  border-radius: 1px;
  transform: rotate(45deg);
}

.price-card > a,
.support-module > a {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--text);
  font-size: 13px;
  font-weight: 650;
  border-bottom: 1px solid #706333;
  transition: color 180ms ease, gap 180ms ease;
}

.price-card > a:hover,
.support-module > a:hover {
  gap: 13px;
  color: var(--accent);
}

.pricing-note {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  margin: 4px 0 0;
  color: #77746d;
  font-size: 12px;
}

.access {
  background:
    radial-gradient(circle at 50% 40%, rgba(243, 181, 43, 0.09), transparent 34rem),
    var(--bg-soft);
}

.section-index {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--accent);
  font-family: "Courier New", monospace;
  font-size: 11px;
}

.orbit-stage {
  position: relative;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  grid-template-rows: 1fr auto;
  min-height: 610px;
  margin-top: 64px;
  overflow: hidden;
  background: #0d0d0c;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.orbit-stage::before,
.orbit-stage::after {
  position: absolute;
  top: 50%;
  right: 10%;
  width: 520px;
  height: 520px;
  content: "";
  border: 1px solid rgba(243, 181, 43, 0.14);
  border-radius: 50%;
  transform: translateY(-50%);
}

.orbit-stage::after {
  width: 380px;
  height: 380px;
  border-color: rgba(243, 181, 43, 0.22);
}

.orbit-copy {
  position: absolute;
  bottom: 116px;
  left: 46px;
  z-index: 2;
  max-width: 330px;
  padding: 0;
}

.orbit-title {
  display: flex;
  gap: 16px;
  align-items: center;
}

.orbit-title > i {
  color: var(--accent);
  font-size: 30px;
  line-height: 1;
}

.orbit-copy span,
.lane-title span {
  color: var(--accent);
  font-family: "Courier New", monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
}

.orbit-copy strong {
  display: block;
  margin: 10px 0 13px;
  font-size: 30px;
}

.orbit-copy p {
  max-width: 290px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.brand-orbit {
  position: absolute;
  top: 50%;
  right: 10%;
  z-index: 3;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  animation: orbit-spin 32s linear infinite;
  transform: translateY(-50%);
}

@keyframes orbit-spin {
  from { transform: translateY(-50%) rotate(0); }
  to { transform: translateY(-50%) rotate(360deg); }
}

.brand-chip {
  position: absolute;
  display: grid;
  width: 58px;
  height: 58px;
  padding: 16px;
  background: rgba(26, 26, 23, 0.9);
  border: 1px solid var(--line-strong);
  border-radius: 15px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.34);
  place-items: center;
  animation: counter-spin 32s linear infinite;
}

@keyframes counter-spin {
  from { transform: rotate(0); }
  to { transform: rotate(-360deg); }
}

.brand-chip:nth-child(1) { top: -28px; left: calc(50% - 29px); }
.brand-chip:nth-child(2) { top: calc(50% - 29px); right: -28px; }
.brand-chip:nth-child(3) { bottom: -28px; left: calc(50% - 29px); }
.brand-chip:nth-child(4) { top: calc(50% - 29px); left: -28px; }

.stream-logo-line {
  position: relative;
  grid-row: 2;
  grid-column: 1;
  z-index: 3;
  align-self: start;
  max-width: 360px;
  margin: 0 0 46px 46px;
}

.access-lanes {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
  margin-top: 16px;
}

.access-lane {
  min-width: 0;
  padding: 30px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.lane-title {
  display: flex;
  gap: 16px;
  align-items: center;
}

.lane-title > i {
  color: var(--accent);
  font-size: 30px;
}

.lane-title h3 {
  margin: 5px 0 0;
  font-size: 19px;
}

.logo-line {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 28px;
}

.logo-line img,
.text-logo {
  width: 33px;
  height: 33px;
  padding: 7px;
  background: #11110f;
  border: 1px solid var(--line);
  border-radius: 9px;
}

.text-logo {
  display: grid;
  width: auto;
  color: var(--brand-color, var(--accent));
  font-family: "Courier New", monospace;
  font-size: 9px;
  place-items: center;
}

.brand-chip.text-logo {
  width: 58px;
  height: 58px;
  padding: 0;
  font-size: 13px;
}

.security {
  position: relative;
  overflow: hidden;
}

.security::before {
  position: absolute;
  top: 14%;
  left: -160px;
  width: 480px;
  height: 480px;
  pointer-events: none;
  content: "";
  border: 1px solid rgba(243, 181, 43, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(243, 181, 43, 0.025), 0 0 0 160px rgba(243, 181, 43, 0.018);
}

.security-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 86px;
  align-items: start;
}

.security-visual {
  position: sticky;
  top: calc(var(--header-h) + 50px);
}

.shield-shell {
  position: relative;
  overflow: hidden;
  background: #111;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.shield-shell img {
  width: 100%;
  aspect-ratio: 4 / 4.8;
  object-fit: cover;
}

.scan-line {
  position: absolute;
  top: -12%;
  right: 0;
  left: 0;
  height: 12%;
  background: linear-gradient(180deg, transparent, rgba(243, 181, 43, 0.22), transparent);
  animation: scan 5s ease-in-out infinite;
}

@keyframes scan {
  50%, 100% { transform: translateY(950%); }
}

.secure-status {
  position: absolute;
  right: -25px;
  bottom: 34px;
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 15px 18px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 750;
  background: var(--accent);
  border-radius: 12px;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.38);
}

.security-copy header {
  margin-bottom: 54px;
}

.security-list {
  display: grid;
  gap: 4px;
}

.security-list article {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 18px;
  padding: 28px 4px;
  border-bottom: 1px solid var(--line);
}

.security-num {
  display: grid;
  width: 34px;
  height: 34px;
  color: var(--accent);
  font-family: "Courier New", monospace;
  font-size: 12px;
  background: #211e15;
  border: 1px solid var(--line-strong);
  border-radius: 9px;
  place-items: center;
}

.security-list h3 {
  margin: 0 0 9px;
  font-size: 18px;
}

.security-list p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.support {
  background: var(--bg-soft);
}

.support-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  grid-template-rows: auto auto;
  gap: 16px;
}

.support-module {
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.support-module h3 {
  margin: 0 0 10px;
  font-size: 25px;
}

.support-module p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.tutorial {
  display: flex;
  flex-direction: column;
  min-height: 300px;
  padding: 30px;
  background:
    linear-gradient(150deg, rgba(243, 181, 43, 0.18), transparent 55%),
    var(--surface);
}

.tutorial > i {
  margin-bottom: auto;
  color: var(--accent);
  font-size: 52px;
}

.tutorial > a {
  width: max-content;
  margin-top: 28px;
}

.faq {
  grid-row: span 2;
  padding: 34px;
}

.faq-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 26px;
}

.faq-head > div {
  display: flex;
  gap: 15px;
  align-items: center;
}

.faq-head i {
  display: grid;
  width: 42px;
  height: 42px;
  color: var(--accent);
  font-size: 23px;
  background: #252117;
  border-radius: 10px;
  place-items: center;
}

.faq-head h3 {
  margin: 0;
}

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

.faq-item button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 22px 0;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  background: transparent;
  border: 0;
}

.faq-item button i {
  color: var(--accent);
  transition: transform 220ms ease;
}

.faq-item button[aria-expanded="true"] i {
  transform: rotate(45deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 280ms ease;
}

.faq-answer p {
  overflow: hidden;
  padding-right: 30px;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-answer p {
  padding-bottom: 22px;
}

.download {
  position: relative;
  min-height: 280px;
  padding: 30px;
}

.download > div:nth-child(2) {
  position: relative;
  z-index: 2;
  max-width: 260px;
}

.download > a {
  position: absolute;
  bottom: 30px;
  left: 30px;
  z-index: 2;
}

.download-art {
  position: absolute;
  right: -24px;
  bottom: -20px;
  display: flex;
  gap: 0;
  align-items: flex-end;
  color: #393832;
  font-size: 126px;
  transform: rotate(-7deg);
}

.download-art i:first-child {
  margin-right: -35px;
  color: #51482f;
  font-size: 92px;
}

.download-page main {
  overflow: hidden;
}

.download-hero {
  position: relative;
  display: grid;
  grid-template-columns: 0.92fr 0.78fr;
  gap: 56px;
  align-items: center;
  min-height: 64dvh;
  padding-top: calc(var(--header-h) + 44px);
  padding-bottom: 30px;
}

.download-hero::before {
  position: absolute;
  top: 12%;
  right: -18%;
  width: min(58vw, 680px);
  height: min(58vw, 680px);
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle, color-mix(in srgb, var(--accent) 18%, transparent), transparent 64%),
    radial-gradient(circle at 35% 35%, rgba(44, 255, 201, 0.12), transparent 42%);
  border-radius: 50%;
  filter: blur(4px);
}

.download-kicker {
  display: inline-flex;
  width: max-content;
  margin-bottom: 20px;
  color: var(--accent-dark);
  font-family: "Courier New", monospace;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.download-hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(54px, 8.2vw, 112px);
  line-height: 0.92;
  letter-spacing: -0.07em;
}

.download-hero p {
  max-width: 520px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.download-recommend-card {
  position: relative;
  z-index: 1;
  perspective: 1000px;
}

.card-effect {
  perspective: 1000px;
}

.card-inner {
  --card-bg: var(--surface);
  --card-accent: var(--button-bg);
  --card-accent-hover: var(--button-bg-hover);
  --card-text: var(--text);
  --card-muted: var(--muted);
  position: relative;
  min-height: 448px;
  overflow: hidden;
  background:
    linear-gradient(160deg, color-mix(in srgb, var(--accent) 13%, transparent), transparent 46%),
    var(--card-bg);
  border: 1px solid color-mix(in srgb, var(--accent) 28%, var(--line));
  border-radius: 20px;
  box-shadow: var(--shadow);
  transform-style: preserve-3d;
  transition:
    transform 0.6s cubic-bezier(0.23, 1, 0.32, 1),
    box-shadow 0.6s cubic-bezier(0.23, 1, 0.32, 1),
    border-color 0.3s ease;
}

.card__liquid {
  position: absolute;
  top: -90px;
  left: -18px;
  width: 360px;
  height: 230px;
  background:
    radial-gradient(circle at 32% 42%, color-mix(in srgb, var(--button-bg-hover) 94%, white), transparent 48%),
    color-mix(in srgb, var(--accent) 76%, #23c1a4);
  border-radius: 50%;
  opacity: 0.18;
  filter: blur(72px);
  transform: translateZ(-80px);
  transition:
    transform 0.7s cubic-bezier(0.36, 0, 0.66, -0.56),
    opacity 0.3s ease-in-out;
}

.card__shine {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.08) 30%,
    rgba(255, 255, 255, 0.44) 50%,
    rgba(255, 255, 255, 0.08) 70%
  );
  opacity: 0;
}

.card__glow {
  position: absolute;
  inset: -18px;
  pointer-events: none;
  background: radial-gradient(
    circle at 50% 0%,
    color-mix(in srgb, var(--accent) 36%, transparent) 0%,
    transparent 62%
  );
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}

.card__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  min-height: 448px;
  padding: 28px;
  gap: 16px;
}

.card__badge {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  padding: 6px 10px;
  color: var(--ink);
  font-family: "Courier New", monospace;
  font-size: 11px;
  font-weight: 900;
  background: var(--card-accent);
  border-radius: 999px;
  box-shadow: var(--button-shadow);
  opacity: 0;
  transform: scale(0.76);
  transition: opacity 0.5s ease 0.15s, transform 0.5s ease 0.15s;
}

.card__image {
  position: relative;
  display: grid;
  align-content: space-between;
  width: 100%;
  min-height: 132px;
  padding: 22px;
  overflow: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 20% 82%, rgba(255, 255, 255, 0.32), transparent 38%),
    linear-gradient(135deg, var(--button-bg-hover), var(--button-bg));
  border-radius: 16px;
  box-shadow: 0 16px 30px color-mix(in srgb, var(--accent) 22%, transparent);
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.card__image::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.18) 0%, transparent 40%),
    repeating-linear-gradient(
      -45deg,
      rgba(255, 255, 255, 0.09) 0,
      rgba(255, 255, 255, 0.09) 3px,
      transparent 3px,
      transparent 7px
    );
  opacity: 0.72;
}

.card__image-label,
.card__image-title {
  position: relative;
  z-index: 1;
}

.card__image-label {
  color: color-mix(in srgb, var(--ink) 82%, transparent);
  font-family: "Courier New", monospace;
  font-size: 12px;
  font-weight: 900;
}

.card__image-title {
  max-width: 100%;
  color: var(--ink);
  font-size: clamp(34px, 4.2vw, 54px);
  line-height: 0.95;
  letter-spacing: -0.065em;
}

.card__text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card__description {
  position: relative;
  z-index: 1;
  max-width: 390px;
  margin: 0;
  color: var(--card-muted);
  font-size: 14px;
  line-height: 1.75;
  transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
}

.card__footer {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.card__system span {
  display: block;
  margin-bottom: 5px;
  color: var(--card-muted);
  font-size: 12px;
}

.card__system strong {
  display: block;
  color: var(--card-text);
  font-size: 22px;
  letter-spacing: -0.04em;
  transition: color 0.4s ease-in-out, transform 0.4s ease-in-out;
}

.recommend-action,
.recommend-secondary {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 16px;
  font-size: 14px;
  font-weight: 760;
  border-radius: 12px;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.recommend-action {
  flex: 0 0 auto;
  min-width: 176px;
  color: var(--ink);
  white-space: nowrap;
  background: var(--button-bg);
  border: 1px solid var(--button-bg);
  box-shadow: var(--button-shadow);
}

.card__button i {
  font-size: 16px;
}

.recommend-action:hover,
.recommend-action:focus-visible {
  color: var(--ink);
  background: var(--button-bg-hover);
  border-color: var(--button-bg-hover);
  box-shadow: 0 12px 26px color-mix(in srgb, var(--button-bg-hover) 30%, transparent);
}

.recommend-secondary {
  color: var(--text);
  min-height: 44px;
  background: color-mix(in srgb, var(--surface) 72%, transparent);
  border: 1px solid var(--line);
}

.recommend-secondary:hover,
.recommend-secondary:focus-visible {
  color: var(--ink);
  background: var(--button-bg);
  border-color: var(--button-bg);
}

.recommend-action:active,
.recommend-secondary:active {
  transform: translateY(1px) scale(0.98);
}

@media (prefers-reduced-motion: no-preference) {
  .card-inner:hover {
    border-color: color-mix(in srgb, var(--accent) 62%, var(--line));
    box-shadow: 0 30px 62px color-mix(in srgb, var(--accent) 20%, rgba(0, 0, 0, 0.16));
    transform: rotateY(8deg) rotateX(7deg) translateZ(10px);
  }

  .card-inner:hover .card__liquid {
    opacity: 0.68;
    transform: translateZ(-50px) translateY(34px) translateX(-24px) rotate(-18deg) scale(1.16);
  }

  .card-inner:hover .card__shine {
    opacity: 1;
    animation: recommend-shine-effect 1.9s infinite linear;
  }

  .card-inner:hover .card__glow {
    opacity: 1;
  }

  .card-inner:hover .card__badge {
    opacity: 1;
    transform: scale(1);
  }

  .card-inner:hover .card__image {
    transform: translateY(-8px) scale(1.035);
  }

  .card-inner:hover .card__description,
  .card-inner:hover .card__image-title,
  .card-inner:hover .card__system strong {
    transform: translateX(3px);
  }

  .card-inner:hover .card__image-title,
  .card-inner:hover .card__system strong {
    color: color-mix(in srgb, var(--ink) 88%, var(--accent-dark));
  }

  .card-inner:hover .card__button i {
    animation: recommend-pulse-button 1.5s infinite;
  }
}

@keyframes recommend-shine-effect {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(200%); }
}

@keyframes recommend-pulse-button {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.14); }
}

.download-clients {
  background: var(--bg-soft);
}

.download-clients.section-pad {
  padding-block: 42px 46px;
}

.download-section-heading {
  margin-bottom: 22px;
}

.download-section-heading h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1;
  letter-spacing: -0.065em;
}

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

.download-client-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 396px;
  padding: 24px;
  overflow: hidden;
  background:
    linear-gradient(155deg, color-mix(in srgb, var(--accent) 10%, transparent), transparent 45%),
    var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(91, 74, 37, 0.08);
  transition: transform 260ms ease, border-color 220ms ease, box-shadow 260ms ease;
}

.download-client-card::after {
  position: absolute;
  right: -34px;
  bottom: -44px;
  width: 140px;
  height: 140px;
  pointer-events: none;
  content: "";
  background: color-mix(in srgb, var(--accent) 10%, transparent);
  border-radius: 42px;
  transform: rotate(18deg);
}

.download-client-card:hover {
  z-index: 2;
  border-color: var(--accent);
  box-shadow: 0 25px 55px rgba(91, 74, 37, 0.16);
  transform: translateY(-9px);
}

.download-client-icon {
  display: grid;
  width: 64px;
  height: 64px;
  margin-bottom: 24px;
  color: var(--ink);
  font-size: 34px;
  background: var(--button-bg);
  border-radius: 14px;
  place-items: center;
}

.download-client-card h2 {
  margin: 0;
  font-size: 27px;
  letter-spacing: -0.04em;
}

.download-client-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.download-client-card ul {
  display: grid;
  gap: 9px;
  margin: 22px 0 24px;
  padding: 0;
  color: var(--text);
  font-size: 13px;
  list-style: none;
}

.download-client-card li {
  display: flex;
  gap: 9px;
  align-items: center;
}

.download-client-card li i {
  color: var(--accent);
  font-size: 16px;
}

.download-card-action {
  position: relative;
  z-index: 2;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 46px;
  margin-top: auto;
  color: var(--ink);
  font-size: 14px;
  font-weight: 760;
  background: var(--button-bg);
  border: 1px solid var(--button-bg);
  border-radius: 12px;
  box-shadow: var(--button-shadow);
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.download-card-action:hover,
.download-card-action:focus-visible {
  color: var(--ink);
  background: var(--button-bg-hover);
  border-color: var(--button-bg-hover);
  box-shadow: 0 12px 26px color-mix(in srgb, var(--button-bg-hover) 30%, transparent);
}

.download-card-action:active {
  transform: translateY(1px) scale(0.98);
}

.download-help {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  margin-bottom: 0;
  padding: 28px;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(91, 74, 37, 0.08);
}

.download-help h2 {
  margin: 0 0 10px;
  font-size: 28px;
  letter-spacing: -0.04em;
}

.download-help p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.download-help-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
}

.download-help-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  color: var(--text);
  font-size: 13px;
  font-weight: 720;
  border: 1px solid var(--line);
  border-radius: 12px;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.download-help-actions a:last-child,
.download-help-actions a:hover,
.download-help-actions a:focus-visible {
  color: var(--ink);
  background: var(--button-bg);
  border-color: var(--button-bg);
}

.download-help-actions a:active {
  transform: translateY(1px) scale(0.98);
}

.site-footer {
  padding: 72px 0 26px;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
}

.footer-brand p {
  max-width: 280px;
  margin: 22px 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  display: grid;
  width: 38px;
  height: 38px;
  color: var(--accent);
  font-size: 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  place-items: center;
  transition: background 180ms ease, transform 180ms ease;
}

.social-links a:hover {
  background: #242117;
  transform: translateY(-3px);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.footer-links h3 {
  margin: 0 0 18px;
  color: var(--accent);
  font-family: "Courier New", monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
}

.footer-links a {
  display: block;
  width: max-content;
  margin: 10px 0;
  color: var(--muted);
  font-size: 12px;
  transition: color 180ms ease;
}

.footer-links a:hover {
  color: var(--text);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 64px;
  padding-top: 22px;
  color: #67655f;
  font-family: "Courier New", monospace;
  font-size: 10px;
  border-top: 1px solid #242422;
}

.legal-main {
  min-height: 100dvh;
  padding-top: calc(var(--header-h) + 86px);
  padding-bottom: 88px;
}

.legal-hero {
  position: relative;
  max-width: 860px;
}

.legal-hero::before {
  position: absolute;
  top: -70px;
  right: 0;
  z-index: -1;
  width: 280px;
  height: 280px;
  pointer-events: none;
  content: "";
  background: radial-gradient(circle, color-mix(in srgb, var(--accent) 18%, transparent), transparent 68%);
  filter: blur(4px);
}

.legal-kicker {
  display: inline-block;
  margin-bottom: 20px;
  color: var(--accent);
  font-family: "Courier New", monospace;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.legal-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(44px, 7vw, 82px);
  font-weight: 650;
  line-height: 1.02;
  letter-spacing: -0.06em;
}

.legal-hero p {
  max-width: 640px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.legal-document {
  display: grid;
  gap: 0;
  max-width: 860px;
  margin-top: 68px;
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.legal-section {
  display: grid;
  grid-template-columns: minmax(150px, 0.34fr) minmax(0, 1fr);
  gap: 34px;
  padding: 30px;
  border-bottom: 1px solid var(--line);
}

.legal-section:last-child {
  border-bottom: 0;
}

.legal-section h2 {
  margin: 0;
  color: var(--text);
  font-size: 15px;
  font-weight: 720;
  letter-spacing: -0.01em;
}

.legal-section p,
.legal-section li {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}

.legal-copy {
  display: grid;
  gap: 15px;
}

.legal-copy ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.legal-copy li {
  position: relative;
  padding-left: 18px;
}

.legal-copy li::before {
  position: absolute;
  top: 0.82em;
  left: 0;
  width: 5px;
  height: 5px;
  content: "";
  background: var(--accent);
  border-radius: 1px;
  transform: rotate(45deg);
}

.legal-section a {
  color: var(--accent);
  border-bottom: 1px solid color-mix(in srgb, var(--accent) 40%, transparent);
}

.legal-section a:hover {
  color: var(--text);
  border-bottom-color: currentColor;
}

.legal-contact {
  background: color-mix(in srgb, var(--accent) 7%, transparent);
  border-radius: 0 0 var(--radius) var(--radius);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 750ms cubic-bezier(0.16, 1, 0.3, 1), transform 750ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

@media (max-width: 1024px) {
  .section-pad { padding-block: 72px; }
  .hero { gap: 42px; }
  .hero h1 { font-size: clamp(50px, 6.5vw, 68px); }
  .download-hero {
    grid-template-columns: 1fr;
    gap: 42px;
    min-height: auto;
  }
  .download-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .benefit-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .benefit-wide { grid-column: span 2; }
  .benefit-tall { grid-row: span 2; }
  .benefit-dark,
  .benefit-platform { min-height: 280px; }
  .orbit-stage::before,
  .brand-orbit { right: 1%; }
  .orbit-stage::after { right: 8%; }
  .security-layout { gap: 52px; }
  .legal-main {
    padding-top: calc(var(--header-h) + 72px);
  }
}

@media (min-width: 1025px) {
  .hero-aurora {
    display: block;
  }

  .benefits .scroll-float-title {
    max-width: none;
    white-space: nowrap;
  }
}

@media (max-width: 767px) {
  :root { --header-h: 64px; --radius: 16px; }
  .section-shell { width: min(100% - 32px, 620px); }
  .section-pad { padding-block: 53px; }
  .nav-shell { grid-template-columns: 1fr auto; width: calc(100% - 28px); }
  .desktop-nav { display: none; }
  .desktop-theme-toggle,
  .desktop-login-link {
    display: none;
  }
  .nav-actions { gap: 10px; }
  .register-link { padding: 8px 11px; }
  .menu-toggle {
    position: relative;
    display: grid;
    width: 40px;
    height: 40px;
    padding: 0;
    color: var(--text);
    background: transparent;
    border: 0;
    border-radius: 10px;
    cursor: pointer;
    place-items: center;
    transition: background 300ms ease, border-radius 300ms ease, transform 160ms ease;
  }
  .menu-toggle::before,
  .menu-toggle::after,
  .menu-toggle span {
    position: absolute;
    display: block;
    width: 25px;
    height: 2.1px;
    margin: 0;
    background: currentColor;
    border-radius: 5px;
    transition: background 300ms ease, opacity 300ms ease, transform 300ms ease, width 300ms ease;
  }
  .menu-toggle::before,
  .menu-toggle::after {
    content: "";
  }
  .menu-toggle::before {
    transform: translateY(8px);
  }
  .menu-toggle::after {
    transform: translateY(-8px);
  }
  .menu-toggle span:nth-child(1),
  .menu-toggle span:nth-child(3) {
    display: none;
  }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    width: 0;
    opacity: 0;
    transition-delay: 100ms;
  }
  .menu-toggle[aria-expanded="true"]::before {
    animation: mobile-menu-line-top 400ms ease-out 0s 1 both;
  }
  .menu-toggle[aria-expanded="true"]::after {
    animation: mobile-menu-line-bottom 400ms ease-out 0s 1 both;
  }
  .menu-toggle:hover {
    color: var(--ink);
    background: var(--button-bg);
    border-radius: 50%;
  }
  .menu-toggle:active {
    transform: scale(0.95);
  }
  .mobile-menu {
    display: grid;
    position: fixed;
    top: calc(var(--header-h) + 10px);
    right: 14px;
    width: min(50vw, 220px);
    gap: 0;
    padding: 8px;
    overflow: hidden;
    color: var(--nav-muted);
    background: color-mix(in srgb, var(--surface) 94%, var(--header-bg));
    border: 1px solid color-mix(in srgb, var(--button-bg) 24%, var(--line));
    border-radius: 12px;
    box-shadow: 0 18px 44px color-mix(in srgb, #000 18%, transparent);
    clip-path: inset(0 0 0 0 round 12px);
  }
  .mobile-menu[hidden] { display: none; }
  .mobile-menu a,
  .mobile-menu-theme-row {
    position: relative;
    min-width: 0;
    padding: 10px 8px;
    color: var(--nav-muted);
    font-weight: 760;
    border-radius: 10px;
    transition: color 180ms ease;
  }
  .mobile-menu a::after,
  .mobile-menu-theme-row::after {
    position: absolute;
    right: 5px;
    bottom: 0;
    left: 5px;
    height: 1px;
    content: "";
    background: color-mix(in srgb, var(--line) 72%, transparent);
  }
  .mobile-menu a:hover,
  .mobile-menu a:focus-visible {
    color: var(--accent);
    background: transparent;
  }
  .mobile-menu a[aria-current="page"] {
    color: var(--ink);
    background: var(--button-bg);
  }
  .mobile-menu-login {
    display: flex;
    justify-content: center;
    margin: 8px 4px 4px;
    color: var(--ink) !important;
    background: var(--button-bg);
    box-shadow: 0 10px 24px color-mix(in srgb, var(--button-bg) 22%, transparent);
  }
  .mobile-menu-login::after {
    content: none !important;
  }
  .mobile-menu-login:hover,
  .mobile-menu-login:focus-visible {
    color: var(--ink) !important;
    background: var(--button-bg-hover);
    box-shadow: 0 12px 26px color-mix(in srgb, var(--button-bg-hover) 30%, transparent);
  }
  .mobile-menu-theme-row {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 8px 4px 4px;
    padding: 0;
  }
  .mobile-menu-theme-row::after {
    content: none;
  }
  .mobile-theme-toggle {
    --width-of-switch: 100%;
    --height-of-switch: 40px;
    --size-of-icon: 28px;
    --slider-offset: 6px;
    flex: 0 0 auto;
    width: 100%;
    height: var(--height-of-switch);
  }

  @keyframes mobile-menu-line-top {
    0% { transform: translateY(8px) rotate(0deg); }
    50% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(0) rotate(45deg); }
  }

  @keyframes mobile-menu-line-bottom {
    0% { transform: translateY(-8px) rotate(0deg); }
    50% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(0) rotate(-45deg); }
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 50px;
    align-content: center;
    min-height: auto;
    padding-top: calc(var(--header-h) + 72px);
    padding-bottom: 70px;
  }
  .hero h1 { font-size: clamp(46px, 14vw, 65px); }
  .hero-desc { margin-block: 22px 28px; }
  .hero-gallery { height: min(490px, 116vw); }
  .hero-slide { inset: 0 3% 8% 5%; }
  .slide-caption { right: 18px; bottom: 18px; }
  .signal-card { bottom: 2%; font-size: 9px; }
  .hero-pagination { right: 18px; bottom: 0; }
  .marquee-track span { font-size: 11px; }

  .section-heading { margin-bottom: 42px; }
  .section-heading h2,
  .access-intro h2,
  .security-copy h2 { font-size: clamp(36px, 10.5vw, 50px); }
  .section-heading p,
  .access-intro > p,
  .security-copy header > p { font-size: 15px; }

  .download-hero {
    gap: 22px;
    padding-top: calc(var(--header-h) + 42px);
    padding-bottom: 14px;
  }
  .download-hero h1 {
    font-size: clamp(42px, 12vw, 58px);
  }
  .download-hero p {
    margin-top: 14px;
    font-size: 15px;
  }
  .download-kicker {
    margin-bottom: 15px;
    font-size: 10px;
  }
  .download-clients.section-pad {
    padding-block: 34px 38px;
  }
  .download-section-heading {
    margin-bottom: 18px;
  }
  .download-section-heading h2 {
    font-size: clamp(32px, 9.4vw, 44px);
  }
  .card-inner,
  .card__content {
    min-height: 356px;
  }
  .card__content {
    padding: 18px;
    gap: 12px;
  }
  .card__badge {
    top: 14px;
    right: 14px;
    opacity: 1;
    transform: scale(1);
  }
  .card__image {
    min-height: 112px;
    padding: 15px;
  }
  .card__image-label {
    font-size: 10px;
  }
  .card__image-title {
    font-size: clamp(30px, 9vw, 36px);
    word-break: keep-all;
  }
  .card__description {
    font-size: 13px;
    line-height: 1.55;
  }
  .card__footer {
    display: grid;
    gap: 10px;
  }
  .card__system strong {
    font-size: 20px;
  }
  .recommend-action,
  .recommend-secondary {
    width: 100%;
    min-height: 44px;
  }
  .download-card-grid {
    grid-template-columns: 1fr;
  }
  .download-client-card {
    min-height: auto;
    padding: 22px;
  }
  .download-client-icon {
    margin-bottom: 20px;
  }
  .download-help {
    display: block;
    margin-top: 18px;
    margin-bottom: 0;
    padding: 22px;
  }
  .download-help-actions {
    flex-wrap: wrap;
    margin-top: 18px;
  }
  .download-help-actions a {
    flex: 1 1 130px;
  }

  .benefit-grid { display: grid; grid-template-columns: 1fr; grid-template-rows: auto; }
  .benefit-card,
  .benefit-wide,
  .benefit-platform { grid-column: auto; grid-row: auto; min-height: 260px; }
  .benefit-wide { flex-direction: column; }
  .benefit-platform { flex-direction: column; align-items: flex-start; }
  .route-visual { align-self: stretch; justify-content: center; }

  .pricing-viewport { overflow: hidden; }
  .pricing-track { padding-inline: 16px; }
  .price-card { width: min(82vw, 330px); }
  .plan-corner-badge { top: -18px; right: -10px; width: 104px; }
  .pricing-note { padding-inline: 18px; text-align: center; }

  .orbit-stage {
    grid-template-columns: 1fr;
    min-height: 510px;
    margin-top: 44px;
  }
  .orbit-stage .orbit-copy {
    right: 30px;
    bottom: 106px;
    left: 30px;
    align-self: auto;
    max-width: 300px;
    padding: 0;
  }
  .orbit-stage .stream-logo-line {
    right: 30px;
    bottom: 30px;
    left: 30px;
    align-self: auto;
    max-width: calc(100% - 60px);
    margin: 0;
  }
  .orbit-stage::before,
  .brand-orbit {
    top: 65%;
    right: 50%;
    width: 350px;
    height: 350px;
    transform: translate(50%, -50%);
  }
  .orbit-stage::after {
    top: 65%;
    right: 50%;
    width: 250px;
    height: 250px;
    transform: translate(50%, -50%);
  }
  .brand-orbit { animation-name: orbit-spin-mobile; }
  @keyframes orbit-spin-mobile {
    from { transform: translate(50%, -50%) rotate(0); }
    to { transform: translate(50%, -50%) rotate(360deg); }
  }
  .brand-chip { width: 48px; height: 48px; padding: 13px; }
  .brand-chip.text-logo { width: 48px; height: 48px; padding: 0; }
  .brand-chip:nth-child(1) { top: -24px; left: calc(50% - 24px); }
  .brand-chip:nth-child(2) { top: calc(50% - 24px); right: -24px; }
  .brand-chip:nth-child(3) { bottom: -24px; left: calc(50% - 24px); }
  .brand-chip:nth-child(4) { top: calc(50% - 24px); left: -24px; }
  .access-lanes { grid-template-columns: 1fr; }

  .security-layout { grid-template-columns: 1fr; gap: 64px; }
  .security-visual { position: relative; top: auto; width: calc(100% - 18px); }
  .secure-status { right: -18px; }
  .security-list article { grid-template-columns: 42px 1fr; padding-block: 24px; }

  .support-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .tutorial { order: 1; }
  .download { order: 2; }
  .faq { grid-row: auto; order: 3; padding: 28px 24px; }
  .faq-head { display: block; }
  .faq-head > p { margin-top: 14px; }
  .tutorial,
  .download { min-height: 300px; }

  .legal-main {
    padding-top: calc(var(--header-h) + 52px);
    padding-bottom: 54px;
  }
  .legal-hero p {
    font-size: 15px;
  }
  .legal-document {
    margin-top: 42px;
  }
  .legal-section {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 24px;
  }

  .footer-grid { grid-template-columns: 1fr; gap: 54px; }
  .footer-links { gap: 20px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 10px; }
}

@media (max-width: 420px) {
  .hero h1 { font-size: 45px; }
  .slide-caption strong { max-width: 170px; font-size: 15px; }
  .benefit-card { padding: 24px; }
  .orbit-stage { min-height: 500px; }
  .orbit-stage::before,
  .brand-orbit { width: 300px; height: 300px; }
  .footer-links { grid-template-columns: 1fr 1fr; row-gap: 28px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .scroll-float-char {
    opacity: 1 !important;
    transform: none !important;
    will-change: auto;
  }
  .marquee-track.is-scroll-velocity {
    transform: none !important;
    will-change: auto;
  }
  .pricing-track { transform: none !important; }
  .hero-aurora canvas { opacity: 0.42; }
}

@media (prefers-reduced-transparency: reduce) {
  .site-header {
    background: #0b0b0b;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .hero-aurora canvas {
    opacity: 0.35;
  }
}

/* Fusion revision: layout language from the supplied concept, interaction system from the original build. */
.nav-shell {
  width: min(1280px, calc(100% - 64px));
}

.nav-brand {
  gap: 13px;
  color: var(--accent);
  font-size: 24px;
  font-weight: 800;
}

.nav-brand .brand-mark {
  width: 46px;
  height: 46px;
}

.desktop-nav {
  font-family: "Courier New", monospace;
  font-size: 14px;
}

.nav-actions {
  font-family: "Courier New", monospace;
  font-size: 14px;
}

.register-link {
  padding: 12px 25px;
  border-radius: 999px;
}

.hero {
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}

.hero h1 {
  max-width: 630px;
  font-size: clamp(58px, 6.4vw, 88px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.055em;
}

.hero-desc {
  max-width: 580px;
  margin: 28px 0 38px;
  color: #d0c7b5;
  font-size: clamp(18px, 1.8vw, 23px);
  line-height: 1.65;
}

.primary-button {
  min-width: 184px;
  padding: 10px 0 10px 24px;
  font-family: "Courier New", monospace;
  font-size: 17px;
  border-radius: 999px;
}

.primary-button-icon {
  width: 24px;
  height: auto;
}

.hero-slide {
  transform-origin: bottom right;
}

.hero-slide.is-active {
  transform: translate3d(0, 0, 0) rotate(0) scale(1);
}

.hero-slide.was-active {
  z-index: 5;
  opacity: 0;
  transform: translate3d(108%, -10%, 0) rotate(15deg) scale(0.94);
}

.hero-slide:not(.is-active):not(.was-active) {
  z-index: 1;
  opacity: 0.58;
  transform: translate3d(4%, 7%, -110px) rotate(3deg) scale(0.92);
}

.marquee-dark {
  padding-block: 30px;
  background:
    linear-gradient(90deg, #0d0d0c, rgba(243, 181, 43, 0.065), #0d0d0c);
  border-color: rgba(243, 181, 43, 0.16);
}

.marquee-dark .marquee-row + .marquee-row {
  margin-top: 17px;
}

.marquee-dark .marquee-track {
  animation-duration: 30s;
}

.marquee-dark .marquee-row.reverse .marquee-track {
  animation-duration: 35s;
}

.marquee-dark .marquee-track span {
  color: var(--accent);
  font-family: "Avenir Next", Avenir, "Noto Sans SC", sans-serif;
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 800;
  letter-spacing: 0.04em;
}

.marquee-dark .marquee-row.reverse .marquee-track span {
  color: #ffb26b;
}

.marquee-dark .marquee-track span::after {
  width: auto;
  height: auto;
  margin-right: 22px;
  content: "•";
  background: none;
  transform: none;
}

.centered-heading {
  text-align: center;
}

.centered-heading h2,
.centered-heading p {
  margin-inline: auto;
}

.benefit-grid {
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 410px;
  gap: 18px;
}

.benefit-card,
.benefit-wide,
.benefit-tall,
.benefit-dark,
.benefit-platform {
  grid-column: auto;
  grid-row: auto;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  min-height: 0;
  padding: 32px;
  background:
    linear-gradient(145deg, rgba(243, 181, 43, 0.035), transparent 45%),
    var(--surface);
}

.benefit-card:hover {
  background:
    linear-gradient(145deg, rgba(243, 181, 43, 0.09), transparent 50%),
    var(--surface-2);
}

.benefit-card h3,
.benefit-wide h3 {
  margin: 28px 0 13px;
  font-size: 22px;
}

.benefit-card p {
  min-height: 94px;
}

.benefit-card .route-visual,
.benefit-card .latency-visual,
.benefit-card .city-codes,
.benefit-card .device-row {
  margin-top: auto;
}

.benefit-card .route-visual {
  width: 100%;
  justify-content: space-between;
}

.benefit-card .latency-visual {
  width: 100%;
  height: 86px;
  padding-top: 15px;
}

.benefit-card .device-row {
  padding-bottom: 8px;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 342px;
  min-height: 620px;
  padding: 34px;
  border-radius: 24px;
}

.price-card:hover,
.price-card.is-paused {
  box-shadow: 0 0 34px rgba(243, 181, 43, 0.13);
}

.price-card.featured {
  padding-top: 58px;
  border-color: rgba(243, 181, 43, 0.7);
  box-shadow:
    0 0 30px rgba(243, 181, 43, 0.13),
    inset 0 1px 0 rgba(255, 220, 135, 0.18);
}

.plan-choice-label {
  position: absolute;
  top: -18px;
  left: 50%;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 148px;
  height: 42px;
  padding: 0 22px;
  color: #51360f;
  font-family: "Courier New", monospace;
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.05em;
  text-shadow: 0 1px 0 rgba(255, 246, 209, 0.48);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.68), transparent 42%),
    linear-gradient(180deg, #fce8aa 0%, #f4c966 56%, #d99c35 100%);
  border: 1px solid rgba(255, 229, 158, 0.74);
  border-radius: 13px;
  box-shadow:
    0 0 6px rgba(255, 220, 128, 0.48),
    0 0 14px rgba(243, 181, 43, 0.3),
    0 8px 18px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.56),
    inset 0 -1px 0 rgba(129, 82, 22, 0.22);
  transform: translateX(-50%);
}

.plan-choice-label::before,
.plan-choice-label::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.plan-choice-label::before {
  inset: -6px -12px -8px;
  z-index: -1;
  background:
    radial-gradient(ellipse at center, rgba(255, 213, 111, 0.36), rgba(255, 196, 67, 0.14) 44%, transparent 72%);
  filter: blur(3px);
}

.plan-choice-label::after {
  top: 5px;
  right: 12px;
  left: 12px;
  height: 10px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.34), transparent);
  border-radius: 999px;
}

.plan-corner-badge {
  width: 124px;
}

.plan-summary {
  min-height: auto !important;
  margin: 12px 0 0 !important;
  color: var(--muted) !important;
  font-size: 14px !important;
}

.price {
  margin-top: 30px;
  font-size: 57px;
}

.traffic {
  margin-bottom: 22px;
}

.price-card ul {
  gap: 15px;
  margin: 6px 0 30px;
  font-size: 14px;
}

.price-card li {
  display: flex;
  gap: 11px;
  align-items: center;
}

.price-card li::before {
  display: none;
}

.price-card li i {
  color: var(--accent);
  font-size: 18px;
}

.price-card li.muted-option {
  color: #67655f;
}

.price-card li.muted-option i {
  color: #67655f;
}

.price-card > .plan-button {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: auto;
  padding: 14px 20px;
  color: var(--text);
  font-family: "Courier New", monospace;
  font-size: 13px;
  border: 1px solid #716d62;
  border-radius: 999px;
}

.price-card > .plan-button:hover {
  gap: 0;
  color: var(--ink);
  background: var(--accent);
  border-color: var(--accent);
}

.featured > .plan-button {
  color: var(--ink);
  font-weight: 800;
  background: var(--accent);
  border-color: var(--accent);
}

.security {
  background: var(--bg);
  border-block: 1px solid rgba(243, 181, 43, 0.1);
}

.security::before {
  display: none;
}

.security-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.security-card {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.security-icon {
  display: grid;
  width: 94px;
  height: 94px;
  margin-bottom: 28px;
  color: var(--accent);
  font-size: 43px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 15px 38px rgba(0, 0, 0, 0.25);
  place-items: center;
  transition: color 220ms ease, background 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.security-card:hover .security-icon {
  color: var(--ink);
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-7px);
}

.security-card h3 {
  margin: 0 0 14px;
  font-size: 22px;
}

.security-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

@media (max-width: 1024px) {
  .benefit-grid,
  .security-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefit-grid {
    grid-template-rows: repeat(2, 380px);
  }
}

@media (max-width: 767px) {
  .nav-shell {
    width: calc(100% - 28px);
  }

  .nav-brand {
    gap: 8px;
    font-size: 18px;
  }

  .nav-brand .brand-mark {
    width: 38px;
    height: 38px;
  }

  .register-link {
    padding: 8px 11px;
  }

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

  .hero h1 {
    font-size: clamp(50px, 15vw, 66px);
  }

  .hero-desc {
    font-size: 18px;
  }

  .marquee-dark {
    padding-block: 22px;
  }

  .marquee-dark .marquee-track span {
    font-size: 22px;
  }

  .benefit-grid,
  .security-grid {
    grid-template-columns: 1fr;
  }

  .benefit-grid {
    grid-template-rows: none;
  }

  .benefit-card,
  .benefit-wide,
  .benefit-tall,
  .benefit-dark,
  .benefit-platform {
    min-height: 340px;
  }

  .benefit-card p {
    min-height: 0;
  }

  .price-card {
    width: min(82vw, 330px);
  }

  .security-grid {
    gap: 48px;
  }

  .security-card p {
    max-width: 330px;
  }
}

/* Local refinement pass */
@media (min-width: 768px) {
  .hero {
    min-height: 720px;
    padding-top: calc(var(--header-h) + 16px);
    padding-bottom: 34px;
  }

  .hero-gallery {
    height: 530px;
  }
}

.coffee-capy {
  position: absolute;
  bottom: -18px;
  left: -72px;
  z-index: 6;
  display: grid;
  width: 122px;
  aspect-ratio: 1;
  color: rgba(243, 181, 43, 0.78);
  font-family: "Courier New", monospace;
  font-size: 8px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background:
    radial-gradient(circle, rgba(243, 181, 43, 0.1), transparent 58%),
    rgba(8, 8, 7, 0.14);
  border: 1px dashed rgba(243, 181, 43, 0.5);
  border-radius: 50%;
  place-items: center;
  pointer-events: none;
  box-shadow: 0 0 0 0 rgba(243, 181, 43, 0.18), inset 0 0 32px rgba(243, 181, 43, 0.08);
  animation: placeholder-pulse 2.4s ease-in-out infinite;
}

.coffee-capy::after {
  position: absolute;
  inset: 15%;
  content: "";
  border: 1px solid rgba(243, 181, 43, 0.24);
  border-radius: inherit;
  pointer-events: none;
}

.coffee-capy::before {
  position: absolute;
  inset: -10px;
  content: "";
  border: 1px solid rgba(243, 181, 43, 0.2);
  border-radius: inherit;
  animation: placeholder-ring 2.4s ease-out infinite;
  pointer-events: none;
}

.coffee-capy span {
  position: relative;
  z-index: 1;
  padding: 6px 8px;
  background: rgba(9, 9, 8, 0.64);
  border: 1px solid rgba(243, 181, 43, 0.18);
  border-radius: 999px;
}

@keyframes placeholder-pulse {
  0%, 100% {
    opacity: 0.74;
    box-shadow: 0 0 0 0 rgba(243, 181, 43, 0.18), inset 0 0 32px rgba(243, 181, 43, 0.08);
  }
  50% {
    opacity: 1;
    box-shadow: 0 0 0 18px rgba(243, 181, 43, 0.03), inset 0 0 44px rgba(243, 181, 43, 0.13);
  }
}

@keyframes placeholder-ring {
  0% { opacity: 0.72; transform: scale(0.94); }
  100% { opacity: 0; transform: scale(1.12); }
}

.marquee-dark .marquee-track {
  opacity: 0.42;
  transition: opacity 220ms ease;
}

.marquee-dark:hover .marquee-track {
  opacity: 0.56;
}

.media-panel {
  isolation: isolate;
}

.media-backdrop,
.media-shade {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.media-backdrop {
  z-index: 0;
  background-position: center;
  background-size: cover;
  opacity: 0.86;
  clip-path: circle(0 at var(--origin-x, 50%) var(--origin-y, 50%));
  transition: clip-path 720ms cubic-bezier(0.16, 1, 0.3, 1), opacity 300ms ease;
}

.media-backdrop.is-visible {
  clip-path: circle(155% at var(--origin-x, 50%) var(--origin-y, 50%));
}

.media-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(9, 9, 8, 0.68), rgba(9, 9, 8, 0.2) 56%, rgba(9, 9, 8, 0.42)),
    linear-gradient(180deg, rgba(9, 9, 8, 0.08), rgba(9, 9, 8, 0.46));
}

.media-panel .logo-line {
  position: absolute;
  right: 46px;
  bottom: 46px;
  left: 46px;
  z-index: 2;
  max-width: min(360px, calc(100% - 92px));
  margin: 0;
}

.orbit-stage .stream-logo-line {
  grid-row: auto;
  grid-column: auto;
  align-self: auto;
}

.orbit-stage .brand-orbit,
.panel-content {
  position: relative;
  z-index: 2;
}

.orbit-stage .orbit-copy {
  position: absolute;
}

.brand-chip,
.logo-line .media-trigger {
  appearance: none;
  cursor: pointer;
}

.brand-chip.is-active,
.logo-line .media-trigger.is-active {
  color: var(--brand-color, var(--accent));
  background: rgba(255, 255, 255, 0.96);
  border-color: var(--brand-color, var(--accent));
  box-shadow: 0 13px 30px color-mix(in srgb, var(--brand-color, var(--accent)) 28%, transparent);
}

.brand-chip:nth-child(5) {
  top: 11%;
  left: 8%;
}

.access-lane {
  position: relative;
  min-height: 255px;
  padding-bottom: 94px;
  overflow: hidden;
}

.access-lane .logo-line {
  right: 30px;
  bottom: 30px;
  left: 30px;
  max-width: calc(100% - 60px);
}

.access-lane .media-backdrop {
  opacity: 0.82;
}

.access-lane .media-shade {
  background: linear-gradient(90deg, rgba(15, 15, 14, 0.68), rgba(15, 15, 14, 0.28));
}

.logo-line .media-trigger {
  display: grid;
  width: 40px;
  height: 40px;
  padding: 7px;
  color: var(--brand-color, var(--accent));
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 9px;
  place-items: center;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.logo-line .media-trigger:hover,
.logo-line .media-trigger:focus-visible {
  border-color: var(--brand-color, var(--accent));
  box-shadow: 0 12px 26px color-mix(in srgb, var(--brand-color, var(--accent)) 22%, transparent);
  transform: translateY(-5px) scale(1.08);
}

.logo-line .media-trigger img {
  width: 25px;
  height: 25px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.logo-line .media-trigger.text-logo {
  width: auto;
  min-width: 40px;
  font-size: 9px;
}

.plan-top i {
  display: none;
}

.plan-top .plan-badge {
  flex: 0 0 auto;
}

.tutorial,
.download,
.download-art {
  transition: transform 420ms cubic-bezier(0.16, 1, 0.3, 1), border-color 220ms ease, box-shadow 420ms ease;
}

.tutorial:hover {
  z-index: 2;
  border-color: var(--accent);
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.34);
  transform: translateY(-9px) scale(1.035);
}

.download:hover {
  z-index: 2;
  border-color: var(--accent);
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.3);
  transform: translateY(-9px) scale(1.035);
}

.download:hover .download-art {
  color: #555348;
  transform: translate(-8px, -8px) rotate(-4deg) scale(1.18);
}

.download:hover .download-art i:first-child {
  color: var(--accent);
}

@media (max-width: 767px) {
  .hero-copy {
    text-align: center;
  }

  .hero-copy .primary-button {
    margin-inline: auto;
  }

  .coffee-capy {
    bottom: -3px;
    left: -28px;
    width: 88px;
    font-size: 7px;
  }

  .coffee-capy::before {
    inset: -6px;
  }

  .coffee-capy span {
    padding: 5px 6px;
  }

  .orbit-stage {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 510px;
    padding: 30px;
  }

  .orbit-stage .orbit-copy {
    right: 30px;
    bottom: 106px;
    left: 30px;
    align-self: auto;
    max-width: 300px;
    padding: 0;
  }

  .orbit-stage .stream-logo-line {
    right: 30px;
    bottom: 30px;
    left: 30px;
    align-self: auto;
    max-width: calc(100% - 60px);
    margin: 0;
  }

  .access-lane {
    min-height: 280px;
    padding-bottom: 132px;
  }

  .access-lane .logo-line {
    right: 24px;
    bottom: 24px;
    left: 24px;
    max-width: calc(100% - 48px);
  }

  .orbit-copy p {
    max-width: 290px;
  }

  .media-backdrop {
    opacity: 0.82;
  }

  .brand-chip:nth-child(5) {
    top: 8%;
    left: 7%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .coffee-capy,
  .coffee-capy::before {
    animation: none;
  }

  .media-backdrop {
    clip-path: none;
  }
}

.click-spark-canvas {
  position: fixed;
  inset: 0;
  z-index: 80;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

html.has-click-spark .click-spark-canvas {
  opacity: 1;
}

@media (max-width: 1023px), (pointer: coarse), (prefers-reduced-motion: reduce) {
  .click-spark-canvas {
    display: none;
  }
}

/* Theme system */
:root,
:root[data-theme="light"] {
  color-scheme: light;
  --bg: #f7f8f3;
  --bg-soft: #edf2e7;
  --surface: #fffdf6;
  --surface-2: #f6efd9;
  --line: rgba(42, 38, 26, 0.13);
  --line-strong: rgba(164, 111, 12, 0.35);
  --text: #242018;
  --muted: #6d6759;
  --accent: #d89216;
  --accent-dark: #9f6500;
  --ink: #17130a;
  --shadow: 0 24px 68px rgba(96, 78, 36, 0.16);
  --header-bg: rgba(250, 249, 241, 0.86);
  --nav-muted: #5d584d;
  --button-bg: #f3b52b;
  --button-bg-hover: #ffc84b;
  --button-shadow: 0 14px 34px rgba(243, 181, 43, 0.24);
}

:root[data-theme="dark"] {
  color-scheme: dark;
  --bg: #0b0b0b;
  --bg-soft: #111110;
  --surface: #181817;
  --surface-2: #20201e;
  --line: #30302c;
  --line-strong: #4c4633;
  --text: #f1efe7;
  --muted: #aaa79c;
  --accent: #f3b52b;
  --accent-dark: #c88600;
  --ink: #17130a;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
  --header-bg: rgba(11, 11, 11, 0.86);
  --nav-muted: #d2d0c8;
  --button-bg: #f3b52b;
  --button-bg-hover: #ffc84b;
  --button-shadow: 0 12px 34px rgba(243, 181, 43, 0.18);
}

body {
  background:
    radial-gradient(circle at 24% 8%, color-mix(in srgb, var(--accent) 18%, transparent), transparent 28rem),
    linear-gradient(180deg, var(--bg), var(--bg-soft) 54%, var(--bg));
}

body::before {
  opacity: 0.024;
  mix-blend-mode: multiply;
}

:root[data-theme="dark"] body::before {
  opacity: 0.035;
  mix-blend-mode: normal;
}

.site-header {
  background: var(--header-bg);
  border-bottom-color: var(--line);
}

.desktop-nav a,
.login-link {
  color: var(--nav-muted);
}

.nav-actions {
  gap: 14px;
}

.theme-switch {
  --width-of-switch: 3.5em;
  --height-of-switch: 2em;
  --size-of-icon: 1.4em;
  --slider-offset: 0.3em;
  position: relative;
  display: block;
  width: var(--width-of-switch);
  height: var(--height-of-switch);
  cursor: pointer;
}

.theme-switch input {
  width: 0;
  height: 0;
  opacity: 0;
}

.theme-slider {
  position: absolute;
  inset: 0;
  cursor: pointer;
  background-color: #f4f4f5;
  border: 1px solid color-mix(in srgb, var(--line) 52%, transparent);
  border-radius: 30px;
  box-shadow: 0 10px 24px rgba(65, 50, 18, 0.1);
  transition: background-color 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.theme-slider::before {
  position: absolute;
  top: 50%;
  left: var(--slider-offset);
  width: var(--size-of-icon);
  height: var(--size-of-icon);
  content: "";
  background: linear-gradient(40deg, var(--button-bg), var(--accent-dark) 70%);
  border-radius: 20px;
  box-shadow: 0 0 12px color-mix(in srgb, var(--button-bg) 48%, transparent);
  transform: translateY(-50%);
  transition: left 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
}

.theme-switch input:checked + .theme-slider {
  background-color: #303136;
  border-color: color-mix(in srgb, var(--button-bg) 28%, #363630);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.theme-switch input:checked + .theme-slider::before {
  left: calc(100% - (var(--size-of-icon) + var(--slider-offset)));
  background: #303136;
  box-shadow:
    inset -3px -2px 5px -2px #8391f7,
    inset -10px -4px 0 0 #a3c5fb;
}

.theme-switch:focus-within .theme-slider {
  box-shadow:
    0 0 0 3px color-mix(in srgb, var(--button-bg) 30%, transparent),
    0 10px 24px rgba(65, 50, 18, 0.12);
}

.brand-mark {
  filter: drop-shadow(0 8px 16px color-mix(in srgb, var(--accent) 22%, transparent));
}

.hero::before {
  background:
    radial-gradient(circle at 70% 22%, rgba(35, 193, 164, 0.14), transparent 31rem),
    radial-gradient(circle at 16% 42%, color-mix(in srgb, var(--accent) 18%, transparent), transparent 28rem),
    linear-gradient(180deg, rgba(255, 253, 246, 0.18), color-mix(in srgb, var(--bg) 92%, transparent) 92%);
}

.hero::after {
  background:
    linear-gradient(90deg, color-mix(in srgb, var(--bg) 72%, transparent), rgba(255, 253, 246, 0.12) 48%, color-mix(in srgb, var(--bg) 64%, transparent)),
    linear-gradient(180deg, transparent 72%, var(--bg));
}

:root[data-theme="dark"] .hero::before {
  background:
    radial-gradient(circle at 70% 22%, rgba(44, 255, 201, 0.16), transparent 31rem),
    radial-gradient(circle at 16% 42%, rgba(243, 181, 43, 0.12), transparent 28rem),
    linear-gradient(180deg, rgba(11, 11, 11, 0.16), rgba(11, 11, 11, 0.96) 92%);
}

:root[data-theme="dark"] .hero::after {
  background:
    linear-gradient(90deg, rgba(11, 11, 11, 0.76), rgba(11, 11, 11, 0.28) 45%, rgba(11, 11, 11, 0.7)),
    linear-gradient(180deg, transparent 72%, var(--bg));
}

.hero-aurora {
  background:
    radial-gradient(circle at 74% 10%, rgba(35, 193, 164, 0.14), transparent 30rem),
    linear-gradient(180deg, rgba(255, 253, 246, 0.15), rgba(247, 248, 243, 0.9));
}

.hero-aurora canvas {
  opacity: 0.25;
  mix-blend-mode: multiply;
}

:root[data-theme="dark"] .hero-aurora {
  background:
    radial-gradient(circle at 74% 10%, rgba(44, 255, 201, 0.16), transparent 30rem),
    linear-gradient(180deg, rgba(11, 11, 11, 0.15), rgba(0, 0, 0, 0.9));
}

:root[data-theme="dark"] .hero-aurora canvas {
  opacity: 0.82;
  mix-blend-mode: screen;
}

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

.hero-text-type-cursor {
  color: color-mix(in srgb, var(--accent) 74%, white);
}

.register-link {
  color: var(--ink);
  background: var(--button-bg);
  box-shadow: var(--button-shadow);
}

.register-link:hover {
  background: var(--button-bg-hover);
}

.hero-slide {
  background: var(--surface);
  border-color: color-mix(in srgb, var(--line) 84%, transparent);
}

.hero-slide::after {
  background: linear-gradient(180deg, transparent 48%, rgba(7, 7, 7, 0.43) 100%);
}

.slide-caption {
  z-index: 4;
  color: #ffffff;
}

.slide-caption strong {
  color: #ffffff !important;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.72);
}

:root[data-theme="dark"] .hero-slide::after {
  background: linear-gradient(180deg, transparent 48%, rgba(7, 7, 7, 0.86) 100%);
}

.hero-pagination button {
  background: color-mix(in srgb, var(--text) 24%, transparent);
}

.marquee-dark {
  background:
    linear-gradient(90deg, rgba(255, 248, 223, 0.38), rgba(243, 181, 43, 0.12), rgba(255, 248, 223, 0.38));
  border-color: rgba(243, 181, 43, 0.16);
}

.marquee-dark .marquee-track span {
  color: #7a5008;
}

.marquee-dark .marquee-row.reverse .marquee-track span {
  color: #9f6500;
}

:root[data-theme="dark"] .marquee-dark {
  background:
    linear-gradient(90deg, #0d0d0c, rgba(243, 181, 43, 0.065), #0d0d0c);
  border-color: rgba(243, 181, 43, 0.16);
}

:root[data-theme="dark"] .marquee-dark .marquee-track span {
  color: var(--accent);
}

:root[data-theme="dark"] .marquee-dark .marquee-row.reverse .marquee-track span {
  color: #ffb26b;
}

.benefit-card,
.benefit-wide,
.benefit-tall,
.benefit-dark,
.benefit-platform,
.support-module,
.price-card {
  box-shadow: 0 18px 44px rgba(91, 74, 37, 0.08);
}

.benefit-icon,
.faq-head i,
.security-icon {
  background: color-mix(in srgb, var(--accent) 12%, var(--surface));
}

.route-visual,
.logo-line img,
.text-logo {
  background: color-mix(in srgb, var(--surface) 88%, var(--accent));
}

.route-visual,
.device-row i,
.download-art {
  color: color-mix(in srgb, var(--text) 44%, transparent);
}

.latency-visual span {
  background: linear-gradient(180deg, var(--accent), color-mix(in srgb, var(--accent-dark) 52%, white));
}

.price-card.featured {
  background:
    linear-gradient(160deg, color-mix(in srgb, var(--accent) 14%, transparent), transparent 42%),
    var(--surface);
  border-color: color-mix(in srgb, var(--accent) 56%, var(--line));
}

.price-card ul {
  color: var(--text);
}

.price-card > .plan-button {
  color: var(--text);
  border-color: color-mix(in srgb, var(--line-strong) 74%, transparent);
}

.price-card > .plan-button:hover,
.featured > .plan-button {
  color: var(--ink);
  background: var(--button-bg);
  border-color: var(--button-bg);
}

.plan-badge-month {
  color: #145c96;
  background: rgba(38, 139, 217, 0.12);
  border-color: rgba(38, 139, 217, 0.36);
}

.orbit-stage {
  background: color-mix(in srgb, var(--surface) 90%, var(--accent));
  border-color: var(--line);
}

:root[data-theme="light"] .media-shade {
  background:
    linear-gradient(90deg, rgba(17, 14, 9, 0.34), rgba(17, 14, 9, 0.1) 56%, rgba(17, 14, 9, 0.21)),
    linear-gradient(180deg, rgba(17, 14, 9, 0.04), rgba(17, 14, 9, 0.24));
}

:root[data-theme="light"] .access-lane .media-shade {
  background: linear-gradient(90deg, rgba(17, 14, 9, 0.34), rgba(17, 14, 9, 0.12));
}

:root[data-theme="dark"] .media-shade {
  background:
    linear-gradient(90deg, rgba(9, 9, 8, 0.68), rgba(9, 9, 8, 0.2) 56%, rgba(9, 9, 8, 0.42)),
    linear-gradient(180deg, rgba(9, 9, 8, 0.08), rgba(9, 9, 8, 0.46));
}

:root[data-theme="dark"] .access-lane .media-shade {
  background: linear-gradient(90deg, rgba(15, 15, 14, 0.68), rgba(15, 15, 14, 0.28));
}

.media-panel .orbit-title > i,
.media-panel .lane-title > i,
.media-panel .orbit-copy span,
.media-panel .lane-title span {
  color: var(--button-bg);
}

.media-panel .orbit-copy strong,
.media-panel .orbit-copy p,
.media-panel .lane-title h3 {
  color: #ffffff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.54);
}

.security {
  background: var(--bg);
  border-block-color: color-mix(in srgb, var(--accent) 14%, transparent);
}

.security-icon {
  box-shadow: 0 18px 42px rgba(91, 74, 37, 0.13);
}

.social-links a:hover {
  background: color-mix(in srgb, var(--accent) 12%, var(--surface));
}

.footer-bottom {
  color: color-mix(in srgb, var(--muted) 72%, transparent);
  border-top-color: var(--line);
}

@media (max-width: 767px) {
  .nav-actions {
    gap: 8px;
  }
}

@media (prefers-reduced-transparency: reduce) {
  .site-header {
    background: var(--bg);
  }
}
