@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-deep: #76501c;
  --gold: #c6963c;
  --gold-rich: #d9b45a;
  --gold-light: #f2d787;
  --gold-pale: #fff0b8;
  --gold-glow: rgba(225, 183, 87, 0.22);
  --gold-metal: linear-gradient(180deg, #fff1bc 0%, #f2d57d 34%, #d4a747 66%, #9a6b24 100%);
  --white: #f6f8fc;
  --text: #dce4f1;
  --muted: #98a8c0;
  --green: #4cdda0;
  --line: rgba(198, 150, 60, 0.3);
  --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: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

main {
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(circle at 50% 42%, rgba(28, 66, 126, 0.1) 0%, rgba(8, 25, 52, 0.035) 30%, transparent 58%),
    linear-gradient(180deg, #01040a 0%, #020713 24%, #030b18 47%, #020914 68%, #01050d 85%, #000205 100%);
}

main::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(121, 168, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(121, 168, 255, 0.018) 1px, transparent 1px);
  background-size: 96px 96px, 96px 96px;
  content: "";
  opacity: 0.66;
  pointer-events: none;
}

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

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;
  min-width: 0;
}

.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;
  min-width: 0;
  align-items: center;
  justify-content: center;
  gap: 38px;
}

.nav a {
  position: relative;
  padding: 9px 0;
  color: #bbc6d7;
  font-size: 13px;
  font-weight: 650;
  white-space: nowrap;
  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: linear-gradient(135deg, #bc8730 0%, #f5dc8c 46%, #d2a247 74%, #a87425 100%);
  box-shadow: 0 12px 38px rgba(198, 150, 60, 0.2), inset 0 1px rgba(255, 244, 197, 0.72);
}

.button.primary:hover,
.button.primary:focus-visible {
  color: #02070f;
  background: linear-gradient(135deg, #c89236 0%, #ffe8a6 46%, #dbad51 74%, #b57d29 100%);
}

.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);
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .hero h1 em,
  .hero-facts strong,
  .plan-number,
  .price-monthly strong,
  .program-rate strong,
  .partner-value > strong,
  .final-cta h2 {
    color: transparent;
    background: var(--gold-metal);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}

.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 {
  display: 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;
}

.plans-section {
  background: transparent;
}

.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: 37.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-pale);
  box-shadow: 0 0 7px rgba(255, 232, 161, 0.7), 0 0 18px var(--gold-glow);
  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.premium {
  border-color: rgba(217, 180, 90, 0.58);
  background:
    linear-gradient(180deg, rgba(25, 48, 85, 0.74), rgba(7, 21, 43, 0.48) 42%),
    rgba(7, 21, 43, 0.5);
  box-shadow: inset 0 1px rgba(255, 240, 184, 0.08), 0 18px 54px rgba(0, 0, 0, 0.13);
}

.plan-card.premium:hover {
  background:
    linear-gradient(180deg, rgba(30, 56, 96, 0.8), rgba(11, 28, 56, 0.58) 42%),
    rgba(7, 21, 43, 0.58);
  box-shadow: inset 0 1px rgba(255, 240, 184, 0.12), 0 20px 58px rgba(198, 150, 60, 0.08);
}

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

