@font-face {
  font-family: "Prata";
  src: url("/fastvps-static/assets/prata-regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("/fastvps-static/assets/fastvps-inter-cyrillic.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --ink: #030a16;
  --ink-soft: #050e1d;
  --navy: #07152b;
  --navy-2: #0b1c38;
  --navy-3: #10264a;
  --royal: #2458aa;
  --royal-light: #79a8ff;
  --gold: #d6a94e;
  --gold-light: #f1d37d;
  --gold-deep: #8b6727;
  --white: #f6f8fc;
  --text: #dce4f1;
  --muted: #98a8c0;
  --green: #4cdda0;
  --line: rgba(214, 169, 78, 0.27);
  --line-blue: rgba(121, 168, 255, 0.19);
  --shell: 1180px;
  --display: "Prata", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  background: var(--ink);
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--text);
  background-color: var(--ink);
  background-image:
    linear-gradient(rgba(36, 88, 170, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36, 88, 170, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

section[id] {
  scroll-margin-top: 88px;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

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

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

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

h1,
h2,
h3 {
  color: var(--white);
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 72px;
  border-bottom: 1px solid rgba(214, 169, 78, 0.16);
  background: rgba(3, 10, 22, 0.92);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.16);
  transition: background-color 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(3, 10, 22, 0.98);
  border-color: rgba(214, 169, 78, 0.32);
}

.scroll-progress {
  --scroll-progress: 0;
  position: absolute;
  right: 0;
  bottom: -2px;
  left: 0;
  height: 4px;
  overflow: hidden;
  pointer-events: none;
}

.scroll-progress span {
  position: absolute;
  top: 1px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--gold-light);
  box-shadow: 0 0 12px rgba(241, 211, 125, 0.42);
  transform: scaleX(var(--scroll-progress));
  transform-origin: left center;
  transition: transform 90ms linear;
}

.scroll-progress i {
  position: absolute;
  top: 0;
  left: calc((100% - 7px) * var(--scroll-progress));
  width: 7px;
  height: 7px;
  border: 1px solid var(--gold-light);
  background: var(--ink);
  box-shadow: 0 0 12px rgba(241, 211, 125, 0.55);
  opacity: 0;
  transform: translateY(-2px) rotate(45deg);
  transition: left 90ms linear, opacity 180ms ease;
}

.scroll-progress.is-active i {
  opacity: 1;
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 72px;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-family: var(--display);
  font-size: 21px;
  font-weight: 600;
  line-height: 1;
}

.brand img {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(214, 169, 78, 0.48);
  border-radius: 6px;
}

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

.nav a {
  position: relative;
  padding: 9px 0;
  color: #bbc6d7;
  font-size: 13px;
  font-weight: 650;
  transition: color 180ms ease;
}

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

.nav a:hover,
.nav a:focus-visible {
  color: var(--gold-light);
}

.nav a:hover::after,
.nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-mobile-action {
  display: none;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  border: 1px solid rgba(121, 168, 255, 0.22);
  border-radius: 4px;
  background: var(--navy);
}

.menu-button > span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px 0;
  background: var(--text);
  transition: transform 180ms ease, opacity 180ms ease;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 23px;
  border: 1px solid rgba(214, 169, 78, 0.55);
  border-radius: 4px;
  color: var(--white);
  background: transparent;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.2;
  text-align: center;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.08);
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  border-color: var(--gold-light);
  box-shadow: 0 13px 36px rgba(214, 169, 78, 0.12);
}

.button.primary {
  border-color: var(--gold);
  color: #06101f;
  background: var(--gold-light);
  box-shadow: 0 12px 38px rgba(214, 169, 78, 0.16);
}

.button.primary:hover,
.button.primary:focus-visible {
  color: #02070f;
  background: #ffe19a;
}

.button.glass {
  border-color: rgba(214, 169, 78, 0.48);
  background: rgba(3, 10, 22, 0.45);
}

.button.large {
  min-height: 54px;
  padding-inline: 27px;
  font-size: 15px;
}

.button.wide {
  width: 100%;
}

.header-cta {
  min-width: 142px;
}

.hero {
  position: relative;
  min-height: 790px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  isolation: isolate;
}

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

