@font-face {
  font-family: "Magistral";
  src: url("./assets/fonts/magistral-regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --blue: #008ef8;
  --blue-dark: #0076d4;
  --ink: #1a1a2e;
  --muted: #6b7280;
  --line: #e5e9f0;
  --surface: #f6f8fa;
  --surface-blue: #e6f4fe;
  --white: #ffffff;
  --green: #0b8f62;
  --red: #b43a47;
  --container: 1060px;
  --shadow: 0 20px 60px rgba(15, 33, 76, .08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--white);
  font-family: Arial, "Segoe UI", sans-serif;
}

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

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  width: 0;
  height: 3px;
  background: var(--blue);
  z-index: 100;
  transition: width .1s linear;
}

.site-header {
  height: 76px;
  padding: 0 max(24px, calc((100vw - var(--container)) / 2));
  display: flex;
  align-items: center;
  gap: 42px;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, .72);
  backdrop-filter: blur(14px);
  position: sticky;
  top: 0;
  z-index: 20;
  transition: height .3s ease, background .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.site-header.scrolled {
  height: 66px;
  background: rgba(255, 255, 255, .92);
  border-color: var(--line);
  box-shadow: 0 10px 30px rgba(15, 33, 76, .05);
}

.site-header nav {
  display: flex;
  gap: 26px;
  margin-left: auto;
  font-size: 13px;
  font-weight: 600;
}

.site-header nav a:hover {
  color: var(--blue);
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -.04em;
}

.logo span {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: conic-gradient(from 20deg, var(--blue), #6dc5ff, var(--blue-dark), var(--blue));
  box-shadow: inset 0 0 0 6px rgba(255, 255, 255, .42);
}

.status-indicator {
  display: flex;
  align-items: center;
  background: rgba(61, 231, 165, 0.08);
  border: 1px solid rgba(61, 231, 165, 0.2);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  color: #0b5e3a;
  gap: 6px;
}

.status-pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #3de7a5;
  position: relative;
}

.status-pulse-dot::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1.5px solid #3de7a5;
  animation: statusPulse 1.8s infinite ease-in-out;
}

@keyframes statusPulse {
  0% {
    transform: scale(0.8);
    opacity: 1;
  }

  100% {
    transform: scale(2);
    opacity: 0;
  }
}

.ping-label {
  color: #178a57;
  font-weight: 500;
}

.button {
  display: inline-flex;
  min-height: 50px;
  padding: 0 28px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 12px;
  background: var(--blue);
  color: white;
  font: inherit;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(0, 142, 248, .18);
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.button:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
}

.button-secondary {
  background: rgba(255, 255, 255, .82);
  color: var(--ink);
  box-shadow: inset 0 0 0 1px var(--line);
}

.button-secondary:hover {
  background: var(--surface);
}

.button-small {
  min-height: 40px;
  padding: 0 18px;
}

.hero {
  width: min(calc(100% - 48px), var(--container));
  margin: 0 auto;
  padding: 74px 0 92px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 52px;
  min-height: 900px;
  text-align: center;
  position: relative;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  width: 760px;
  height: 520px;
  top: -90px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 142, 248, .15), rgba(230, 244, 254, .55) 38%, transparent 72%);
  filter: blur(34px);
  z-index: -1;
  animation: blobMove 11s ease-in-out infinite alternate;
}

.spotlight-zone::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(480px circle at var(--x, 50%) var(--y, 30%), rgba(0, 142, 248, .08), transparent 68%);
  pointer-events: none;
  z-index: -1;
}

.hero-copy {
  max-width: 820px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

h1 {
  max-width: 900px;
  margin: 0;
  font-family: "Magistral", Arial, sans-serif;
  font-weight: 400;
  font-size: clamp(42px, 4.5vw, 62px);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

h1 span {
  color: var(--blue);
}

.hero-lead {
  max-width: 700px;
  margin: 24px 0 0;
  font-size: 17px;
  line-height: 1.6;
  color: var(--muted);
}

.hero-sub-extra {
  max-width: 820px;
  margin-top: 16px;
  margin-right: auto;
  margin-left: auto;
  font-size: 16px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 30px;
}

.hero-cta {
  margin-top: 24px;
}

.hero-price-hint {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}

.hero-facts {
  width: min(700px, 100%);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 40px;
  border-top: 1px solid var(--line);
}

.hero-facts div {
  padding: 18px 16px 0;
}

.hero-facts strong,
.hero-facts span {
  display: block;
}

.hero-facts strong {
  font-size: 20px;
  letter-spacing: -.03em;
}

.hero-facts span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.4;
}

.hero-media {
  position: relative;
  width: min(1000px, 100%);
  height: 480px;
  border: 8px solid rgba(255, 255, 255, .9);
  border-radius: 24px;
  overflow: hidden;
  background: #0b1117;
  box-shadow: var(--shadow);
}

.hero-media::after {
  content: "RTX 4090 / 48 GB";
  position: absolute;
  right: 18px;
  top: 18px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, .32);
  border-radius: 5px;
  color: white;
  font-size: 10px;
  letter-spacing: .08em;
}

