:root {
  --bg: #f5f8fc;
  --bg-soft: #edf5ff;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: rgba(255, 255, 255, 0.94);
  --text: #162136;
  --muted: #667891;
  --line: rgba(16, 33, 61, 0.1);
  --primary: #1678ff;
  --primary-deep: #124db8;
  --secondary: #11c7d7;
  --navy: #112c5a;
  --shadow: 0 28px 80px rgba(24, 69, 137, 0.14);
  --radius-xl: 40px;
  --radius-lg: 30px;
  --radius-md: 22px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(22, 120, 255, 0.08), transparent 34%),
    radial-gradient(circle at 86% 12%, rgba(17, 199, 215, 0.14), transparent 26%),
    linear-gradient(180deg, #fbfdff 0%, #f3f7fd 58%, #eef4fb 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.14) 1px, transparent 1px);
  background-size: 36px 36px;
  opacity: 0.22;
  pointer-events: none;
  z-index: -1;
}

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

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

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

ul {
  margin-bottom: 0;
}

button,
input {
  font: inherit;
}

.page-shell {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
  padding: 18px 0 40px;
}

.site-header {
  position: sticky;
  top: 10px;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(20px);
  box-shadow: 0 14px 34px rgba(20, 54, 108, 0.1);
}

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

.brand__badge {
  flex: 0 0 72px;
  width: 72px;
  height: 50px;
}

.brand__badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand__copy {
  display: grid;
  gap: 2px;
}

.brand__name {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.54rem;
  line-height: 0.94;
  letter-spacing: -0.08em;
  text-transform: lowercase;
}

.brand__tag {
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: none;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 18px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.nav a {
  transition: color 0.25s ease, transform 0.25s ease;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--primary-deep);
  transform: translateY(-1px);
}

.header-actions,
.hero__actions,
.cta-panel__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.site-header .button {
  min-height: 38px;
  padding: 9px 15px;
  font-size: 0.82rem;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(240, 245, 252, 0.92);
}

.lang-switch__button {
  min-width: 40px;
  height: 32px;
  padding: 0 12px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.lang-switch__button.is-active {
  background: #ffffff;
  color: var(--text);
  box-shadow: 0 8px 18px rgba(18, 35, 65, 0.08);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease;
}

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

.button--primary {
  color: #ffffff;
  background: var(--primary);
  box-shadow: 0 12px 24px rgba(22, 120, 255, 0.22);
}

.button--primary:hover,
.button--primary:focus-visible {
  background: var(--primary-deep);
}

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

.button--ghost:hover,
.button--ghost:focus-visible {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(16, 33, 61, 0.16);
}

.button--light {
  color: var(--primary-deep);
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(8, 25, 54, 0.15);
}

.button--outline-light {
  color: #ffffff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.3);
}

.button--full {
  width: 100%;
}

.button--wide {
  min-width: 196px;
}

.eyebrow,
.configurator-card__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0;
  padding: 10px 16px;
  border: 1px solid rgba(22, 120, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--primary-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: 0 12px 24px rgba(17, 60, 118, 0.08);
}

.eyebrow::before,
.configurator-card__eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.eyebrow--inverse {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.16);
}

.eyebrow--inverse::before {
  background: #ffffff;
}

main {
  display: grid;
  gap: 24px;
  padding-top: 16px;
}

.hero,
.infrastructure__grid,
.configurator-grid,
.product-lines,
.site-footer__top {
  display: grid;
  gap: 22px;
}

.hero {
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  align-items: center;
  min-height: calc(100svh - 124px);
  padding: 8px 0 6px;
}

.hero__content h1,
.section-heading h2,
.story-panel h2,
.network-panel h3,
.cta-panel h2,
.hero-card h2,
.price-card h3,
.feature-card h3,
.faq-card h3,
.configurator-card h3,
.pricing-group__header h3,
.server-line h3 {
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.07em;
}

.hero__content h1 {
  max-width: 10ch;
  margin: 16px 0 14px;
  font-size: clamp(2.85rem, 5.6vw, 4.7rem);
  line-height: 0.92;
}

