.container {
  width: 100%;
  max-width: var(--content-width);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.hero {
  position: relative;
  min-height: calc(100svh - var(--header-height) - 44px);
  display: flex;
  align-items: center;
  padding-top: 24px;
  padding-bottom: 40px;
}

.hero > .container {
  width: 100%;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.eyebrow {
  max-width: 100%;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  overflow: hidden;
  padding: 6px 12px 6px 10px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-round);
  background: var(--color-panel);
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 650;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-radius: var(--radius-round);
  background: var(--color-accent);
  box-shadow: 0 0 0 3px rgb(var(--rgb-accent) / .16);
}

.hero h1 {
  margin-top: 22px;
  font-size: 60px;
}

.hero h1 .hl {
  color: var(--color-accent);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 28px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 650;
  line-height: 1;
  text-align: center;
  transition: background var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}

.btn-primary {
  background: var(--color-accent);
  color: var(--color-white);
  box-shadow: var(--shadow-button);
}

.btn-primary:hover {
  transform: translateY(-1px);
  background: var(--color-accent-dark);
  color: var(--color-white);
}

.btn-secondary {
  border-color: var(--color-border);
  background: var(--color-panel);
  color: var(--color-text);
}

.btn-secondary:hover {
  border-color: var(--color-muted);
  color: var(--color-text);
}

.btn-arrow {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lede {
  max-width: 520px;
  margin: 26px 0 0;
  color: var(--color-muted);
  font-size: 18px;
  line-height: 1.65;
}

.lede strong {
  color: var(--color-text);
  font-weight: 650;
}

.trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 22px 0 0;
  padding: 0;
  color: var(--color-text);
  font-size: 14px;
  font-weight: 550;
  line-height: 1.4;
  list-style: none;
}

.trust li {
  display: inline-flex;
  align-items: center;
}

.trust li + li::before {
  content: "";
  width: 3px;
  height: 3px;
  flex: 0 0 3px;
  margin: 0 12px;
  border-radius: var(--radius-round);
  background: var(--color-border);
}

.trust .tick {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  margin-right: 6px;
  fill: none;
  stroke: var(--color-success);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.chip-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 22px;
}

.chip-row + .chip-row {
  margin-top: 14px;
}

.row-label {
  flex: 0 0 auto;
  padding-right: 14px;
  border-right: 1px solid var(--color-border);
  color: var(--color-muted);
  font: 650 12px/1 var(--font-mono);
  letter-spacing: .06em;
}

.plat,
.flag-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--color-muted);
  font-size: 13.5px;
  font-weight: 550;
  line-height: 1;
}

.plat svg {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  color: var(--color-text);
}

.flag {
  width: 22px;
  height: 15px;
  flex: 0 0 22px;
  overflow: hidden;
  border-radius: 3px;
  box-shadow: inset 0 0 0 1px rgb(var(--rgb-text) / .12);
}

.fw {
  fill: var(--color-white);
}

.fr {
  fill: var(--color-flag-red);
}

.fb {
  fill: var(--color-flag-blue);
}

.fu {
  fill: var(--color-flag-uk);
}

.ln {
  fill: none;
}

.sw {
  stroke: var(--color-white);
}

.sr {
  stroke: var(--color-flag-red);
}

.hero-visual {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  padding-top: 28px;
  padding-bottom: 28px;
}

.hero-visual .hero-device-glow {
  right: -130px;
}

.panel-wrap {
  position: relative;
  width: 560px;
}

.spark {
  position: absolute;
  top: -22px;
  right: -14px;
  width: 36px;
  height: 36px;
  fill: none;
  stroke: var(--color-text);
  stroke-width: 1.5;
  stroke-linecap: round;
}

.hero-visual .panel {
  position: relative;
  width: 560px;
  height: 448px;
  padding: 28px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-panel);
  box-shadow: var(--shadow-card), inset 0 1px 0 var(--color-white);
  transform: rotate(-1.5deg);
}