.media-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  display: flex;
  gap: 9px;
  align-items: center;
  padding: 12px 14px;
  border-radius: 7px;
  background: rgba(8, 17, 28, .82);
  backdrop-filter: blur(12px);
  color: white;
  font-size: 12px;
}

.media-badge span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3de7a5;
  box-shadow: 0 0 0 5px rgba(61, 231, 165, .15);
}

.section {
  width: min(calc(100% - 48px), var(--container));
  margin: 0 auto;
  padding: 92px 0;
  border-top: 1px solid var(--line);
  position: relative;
  isolation: isolate;
}

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

.section-heading {
  max-width: 820px;
  margin-bottom: 40px;
}

.section-heading.narrow {
  max-width: 660px;
}

h2 {
  margin: 0;
  font-family: "Magistral", Arial, sans-serif;
  font-weight: 400;
  font-size: clamp(30px, 3.2vw, 42px);
  line-height: 1.15;
  letter-spacing: -0.015em;
}

.section-heading>p:last-child:not(.eyebrow) {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.price-highlight {
  padding: 36px 48px;
  max-width: var(--container);
  border-top: 0;
  border-radius: 20px;
  background: linear-gradient(120deg, var(--surface-blue), #f5f9ff);
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 40px;
  align-items: center;
  box-shadow: var(--shadow);
}

.price-highlight h2 {
  font-size: 28px;
}

.main-price strong,
.main-price span {
  display: block;
}

.main-price strong {
  font-size: 32px;
  letter-spacing: -.04em;
}

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

.prose {
  font-size: 16px;
  line-height: 1.7;
  color: #354052;
}

.prose p {
  margin: 0 0 20px;
}

.intro-prose {
  max-width: 800px;
}

.config-layout {
  margin-top: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 610px;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.config-media {
  min-height: 610px;
  background: #0d131a;
}

.config-card {
  padding: 44px;
  background: var(--surface);
}

.config-card h3 {
  margin: 0 0 28px;
  font-size: 30px;
  letter-spacing: -.035em;
}

.config-card dl {
  margin: 0;
}

.config-card dl div {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.config-card dt {
  color: var(--muted);
  font-size: 12px;
}

.config-card dd {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
}

.use-cases {
  width: 100%;
  max-width: none;
  padding-left: max(24px, calc((100vw - var(--container)) / 2));
  padding-right: max(24px, calc((100vw - var(--container)) / 2));
  background: var(--surface);
}

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

.cards-grid article {
  min-height: 330px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.cards-grid article:hover {
  transform: translateY(-5px);
  border-color: #c8e7fb;
  box-shadow: var(--shadow);
}

.cards-grid article>span {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--surface-blue);
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
}

.cards-grid h3 {
  margin: 48px 0 16px;
  font-size: 21px;
  letter-spacing: -.025em;
}

.cards-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

/* Pricing layout */
.pricing-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 32px;
  align-items: start;
  margin-top: 48px;
}

.pricing-cards-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.pricing-cards-list article {
  padding: 20px 24px;
  min-height: auto;
  border: 1px solid var(--line);
  border-radius: 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  background: var(--white);
}

.pricing-cards-list article:hover {
  transform: translateX(4px);
  border-color: #c8e7fb;
  box-shadow: var(--shadow);
}

.pricing-cards-list article.featured {
  border-color: var(--blue);
  box-shadow: inset 4px 0 0 var(--blue);
}

.pricing-cards-list small {
  color: var(--muted);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .05em;
  width: 130px;
  flex-shrink: 0;
}

.pricing-cards-list strong {
  font-size: 20px;
  letter-spacing: -.03em;
  color: var(--ink);
  white-space: nowrap;
}

.pricing-cards-list p {
  margin: 0 0 0 auto;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
  max-width: 320px;
  text-align: right;
}

/* Calculator Card */
.pricing-calculator {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 36px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.pricing-calculator h3 {
  margin: 0 0 8px;
  font-size: 26px;
  font-family: "Magistral", Arial, sans-serif;
  font-weight: 400;
}

.calc-description {
  color: var(--muted);
  font-size: 13px;
  margin: 0 0 24px;
  line-height: 1.5;
}

.calc-tabs {
  display: flex;
  flex-wrap: wrap;
  background: var(--surface);
  padding: 4px;
  border-radius: 12px;
  gap: 4px;
  margin-bottom: 28px;
}

.calc-tab {
  flex: 1;
  background: transparent;
  border: 0;
  padding: 10px 0;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}

.calc-tab.active {
  background: var(--white);
  color: var(--blue);
  box-shadow: 0 4px 12px rgba(0, 142, 248, .08);
}

.calc-slider-group {
  margin-bottom: 32px;
}

.calc-slider-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-size: 14px;
}

.calc-slider-header span {
  font-weight: 600;
  color: var(--ink);
}

.calc-slider-header strong {
  font-size: 18px;
  color: var(--blue);
}

.calc-slider-group input[type="range"] {
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: var(--line);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
}

.calc-slider-group input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 2px 8px rgba(0, 142, 248, .35);
  border: 2px solid var(--white);
  cursor: pointer;
  transition: transform .1s ease;
}

.calc-slider-group input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

.calc-slider-ticks {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 10px;
  color: var(--muted);
  font-weight: 600;
}

.calc-summary {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.calc-specs h4 {
  margin: 0 0 10px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--muted);
}

.calc-specs ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.calc-specs li {
  font-size: 12px;
  font-weight: 600;
  color: #354052;
  margin-bottom: 6px;
}

.calc-total-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.calc-total-price {
  text-align: right;
  margin-bottom: 16px;
}

.calc-total-price .price-label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--muted);
  margin-bottom: 4px;
}

