:root {
  --bg: #07111f;
  --bg-soft: #0b1728;
  --surface: #0e1b2d;
  --surface-light: #f5f8fb;
  --white: #f8fbff;
  --ink: #0c1726;
  --muted: #91a0b5;
  --muted-dark: #627187;
  --line: rgba(255, 255, 255, 0.1);
  --line-dark: #dce4ec;
  --mint: #6df2c1;
  --mint-dark: #14b985;
  --blue: #6ea8ff;
  --container: 1180px;
  --radius: 20px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--white);
  font-family: "DM Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

svg {
  display: block;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.page-glow {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(10px);
}

.page-glow--one {
  top: -300px;
  left: 55%;
  width: 680px;
  height: 680px;
  background: radial-gradient(circle, rgba(55, 140, 211, 0.17), transparent 68%);
}

.page-glow--two {
  top: 240px;
  right: -280px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(37, 223, 161, 0.09), transparent 68%);
}

.site-header {
  position: relative;
  z-index: 30;
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: "Manrope", sans-serif;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.6px;
}

.brand > span:last-child > span {
  color: var(--mint);
}

.brand-mark {
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  border: 1px solid rgba(109, 242, 193, 0.35);
  border-radius: 10px;
  background: rgba(109, 242, 193, 0.08);
}

.brand-mark svg {
  width: 26px;
  fill: none;
  stroke: var(--mint);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.3;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.main-nav > a:not(.button) {
  color: #aab6c6;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.main-nav > a:not(.button):hover {
  color: var(--white);
}

.menu-toggle {
  display: none;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 24px;
  border: 0;
  border-radius: 11px;
  font: 700 14px/1 "DM Sans", sans-serif;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

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

.button svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

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

.button--outline {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.03);
}

.button--outline:hover {
  border-color: rgba(109, 242, 193, 0.5);
}

.button--primary {
  background: var(--mint);
  color: #061712;
  box-shadow: 0 12px 30px rgba(31, 209, 150, 0.16);
}

.hero {
  position: relative;
  z-index: 1;
  padding: 92px 0 90px;
}

.hero-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 88px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 23px;
  color: #a7b4c4;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.status-dot {
  position: relative;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 5px rgba(109, 242, 193, 0.1);
}

.hero h1,
.section-heading h2,
.pricing-heading h2,
.infra-copy h2,
.faq-intro h2,
.cta-card h2 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  letter-spacing: -2.7px;
}

.hero h1 {
  max-width: 660px;
  font-size: clamp(49px, 5.3vw, 74px);
  line-height: 1.06;
}

.hero h1 span {
  color: var(--mint);
}

.hero-lead {
  max-width: 570px;
  margin: 24px 0 31px;
  color: #99a8ba;
  font-size: 17px;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 600;
}

.text-link span {
  color: var(--mint);
  font-size: 17px;
}

.hero-trust {
  display: flex;
  gap: 0;
  margin-top: 53px;
}

.hero-trust > div {
  display: flex;
  min-width: 125px;
  flex-direction: column;
  padding-right: 28px;
  margin-right: 28px;
  border-right: 1px solid var(--line);
}

.hero-trust > div:last-child {
  margin: 0;
  border: 0;
}

.hero-trust strong {
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  font-weight: 700;
}

.hero-trust span {
  margin-top: 5px;
  color: #718096;
  font-size: 11px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  min-width: 0;
}

.server-card {
  position: relative;
  padding: 25px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(22, 42, 65, 0.92), rgba(8, 21, 36, 0.96)),
    var(--surface);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.27);
}

.server-card::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 70%;
  height: 60%;
  background: radial-gradient(circle at top right, rgba(90, 173, 255, 0.12), transparent 66%);
  content: "";
}

.server-card__top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.server-card__top > div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.server-label {
  color: #708198;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.4px;
}

.server-card__top strong {
  font: 600 17px/1.2 "Manrope", sans-serif;
}

.online-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border: 1px solid rgba(109, 242, 193, 0.16);
  border-radius: 20px;
  background: rgba(109, 242, 193, 0.07);
  color: var(--mint);
  font-size: 10px;
  font-weight: 700;
}

.online-badge i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mint);
}

.server-orbit {
  position: relative;
  display: grid;
  height: 225px;
  place-items: center;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(119, 162, 204, 0.13);
  border-radius: 50%;
}