.hero-image {
  z-index: -3;
  object-fit: cover;
  object-position: center;
  animation: hero-breathe 18s ease-in-out infinite alternate;
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(125deg, transparent 38%, rgba(36, 88, 170, 0.07) 62%, transparent 82%),
    linear-gradient(90deg, rgba(3, 10, 22, 0.98) 0%, rgba(3, 10, 22, 0.91) 37%, rgba(3, 10, 22, 0.37) 67%, rgba(3, 10, 22, 0.16) 100%),
    linear-gradient(0deg, rgba(3, 10, 22, 0.9) 0%, rgba(3, 10, 22, 0.1) 40%, rgba(3, 10, 22, 0.5) 100%);
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(214, 169, 78, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(214, 169, 78, 0.035) 1px, transparent 1px);
  background-size: 96px 96px;
  content: "";
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 760px) 1fr;
  min-height: 662px;
  align-items: center;
  gap: 50px;
  padding-top: 34px;
  padding-bottom: 122px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 700px;
  animation: hero-enter 820ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-overline,
.section-index {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 750;
  text-transform: uppercase;
}

.hero-overline i {
  display: block;
  width: 42px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  margin: 0 0 20px;
  font-family: var(--display);
  font-style: normal;
  font-weight: 600;
  line-height: 0.82;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
  max-width: 100%;
  color: var(--white);
  font-size: 106px;
  text-shadow: 0 16px 46px rgba(121, 168, 255, 0.09);
  white-space: nowrap;
}

.hero h1 em {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 22px;
  color: var(--gold-light);
  font-size: 35px;
  font-style: normal;
  font-weight: 600;
  line-height: 1;
  text-shadow: 0 0 28px rgba(214, 169, 78, 0.16);
}

.hero h1 em::before,
.hero h1 em::after {
  width: 58px;
  height: 1px;
  background: var(--gold-deep);
  content: "";
}

.hero-motto {
  margin-bottom: 12px;
  color: var(--white);
  font-family: var(--display);
  font-size: 27px;
  font-weight: 600;
}

.hero-lead {
  max-width: 620px;
  margin-bottom: 32px;
  color: #c7d1e1;
  font-size: 18px;
  line-height: 1.75;
}

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

.hero-facts {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  min-height: 116px;
  border-top: 1px solid rgba(214, 169, 78, 0.27);
  background: rgba(3, 10, 22, 0.84);
  box-shadow: 0 -24px 68px rgba(36, 88, 170, 0.07);
}

.hero-facts-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  min-height: 116px;
}

.hero-facts-grid > div {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
  padding: 22px 28px;
  border-left: 1px solid rgba(121, 168, 255, 0.15);
}

.hero-facts-grid > div:last-child {
  border-right: 1px solid rgba(121, 168, 255, 0.15);
}

.hero-facts strong {
  flex: 0 0 auto;
  color: var(--gold-light);
  font-family: var(--display);
  font-size: 31px;
  font-weight: 600;
}

.hero-facts strong.all-platforms {
  font-family: Georgia, serif;
  font-size: 39px;
  line-height: 0.8;
}

.hero-facts span {
  min-width: 0;
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
}

.hero-facts small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
}

.section {
  position: relative;
  isolation: isolate;
  padding: 112px 0;
}

.section::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(118deg, transparent 8%, rgba(36, 88, 170, 0.052) 41%, transparent 72%),
    linear-gradient(90deg, transparent 14%, rgba(214, 169, 78, 0.018) 50%, transparent 86%);
  content: "";
  pointer-events: none;
}

.section:nth-of-type(even)::before {
  transform: scaleX(-1);
}

.section > .shell {
  position: relative;
  z-index: 1;
}

section[id] {
  scroll-margin-top: 92px;
}

.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 74px;
}

.ornament span {
  width: 96px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line));
}

.ornament span:last-child {
  background: linear-gradient(90deg, var(--line), transparent);
}

.ornament i {
  width: 6px;
  height: 6px;
  background: var(--gold);
  box-shadow: 0 0 18px rgba(214, 169, 78, 0.22);
  transform: rotate(45deg);
}

.ornament i:nth-of-type(2) {
  width: 8px;
  height: 8px;
  background: var(--gold-light);
}

.section-intro {
  max-width: 720px;
}

.section-intro.centered {
  margin-inline: auto;
  text-align: center;
}

.section-intro.centered .section-index {
  justify-content: center;
}

.section-index {
  margin-bottom: 16px;
}

.section-intro h2,
.affiliate-copy h2,
.final-cta h2 {
  margin-bottom: 22px;
  font-family: var(--display);
  font-size: 62px;
  font-weight: 600;
  line-height: 0.98;
  text-shadow: 0 14px 46px rgba(121, 168, 255, 0.09);
}

