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

:root {
  color-scheme: light;
  --page: #f7f9fc;
  --surface: #ffffff;
  --surface-blue: #eef4ff;
  --surface-amber: #fff8e6;
  --ink: #111827;
  --ink-soft: #344054;
  --muted: #667085;
  --line: #d9e1ec;
  --line-strong: #b9c7da;
  --blue: #2563eb;
  --blue-dark: #1746a2;
  --blue-soft: #dbe8ff;
  --amber: #ffb703;
  --amber-dark: #8a5a00;
  --green: #15803d;
  --green-soft: #def7e7;
  --danger: #b42318;
  --shell: 1160px;
  --radius: 8px;
  --shadow-sm: 0 8px 24px rgba(17, 24, 39, 0.07);
  --shadow-md: 0 18px 54px rgba(37, 99, 235, 0.12);
  --font: "Inter", Arial, sans-serif;
}

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

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--page);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

button {
  color: inherit;
}

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

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

h1,
h2,
h3 {
  text-wrap: balance;
}

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

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 500;
  padding: 10px 14px;
  border-radius: 6px;
  color: #fff;
  background: var(--blue-dark);
  transform: translateY(-160%);
}

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

:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.35);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(217, 225, 236, 0.75);
  background: rgba(247, 249, 252, 0.92);
  backdrop-filter: blur(16px);
  transition: box-shadow 180ms ease, background-color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 8px 28px rgba(17, 24, 39, 0.08);
}

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

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

.brand-mark {
  position: relative;
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  grid-template-columns: repeat(3, 5px);
  align-content: center;
  justify-content: center;
  gap: 3px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 3px 3px 0 var(--amber);
}

.brand-mark::before,
.brand-mark::after {
  position: absolute;
  right: 6px;
  left: 6px;
  height: 2px;
  border-radius: 1px;
  background: var(--ink);
  content: "";
}

.brand-mark::before {
  top: 9px;
}

.brand-mark::after {
  bottom: 9px;
}

.brand-mark i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue);
}

.brand-mark i:nth-child(2) {
  background: var(--amber);
}

.brand-mark i:nth-child(3) {
  background: var(--green);
}

.brand-name {
  color: var(--ink);
  font-size: 21px;
  font-weight: 850;
  line-height: 1;
}

.brand-name span {
  color: var(--blue);
  font-weight: 700;
}

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

.nav a {
  padding: 10px 13px;
  border-radius: 6px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 650;
  transition: color 160ms ease, background-color 160ms ease;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--blue-dark);
  background: var(--blue-soft);
}

.icon-button {
  display: inline-grid;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 7px;
  place-items: center;
  background: var(--surface);
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.icon-button:hover,
.icon-button:focus-visible {
  color: var(--blue);
  border-color: var(--blue);
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}

.icon-button svg {
  width: 21px;
  height: 21px;
}

.menu-button {
  display: none;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.button svg {
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
  stroke-width: 2;
}

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

.button-primary {
  color: var(--ink);
  border-color: #dfa000;
  background: var(--amber);
  box-shadow: 0 10px 26px rgba(196, 132, 0, 0.2);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #ffc52e;
  box-shadow: 0 14px 32px rgba(196, 132, 0, 0.28);
}

.button-secondary {
  color: var(--ink);
  border-color: var(--line-strong);
  background: var(--surface);
  box-shadow: 0 8px 22px rgba(17, 24, 39, 0.06);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  color: var(--blue-dark);
  border-color: var(--blue);
  box-shadow: var(--shadow-sm);
}

.button-small {
  min-height: 42px;
  padding-inline: 18px;
  font-size: 14px;
}

.button-large {
  min-height: 56px;
  padding-inline: 28px;
  font-size: 16px;
}

.button-wide {
  width: 100%;
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--page);
}

.hero::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 8px;
  background: var(--blue);
  content: "";
}

.hero-inner {
  display: grid;
  min-height: 640px;
  grid-template-columns: 0.88fr 1.12fr;
  align-items: center;
  gap: 72px;
  padding-top: 34px;
  padding-bottom: 34px;
}

.hero-visual {
  position: relative;
  min-width: 0;
  height: 540px;
  margin: 0;
}

.mascot-stage {
  position: relative;
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
}

.mascot-stage::after {
  position: absolute;
  right: 15%;
  bottom: 25px;
  left: 15%;
  height: 18px;
  border-radius: 50%;
  background: rgba(17, 24, 39, 0.12);
  filter: blur(12px);
  content: "";
  animation: mascot-shadow 5s ease-in-out infinite;
}