.orbit--outer {
  width: 218px;
  height: 218px;
}

.orbit--inner {
  width: 150px;
  height: 150px;
  border-style: dashed;
}

.server-core {
  display: grid;
  width: 92px;
  height: 92px;
  place-items: center;
  border: 1px solid rgba(109, 242, 193, 0.28);
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, #1d5348, #0e292a 68%);
  box-shadow:
    0 0 50px rgba(58, 232, 173, 0.18),
    inset 0 0 30px rgba(109, 242, 193, 0.05);
}

.server-core svg {
  width: 51px;
  fill: none;
  stroke: var(--mint);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.orbit-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 15px var(--blue);
}

.orbit-dot--one {
  top: 48px;
  right: 115px;
}

.orbit-dot--two {
  bottom: 46px;
  left: 112px;
  width: 6px;
  height: 6px;
  background: var(--mint);
}

.usage {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 19px;
  padding: 17px 18px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  background: rgba(5, 15, 27, 0.53);
}

.usage-row {
  display: flex;
  justify-content: space-between;
  color: #75869c;
  font-size: 9px;
}

.usage-row strong {
  color: #cbd5e1;
  font-size: 9px;
}

.progress {
  height: 4px;
  overflow: hidden;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.08);
}

.progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--mint);
}

.progress--blue span {
  background: var(--blue);
}

.server-location {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 17px;
}

.server-location svg {
  width: 26px;
  fill: none;
  stroke: #7d91a8;
  stroke-width: 1.5;
}

.server-location > div {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 2px;
}

.server-location span {
  color: #6f8095;
  font-size: 9px;
}

.server-location strong {
  font-size: 12px;
}

.server-location .latency {
  padding: 5px 8px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.04);
  color: #9eacbd;
}

.float-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(16, 32, 51, 0.92);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(14px);
}

.float-card--shield {
  right: -39px;
  bottom: 80px;
  gap: 10px;
  padding: 12px 15px;
}

.float-card--shield svg {
  width: 25px;
  fill: rgba(109, 242, 193, 0.07);
  stroke: var(--mint);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.float-card--shield div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.float-card--shield strong {
  font-size: 10px;
}

.float-card--shield span {
  color: #6d7d91;
  font-size: 8px;
}

.float-card--speed {
  top: 91px;
  left: -28px;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  padding: 12px 16px;
}

.float-card--speed span {
  color: #718298;
  font-size: 8px;
  letter-spacing: 1px;
}

.float-card--speed strong {
  color: var(--blue);
  font: 700 14px/1 "Manrope", sans-serif;
}

.logo-strip {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(9, 22, 37, 0.66);
}

.logo-strip .container {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
}

.logo-strip .container > span {
  color: #5e6e83;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.6px;
}

.tech-list {
  display: flex;
  align-items: center;
  gap: 27px;
}

.tech-list strong {
  color: #8d9caf;
  font: 600 15px/1 "Manrope", sans-serif;
}

.tech-list i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #34455a;
}

.section {
  padding: 118px 0;
}

#keunggulan,
.faq-section {
  background: var(--surface-light);
  color: var(--ink);
}