.section-intro > p:last-child,
.affiliate-copy > p {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.principle-section {
  background: rgba(3, 10, 22, 0.96);
}

.principle-intro {
  max-width: 1000px;
  margin: 0 auto 68px;
  text-align: center;
}

.principle-intro .section-index {
  justify-content: center;
}

.principle-intro > p:last-child {
  margin-inline: auto;
}

.principle-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  box-shadow: 0 -28px 70px -60px rgba(121, 168, 255, 0.45);
}

.principle-list article {
  display: grid;
  grid-template-columns: 72px 1fr;
  min-height: 178px;
  gap: 20px;
  padding: 34px 36px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background-color 200ms ease;
}

.principle-list article:nth-child(2n) {
  border-right: 0;
}

.principle-list article:hover {
  background: rgba(36, 88, 170, 0.08);
}

.principle-list article > span {
  align-self: center;
  color: var(--gold-light);
  font-family: var(--display);
  font-size: 36px;
  line-height: 1;
  text-shadow: 0 0 28px rgba(214, 169, 78, 0.14);
}

.principle-list h3 {
  margin-bottom: 10px;
  font-family: var(--display);
  font-size: 27px;
  font-weight: 600;
}

.principle-list p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.plans-section {
  background: rgba(3, 10, 22, 0.97);
}

.pricing-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 48px;
  margin-bottom: 42px;
}

.period-control {
  width: 512px;
  max-width: 100%;
  border: 1px solid rgba(214, 169, 78, 0.34);
  border-radius: 2px;
  background: rgba(5, 17, 36, 0.78);
  box-shadow: 0 16px 38px rgba(36, 88, 170, 0.07);
}

.period-picker {
  --period-position: 12.5%;
  position: relative;
  display: grid;
  min-width: 0;
  height: 60px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.period-picker::before {
  position: absolute;
  z-index: 1;
  top: 15px;
  right: 12.5%;
  left: 12.5%;
  height: 1px;
  background: rgba(214, 169, 78, 0.36);
  box-shadow: 0 0 12px rgba(214, 169, 78, 0.12);
  content: "";
}

.period-picker::after {
  position: absolute;
  z-index: 3;
  top: 11px;
  left: var(--period-position);
  width: 9px;
  height: 9px;
  border: 1px solid var(--gold-light);
  background: var(--gold-light);
  box-shadow: 0 0 13px rgba(214, 169, 78, 0.52);
  content: "";
  transform: translateX(-50%) rotate(45deg);
  transition: left 260ms cubic-bezier(0.16, 1, 0.3, 1);
}

.period-option {
  position: relative;
  z-index: 2;
  display: grid;
  min-width: 0;
  height: 60px;
  grid-template-rows: 16px 12px;
  align-content: start;
  justify-items: center;
  gap: 1px;
  padding: 26px 6px 5px;
  border: 0;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  transition: color 180ms ease, background-color 180ms ease;
}

.period-option + .period-option {
  border-left: 1px solid rgba(121, 168, 255, 0.11);
}

.period-option::before {
  position: absolute;
  top: 13px;
  left: 50%;
  width: 4px;
  height: 4px;
  border: 0;
  background: rgba(214, 169, 78, 0.72);
  content: "";
  transform: translateX(-50%) rotate(45deg);
}

.period-option span,
.period-option small {
  display: block;
}

.period-option span {
  font-size: 12px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  line-height: 16px;
}

.period-option small {
  color: var(--gold-light);
  font-size: 10px;
  font-variant-numeric: tabular-nums;
  line-height: 12px;
}

.period-option.is-active {
  color: var(--gold-light);
  background: rgba(36, 88, 170, 0.12);
}

.period-option.is-active::before {
  opacity: 0;
}

.period-option.is-active span,
.period-option.is-active small {
  color: var(--gold-light);
}

.period-option:hover {
  background: rgba(36, 88, 170, 0.06);
}

.period-option.is-active:hover {
  background: rgba(36, 88, 170, 0.12);
}

.period-option:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: -4px;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
  box-shadow: 0 -28px 70px -60px rgba(121, 168, 255, 0.42);
}

.plan-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 38px 34px 34px;
  border-right: 1px solid var(--line);
  background: rgba(7, 21, 43, 0.34);
  transition: background-color 200ms ease, transform 200ms ease;
}

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

