:root {
  --ink: #f1f7ff;
  --muted: #8292b2;
  --muted-strong: #aebbd2;
  --navy: #050b1d;
  --navy-soft: #08132d;
  --panel: #0b1732;
  --panel-light: #102144;
  --line: rgba(111, 161, 232, 0.18);
  --line-bright: rgba(57, 184, 255, 0.42);
  --cyan: #25d9ff;
  --blue: #237cff;
  --electric: #5a9bff;
  --green: #55efc0;
  --mono: "DM Mono", "Consolas", monospace;
  --sans: "Manrope", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--navy);
}

body {
  position: relative;
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 72% 12%, rgba(22, 104, 255, 0.13), transparent 28rem),
    radial-gradient(circle at 4% 44%, rgba(0, 203, 255, 0.05), transparent 24rem),
    var(--navy);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: -2;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(72, 132, 213, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(72, 132, 213, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
  content: "";
}

body::after {
  position: fixed;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at center, transparent 35%, rgba(1, 4, 15, 0.45) 100%);
  content: "";
}

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

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

button {
  color: inherit;
  font: inherit;
}

svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.page-glow {
  position: absolute;
  z-index: -1;
  pointer-events: none;
  width: 28rem;
  height: 28rem;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.22;
}

.page-glow--top {
  top: 12rem;
  right: -13rem;
  background: #006eff;
}

.page-glow--bottom {
  top: 80rem;
  left: -16rem;
  background: #006bff;
  opacity: 0.1;
}

.noise {
  position: fixed;
  z-index: 50;
  inset: 0;
  pointer-events: none;
  opacity: 0.025;
  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='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

.audio-player {
  position: fixed;
  z-index: 20;
  bottom: 24px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 238px;
  padding: 9px 12px 9px 9px;
  border: 1px solid rgba(61, 170, 255, 0.38);
  border-radius: 10px;
  background: rgba(7, 22, 51, 0.84);
  box-shadow: 0 15px 40px rgba(0, 6, 25, 0.48), 0 0 24px rgba(0, 124, 255, 0.1), inset 0 1px rgba(181, 229, 255, 0.14);
  backdrop-filter: blur(17px);
}

#site-audio {
  display: none;
}

.audio-toggle {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1px solid rgba(46, 206, 255, 0.55);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(26, 132, 221, 0.65), rgba(17, 63, 130, 0.65));
  color: var(--cyan);
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.audio-toggle:hover {
  border-color: var(--cyan);
  background: rgba(27, 139, 205, 0.72);
  box-shadow: 0 0 19px rgba(37, 217, 255, 0.24);
  transform: translateY(-2px);
}

.audio-icon {
  width: 16px;
  height: 16px;
}

.audio-icon--pause {
  display: none;
}

.audio-player.is-playing .audio-icon--play {
  display: none;
}

.audio-player.is-playing .audio-icon--pause {
  display: block;
}

.audio-copy {
  display: flex;
  flex-direction: column;
  min-width: 96px;
  gap: 4px;
}

.audio-copy > span,
.audio-copy strong {
  display: flex;
  align-items: center;
}

.audio-copy > span {
  gap: 7px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.14em;
}

.audio-copy strong {
  color: var(--muted-strong);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.audio-eq {
  display: inline-flex;
  align-items: flex-end;
  gap: 2px;
  height: 9px;
}

.audio-eq b {
  display: block;
  width: 2px;
  height: 3px;
  border-radius: 2px;
  background: var(--cyan);
  opacity: 0.38;
}

.audio-eq b:nth-child(2) { height: 6px; }
.audio-eq b:nth-child(3) { height: 4px; }
.audio-eq b:nth-child(4) { height: 8px; }

.audio-player.is-playing .audio-eq b {
  opacity: 1;
  animation: audio-eq 0.85s ease-in-out infinite alternate;
}

.audio-player.is-playing .audio-eq b:nth-child(2) { animation-delay: -0.4s; }
.audio-player.is-playing .audio-eq b:nth-child(3) { animation-delay: -0.2s; }
.audio-player.is-playing .audio-eq b:nth-child(4) { animation-delay: -0.6s; }

@keyframes audio-eq {
  from { transform: scaleY(0.45); }
  to { transform: scaleY(1.25); }
}

.volume-control {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-left: auto;
  color: var(--muted);
}

.volume-control svg {
  flex: 0 0 auto;
  width: 15px;
  height: 15px;
}

.volume-control input {
  width: 55px;
  height: 3px;
  accent-color: var(--cyan);
  cursor: pointer;
}

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

.site-header {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 64px));
  margin: 0 auto;
  padding: 24px 0;
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 39px;
  height: 39px;
  border: 1px solid rgba(60, 170, 255, 0.6);
  border-radius: 12px;
  background: rgba(14, 39, 85, 0.75);
  box-shadow: 0 0 24px rgba(22, 143, 255, 0.23), inset 0 0 13px rgba(23, 124, 255, 0.2);
}

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

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-copy strong {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
}