.hero__lead,
.section-heading > p:not(.eyebrow),
.server-line__lead,
.price-card__subtitle,
.feature-card p,
.faq-card p,
.story-panel > p:not(.eyebrow),
.story-list__item span,
.network-panel > p:not(.network-panel__label),
.metric span,
.configurator-card__lead,
.configurator-note,
.site-footer__lead,
.footer-column li {
  color: var(--muted);
}

.hero__lead {
  max-width: 34rem;
  margin-bottom: 20px;
  font-size: 1rem;
  line-height: 1.62;
}

.hero__actions {
  margin-bottom: 16px;
}

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

.hero__stats li,
.hero-card,
.mascot-panel,
.section--soft,
.server-line,
.configurator-card,
.price-card,
.feature-card,
.faq-card,
.story-panel,
.network-panel,
.cta-panel,
.site-footer {
  box-shadow: var(--shadow);
}

.hero__stats li {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.76);
}

.hero__stats strong {
  display: block;
  margin-bottom: 6px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.34rem;
  line-height: 1;
}

.hero__stats span {
  display: block;
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--muted);
}

.hero__visual {
  position: relative;
  min-height: clamp(510px, 62vh, 620px);
  isolation: isolate;
}

.hero__visual::before {
  content: "";
  position: absolute;
  top: 4%;
  right: 4%;
  width: 64%;
  height: 54%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(120, 220, 255, 0.42), rgba(22, 120, 255, 0.02) 72%);
  filter: blur(4px);
  z-index: 0;
}

.signal-cluster {
  position: absolute;
  inset: 4% 0 6% 5%;
  z-index: 0;
}

.signal {
  position: absolute;
  height: 28px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(197, 230, 255, 0.18), rgba(22, 120, 255, 0.84));
  box-shadow: 0 14px 34px rgba(22, 120, 255, 0.18);
  animation: drift 10s ease-in-out infinite;
}

.signal--1 { top: 8%; right: 10%; width: 240px; }
.signal--2 { top: 19%; left: 18%; width: 150px; animation-delay: -2s; background: linear-gradient(90deg, rgba(169, 236, 255, 0.22), rgba(17, 199, 215, 0.88)); }
.signal--3 { top: 30%; right: 0; width: 320px; animation-delay: -3s; }
.signal--4 { top: 41%; left: 8%; width: 280px; animation-delay: -5s; }
.signal--5 { top: 52%; right: 8%; width: 190px; animation-delay: -1.5s; background: linear-gradient(90deg, rgba(200, 233, 255, 0.24), rgba(91, 63, 255, 0.88)); }
.signal--6 { top: 62%; left: 22%; width: 360px; animation-delay: -6s; background: linear-gradient(90deg, rgba(183, 244, 248, 0.18), rgba(17, 199, 215, 0.86)); }
.signal--7 { bottom: 12%; right: 12%; width: 220px; animation-delay: -4s; }
.signal--8 { bottom: 2%; left: 0; width: 130px; animation-delay: -7s; background: linear-gradient(90deg, rgba(204, 235, 255, 0.24), rgba(17, 199, 215, 0.82)); }

.hero-card {
  position: absolute;
  top: 10%;
  right: 0;
  width: min(74%, 420px);
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  z-index: 2;
}

.hero-card__header,
.hero-card__footer,
.server-line__footer,
.configurator-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.hero-card__header {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.status-pill,
.configurator-card__badge {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(17, 199, 215, 0.12);
  color: #069bb3;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-card h2 {
  margin-bottom: 16px;
  font-size: 1.8rem;
  line-height: 0.98;
}

.hero-card__stack {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.stack-option {
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  border-radius: 20px;
  background: var(--bg-soft);
  border: 1px solid rgba(22, 120, 255, 0.08);
}

.stack-option__meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.stack-option strong {
  font-size: 1rem;
}

.stack-option span:last-child,
.server-line__price small {
  color: var(--muted);
}

.hero-card__meta {
  display: grid;
  gap: 4px;
}

.hero-card__meta span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-card__meta strong {
  font-size: 1rem;
}

.mascot-panel {
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(72%, 400px);
  padding: 18px 20px;
  border: 1px solid rgba(22, 120, 255, 0.08);
  border-radius: var(--radius-xl);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.82), rgba(234, 243, 255, 0.66));
  backdrop-filter: blur(16px);
  z-index: 1;
}