.server-mascot {
  position: relative;
  z-index: 1;
  width: auto;
  max-width: 100%;
  height: 520px;
  object-fit: contain;
  filter: drop-shadow(0 24px 28px rgba(17, 24, 39, 0.16));
  transform-origin: 50% 90%;
  animation: mascot-float 5s ease-in-out infinite;
}

.server-ready {
  position: absolute;
  right: 8px;
  bottom: 82px;
  z-index: 2;
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  border: 1px solid #a9dfbc;
  border-radius: 7px;
  color: #105c2d;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-sm);
  font-size: 13px;
  font-weight: 800;
  animation: ready-float 5s ease-in-out infinite;
}

.server-ready i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(21, 128, 61, 0.11);
  animation: status-pulse 2.2s ease-in-out infinite;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding: 24px 0;
}

.eyebrow,
.section-label {
  margin-bottom: 15px;
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
}

.eyebrow span {
  width: 26px;
  height: 3px;
  border-radius: 2px;
  background: var(--amber);
}

.hero h1 {
  max-width: 720px;
  margin-bottom: 22px;
  color: var(--ink);
  font-size: 64px;
  font-weight: 880;
  line-height: 1.03;
}

.hero h1 strong {
  position: relative;
  color: var(--blue);
  font-weight: inherit;
}

.hero h1 strong::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 7px;
  border-radius: 3px;
  background: var(--amber);
  content: "";
  opacity: 0.82;
  transform: scaleX(0);
  transform-origin: left;
  animation: underline-in 700ms 500ms cubic-bezier(.16, 1, .3, 1) forwards;
}

.hero-lead {
  max-width: 625px;
  margin-bottom: 22px;
  color: var(--ink-soft);
  font-size: 19px;
  line-height: 1.6;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.hero-tags span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 13px;
  border: 1px solid #c7d7f2;
  border-radius: 6px;
  color: #1c4c9c;
  background: var(--surface);
  font-size: 13px;
  font-weight: 700;
}

.hero-offer {
  display: flex;
  max-width: 530px;
  align-items: center;
  gap: 28px;
  margin-bottom: 26px;
  padding: 15px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hero-offer > div {
  display: flex;
  align-items: baseline;
  gap: 10px;
  white-space: nowrap;
}

.hero-offer small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-offer strong {
  color: var(--ink);
  font-size: 28px;
  line-height: 1;
}

.hero-offer strong span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

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

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

.benefit-rail {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.benefit-track {
  display: flex;
  width: max-content;
  animation: rail-move 28s linear infinite;
}

.benefit-set {
  display: flex;
  flex: none;
  align-items: center;
}

.benefit-set > span {
  display: inline-flex;
  min-height: 74px;
  align-items: center;
  gap: 10px;
  padding: 0 28px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 750;
  white-space: nowrap;
}

.benefit-set > span::after {
  width: 5px;
  height: 5px;
  margin-left: 28px;
  border-radius: 50%;
  background: var(--amber);
  content: "";
}

.benefit-set svg {
  width: 21px;
  height: 21px;
  color: var(--blue);
}

.section {
  padding: 104px 0;
}

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

.section-heading-row {
  display: grid;
  max-width: none;
  grid-template-columns: 1fr 0.7fr;
  align-items: end;
  gap: 76px;
  margin-bottom: 42px;
}

.section-heading-row > p {
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 17px;
}

.section-heading.centered {
  margin-right: auto;
  margin-bottom: 42px;
  margin-left: auto;
  text-align: center;
}

.section-heading h2,
.final-cta h2 {
  margin-bottom: 16px;
  color: var(--ink);
  font-size: 44px;
  font-weight: 860;
  line-height: 1.12;
}

.section-heading > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
}

.why-section {
  background: var(--surface);
}

.carousel-wrap {
  position: relative;
}

.carousel-controls {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-bottom: 14px;
}

.feature-track {
  display: grid;
  grid-auto-columns: calc((100% - 32px) / 3);
  grid-auto-flow: column;
  gap: 16px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: inline mandatory;
  scrollbar-width: none;
}

.feature-track::-webkit-scrollbar {
  display: none;
}

.feature-card {
  min-height: 270px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--page);
  scroll-snap-align: start;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.feature-card:hover {
  border-color: #a9bfdf;
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
}

.feature-icon {
  display: grid;
  width: 50px;
  height: 50px;
  margin-bottom: 28px;
  border-radius: 8px;
  place-items: center;
}

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

.feature-icon.blue {
  color: var(--blue-dark);
  background: var(--blue-soft);
}

.feature-icon.amber {
  color: var(--amber-dark);
  background: #ffedb9;
}

.feature-icon.green {
  color: var(--green);
  background: var(--green-soft);
}

.feature-card h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.25;
}