.brand-copy strong span {
  color: var(--cyan);
  font-weight: 600;
}

.brand-copy small,
.mini-label,
.plan-number,
.signal-index,
.eyebrow,
.aside-code,
.live-label,
.route-labels,
.network-card__stats span,
.floating-chip small,
.payment-badge,
.featured-ribbon,
.selected-plan span,
.modal-kicker {
  font-family: var(--mono);
  letter-spacing: 0.11em;
}

.brand-copy small {
  color: var(--muted);
  font-size: 7px;
  font-weight: 500;
  letter-spacing: 0.23em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 37px;
  margin-left: auto;
  margin-right: 46px;
}

.main-nav a {
  position: relative;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  transition: color 180ms ease;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
  content: "";
}

.main-nav a:hover {
  color: var(--ink);
}

.main-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-ticket,
.button,
.plan-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.header-ticket {
  min-height: 39px;
  padding: 0 15px;
  border: 1px solid rgba(77, 163, 255, 0.32);
  border-radius: 8px;
  background: rgba(15, 42, 86, 0.42);
  color: var(--muted-strong);
}

.header-ticket:hover {
  border-color: var(--cyan);
  background: rgba(22, 88, 154, 0.4);
  color: var(--ink);
  box-shadow: 0 0 25px rgba(0, 177, 255, 0.16);
}

.header-ticket svg {
  width: 15px;
}

.discord-dot,
.status-pulse,
.live-label i {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px var(--green);
}

.menu-toggle {
  display: none;
  width: 41px;
  height: 38px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 17px;
  height: 1px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.91fr) minmax(480px, 1.09fr);
  align-items: center;
  min-height: 650px;
  padding: 42px 0 88px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-bottom: 20px;
}

.eyebrow,
.modal-kicker {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--cyan);
  font-size: 9px;
  font-weight: 500;
}

.eyebrow-line {
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
}

.hero h1 {
  max-width: 680px;
  margin: 26px 0 22px;
  font-size: clamp(3.4rem, 7vw, 6.35rem);
  font-weight: 800;
  letter-spacing: -0.085em;
  line-height: 0.98;
}