.popular-note {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 26px;
  color: #071329;
  background: linear-gradient(90deg, #ae7927, #f3d786 28%, #fff0b8 50%, #d4a347 74%, #9b681f);
  box-shadow: inset 0 1px rgba(255, 248, 218, 0.78), 0 8px 26px rgba(198, 150, 60, 0.12);
  font-size: 10px;
  font-weight: 850;
  line-height: 26px;
  text-align: center;
  text-transform: uppercase;
}

.premium-note {
  position: absolute;
  top: 27px;
  right: 22px;
  left: auto;
  z-index: 2;
  display: flex;
  width: min(190px, calc(100% - 90px));
  height: 30px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(255, 230, 151, 0.72);
  border-radius: 3px;
  color: var(--gold-pale);
  background: linear-gradient(110deg, #5f3c12 0%, #8d5e1d 24%, #b98732 50%, #845617 78%, #4b300f 100%);
  box-shadow:
    inset 0 1px rgba(255, 238, 174, 0.54),
    inset 0 -1px rgba(91, 56, 13, 0.5),
    0 7px 24px rgba(198, 150, 60, 0.11);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.premium-note span {
  position: relative;
  z-index: 2;
  text-shadow: 0 1px 2px rgba(24, 12, 2, 0.68);
}

.premium-note::before {
  position: absolute;
  top: -65%;
  bottom: -65%;
  left: 0;
  width: 24%;
  background: linear-gradient(90deg, transparent, rgba(255, 252, 226, 0.82), transparent);
  content: "";
  opacity: 0;
  transform: translate3d(-160%, 0, 0) skewX(-19deg);
  animation: premium-sweep 9s cubic-bezier(0.42, 0, 0.18, 1) infinite;
  will-change: transform, opacity;
}

.premium-note i {
  position: absolute;
  top: 6px;
  right: 12px;
  width: 14px;
  height: 14px;
  opacity: 0;
  transform: scale(0.35) rotate(0deg);
  animation: premium-spark 9s ease-in-out infinite;
  will-change: transform, opacity;
}

.premium-note i::before,
.premium-note i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 1px;
  background: #fff7d4;
  box-shadow: 0 0 8px rgba(255, 244, 194, 0.95);
  content: "";
  transform: translate(-50%, -50%);
}

.premium-note i::before {
  width: 2px;
  height: 14px;
}

.premium-note i::after {
  width: 14px;
  height: 2px;
}

.premium .plan-number {
  margin-bottom: 30px;
}

.popular .plan-number {
  margin-top: 0;
}

.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-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: 8px;
  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: 126px;
  margin-bottom: 20px;
}

.price-monthly {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px 9px;
}

.price-monthly strong {
  color: var(--gold-light);
  font-family: var(--display);
  font-size: 50px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  line-height: 0.98;
  text-shadow: 0 0 28px rgba(214, 169, 78, 0.1);
}

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

.price-detail {
  display: flex;
  min-height: 58px;
  align-items: flex-start;
  flex-direction: column;
  gap: 8px;
  margin-top: 9px;
  color: var(--muted);
  font-size: 11px;
}

.period-total {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 3px 5px;
}

.period-total b {
  color: rgba(220, 228, 241, 0.82);
  font-size: 12px;
  font-variant-numeric: tabular-nums;
  font-weight: 750;
}

.price-detail > b {
  display: inline-flex;
  width: max-content;
  min-height: 24px;
  align-items: center;
  margin-top: 0;
  padding: 4px 8px;
  border: 1px solid rgba(214, 169, 78, 0.3);
  border-radius: 4px;
  color: var(--gold-light);
  background: rgba(214, 169, 78, 0.08);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
}

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

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

@keyframes premium-sweep {
  0%, 13% { opacity: 0; transform: translate3d(-160%, 0, 0) skewX(-19deg); }
  17% { opacity: 0.82; }
  29% { opacity: 0.72; transform: translate3d(520%, 0, 0) skewX(-19deg); }
  32%, 100% { opacity: 0; transform: translate3d(520%, 0, 0) skewX(-19deg); }
}

@keyframes premium-spark {
  0%, 31% { opacity: 0; transform: scale(0.35) rotate(0deg); }
  33.5% { opacity: 1; transform: scale(1) rotate(45deg); }
  36%, 100% { opacity: 0; transform: scale(0.42) rotate(90deg); }
}

.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: transparent;
}

.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: transparent;
}

.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(217, 180, 90, 0.16);
  border-bottom: 1px solid rgba(217, 180, 90, 0.16);
  background: linear-gradient(90deg, transparent 0%, rgba(7, 25, 52, 0.14) 20%, rgba(10, 32, 65, 0.19) 50%, rgba(7, 25, 52, 0.14) 80%, transparent 100%);
}

.affiliate-v2 {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.35fr);
  align-items: start;
  gap: 72px;
}

.affiliate-copy {
  min-width: 0;
  padding-top: 42px;
}

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

.affiliate-copy > p:last-child {
  max-width: 470px;
}

.program-panel {
  min-width: 0;
}

.program-map {
  position: relative;
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  grid-template-rows: repeat(2, minmax(190px, auto));
  column-gap: 32px;
  min-width: 0;
}

.program-origin {
  position: relative;
  z-index: 2;
  display: flex;
  grid-column: 1;
  grid-row: 1 / 3;
  width: 88px;
  align-self: center;
  align-items: center;
  justify-content: center;
  transform: translateX(-24px);
}

.origin-mark {
  display: grid;
  width: 68px;
  height: 48px;
  place-items: center;
  color: #d9b45a;
}

.origin-mark svg {
  width: 60px;
  height: 42px;
  transform: scaleX(1.12);
  transform-origin: center;
}

.program-lane {
  position: relative;
  display: grid;
  grid-column: 2;
  grid-template-columns: minmax(0, 1fr) 176px;
  align-items: center;
  gap: 28px;
  min-width: 0;
  padding: 30px 0 30px 30px;
  border-top: 1px solid rgba(242, 215, 135, 0.22);
  background: transparent;
}