.feature-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.pricing-section {
  background: var(--surface-blue);
}

.period-picker {
  display: grid;
  max-width: 700px;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  margin: 0 auto 38px;
  padding: 5px;
  border: 1px solid #c8d8f2;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.period-option {
  position: relative;
  min-height: 52px;
  padding: 5px 8px;
  border: 0;
  border-radius: 6px;
  color: var(--ink-soft);
  background: transparent;
  cursor: pointer;
  font-size: 14px;
  font-weight: 750;
  transition: color 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.period-option small {
  display: block;
  color: var(--green);
  font-size: 11px;
  font-weight: 850;
}

.period-option.is-active {
  color: var(--blue-dark);
  background: var(--surface);
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.13);
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 18px;
}

.plan-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 30px;
  border: 1px solid #c8d8f2;
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 10px 30px rgba(24, 72, 145, 0.06);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.plan-card:hover {
  border-color: #8fb0e3;
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.plan-card.popular {
  z-index: 2;
  border: 2px solid var(--blue);
  box-shadow: 0 22px 58px rgba(37, 99, 235, 0.18);
  transform: translateY(-10px);
}

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

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 14px;
  border: 1px solid #dfa000;
  border-radius: 6px;
  color: var(--ink);
  background: var(--amber);
  box-shadow: 0 6px 18px rgba(196, 132, 0, 0.2);
  font-size: 12px;
  font-weight: 850;
  white-space: nowrap;
  transform: translateX(-50%);
}

.plan-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
  text-transform: uppercase;
}

.plan-icon {
  display: grid;
  width: 40px;
  height: 40px;
  border-radius: 7px;
  color: var(--blue-dark);
  place-items: center;
  background: var(--blue-soft);
}

.plan-icon svg {
  width: 21px;
  height: 21px;
}

.plan-card.popular .plan-icon {
  color: var(--amber-dark);
  background: #ffedb9;
}

.plan-card h3 {
  margin-bottom: 6px;
  font-size: 26px;
  line-height: 1.2;
}

.plan-description {
  min-height: 50px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 14px;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 2px;
}

.plan-price strong {
  color: var(--ink);
  font-size: 36px;
  line-height: 1;
}

.plan-price span,
.plan-total {
  color: var(--muted);
  font-size: 13px;
}

.plan-total {
  min-height: 22px;
  margin-bottom: 24px;
}

.plan-total b {
  color: var(--blue-dark);
}

.plan-card ul {
  display: grid;
  gap: 12px;
  margin: 0 0 28px;
  padding: 22px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.plan-card li {
  position: relative;
  padding-left: 25px;
  color: var(--ink-soft);
  font-size: 14px;
}

.plan-card li::before {
  position: absolute;
  top: 4px;
  left: 1px;
  width: 12px;
  height: 7px;
  border-bottom: 2px solid var(--green);
  border-left: 2px solid var(--green);
  content: "";
  transform: rotate(-45deg);
}

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

.fits-section {
  background: var(--surface);
}

.fits-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: start;
  gap: 96px;
}

.use-cases {
  border-top: 1px solid var(--line-strong);
}

.use-cases article {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 18px;
  padding: 27px 4px;
  border-bottom: 1px solid var(--line);
  transition: padding-left 180ms ease, background-color 180ms ease;
}

.use-cases article:hover {
  padding-left: 12px;
  background: var(--page);
}

.use-cases article > span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 850;
}

.use-cases h3 {
  margin-bottom: 6px;
  font-size: 21px;
}

.use-cases p {
  margin: 0;
  color: var(--muted);
}

.setup-section {
  border-top: 1px solid var(--line);
  background: var(--page);
}