.hero h1 span,
h2 em {
  color: transparent;
  background: linear-gradient(102deg, #eaf7ff 3%, #55caff 50%, #488fff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  font-style: normal;
}

.hero-lede {
  max-width: 455px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 33px;
}

.button {
  min-height: 50px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 7px;
}

.button svg,
.plan-button svg {
  width: 17px;
  transition: transform 180ms ease;
}

.button:hover svg,
.plan-button:hover svg {
  transform: translateX(4px);
}

.button--primary {
  background: linear-gradient(110deg, #1f91ff, #2cdcff);
  box-shadow: 0 10px 32px rgba(25, 151, 255, 0.2), inset 0 1px rgba(255, 255, 255, 0.36);
  color: #031128;
}

.button--primary:hover {
  background: linear-gradient(110deg, #42a6ff, #60e6ff);
  box-shadow: 0 13px 38px rgba(25, 172, 255, 0.32), inset 0 1px rgba(255, 255, 255, 0.48);
  transform: translateY(-2px);
}

.button--ghost {
  border-color: var(--line);
  background: rgba(10, 28, 60, 0.47);
  color: var(--muted-strong);
}

.button--ghost:hover {
  border-color: var(--line-bright);
  background: rgba(18, 52, 101, 0.5);
  color: var(--ink);
  transform: translateY(-2px);
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 46px;
}

.avatar-stack {
  display: flex;
  padding-left: 7px;
}

.avatar-stack span {
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  margin-left: -7px;
  border: 2px solid var(--navy);
  border-radius: 50%;
  background: #143568;
  color: #cce7ff;
  font-family: var(--mono);
  font-size: 8px;
}

.avatar-stack span:nth-child(2) {
  background: #125c82;
}

.avatar-stack span:nth-child(3) {
  background: #284187;
}

.avatar-stack span:last-child {
  background: #0a1b3b;
  color: var(--cyan);
}

.hero-proof p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.4;
}

.hero-proof strong {
  color: var(--muted-strong);
  font-weight: 700;
}

.hero-visual {
  position: relative;
  min-height: 548px;
  isolation: isolate;
}

.hero-visual::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(0, 105, 255, 0.26);
  filter: blur(80px);
  transform: translate(-50%, -50%);
  content: "";
}

.visual-orbit {
  position: absolute;
  top: 50%;
  left: 53%;
  width: min(500px, 85%);
  aspect-ratio: 1;
  border: 1px solid rgba(25, 144, 255, 0.22);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.visual-orbit::after {
  position: absolute;
  top: 5%;
  left: 4%;
  width: 92%;
  height: 92%;
  border: 1px solid rgba(47, 223, 255, 0.65);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(20, 162, 255, 0.42), inset 0 0 22px rgba(20, 112, 255, 0.23);
  clip-path: polygon(0 0, 100% 0, 100% 26%, 0 26%);
  content: "";
}

.visual-orbit--one {
  width: min(530px, 90%);
  border-color: rgba(20, 116, 255, 0.23);
  transform: translate(-50%, -50%) rotate(-24deg) scaleY(0.75);
}

.visual-orbit--two {
  width: min(425px, 74%);
  border-color: rgba(17, 123, 255, 0.24);
  transform: translate(-50%, -50%) rotate(33deg) scaleY(0.73);
}

.visual-grid {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(500px, 88%);
  aspect-ratio: 1;
  opacity: 0.5;
  background-image:
    linear-gradient(rgba(43, 130, 235, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(43, 130, 235, 0.09) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(circle, black 25%, transparent 72%);
  transform: translate(-50%, -50%) rotate(15deg);
}

.visual-cross {
  position: absolute;
  width: 48px;
  height: 48px;
  opacity: 0.6;
}

.visual-cross::before,
.visual-cross::after {
  position: absolute;
  background: var(--blue);
  box-shadow: 0 0 10px var(--blue);
  content: "";
}

.visual-cross::before {
  top: 23px;
  width: 48px;
  height: 1px;
}

.visual-cross::after {
  left: 23px;
  width: 1px;
  height: 48px;
}

.visual-cross--one {
  top: 18%;
  right: 2%;
}

.visual-cross--two {
  bottom: 17%;
  left: 7%;
  transform: scale(0.55);
}

.network-card {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 53%;
  width: min(372px, 70%);
  min-height: 444px;
  padding: 21px 23px 23px;
  overflow: hidden;
  border: 1px solid rgba(91, 179, 255, 0.38);
  border-radius: 18px;
  background:
    linear-gradient(150deg, rgba(25, 72, 137, 0.6), rgba(5, 17, 43, 0.88) 47%, rgba(4, 12, 31, 0.95)),
    var(--panel);
  box-shadow: -20px 28px 80px rgba(0, 25, 87, 0.62), 12px 5px 24px rgba(1, 6, 20, 0.65), inset 0 1px rgba(190, 232, 255, 0.23);
  transform: perspective(1000px) rotateX(5deg) rotateY(-10deg) rotateZ(3deg);
  transform-style: preserve-3d;
}

.network-card::before {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 210px;
  height: 210px;
  border: 1px solid rgba(31, 178, 255, 0.2);
  border-radius: 50%;
  box-shadow: 0 0 34px rgba(0, 150, 255, 0.18);
  content: "";
}

.tilt-card {
  transition: transform 400ms cubic-bezier(0.2, 0.75, 0.25, 1), border-color 220ms ease, box-shadow 220ms ease;
  will-change: transform;
}

.tilt-card.is-tilting {
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.card-shine {
  position: absolute;
  z-index: 3;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at var(--shine-x, 50%) var(--shine-y, 30%), rgba(121, 222, 255, 0.17), transparent 31%);
  mix-blend-mode: screen;
}

.network-card:hover {
  border-color: rgba(71, 211, 255, 0.78);
  box-shadow: -20px 28px 80px rgba(0, 45, 135, 0.7), 12px 5px 28px rgba(0, 9, 30, 0.8), inset 0 1px rgba(190, 246, 255, 0.37);
}

.network-card__top,
.plan-card__top,
.route-labels,
.network-card__stats,
.payment-line,
.selected-plan,
.payment-method {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mini-label,
.plan-number {
  color: var(--muted);
  font-size: 8px;
}

.live-label {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--green);
  font-size: 8px;
}

.network-card__logo {
  display: grid;
  place-items: center;
  height: 235px;
  margin: 9px 0 0;
}

.network-card__logo img {
  width: 225px;
  height: 225px;
  filter: drop-shadow(0 0 24px rgba(10, 129, 255, 0.37));
}

.route-line {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 5px;
}

.route-line__node {
  width: 7px;
  height: 7px;
  border: 1px solid var(--cyan);
  border-radius: 50%;
  background: var(--navy);
  box-shadow: 0 0 10px rgba(27, 210, 255, 0.75);
}

.route-line__node--end {
  background: var(--cyan);
}

.route-line__track {
  position: relative;
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--cyan), rgba(62, 139, 255, 0.17), var(--cyan));
}

.route-line__track::before,
.route-line__track::after {
  position: absolute;
  top: -3px;
  width: 5px;
  height: 5px;
  border: 1px solid var(--blue);
  border-radius: 50%;
  content: "";
}

.route-line__track::before {
  left: 35%;
}

.route-line__track::after {
  right: 20%;
}

.route-line__track i {
  position: absolute;
  top: -2px;
  left: 52%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #e5fcff;
  box-shadow: 0 0 8px 2px var(--cyan);
}

.route-labels {
  margin-top: 7px;
  color: #6881aa;
  font-size: 7px;
}

.network-card__stats {
  gap: 10px;
  margin-top: 21px;
  padding-top: 16px;
  border-top: 1px solid rgba(99, 157, 225, 0.14);
}

.network-card__stats div {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.network-card__stats span {
  color: #6e82a6;
  font-size: 7px;
}

.network-card__stats strong {
  color: #d9f5ff;
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 500;
}

.network-card__stats small {
  color: var(--muted);
  font-size: 8px;
}

.floating-chip {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px 11px 11px;
  border: 1px solid rgba(77, 170, 255, 0.32);
  border-radius: 10px;
  background: rgba(9, 25, 57, 0.78);
  box-shadow: 0 12px 30px rgba(0, 7, 28, 0.42), inset 0 1px rgba(176, 227, 255, 0.12);
  backdrop-filter: blur(14px);
}

.floating-chip--top {
  top: 17%;
  left: 5%;
  animation: float-chip 5s ease-in-out infinite;
}

.floating-chip--bottom {
  right: 0;
  bottom: 13%;
  animation: float-chip 5s 1.3s ease-in-out infinite;
}

.floating-chip strong,
.floating-chip small {
  display: block;
}

.floating-chip strong {
  color: var(--muted-strong);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.floating-chip small {
  margin-top: 4px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.02em;
}

.chip-icon {
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  border: 1px solid rgba(66, 205, 255, 0.5);
  border-radius: 7px;
  background: rgba(17, 103, 160, 0.35);
  color: var(--cyan);
  font-family: var(--mono);
  font-size: 18px;
  line-height: 1;
}

.signal-bars {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  width: 26px;
  height: 25px;
  padding: 4px;
  border: 1px solid rgba(66, 205, 255, 0.5);
  border-radius: 7px;
}

.signal-bars i {
  display: block;
  width: 3px;
  border-radius: 1px;
  background: var(--cyan);
  box-shadow: 0 0 5px rgba(37, 217, 255, 0.7);
}

.signal-bars i:nth-child(1) { height: 5px; opacity: 0.45; }
.signal-bars i:nth-child(2) { height: 9px; opacity: 0.65; }
.signal-bars i:nth-child(3) { height: 13px; opacity: 0.8; }
.signal-bars i:nth-child(4) { height: 17px; }

@keyframes float-chip {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.signal-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr) auto;
  align-items: center;
  gap: 28px;
  padding: 23px 0 25px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.signal-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.signal-index {
  padding-top: 2px;
  color: var(--cyan);
  font-size: 8px;
}

.signal-item strong,
.signal-item small {
  display: block;
}

.signal-item strong {
  color: var(--muted-strong);
  font-size: 11px;
  font-weight: 700;
}

.signal-item small {
  margin-top: 6px;
  color: var(--muted);
  font-size: 9px;
}

.signal-caption {
  color: #506788;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.14em;
  white-space: nowrap;
}

.plans {
  padding: 140px 0 115px;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 43px;
}

.section-heading h2,
.advantages-aside h2,
.faq-heading h2,
.closing-cta h2,
.checkout-modal h2 {
  margin: 19px 0 0;
  color: var(--ink);
  font-size: clamp(2.3rem, 5vw, 4.1rem);
  font-weight: 800;
  letter-spacing: -0.075em;
  line-height: 0.98;
}

.section-heading > p {
  max-width: 282px;
  margin: 0 0 2px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.75;
}

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

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 453px;
  padding: 25px 25px 23px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: linear-gradient(145deg, rgba(15, 37, 78, 0.8), rgba(7, 18, 42, 0.9));
  box-shadow: inset 0 1px rgba(150, 215, 255, 0.05);
}

.plan-card::before {
  position: absolute;
  top: -120px;
  right: -100px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(71, 154, 255, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 40px rgba(27, 106, 255, 0.1);
  content: "";
}

.plan-card:hover {
  border-color: rgba(65, 165, 255, 0.56);
  box-shadow: 0 18px 55px rgba(1, 19, 58, 0.45), inset 0 1px rgba(150, 215, 255, 0.18);
}

.plan-card--featured {
  border-color: rgba(39, 185, 255, 0.55);
  background: linear-gradient(145deg, rgba(14, 59, 109, 0.86), rgba(7, 22, 51, 0.96) 73%);
  box-shadow: 0 16px 50px rgba(0, 83, 188, 0.18), inset 0 1px rgba(185, 238, 255, 0.25);
}

.plan-card--featured:hover {
  border-color: var(--cyan);
  box-shadow: 0 20px 62px rgba(0, 107, 223, 0.28), inset 0 1px rgba(211, 248, 255, 0.45);
}

.featured-ribbon {
  position: absolute;
  top: 0;
  right: 0;
  padding: 8px 13px;
  border-bottom-left-radius: 8px;
  background: linear-gradient(120deg, #178fff, #29ddff);
  color: #03132e;
  font-size: 7px;
  font-weight: 500;
}

.plan-card__top {
  position: relative;
}

.plan-status {
  padding: 4px 7px;
  border: 1px solid rgba(116, 153, 205, 0.23);
  border-radius: 4px;
  color: #6d83a8;
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.12em;
}

.plan-status--bright {
  border-color: rgba(58, 210, 255, 0.35);
  color: var(--cyan);
}

.plan-name-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
}

.plan-name-row h3 {
  margin: 0;
  color: var(--ink);
  font-size: 25px;
  font-weight: 800;
  letter-spacing: -0.06em;
}

.plan-radio {
  width: 14px;
  height: 14px;
  border: 1px solid rgba(106, 171, 242, 0.46);
  border-radius: 50%;
}

.plan-card--featured .plan-radio {
  border-color: var(--cyan);
  box-shadow: inset 0 0 0 3px var(--panel-light), 0 0 0 1px rgba(37, 217, 255, 0.15);
  background: var(--cyan);
}

.plan-description {
  min-height: 39px;
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.65;
}

.price {
  margin-top: 24px;
  color: var(--ink);
  font-family: var(--mono);
  font-size: 46px;
  font-weight: 500;
  letter-spacing: -0.1em;
  line-height: 1;
}

.price sup {
  top: -1.15em;
  position: relative;
  margin-right: 2px;
  color: var(--cyan);
  font-size: 15px;
  letter-spacing: 0;
}

.price small {
  margin-left: 5px;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0;
}

.plan-divider {
  height: 1px;
  margin: 22px 0 19px;
  background: var(--line);
}

.plan-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.plan-features li {
  color: var(--muted-strong);
  font-size: 10px;
}

.plan-features li span {
  display: inline-block;
  width: 17px;
  margin-right: 4px;
  color: var(--cyan);
  font-family: var(--mono);
}

.plan-button {
  width: 100%;
  min-height: 46px;
  margin-top: auto;
  padding: 0 16px;
  border: 1px solid rgba(63, 151, 241, 0.28);
  border-radius: 7px;
  background: rgba(20, 61, 113, 0.4);
  color: var(--muted-strong);
}

.plan-button:hover {
  border-color: var(--cyan);
  background: rgba(26, 124, 192, 0.35);
  color: #e7fbff;
}

.plan-card--featured .plan-button {
  border-color: rgba(45, 212, 255, 0.5);
  background: linear-gradient(110deg, rgba(25, 134, 223, 0.72), rgba(26, 183, 213, 0.55));
  color: #e9fcff;
  box-shadow: 0 5px 22px rgba(0, 168, 255, 0.13);
}

.payment-line {
  flex-wrap: wrap;
  gap: 16px 25px;
  margin-top: 23px;
  color: var(--muted);
  font-size: 10px;
}

.payment-line > span:not(.payment-badge) {
  margin-right: auto;
}

.payment-line a {
  color: var(--cyan);
  font-weight: 700;
}

.payment-line a:hover {
  color: var(--ink);
}

.payment-line a span,
.site-footer a span {
  margin-left: 4px;
}

.payment-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--muted-strong);
  font-size: 9px;
  font-weight: 500;
}

.payment-badge b {
  display: grid;
  place-items: center;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: #1976d2;
  color: white;
  font-family: var(--sans);
  font-size: 12px;
  font-style: italic;
  font-weight: 800;
}

.advantages {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(60px, 11vw, 155px);
  padding: 114px 0 135px;
  border-top: 1px solid var(--line);
}

.advantages-aside {
  padding-top: 8px;
}

.advantages-aside h2 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
}

.advantages-aside > p {
  max-width: 270px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
}

.aside-code {
  margin-top: 63px;
  color: #4b6289;
  font-size: 8px;
}

.aside-code span {
  color: var(--green);
}

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

.advantage {
  display: grid;
  grid-template-columns: 30px 47px 1fr 22px;
  align-items: center;
  gap: 17px;
  min-height: 125px;
  border-bottom: 1px solid var(--line);
}

.advantage-index {
  align-self: start;
  padding-top: 31px;
  color: var(--cyan);
  font-family: var(--mono);
  font-size: 8px;
}

.advantage-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(46, 160, 255, 0.36);
  border-radius: 11px;
  background: rgba(13, 52, 103, 0.45);
  color: var(--cyan);
  transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.advantage-icon svg {
  width: 25px;
  height: 25px;
}

.advantage:hover .advantage-icon {
  background: rgba(17, 101, 160, 0.55);
  box-shadow: 0 0 25px rgba(27, 180, 255, 0.16);
  transform: rotate(-5deg);
}

.advantage h3 {
  margin: 0;
  color: var(--muted-strong);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.advantage p {
  max-width: 365px;
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.65;
}

.advantage-arrow {
  color: #5b739c;
  font-size: 17px;
  transition: color 180ms ease, transform 180ms ease;
}

.advantage:hover .advantage-arrow {
  color: var(--cyan);
  transform: translate(3px, -3px);
}

.process {
  padding: 20px 0 135px;
}

.section-heading--center {
  justify-content: center;
  margin-bottom: 60px;
  text-align: center;
}

.section-heading--center .eyebrow {
  justify-content: center;
}

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

.process-step {
  position: relative;
  min-height: 185px;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: linear-gradient(145deg, rgba(10, 31, 67, 0.75), rgba(6, 17, 39, 0.72));
  overflow: hidden;
}

.process-step::after {
  position: absolute;
  right: -27px;
  bottom: -34px;
  width: 110px;
  height: 110px;
  border: 1px solid rgba(29, 162, 255, 0.14);
  border-radius: 50%;
  content: "";
}

.process-step > span {
  color: var(--cyan);
  font-family: var(--mono);
  font-size: 10px;
}

.process-line {
  width: 100%;
  height: 1px;
  margin: 23px 0 23px;
  background: linear-gradient(90deg, var(--line-bright), transparent);
}

.process-step h3 {
  margin: 0;
  color: var(--muted-strong);
  font-size: 14px;
  font-weight: 800;
}

.process-step p {
  max-width: 210px;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.65;
}

.faq {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(50px, 12vw, 170px);
  padding: 115px 0 130px;
  border-top: 1px solid var(--line);
}

.faq-heading h2 {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
}

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

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

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 0;
  color: var(--muted-strong);
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  list-style: none;
}

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

.faq-item summary span {
  position: relative;
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  border: 1px solid rgba(91, 157, 228, 0.45);
  border-radius: 50%;
}

.faq-item summary span::before,
.faq-item summary span::after {
  position: absolute;
  top: 7px;
  left: 4px;
  width: 7px;
  height: 1px;
  background: var(--cyan);
  content: "";
  transition: transform 180ms ease;
}

.faq-item summary span::after {
  transform: rotate(90deg);
}

.faq-item[open] summary span::after {
  transform: rotate(0);
}

.faq-item summary:hover {
  color: var(--ink);
}

.faq-item p {
  max-width: 600px;
  margin: -5px 38px 23px 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.8;
}

.closing-cta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 334px;
  padding: 55px 72px;
  overflow: hidden;
  border: 1px solid rgba(56, 157, 255, 0.3);
  border-radius: 15px;
  background:
    linear-gradient(110deg, rgba(9, 44, 99, 0.86), rgba(6, 19, 51, 0.88) 61%, rgba(5, 13, 33, 0.92)),
    var(--panel);
  box-shadow: 0 20px 75px rgba(0, 30, 102, 0.29), inset 0 1px rgba(171, 228, 255, 0.18);
}