.calc-total-price strong {
  display: block;
  font-size: 32px;
  color: var(--ink);
  letter-spacing: -.03em;
  line-height: 1;
}

.calc-discount-badge {
  display: none;
  margin-top: 6px;
  background: #3de7a5;
  color: #0b5e3a;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
}

.calc-book-btn {
  width: 100%;
}

.vram-book-btn {
  margin-top: 14px;
}

.rules {
  width: 100%;
  max-width: none;
  padding-left: max(24px, calc((100vw - var(--container)) / 2));
  padding-right: max(24px, calc((100vw - var(--container)) / 2));
  background: var(--surface);
  color: var(--ink);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.rule-card {
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 14px 42px rgba(15, 33, 76, .05);
}

.rule-card h2 {
  font-size: 38px;
}

.rule-card p {
  margin: 32px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 2;
}

.rule-card.positive {
  border-top: 4px solid #3de7a5;
}

.rule-card.negative {
  border-top: 4px solid #ff7a8c;
}

.additional-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 72px;
  align-items: center;
}

.network-visual {
  min-height: 440px;
  border: 1px solid rgba(0, 142, 248, .12);
  border-radius: 24px;
  overflow: hidden;
  background: radial-gradient(circle at 50% 50%, rgba(0, 142, 248, .14), transparent 30%), radial-gradient(circle at 16% 12%, rgba(109, 197, 255, .2), transparent 28%), linear-gradient(145deg, #eaf6ff, #f9fbff 58%, #eff8ff);
  position: relative;
  isolation: isolate;
  box-shadow: var(--shadow);
}

.network-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .42;
  background-image: linear-gradient(rgba(0, 142, 248, .055) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 142, 248, .055) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(circle at center, black, transparent 82%);
}

.network-visual::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  left: 50%;
  top: 50%;
  z-index: -1;
  border: 1px solid rgba(0, 142, 248, .12);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 70px rgba(0, 142, 248, .08), inset 0 0 55px rgba(0, 142, 248, .06);
}

.network-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: visible;
  pointer-events: none;
  animation: networkFloat 8s ease-in-out infinite alternate;
}

.route-track,
.route-pulse {
  fill: none;
  vector-effect: non-scaling-stroke;
  transition: stroke .25s ease, stroke-opacity .25s ease, filter .25s ease;
}

.route-track {
  stroke: rgba(0, 118, 212, .3);
  stroke-width: 1.4;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  transition: stroke-dashoffset 1.35s cubic-bezier(.22, .8, .25, 1), stroke .25s ease, stroke-opacity .25s ease;
}

.routes-visible .route-track {
  stroke-dashoffset: 0;
}