.screw {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: var(--radius-round);
  background: var(--color-panel-soft);
  box-shadow: inset 0 1px 2px rgb(var(--rgb-text) / .28), 0 1px 0 var(--color-white);
}

.screw::after {
  content: "";
  position: absolute;
  left: 2px;
  right: 2px;
  top: 4px;
  height: 1px;
  background: rgb(var(--rgb-text) / .3);
}

.screw-tl {
  top: 9px;
  left: 9px;
}

.screw-tr {
  top: 9px;
  right: 9px;
}

.screw-bl {
  bottom: 9px;
  left: 9px;
}

.screw-br {
  right: 9px;
  bottom: 9px;
}

.panel-head {
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.panel-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 650;
  line-height: 1;
}

.oi {
  display: inline-flex;
  align-items: center;
  padding: 4px 7px;
  border-radius: var(--radius-small);
  background: var(--color-panel-soft);
  color: var(--color-muted);
  font: 800 11px/1 var(--font-mono);
  letter-spacing: .08em;
}

.oi em {
  color: var(--color-accent);
  font-style: normal;
}

.panel-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 11px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-round);
  background: var(--color-panel-soft);
  color: var(--color-text);
  font-size: 12.5px;
  font-weight: 650;
  line-height: 1;
}

.st-dot {
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-radius: var(--radius-round);
  background: var(--color-success);
  box-shadow: 0 0 0 3px rgb(var(--rgb-text) / .05);
}

.panel-body {
  position: relative;
  height: 340px;
}

.switch {
  position: absolute;
  left: 12px;
  top: 16px;
  z-index: 2;
  width: 112px;
  height: 184px;
  padding: 8px;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  background: var(--color-panel-soft);
  box-shadow: inset 0 2px 6px rgb(var(--rgb-text) / .16), inset 0 -1px 0 rgb(var(--rgb-white) / .7);
}

.rocker {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 2px;
  overflow: hidden;
  border-radius: var(--radius);
  background: rgb(var(--rgb-text) / .4);
  box-shadow: 0 1px 2px rgb(var(--rgb-text) / .16);
}

.face {
  display: flex;
  align-items: center;
  justify-content: center;
  font: 900 30px/1 var(--font-display);
}

.face-o {
  height: 78px;
  flex: 0 0 78px;
  background: linear-gradient(180deg, var(--color-white), var(--color-panel));
  color: var(--color-muted);
  box-shadow: inset 0 1px 0 var(--color-white), inset 0 -2px 0 rgb(var(--rgb-text) / .08);
}

.face-i {
  position: relative;
  flex: 1;
  background: linear-gradient(180deg, var(--color-accent-dark), var(--color-accent) 62%);
  color: var(--color-white);
  box-shadow: inset 0 5px 9px rgb(var(--rgb-text) / .3), inset 0 -1px 0 rgb(var(--rgb-white) / .14);
  text-shadow: 0 1px 0 rgb(var(--rgb-text) / .25);
  transform: translateY(2px);
}

.lamp {
  position: absolute;
  left: 50%;
  bottom: 14px;
  width: 10px;
  height: 10px;
  margin-left: -5px;
  border-radius: var(--radius-round);
  background: var(--color-lamp);
  box-shadow: 0 0 0 3px rgb(var(--rgb-white) / .22), 0 0 0 8px rgb(var(--rgb-white) / .08), 0 0 14px 4px rgb(var(--rgb-white) / .4);
}

.sw-caption {
  position: absolute;
  left: 12px;
  top: 208px;
  z-index: 2;
  width: 112px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--color-accent);
  font-size: 12px;
  font-weight: 650;
  line-height: 1;
}

.sw-caption i {
  width: 6px;
  height: 6px;
  flex: 0 0 6px;
  border-radius: var(--radius-round);
  background: var(--color-accent);
  box-shadow: 0 0 0 3px rgb(var(--rgb-accent) / .16);
}

.route-svg {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 504px;
  height: 340px;
  overflow: visible;
}

