:root {
  --bg: #080611;
  --bg-deep: #05040a;
  --surface: rgba(19, 12, 29, 0.78);
  --surface-solid: #120c1c;
  --surface-raised: #171021;
  --violet: #692093;
  --violet-bright: #a93ddb;
  --cyan: #06f6f6;
  --cyan-soft: #7fffff;
  --white: #fbf9ff;
  --text: #eee8f2;
  --muted: #9d94a4;
  --muted-strong: #beb4c4;
  --line: rgba(189, 140, 211, 0.14);
  --line-strong: rgba(191, 91, 226, 0.34);
  --success: #45d39a;
  --gradient: linear-gradient(125deg, var(--violet) 0%, #a839cc 45%, var(--cyan) 100%);
  --gradient-soft: linear-gradient(125deg, rgba(105, 32, 147, 0.2), rgba(6, 246, 246, 0.08));
  --shadow-violet: 0 18px 55px rgba(105, 32, 147, 0.24);
  --shadow-cyan: 0 18px 55px rgba(6, 246, 246, 0.12);
  --shell: 1180px;
  --radius-sm: 14px;
  --radius: 24px;
  --radius-lg: 34px;
  --header-height: 82px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-color: rgba(105, 32, 147, 0.72) var(--bg-deep);
  scrollbar-width: thin;
  overflow-x: hidden;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 50% -12%, rgba(105, 32, 147, 0.13), transparent 31%),
    var(--bg);
  font-family: Inter, Onest, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

@supports (overflow: clip) {
  html,
  body {
    overflow-x: clip;
  }
}

body::before {
  position: fixed;
  z-index: -3;
  inset: 0;
  content: "";
  pointer-events: none;
  background-image:
    linear-gradient(rgba(174, 92, 207, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(174, 92, 207, 0.028) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}

::selection {
  color: #06040b;
  background: var(--cyan);
}

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

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

button {
  color: inherit;
  font: inherit;
}

svg {
  display: block;
}

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

.section {
  position: relative;
  padding: 116px 0;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  transform: translateY(-160%);
  border-radius: 10px;
  color: #06040b;
  background: var(--cyan);
  font-weight: 800;
  transition: transform 180ms ease;
}

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

.ambient {
  position: fixed;
  z-index: -2;
  width: 580px;
  height: 580px;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(130px);
  opacity: 0.1;
}

.ambient--violet {
  top: 9vh;
  right: -240px;
  background: var(--violet-bright);
}

.ambient--cyan {
  bottom: -310px;
  left: -280px;
  background: var(--cyan);
  opacity: 0.055;
}

.noise {
  position: fixed;
  z-index: 20;
  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='.92' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  border-color: var(--line);
  background: rgba(8, 6, 17, 0.8);
  box-shadow: 0 16px 50px rgba(3, 2, 7, 0.28);
  backdrop-filter: blur(20px) saturate(125%);
}

.header-inner {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

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

.brand-mark {
  width: 42px;
  height: 42px;
  filter: drop-shadow(0 8px 20px rgba(105, 32, 147, 0.38));
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-copy strong {
  color: var(--white);
  font-size: 18px;
  font-weight: 850;
  letter-spacing: 0.04em;
}

.brand-copy small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 31px;
}

.desktop-nav a,
.text-link {
  position: relative;
  padding: 9px 0;
  color: var(--muted-strong);
  font-size: 14px;
  font-weight: 650;
  transition: color 180ms ease;
}

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

.desktop-nav a:hover,
.text-link:hover {
  color: var(--white);
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.language-switch {
  display: flex;
  align-items: center;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
}

.language-button {
  min-width: 34px;
  height: 27px;
  padding: 0 7px;
  border: 0;
  border-radius: 999px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-size: 10px;
  font-weight: 850;
  transition: color 180ms ease, background 180ms ease;
}

.language-button.is-active {
  color: var(--white);
  background: rgba(105, 32, 147, 0.66);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 13px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.01em;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 180ms ease;
}

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

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

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

.button--small {
  min-height: 42px;
  padding: 0 17px;
  border-color: rgba(6, 246, 246, 0.23);
  background: linear-gradient(125deg, rgba(105, 32, 147, 0.96), rgba(78, 36, 123, 0.96));
  box-shadow: 0 10px 28px rgba(105, 32, 147, 0.28);
}

.button--small:hover {
  border-color: rgba(6, 246, 246, 0.52);
  box-shadow: 0 14px 34px rgba(105, 32, 147, 0.38);
}

.button--primary {
  color: #fff;
  background: linear-gradient(125deg, var(--violet), #a12cba 66%, #5f5ac8 100%);
  box-shadow: 0 14px 42px rgba(105, 32, 147, 0.34), inset 0 1px rgba(255, 255, 255, 0.16);
}

.button--primary:hover {
  box-shadow: 0 19px 50px rgba(105, 32, 147, 0.48), 0 0 0 1px rgba(6, 246, 246, 0.18);
}

.button--ghost {
  border-color: var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.028);
}

.button--ghost:hover {
  border-color: rgba(6, 246, 246, 0.36);
  background: rgba(6, 246, 246, 0.055);
}

.button--cyan {
  color: #051011;
  background: var(--cyan);
  box-shadow: var(--shadow-cyan), inset 0 1px rgba(255, 255, 255, 0.5);
}

.button--cyan:hover {
  box-shadow: 0 20px 60px rgba(6, 246, 246, 0.23);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.025);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 1.5px;
  margin: 5px auto;
  background: var(--white);
  transition: transform 180ms ease;
}

.site-header.is-open .menu-button span:first-child {
  transform: translateY(3.25px) rotate(45deg);
}

.site-header.is-open .menu-button span:last-child {
  transform: translateY(-3.25px) rotate(-45deg);
}

.mobile-menu {
  border-top: 1px solid var(--line);
  background: rgba(8, 6, 17, 0.96);
  backdrop-filter: blur(20px);
}

.mobile-menu nav {
  display: grid;
  padding-block: 16px 22px;
}

.mobile-menu a {
  padding: 13px 2px;
  border-bottom: 1px solid var(--line);
  color: var(--muted-strong);
  font-weight: 700;
}

.hero {
  min-height: 910px;
  padding-top: calc(var(--header-height) + 108px);
  padding-bottom: 70px;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(105, 32, 147, 0.36), rgba(6, 246, 246, 0.18), transparent);
}

.hero-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) minmax(450px, 0.95fr);
  gap: 58px;
}

.eyebrow,
.trial-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted-strong);
  font-size: 12px;
  font-weight: 700;
}