.section-heading {
  display: grid;
  align-items: end;
  grid-template-columns: 1fr 0.65fr;
  gap: 80px;
  margin-bottom: 60px;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 17px;
  color: var(--mint-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.8px;
}

.section-heading h2,
.pricing-heading h2,
.infra-copy h2,
.faq-intro h2,
.cta-card h2 {
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1.12;
}

.section-heading p,
.pricing-heading p,
.infra-copy > p,
.faq-intro > p {
  margin: 0;
  color: var(--muted-dark);
  font-size: 15px;
  line-height: 1.75;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.feature-card {
  position: relative;
  min-height: 300px;
  padding: 34px 29px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  background: white;
}

.feature-card--accent {
  background: var(--bg-soft);
  color: white;
}

.feature-icon {
  display: grid;
  width: 45px;
  height: 45px;
  margin-bottom: 45px;
  place-items: center;
  border-radius: 11px;
  background: #e9f1f5;
  color: #168666;
}

.feature-card--accent .feature-icon {
  background: rgba(109, 242, 193, 0.1);
  color: var(--mint);
}

.feature-icon svg {
  width: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.feature-number {
  position: absolute;
  top: 35px;
  right: 28px;
  color: #afbbc7;
  font: 600 10px/1 "Manrope", sans-serif;
}

.feature-card--accent .feature-number {
  color: #526275;
}

.feature-card h3 {
  margin: 0 0 13px;
  font: 700 18px/1.3 "Manrope", sans-serif;
  letter-spacing: -0.4px;
}

.feature-card p {
  margin: 0;
  color: #69788c;
  font-size: 13px;
  line-height: 1.65;
}

.feature-card--accent p {
  color: #8696aa;
}

.pricing-section {
  background: #07111f;
}

.pricing-heading {
  max-width: 640px;
  margin: 0 auto 26px;
  text-align: center;
}

.pricing-heading p {
  max-width: 480px;
  margin: 20px auto 0;
  color: #8796a9;
}

.billing-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 42px;
  color: #a7b3c2;
  font-size: 12px;
}

.billing-pill {
  padding: 5px 9px;
  border-radius: 20px;
  background: rgba(109, 242, 193, 0.1);
  color: var(--mint);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

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

.price-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 27px 25px 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 17px;
  background: #0d1929;
  transition:
    border-color 0.25s ease,
    transform 0.25s ease;
}

.price-card:hover {
  transform: translateY(-4px);
  border-color: rgba(109, 242, 193, 0.35);
}

.price-card--popular {
  border-color: var(--mint);
  background:
    linear-gradient(180deg, rgba(109, 242, 193, 0.07), transparent 34%),
    #0d1929;
}

.popular-label {
  position: absolute;
  top: 0;
  left: 50%;
  padding: 6px 13px;
  transform: translate(-50%, -50%);
  border-radius: 20px;
  background: var(--mint);
  color: #07150f;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 1px;
  white-space: nowrap;
}

.plan-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.plan-top span {
  color: #506177;
  font: 600 10px/1 "Manrope", sans-serif;
}

.plan-top h3 {
  order: -1;
  margin: 0;
  font: 700 17px/1 "Manrope", sans-serif;
}

.price {
  display: flex;
  align-items: flex-start;
  margin: 23px 0 10px;
}

.price sup {
  margin: 9px 3px 0 0;
  color: var(--mint);
  font-size: 14px;
  font-weight: 700;
}

.price strong {
  font: 700 39px/1 "Manrope", sans-serif;
  letter-spacing: -2px;
}

.price span {
  align-self: flex-end;
  margin: 0 0 4px 5px;
  color: #687991;
  font-size: 10px;
}

.plan-caption {
  min-height: 38px;
  margin: 0 0 21px;
  color: #718198;
  font-size: 11px;
  line-height: 1.55;
}

.price-card ul {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 12px;
  padding: 20px 0 0;
  margin: 0 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 18px;
  color: #8695a8;
  font-size: 11px;
}

.price-card li::before {
  position: absolute;
  top: 4px;
  left: 1px;
  width: 6px;
  height: 3px;
  transform: rotate(-45deg);
  border-bottom: 1.5px solid var(--mint);
  border-left: 1.5px solid var(--mint);
  content: "";
}

.price-card li b {
  color: #e1e7ef;
  font-weight: 600;
}

.button--plan {
  min-height: 42px;
  justify-content: space-between;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
  color: #c8d1dc;
  font-size: 11px;
}

.button--plan:hover {
  border-color: var(--mint);
}

.button--plan-accent {
  border-color: var(--mint);
  background: var(--mint);
  color: #07150f;
}

.pricing-footnote {
  margin: 27px 0 0;
  color: #5f7187;
  font-size: 10px;
  text-align: center;
}

.infrastructure {
  background: #0a1625;
}

.infra-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 85px;
}

.infra-copy > p {
  max-width: 480px;
  margin: 23px 0 37px;
  color: #8a99ab;
}

.infra-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px 30px;
}

.infra-specs div {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.infra-specs span,
.map-stat span {
  color: #586a80;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 1.2px;
}

.infra-specs strong {
  color: #c4cfdb;
  font: 600 12px/1.4 "Manrope", sans-serif;
}

.map-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background:
    radial-gradient(circle at 55% 47%, rgba(55, 168, 140, 0.12), transparent 26%),
    #0d1c2d;
}

.map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 95%);
}

.map-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: rgba(106, 144, 173, 0.15);
  stroke-dasharray: 4 6;
}

