:root {
  color-scheme: dark;
  --bg: #070911;
  --bg-soft: #0d101b;
  --surface: rgba(19, 22, 35, 0.78);
  --surface-soft: rgba(255, 255, 255, 0.07);
  --surface-strong: rgba(255, 255, 255, 0.12);
  --border: rgba(255, 255, 255, 0.15);
  --border-strong: rgba(255, 255, 255, 0.26);
  --text: #f8f5ff;
  --muted: rgba(248, 245, 255, 0.72);
  --muted-strong: rgba(248, 245, 255, 0.86);
  --pink: #f197ea;
  --violet: #9b7cff;
  --blue: #79d7ff;
  --cyan: #5be7f2;
  --green: #7df0bd;
  --amber: #ffd36f;
  --danger: #ff7a9b;
  --shadow-sm: 0 16px 42px rgba(0, 0, 0, 0.26);
  --shadow-md: 0 28px 90px rgba(0, 0, 0, 0.34);
  --radius-lg: 30px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --mx: 0px;
  --my: 0px;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    linear-gradient(145deg, #070911 0%, #11101d 42%, #071827 100%);
  overflow-x: hidden;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent 78%);
  opacity: 0.5;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, rgba(241, 151, 234, 0.16), transparent 28%),
    linear-gradient(245deg, rgba(91, 231, 242, 0.14), transparent 30%),
    linear-gradient(0deg, rgba(125, 240, 189, 0.08), transparent 46%);
  opacity: 0.78;
}

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

button,
input,
textarea {
  font: inherit;
}

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

:focus-visible {
  outline: 3px solid rgba(121, 215, 255, 0.9);
  outline-offset: 4px;
}

.ambient-grid {
  position: fixed;
  inset: auto -8% -28% -8%;
  height: 58vh;
  pointer-events: none;
  background:
    linear-gradient(rgba(121, 215, 255, 0.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(241, 151, 234, 0.11) 1px, transparent 1px);
  background-size: 72px 72px;
  transform: perspective(900px) rotateX(62deg);
  transform-origin: center bottom;
  opacity: 0.38;
}

.site-shell {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 14px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 68px;
  padding: 10px 12px;
  margin-top: 14px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: rgba(8, 10, 18, 0.78);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(22px);
}

.brand,
.topnav,
.footer div,
.hero-badges,
.compact-actions,
.hero-actions,
.hero-metrics {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  min-height: 48px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 15px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0)),
    linear-gradient(135deg, var(--pink), var(--blue));
  color: #0c0d15;
  box-shadow: 0 0 36px rgba(121, 215, 255, 0.26);
  font-size: 13px;
}

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

.topnav {
  gap: 6px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.topnav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 12px;
  border-radius: 14px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
  transition: background 0.2s ease, color 0.2s ease;
}

.topnav a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.topbar-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 16px;
  border: 1px solid var(--border);
  border-radius: 16px;
  color: var(--muted-strong);
  background: rgba(255, 255, 255, 0.08);
  font-size: 14px;
  font-weight: 850;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.topbar-cta:hover {
  transform: translateY(-1px);
  border-color: rgba(121, 215, 255, 0.42);
  background: rgba(121, 215, 255, 0.12);
}

.hero-stage {
  position: relative;
  min-height: min(650px, calc(100svh - 160px));
  display: flex;
  align-items: center;
  padding: 42px 0 58px;
  overflow: hidden;
  isolation: isolate;
}

.hero-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(100deg, rgba(241, 151, 234, 0.16), transparent 36%),
    linear-gradient(255deg, rgba(121, 215, 255, 0.14), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent 74%);
  border-radius: 0;
  mask-image: linear-gradient(90deg, transparent 0%, #000 14%, #000 86%, transparent 100%);
}

.hero-stage::after {
  content: "";
  position: absolute;
  inset: auto 4% 30px 4%;
  z-index: -1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(121, 215, 255, 0.72), rgba(241, 151, 234, 0.72), transparent);
  box-shadow: 0 0 34px rgba(121, 215, 255, 0.45);
}

.hero-copy {
  position: relative;
  z-index: 3;
  width: min(650px, 100%);
  padding: 28px 0;
}