.closing-cta::before {
  position: absolute;
  top: -160px;
  right: 130px;
  width: 440px;
  height: 440px;
  border: 1px solid rgba(22, 153, 255, 0.23);
  border-radius: 50%;
  box-shadow: 0 0 50px rgba(5, 134, 255, 0.18), inset 0 0 40px rgba(20, 110, 255, 0.1);
  content: "";
}

.closing-cta::after {
  position: absolute;
  top: 50%;
  right: 115px;
  width: 410px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(34, 190, 255, 0.7), transparent);
  box-shadow: 0 0 13px var(--cyan);
  transform: rotate(-27deg);
  content: "";
}

.closing-cta__glow {
  position: absolute;
  top: 35px;
  right: 155px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(0, 143, 255, 0.22);
  filter: blur(60px);
}

.closing-cta__content {
  position: relative;
  z-index: 2;
}

.closing-cta h2 {
  max-width: 570px;
  margin-top: 17px;
  font-size: clamp(2.35rem, 5vw, 4rem);
}

.closing-cta p {
  margin: 20px 0 25px;
  color: var(--muted-strong);
  font-size: 11px;
}

.closing-cta .button {
  min-height: 46px;
}

.closing-mark {
  position: relative;
  z-index: 2;
  width: 245px;
  margin-right: 50px;
  opacity: 0.84;
  filter: drop-shadow(0 0 35px rgba(20, 141, 255, 0.45));
}