.plan-card:hover {
  z-index: 2;
  background: rgba(16, 38, 74, 0.55);
  transform: translateY(-4px);
}

.plan-card.popular {
  border: 1px solid rgba(214, 169, 78, 0.72);
  background: rgba(15, 37, 72, 0.7);
  box-shadow: 0 20px 70px rgba(36, 88, 170, 0.12), 0 0 42px rgba(214, 169, 78, 0.06);
  transform: translateY(-13px);
}

.plan-card.popular:hover {
  transform: translateY(-17px);
}

.popular-note {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 26px;
  color: #071329;
  background: var(--gold-light);
  font-size: 10px;
  font-weight: 850;
  line-height: 26px;
  text-align: center;
  text-transform: uppercase;
}

.popular .plan-number {
  margin-top: 16px;
}

.plan-number {
  margin-bottom: 30px;
  color: rgba(241, 211, 125, 0.72);
  font-family: var(--display);
  font-size: 36px;
  text-shadow: 0 0 28px rgba(214, 169, 78, 0.12);
}

.plan-label {
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.plan-card h3 {
  margin: 5px 0 7px;
  font-family: var(--display);
  font-size: 37px;
  font-weight: 600;
  line-height: 1;
  overflow-wrap: anywhere;
}

.plan-card > p {
  min-height: 52px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 14px;
}

.device-limit {
  display: flex;
  align-items: baseline;
  gap: 9px;
  margin-bottom: 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(121, 168, 255, 0.15);
}

.device-limit strong {
  color: var(--white);
  font-family: var(--display);
  font-size: 34px;
  font-weight: 600;
}

.device-limit span {
  color: var(--muted);
  font-size: 12px;
}

.selected-period {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 15px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.selected-period strong {
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 800;
}

.price-block {
  min-height: 108px;
  margin-bottom: 20px;
}

.price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 7px 10px;
}

.price strong {
  color: var(--gold-light);
  font-family: var(--display);
  font-size: 42px;
  font-weight: 600;
  line-height: 1;
}

.price span {
  color: var(--muted);
  font-size: 12px;
}

.price-detail {
  display: flex;
  min-height: 40px;
  flex-direction: column;
  gap: 2px;
  margin-top: 10px;
  color: var(--muted);
  font-size: 11px;
}

.price-detail span b {
  color: var(--white);
  font-weight: 700;
}

.price-detail > b {
  min-height: 17px;
  margin-top: 2px;
  color: var(--gold-light);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.price-detail > b:empty {
  visibility: hidden;
}

.plan-card ul {
  display: grid;
  gap: 10px;
  min-height: 148px;
  margin: 0 0 24px;
  padding: 0;
  color: #c4cfdf;
  font-size: 13px;
  list-style: none;
}

.plan-card li {
  position: relative;
  padding-left: 19px;
}

.plan-card li::before {
  position: absolute;
  top: 9px;
  left: 1px;
  width: 5px;
  height: 5px;
  background: var(--gold);
  content: "";
  transform: rotate(45deg);
}

.plan-card .button {
  margin-top: auto;
}

.steps-section {
  background: linear-gradient(180deg, rgba(7, 21, 43, 0.96), rgba(3, 10, 22, 0.98));
}

.steps-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
  align-items: start;
}

.steps-copy {
  position: sticky;
  top: 118px;
}

.steps-copy h2 {
  line-height: 1.13;
}

.steps-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}

.text-link {
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(214, 169, 78, 0.45);
  text-underline-offset: 5px;
}

.text-link:hover,
.text-link:focus-visible {
  color: #ffe19a;
}

.steps-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  box-shadow: 0 -28px 70px -60px rgba(121, 168, 255, 0.42);
  list-style: none;
}

.steps-list li {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 24px;
  min-height: 175px;
  align-items: center;
  padding: 30px 16px;
  border-bottom: 1px solid var(--line);
}

.steps-list li > span {
  color: var(--gold-light);
  font-family: var(--display);
  font-size: 48px;
  text-align: center;
  text-shadow: 0 0 30px rgba(214, 169, 78, 0.14);
}

.steps-list small {
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.steps-list h3 {
  margin: 3px 0 7px;
  font-family: var(--display);
  font-size: 30px;
  font-weight: 600;
}

.steps-list p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.service-section {
  background: rgba(3, 10, 22, 0.98);
}

.service-list {
  margin-top: 58px;
  border-top: 1px solid var(--line);
  box-shadow: 0 -28px 70px -60px rgba(121, 168, 255, 0.42);
}

.service-list article {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr) auto;
  min-height: 130px;
  align-items: center;
  gap: 25px;
  padding: 25px 30px;
  border-bottom: 1px solid var(--line);
  transition: background-color 180ms ease;
}