.eyebrow {
  margin-bottom: 26px;
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
}

.status-dot,
.pulse-dot {
  position: relative;
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 16px rgba(6, 246, 246, 0.85);
}

.status-dot::after,
.pulse-dot::after {
  position: absolute;
  inset: -5px;
  border: 1px solid rgba(6, 246, 246, 0.42);
  border-radius: 50%;
  content: "";
  animation: ping 2.4s ease-out infinite;
}

@keyframes ping {
  0%, 35% { transform: scale(0.55); opacity: 0; }
  45% { opacity: 0.8; }
  100% { transform: scale(1.35); opacity: 0; }
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--white);
  letter-spacing: -0.045em;
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 28px;
  font-size: clamp(53px, 5.55vw, 78px);
  font-weight: 850;
  line-height: 0.98;
}

.gradient-text {
  color: transparent;
  background: linear-gradient(100deg, #a843cf 4%, #d264e6 43%, var(--cyan) 98%);
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-lead {
  max-width: 625px;
  margin-bottom: 34px;
  color: var(--muted-strong);
  font-size: 17px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 23px;
}

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

.trial-note strong {
  color: #d9d1dd;
  font-weight: 750;
}

.trial-icon {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border: 1px solid rgba(6, 246, 246, 0.2);
  border-radius: 9px;
  color: var(--cyan);
  background: rgba(6, 246, 246, 0.05);
}

.relay-card {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(105, 32, 147, 0.1), transparent 46%),
    rgba(10, 7, 16, 0.68);
  box-shadow: 0 36px 100px rgba(1, 0, 4, 0.46), inset 0 1px rgba(255, 255, 255, 0.03);
}

.relay-card::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(rgba(119, 61, 142, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(119, 61, 142, 0.04) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(circle, black, transparent 76%);
}

.relay-glow {
  position: absolute;
  top: 28%;
  left: 50%;
  width: 260px;
  height: 260px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(105, 32, 147, 0.3);
  filter: blur(90px);
}

.relay-visual {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 530px;
}

.signal-line {
  fill: none;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 10 10;
  animation: signal 6s linear infinite;
}

.signal-line--right {
  animation-direction: reverse;
}

@keyframes signal {
  to { stroke-dashoffset: -80; }
}

.packet--one {
  offset-path: path("M112 261C181 261 203 260 258 260");
  animation: packet-left 3.8s ease-in-out infinite;
}

.packet--two {
  offset-path: path("M382 260C438 260 467 261 528 261");
  animation: packet-right 4.2s 0.8s ease-in-out infinite;
}

@keyframes packet-left {
  0%, 10% { offset-distance: 0%; opacity: 0; }
  25%, 75% { opacity: 1; }
  90%, 100% { offset-distance: 100%; opacity: 0; }
}

@keyframes packet-right {
  0%, 10% { offset-distance: 100%; opacity: 0; }
  25%, 75% { opacity: 1; }
  90%, 100% { offset-distance: 0%; opacity: 0; }
}

.core-node {
  transform-box: fill-box;
  transform-origin: center;
  animation: core-breathe 4s ease-in-out infinite;
}

@keyframes core-breathe {
  0%, 100% { transform: scale(0.98); }
  50% { transform: scale(1.02); }
}

.relay-caption {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 22px;
  left: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--muted);
  background: rgba(9, 6, 14, 0.7);
  backdrop-filter: blur(10px);
  font-size: 12px;
}

.relay-caption div {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted-strong);
  font-weight: 700;
}