.route-pulse {
  stroke: rgba(0, 142, 248, .9);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 1 17;
  stroke-dashoffset: 0;
  opacity: 0;
  filter: url(#route-glow);
}

.routes-visible .route-pulse {
  opacity: .7;
  animation: routeFlow 4.8s linear infinite;
  transition: opacity .5s ease 1s, stroke .25s ease, stroke-opacity .25s ease;
}

.routes-visible .route-access {
  animation-delay: -.8s;
}

.routes-visible .route-reserve {
  animation-delay: -1.6s;
}

.routes-visible .route-power {
  animation-delay: -2.4s;
}

.infrastructure-node {
  position: absolute;
  z-index: 3;
  width: 144px;
  padding: 12px 14px;
  border: 1px solid rgba(0, 142, 248, .14);
  border-radius: 14px;
  outline: none;
  background: rgba(255, 255, 255, .84);
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 34px rgba(15, 33, 76, .08);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease, opacity .25s ease;
  cursor: default;
}

.infrastructure-node::before {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  top: 13px;
  right: 13px;
  border-radius: 50%;
  background: #37d99a;
  box-shadow: 0 0 0 5px rgba(55, 217, 154, .11);
}

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

.infrastructure-node small {
  padding-right: 13px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .07em;
  line-height: 1.3;
  text-transform: uppercase;
}

.infrastructure-node strong {
  margin-top: 6px;
  font-size: 15px;
  letter-spacing: -.025em;
  line-height: 1.2;
}

.infrastructure-node span {
  margin-top: 5px;
  color: #a7dfff;
  font-size: 10px;
  font-weight: 600;
}

.infrastructure-node:hover,
.infrastructure-node:focus-visible {
  border-color: rgba(0, 142, 248, .55);
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(0, 118, 212, .16);
}

.node-main {
  left: 5%;
  top: 8%;
}

.node-access {
  right: 5%;
  top: 8%;
}

.node-reserve {
  left: 5%;
  bottom: 8%;
}

.node-power {
  right: 5%;
  bottom: 8%;
}

.node-server {
  width: 174px;
  left: 50%;
  top: 50%;
  padding: 18px;
  border-color: rgba(109, 197, 255, .5);
  transform: translate(-50%, -50%);
  background: rgba(9, 25, 43, .93);
  color: white;
  box-shadow: 0 22px 55px rgba(0, 118, 212, .28);
  text-align: center;
}

.node-server::before {
  background: #37d99a;
}

.node-server small {
  color: #89cef8;
}

.node-server strong {
  margin-top: 7px;
  font-size: 21px;
}

.node-server:hover,
.node-server:focus-visible {
  transform: translate(-50%, calc(-50% - 3px));
  box-shadow: 0 28px 64px rgba(0, 118, 212, .36);
}

.network-visual[data-active-route] .route-track,
.network-visual[data-active-route] .route-pulse {
  stroke-opacity: .15;
}

.network-visual[data-active-route="main"] .route-main,
.network-visual[data-active-route="access"] .route-access,
.network-visual[data-active-route="reserve"] .route-reserve,
.network-visual[data-active-route="power"] .route-power,
.network-visual[data-active-route="server"] .route-track,
.network-visual[data-active-route="server"] .route-pulse {
  stroke: #008ef8;
  stroke-opacity: 1;
  filter: url(#route-glow);
}

.network-visual[data-active-route] .infrastructure-node {
  opacity: .62;
}

.network-visual[data-active-route="main"] .node-main,
.network-visual[data-active-route="access"] .node-access,
.network-visual[data-active-route="reserve"] .node-reserve,
.network-visual[data-active-route="power"] .node-power,
.network-visual[data-active-route="server"] .node-server {
  opacity: 1;
}

.audience-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 48px;
  border-top: 1px solid var(--ink);
}

.audience-list span {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}

.booking {
  width: 100%;
  max-width: none;
  padding-left: max(24px, calc((100vw - var(--container)) / 2));
  padding-right: max(24px, calc((100vw - var(--container)) / 2));
  background: linear-gradient(135deg, #edf8ff, #f7f5ff);
  color: var(--ink);
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 80px;
  align-items: start;
  position: relative;
  isolation: isolate;
}

.booking .eyebrow {
  color: var(--blue);
}

.booking h2 {
  max-width: 720px;
  font-size: 43px;
}

.booking-form {
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, .8);
  border-radius: 20px;
  background: rgba(255, 255, 255, .9);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.form-trap {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

.field>span {
  color: #4b5563;
  font-size: 12px;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 16px;
  border: 1px solid transparent;
  border-radius: 12px;
  outline: none;
  background: #f5f5f7;
  color: var(--ink);
  font: inherit;
  font-size: 14px;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.field textarea {
  min-height: 110px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(0, 142, 248, .1);
}

.field input::placeholder,
.field textarea::placeholder {
  color: #9ca3af;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 4px 0 20px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.consent input {
  width: 17px;
  height: 17px;
  margin: 0;
  accent-color: var(--blue);
}

.booking-form .button {
  width: 100%;
}

footer {
  min-height: 180px;
  padding: 48px max(24px, calc((100vw - var(--container)) / 2));
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: start;
  background: #0a0f1a;
  color: white;
}

footer p,
footer>a:last-child {
  margin: 0;
  color: #aeb8c6;
  font-size: 13px;
}

.hero-eyebrow,
.hero-title,
.hero-sub,
.hero-cta {
  opacity: 0;
  animation: heroIn .8s ease forwards;
}

.hero-eyebrow {
  animation-delay: .05s;
}

.hero-title {
  animation-delay: .15s;
}

.hero-sub {
  animation-delay: .3s;
}

.hero-cta {
  animation-delay: .45s;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}

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

/* Background SVG Lines Styling */
.bg-lines-container {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
  opacity: 0.85;
  animation: bgSway 25s ease-in-out infinite alternate;
}

.bg-svg-lines {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: visible;
}

.bg-line-track {
  fill: none;
  stroke: rgba(0, 142, 248, 0.04);
  stroke-width: 1.5;
}

.bg-line-pulse {
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 180 820;
  stroke-dashoffset: 0;
  opacity: 0.8;
  filter: url(#hero-glow);
  animation: bgPulseFlow 12s linear infinite;
}

.bg-pulse-delayed {
  animation-delay: -6s;
  animation-duration: 15s;
}

@keyframes bgSway {
  0% {
    transform: translateY(0) scale(1) rotate(0deg);
  }

  50% {
    transform: translateY(-12px) scale(1.02) rotate(0.2deg);
  }

  100% {
    transform: translateY(0) scale(1) rotate(0deg);
  }
}

@keyframes bgPulseFlow {
  0% {
    stroke-dashoffset: 1000;
  }

  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes heroIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes blobMove {
  from {
    transform: translateX(-50%) translate(0, 0) scale(1);
  }

  to {
    transform: translateX(-50%) translate(55px, -30px) scale(1.12);
  }
}

@keyframes routeFlow {
  to {
    stroke-dashoffset: -100;
  }
}

@keyframes networkFloat {
  from {
    transform: translateY(3px) scale(1);
  }

  to {
    transform: translateY(-3px) scale(1.012);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.submit-spinner {
  width: 16px;
  height: 16px;
  margin-right: 6px;
  vertical-align: middle;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  animation: spin 1s linear infinite;
}

/* ==========================================================================
   New Components: Benchmarks, Terminal, FAQ Accordions
   ========================================================================== */

/* Benchmarks section */
.benchmarks-container {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 44px;
  box-shadow: var(--shadow);
}

.benchmark-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 36px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px;
}

.bench-tab {
  background: transparent;
  border: 0;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
  cursor: pointer;
  position: relative;
  transition: color .2s ease, background .2s ease;
}

.bench-tab:hover {
  color: var(--blue);
  background: var(--surface-blue);
}

.bench-tab.active {
  color: var(--blue);
  background: var(--surface-blue);
}

.benchmark-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  align-items: center;
}

.benchmark-info h3 {
  margin: 0 0 16px;
  font-size: 26px;
  font-family: "Magistral", Arial, sans-serif;
  font-weight: 400;
}

.benchmark-info p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.benchmark-chart {
  display: grid;
  gap: 20px;
}

.chart-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 16px;
  align-items: center;
}

.chart-label {
  font-size: 12px;
  font-weight: 700;
  color: #354052;
}

.chart-bar-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  flex-grow: 1;
}

.chart-bar {
  height: 28px;
  border-radius: 8px;
  background: var(--line);
  width: 0;
  transition: width 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  position: relative;
  overflow: hidden;
}

.chart-bar.featured {
  background: linear-gradient(90deg, var(--blue), #6dc5ff);
  box-shadow: 0 4px 14px rgba(0, 142, 248, .2);
}

.chart-value {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
}

/* Config Terminal */
.config-terminal {
  min-height: 610px;
  background: #0d1117;
  display: flex;
  flex-direction: column;
  color: #c9d1d9;
  font-family: Consolas, Monaco, "Andale Mono", "Ubuntu Mono", monospace;
  position: relative;
}

.terminal-header {
  background: #161b22;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #30363d;
}

.terminal-dots {
  display: flex;
  gap: 6px;
  margin-right: 18px;
}

.terminal-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.terminal-dots .dot.red {
  background: #ff5f56;
}

.terminal-dots .dot.yellow {
  background: #ffbd2e;
}

.terminal-dots .dot.green {
  background: #27c93f;
}

.terminal-title {
  font-size: 11px;
  color: #8b949e;
  text-transform: lowercase;
}

.terminal-tabs {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  background: #161b22;
  border-bottom: 1px solid #30363d;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.terminal-tabs::-webkit-scrollbar {
  display: none;
}

.term-tab {
  background: transparent;
  border: 0;
  border-right: 1px solid #30363d;
  color: #8b949e;
  padding: 10px 16px;
  font-size: 11px;
  cursor: pointer;
  font-family: inherit;
  transition: background .2s ease, color .2s ease;
}

.term-tab:hover {
  background: #21262d;
  color: #c9d1d9;
}

.term-tab.active {
  background: #0d1117;
  color: var(--blue);
  border-bottom: 2px solid var(--blue);
}

.terminal-body {
  flex-grow: 1;
  padding: 20px;
  position: relative;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.terminal-pane {
  display: none;
  height: 100%;
}

.terminal-pane.active {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.terminal-body pre {
  margin: 0;
  white-space: pre;
  word-wrap: normal;
  overflow-x: auto;
  font-size: 11px;
  line-height: 1.6;
}

.term-comment {
  color: #8b949e;
}

.term-prompt {
  color: #58a6ff;
  font-weight: bold;
}

.term-output {
  color: #3de7a5;
}

.term-masked {
  color: #ffbd2e;
  background: rgba(255, 189, 46, .12);
  border-radius: 3px;
  padding: 0 3px;
  letter-spacing: .05em;
  font-style: italic;
}

.term-copy-btn {
  align-self: flex-start;
  margin-top: 20px;
  background: #21262d;
  color: #c9d1d9;
  border: 1px solid #30363d;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 11px;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease;
}

.term-copy-btn:hover {
  background: #30363d;
  border-color: #8b949e;
}

.copy-config-btn {
  width: 100%;
  margin-top: 20px;
  gap: 8px;
  font-size: 12px;
}

.copy-config-icon {
  width: 14px;
  height: 14px;
  margin-right: 4px;
  vertical-align: middle;
  fill: currentColor;
}

/* FAQ Accordions */
.faq-container {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color .25s ease, box-shadow .25s ease;
}

.faq-item:hover {
  border-color: #c8e7fb;
  box-shadow: var(--shadow);
}

.faq-trigger {
  width: 100%;
  padding: 24px 28px;
  background: transparent;
  border: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  text-align: left;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
}

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--surface-blue);
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
  transition: transform .25s ease, background .25s ease;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: currentColor;
  border-radius: 1px;
}

.faq-icon::before {
  width: 10px;
  height: 2px;
}

.faq-icon::after {
  width: 2px;
  height: 10px;
  transition: transform .25s ease;
}

.faq-item.active .faq-icon {
  background: var(--blue);
  color: var(--white);
}

.faq-item.active .faq-icon::after {
  transform: rotate(90deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s cubic-bezier(0.25, 1, 0.5, 1), padding .3s ease;
  padding: 0 28px;
}

.faq-content p {
  margin: 0;
  padding-bottom: 24px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.faq-item.active .faq-content {
  max-height: 200px;
}

/* GPU Monitor Widget */
.gpu-monitor-widget {
  margin-top: 28px;
  padding: 20px;
  background: rgba(8, 17, 28, 0.02);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.gpu-monitor-widget .monitor-title {
  margin: 0 0 16px;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink);
}

.gpu-monitor-widget .sample-badge {
  background: rgba(0, 142, 248, 0.08);
  border: 1px solid rgba(0, 142, 248, 0.2);
  color: var(--blue-dark);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0;
}

.monitor-note {
  margin: -8px 0 16px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.45;
}

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

.monitor-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.monitor-label {
  font-size: 11px;
  color: var(--muted);
  font-weight: 500;
}

.monitor-value-row {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.monitor-value-row strong {
  font-size: 15px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.monitor-bar-bg {
  height: 6px;
  background: rgba(0, 0, 0, 0.06);
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}

.monitor-bar-fill {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--blue), #6dc5ff);
  transition: width 1.5s ease-in-out;
}

.monitor-bar-fill.temp {
  background: linear-gradient(90deg, #f59e0b, #ef4444);
}

.monitor-bar-fill.vram {
  background: linear-gradient(90deg, #10b981, #3b82f6);
}

.monitor-bar-fill.power {
  background: linear-gradient(90deg, #6366f1, #a855f7);
}

.monitor-load-example {
  width: 82%;
}

.monitor-temp-example {
  width: 53%;
}

.monitor-vram-example {
  width: 85.8%;
}

.monitor-power-example {
  width: 69.3%;
}

/* Calculator Type Selector & VRAM Calc */
.calc-type-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  background: rgba(0, 0, 0, 0.03);
  padding: 4px;
  border-radius: 10px;
  margin-bottom: 24px;
  border: 1px solid var(--line);
}

.calc-type-btn {
  flex: 1 1 auto;
  min-width: 0;
  border: 0;
  background: transparent;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 700;
  border-radius: 7px;
  cursor: pointer;
  color: var(--muted);
  transition: background 0.2s ease, color 0.2s ease;
  text-align: center;
  font-family: inherit;
  white-space: nowrap;
}

.calc-type-btn.active {
  background: var(--white);
  color: var(--blue);
  box-shadow: 0 2px 6px rgba(15, 33, 76, 0.05);
}

.calc-vram-group {
  display: none;
}

.calc-vram-group.active {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.calc-rent-group {
  display: block;
}

.calc-rent-group.hidden {
  display: none;
}

.vram-selector-title {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  margin-bottom: 8px;
  font-weight: 700;
}

.vram-selector-group-spaced {
  margin-top: 14px;
}

.vram-options-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.vram-quant-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.vram-option-btn {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 10px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  text-align: center;
  transition: all 0.2s ease;
  font-family: inherit;
}

.vram-option-btn:hover {
  border-color: #c8e7fb;
  background: var(--surface-blue);
}

.vram-option-btn.active {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
  box-shadow: 0 4px 12px rgba(0, 142, 248, .15);
}

.vram-result-card {
  padding: 18px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--white);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.vram-result-card-spaced {
  margin-top: 18px;
}

.vram-meter-container {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.vram-meter-labels {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--muted);
  font-weight: 600;
}

.vram-meter-bar {
  height: 8px;
  background: rgba(0, 0, 0, 0.06);
  border-radius: 4px;
  overflow: hidden;
}

.vram-meter-fill {
  height: 100%;
  width: 0%;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--blue), #6dc5ff);
  transition: width 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.vram-meter-fill-initial {
  width: 33.3%;
}

.vram-meter-fill.overflow {
  background: linear-gradient(90deg, #f59e0b, #ef4444);
}

.vram-status-info {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  line-height: 1.45;
}

.vram-status-icon {
  font-size: 18px;
  line-height: 1;
  flex-shrink: 0;
}

.vram-status-text {
  font-weight: 500;
  color: #354052;
}

.vram-status-text strong {
  color: var(--ink);
}

.vram-status-text .highlight-green {
  color: var(--green);
  font-weight: 700;
}

.vram-status-text .highlight-red {
  color: var(--red);
  font-weight: 700;
}

/* Key Stats Section */
.key-stats-section {
  background: linear-gradient(180deg, var(--white), var(--surface));
  border-bottom: 1px solid var(--line);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 10px;
}

.stats-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.stats-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.stats-number {
  font-family: "Magistral", Arial, sans-serif;
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 400;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 12px;
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
}

.stats-number span {
  font-family: inherit;
}

.stats-number .suffix {
  font-size: 18px;
  font-weight: 700;
  margin-left: 2px;
}

.stats-label {
  font-size: 12px;
  color: var(--muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.stats-desc {
  font-size: 12px;
  color: #58667e;
  line-height: 1.45;
  margin: 0;
}

@media (max-width: 1000px) {
  .site-header {
    padding: 0 20px;
  }

  .site-header nav {
    display: none;
  }

  .site-header .button {
    margin-left: auto;
  }

  .hero,
  .section {
    width: calc(100% - 40px);
    margin-left: 20px;
    margin-right: 20px;
  }

  .hero {
    padding-top: 48px;
  }

  .use-cases,
  .rules,
  .booking {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-media {
    height: 440px;
  }

  .price-highlight {
    margin: 0 20px;
    grid-template-columns: 1fr auto;
  }

  .price-highlight .button {
    grid-column: 1 / -1;
  }

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

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

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

  .additional-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .network-visual {
    width: min(680px, 100%);
    min-height: 440px;
    margin: 0 auto;
  }

  .benchmark-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  /* Stack config layout: specs first, terminal second on tablet */
  .config-layout {
    grid-template-columns: 1fr;
  }

  .config-media {
    order: 2;
  }

  .config-card {
    order: 1;
  }
}

@media (max-width: 680px) {
  .site-header {
    height: 66px;
  }

  .site-header .button {
    display: none;
  }

  /* Typography */
  h1 {
    font-size: 30px;
    line-height: 1.15;
  }

  h2 {
    font-size: 26px;
  }

  h3 {
    font-size: 18px;
  }

  /* Hero */
  .hero {
    min-height: 0;
    gap: 24px;
    padding-top: 36px;
    padding-bottom: 56px;
  }

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

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

  .hero-actions .button {
    justify-content: center;
  }

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

  .hero-facts div {
    padding-bottom: 14px;
    border-bottom: 1px solid var(--line);
  }

  .hero-media {
    height: 220px;
  }

  .hero-media img {
    object-position: center top;
  }

  /* Sections */
  .section {
    padding: 48px 0;
  }

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

  /* Price highlight */
  .price-highlight {
    padding: 20px 16px;
    grid-template-columns: 1fr;
    gap: 16px;
    margin: 0 0;
  }

  .price-highlight .button {
    grid-column: auto;
  }

  /* Config / Terminal */
  .config-layout {
    grid-template-columns: 1fr;
  }

  .config-media {
    min-height: 300px;
    order: 2;
  }

  .config-card {
    order: 1;
    padding: 20px 16px;
  }

  .config-card h3 {
    font-size: 22px;
  }

  .config-card dl div {
    grid-template-columns: 1fr;
    gap: 2px;
    padding: 10px 0;
  }

  .config-card dt {
    font-size: 11px;
  }

  .config-card dd {
    font-size: 12px;
  }

  .config-terminal {
    min-height: 360px;
  }

  .term-tab {
    padding: 8px 12px;
    font-size: 10px;
    white-space: nowrap;
    flex-shrink: 0;
  }

  .terminal-body {
    padding: 14px;
  }

  .terminal-body pre {
    font-size: 10px;
  }

  /* Cards grids */
  .cards-grid {
    grid-template-columns: 1fr;
  }

  .cards-grid article {
    min-height: auto;
  }

  /* Pricing / Calculator */
  .pricing-layout,
  .pricing-cards-list,
  .rules,
  .additional-grid,
  .audience-list,
  .booking {
    grid-template-columns: 1fr;
  }

  .pricing-cards-list article {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .pricing-cards-list small {
    width: auto;
  }

  .pricing-cards-list p {
    text-align: left;
    margin: 0;
  }

  .pricing-calculator {
    padding: 16px 14px;
  }

  .calc-type-selector {
    flex-direction: column;
    gap: 4px;
  }

  .calc-type-btn {
    flex: none;
    width: 100%;
    text-align: center;
  }

  .calc-tabs {
    flex-wrap: wrap;
    gap: 6px;
  }

  .calc-tab {
    flex: 1 1 calc(50% - 6px);
    min-width: 0;
    font-size: 12px;
    padding: 8px 6px;
  }

  .calc-summary {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .calc-total-price {
    text-align: left;
  }

  /* VRAM calc */
  .vram-options-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .vram-quant-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .vram-option-btn {
    font-size: 11px;
    padding: 8px 6px;
  }

  /* Benchmarks */
  .benchmarks-container {
    padding: 20px 16px;
  }

  .benchmark-tabs {
    flex-direction: column;
    gap: 6px;
    padding-bottom: 0;
    border-bottom: 0;
  }

  .bench-tab {
    font-size: 12px;
    padding: 8px 14px;
    text-align: left;
  }

  .chart-row {
    grid-template-columns: 120px 1fr;
    gap: 10px;
  }

  .chart-label {
    font-size: 11px;
  }

  /* Monitor widget */
  .monitor-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .monitor-value-row strong {
    font-size: 13px;
  }

  /* Stats */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .stats-item {
    padding: 20px 14px;
  }

  .stats-number {
    font-size: 32px;
  }

  /* FAQ */
  .faq-trigger {
    padding: 16px 18px;
    font-size: 13px;
  }

  .faq-content {
    padding: 0 18px;
  }

  .faq-item.active .faq-content {
    max-height: 400px;
  }

  /* Network / Infra */
  .rule-card {
    padding: 20px 16px;
  }

  .network-visual {
    min-height: 380px;
    border-radius: 16px;
  }

  .infrastructure-node {
    width: 100px;
    padding: 7px 9px;
  }

  .infrastructure-node small {
    font-size: 7px;
  }

  .infrastructure-node strong {
    font-size: 11px;
  }

  .node-main,
  .node-reserve {
    left: 2%;
  }

  .node-access,
  .node-power {
    right: 2%;
  }

  .node-main,
  .node-access {
    top: 5%;
  }

  .node-reserve,
  .node-power {
    bottom: 5%;
  }

  .node-server {
    width: 130px;
    padding: 10px;
  }

  .node-server strong {
    font-size: 15px;
  }

  /* Booking / Form */
  .booking {
    gap: 28px;
  }

  .booking h2 {
    font-size: 24px;
  }

  .booking-form {
    padding: 16px 14px;
  }

  .rules,
  .booking {
    padding-left: 16px;
    padding-right: 16px;
  }

  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  /* Footer */
  footer {
    grid-template-columns: 1fr;
    padding: 32px 16px;
    gap: 24px;
  }
}

@media (hover: none) {

  .cards-grid article:hover,
  .pricing-cards-list article:hover {
    transform: none;
    box-shadow: none;
  }
}

@media (prefers-reduced-motion: reduce) {

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

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

  .network-lines,
  .route-pulse {
    animation: none !important;
  }

  .route-track {
    stroke-dashoffset: 0 !important;
  }

  .route-pulse {
    opacity: .35 !important;
  }
}