.closing-mark img {
  width: 100%;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 65px 0 37px;
}

.brand--footer .brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 9px;
}

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

.site-footer p,
.site-footer > a:last-child {
  color: #607495;
  font-size: 9px;
}

.site-footer > a:last-child {
  color: var(--cyan);
  font-weight: 700;
}

.checkout-modal {
  width: min(510px, calc(100% - 30px));
  padding: 0;
  border: 1px solid rgba(62, 177, 255, 0.5);
  border-radius: 15px;
  background: transparent;
  color: var(--ink);
  box-shadow: 0 24px 100px rgba(0, 8, 28, 0.75), 0 0 55px rgba(0, 108, 255, 0.16);
}

.checkout-modal.is-open {
  display: block;
  position: fixed;
  z-index: 60;
  top: 50%;
  left: 50%;
  margin: 0;
  transform: translate(-50%, -50%);
}

.checkout-modal::backdrop {
  background: rgba(1, 6, 20, 0.78);
  backdrop-filter: blur(9px);
}

.modal-shell {
  position: relative;
  padding: 35px;
  background:
    radial-gradient(circle at 100% 0, rgba(18, 137, 255, 0.2), transparent 17rem),
    linear-gradient(145deg, #102a58, #07152f 68%, #061024);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 17px;
  display: grid;
  place-items: center;
  width: 29px;
  height: 29px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
}

.modal-close:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}