.service-list article:hover {
  background: rgba(36, 88, 170, 0.08);
  box-shadow: inset 3px 0 rgba(121, 168, 255, 0.18);
}

.service-list article > span {
  color: var(--gold-light);
  font-family: var(--display);
  font-size: 27px;
}

.service-list h3 {
  margin: 0 0 5px;
  font-family: var(--display);
  font-size: 29px;
  font-weight: 600;
}

.service-list p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.service-list a {
  min-width: 150px;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 750;
  text-align: right;
}

.affiliate-section {
  overflow: hidden;
  border-top: 1px solid rgba(121, 168, 255, 0.16);
  border-bottom: 1px solid rgba(214, 169, 78, 0.35);
  background:
    linear-gradient(90deg, rgba(4, 14, 31, 0.98), rgba(15, 42, 84, 0.91)),
    var(--navy-2);
}

.affiliate-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: center;
  gap: 90px;
}

.affiliate-copy,
.affiliate-rate {
  min-width: 0;
}

.affiliate-copy h2 {
  overflow-wrap: anywhere;
}

.affiliate-copy .button {
  margin-top: 28px;
}

.affiliate-rate {
  display: flex;
  min-height: 270px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  box-shadow: 0 0 70px rgba(36, 88, 170, 0.1);
  text-align: center;
}

.affiliate-rate small {
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.affiliate-rate strong {
  margin: 10px 0;
  color: var(--gold-light);
  font-family: var(--display);
  font-size: 92px;
  font-weight: 600;
  line-height: 0.8;
  text-shadow: 0 0 42px rgba(214, 169, 78, 0.18);
}

.affiliate-rate span {
  color: var(--muted);
  font-size: 12px;
}

.reviews-section {
  background: rgba(3, 10, 22, 0.98);
}

.review-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 58px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 -28px 70px -60px rgba(121, 168, 255, 0.42);
}

.review-grid blockquote {
  margin: 0;
  padding: 44px 46px;
  border-right: 1px solid var(--line);
  transition: background-color 180ms ease, box-shadow 180ms ease;
}

.review-grid blockquote:hover {
  background: rgba(36, 88, 170, 0.055);
  box-shadow: inset 0 1px rgba(241, 211, 125, 0.08);
}

.review-grid blockquote:last-child {
  border-right: 0;
}

.review-grid blockquote > p {
  min-height: 120px;
  margin-bottom: 30px;
  color: var(--white);
  font-family: var(--display);
  font-size: 25px;
  font-weight: 500;
  line-height: 1.45;
}

.review-grid blockquote footer {
  display: flex;
  flex-direction: column;
  color: var(--gold-light);
  font-size: 12px;
}

.review-grid blockquote footer span {
  color: var(--muted);
  font-size: 11px;
}

.faq-section {
  background: linear-gradient(180deg, rgba(7, 21, 43, 0.96), rgba(3, 10, 22, 0.99));
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 90px;
  align-items: start;
}

.faq-list {
  border-top: 1px solid var(--line);
  box-shadow: 0 -28px 70px -60px rgba(121, 168, 255, 0.42);
}

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

.faq-list summary {
  display: grid;
  min-height: 76px;
  grid-template-columns: 1fr 32px;
  align-items: center;
  gap: 20px;
  color: var(--white);
  cursor: pointer;
  font-family: var(--display);
  font-size: 24px;
  font-weight: 600;
  list-style: none;
}

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