.steps-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps-list li {
  min-height: 205px;
  padding: 28px;
  border-top: 4px solid var(--blue);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.steps-list li:nth-child(2) {
  border-top-color: var(--amber);
}

.steps-list li:nth-child(3) {
  border-top-color: var(--green);
}

.steps-list li > span {
  display: grid;
  width: 38px;
  height: 38px;
  margin-bottom: 24px;
  border: 1px solid var(--line-strong);
  border-radius: 7px;
  place-items: center;
  color: var(--blue-dark);
  background: var(--surface-blue);
  font-size: 15px;
  font-weight: 850;
}

.steps-list h3 {
  margin-bottom: 7px;
  font-size: 20px;
}

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

.faq-section {
  background: var(--surface);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.68fr 1.32fr;
  gap: 96px;
}

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

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

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

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

.faq-list summary svg {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  color: var(--blue);
  transition: transform 180ms ease;
}

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

.faq-list details > p {
  max-width: 690px;
  margin: -4px 44px 23px 0;
  color: var(--muted);
}

.final-cta {
  color: #fff;
  background: var(--blue-dark);
}

.final-inner {
  display: grid;
  min-height: 300px;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 60px;
  padding-top: 58px;
  padding-bottom: 58px;
}

.final-cta .section-label {
  color: #bcd3ff;
}

.final-cta h2 {
  margin-bottom: 10px;
  color: #fff;
}

.final-cta p:last-child {
  margin-bottom: 0;
  color: #d5e2fa;
  font-size: 17px;
}

.site-footer {
  color: #d0d5dd;
  background: var(--ink);
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 52px;
  padding-top: 54px;
  padding-bottom: 40px;
}

.site-footer .brand-name {
  color: #fff;
}

.site-footer .brand-mark {
  border-color: #fff;
  background: #1d2939;
}

.site-footer .brand-mark::before,
.site-footer .brand-mark::after {
  background: #fff;
}

.footer-brand > p {
  max-width: 430px;
  margin: 18px 0 0;
  color: #98a2b3;
}

.footer-main nav {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 10px 28px;
}

.footer-main nav a {
  color: #d0d5dd;
  font-size: 14px;
  font-weight: 600;
}

.footer-main nav a:hover,
.footer-main nav a:focus-visible,
.footer-meta a:hover,
.footer-meta a:focus-visible {
  color: #fff;
}

.footer-meta {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid #344054;
  color: #98a2b3;
  font-size: 13px;
}

.mobile-cta {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 650ms cubic-bezier(.16, 1, .3, 1), transform 650ms cubic-bezier(.16, 1, .3, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

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

@keyframes mascot-float {
  0%, 100% { transform: translateY(0) rotate(-0.5deg); }
  50% { transform: translateY(-12px) rotate(0.8deg); }
}

@keyframes mascot-shadow {
  0%, 100% { opacity: 0.8; transform: scaleX(1); }
  50% { opacity: 0.55; transform: scaleX(0.9); }
}

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

@keyframes status-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(21, 128, 61, 0.1); }
  50% { box-shadow: 0 0 0 8px rgba(21, 128, 61, 0); }
}

@keyframes underline-in {
  to { transform: scaleX(1); }
}

@keyframes rail-move {
  to { transform: translateX(-50%); }
}

@media (max-width: 1040px) {
  .header-inner {
    gap: 18px;
  }

  .nav a {
    padding-inline: 9px;
  }

  .hero-inner {
    min-height: 590px;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 38px;
  }

  .hero-visual {
    height: 470px;
  }

  .server-mascot {
    height: 455px;
  }

  .hero h1 {
    font-size: 52px;
  }

  .server-ready {
    bottom: 62px;
  }

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

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

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

  .menu-button {
    display: inline-grid;
    justify-self: end;
  }

  .header-cta {
    justify-self: end;
  }

  .nav {
    position: fixed;
    top: 72px;
    right: 0;
    left: 0;
    display: grid;
    padding: 14px 18px 22px;
    border-bottom: 1px solid var(--line);
    background: #fff;
    box-shadow: var(--shadow-sm);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav a {
    min-height: 46px;
    padding: 12px;
  }

  .hero-inner {
    min-height: 560px;
    grid-template-columns: 0.72fr 1.28fr;
    gap: 24px;
  }

  .hero-visual {
    height: 390px;
  }

  .server-mascot {
    height: 380px;
  }

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

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

  .hero-offer {
    gap: 18px;
  }

  .hero-offer > div {
    display: block;
  }

  .hero-offer small {
    display: block;
    margin-bottom: 6px;
  }

  .server-ready {
    right: 0;
    bottom: 45px;
  }

  .section {
    padding: 82px 0;
  }

  .section-heading-row {
    grid-template-columns: 1fr 0.8fr;
    gap: 40px;
  }

  .section-heading h2,
  .final-cta h2 {
    font-size: 38px;
  }

  .feature-track {
    grid-auto-columns: calc((100% - 16px) / 2);
  }

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

  .plan-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 28px;
  }

  .plan-card > * {
    grid-column: 1;
  }

  .plan-card ul,
  .plan-card .button {
    grid-column: 2;
  }

  .plan-card ul {
    grid-row: 1 / span 5;
    align-content: center;
    margin: 0 0 70px;
    padding: 0;
    border-top: 0;
  }

  .plan-card .button {
    align-self: end;
    grid-row: 1 / span 5;
  }

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

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

@media (max-width: 640px) {
  .shell {
    width: calc(100% - 28px);
  }

  .site-header {
    position: sticky;
  }

  .header-inner {
    min-height: 64px;
    grid-template-columns: 1fr auto;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
  }

  .brand-name {
    font-size: 19px;
  }

  .menu-button {
    width: 40px;
    height: 40px;
  }

  .header-cta {
    display: none;
  }

  .nav {
    top: 64px;
  }

  .hero::before {
    width: 4px;
  }

  .hero-inner {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 12px;
    padding-bottom: 32px;
  }

  .hero-visual {
    height: 215px;
  }

  .server-mascot {
    height: 225px;
  }

  .mascot-stage::after {
    right: 27%;
    bottom: 7px;
    left: 27%;
    height: 10px;
  }

  .server-ready {
    right: 8px;
    bottom: 28px;
    min-height: 32px;
    padding-inline: 10px;
    font-size: 11px;
  }

  .hero-copy {
    padding: 8px 0 0;
    text-align: center;
  }

  .eyebrow {
    justify-content: center;
    margin-bottom: 11px;
    font-size: 11px;
  }

  .hero h1 {
    margin-bottom: 15px;
    font-size: 35px;
    line-height: 1.05;
  }

  .hero h1 strong::after {
    bottom: -4px;
    height: 5px;
  }

  .hero-lead {
    margin-right: auto;
    margin-bottom: 17px;
    margin-left: auto;
    font-size: 16px;
    line-height: 1.5;
  }

  .hero-tags {
    justify-content: center;
    margin-bottom: 18px;
  }

  .hero-tags span {
    min-height: 31px;
    padding-inline: 10px;
    font-size: 11px;
  }

  .hero-offer {
    justify-content: center;
    gap: 18px;
    margin-right: auto;
    margin-bottom: 20px;
    margin-left: auto;
    padding: 11px 0;
    text-align: left;
  }

  .hero-offer > div {
    display: block;
  }

  .hero-offer strong {
    font-size: 24px;
  }

  .hero-offer p {
    font-size: 11px;
  }

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

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

  .benefit-set > span {
    min-height: 62px;
    padding-inline: 19px;
    font-size: 12px;
  }

  .benefit-set > span::after {
    margin-left: 19px;
  }

  .section {
    padding: 68px 0;
  }

  .section-heading-row {
    display: block;
    margin-bottom: 28px;
  }

  .section-heading-row > p {
    margin-top: 16px;
    font-size: 15px;
  }

  .section-heading.centered {
    margin-bottom: 28px;
    text-align: left;
  }

  .section-heading h2,
  .final-cta h2 {
    font-size: 32px;
  }

  .section-heading > p:last-child {
    font-size: 15px;
  }

  .carousel-controls {
    margin-bottom: 10px;
  }

  .feature-track {
    width: calc(100% + 14px);
    grid-auto-columns: 86%;
    padding-right: 14px;
  }

  .feature-card {
    min-height: 238px;
    padding: 23px;
  }

  .feature-icon {
    margin-bottom: 22px;
  }

  .period-picker {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 30px;
  }

  .plan-card {
    display: flex;
    padding: 25px 22px;
  }

  .plan-card ul,
  .plan-card .button {
    margin-top: 0;
  }

  .plan-card ul {
    margin-bottom: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
  }

  .plan-card.popular {
    margin-top: 10px;
  }

  .fits-layout,
  .faq-layout {
    gap: 28px;
  }

  .use-cases article {
    grid-template-columns: 42px 1fr;
    gap: 12px;
    padding: 22px 2px;
  }

  .use-cases article:hover {
    padding-left: 2px;
  }

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

  .steps-list li {
    min-height: 0;
    padding: 23px;
  }

  .faq-list summary {
    min-height: 68px;
    font-size: 15px;
  }

  .final-inner {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 26px;
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .final-inner .button {
    width: 100%;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-main nav {
    grid-template-columns: 1fr 1fr;
  }

  .footer-meta {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    padding: 18px 0 94px;
  }

  .mobile-cta {
    position: fixed;
    right: 10px;
    bottom: 10px;
    left: 10px;
    z-index: 90;
    display: flex;
    min-height: 66px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 9px 9px 9px 16px;
    border: 1px solid #c8d8f2;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 16px 44px rgba(17, 24, 39, 0.18);
    opacity: 0;
    pointer-events: none;
    transform: translateY(90px);
    transition: opacity 220ms ease, transform 220ms ease;
    backdrop-filter: blur(12px);
  }

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

  .mobile-cta > span {
    color: var(--ink-soft);
    font-size: 12px;
    font-weight: 750;
  }

  .mobile-cta .button {
    min-height: 46px;
    padding-inline: 17px;
  }
}

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