.checkout-modal h2 {
  margin-top: 22px;
  font-size: 41px;
}

.selected-plan {
  margin-top: 30px;
  padding: 15px 17px;
  border: 1px solid rgba(91, 179, 255, 0.3);
  border-radius: 9px;
  background: rgba(5, 20, 49, 0.54);
}

.selected-plan div {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.selected-plan span {
  color: var(--muted);
  font-size: 7px;
}

.selected-plan div strong {
  color: var(--muted-strong);
  font-size: 14px;
}

.selected-plan > strong {
  color: var(--cyan);
  font-family: var(--mono);
  font-size: 23px;
  font-weight: 500;
}

.payment-method {
  justify-content: flex-start;
  gap: 15px;
  margin-top: 21px;
  padding-bottom: 17px;
  border-bottom: 1px solid var(--line);
}

.payment-method > span:last-child {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.5;
}

.modal-copy {
  margin: 19px 0 0;
  color: var(--muted-strong);
  font-size: 11px;
  line-height: 1.75;
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 25px;
}

.modal-actions .button {
  min-height: 47px;
}

.modal-safe {
  margin: 23px 0 0;
  color: #647c9e;
  font-family: var(--mono);
  font-size: 8px;
  line-height: 1.6;
}

.modal-safe span {
  margin-right: 4px;
  color: var(--cyan);
}

.toast {
  position: fixed;
  z-index: 100;
  right: 22px;
  bottom: 22px;
  max-width: min(350px, calc(100% - 44px));
  padding: 13px 17px;
  border: 1px solid rgba(53, 195, 255, 0.5);
  border-radius: 8px;
  background: #0d2d58;
  box-shadow: 0 15px 45px rgba(0, 7, 25, 0.55), 0 0 24px rgba(0, 155, 255, 0.15);
  color: var(--muted-strong);
  font-size: 10px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 220ms ease, transform 220ms ease;
}

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

.reveal {
  opacity: 0;
  transform: translateY(19px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

@media (max-width: 1050px) {
  .hero {
    grid-template-columns: minmax(0, 0.9fr) minmax(390px, 1.1fr);
  }

  .network-card {
    left: 55%;
  }

  .floating-chip--top {
    left: 0;
  }

  .floating-chip--bottom {
    right: -3%;
  }

  .advantages {
    gap: 60px;
  }
}

@media (max-width: 800px) {
  .section-shell,
  .site-header {
    width: min(100% - 40px, 620px);
  }

  .main-nav {
    position: absolute;
    top: 75px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    margin: 0;
    padding: 7px;
    border: 1px solid var(--line-bright);
    border-radius: 10px;
    background: rgba(8, 21, 48, 0.97);
    box-shadow: 0 20px 40px rgba(0, 5, 22, 0.45);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    width: 100%;
    padding: 13px 12px;
  }

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

  .header-ticket {
    margin-left: auto;
    margin-right: 8px;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    min-height: auto;
    padding: 55px 0 75px;
  }

  .hero-copy {
    padding-bottom: 10px;
  }

  .hero h1 {
    max-width: 560px;
    font-size: clamp(3.6rem, 12vw, 5.2rem);
  }

  .hero-visual {
    min-height: 550px;
    margin-top: 35px;
  }

  .signal-strip {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .signal-caption {
    display: none;
  }

  .plans {
    padding-top: 105px;
  }

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

  .plan-card {
    min-height: 400px;
  }

  .advantages,
  .faq {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .advantages-aside > p {
    max-width: 420px;
  }

  .aside-code {
    margin-top: 30px;
  }

  .closing-cta {
    padding: 48px;
  }

  .closing-mark {
    width: 180px;
    margin-right: 0;
  }
}

@media (max-width: 560px) {
  .section-shell,
  .site-header {
    width: calc(100% - 32px);
  }

  .site-header {
    padding-top: 17px;
  }

  .header-ticket {
    padding: 0 10px;
    font-size: 9px;
  }

  .audio-player {
    right: 16px;
    bottom: 16px;
    left: 16px;
    min-width: 0;
  }

  .audio-copy {
    flex: 1;
  }

  .volume-control input {
    width: 45px;
  }

  .hero {
    padding-top: 44px;
  }

  .hero h1 {
    margin-top: 22px;
    font-size: clamp(3rem, 16vw, 4.4rem);
  }

  .hero-lede {
    font-size: 12px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    max-width: 260px;
  }

  .hero-proof {
    margin-top: 34px;
  }

  .hero-visual {
    min-height: 440px;
    margin-top: 22px;
  }

  .visual-orbit {
    width: 102%;
  }

  .network-card {
    left: 50%;
    width: min(320px, 82%);
    min-height: 390px;
    padding: 17px 17px 18px;
    border-radius: 15px;
  }

  .network-card__logo {
    height: 195px;
  }

  .network-card__logo img {
    width: 185px;
    height: 185px;
  }

  .floating-chip {
    padding: 8px 10px 8px 8px;
  }

  .floating-chip--top {
    top: 12%;
    left: -2%;
  }

  .floating-chip--bottom {
    right: -2%;
    bottom: 8%;
  }

  .floating-chip strong {
    font-size: 7px;
  }

  .floating-chip small {
    font-size: 6px;
  }

  .signal-strip {
    grid-template-columns: 1fr;
    gap: 19px;
    padding: 24px 0;
  }

  .plans,
  .advantages,
  .faq {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .section-heading {
    display: block;
  }

  .section-heading > p {
    margin-top: 22px;
  }

  .section-heading h2,
  .advantages-aside h2,
  .faq-heading h2,
  .closing-cta h2 {
    font-size: 3rem;
  }

  .plan-card {
    min-height: 405px;
    padding: 22px 20px 20px;
  }

  .payment-line {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .payment-line > span:not(.payment-badge) {
    margin-right: 0;
  }

  .advantages {
    gap: 45px;
  }

  .advantage {
    grid-template-columns: 25px 40px 1fr;
    gap: 11px;
    min-height: 137px;
  }

  .advantage-arrow {
    display: none;
  }

  .advantage-icon {
    width: 38px;
    height: 38px;
  }

  .advantage-icon svg {
    width: 22px;
    height: 22px;
  }

  .process {
    padding-bottom: 90px;
  }

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

  .process-step {
    min-height: 150px;
  }

  .closing-cta {
    min-height: 410px;
    padding: 36px 25px;
  }

  .closing-mark {
    position: absolute;
    right: -44px;
    bottom: -24px;
    width: 180px;
    opacity: 0.55;
  }

  .closing-cta::before {
    right: -130px;
  }

  .closing-cta::after {
    right: -130px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
    padding: 45px 0 30px;
  }

  .site-footer p {
    order: 3;
    margin: 0;
  }

  .modal-shell {
    padding: 31px 23px 25px;
  }

  .checkout-modal h2 {
    font-size: 35px;
  }

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

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