.hero-badges {
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.hero-badges span,
.section-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: #0b0d14;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0)),
    linear-gradient(135deg, var(--pink), var(--blue));
  box-shadow: 0 14px 34px rgba(121, 215, 255, 0.18);
  font-size: 14px;
  font-weight: 900;
}

.hero-copy h1 {
  margin: 0 0 18px;
  max-width: 760px;
  font-size: 6.75rem;
  line-height: 0.9;
  letter-spacing: 0;
  background: linear-gradient(135deg, #fff 0%, #f0bdff 44%, #8ee4ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy p,
.section p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.hero-copy p {
  max-width: 620px;
  margin: 0 0 30px;
}

.hero-actions,
.compact-actions {
  gap: 12px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 154px;
  min-height: 50px;
  padding: 13px 18px;
  border: 0;
  border-radius: 17px;
  cursor: pointer;
  color: var(--text);
  font-weight: 850;
  line-height: 1.15;
  transition: transform 0.18s ease, opacity 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

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

.button:active {
  transform: translateY(0);
}

.button-primary {
  color: #090b12;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0)),
    linear-gradient(135deg, var(--pink), var(--blue));
  box-shadow: 0 18px 50px rgba(121, 215, 255, 0.22);
}

.button-secondary,
.button-ghost {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.08);
}

.button-secondary:hover,
.button-ghost:hover {
  border-color: rgba(121, 215, 255, 0.42);
  background: rgba(121, 215, 255, 0.1);
}

.button-ghost {
  color: var(--muted-strong);
}

.button.is-disabled,
.button:disabled {
  opacity: 0.56;
  cursor: wait;
  transform: none;
}

.hero-metrics {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.hero-metrics span {
  min-width: 112px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
}

.hero-metrics strong,
.hero-metrics small {
  display: block;
}

.hero-metrics strong {
  font-size: 18px;
}

.hero-metrics small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.hero-scene {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  perspective: 1100px;
  transform: translate3d(calc(var(--mx) * -0.2), calc(var(--my) * -0.2), 0);
}

.scene-grid {
  position: absolute;
  inset: 14% -16% 0 31%;
  background:
    linear-gradient(rgba(121, 215, 255, 0.13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(241, 151, 234, 0.12) 1px, transparent 1px);
  background-size: 48px 48px;
  transform: rotateX(62deg) rotateZ(-9deg);
  transform-origin: center;
  border-radius: 42px;
  opacity: 0.48;
  mask-image: linear-gradient(90deg, transparent, #000 20%, #000 80%, transparent);
}

.core-prism {
  position: absolute;
  top: 46%;
  right: 17%;
  width: 232px;
  height: 232px;
  transform-style: preserve-3d;
  transform: translate3d(calc(var(--mx) * 0.35), calc(var(--my) * 0.35), 0) rotateX(58deg) rotateZ(-28deg);
  animation: prism-float 5.5s ease-in-out infinite;
}

.core-prism__halo {
  position: absolute;
  inset: -42px;
  border: 1px solid rgba(121, 215, 255, 0.38);
  border-radius: 44px;
  transform: translateZ(-16px);
  box-shadow:
    0 0 50px rgba(121, 215, 255, 0.24),
    inset 0 0 50px rgba(241, 151, 234, 0.12);
}

.core-prism__body {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
}

.core-prism__face {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.04)),
    linear-gradient(135deg, rgba(241, 151, 234, 0.9), rgba(121, 215, 255, 0.84));
  box-shadow: 0 30px 80px rgba(91, 231, 242, 0.28);
}

.core-prism__face--front {
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 30px;
  border-radius: 38px;
  color: #090b12;
  text-align: center;
  transform: translateZ(52px);
}

.core-prism__face--front span,
.core-prism__face--front small {
  display: block;
  font-weight: 950;
  letter-spacing: 0;
}

.core-prism__face--front span {
  font-size: 2.85rem;
  line-height: 0.9;
}

.core-prism__face--front small {
  margin-top: 0;
  color: rgba(9, 11, 18, 0.74);
  font-size: 1.05rem;
  line-height: 1;
}

.core-prism__face--right {
  top: 23px;
  right: -52px;
  width: 60px;
  height: 188px;
  border-radius: 0 28px 28px 0;
  transform: rotateY(90deg) translateZ(30px);
  background: linear-gradient(180deg, rgba(121, 215, 255, 0.64), rgba(50, 64, 104, 0.42));
}

.core-prism__face--top {
  top: -52px;
  left: 23px;
  width: 188px;
  height: 60px;
  border-radius: 28px 28px 0 0;
  transform: rotateX(90deg) translateZ(30px);
  background: linear-gradient(90deg, rgba(241, 151, 234, 0.58), rgba(255, 255, 255, 0.18));
}

.country-node {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 156px;
  min-height: 58px;
  padding: 9px 11px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: rgba(12, 15, 27, 0.72);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(16px);
  animation: node-float 5s ease-in-out infinite;
}

.country-node__flag {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  font-size: 24px;
}

.country-flag {
  position: relative;
  overflow: hidden;
  color: rgba(248, 245, 255, 0.92);
  isolation: isolate;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.18),
    0 10px 24px rgba(0, 0, 0, 0.18);
}

.country-flag::before,
.country-flag::after {
  content: "";
  position: absolute;
  inset: 0;
  display: none;
}

.country-flag--nl {
  color: transparent;
  background: linear-gradient(to bottom, #ae1c28 0 33.333%, #ffffff 33.333% 66.666%, #21468b 66.666% 100%);
}

.country-flag--fr {
  color: transparent;
  background: linear-gradient(to right, #002654 0 33.333%, #ffffff 33.333% 66.666%, #ce1126 66.666% 100%);
}

.country-flag--de {
  color: transparent;
  background: linear-gradient(to bottom, #000000 0 33.333%, #dd0000 33.333% 66.666%, #ffce00 66.666% 100%);
}

.country-flag--fi {
  color: transparent;
  background: #ffffff;
}

.country-flag--fi::before {
  display: block;
  left: 29%;
  right: auto;
  width: 18%;
  background: #002f6c;
}

.country-flag--fi::after {
  display: block;
  top: 39%;
  bottom: auto;
  height: 18%;
  background: #002f6c;
}

.country-flag--it {
  color: transparent;
  background: linear-gradient(to right, #009246 0 33.333%, #ffffff 33.333% 66.666%, #ce2b37 66.666% 100%);
}

.country-flag--pl {
  color: transparent;
  background: linear-gradient(to bottom, #ffffff 0 50%, #dc143c 50% 100%);
}

.country-flag--es {
  color: transparent;
  background: linear-gradient(to bottom, #aa151b 0 25%, #f1bf00 25% 75%, #aa151b 75% 100%);
}

.country-flag--se {
  color: transparent;
  background: #006aa7;
}

.country-flag--se::before {
  display: block;
  left: 30%;
  right: auto;
  width: 14%;
  background: #fecc00;
}

.country-flag--se::after {
  display: block;
  top: 42%;
  bottom: auto;
  height: 14%;
  background: #fecc00;
}

.country-flag--no {
  color: transparent;
  background: #ba0c2f;
}

.country-flag--no::before {
  display: block;
  left: 28%;
  right: auto;
  width: 23%;
  border-left: 4px solid #ffffff;
  border-right: 4px solid #ffffff;
  background: #00205b;
}

.country-flag--no::after {
  display: block;
  top: 37%;
  bottom: auto;
  height: 26%;
  border-top: 4px solid #ffffff;
  border-bottom: 4px solid #ffffff;
  background: #00205b;
}

.country-flag--dk {
  color: transparent;
  background: #c60c30;
}

.country-flag--dk::before {
  display: block;
  left: 31%;
  right: auto;
  width: 13%;
  background: #ffffff;
}

.country-flag--dk::after {
  display: block;
  top: 42%;
  bottom: auto;
  height: 13%;
  background: #ffffff;
}

.country-flag--at {
  color: transparent;
  background: linear-gradient(to bottom, #ed2939 0 33.333%, #ffffff 33.333% 66.666%, #ed2939 66.666% 100%);
}

.country-flag--ch {
  color: transparent;
  background: #d52b1e;
}

.country-flag--ch::before {
  display: block;
  inset: 26% 42%;
  background: #ffffff;
}

.country-flag--ch::after {
  display: block;
  inset: 40% 24%;
  background: #ffffff;
}

.country-flag--ru {
  color: transparent;
  background: linear-gradient(to bottom, #ffffff 0 33.333%, #0039a6 33.333% 66.666%, #d52b1e 66.666% 100%);
}

.country-flag--us {
  color: transparent;
  background:
    linear-gradient(#3c3b6e 0 0) 0 0 / 48% 54% no-repeat,
    repeating-linear-gradient(to bottom, #b22234 0 7.69%, #ffffff 7.69% 15.38%);
}

.country-flag--tr {
  color: transparent;
  background: #e30a17;
}

.country-flag--tr::before {
  display: block;
  inset: 24% 44% 24% 18%;
  border-radius: 50%;
  box-shadow: -5px 0 0 4px #ffffff;
}

.country-flag--be {
  color: transparent;
  background: linear-gradient(to right, #000000 0 33.333%, #ffd90c 33.333% 66.666%, #ef3340 66.666% 100%);
}

.country-flag--cz {
  color: transparent;
  background: linear-gradient(to bottom, #ffffff 0 50%, #d7141a 50% 100%);
}

.country-flag--cz::before {
  display: block;
  inset: 0 auto 0 0;
  width: 58%;
  background: #11457e;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.country-flag--hu {
  color: transparent;
  background: linear-gradient(to bottom, #ce2939 0 33.333%, #ffffff 33.333% 66.666%, #477050 66.666% 100%);
}

.country-flag--ro {
  color: transparent;
  background: linear-gradient(to right, #002b7f 0 33.333%, #fcd116 33.333% 66.666%, #ce1126 66.666% 100%);
}

.country-flag--bg {
  color: transparent;
  background: linear-gradient(to bottom, #ffffff 0 33.333%, #00966e 33.333% 66.666%, #d62612 66.666% 100%);
}

.country-flag--pt {
  color: transparent;
  background: linear-gradient(to right, #006600 0 40%, #ff0000 40% 100%);
}

.country-flag--ie {
  color: transparent;
  background: linear-gradient(to right, #169b62 0 33.333%, #ffffff 33.333% 66.666%, #ff883e 66.666% 100%);
}

.country-flag--lt {
  color: transparent;
  background: linear-gradient(to bottom, #fdb913 0 33.333%, #006a44 33.333% 66.666%, #c1272d 66.666% 100%);
}

.country-flag--lv {
  color: transparent;
  background: linear-gradient(to bottom, #9e3039 0 42%, #ffffff 42% 58%, #9e3039 58% 100%);
}

.country-flag--ee {
  color: transparent;
  background: linear-gradient(to bottom, #4891d9 0 33.333%, #000000 33.333% 66.666%, #ffffff 66.666% 100%);
}

.country-flag--ua {
  color: transparent;
  background: linear-gradient(to bottom, #0057b7 0 50%, #ffd700 50% 100%);
}

.country-flag--kz {
  color: transparent;
  background: #00afca;
}

.country-flag--gr {
  color: transparent;
  background: repeating-linear-gradient(to bottom, #0d5eaf 0 11.11%, #ffffff 11.11% 22.22%);
}

.country-node strong,
.country-node small {
  display: block;
}

.country-node strong {
  font-size: 14px;
}

.country-node small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
}

.country-node--slot-1 { top: 23%; right: 37%; }
.country-node--slot-2 { top: 16%; right: 4%; animation-delay: -1.2s; }
.country-node--slot-3 { bottom: 22%; right: 42%; animation-delay: -2s; }
.country-node--slot-4 { bottom: 16%; right: 12%; animation-delay: -3s; }
.country-node--slot-5 { top: 42%; right: 2%; animation-delay: -2.6s; }
.country-node--slot-6 { bottom: 38%; right: 50%; animation-delay: -3.4s; }

.signal-line {
  position: absolute;
  z-index: 1;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(121, 215, 255, 0.86), rgba(241, 151, 234, 0.86), transparent);
  box-shadow: 0 0 20px rgba(121, 215, 255, 0.4);
  transform-origin: right center;
  opacity: 0.78;
  animation: signal-pulse 2.8s ease-in-out infinite;
}

.signal-line--nl {
  top: 35%;
  right: 28%;
  width: 280px;
  transform: rotate(-15deg);
}

.signal-line--fi {
  top: 30%;
  right: 9%;
  width: 210px;
  transform: rotate(21deg);
  animation-delay: -0.7s;
}

.signal-line--fr {
  bottom: 34%;
  right: 30%;
  width: 310px;
  transform: rotate(20deg);
  animation-delay: -1.4s;
}

.signal-line--de {
  bottom: 29%;
  right: 11%;
  width: 220px;
  transform: rotate(-17deg);
  animation-delay: -2.1s;
}

.network-band,
.section,
.benefits {
  margin: 22px 0;
}

.network-band {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1fr);
  gap: 24px;
  align-items: end;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(20px);
}

.network-band h2,
.section h2 {
  margin: 12px 0 10px;
  max-width: 780px;
  font-size: 3.25rem;
  line-height: 1;
  letter-spacing: 0;
}

.section h3 {
  margin: 16px 0 8px;
  font-size: 22px;
}

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

.country-grid article {
  min-height: 112px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.07);
}

.country-grid__flag,
.country-grid strong,
.country-grid small {
  display: block;
}

.country-grid__flag {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  margin-bottom: 10px;
}

.country-grid strong {
  font-size: 15px;
}

.country-grid small {
  margin-top: 4px;
  color: var(--muted);
}

.section {
  padding: 44px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(22px);
}

.access-section,
.compensation {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(312px, 0.46fr);
  gap: 30px;
  align-items: center;
}

.section-copy p {
  max-width: 700px;
  margin: 0 0 26px;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--muted-strong);
  font-weight: 850;
}

.text-link:hover,
.footer a:hover {
  color: var(--blue);
}

.access-panel {
  display: grid;
  gap: 14px;
}

.qr-box,
.traffic-box {
  display: grid;
  place-items: center;
  min-height: 226px;
  padding: 22px;
  border: 1px solid var(--border-strong);
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.05));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12);
}

.qr-box canvas {
  display: none;
  width: 180px;
  height: 180px;
  border-radius: 18px;
  background: #fff;
  padding: 8px;
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.25);
}

.qr-box span {
  color: var(--muted);
  text-align: center;
}

.qr-box.is-ready canvas {
  display: block;
}

.qr-box.is-ready span {
  display: none;
}

.traffic-box {
  min-height: 126px;
  align-items: center;
}

.traffic-box span,
.status-line {
  color: var(--muted);
}

.traffic-box strong {
  margin-top: 6px;
  font-size: 28px;
  line-height: 1.1;
}

.status-line {
  margin-top: 16px;
  font-size: 14px;
}

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

.benefits article,
.tariff-card,
.steps article {
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.065);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(18px);
}

.benefit-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 15px;
  color: #090b12;
  background: linear-gradient(135deg, var(--green), var(--blue));
  font-weight: 950;
  font-size: 13px;
}

.benefits h3 {
  margin: 18px 0 8px;
  font-size: 22px;
}

.benefits p,
.steps p,
.tariff-card p,
.tariff-card__meta {
  color: var(--muted);
  line-height: 1.55;
}

.compensation {
  background:
    linear-gradient(135deg, rgba(125, 240, 189, 0.12), rgba(121, 215, 255, 0.08)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
}

.compensation .button {
  justify-self: end;
}

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

.tariff-card {
  position: relative;
  min-height: 268px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.tariff-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--pink), var(--blue), var(--green));
  opacity: 0.55;
}

.tariff-card--popular {
  border-color: rgba(121, 215, 255, 0.5);
  background:
    linear-gradient(135deg, rgba(121, 215, 255, 0.12), rgba(241, 151, 234, 0.08)),
    rgba(255, 255, 255, 0.075);
}

.tariff-card__badge {
  width: fit-content;
  min-height: 32px;
  padding: 7px 10px;
  border-radius: 999px;
  color: #0a0c13;
  background: linear-gradient(135deg, var(--pink), var(--blue));
  font-size: 12px;
  font-weight: 900;
}

.tariff-card h3 {
  margin: 18px 0 8px;
  font-size: 25px;
}

.tariff-card__price {
  margin-top: auto;
  font-size: 38px;
  font-weight: 950;
}

.tariff-card--loading {
  min-height: 126px;
  color: var(--muted);
}

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

.steps article span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  color: #090b12;
  background: linear-gradient(135deg, var(--pink), var(--blue));
  font-weight: 950;
}

.steps article p {
  margin-bottom: 0;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 34px 0 46px;
  color: var(--muted);
}

.footer div {
  gap: 18px;
  flex-wrap: wrap;
}

[data-reveal] {
  opacity: 1;
  transform: translateY(0);
}

.is-ready [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.42s ease, transform 0.42s ease;
}

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

@keyframes prism-float {
  0%, 100% { margin-top: 0; }
  50% { margin-top: -14px; }
}

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

@keyframes signal-pulse {
  0%, 100% { opacity: 0.34; filter: saturate(0.85); }
  50% { opacity: 0.9; filter: saturate(1.3); }
}

@media (max-width: 1040px) {
  .site-shell {
    width: min(100% - 28px, 960px);
  }

  .topnav {
    display: none;
  }

  .hero-copy h1 {
    font-size: 5.1rem;
  }

  .hero-scene {
    opacity: 0.72;
  }

  .core-prism {
    right: 7%;
    width: 190px;
    height: 190px;
  }

  .country-node {
    transform: scale(0.92);
  }

  .network-band,
  .access-section,
  .compensation {
    grid-template-columns: 1fr;
  }

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

  .compensation .button {
    justify-self: start;
  }
}

@media (max-width: 780px) {
  .site-shell {
    width: min(100% - 22px, 720px);
  }

  .topbar {
    top: 10px;
    min-height: 62px;
    border-radius: 20px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .hero-stage {
    min-height: 600px;
    align-items: flex-start;
    padding: 34px 0 50px;
  }

  .hero-stage::before {
    inset: 0;
    border-radius: 0;
    mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 90%, transparent 100%);
  }

  .hero-copy {
    padding-top: 18px;
  }

  .hero-copy h1 {
    font-size: 4.05rem;
  }

  .hero-copy p,
  .section p {
    font-size: 16px;
  }

  .hero-actions .button,
  .compact-actions .button {
    flex: 1 1 220px;
  }

  .hero-metrics span {
    flex: 1 1 132px;
  }

  .scene-grid {
    inset: 44% -30% 3% 18%;
    opacity: 0.32;
  }

  .core-prism {
    top: 76%;
    right: 8%;
    width: 146px;
    height: 146px;
    opacity: 0.44;
  }

  .core-prism__face--front {
    border-radius: 28px;
    gap: 6px;
    padding: 20px;
  }

  .core-prism__face--front span {
    font-size: 1.85rem;
  }

  .core-prism__face--front small {
    margin-top: 0;
    font-size: 0.82rem;
  }

  .country-node {
    display: none;
  }

  .signal-line {
    display: none;
  }

  .network-band,
  .section {
    border-radius: 26px;
    padding: 24px;
  }

  .network-band h2,
  .section h2 {
    font-size: 2.35rem;
  }

  .benefits,
  .tariff-grid,
  .steps {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 520px) {
  .site-shell {
    width: min(100% - 18px, 480px);
  }

  .brand-text {
    font-size: 16px;
  }

  .topbar-cta {
    display: none;
  }

  .hero-copy h1 {
    font-size: 3.55rem;
  }

  .hero-stage {
    min-height: auto;
    padding: 32px 0 34px;
  }

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

  .hero-copy p {
    margin-bottom: 22px;
  }

  .hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 18px;
  }

  .hero-metrics span {
    min-width: 0;
    padding: 10px;
  }

  .hero-metrics strong {
    font-size: 16px;
  }

  .hero-metrics small {
    font-size: 11px;
  }

  .hero-badges span,
  .section-kicker {
    min-height: 32px;
    font-size: 13px;
  }

  .button {
    width: 100%;
    min-width: 0;
  }

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

  .qr-box,
  .traffic-box {
    min-height: 180px;
  }

  .traffic-box strong {
    font-size: 24px;
  }

  .tariff-card {
    min-height: 230px;
  }
}

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

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