.facts-row {
  display: grid;
  margin-top: 74px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  grid-template-columns: repeat(4, 1fr);
}

.fact {
  display: grid;
  min-height: 116px;
  align-content: center;
  padding: 22px 28px;
  border-right: 1px solid var(--line);
}

.fact:last-child {
  border-right: 0;
}

.fact strong {
  color: var(--white);
  font-size: 25px;
  font-weight: 850;
  letter-spacing: -0.04em;
}

.fact strong span {
  color: var(--cyan);
  font-size: 13px;
}

.fact small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

.fact--status {
  position: relative;
  padding-left: 54px;
}

.fact--status .status-dot {
  position: absolute;
  top: 40px;
  left: 31px;
}

.fact--status strong {
  font-size: 15px;
  letter-spacing: -0.02em;
}

.section-heading {
  display: grid;
  align-items: end;
  margin-bottom: 55px;
  grid-template-columns: minmax(0, 1.4fr) minmax(320px, 0.7fr);
  gap: 70px;
}

.section-heading--stack {
  display: block;
}

.kicker {
  display: block;
  margin-bottom: 16px;
  color: var(--cyan);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.section-heading h2,
.faq-intro h2,
.final-card h2 {
  margin-bottom: 0;
  font-size: clamp(42px, 4.45vw, 62px);
  font-weight: 850;
  line-height: 1.04;
}

.section-heading > p {
  max-width: 470px;
  margin-bottom: 4px;
  color: var(--muted);
  line-height: 1.72;
}

.bento-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  grid-template-rows: repeat(2, minmax(270px, auto));
  gap: 16px;
}

.feature-card {
  position: relative;
  display: flex;
  min-width: 0;
  overflow: hidden;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 100% 0, rgba(105, 32, 147, 0.11), transparent 42%),
    rgba(17, 11, 26, 0.62);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  background-color: rgba(20, 12, 31, 0.85);
  box-shadow: 0 22px 65px rgba(4, 2, 7, 0.3);
}

.feature-card--wide {
  grid-row: span 2;
  justify-content: flex-start;
  padding-bottom: 260px;
}

.feature-card--meter {
  grid-column: span 2;
  padding-right: 230px;
}