.faq-list summary span {
  color: var(--gold-light);
  font-family: var(--sans);
  font-size: 21px;
  font-weight: 400;
  text-align: center;
  transition: transform 180ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transform: translateY(-7px);
  transition: grid-template-rows 320ms cubic-bezier(0.16, 1, 0.3, 1), opacity 220ms ease, transform 320ms cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer > div {
  overflow: hidden;
}

.faq-list details[open] .faq-answer {
  grid-template-rows: 1fr;
  opacity: 1;
  transform: translateY(0);
}

.faq-answer p {
  max-width: 670px;
  margin: -5px 0 26px;
  color: var(--muted);
  font-size: 14px;
}

.faq-layout .faq-lead {
  max-width: 520px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.faq-layout .faq-support-note {
  margin-top: 24px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.faq-support-note a {
  color: var(--gold-light);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(214, 169, 78, 0.44);
  text-underline-offset: 4px;
}

.faq-support-note a:hover,
.faq-support-note a:focus-visible {
  color: var(--white);
  text-decoration-color: var(--gold-light);
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 112px 0 126px;
  border-top: 1px solid rgba(214, 169, 78, 0.24);
  background: #020711;
  text-align: center;
}

.final-cta::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(36, 88, 170, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36, 88, 170, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
}

.final-cta-inner {
  position: relative;
  z-index: 1;
}

.final-cta .ornament {
  margin-bottom: 48px;
}

.final-cta .section-index {
  justify-content: center;
}

.final-cta h2 {
  margin-bottom: 12px;
  color: var(--gold-light);
  font-size: 80px;
}

.final-cta p:not(.section-index) {
  margin-bottom: 28px;
  color: var(--muted);
}

.final-cta .hero-actions {
  justify-content: center;
}

.site-footer {
  border-top: 1px solid rgba(214, 169, 78, 0.2);
  background: #020711;
}

.footer-primary {
  display: grid;
  grid-template-columns: minmax(240px, 300px) 180px minmax(260px, 1fr);
  gap: 48px;
  padding-top: 44px;
  padding-bottom: 38px;
}

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

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

.footer-heading {
  margin-bottom: 12px;
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 750;
  text-transform: uppercase;
}

.footer-column a {
  min-height: 28px;
  color: var(--muted);
  font-size: 13px;
  line-height: 22px;
  transition: color 180ms ease;
}

.footer-column a:hover,
.footer-column a:focus-visible,
.footer-meta a:hover,
.footer-meta a:focus-visible {
  color: var(--gold-light);
}

.footer-documents {
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  align-content: start;
  column-gap: 32px;
}

.footer-documents .footer-heading {
  grid-column: 1 / -1;
}

.footer-meta {
  display: flex;
  min-height: 56px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(214, 169, 78, 0.2);
}

.footer-meta span,
.footer-meta a {
  color: var(--muted);
  font-size: 11px;
}

.mobile-cta {
  position: fixed;
  right: 10px;
  bottom: max(10px, env(safe-area-inset-bottom));
  left: 10px;
  z-index: 90;
  display: none;
  grid-template-columns: minmax(0, 1fr) 88px;
  gap: 6px;
  width: auto;
  padding: 6px;
  border: 1px solid rgba(214, 169, 78, 0.4);
  border-radius: 6px;
  background: var(--ink-soft);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.38), 0 0 0 1px rgba(121, 168, 255, 0.06) inset;
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition: opacity 190ms ease, transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-cta.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.mobile-cta a {
  display: flex;
  min-width: 0;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  transition: border-color 160ms ease, background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.mobile-cta a:active {
  transform: translateY(1px);
}

.mobile-cta a:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 2px;
}

.mobile-cta-primary {
  gap: 9px;
  padding: 0 13px;
  color: #06101f;
  background: var(--gold-light);
}

.mobile-cta-primary:hover {
  background: #f6dc91;
}

.mobile-cta-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.mobile-cta-secondary {
  padding: 0 12px;
  border: 1px solid rgba(214, 169, 78, 0.58);
  color: var(--gold-light);
  background: var(--navy);
}

.mobile-cta-secondary:hover {
  border-color: var(--gold-light);
  background: var(--navy-2);
}

.brand,
.hero h1,
.hero h1 em,
.hero-motto,
.section-intro h2,
.affiliate-copy h2,
.final-cta h2,
.principle-list article > span,
.principle-list h3,
.plan-number,
.plan-card h3,
.device-limit strong,
.price strong,
.steps-list li > span,
.steps-list h3,
.service-list article > span,
.service-list h3,
.affiliate-rate strong,
.review-grid blockquote > p,
.faq-list summary {
  font-weight: 400;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 640ms ease var(--reveal-delay, 0ms), transform 640ms cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay, 0ms);
}

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

@keyframes hero-enter {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes hero-breathe {
  from { transform: scale(1); }
  to { transform: scale(1.018); }
}

@media (max-width: 1120px) {
  .nav {
    gap: 24px;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 700px) 1fr;
  }

  .hero h1 span {
    font-size: 92px;
  }

  .hero-facts-grid > div {
    padding-inline: 18px;
  }

  .period-option {
    min-width: 0;
  }

  .plan-card {
    padding-inline: 25px;
  }
}

@media (max-width: 980px) {
  .pricing-heading {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 28px;
  }

  .period-control {
    width: min(512px, 100%);
  }

  .header-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .menu-button {
    display: block;
    grid-column: 2;
    grid-row: 1;
  }

  .header-cta {
    display: none;
  }

  .nav {
    position: fixed;
    top: 72px;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 32px 24px;
    background: rgba(3, 10, 22, 0.99);
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    min-height: 58px;
    padding: 17px 8px;
    border-bottom: 1px solid rgba(214, 169, 78, 0.2);
    font-family: var(--display);
    font-size: 25px;
  }

  .nav-mobile-action {
    display: inline-flex !important;
    min-height: 50px !important;
    align-items: center;
    justify-content: center;
    margin-top: 22px;
    border: 1px solid var(--gold) !important;
    border-radius: 4px;
    color: #071329 !important;
    background: var(--gold-light);
    font-family: var(--sans) !important;
    font-size: 14px !important;
  }

  .hero {
    min-height: 780px;
  }

  .hero h1 span {
    font-size: 82px;
  }

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

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

  .plan-card,
  .plan-card:last-child {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .plan-card.popular,
  .plan-card.popular:hover {
    transform: none;
  }

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

  .hero-facts-grid > div {
    grid-column: span 2;
    min-height: 58px;
    padding: 12px 18px;
  }

  .hero-facts-grid > div:nth-child(4) {
    grid-column: 2 / span 2;
  }

  .hero-facts-grid > div:nth-child(5) {
    grid-column: 4 / span 2;
  }

  .hero-facts {
    min-height: 116px;
  }

  .hero-facts strong {
    font-size: 26px;
  }

  .hero-facts-grid > div:nth-child(4),
  .hero-facts-grid > div:nth-child(5) {
    border-top: 1px solid rgba(121, 168, 255, 0.15);
  }

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

  .steps-copy {
    position: static;
  }

  .affiliate-layout {
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 50px;
  }

  .footer-primary {
    grid-template-columns: minmax(160px, 0.65fr) minmax(0, 1.35fr);
    gap: 28px 42px;
  }

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

  .footer-documents {
    grid-template-columns: repeat(2, minmax(130px, 1fr));
    column-gap: 24px;
  }
}

@media (max-width: 760px) {
  .shell {
    width: min(100% - 28px, var(--shell));
  }

  .site-header,
  .header-inner {
    height: 64px;
    min-height: 64px;
  }

  .nav {
    top: 64px;
  }

  .brand {
    font-size: 18px;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .hero {
    min-height: 808px;
  }

  .hero-image {
    object-position: 66% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(3, 10, 22, 0.96), rgba(3, 10, 22, 0.5)),
      linear-gradient(0deg, rgba(3, 10, 22, 0.94) 0%, rgba(3, 10, 22, 0.16) 50%, rgba(3, 10, 22, 0.62) 100%);
  }

  .hero-inner {
    min-height: 634px;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 178px;
  }

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

  .hero-overline i {
    width: 28px;
  }

  .hero h1 {
    margin-bottom: 18px;
  }

  .hero h1 span {
    font-size: 55px;
    white-space: normal;
  }

  .hero h1 em {
    gap: 12px;
    margin-top: 17px;
    font-size: 25px;
  }

  .hero h1 em::before,
  .hero h1 em::after {
    width: 36px;
  }

  .hero-motto {
    font-size: 22px;
  }

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

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

  .hero-actions .button {
    min-width: 0;
    padding-inline: 12px;
    font-size: 13px;
  }

  .hero-facts-grid > div {
    grid-column: auto;
    gap: 10px;
    padding-inline: 13px;
  }

  .hero-facts-grid > div:nth-child(4) {
    grid-column: auto;
  }

  .hero-facts-grid > div:nth-child(5) {
    grid-column: 1 / -1;
  }

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

  .hero-facts {
    min-height: 174px;
  }

  .hero-facts-grid > div:nth-child(3),
  .hero-facts-grid > div:nth-child(4),
  .hero-facts-grid > div:nth-child(5) {
    border-top: 1px solid rgba(121, 168, 255, 0.15);
  }

  .hero-facts strong {
    font-size: 23px;
  }

  .hero-facts span {
    font-size: 11px;
  }

  .hero-facts small {
    display: none;
  }

  .section {
    padding: 82px 0;
  }

  .ornament {
    gap: 12px;
    margin-bottom: 52px;
  }

  .ornament span {
    width: 62px;
  }

  .section-intro h2,
  .affiliate-copy h2,
  .final-cta h2 {
    font-size: 40px;
  }

  .section-intro > p:last-child,
  .affiliate-copy > p {
    font-size: 15px;
  }

  .principle-intro {
    margin-bottom: 45px;
  }

  .principle-list {
    grid-template-columns: 1fr;
  }

  .principle-list article,
  .principle-list article:nth-child(2n) {
    grid-template-columns: 54px 1fr;
    min-height: 150px;
    padding: 27px 16px;
    border-right: 0;
  }

  .principle-list article > span {
    font-size: 31px;
  }

  .principle-list h3 {
    font-size: 24px;
  }

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

  .period-control {
    width: 100%;
  }

  .period-option {
    height: 60px;
    padding: 26px 2px 5px;
  }

  .period-picker::before {
    top: 15px;
  }

  .period-option::before {
    top: 13px;
    width: 4px;
    height: 4px;
  }

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

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

  .plan-grid {
    gap: 0;
  }

  .plan-card h3 {
    font-size: 30px;
  }

  .steps-layout {
    gap: 46px;
  }

  .steps-copy h2 {
    line-height: 1.15;
  }

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

  .steps-actions .text-link {
    text-align: center;
  }

  .steps-list li {
    grid-template-columns: 58px 1fr;
    min-height: 150px;
    gap: 15px;
    padding-inline: 5px;
  }

  .steps-list li > span {
    font-size: 38px;
  }

  .steps-list h3 {
    font-size: 26px;
  }

  .service-list article {
    grid-template-columns: 45px 1fr;
    gap: 14px;
    padding: 24px 8px;
  }

  .service-list article > a {
    grid-column: 2;
    min-width: 0;
    text-align: left;
  }

  .affiliate-layout {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .affiliate-rate {
    min-height: 230px;
  }

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

  .review-grid blockquote,
  .review-grid blockquote:last-child {
    padding: 32px 20px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .review-grid blockquote > p {
    min-height: 0;
    font-size: 23px;
  }

  .faq-layout {
    gap: 38px;
  }

  .faq-list summary {
    min-height: 70px;
    font-size: 21px;
  }

  .final-cta {
    padding: 84px 0 108px;
  }

  .final-cta h2 {
    font-size: 45px;
  }

  .footer-primary {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 36px;
    padding-bottom: 28px;
  }

  .footer-brand p {
    max-width: 330px;
  }

  .footer-column a {
    width: 100%;
    min-height: 44px;
    padding: 11px 0 10px;
    border-bottom: 1px solid rgba(121, 168, 255, 0.12);
  }

  .footer-documents {
    display: flex;
  }

  .footer-meta {
    min-height: 84px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
  }

  .mobile-cta {
    display: grid;
  }
}

@media (max-width: 380px) {
  .hero {
    min-height: 758px;
  }

  .hero-inner {
    min-height: 584px;
  }

  .hero h1 span {
    font-size: 44px;
  }

  .hero-motto {
    font-size: 19px;
  }

  .hero-lead {
    font-size: 13px;
  }

  .hero-actions .button {
    font-size: 12px;
  }

  .final-cta h2 {
    font-size: 40px;
  }

  .mobile-cta {
    right: 8px;
    left: 8px;
    grid-template-columns: minmax(0, 1fr) 76px;
    gap: 5px;
    padding: 5px;
  }

  .mobile-cta a {
    min-height: 44px;
    font-size: 12px;
  }

  .mobile-cta-primary {
    gap: 7px;
    padding: 0 9px;
  }

  .mobile-cta-secondary {
    padding: 0 8px;
  }
}

@media (max-height: 650px) and (max-width: 760px) {
  .hero {
    min-height: 650px;
  }

  .hero-inner {
    min-height: 506px;
    align-items: start;
    padding-top: 24px;
    padding-bottom: 178px;
  }

  .hero-overline {
    margin-bottom: 12px;
  }

  .hero h1 span {
    font-size: 42px;
  }

  .hero h1 em {
    margin-top: 10px;
    font-size: 20px;
  }

  .hero-motto {
    margin-bottom: 6px;
    font-size: 18px;
  }

  .hero-lead {
    margin-bottom: 14px;
    font-size: 12px;
    line-height: 1.45;
  }

  .button.large {
    min-height: 44px;
  }

}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