.route-line {
  fill: none;
  stroke: url("#homeRouteGradient");
  stroke-width: 2;
  stroke-linecap: round;
}

.route-shadow {
  fill: none;
  stroke: rgb(var(--rgb-text) / .06);
  stroke-width: 6;
  stroke-linecap: round;
}

.rg1 {
  stop-color: var(--color-text);
}

.rg2 {
  stop-color: var(--color-accent);
}

.route-end {
  fill: var(--color-accent);
}

.route-end-ring {
  fill: none;
  stroke: rgb(var(--rgb-accent) / .22);
  stroke-width: 4;
}

.routes {
  position: absolute;
  right: 0;
  top: 60px;
  z-index: 2;
  width: 200px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-panel);
  box-shadow: 0 1px 2px rgb(var(--rgb-text) / .05), 0 10px 24px -14px rgb(var(--rgb-text) / .12);
}

.routes-head {
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: 12px;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-muted);
  font-size: 12px;
  font-weight: 650;
  line-height: 1;
}

.routes-head span {
  font: 500 10.5px/1 var(--font-mono);
  letter-spacing: .06em;
}

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

.routes li {
  height: 38px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding-inline: 12px;
  color: var(--color-text);
  font-size: 13px;
  font-weight: 550;
  line-height: 1;
}

.routes li + li {
  border-top: 1px solid rgb(var(--rgb-text) / .05);
}

.routes li .name {
  flex: 1;
}

.routes li .st {
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-radius: var(--radius-round);
  background: var(--color-success);
}

.routes li.is-on {
  background: rgb(var(--rgb-accent) / .08);
}

.routes li.is-on .tag {
  color: var(--color-accent);
  font-size: 11px;
  font-weight: 650;
}

.routes .flag {
  width: 20px;
  height: 14px;
  flex-basis: 20px;
}

.panel-foot {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--color-border);
}

.foot-label {
  margin-right: 6px;
  color: var(--color-muted);
  font: 650 11px/1 var(--font-mono);
  letter-spacing: .06em;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-small);
  background: var(--color-panel-soft);
  color: var(--color-text);
  font-size: 12px;
  font-weight: 550;
  line-height: 1;
}

.chip i {
  width: 5px;
  height: 5px;
  flex: 0 0 5px;
  border-radius: var(--radius-round);
  background: var(--color-muted);
}

.chip.is-on i {
  background: var(--color-accent);
}

.panel-foot .note {
  margin-left: auto;
  color: var(--color-muted);
  font-size: 11px;
}

.feature-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 32px;
  align-items: center;
}

.feature-detail-grid p:last-of-type {
  margin-bottom: 0;
}

.feature-illustration {
  width: 220px;
  height: 140px;
  fill: none;
  stroke: var(--color-accent);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.route-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, .55fr);
  gap: 22px;
  align-items: start;
}

.route-guide {
  box-shadow: none;
}

.route-guide h3 {
  font-size: 22px;
}

.route-guide p {
  color: var(--color-muted);
}

.server-status-block {
  margin-top: 28px;
  padding: 26px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-panel);
  box-shadow: var(--shadow-card);
}

.server-status-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.server-status-head h3 {
  font-size: 22px;
}

.server-status-head p {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--color-muted);
}

.server-status {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.srv-row {
  min-width: 0;
  min-height: 54px;
  display: grid;
  grid-template-columns: 9px 26px minmax(0, 1fr) auto auto auto;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-small);
  background: var(--color-panel-soft);
  color: var(--color-text);
  font-size: 13px;
}

.srv-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-round);
  background: var(--color-success);
  box-shadow: 0 0 0 3px rgb(var(--rgb-text) / .05);
  animation: status-breathe 2.8s ease-in-out infinite;
}

.srv-flag {
  width: 24px;
  height: 16px;
  overflow: hidden;
  border-radius: 3px;
}