.feature-card--accent {
  border-color: rgba(6, 246, 246, 0.17);
  background:
    radial-gradient(circle at 100% 0, rgba(6, 246, 246, 0.11), transparent 43%),
    linear-gradient(145deg, rgba(105, 32, 147, 0.15), rgba(14, 12, 24, 0.72));
}

.feature-number,
.step-index {
  position: absolute;
  top: 25px;
  right: 25px;
  display: grid;
  min-width: 36px;
  height: 28px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #c985e1;
  background: rgba(105, 32, 147, 0.1);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.09em;
}

.feature-icon,
.step-icon {
  display: grid;
  width: 50px;
  height: 50px;
  margin-bottom: 55px;
  place-items: center;
  border: 1px solid rgba(6, 246, 246, 0.2);
  border-radius: 15px;
  color: var(--cyan);
  background: rgba(6, 246, 246, 0.045);
}

.feature-icon svg,
.step-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card h3,
.step-card h3 {
  margin-bottom: 10px;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.12;
}

.feature-card p,
.step-card p {
  max-width: 420px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.feature-card--accent a {
  margin-top: 18px;
  color: var(--cyan-soft);
  font-size: 13px;
  font-weight: 750;
}

.device-stack {
  position: absolute;
  right: 20px;
  bottom: -16px;
  left: 20px;
  height: 240px;
}

.device-card {
  position: absolute;
  bottom: 0;
  border: 1px solid rgba(6, 246, 246, 0.18);
  background:
    linear-gradient(rgba(6, 246, 246, 0.06), rgba(105, 32, 147, 0.05)),
    #0b0a13;
  box-shadow: 0 18px 45px rgba(3, 1, 6, 0.45);
}

.device-card::after {
  position: absolute;
  content: "";
  border-radius: 999px;
  background: linear-gradient(90deg, var(--violet), var(--cyan));
  opacity: 0.64;
}

.device-card--screen {
  right: 5%;
  left: 5%;
  height: 172px;
  border-radius: 20px 20px 7px 7px;
  transform: perspective(500px) rotateX(3deg);
}

.device-card--screen::after {
  top: 27px;
  left: 30px;
  width: 46%;
  height: 7px;
  box-shadow: 0 20px rgba(255, 255, 255, 0.08), 0 40px rgba(255, 255, 255, 0.05);
}

.device-card--tablet {
  z-index: 2;
  right: 17%;
  width: 42%;
  height: 145px;
  border-radius: 18px 18px 4px 4px;
}

.device-card--tablet::after {
  top: 23px;
  left: 22px;
  width: 50%;
  height: 6px;
}

.device-card--phone {
  z-index: 3;
  right: 6%;
  width: 78px;
  height: 125px;
  border-radius: 20px 20px 7px 7px;
}

.device-card--phone::after {
  top: 24px;
  left: 15px;
  width: 38px;
  height: 5px;
  box-shadow: 0 17px rgba(255, 255, 255, 0.08), 0 34px rgba(255, 255, 255, 0.05);
}

.traffic-meter {
  position: absolute;
  top: 50%;
  right: 45px;
  display: grid;
  width: 155px;
  height: 155px;
  transform: translateY(-50%);
  place-content: center;
  border-radius: 50%;
  background:
    radial-gradient(circle, #100b19 58%, transparent 60%),
    conic-gradient(var(--cyan) 0 75%, var(--violet) 75% 92%, rgba(255, 255, 255, 0.06) 92%);
  box-shadow: 0 0 60px rgba(6, 246, 246, 0.09);
}

.traffic-meter span {
  color: var(--white);
  font-size: 40px;
  font-weight: 850;
  letter-spacing: -0.06em;
  line-height: 1;
}

.traffic-meter small {
  color: var(--cyan);
  font-size: 11px;
  font-weight: 850;
  text-align: center;
}

.support-avatar {
  position: relative;
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 40px;
  place-items: center;
  border: 1px solid rgba(6, 246, 246, 0.3);
  border-radius: 18px;
  color: var(--white);
  background: linear-gradient(145deg, var(--violet), #182d38);
  font-weight: 900;
}

.support-avatar i {
  position: absolute;
  right: -3px;
  bottom: -3px;
  width: 15px;
  height: 15px;
  border: 3px solid var(--surface-solid);
  border-radius: 50%;
  background: var(--success);
}

.process-section {
  overflow: hidden;
  background: linear-gradient(180deg, transparent, rgba(105, 32, 147, 0.035), transparent);
}

.section-heading--stack h2 {
  margin-bottom: 18px;
}

.section-heading--stack p {
  margin: 0;
}

.steps-line {
  position: relative;
  display: grid;
  margin-top: 52px;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.steps-line::before {
  position: absolute;
  z-index: -1;
  top: 49px;
  right: 17%;
  left: 17%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, var(--violet), #9e46c4, var(--cyan));
  opacity: 0.45;
}

.step-card {
  position: relative;
  min-height: 285px;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(14, 9, 21, 0.76);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.step-card:hover,
.step-card.is-active {
  transform: translateY(-3px);
  border-color: rgba(105, 32, 147, 0.55);
  background: linear-gradient(145deg, rgba(105, 32, 147, 0.15), rgba(14, 9, 21, 0.78));
}

.step-card .step-icon {
  margin-bottom: 66px;
}

.centered-action {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.pricing-section::before {
  position: absolute;
  z-index: -1;
  top: 26%;
  left: 50%;
  width: 980px;
  height: 580px;
  content: "";
  transform: translateX(-50%);
  border-radius: 50%;
  background: rgba(105, 32, 147, 0.1);
  filter: blur(130px);
}

.pricing-card {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(105, 32, 147, 0.56);
  border-radius: var(--radius-lg);
  background: rgba(14, 8, 21, 0.78);
  box-shadow: 0 34px 90px rgba(2, 1, 5, 0.42), inset 0 1px rgba(255, 255, 255, 0.035);
  grid-template-columns: 0.86fr 1.4fr;
}

.plan-summary {
  position: relative;
  grid-row: span 2;
  padding: 38px;
  border-right: 1px solid var(--line);
  background:
    radial-gradient(circle at 20% 0, rgba(105, 32, 147, 0.25), transparent 49%),
    linear-gradient(145deg, rgba(105, 32, 147, 0.11), transparent);
}

.plan-summary::after {
  position: absolute;
  right: -4px;
  bottom: 16%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  content: "";
  background: var(--cyan);
  box-shadow: 0 0 18px rgba(6, 246, 246, 0.85);
}

.plan-label {
  color: #d785ed;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.plan-summary h3 {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  margin: 18px 0;
}

.plan-big-number {
  font-size: 74px;
  font-weight: 900;
  line-height: 0.9;
}

.plan-unit {
  padding-bottom: 8px;
  color: var(--cyan);
  font-size: 18px;
  font-weight: 850;
}

.plan-summary > p {
  max-width: 310px;
  color: var(--muted);
  font-size: 14px;
}

.check-list {
  display: grid;
  gap: 11px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted-strong);
  font-size: 13px;
}

.check-list li > span:first-child {
  color: var(--cyan);
  font-weight: 900;
}

.period-picker {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.period-option {
  position: relative;
  display: grid;
  min-height: 190px;
  align-content: center;
  padding: 28px;
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  text-align: left;
  transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.period-option:nth-child(even) {
  border-right: 0;
}

.period-option:nth-child(n + 3) {
  border-bottom: 0;
}

.period-option::after {
  position: absolute;
  top: 21px;
  right: 21px;
  width: 8px;
  height: 8px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  content: "";
  background: rgba(255, 255, 255, 0.06);
}

.period-option:hover {
  color: var(--muted-strong);
  background: rgba(105, 32, 147, 0.07);
}

.period-option.is-selected {
  color: var(--muted-strong);
  background:
    radial-gradient(circle at 10% 0, rgba(105, 32, 147, 0.3), transparent 62%),
    rgba(105, 32, 147, 0.09);
  box-shadow: inset 0 0 0 1px rgba(6, 246, 246, 0.2);
}

.period-option.is-selected::after {
  border-color: var(--cyan);
  background: var(--cyan);
  box-shadow: 0 0 18px rgba(6, 246, 246, 0.9);
}

.period-option span {
  font-size: 13px;
  font-weight: 750;
}

.period-option strong {
  margin: 6px 0 4px;
  color: var(--white);
  font-size: 34px;
  font-weight: 850;
  letter-spacing: -0.045em;
}

.period-option.is-selected strong {
  color: var(--cyan-soft);
}

.period-option small {
  font-size: 11px;
}

.plan-checkout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 22px 25px;
  border-top: 1px solid var(--line);
  grid-column: 1 / -1;
}

.plan-checkout > div {
  display: grid;
  gap: 3px;
}

.plan-checkout > div span {
  color: var(--muted);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.13em;
}

.plan-checkout > div strong {
  color: var(--text);
  font-size: 13px;
}

.trial-card {
  display: grid;
  min-height: 190px;
  align-items: center;
  margin-top: 22px;
  padding: 28px 32px;
  border: 1px solid rgba(6, 246, 246, 0.19);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 0 50%, rgba(105, 32, 147, 0.25), transparent 31%),
    radial-gradient(circle at 100% 50%, rgba(6, 246, 246, 0.09), transparent 31%),
    rgba(13, 10, 21, 0.75);
  grid-template-columns: auto 1fr auto;
  gap: 26px;
}

.trial-orbit {
  display: grid;
  width: 94px;
  height: 94px;
  place-items: center;
  border: 1px dashed rgba(6, 246, 246, 0.38);
  border-radius: 50%;
  animation: orbit 16s linear infinite;
}

.trial-orbit span {
  display: grid;
  width: 57px;
  height: 57px;
  transform: rotate(0deg);
  place-items: center;
  border-radius: 18px;
  color: var(--white);
  background: linear-gradient(145deg, var(--violet), #254d5a);
  font-size: 22px;
  font-weight: 900;
  animation: orbit-reverse 16s linear infinite;
}

@keyframes orbit { to { transform: rotate(360deg); } }
@keyframes orbit-reverse { to { transform: rotate(-360deg); } }

.trial-card .kicker {
  margin-bottom: 6px;
}

.trial-card h3 {
  margin-bottom: 7px;
  font-size: 27px;
}

.trial-card p {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.payment-note {
  margin: 15px 0 0;
  color: #706778;
  font-size: 11px;
  text-align: center;
}

.faq-section {
  padding-bottom: 70px;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 100px;
}

.faq-intro {
  position: sticky;
  top: 130px;
  align-self: start;
}

.faq-intro h2 {
  margin-bottom: 24px;
}

.faq-intro p {
  max-width: 340px;
  color: var(--muted);
}

.text-arrow {
  display: inline-flex;
  gap: 9px;
  margin-top: 10px;
  color: var(--cyan-soft);
  font-size: 14px;
  font-weight: 800;
}

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

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

.faq-list summary {
  display: flex;
  min-height: 86px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--text);
  cursor: pointer;
  font-size: 16px;
  font-weight: 750;
  list-style: none;
}

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

.faq-list summary i {
  position: relative;
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
}

.faq-list summary i::before,
.faq-list summary i::after {
  position: absolute;
  top: 8px;
  right: 0;
  width: 17px;
  height: 1.5px;
  content: "";
  background: var(--cyan);
  transition: transform 180ms ease;
}

.faq-list summary i::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary i::after {
  transform: rotate(0deg);
}

.faq-list details p {
  max-width: 660px;
  margin: -7px 45px 28px 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.72;
}

.final-section {
  padding-top: 70px;
}

.final-card {
  position: relative;
  display: grid;
  min-height: 330px;
  overflow: hidden;
  align-items: center;
  padding: 54px 58px;
  border: 1px solid rgba(105, 32, 147, 0.48);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 86% 52%, rgba(6, 246, 246, 0.12), transparent 25%),
    radial-gradient(circle at 28% 0, rgba(105, 32, 147, 0.3), transparent 48%),
    rgba(15, 9, 24, 0.82);
  box-shadow: var(--shadow-violet);
  grid-template-columns: 1.2fr auto;
  gap: 48px;
}

.final-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.25;
  background:
    linear-gradient(rgba(163, 88, 191, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(163, 88, 191, 0.08) 1px, transparent 1px);
  background-size: 35px 35px;
  mask-image: radial-gradient(circle at 80%, black, transparent 58%);
}

.final-card > *:not(.final-grid) {
  position: relative;
  z-index: 1;
}

.final-card h2 {
  margin-bottom: 16px;
}

.final-card p {
  max-width: 570px;
  margin-bottom: 0;
  color: var(--muted);
}

.final-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.site-footer {
  padding-top: 65px;
  padding-bottom: 30px;
}

.footer-grid {
  display: grid;
  padding: 54px 0;
  border-top: 1px solid var(--line);
  grid-template-columns: 1.5fr repeat(3, 0.72fr);
  gap: 45px;
}

.footer-brand p {
  max-width: 300px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.footer-column {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 12px;
}

.footer-column strong {
  margin-bottom: 4px;
  color: var(--text);
  font-size: 12px;
}

.footer-column a {
  color: var(--muted);
  font-size: 12px;
  transition: color 180ms ease;
}

.footer-column a:hover,
.footer-bottom a:hover {
  color: var(--cyan-soft);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: #706877;
  font-size: 10px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom div {
  display: flex;
  gap: 17px;
}

.mobile-sticky-cta {
  position: fixed;
  z-index: 80;
  right: 14px;
  bottom: 14px;
  left: 14px;
  display: none;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  padding: 0 19px;
  border: 1px solid rgba(6, 246, 246, 0.3);
  border-radius: 15px;
  color: #fff;
  background: linear-gradient(110deg, rgba(105, 32, 147, 0.98), rgba(71, 42, 119, 0.98) 68%, rgba(6, 246, 246, 0.75));
  box-shadow: 0 18px 48px rgba(2, 1, 6, 0.5);
  backdrop-filter: blur(16px);
  font-size: 13px;
  font-weight: 850;
}

.noscript {
  position: fixed;
  z-index: 1000;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 12px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  color: var(--text);
  background: var(--surface-solid);
  font-size: 12px;
  text-align: center;
}

.reveal {
  transform: translateY(20px);
  opacity: 0;
  transition: transform 650ms cubic-bezier(.2, .7, .2, 1), opacity 650ms ease;
}

.reveal--delay {
  transition-delay: 100ms;
}

.reveal--delay-short {
  transition-delay: 60ms;
}

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

:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

@media (max-width: 1100px) {
  .desktop-nav {
    gap: 18px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(410px, 0.86fr);
    gap: 36px;
  }

  .relay-card {
    min-height: 530px;
  }

  .relay-visual {
    min-height: 490px;
  }

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

  .feature-card--wide {
    grid-row: span 2;
  }

  .feature-card--meter {
    grid-column: auto;
    padding-right: 30px;
  }

  .traffic-meter {
    position: relative;
    top: auto;
    right: auto;
    width: 112px;
    height: 112px;
    margin-bottom: 30px;
    transform: none;
  }

  .traffic-meter span {
    font-size: 30px;
  }

  .pricing-card {
    grid-template-columns: 0.8fr 1.5fr;
  }

  .faq-layout {
    gap: 60px;
  }
}

@media (max-width: 920px) {
  :root {
    --header-height: 72px;
  }

  .desktop-nav,
  .desktop-only {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .hero {
    min-height: 0;
    padding-top: calc(var(--header-height) + 70px);
  }

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

  .hero-copy {
    max-width: 700px;
  }

  .relay-card {
    width: min(100%, 650px);
    margin: 20px auto 0;
  }

  .facts-row {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .fact:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .section {
    padding: 88px 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .section-heading > p {
    max-width: 650px;
  }

  .pricing-card {
    grid-template-columns: 1fr;
  }

  .plan-summary {
    grid-row: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .plan-summary::after {
    right: 14%;
    bottom: -4px;
  }

  .period-picker {
    grid-column: 1;
  }

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

  .faq-intro {
    position: static;
  }

  .final-card {
    grid-template-columns: 1fr;
  }

  .final-actions {
    align-items: flex-start;
    flex-direction: row;
  }

  .footer-grid {
    grid-template-columns: 1.4fr repeat(2, 1fr);
  }

  .footer-column:last-child {
    grid-column: 2 / -1;
  }

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

@media (max-width: 680px) {
  .shell {
    width: min(calc(100% - 30px), var(--shell));
  }

  .header-actions {
    gap: 8px;
  }

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

  .brand-copy strong {
    font-size: 16px;
  }

  .language-switch {
    margin-left: auto;
  }

  .hero {
    padding-top: calc(var(--header-height) + 52px);
    padding-bottom: 46px;
  }

  .eyebrow {
    margin-bottom: 20px;
    font-size: 10px;
  }

  .hero h1 {
    margin-bottom: 22px;
    font-size: clamp(42px, 13vw, 60px);
  }

  .hero-lead {
    font-size: 15px;
    line-height: 1.65;
  }

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

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

  .trial-note {
    align-items: flex-start;
    font-size: 11px;
  }

  .relay-card {
    min-height: 405px;
    border-radius: 24px;
  }

  .relay-visual {
    min-height: 370px;
    transform: scale(1.16);
  }

  .relay-caption {
    right: 13px;
    bottom: 13px;
    left: 13px;
    padding: 11px;
    font-size: 10px;
  }

  .relay-caption > span {
    display: none;
  }

  .facts-row {
    margin-top: 48px;
  }

  .fact {
    min-height: 96px;
    padding: 17px 18px;
  }

  .fact strong {
    font-size: 21px;
  }

  .fact--status {
    padding-left: 42px;
  }

  .fact--status .status-dot {
    top: 33px;
    left: 19px;
  }

  .section {
    padding: 70px 0;
  }

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

  .section-heading h2,
  .faq-intro h2,
  .final-card h2 {
    font-size: clamp(36px, 10vw, 48px);
  }

  .bento-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .feature-card,
  .feature-card--wide,
  .feature-card--meter {
    min-height: 275px;
    grid-column: auto;
    grid-row: auto;
  }

  .feature-card--wide {
    min-height: 500px;
    padding-bottom: 245px;
  }

  .feature-icon,
  .step-icon {
    margin-bottom: 47px;
  }

  .steps-line {
    grid-template-columns: 1fr;
  }

  .steps-line::before {
    top: 13%;
    right: auto;
    bottom: 13%;
    left: 52px;
    width: 1px;
    height: auto;
    background: linear-gradient(var(--violet), #9e46c4, var(--cyan));
  }

  .step-card {
    min-height: 255px;
  }

  .pricing-card {
    border-radius: 24px;
  }

  .plan-summary {
    padding: 30px 25px;
  }

  .period-option {
    min-height: 150px;
    padding: 20px;
  }

  .period-option strong {
    font-size: 27px;
  }

  .plan-checkout {
    align-items: stretch;
    flex-direction: column;
  }

  .plan-checkout .button {
    width: 100%;
  }

  .trial-card {
    justify-items: start;
    padding: 26px;
    grid-template-columns: 1fr;
  }

  .trial-orbit {
    width: 76px;
    height: 76px;
  }

  .trial-orbit span {
    width: 47px;
    height: 47px;
  }

  .trial-card .button {
    width: 100%;
  }

  .faq-list summary {
    min-height: 77px;
    font-size: 14px;
  }

  .faq-list details p {
    margin-right: 20px;
    font-size: 13px;
  }

  .final-section {
    padding-top: 35px;
  }

  .final-card {
    min-height: 0;
    padding: 36px 26px;
    border-radius: 24px;
  }

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

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-column:last-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    padding-bottom: 74px;
  }

  .footer-bottom div {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .mobile-sticky-cta {
    display: flex;
  }
}

@media (max-width: 410px) {
  .brand-copy small {
    display: none;
  }

  .language-button {
    min-width: 30px;
  }

  .facts-row {
    grid-template-columns: 1fr;
  }

  .fact,
  .fact:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .fact:last-child {
    border-bottom: 0;
  }

  .period-picker {
    grid-template-columns: 1fr;
  }

  .period-option,
  .period-option:nth-child(even),
  .period-option:nth-child(n + 3) {
    min-height: 126px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .period-option:last-child {
    border-bottom: 0;
  }
}

@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 {
    transform: none;
    opacity: 1;
  }
}