.mascot-panel__badge {
  display: inline-flex;
  align-items: center;
  margin-bottom: 8px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--primary-deep);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mascot-panel img {
  width: 100%;
  filter: drop-shadow(0 18px 28px rgba(15, 48, 99, 0.18));
}

.section {
  padding: 18px 0;
}

.section--soft {
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(16px);
}

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

.section-heading h2,
.story-panel h2,
.cta-panel h2 {
  margin: 18px 0 12px;
  font-size: clamp(2rem, 4.6vw, 3.5rem);
  line-height: 0.96;
}

.section-heading > p:not(.eyebrow),
.story-panel > p:not(.eyebrow),
.network-panel > p:not(.network-panel__label),
.cta-panel__content > p:not(.eyebrow),
.configurator-card__lead,
.configurator-note,
.site-footer__lead,
.pricing-group__header > p:not(.eyebrow) {
  font-size: 1rem;
  line-height: 1.7;
}

.product-lines {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.location-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.location-selector--compact {
  margin-top: 10px;
}

.location-selector__button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.location-selector__button:hover,
.location-selector__button:focus-visible,
.location-selector__button.is-active {
  transform: translateY(-1px);
  border-color: rgba(22, 120, 255, 0.22);
  box-shadow: 0 12px 24px rgba(20, 54, 108, 0.1);
}

.pricing-location-box__head {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-location-box__head strong {
  color: var(--text);
  font-size: 0.96rem;
  letter-spacing: 0;
  text-transform: none;
}

.pricing-controls {
  display: grid;
  gap: 16px;
  margin-bottom: 22px;
}

.pricing-location-box {
  padding: 16px 18px;
  border: 1px solid rgba(16, 33, 61, 0.08);
  border-radius: 24px;
  background: rgba(244, 248, 253, 0.88);
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.flag {
  display: inline-flex;
  flex: 0 0 34px;
  width: 34px;
  height: 24px;
  border-radius: 8px;
  box-shadow: inset 0 0 0 1px rgba(16, 33, 61, 0.08);
}

.flag--de {
  background: linear-gradient(180deg, #151515 0 33.33%, #d22b2b 33.33% 66.66%, #f2c64d 66.66% 100%);
}

.flag--nl {
  background: linear-gradient(180deg, #ae1c28 0 33.33%, #ffffff 33.33% 66.66%, #21468b 66.66% 100%);
}

.flag--lv {
  background: linear-gradient(180deg, #8c2035 0 40%, #ffffff 40% 60%, #8c2035 60% 100%);
}

.flag--fi {
  background:
    linear-gradient(90deg, transparent 0 26%, #0b4ea2 26% 40%, transparent 40% 100%),
    linear-gradient(180deg, transparent 0 42%, #0b4ea2 42% 58%, transparent 58% 100%),
    #ffffff;
}

.flag--se {
  background:
    linear-gradient(90deg, transparent 0 28%, #f3cb2d 28% 40%, transparent 40% 100%),
    linear-gradient(180deg, transparent 0 42%, #f3cb2d 42% 58%, transparent 58% 100%),
    #1666b0;
}

.location-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.location-card.is-active {
  transform: translateY(-2px);
  border-color: rgba(22, 120, 255, 0.24);
}

.location-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 18px;
}

.location-card__flag-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 44px;
  padding: 0 8px;
  border-radius: 14px;
  background: rgba(22, 120, 255, 0.1);
}

.location-card__city {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.location-card h3 {
  margin-bottom: 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.38rem;
  line-height: 1;
  letter-spacing: -0.05em;
}

.location-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.6;
}

.server-line,
.configurator-card,
.feature-card,
.faq-card,
.story-panel,
.price-card {
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.88);
}

.server-line {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 28px;
}

.server-line--dedicated {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(235, 244, 255, 0.92));
}

.server-line__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.server-line__badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(22, 120, 255, 0.1);
  color: var(--primary-deep);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.server-line h3,
.configurator-card h3,
.pricing-group__header h3 {
  margin: 14px 0 10px;
  font-size: 2rem;
  line-height: 0.98;
}

.server-line__lead {
  margin-bottom: 0;
  line-height: 1.68;
}

.server-line__price {
  display: grid;
  gap: 4px;
  justify-items: end;
}

.server-line__price strong,
.price-card__price strong,
.configurator-price strong {
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.08em;
}

.server-line__usd,
.price-card__usd {
  color: var(--primary-deep);
  font-size: 0.86rem;
  font-weight: 800;
}

.server-line__price strong {
  font-size: 2.3rem;
  line-height: 0.92;
}

.server-line__list,
.price-card ul {
  display: grid;
  gap: 12px;
  padding: 0;
  list-style: none;
}

.server-line__list li,
.price-card li,
.footer-column li {
  display: flex;
  gap: 10px;
  line-height: 1.5;
}

.server-line__list li::before,
.price-card li::before,
.footer-column li::before {
  content: "";
  flex: 0 0 10px;
  width: 10px;
  height: 10px;
  margin-top: 0.58em;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.server-line__footer {
  margin-top: auto;
}

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

.configurator-card {
  padding: 28px;
  background: rgba(255, 255, 255, 0.88);
}

.configurator-card--dark {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.08);
  background: linear-gradient(150deg, #112c5a 0%, #0f4dc2 62%, #12c8d7 100%);
}

.configurator-card--dark .configurator-card__lead,
.configurator-card--dark .configurator-note,
.configurator-card--dark .summary-grid span,
.configurator-card--dark .range-control__top span,
.configurator-card--dark .range-control__top strong {
  color: rgba(255, 255, 255, 0.84);
}

.configurator-card--dark .configurator-card__badge--dark {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.configurator-card--dark .configurator-card__eyebrow {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.configurator-card--dark .configurator-card__eyebrow::before {
  background: #ffffff;
}

.configurator-controls {
  display: grid;
  gap: 16px;
  margin: 22px 0 24px;
}

.range-control {
  display: grid;
  gap: 10px;
}

.range-control__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 700;
}

.range-control__top strong {
  color: var(--text);
}

.range-control input[type="range"] {
  width: 100%;
  height: 8px;
  margin: 0;
  border-radius: 999px;
  background: rgba(22, 120, 255, 0.14);
  outline: none;
  appearance: none;
}

.range-control input[type="range"]::-webkit-slider-thumb {
  width: 18px;
  height: 18px;
  border: 0;
  border-radius: 999px;
  background: var(--primary);
  box-shadow: 0 8px 18px rgba(22, 120, 255, 0.28);
  cursor: pointer;
  appearance: none;
}

.range-control input[type="range"]::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border: 0;
  border-radius: 999px;
  background: var(--primary);
  box-shadow: 0 8px 18px rgba(22, 120, 255, 0.28);
  cursor: pointer;
}

.configurator-card--dark .range-control input[type="range"] {
  background: rgba(255, 255, 255, 0.18);
}

.configurator-card--dark .range-control input[type="range"]::-webkit-slider-thumb,
.configurator-card--dark .range-control input[type="range"]::-moz-range-thumb {
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(12, 22, 42, 0.28);
}

.configurator-summary {
  padding: 18px;
  border-radius: 24px;
  background: rgba(237, 245, 255, 0.9);
}

.configurator-card--dark .configurator-summary {
  background: rgba(255, 255, 255, 0.08);
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.summary-grid div {
  display: grid;
  gap: 6px;
}

.summary-grid span {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.summary-grid strong {
  font-size: 1rem;
}

.configurator-price {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
}

.configurator-price span {
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.configurator-price strong {
  font-size: 2.6rem;
  line-height: 0.9;
}

.configurator-note {
  margin-bottom: 0;
}

.pricing-groups,
.pricing-grid,
.feature-grid,
.faq-grid,
.metrics,
.site-footer__grid {
  display: grid;
  gap: 20px;
}

.pricing-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 28px rgba(20, 54, 108, 0.08);
}

.pricing-switch__button {
  min-height: 42px;
  padding: 10px 18px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.pricing-switch__button.is-active {
  background: #ffffff;
  color: var(--text);
  box-shadow: 0 10px 20px rgba(18, 35, 65, 0.08);
}

.pricing-groups {
  gap: 28px;
}

.pricing-group__header {
  max-width: 720px;
  margin-bottom: 18px;
}

.pricing-group--single {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.pricing-group__header h3 {
  margin: 14px 0 10px;
  font-size: 2.2rem;
}

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px;
}

.price-card--featured {
  transform: translateY(-6px);
  border-color: rgba(22, 120, 255, 0.16);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(239, 247, 255, 0.96));
}

.price-card__badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--primary);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.price-card h3,
.feature-card h3,
.faq-card h3 {
  margin-bottom: 10px;
  font-size: 1.5rem;
  line-height: 1;
}

.price-card__subtitle {
  min-height: 3.4em;
  margin-bottom: 12px;
  line-height: 1.6;
}

.price-card__price {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  margin-bottom: 8px;
}

.price-card__price strong {
  font-size: 2.5rem;
  line-height: 0.9;
}

.price-card__price span {
  color: var(--muted);
  font-weight: 700;
}

.price-card__usd {
  margin: 0 0 16px;
}

.price-card ul {
  margin: 0 0 22px;
}

.price-card li {
  font-weight: 700;
}

.feature-grid,
.faq-grid,
.site-footer__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card,
.faq-card {
  padding: 26px;
}

.feature-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(22, 120, 255, 0.14), rgba(17, 199, 215, 0.22));
  color: var(--primary-deep);
}

.feature-card__icon svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.infrastructure__grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.story-panel,
.network-panel {
  height: 100%;
  padding: 34px;
  border-radius: var(--radius-xl);
}

.story-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.story-list__item {
  display: grid;
  gap: 6px;
  padding: 18px 20px;
  border: 1px solid rgba(22, 120, 255, 0.08);
  border-radius: 24px;
  background: rgba(237, 245, 255, 0.9);
}

.story-list__item strong {
  font-size: 1.05rem;
}

.network-panel {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background: linear-gradient(150deg, #112c5a 0%, #0f4dc2 62%, #12c8d7 100%);
}

.network-panel::before,
.cta-panel::before {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.network-panel::before {
  top: -110px;
  right: -90px;
  width: 260px;
  height: 260px;
}

.network-panel__label {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.network-panel h3 {
  position: relative;
  z-index: 1;
  margin: 14px 0 12px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.96;
}

.network-panel > p:not(.network-panel__label),
.metric span,
.cta-panel__content > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.82);
}

.metrics {
  position: relative;
  z-index: 1;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 24px;
}

.metric {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
}

.metric strong {
  display: block;
  margin-bottom: 6px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.5rem;
  line-height: 1;
}

.faq-card p {
  font-size: 0.98rem;
}

.section--cta {
  padding-top: 6px;
}

.cta-panel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 36px 38px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: linear-gradient(130deg, #112c5a 0%, #1468ee 58%, #12c8d7 100%);
  color: #ffffff;
}

.cta-panel::before {
  top: -150px;
  right: -110px;
  width: 320px;
  height: 320px;
}

.cta-panel__content,
.cta-panel__actions {
  position: relative;
  z-index: 1;
}

.cta-panel__content {
  max-width: 660px;
}

.site-footer {
  margin-top: 18px;
  padding: 28px 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.76);
}

.site-footer__top {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
  margin-bottom: 24px;
}

.brand--footer {
  margin-bottom: 14px;
}

.brand__badge--footer {
  flex-basis: 64px;
  width: 64px;
  height: 46px;
}

.site-footer__lead {
  max-width: 34rem;
  margin-bottom: 0;
}

.footer-column {
  display: grid;
  gap: 12px;
}

.footer-column__title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.2rem;
  letter-spacing: -0.05em;
}

.footer-column ul {
  display: grid;
  gap: 10px;
  padding: 0;
  list-style: none;
}

.footer-column li {
  font-size: 0.94rem;
}

.footer-column a {
  color: var(--text);
  font-weight: 700;
}

.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(16, 33, 61, 0.08);
  font-size: 0.9rem;
  color: var(--muted);
}

.site-footer__bottom a {
  color: var(--text);
  font-weight: 800;
}

.hero__content > *,
.hero-card,
.mascot-panel,
.section,
.site-footer {
  animation: rise 0.8s ease both;
}

.hero__content > *:nth-child(1) { animation-delay: 0.05s; }
.hero__content > *:nth-child(2) { animation-delay: 0.1s; }
.hero__content > *:nth-child(3) { animation-delay: 0.16s; }
.hero__content > *:nth-child(4) { animation-delay: 0.22s; }
.hero__content > *:nth-child(5) { animation-delay: 0.28s; }
.hero-card { animation-delay: 0.18s; }
.mascot-panel { animation-delay: 0.24s; }

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

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

@keyframes drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(18px, -10px, 0);
  }
}

@media (max-height: 860px) and (min-width: 1121px) {
  .hero {
    min-height: calc(100svh - 108px);
    align-items: start;
  }

  .hero__content h1 {
    font-size: clamp(2.6rem, 4.8vw, 4.1rem);
  }

  .hero__visual {
    min-height: 510px;
  }

  .hero-card {
    top: 6%;
  }
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: auto 1fr;
    gap: 12px;
    border-radius: 30px;
  }

  .nav {
    grid-column: 1 / -1;
    order: 3;
  }

  .hero,
  .configurator-grid,
  .infrastructure__grid,
  .cta-panel,
  .site-footer__top {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 28px;
  }

  .hero__content h1 {
    max-width: none;
  }

  .hero__visual {
    min-height: 560px;
  }

  .product-lines,
  .locations-grid,
  .pricing-grid,
  .feature-grid,
  .faq-grid,
  .site-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .page-shell {
    width: min(calc(100% - 24px), var(--container));
    padding-top: 14px;
  }

  .site-header {
    position: static;
    grid-template-columns: 1fr;
    padding: 12px;
    border-radius: 28px;
  }

  .brand,
  .header-actions {
    width: 100%;
  }

  .nav {
    display: none;
  }

  .header-actions .button {
    flex: 1 1 160px;
  }

  .hero {
    min-height: auto;
    padding-top: 6px;
  }

  .hero__stats,
  .product-lines,
  .locations-grid,
  .pricing-grid,
  .feature-grid,
  .faq-grid,
  .metrics,
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .location-selector__button {
    width: 100%;
    justify-content: flex-start;
  }

  .pricing-switch {
    display: flex;
    width: 100%;
  }

  .pricing-switch__button {
    flex: 1 1 0;
  }

  .hero__visual {
    min-height: auto;
    display: grid;
    gap: 16px;
  }

  .hero-card,
  .mascot-panel {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    bottom: auto;
    width: 100%;
  }

  .hero-card__footer,
  .server-line__footer,
  .configurator-card__header,
  .configurator-price,
  .cta-panel__actions,
  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero__actions,
  .cta-panel__actions {
    width: 100%;
  }

  .hero__actions .button,
  .cta-panel__actions .button,
  .button--wide {
    width: 100%;
  }

  .section--soft,
  .story-panel,
  .network-panel,
  .cta-panel,
  .site-footer,
  .pricing-group--single {
    padding: 26px;
    border-radius: 30px;
  }
}

@media (max-width: 540px) {
  .brand__badge {
    flex-basis: 64px;
    width: 64px;
    height: 46px;
  }

  .brand__name {
    font-size: 1.4rem;
  }

  .brand__tag {
    font-size: 0.62rem;
  }

  .hero__content h1,
  .section-heading h2,
  .story-panel h2,
  .cta-panel h2 {
    font-size: clamp(2.25rem, 11vw, 3.25rem);
  }

  .hero-card h2,
  .configurator-card h3,
  .pricing-group__header h3,
  .price-card__price strong,
  .configurator-price strong {
    font-size: 1.95rem;
  }

  .signal {
    height: 24px;
  }
}