.srv-name {
  min-width: 0;
  overflow: hidden;
  font-weight: 650;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.srv-type {
  max-width: 100%;
  overflow: hidden;
  padding: 4px 7px;
  border-radius: var(--radius-small);
  background: var(--color-panel);
  color: var(--color-muted);
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.srv-ms,
.srv-bw {
  color: var(--color-text);
  font: 600 12px/1 var(--font-mono);
  white-space: nowrap;
}

@keyframes status-breathe {
  0%,
  100% {
    opacity: .62;
    transform: scale(.86);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
}

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

.traffic-pack-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin-top: 24px;
}

.traffic-pack-panel h3 {
  font-size: 22px;
}

.traffic-pack-panel p {
  margin-bottom: 0;
  color: var(--color-muted);
}

.pricing-explainer {
  max-width: 880px;
  margin-top: 38px;
}

.pricing-explainer h3 {
  font-size: 24px;
}

.pricing-explainer p {
  color: var(--color-muted);
}

.faq-more {
  margin: 22px 0 0;
}

.blog-heading-row {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}

.blog-heading-row > div {
  max-width: 720px;
}

@media (max-width: 1100px) {
  .hero-grid {
    gap: 36px;
  }

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

  .panel-wrap,
  .hero-visual .panel {
    width: 520px;
  }

  .hero-visual .panel {
    height: 416px;
  }

  .panel-body {
    height: 308px;
  }

  .route-svg {
    width: 464px;
    height: 308px;
  }

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

@media (max-width: 980px) {
  .hero {
    min-height: auto;
    padding-top: 40px;
    padding-bottom: 50px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-visual {
    justify-content: flex-start;
    padding-top: 0;
    padding-bottom: 0;
  }

  .hero-visual .hero-device-glow {
    display: none;
  }

  .feature-detail-grid {
    grid-template-columns: 1fr;
  }

  .feature-illustration {
    width: min(100%, 220px);
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 40px;
  }

  .br-lg {
    display: none;
  }

  .hero-visual .panel {
    width: 100%;
    max-width: 560px;
    height: auto;
    transform: none;
  }

  .panel-wrap {
    width: 100%;
    max-width: 560px;
  }

  .spark {
    display: none;
  }

  .panel-body {
    min-height: 300px;
    height: auto;
  }

  .route-svg {
    width: 100%;
    height: 100%;
  }

  .routes li:nth-child(n+4) {
    display: none;
  }

  .panel-foot {
    position: static;
    margin-top: 20px;
    flex-wrap: wrap;
  }

  .panel-foot .note {
    width: 100%;
    margin-left: 0;
  }

  .server-status {
    grid-template-columns: 1fr;
  }

  .server-status-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .traffic-pack-panel {
    grid-template-columns: 1fr;
  }

  .blog-heading-row {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .hero {
    padding-top: 28px;
  }

  .hero h1 {
    font-size: clamp(32px, 10vw, 40px);
  }

  .cta-row .btn {
    width: 100%;
  }

  .trust {
    display: grid;
    gap: 8px;
  }

  .trust li + li::before {
    display: none;
  }

  .chip-row {
    gap: 12px;
  }

  .row-label {
    width: 100%;
    padding: 0 0 8px;
    border-right: 0;
    border-bottom: 1px solid var(--color-border);
  }

  .hero-visual .panel {
    padding: 18px;
  }

  .panel-title > span:last-child {
    display: none;
  }

  .switch {
    left: 0;
    transform: scale(.86);
    transform-origin: top left;
  }

  .sw-caption {
    left: 0;
    top: 190px;
  }

  .routes {
    right: 0;
    width: 178px;
  }

  .chip:nth-of-type(n+3) {
    display: none;
  }

  .srv-row {
    grid-template-columns: 9px 24px minmax(0, 1fr) auto;
  }

  .srv-type,
  .srv-bw {
    display: none;
  }
}

@media (max-width: 380px) {
  .panel-title {
    font-size: 12px;
  }

  .panel-pill {
    padding-inline: 8px;
  }

  .routes {
    width: 164px;
  }

  .routes li {
    padding-inline: 9px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .srv-dot {
    animation: none;
    opacity: 1;
    transform: none;
  }
}