.map-lines circle {
  fill: var(--mint);
  stroke: none;
}

.location-pin {
  position: absolute;
  top: 45%;
  left: 56.3%;
}

.pin-core {
  position: absolute;
  inset: -5px;
  width: 11px;
  height: 11px;
  border: 3px solid #132b2d;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 16px var(--mint);
}

.pin-ripple {
  position: absolute;
  inset: -23px;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(109, 242, 193, 0.25);
  border-radius: 50%;
  animation: pulse 2.4s ease-out infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.65);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.45);
    opacity: 0;
  }
}

.location-card {
  position: absolute;
  top: 50%;
  left: 42%;
  display: flex;
  width: 190px;
  flex-direction: column;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: rgba(8, 20, 34, 0.9);
  box-shadow: 0 17px 35px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
}

.location-card span {
  margin-bottom: 8px;
  color: var(--mint);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 1px;
}

.location-card strong {
  font: 600 13px/1.3 "Manrope", sans-serif;
}

.location-card small {
  margin-top: 4px;
  color: #66788e;
  font-size: 8px;
}

.map-stat {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.map-stat b {
  color: #c4cfda;
  font: 600 12px/1 "Manrope", sans-serif;
}

.map-stat--one {
  top: 44px;
  left: 38px;
}

.map-stat--two {
  right: 38px;
  bottom: 35px;
  text-align: right;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.68fr 1fr;
  gap: 100px;
}

.faq-intro {
  align-self: start;
  position: sticky;
  top: 35px;
}

.faq-intro > p {
  max-width: 340px;
  margin: 22px 0 25px;
}

.faq-intro .text-link {
  color: var(--ink);
}

.accordion {
  border-top: 1px solid var(--line-dark);
}

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

.faq-item button {
  display: flex;
  width: 100%;
  min-height: 75px;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: 600 15px/1.4 "Manrope", sans-serif;
  text-align: left;
  cursor: pointer;
}

.faq-item button span {
  position: relative;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  margin-left: 20px;
  border: 1px solid #cfd9e2;
  border-radius: 50%;
}

.faq-item button span::before,
.faq-item button span::after {
  position: absolute;
  top: 11px;
  left: 7px;
  width: 8px;
  height: 1px;
  background: #526477;
  content: "";
  transition: transform 0.25s ease;
}

.faq-item button span::after {
  transform: rotate(90deg);
}

.faq-item button[aria-expanded="true"] span::after {
  transform: rotate(0);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}

.faq-answer p {
  overflow: hidden;
  margin: 0;
  color: var(--muted-dark);
  font-size: 13px;
  line-height: 1.7;
}

.faq-item button[aria-expanded="true"] + .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item button[aria-expanded="true"] + .faq-answer p {
  padding-bottom: 23px;
}

.cta-section {
  padding: 80px 0;
  background: var(--surface-light);
}

.cta-card {
  display: grid;
  align-items: end;
  grid-template-columns: 1fr 0.55fr;
  gap: 80px;
  padding: 68px 72px;
  overflow: hidden;
  border-radius: 24px;
  background:
    radial-gradient(circle at 75% 20%, rgba(109, 242, 193, 0.12), transparent 30%),
    linear-gradient(120deg, #0a1726, #0c2030);
  box-shadow: 0 28px 60px rgba(9, 30, 47, 0.13);
}

.cta-action p {
  margin: 0 0 21px;
  color: #8e9daf;
  font-size: 13px;
  line-height: 1.6;
}

.button--light {
  background: white;
  color: #0a1725;
}

.site-footer {
  padding: 67px 0 25px;
  background: #06101c;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 80px;
  padding-bottom: 58px;
}

.footer-main > div:first-child > p {
  max-width: 310px;
  margin: 19px 0 0;
  color: #6f7f94;
  font-size: 12px;
  line-height: 1.6;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.footer-links > div {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.footer-links span {
  margin-bottom: 3px;
  color: #506176;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 1.4px;
}

.footer-links a {
  color: #8e9bad;
  font-size: 11px;
}

.footer-links a:hover {
  color: var(--mint);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 23px;
  border-top: 1px solid var(--line);
  color: #4d5f74;
  font-size: 9px;
}

.toast {
  position: fixed;
  z-index: 100;
  right: 22px;
  bottom: 22px;
  padding: 13px 17px;
  transform: translateY(20px);
  border: 1px solid rgba(109, 242, 193, 0.23);
  border-radius: 10px;
  background: #102437;
  color: #dce8ee;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.28);
  font-size: 12px;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

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

.reveal--delay {
  transition-delay: 0.12s;
}

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

@media (max-width: 1050px) {
  .main-nav {
    gap: 22px;
  }

  .hero-grid {
    gap: 50px;
  }

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

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

  .infra-grid {
    gap: 50px;
  }
}

@media (max-width: 820px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .menu-toggle {
    position: relative;
    z-index: 35;
    display: block;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.03);
  }

  .menu-toggle span {
    position: absolute;
    left: 12px;
    width: 16px;
    height: 1.5px;
    background: white;
    transition: transform 0.25s ease;
  }

  .menu-toggle span:first-child {
    top: 16px;
  }

  .menu-toggle span:last-child {
    top: 23px;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    top: 20px;
    transform: rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    top: 20px;
    transform: rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    inset: 0;
    z-index: 30;
    display: flex;
    transform: translateY(-100%);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 25px;
    padding: 70px 32px;
    background: rgba(6, 16, 28, 0.98);
    opacity: 0;
    pointer-events: none;
    transition:
      transform 0.3s ease,
      opacity 0.3s ease;
  }

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

  .main-nav > a:not(.button) {
    color: white;
    font: 700 28px/1.2 "Manrope", sans-serif;
  }

  .main-nav .button {
    margin-top: 12px;
  }

  .hero {
    padding: 68px 0 85px;
  }

  .hero-grid,
  .section-heading,
  .infra-grid,
  .faq-grid,
  .cta-card,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 70px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-lead {
    margin-inline: auto;
  }

  .hero-actions,
  .hero-trust {
    justify-content: center;
  }

  .hero-visual {
    width: min(100%, 520px);
    margin-inline: auto;
  }

  .logo-strip .container {
    min-height: 105px;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
  }

  .section {
    padding: 88px 0;
  }

  .section-heading {
    gap: 20px;
  }

  .section-heading p {
    max-width: 550px;
  }

  .infra-grid {
    gap: 50px;
  }

  .faq-grid {
    gap: 45px;
  }

  .faq-intro {
    position: static;
  }

  .cta-card {
    gap: 35px;
  }

  .cta-action {
    max-width: 400px;
  }

  .footer-main {
    gap: 45px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .nav-wrap {
    min-height: 68px;
  }

  .hero {
    padding-top: 54px;
  }

  .eyebrow {
    margin-bottom: 17px;
    font-size: 9px;
  }

  .hero h1 {
    font-size: 43px;
    letter-spacing: -2.2px;
  }

  .hero-lead {
    margin-top: 20px;
    font-size: 15px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 20px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-trust {
    margin-top: 42px;
  }

  .hero-trust > div {
    min-width: 0;
    flex: 1;
    padding-right: 11px;
    margin-right: 11px;
  }

  .hero-trust strong {
    font-size: 15px;
  }

  .hero-trust span {
    font-size: 8px;
  }

  .server-card {
    padding: 19px;
  }

  .server-orbit {
    height: 205px;
  }

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

  .float-card--speed {
    top: 83px;
    left: -7px;
  }

  .float-card--shield {
    right: -7px;
    bottom: 64px;
  }

  .tech-list {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    gap: 13px 16px;
  }

  .tech-list strong {
    font-size: 12px;
  }

  .section-heading h2,
  .pricing-heading h2,
  .infra-copy h2,
  .faq-intro h2,
  .cta-card h2 {
    font-size: 37px;
    letter-spacing: -2px;
  }

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

  .feature-card {
    min-height: 255px;
  }

  .price-card {
    padding: 29px 25px 24px;
  }

  .plan-caption {
    min-height: 0;
  }

  .infra-specs {
    grid-template-columns: 1fr;
  }

  .map-card {
    min-height: 350px;
  }

  .location-card {
    left: 25%;
  }

  .map-stat--one {
    top: 28px;
    left: 25px;
  }

  .map-stat--two {
    right: 25px;
    bottom: 25px;
  }

  .faq-item button {
    min-height: 72px;
    font-size: 14px;
  }

  .cta-section {
    padding: 30px 0;
  }

  .cta-card {
    padding: 43px 27px;
  }

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

  .footer-links {
    gap: 25px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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