.program-lane:last-child {
  border-bottom: 1px solid rgba(242, 215, 135, 0.22);
}

.program-lane:hover .program-content h3 {
  color: var(--gold-pale);
}

.referral-lane {
  grid-row: 1;
}

.partner-lane {
  grid-row: 2;
}

.program-content {
  min-width: 0;
}

.program-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.program-meta span {
  color: var(--gold-light);
  font-family: var(--display);
  font-size: 18px;
  line-height: 1;
}

.program-meta small {
  padding: 3px 0 3px 10px;
  border-left: 1px solid rgba(214, 169, 78, 0.62);
  color: var(--gold-light);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.program-content h3 {
  margin: 0 0 8px;
  color: var(--white);
  font-family: var(--display);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.05;
  transition: color 180ms ease;
}

.program-content p {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.6;
}

.program-value {
  display: flex;
  min-width: 0;
  min-height: 128px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-left: 25px;
  border-left: 1px solid rgba(242, 215, 135, 0.18);
}

.program-value small {
  color: var(--gold-light);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.program-value > span {
  max-width: 160px;
  color: var(--muted);
  font-size: 10.5px;
  line-height: 1.45;
}

.program-rate {
  display: inline-flex;
  align-items: flex-start;
  margin: 2px 0 5px;
  padding-right: 5px;
  line-height: 1;
}

.program-rate strong {
  color: var(--gold-light);
  font-family: var(--display);
  font-size: 72px;
  font-weight: 400;
  line-height: 1;
  text-shadow: 0 0 42px rgba(214, 169, 78, 0.18);
}

.program-rate sup {
  margin: 8px 0 0 3px;
  color: var(--gold-pale);
  font-family: var(--display);
  font-size: 23px;
  line-height: 1;
}

.partner-value > strong {
  margin: 7px 0 10px;
  color: var(--gold-light);
  font-family: var(--display);
  font-size: 27px;
  font-weight: 400;
  line-height: 1.12;
  text-shadow: 0 0 34px rgba(214, 169, 78, 0.12);
}

.program-shared-action {
  display: flex;
  width: max-content;
  min-width: 230px;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 18px 0 0 120px;
  padding: 0 19px;
  font-size: 12px;
}

.program-shared-action svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  transition: transform 180ms ease;
}

.program-shared-action:hover svg {
  transform: translate(2px, -2px);
}

.reviews-section {
  background: transparent;
}

.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: transparent;
}

.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: linear-gradient(180deg, rgba(2, 7, 17, 0.12), #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: linear-gradient(180deg, #020711, #01040a);
}

.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,
.plan-number,
.plan-card h3,
.device-limit strong,
.price-monthly strong,
.steps-list li > span,
.steps-list h3,
.service-list article > span,
.service-list h3,
.program-rate strong,
.partner-value > 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;
  }

  .affiliate-v2 {
    grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.4fr);
    gap: 48px;
  }

  .program-lane {
    grid-template-columns: minmax(0, 1fr) 160px;
    gap: 20px;
    padding-left: 24px;
  }

  .program-content h3 {
    font-size: 26px;
  }

}

@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.popular {
    order: -1;
  }

  .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-v2 {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .affiliate-copy {
    max-width: 650px;
    padding-top: 0;
  }

  .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;
  }

  .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-v2 {
    gap: 34px;
  }

  .program-map {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 0;
    padding-left: 0;
  }

  .program-origin {
    display: grid;
    grid-column: 1;
    grid-row: 1;
    grid-template-columns: 1fr auto 1fr;
    width: 100%;
    gap: 14px;
    align-self: auto;
    margin-bottom: 18px;
    transform: none;
  }

  .program-origin::before,
  .program-origin::after {
    position: static;
    width: auto;
    height: 1px;
    background: rgba(217, 180, 90, 0.34);
    content: "";
  }

  .origin-mark {
    grid-column: 2;
    width: 48px;
    height: 48px;
  }

  .origin-mark svg {
    width: 42px;
    height: 42px;
    transform: scaleX(1.08);
  }

  .program-lane {
    grid-column: 1;
    grid-row: auto;
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 26px 0;
  }

  .program-content h3 {
    font-size: 25px;
  }

  .program-value {
    min-height: 0;
    padding: 18px 0 0;
    border-top: 1px solid rgba(214, 169, 78, 0.2);
    border-left: 0;
  }

  .program-rate strong {
    font-size: 64px;
  }

  .program-shared-action {
    width: max-content;
    max-width: 100%;
    min-width: 0;
    margin: 18px auto 0;
  }

  .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;
  }

  .premium-note::before,
  .premium-note i {
    animation: none !important;
  }

}
