:root {
  --bg: #f7f9fc;
  --surface: #ffffff;
  --muted: #5a6472;
  --text: #0d1726;
  --primary: #1e6bff;
  --primary-2: #0b4db3;
  --accent: #66b8ff;
  --border: #e4e9f1;
  --shadow: 0 10px 30px rgba(13, 23, 38, 0.08);
  --radius: 12px;
  --radius-lg: 16px;
  --gradient: linear-gradient(120deg, #1e6bff, #34b1ff);
  --font: 'Manrope', 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --ink: #0f172a;
  --ink-muted: #64748b;
  --card-border: rgba(15, 23, 42, 0.08);
  --card-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
  --card-shadow-hover: 0 18px 38px rgba(15, 23, 42, 0.09);
  --hero-padding-top: 110px;
  --hero-padding-bottom: 140px;
  --hero-min-height: 75vh;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

p {
  color: var(--muted);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

h1, h2, h3, h4, h5 {
  margin: 0;
  color: var(--text);
  letter-spacing: -0.01em;
}

main {
  overflow: hidden;
}

.container {
  width: min(1200px, 94%);
  margin: 0 auto;
}

.section {
  padding: 80px 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-head .pill {
  margin-bottom: 10px;
}

.section-head h2 {
  font-size: 32px;
  margin-bottom: 12px;
}

.section-head p {
  margin: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  font-weight: 600;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.btn.primary {
  background: var(--gradient);
  color: #fff;
  border-color: transparent;
}

.btn.ghost {
  background: #fff;
  border-color: var(--border);
  color: var(--text);
}

.btn.outline {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}

.btn.soft {
  background: rgba(30, 107, 255, 0.1);
  color: var(--primary);
  border-color: transparent;
}

.badge-soft, .pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(30, 107, 255, 0.08);
  color: var(--primary);
  padding: 7px 12px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 13px;
}

.pill.neon {
  background: linear-gradient(120deg, rgba(102, 184, 255, 0.2), rgba(30, 107, 255, 0.25));
  color: var(--text);
}

.pill.ghost {
  background: #fff;
  border: 1px solid var(--border);
  color: var(--text);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

/* HERO BACKGROUND FIX */
.hero-section {
  padding: var(--hero-padding-top) 0 var(--hero-padding-bottom);
}

.hero {
  position: relative;
  padding: var(--hero-padding-top) 0 var(--hero-padding-bottom);
  color: #eaf2ff;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(80% 50% at 50% 18%, rgba(7, 46, 122, 0.28), rgba(2, 18, 52, 0.14) 60%, rgba(1, 3, 10, 0) 90%),
    linear-gradient(180deg, #01030a 0%, #021334 46%, #001a3d 100%);
  min-height: var(--hero-min-height);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}


.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: -12% -16% -10%;
  pointer-events: none;
  background-repeat: repeat;
  background-size: 340px 320px;
}


.hero::before {
  background-image: radial-gradient(2px 2px at 12% 18%, rgba(204, 230, 255, 0.8), transparent),
    radial-gradient(1.8px 1.8px at 30% 10%, rgba(204, 230, 255, 0.65), transparent),
    radial-gradient(2.2px 2.2px at 62% 18%, rgba(204, 230, 255, 0.62), transparent),
    radial-gradient(1.9px 1.9px at 48% 52%, rgba(204, 230, 255, 0.5), transparent);
  animation: drift-left 20s linear infinite alternate, star-twinkle 10s ease-in-out 2s infinite;
  opacity: 0.62;
  z-index: 0;
}


.hero::after {
  background-image: radial-gradient(1.8px 1.8px at 18% 30%, rgba(204, 230, 255, 0.72), transparent),
    radial-gradient(2px 2px at 42% 20%, rgba(204, 230, 255, 0.58), transparent),
    radial-gradient(1.8px 1.8px at 72% 34%, rgba(204, 230, 255, 0.5), transparent),
    radial-gradient(1.6px 1.6px at 30% 72%, rgba(204, 230, 255, 0.48), transparent);
  animation: drift-right 18s linear infinite alternate, star-twinkle 8s ease-in-out 5s infinite;
  opacity: 0.54;
  z-index: 0;
}

.hero .pill,
.hero .badge-soft {
  background: rgba(255, 255, 255, 0.1);
  color: #f4f9ff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 30px rgba(86, 172, 255, 0.32);
}

/* REMOVE PLANET - CLEAN BACKDROP */
.hero-cosmo {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.hero-sheen {
  position: absolute;
  inset: -10% -14% -6% -14%;
  background: radial-gradient(90% 110% at 52% -8%, rgba(74, 152, 255, 0.2), rgba(30, 94, 186, 0.1) 42%, rgba(6, 14, 34, 0.24) 68%, rgba(2, 6, 18, 0.72) 100%),
    linear-gradient(140deg, rgba(46, 138, 255, 0.22) 12%, rgba(20, 70, 170, 0.16) 40%, rgba(4, 10, 24, 0.4) 78%);
  filter: saturate(1.06);
  opacity: 0.9;
  z-index: 0;
}

/* HERO STARS ANIMATION */
.hero-stars {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

@keyframes drift-left {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-60px, -25px, 0); }
}

@keyframes drift-right {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(60px, 25px, 0); }
}

@keyframes star-twinkle {
  0%, 80%, 100% { opacity: 0.3; filter: blur(0); }
  40% { opacity: 1; filter: drop-shadow(0 0 8px #2f7bff); }
}

.hero-shell {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(34px, 4.4vw, 48px);
  margin: 10px 0 8px;
  letter-spacing: -0.4px;
  color: #f8fbff;
  line-height: 1.04;
  max-width: 620px;
}

.hero-heading {
  --hero-title-size: clamp(34px, 4.4vw, 48px);
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  margin: 10px 0 8px;
  letter-spacing: -0.4px;
  color: #f8fbff;
  line-height: 1.04;
  max-width: 620px;
}

.hero-title {
  font-size: var(--hero-title-size);
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.hero-animated-line {
  font-size: var(--hero-title-size);
  font-weight: 700;
  color: #fff;
  display: inline-flex;
  align-items: center;
}

#typed-text {
  display: inline-block;
  overflow: visible;
  white-space: nowrap;
}

.typed-caret {
  display: inline-block;
  width: 2px;
  height: 1em;
  background: rgba(255, 255, 255, 0.85);
  margin-left: 4px;
  vertical-align: bottom;
  animation: caret-blink 1s steps(2, start) infinite;
}

@keyframes caret-blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

.hero-copy p {
  color: rgba(235, 243, 255, 0.92);
  max-width: 620px;
  font-size: 18px;
  margin-top: 6px;
}

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

.hero-subnav {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* HERO CTA ENHANCE */
.hero .btn {
  box-shadow: 0 10px 28px rgba(20, 74, 146, 0.28);
}

.hero .btn.outline {
  border-color: rgba(255, 255, 255, 0.24);
  color: #eef4ff;
}

.hero .btn.primary:hover {
  box-shadow: 0 14px 36px rgba(80, 182, 255, 0.46), 0 0 0 1px rgba(118, 202, 255, 0.55);
  filter: saturate(1.05);
}

.hero .btn.outline:hover {
  border-color: rgba(118, 202, 255, 0.55);
  box-shadow: 0 10px 26px rgba(46, 120, 200, 0.28), 0 0 0 1px rgba(118, 202, 255, 0.4);
  color: #f3f8ff;
}

.hero-panel {
  position: relative;
  background: linear-gradient(155deg, rgba(8, 16, 36, 0.7), rgba(12, 34, 80, 0.5));
  backdrop-filter: blur(16px);
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 28px 120px rgba(0, 10, 30, 0.6), 0 16px 44px rgba(0, 16, 48, 0.45);
  color: #e9f4ff;
  border: 1px solid rgba(146, 210, 255, 0.32);
  overflow: hidden;
}

.hero-panel h3 { color: #f6fbff; }

.hero-panel p,
.hero-panel span,
.hero-panel strong {
  color: rgba(230, 240, 255, 0.92);
}

.hero-panel .table-like .row strong {
  color: rgba(244, 248, 255, 0.96);
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 16px;
  background: linear-gradient(140deg, rgba(104, 188, 255, 0.08), rgba(74, 150, 255, 0.06) 40%, rgba(22, 54, 112, 0.08));
  pointer-events: none;
  mix-blend-mode: screen;
}

.hero-panel .table-like .row {
  padding: 12px 0;
}

.hero .table-like .row {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.table-like .row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
}

.table-like .row:last-child {
  border-bottom: none;
}

/* VPS HERO VARIANT */

.vps-hero {
  background: radial-gradient(80% 50% at 50% 18%, rgba(104, 68, 160, 0.26), rgba(18, 10, 30, 0) 70%),
    linear-gradient(180deg, #0b0714 0%, #110d24 46%, #0d0a1c 100%);
  color: #f5eeff;
  overflow: hidden;
  padding: var(--hero-padding-top) 0 var(--hero-padding-bottom);
  min-height: var(--hero-min-height);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.vps-hero::before {
  background-image: radial-gradient(2px 2px at 12% 18%, rgba(232, 214, 255, 0.85), transparent),
    radial-gradient(1.8px 1.8px at 30% 10%, rgba(198, 170, 255, 0.72), transparent),
    radial-gradient(2.2px 2.2px at 62% 18%, rgba(210, 180, 255, 0.7), transparent),
    radial-gradient(1.9px 1.9px at 48% 52%, rgba(188, 158, 255, 0.54), transparent);
  opacity: 0.68;
}

.vps-hero::after {
  background-image: radial-gradient(1.8px 1.8px at 18% 30%, rgba(232, 214, 255, 0.78), transparent),
    radial-gradient(2px 2px at 42% 20%, rgba(198, 170, 255, 0.64), transparent),
    radial-gradient(1.8px 1.8px at 72% 34%, rgba(188, 158, 255, 0.56), transparent),
    radial-gradient(1.6px 1.6px at 30% 72%, rgba(210, 180, 255, 0.5), transparent);
  opacity: 0.6;
}

.vps-hero .hero-sheen {
  background: radial-gradient(90% 110% at 52% -8%, rgba(126, 92, 206, 0.26), rgba(84, 52, 148, 0.14) 42%, rgba(16, 8, 42, 0.24) 68%, rgba(6, 2, 22, 0.72) 100%),
    linear-gradient(140deg, rgba(140, 104, 226, 0.24) 12%, rgba(84, 60, 168, 0.18) 40%, rgba(20, 10, 46, 0.42) 78%);
  filter: saturate(1.08);
}

.vps-hero .pill,
.vps-hero .badge-soft {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 0 30px rgba(156, 116, 255, 0.32);
  color: #f6f0ff;
}

.vps-panel {
  background: linear-gradient(155deg, rgba(18, 12, 40, 0.82), rgba(28, 18, 54, 0.7));
  border: 1px solid rgba(210, 180, 255, 0.32);
  box-shadow: 0 28px 120px rgba(6, 4, 18, 0.6), 0 16px 44px rgba(20, 12, 44, 0.45);
  color: #f7f3ff;
}

.vps-panel::before {
  background: linear-gradient(140deg, rgba(158, 120, 242, 0.08), rgba(116, 88, 198, 0.08) 40%, rgba(56, 36, 112, 0.12));
}

.vps-panel .table-like .row { border-bottom: 1px solid rgba(255, 255, 255, 0.1); }

@media (max-width: 980px) {
  .vps-panel { min-height: unset; }
}

.telemetry-tabs {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 10px 0 16px;
}

.telemetry-tab {
  width: 16px;
  height: 8px;
  border-radius: 4px;
  background: rgba(45, 212, 255, 0.3);
}

.telemetry-tab.telemetry-tab--active {
  background: #2dd4ff;
}

.grid {
  display: grid;
  gap: 16px;
}

.feature-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
  background: #fff;
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid var(--border);
  box-shadow: 0 12px 26px rgba(13, 23, 38, 0.06);
}

.card h3 {
  margin: 10px 0 6px;
}

.card .icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(30, 107, 255, 0.12);
  color: var(--primary);
  font-weight: 700;
}

/* WHY ICON GRID */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 10px;
}

.feature-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 20px 18px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
  box-shadow: 0 8px 20px rgba(6, 14, 28, 0.06);
}

.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(6, 14, 28, 0.1);
  border-color: rgba(30, 107, 255, 0.18);
}

.why-grid .feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: transform 180ms ease, background 180ms ease;
  box-shadow: 0 6px 14px rgba(30, 91, 255, 0.22);
}

.feature-card:hover .feature-icon {
  background: var(--primary-2);
  transform: translateY(-2px);
}

.why-grid .feature-icon svg {
  width: 28px;
  height: 28px;
}

.feature-card h3 {
  margin: 0;
  font-weight: 700;
}

.feature-card p {
  margin: 0;
  color: #6b7587;
  line-height: 1.55;
}

.feature-card > div:last-child {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}


.pricing-highlight {
  background: linear-gradient(180deg, #f8fbff 0%, #f4f7fd 55%, #f9fbff 100%);
  padding: 96px 0 44px;
}

.pricing-grid-shell {
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  margin-top: 24px;
}

.vps-plan-grid {
  max-width: 1080px;
  margin: 0 auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 26px;
}

.pricing-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin: 14px 0 22px;
}

.billing-selector {
  display: flex;
  justify-content: flex-end;
  margin: 0;
}

.billing-dropdown {
  position: relative;
  min-width: 240px;
}

.billing-dropdown__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(80, 129, 205, 0.32);
  background: #ffffff;
  color: #0f1f3a;
  font-weight: 800;
  letter-spacing: 0.01em;
  box-shadow: 0 14px 34px rgba(18, 38, 78, 0.08);
  cursor: pointer;
  transition: box-shadow 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.billing-dropdown__toggle:focus-visible {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
}

.billing-dropdown__toggle:hover {
  box-shadow: 0 16px 38px rgba(18, 38, 78, 0.12);
  transform: translateY(-1px);
}

.billing-dropdown.open .billing-dropdown__toggle {
  border-color: #2563eb;
  box-shadow: 0 18px 42px rgba(37, 99, 235, 0.18);
}

.billing-dropdown__value {
  font-size: 0.95rem;
}

.billing-dropdown__chevron {
  width: 10px;
  height: 10px;
  border-right: 2px solid #6b7b9c;
  border-bottom: 2px solid #6b7b9c;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.billing-dropdown.open .billing-dropdown__chevron {
  transform: rotate(-135deg);
}

.billing-dropdown__menu {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  min-width: 240px;
  width: 100%;
  list-style: none;
  margin: 0;
  padding: 8px;
  background: #ffffff;
  border: 1px solid rgba(80, 129, 205, 0.28);
  border-radius: 12px;
  box-shadow: 0 18px 44px rgba(18, 38, 78, 0.12);
  display: flex;
  flex-direction: column;
  gap: 6px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 5;
}

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

.billing-option {
  width: 100%;
  border: none;
  background: transparent;
  border-radius: 10px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.billing-option:hover,
.billing-option:focus-visible {
  background: #f4f7ff;
  outline: none;
}

.billing-option.active {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(37, 99, 235, 0.02));
  color: #0f1f3a;
}

.billing-option__label {
  font-weight: 800;
  color: #0f1f3a;
}

.billing-option__discount {
  color: #2f8a58;
  font-weight: 800;
  font-size: 0.9rem;
}

.pricing-toolbar .plan-toggle {
  margin: 0;
}

.launch-benefit {
  margin: 56px 0 72px;
}

.launch-benefit .launch-card--wide {
  max-width: 1100px;
  margin: 0 auto;
}

.launch-shell {
  position: relative;
  padding: clamp(22px, 4vw, 34px);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(107, 159, 255, 0.26), rgba(203, 227, 255, 0.64)),
    linear-gradient(180deg, #f9fbff 0%, #e8f1ff 100%);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 26px 78px rgba(15, 45, 110, 0.18);
  backdrop-filter: blur(12px);
}

.launch-label {
  background: rgba(255, 255, 255, 0.62);
  color: #0f2d63;
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 12px 36px rgba(77, 130, 255, 0.18);
}

.launch-heading {
  margin: 6px 0 8px;
  font-size: clamp(28px, 4vw, 36px);
  color: #0c1f3f;
  letter-spacing: -0.01em;
}

.launch-subtitle {
  margin: 0;
  color: #233c68;
  font-weight: 600;
  line-height: 1.6;
}

.launch-points {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: grid;
  gap: 12px;
}

.launch-points li {
  position: relative;
  padding-left: 22px;
  color: #1c315a;
  font-weight: 600;
  line-height: 1.55;
}

.launch-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 11px;
  height: 11px;
  border-radius: 8px;
  background: linear-gradient(135deg, #2b6bff, #8ec8ff);
  box-shadow: 0 8px 20px rgba(43, 107, 255, 0.35);
}

.launch-card {
  background: #ffffff;
  border-radius: 18px;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(224, 232, 255, 0.9);
  padding: clamp(20px, 3vw, 28px);
  backdrop-filter: blur(4px);
}

.launch-card--wide {
  display: grid;
  gap: clamp(16px, 3vw, 32px);
  grid-template-columns: minmax(0, 1.7fr) minmax(0, 1fr);
  align-items: center;
}

.launch-copy {
  display: grid;
  gap: 12px;
  max-width: 720px;
}

.launch-promo {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  align-self: stretch;
  text-align: left;
  width: 100%;
}

.promo-panel {
  width: 100%;
  max-width: 340px;
  padding: 16px 18px;
  border-radius: 14px;
  background: #f5f8ff;
  border: 1px solid rgba(126, 176, 255, 0.35);
  box-shadow: 0 12px 28px rgba(35, 60, 104, 0.08);
  display: grid;
  gap: 10px;
}

.launch-badge,
.promo-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(233, 241, 255, 0.9);
  color: #1f3c70;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 12px;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.promo-code {
  margin: 2px 0 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(120deg, #2a67f6, #7ab8ff);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  padding: 12px 18px;
  color: #ffffff;
  font-weight: 800;
  letter-spacing: 0.08em;
  font-size: 20px;
  box-shadow: 0 12px 28px rgba(42, 103, 246, 0.26);
}

.promo-helper {
  margin: 0 auto;
  color: #233c68;
  line-height: 1.55;
  font-size: 14px;
  max-width: 260px;
  text-align: center;
}

@media (max-width: 900px) {
  .launch-card--wide {
    grid-template-columns: 1fr;
  }

  .launch-promo {
    align-items: stretch;
    justify-content: flex-start;
  }

  .promo-panel {
    max-width: none;
  }
}

@keyframes orbit {
  from { transform: rotate(0deg) translateY(0); }
  to { transform: rotate(360deg) translateY(0); }
}

@keyframes pulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.12); }
}

.price-card {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid var(--card-border);
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
  padding: 20px 20px 22px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
  isolation: isolate;
}

.link-card {
  cursor: pointer;
}

.link-card:focus,
.link-card:focus-visible,
.link-card:focus-within {
  outline: 2px solid var(--primary);
  outline-offset: 4px;
}

.vps-card {
  gap: 12px;
  width: 100%;
  max-width: none;
  margin: 0;
  background: #fdfefe;
}

@media (hover: hover) {
  .price-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: var(--card-shadow-hover);
    border-color: rgba(37, 99, 235, 0.24);
    background: #ffffff;
  }
}

.plan-label {
  align-self: flex-start;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #1f2937;
  text-transform: uppercase;
}

.plan-name-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #fff;
  border: 1px solid #1d4ed8;
  border-radius: 999px;
  box-shadow: 0 6px 14px rgba(37, 99, 235, 0.18);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.plan-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #0f172a;
  color: #e5e7eb;
  padding: 6px 10px;
  border-radius: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  box-shadow: none;
  text-transform: uppercase;
}

.price-card .plan-badge {
  right: auto;
  left: 14px;
}

.discount-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #2f8a58;
  color: #f8fbff;
  padding: 6px 9px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow: 0 10px 24px rgba(34, 197, 94, 0.22);
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease;
  pointer-events: none;
}

.discount-badge.show {
  opacity: 1;
  transform: translateY(0);
}

.price-card__header {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
  padding: 6px 0 2px;
}

.price-card h3 {
  margin: 0;
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--ink);
}

.plan-subtitle {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink-muted);
  letter-spacing: 0;
}

.plan-feature-list {
  list-style: none;
  margin: 0;
  padding: 6px 0 6px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  background: #f7f8fb;
  border: 1px solid #e5e7eb;
  color: #111827;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.spec-item.muted-line {
  background: #f3f4f6;
  border-color: #e5e7eb;
  color: #1f2937;
}

.spec-icon {
  width: 18px;
  height: 18px;
  display: inline-block;
  background-repeat: no-repeat;
  background-size: 18px 18px;
  flex-shrink: 0;
}

.icon-cpu {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231a1f2c' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='5' y='5' width='14' height='14' rx='2.6'/%3E%3Crect x='9' y='9' width='6' height='6' rx='1.2'/%3E%3Cpath d='M9 2v3M15 2v3M9 19v3M15 19v3M2 9h3M2 15h3M19 9h3M19 15h3'/%3E%3C/svg%3E");
}

.icon-ram {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231a1f2c' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3.5' y='7' width='17' height='10' rx='2.2'/%3E%3Cpath d='M7 7v-2.6M12 7v-2.6M17 7v-2.6M7 19.6V17M12 19.6V17M17 19.6V17M7 10.5h10'/%3E%3C/svg%3E");
}

.icon-storage {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231a1f2c' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='5' width='16' height='14' rx='2.4'/%3E%3Cpath d='M8.5 9h7M8.5 12h5M8.5 15h3'/%3E%3C/svg%3E");
}

.icon-network {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231a1f2c' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 8h6l2 8 2-8h6'/%3E%3Cpath d='M6.6 18.5h10.8'/%3E%3Ccircle cx='8' cy='18.5' r='1.2'/%3E%3Ccircle cx='16' cy='18.5' r='1.2'/%3E%3C/svg%3E");
}

.icon-ip {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231a1f2c' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4.5' y='6' width='15' height='12' rx='2.4'/%3E%3Cpath d='M8 10h8M8 14h5'/%3E%3C/svg%3E");
}

.pricing-highlight .feature-text {
  color: var(--ink);
  font-weight: 600;
  font-size: 15px;
  line-height: 1.5;
}

.pricing-highlight .price-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding: 12px 4px 2px;
  font-weight: 700;
}

.pricing-highlight .price-amount {
  color: var(--ink);
}

.pricing-highlight .price-term {
  color: var(--ink-muted);
}

.price-list {
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 10px;
  line-height: 1.55;
}

.price-list li {
  margin: 0;
}

.pricing-highlight .section-head {
  margin-bottom: 56px;
}

.pricing-highlight .section-head p {
  margin-bottom: 22px;
}

.pricing-highlight .cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.pricing-highlight .btn.outline {
  background: rgba(30, 107, 255, 0.06);
  border-color: rgba(30, 107, 255, 0.28);
  color: var(--primary);
  border-radius: 14px;
  padding: 12px 20px;
  box-shadow: 0 10px 24px rgba(20, 74, 146, 0.12);
}

.price-card .configure-btn {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #fff;
  border: 1px solid #2563eb;
  padding: 12px 16px;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.16);
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
  width: 100%;
  margin-top: auto;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

@media (hover: hover) {
  .price-card .configure-btn:hover {
    box-shadow: 0 14px 26px rgba(37, 99, 235, 0.2);
    background: linear-gradient(135deg, #1f4fd4, #1b47c2);
    transform: translateY(-2px);
  }

  .plan-card:hover .boost-line,
  .price-card:hover .boost-line {
    border-color: rgba(34, 211, 238, 0.6);
    box-shadow: 0 16px 30px rgba(79, 70, 229, 0.24);
  }

  .plan-card:hover,
  .price-card:hover {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  }
}

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

@keyframes pulse-glow {
  0% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.32); }
  100% { box-shadow: 0 0 0 14px rgba(37, 99, 235, 0); }
}

.plan-card:hover .configure-btn,
.price-card:hover .configure-btn {
  animation: pulse-glow 1.4s ease-out forwards;
}

.plan-card,
.price-card {
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.plan-card:hover .plan-boost-pill,
.price-card:hover .plan-boost-pill {
  box-shadow: 0 10px 24px rgba(34, 211, 238, 0.28);
}

.plan-card:hover .spec-item,
.price-card:hover .spec-item {
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.plan-card:hover .spec-item.boost-line,
.price-card:hover .spec-item.boost-line {
  transform: translateY(-1px);
}

@media (max-width: 900px) {
  .launch-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .launch-benefit {
    padding: 28px;
  }
}

.pricing-highlight .btn.outline:hover {
  background: rgba(30, 107, 255, 0.12);
  border-color: rgba(30, 107, 255, 0.46);
  color: var(--primary-2);
  box-shadow: 0 12px 28px rgba(46, 120, 200, 0.18);
}

.faq-section {
  background: var(--bg);
  padding: 90px 0 70px;
}

.faq-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 32px;
}

.faq-head h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.faq-head p {
  margin: 4px 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 16px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 18px 18px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.12);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  cursor: pointer;
}

.faq-question-content {
  display: flex;
  align-items: center;
  gap: 14px;
}

.faq-question h3 {
  margin: 0;
  font-size: 18px;
  color: #0f172a;
  font-weight: 600;
  line-height: 1.45;
}

.faq-icon-badge,
.faq-icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--primary);
  border-radius: 12px;
  flex-shrink: 0;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.28);
}

.faq-icon-badge svg,
.faq-icon svg {
  width: 22px;
  height: 22px;
}

.faq-toggle {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #f1f4f9;
  color: var(--text);
  display: grid;
  place-items: center;
  font-weight: 700;
  border: 1px solid var(--border);
  transition: background 0.2s ease, color 0.2s ease;
}

.faq-item.active .faq-toggle {
  background: var(--gradient);
  color: #fff;
  border-color: transparent;
}

.faq-answer {
  margin-top: 12px;
  color: var(--muted);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.25s ease;
}

.faq-item.active .faq-answer {
  max-height: 240px;
  opacity: 1;
}

.payment-methods {
  padding: 72px 0;
  text-align: center;
}

.payment-methods .section-title {
  margin: 0;
  font-size: 32px;
  color: #0f172a;
}

.payment-methods .section-subtitle {
  margin: 12px auto 0;
  max-width: 760px;
  color: #6b7280;
}

.payment-methods-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 32px auto 0;
}

@media (max-width: 1024px) {
  .payment-methods-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .payment-methods-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.payment-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 24px 20px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  text-align: center;
  transition: all 0.25s ease;
}

.payment-card:hover {
  transform: scale(1.04);
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.14);
}

.payment-icon-badge {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: #f3f4ff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.payment-icon {
  max-width: 32px;
  max-height: 32px;
  object-fit: contain;
  transition: transform 0.25s ease;
}

.payment-card:hover .payment-icon {
  transform: scale(1.12);
}

.payment-title {
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 4px;
}

.payment-subtitle {
  font-size: 14px;
  color: #6b7280;
  margin: 0;
}

.reviews-section {
  background: #f6f8fb;
  padding: 90px 0;
}

.reviews-section .section-head {
  max-width: 720px;
  margin: 0 auto 28px;
}

.reviews-section .section-head .btn {
  margin-top: 10px;
}

.section-head.centered {
  text-align: center;
}

.reviews-section h2 {
  margin-bottom: 10px;
}

.reviews-section p {
  margin-bottom: 8px;
}

.reviews-link {
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}

.reviews-link:hover {
  text-decoration: underline;
}

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

.review-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.12);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #e6eeff;
  color: #1e5bff;
  display: grid;
  place-items: center;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.review-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.review-meta strong {
  color: #0f172a;
  font-size: 1rem;
}

.review-meta span {
  color: var(--muted);
  font-size: 0.95rem;
}

.review-rating {
  display: flex;
  gap: 2px;
  color: #00b67a;
  font-size: 1rem;
}

.review-body h3 {
  margin: 0 0 6px 0;
  font-size: 1.05rem;
  color: #111827;
}

.review-body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.review-footer {
  margin-top: auto;
  background: #00b67a;
  color: #ffffff;
  border-radius: 12px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.external-icon {
  font-size: 1rem;
  opacity: 0.92;
}

.security-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.security-card {
  background: #fff;
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  position: relative;
}

.security-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--primary);
  display: grid;
  place-items: center;
  color: #fff;
  margin-bottom: 14px;
}

.pricing-section .plan-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
}

@media (min-width: 720px) {
  .pricing-section .plan-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  .pricing-section .plan-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.plan-grid-group {
  margin-top: 18px;
}

.plan-card {
  position: relative;
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
  padding: 22px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

@media (hover: hover) {
  .plan-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
    border-color: #d7dce7;
  }
}

.plan-card .plan-badge {
  left: 16px;
  right: auto;
  top: 12px;
}

.plan-tier {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #1f2937;
  padding: 4px 0;
}

.plan-card h4 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.plan-title-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.plan-offer-dot {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2563eb;
  box-shadow: 0 0 0 6px rgba(37, 99, 235, 0.06);
  flex-shrink: 0;
}

.plan-offer-tooltip {
  position: absolute;
  left: 50%;
  top: 18px;
  transform: translateX(-50%);
  white-space: nowrap;
  background: #0f172a;
  color: #e2e8f0;
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 600;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.16s ease, transform 0.16s ease;
  border: 1px solid #1e293b;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.12);
  transform-origin: top;
}

.plan-offer-dot:focus-visible,
.plan-offer-dot:hover {
  outline: none;
}

.plan-offer-dot:focus-visible {
  box-shadow: 0 0 0 8px rgba(37, 99, 235, 0.12);
}

.plan-offer-dot:focus-visible .plan-offer-tooltip,
.plan-offer-dot:hover .plan-offer-tooltip {
  opacity: 1;
  transform: translate(-50%, 6px);
}

.price-block,
.plan-price {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  font-weight: 800;
  line-height: 1.1;
  color: #0f172a;
}

.price-main {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
}

.price-amount {
  font-size: 1.9rem;
  font-weight: 800;
  line-height: 1.1;
  color: #0f172a;
  transition: color 0.18s ease, transform 0.18s ease;
}

.price-term {
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  color: #475569;
  text-transform: none;
  font-weight: 800;
}

.cycle-total {
  font-size: 0.95rem;
  color: #4b5563;
  font-weight: 700;
}

.price-divider {
  height: 1px;
  width: 100%;
  background: rgba(15, 23, 42, 0.08);
  margin: 4px 0 4px;
}

.plan-specs {
  list-style: none;
  padding: 0;
  margin: 2px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #111827;
  text-align: left;
}

.plan-btn {
  width: 100%;
  align-self: stretch;
  border-radius: 10px;
  background: #0f172a;
  padding: 12px 12px;
  font-weight: 700;
  box-shadow: none;
  margin-top: auto;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  border: 1px solid #1f2937;
}

@media (hover: hover) {
  .plan-btn:hover {
    background: #0b1324;
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.16);
    transform: translateY(-2px);
  }
}

@media (max-width: 960px) {
  .reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .reviews-section {
    padding: 70px 0;
  }

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

  .review-card {
    padding: 18px;
  }

  .review-header {
    align-items: flex-start;
  }

  .review-rating {
    justify-content: flex-start;
  }
}

.plan-toggle {
  display: inline-flex;
  background: #fff;
  border-radius: 999px;
  padding: 6px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  gap: 6px;
  margin-bottom: 18px;
}

.filter-toggle-btn {
  border: none;
  background: transparent;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 700;
  color: var(--muted);
  cursor: pointer;
}

.filter-toggle-btn.active {
  background: var(--gradient);
  color: #fff;
}

.plan-grid-group { display: none; }
.plan-grid-group.show { display: block; }

.special-offer {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 18px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  margin-bottom: 22px;
}

.offer-badge {
  background: var(--gradient);
  color: #fff;
  padding: 10px 12px;
  border-radius: var(--radius);
  font-weight: 700;
  letter-spacing: 0.02em;
}


.os-section {
  padding: 44px 0 38px;
}

.os-heading {
  margin: 0 auto 10px;
  text-align: center;
  letter-spacing: 0.02em;
  font-weight: 700;
  color: #1f2937;
  font-size: 1.35em;
}

.os-availability {
  position: relative;
  overflow: visible;
  padding: 8px 0 0;
  margin: 0 auto;
  max-width: 1160px;
}

.os-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
}

.os-pill {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 14px 12px;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
  width: 178px;
  height: 112px;
  color: #111827;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.os-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
}

.os-pill__icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: #111827;
  flex-shrink: 0;
}

.os-pill__icon svg,
.os-pill__icon img {
  width: 28px;
  height: 28px;
}

.os-pill__label {
  color: #1f2937;
  font-weight: 600;
  font-size: 1rem;
}

.os-tooltip {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 14px);
  transform: translate(-50%, 8px) scale(0.95);
  opacity: 0;
  pointer-events: none;
  background: #ffffff;
  color: #1f2937;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.12);
  width: 230px;
  z-index: 20;
  transition: opacity 180ms ease, transform 180ms ease;
}

.os-tooltip::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  width: 12px;
  height: 8px;
  background: #ffffff;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  border: 1px solid #e5e7eb;
  border-top: none;
  border-left: none;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.12);
}

.os-tooltip__title {
  font-weight: 700;
  margin-bottom: 6px;
}

.os-tooltip__list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 2px;
  font-weight: 600;
  color: #1f2937;
}

.os-pill:hover .os-tooltip,
.os-pill:focus-within .os-tooltip {
  opacity: 1;
  transform: translate(-50%, -2px) scale(1);
  pointer-events: auto;
}

@media (max-width: 640px) {
  .os-section {
    padding: 44px 0 40px;
  }

  .os-availability {
    padding: 12px 0 10px;
  }

  .os-tooltip {
    width: 210px;
  }
}

@media (min-width: 1024px) {
  .os-row {
    flex-wrap: nowrap;
  }
}

.ddr-showcase {
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.ddr-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  align-items: center;
}

.ddr-stack {
  display: grid;
  gap: 14px;
}

.ddr-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: var(--shadow);
}

.ddr-card.highlight {
  background: linear-gradient(180deg, #0e2042, #112850);
  color: #fff;
  border: none;
}

.ddr-card.highlight p,
.ddr-card.highlight .ddr-pill {
  color: #d8e4ff;
}

.ddr-chip {
  display: inline-flex;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-weight: 700;
  margin: 8px 0;
}

.ddr-pill-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
  gap: 8px;
  margin-top: 12px;
}

.ddr-pill {
  background: rgba(30, 107, 255, 0.1);
  color: #fff;
  border-radius: 12px;
  padding: 8px 10px;
  display: inline-block;
}

.ddr-card.bars .bar-row {
  margin-bottom: 14px;
}

.bar-track {
  background: #e4edff;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  height: 14px;
}

.bar-track.alt { background: #e7edf5; }

.bar-fill {
  width: 0;
  height: 100%;
  background: var(--gradient);
  border-radius: 12px;
  transition: width 1.1s ease;
}

.datacenter-section {
  background: #f6f8fb;
  padding-bottom: 90px;
  position: relative;
  isolation: isolate;
}



.datacenter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 16px;
  align-items: stretch;
  position: relative;
  z-index: 1;
}

.datacenter-visual-card {
  background: #ffffff;
  color: var(--text);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  min-height: 280px;
  border: 1px solid #e3eaf6;
  box-shadow: var(--card-shadow-hover);
}

.datacenter-visual {
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, #ffffff 0%, #f7f9fc 100%);
  overflow: hidden;
}

.datacenter-visual::before,
.datacenter-visual::after {
  content: "";
  position: absolute;
  inset: 8% 6%;
  background-repeat: no-repeat;
  pointer-events: none;
}

.datacenter-visual::before {
  background-image: url("data:image/svg+xml,%3Csvg width='1200' height='720' viewBox='0 0 1200 720' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M100 480C240 370 360 360 520 400C720 450 880 340 1040 260' stroke='%23556F8A' stroke-width='1.4' stroke-linecap='round' stroke-opacity='0.4'/%3E%3Cpath d='M160 360C300 260 480 240 640 300C760 344 860 330 1000 250' stroke='%23556F8A' stroke-width='1.4' stroke-linecap='round' stroke-opacity='0.25'/%3E%3Cpath d='M220 260C360 210 520 200 700 240C860 276 940 264 1080 210' stroke='%23556F8A' stroke-width='1.2' stroke-linecap='round' stroke-opacity='0.2' stroke-dasharray='6 10'/%3E%3Ccircle cx='180' cy='360' r='4' fill='%23556F8A' fill-opacity='0.32'/%3E%3Ccircle cx='360' cy='310' r='3' fill='%23556F8A' fill-opacity='0.32'/%3E%3Ccircle cx='560' cy='360' r='3' fill='%23556F8A' fill-opacity='0.32'/%3E%3Ccircle cx='820' cy='320' r='3' fill='%23556F8A' fill-opacity='0.32'/%3E%3Ccircle cx='980' cy='260' r='3' fill='%23556F8A' fill-opacity='0.32'/%3E%3Ccircle cx='1080' cy='210' r='4' fill='%23556F8A' fill-opacity='0.32'/%3E%3Ccircle cx='460' cy='260' r='3' fill='%23556F8A' fill-opacity='0.32'/%3E%3Ccircle cx='660' cy='240' r='3' fill='%23556F8A' fill-opacity='0.32'/%3E%3Ccircle cx='900' cy='240' r='3' fill='%23556F8A' fill-opacity='0.32'/%3E%3Cpath d='M360 310C420 260 500 240 620 270' stroke='%23556F8A' stroke-width='1.2' stroke-linecap='round' stroke-opacity='0.25'/%3E%3Cpath d='M560 360C640 320 740 320 860 340' stroke='%23556F8A' stroke-width='1.2' stroke-linecap='round' stroke-opacity='0.25'/%3E%3C/svg%3E");
  background-position: 80% 60%;
  background-size: 140%;
  opacity: 0.7;
}

.datacenter-visual::after {
  background-image:
    radial-gradient(1px 1px at 18% 22%, rgba(34, 56, 90, 0.28), transparent 60%),
    radial-gradient(1px 1px at 34% 62%, rgba(34, 56, 90, 0.22), transparent 60%),
    radial-gradient(1px 1px at 68% 48%, rgba(34, 56, 90, 0.24), transparent 60%),
    radial-gradient(1px 1px at 78% 28%, rgba(34, 56, 90, 0.22), transparent 60%),
    radial-gradient(1px 1px at 86% 66%, rgba(34, 56, 90, 0.26), transparent 60%);
  background-size: 220px 240px;
  opacity: 0.7;
}

.datacenter-overlay {
  position: relative;
  padding: 26px;
  display: grid;
  gap: 12px;
  color: var(--text);
}

.datacenter-overlay h3 { color: var(--text); }
.datacenter-overlay .subtitle { color: #5a6780; }

.datacenter-pill-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.datacenter-pill-row .pill.neon {
  background: #e9eef5;
  color: var(--text);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.datacenter-pill-row .pill.ghost {
  background: #f8fbff;
  border-color: #d4deed;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.datacenter-pill-row .pill { backdrop-filter: none; }

.datacenter-pill-row .pill,
.datacenter-pill-row .ddr-pill { position: relative; z-index: 1; }

.datacenter-pill-row .ddr-pill {
  background: #eef2f7;
  color: var(--text);
  border: 1px solid #d6deeb;
  box-shadow: none;
}

.dc-card {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid #e3eaf6;
  box-shadow: var(--card-shadow);
}

.dc-icon {
  background: linear-gradient(135deg, #e9f2ff, #f8fbff);
  color: var(--primary);
  border: 1px solid #d7e7ff;
  box-shadow: 0 12px 28px rgba(30, 64, 132, 0.12);
}

.footer-main {
  background: #0f1f3a;
  color: #d4ddf3;
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
  align-items: start;
}

.footer-brand-stack h3 { margin: 0; color: #fff; }
.footer-tagline { color: #b9c6e6; margin: 4px 0 12px; }

.footer-logo-row {
  display: flex;
  gap: 12px;
  align-items: center;
}

.footer-logo-img {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 18px;
}

.footer-column p {
  color: #fff;
  font-weight: 700;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #d4ddf3;
  display: grid;
  gap: 8px;
}

.footer-column a { color: #d4ddf3; }
.footer-bottom {
  margin-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  color: #8fa0c4;
}

.footer-legal-links {
  display: flex;
  gap: 8px;
  align-items: center;
}

.footer-legal-links a { color: #8fa0c4; }

.partner-placeholder {
  display: inline-flex;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  color: #d4ddf3;
}

.social-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.footer-social { display: flex; gap: 8px; }

/* HEADER CLEANUP */
.brand-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(140deg, #1f7bff, #3db2ff);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(33, 122, 255, 0.18);
}

.brand {
  display: flex;
  align-items: center;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #111827;
}

.logo-img {
  height: 32px;
  width: auto;
  object-fit: contain;
}

.brand-name {
  display: inline-flex;
  align-items: center;
  font-size: 17px;
  font-weight: 600;
  color: #111827;
  letter-spacing: 0.01em;
  line-height: 1.3;
}

.global-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #ffffff;
  border-bottom: 1px solid #e8edf5;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 24px rgba(10, 20, 40, 0.04);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  padding: 6px 4px;
  border-radius: 6px;
  font-weight: 600;
  color: #111827;
  transition: color 160ms ease;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-links a.active {
  color: var(--primary);
}

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

.nav-actions .btn {
  padding: 10px 16px;
  font-size: 14px;
  box-shadow: none;
  border-radius: 10px;
}

.nav-actions .btn.ghost {
  background: #ffffff;
  border: 1px solid #e5eaf2;
  color: #111827;
}

.nav-actions .btn.primary {
  background: linear-gradient(135deg, #1f7bff, #3aa1ff);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 10px 20px rgba(31, 123, 255, 0.25);
}

.nav-actions .btn.primary:hover { box-shadow: 0 12px 28px rgba(31, 123, 255, 0.32); }

.nav-toggle {
  display: none;
  border: 1px solid #e5eaf2;
  border-radius: 10px;
  background: #fff;
  padding: 8px 10px;
  font-size: 16px;
}

.table-like strong { color: var(--text); }

.list.tight { padding-left: 16px; }

.ddr-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.datacenter-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.support-block, .about-block, .domain-cta {
  background: #fff;
  padding: 20px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.domain-grid, .values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.table {
  width: 100%;
  border-collapse: collapse;
}

.table th, .table td {
  border: 1px solid var(--border);
  padding: 10px;
  text-align: left;
}

.values-grid .card { height: 100%; }

.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}

.stat-tiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
}

.stat-tile {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 14px;
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
}

.family-toggle {
  display: inline-flex;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px;
  box-shadow: var(--shadow);
}

.family-btn {
  border: none;
  background: transparent;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 700;
  color: var(--muted);
  cursor: pointer;
}

.family-btn.active {
  background: var(--gradient);
  color: #fff;
}

/* Dedicated page refresh */
body[data-page="dedicated"] {
  background: #f6f8fc;
}

.hero.dedicated-hero {
  position: relative;
  color: #e6edff;
  overflow: hidden;
  padding: var(--hero-padding-top) 0 var(--hero-padding-bottom);
  min-height: var(--hero-min-height);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: radial-gradient(78% 48% at 50% 20%, rgba(40, 176, 172, 0.28), rgba(6, 30, 46, 0) 70%),
    linear-gradient(188deg, #04162a 0%, #082c42 45%, #032036 100%);
}

.dedicated-shell {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
  align-items: flex-start;
  z-index: 1;
}

.dedicated-hero-copy {
  margin-top: 32px;
}

.dedicated-stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(1.8px 1.8px at 12% 18%, rgba(156, 207, 255, 0.9), transparent),
    radial-gradient(2px 2px at 32% 8%, rgba(136, 196, 255, 0.7), transparent),
    radial-gradient(2.2px 2.2px at 74% 26%, rgba(102, 182, 255, 0.7), transparent),
    radial-gradient(1.9px 1.9px at 48% 56%, rgba(154, 215, 255, 0.55), transparent);
  opacity: 0.7;
  filter: saturate(1.05);
  animation: drift-right 24s linear infinite alternate;
  z-index: 0;
}

.dedicated-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.45;
}

.dedicated-lines .line {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.12) 50%, transparent 100%);
  transform: skewX(-12deg);
  filter: blur(0.3px);
}

.dedicated-lines .line:nth-child(1) { left: 8%; width: 1px; opacity: 0.3; }
.dedicated-lines .line:nth-child(2) { left: 36%; width: 1px; opacity: 0.35; }
.dedicated-lines .line:nth-child(3) { left: 68%; width: 1px; opacity: 0.25; }

.dedicated-lines .pulse {
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  left: 70%;
  top: 18%;
  background: radial-gradient(circle, rgba(40, 122, 186, 0.28) 0%, rgba(12, 18, 36, 0) 60%);
  filter: blur(24px);
}

.dedicated-hero h1 {
  color: #f7f9ff;
  font-size: clamp(32px, 4vw, 44px);
  margin-bottom: 14px;
}

.dedicated-hero p { color: #cfe1f6; }

.hero-subnav {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.hero-panel.dedicated-panel {
  background: linear-gradient(160deg, rgba(6, 24, 46, 0.9), rgba(8, 30, 54, 0.9));
  border: 1px solid rgba(122, 184, 255, 0.16);
  border-radius: 20px;
  padding: 18px 18px 16px;
  box-shadow: 0 26px 80px rgba(2, 8, 24, 0.6);
  color: #e9f4ff;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.panel-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.mesh-pill {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #dff0ff;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
}

.sla-pill {
  background: rgba(92, 200, 255, 0.14);
  color: #e7f7ff;
  border: 1px solid rgba(122, 184, 255, 0.32);
}

.panel-title h3 {
  color: #f4f9ff;
  margin-bottom: 6px;
}

.panel-title .subtle {
  color: #b4c7e6;
  margin: 0;
}

.dedicated-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.metric-tile {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 12px;
  color: #deecff;
  box-shadow: 0 18px 44px rgba(5, 14, 32, 0.4);
}

.metric-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #9eb6d9;
  margin-bottom: 4px;
}

.metric-value {
  font-weight: 800;
  color: #f7fbff;
  margin-bottom: 4px;
}

.metric-card p {
  color: #c7d7f1;
  margin: 0;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.chip {
  padding: 8px 12px;
  background: rgba(92, 146, 240, 0.14);
  color: #e8f1ff;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  font-weight: 700;
}

.included-section {
  background: #ffffff;
  position: relative;
  z-index: 2;
  padding: 80px 0;
}

.custom-build-btn {
  margin-top: 24px;
}

.dedicated-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.dedicated-feature-grid .feature-card {
  padding: 20px 18px 22px;
}

.pricing-board {
  margin-top: 44px;
  background: #fff;
  border: 1px solid #e3e8f2;
  border-radius: 22px;
  padding: 22px 20px 20px;
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.08);
}

body[data-page="dedicated"] .plan-toggle {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 8px;
  margin-bottom: 18px;
  background: #f2f5fb;
  padding: 8px;
  border-radius: 14px;
  border: 1px solid #e3e8f2;
}

body[data-page="dedicated"] .filter-toggle-btn {
  border: 1px solid rgba(30, 107, 255, 0.2);
  background: rgba(30, 107, 255, 0.12);
  padding: 12px 10px;
  border-radius: 12px;
  font-weight: 800;
  color: #0b1f3a;
  cursor: pointer;
  position: relative;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

body[data-page="dedicated"] .filter-toggle-btn.active {
  background: linear-gradient(135deg, #1e6bff, #4dabff);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 14px 36px rgba(30, 107, 255, 0.25);
}

.dedicated-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 16px;
}

.plan-card.dedicated-card {
  border-radius: var(--radius-lg);
  border: 1px solid #e7ebf5;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.04);
  padding: 18px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #fbfcff;
  min-height: 100%;
}

.plan-card.dedicated-card:hover { box-shadow: var(--card-shadow-hover); }

body[data-page="dedicated"] .plan-card.dedicated-card .plan-meta .pill {
  background: linear-gradient(135deg, #1e6bff, #4dabff);
  color: #fff;
  border: 1px solid rgba(30, 107, 255, 0.28);
  box-shadow: 0 10px 26px rgba(30, 107, 255, 0.18);
}

.plan-card.dedicated-card h4 {
  font-size: 1.1rem;
  margin: 2px 0 0;
}

.plan-card.dedicated-card .muted {
  color: #4b5563;
  margin: 2px 0 0;
  line-height: 1.45;
}

.plan-card.dedicated-card .muted.subtle {
  color: #6b7280;
  font-size: 14px;
  margin-top: 2px;
}

.plan-card.dedicated-card .pill.ghost {
  background: #eef2fb;
  border-color: #dfe5f2;
  color: #0f172a;
  box-shadow: none;
}

.plan-meta { display: flex; justify-content: space-between; align-items: flex-start; }

.plan-footer {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}

.plan-price { display: flex; align-items: baseline; gap: 6px; }
.plan-price .price-amount { font-weight: 800; font-size: 26px; color: #0f172a; }
.plan-price .price-term { color: #6b7280; font-weight: 700; }

.list.tight {
  list-style: none;
  padding: 0;
  margin: 6px 0 2px;
  display: grid;
  gap: 6px;
  color: #4b5563;
}

.plan-card.dedicated-card .list.tight {
  margin: 6px 0 6px;
  gap: 6px;
}

.ram-control {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 6px 0 4px;
}

.plan-card.dedicated-card .ram-control {
  margin-top: 4px;
  gap: 6px;
}

.ram-current {
  font-weight: 700;
  color: #0f172a;
}

.ram-slider {
  width: 100%;
  accent-color: #2a6cff;
  appearance: none;
  height: 4px;
  background: #dfe3eb;
  border-radius: 999px;
  outline: none;
}

.ram-slider::-webkit-slider-runnable-track {
  height: 4px;
  background: #dfe3eb;
  border-radius: 999px;
}

.ram-slider::-moz-range-track {
  height: 4px;
  background: #dfe3eb;
  border-radius: 999px;
}

.ram-slider::-webkit-slider-thumb {
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #2a6cff;
  border: 2px solid #fff;
  box-shadow: 0 4px 10px rgba(42, 108, 255, 0.2);
  cursor: pointer;
}

.ram-slider::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #2a6cff;
  border: 2px solid #fff;
  box-shadow: 0 4px 10px rgba(42, 108, 255, 0.2);
  cursor: pointer;
}

.ram-labels,
.ram-options-labels {
  display: flex;
  justify-content: space-between;
  color: #4b5563;
  font-size: 12px;
}

.ram-labels span {
  flex: 1;
  text-align: center;
}

.bandwidth-control {
  margin-top: 2px;
}

.plan-card.dedicated-card .bandwidth-control {
  margin-top: 10px;
}

.bandwidth-label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 700;
  color: #0f172a;
}

.bandwidth-select {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #dfe5f2;
  background: #f7f8fb;
  color: #0f172a;
  font-weight: 600;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.bandwidth-select:focus {
  border-color: #2a6cff;
  box-shadow: 0 0 0 3px rgba(42, 108, 255, 0.15);
}

.plan-btn { width: auto; min-width: 150px; }

.plan-card.dedicated-card .plan-footer {
  padding-top: 8px;
  margin-top: 12px;
}

.custom-build-section {
  padding: 48px 0 48px;
}

.custom-build-card {
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: 20px;
  box-shadow: var(--card-shadow);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.custom-build-copy h2 {
  font-size: clamp(24px, 3vw, 32px);
  margin-bottom: 12px;
  color: #0f172a;
}

.custom-build-copy p {
  color: #4b5563;
  margin: 0 auto 18px;
  line-height: 1.6;
  max-width: 620px;
}

.custom-build-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
}

  .custom-build-visual {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .custom-build-graphic {
    position: relative;
    width: 100%;
    max-width: 320px;
    aspect-ratio: 4 / 3;
    border-radius: 18px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: grid;
    place-items: center;
    overflow: hidden;
    box-shadow: 0 22px 38px rgba(13, 67, 160, 0.22), inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  }

  .custom-build-graphic.gradient-shift {
    background: linear-gradient(135deg, rgba(78, 142, 255, 0.9), rgba(120, 110, 255, 0.9) 40%, rgba(104, 212, 255, 0.88)),
      radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.12), transparent 42%),
      radial-gradient(circle at 76% 82%, rgba(130, 102, 255, 0.16), transparent 46%);
    background-size: 190% 190%, 100% 100%, 100% 100%;
    animation: gradientShift 16s ease-in-out infinite;
  }

  .custom-build-graphic::before {
    content: '';
    position: absolute;
    inset: 10px;
    border-radius: 16px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0));
    box-shadow: inset 0 18px 28px rgba(255, 255, 255, 0.08);
    filter: blur(0.2px);
    pointer-events: none;
  }

.use-case-section {
  background: #f8fafc;
}

.use-case-container {
  max-width: 1120px;
  padding-inline: 20px;
  margin: 0 auto;
}

.use-case-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 30px;
}

.use-case-panel {
  background: #ffffff;
  border: 1px solid #e4e8f1;
  border-radius: 16px;
  box-shadow: 0 18px 48px rgba(11, 20, 35, 0.06);
  padding: 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.use-case-row {
  display: grid;
  grid-template-columns: 0.28fr 1fr;
  gap: 18px;
  align-items: start;
  padding: 6px 0;
}

.use-case-row:not(:last-child) {
  border-bottom: 1px solid #edf0f6;
  padding-bottom: 18px;
}

.use-case-title {
  font-weight: 800;
  font-size: 18px;
  color: #0b1f3a;
}

.use-case-text {
  margin: 0;
  color: #5a6579;
  line-height: 1.6;
}

@media (max-width: 720px) {
  .use-case-panel {
    padding: 22px 20px;
  }

  .use-case-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 0;
  }

  .use-case-row:not(:last-child) {
    padding-bottom: 14px;
  }
}

  .abstract-composition {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 14px;
    overflow: hidden;
    z-index: 1;
  }

  .glass-layer {
    position: absolute;
    border-radius: 999px;
    filter: blur(12px);
    opacity: 0.65;
    backdrop-filter: blur(18px);
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
  }

  .glass-layer.layer-one {
    width: 140px;
    height: 140px;
    top: 12%;
    left: 10%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0)),
      radial-gradient(circle at 70% 80%, rgba(199, 232, 255, 0.28), rgba(255, 255, 255, 0));
  }

  .glass-layer.layer-two {
    width: 120px;
    height: 120px;
    bottom: 14%;
    right: 8%;
    background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0)),
      radial-gradient(circle at 70% 70%, rgba(210, 196, 255, 0.28), rgba(255, 255, 255, 0));
  }

  .glass-layer.layer-three {
    width: 80px;
    height: 80px;
    top: 32%;
    right: 28%;
    background: radial-gradient(circle at 50% 40%, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0)),
      radial-gradient(circle at 70% 70%, rgba(120, 200, 255, 0.28), rgba(255, 255, 255, 0));
  }

  .network-lines {
    position: absolute;
    inset: 16%;
    z-index: 2;
  }

  .network-lines .line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.4));
    border-radius: 999px;
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.4);
  }

  .network-lines .line-a {
    top: 38%;
    left: 12%;
    width: 58%;
    transform: rotate(-6deg);
  }

  .network-lines .line-b {
    bottom: 28%;
    right: 10%;
    width: 46%;
    transform: rotate(18deg);
  }

  .network-nodes {
    position: absolute;
    inset: 0;
    z-index: 3;
  }

  .network-nodes .node {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 8px 18px rgba(13, 67, 160, 0.25), 0 0 0 8px rgba(255, 255, 255, 0.08);
  }

  .network-nodes .node::after {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.22), transparent 70%);
    filter: blur(6px);
    opacity: 0.9;
  }

  .network-nodes .node-a {
    top: 22%;
    left: 18%;
  }

  .network-nodes .node-b {
    top: 36%;
    right: 28%;
  }

  .network-nodes .node-c {
    bottom: 34%;
    left: 26%;
  }

  .network-nodes .node-d {
    bottom: 18%;
    right: 20%;
  }

@keyframes gradientShift {
  0% {
    background-position: 0% 50%, 0 0, 0 0;
  }
  50% {
    background-position: 100% 50%, 0 0, 0 0;
  }
  100% {
    background-position: 0% 50%, 0 0, 0 0;
  }
}

@media (max-width: 640px) {
  .plan-card.dedicated-card .plan-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .plan-card.dedicated-card .plan-btn {
    width: 100%;
  }
}

@media (max-width: 900px) {
  .dedicated-shell { grid-template-columns: 1fr; }
  .hero-panel.dedicated-panel {
    order: -1;
    margin-top: 0;
  }

  .custom-build-card {
    grid-template-columns: 1fr;
    text-align: left;
    padding: 28px 24px;
  }

  .custom-build-visual {
    order: 1;
  }
}

@media (max-width: 720px) {
  .dedicated-hero {
    padding: var(--hero-padding-top) 0 var(--hero-padding-bottom);
  }

  .dedicated-metrics {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 720px) {
  .dedicated-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1040px) {
  .dedicated-feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .pricing-toolbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .billing-selector {
    justify-content: flex-start;
  }

  .billing-dropdown,
  .billing-dropdown__toggle {
    width: 100%;
  }

  .billing-dropdown__menu {
    min-width: 100%;
  }
}

.legal-page {
  background: var(--bg);
}

.legal-wrapper {
  padding: 120px 0;
}

.legal-header {
  width: 100%;
  margin: 0 0 32px;
  text-align: left;
}

.legal-header h1 {
  font-size: clamp(30px, 4vw, 42px);
  margin-bottom: 10px;
}

.legal-header p {
  margin: 0;
  color: var(--muted);
}

.legal-content {
  display: grid;
  gap: 16px;
}

.legal-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 26px;
  box-shadow: var(--card-shadow);
}

.legal-card h2 {
  margin-bottom: 10px;
  font-size: 22px;
}

.legal-card p:last-child {
  margin-bottom: 0;
}

.legal-card ul {
  padding-left: 18px;
  margin: 8px 0 0;
  color: var(--muted);
}

.legal-card li + li {
  margin-top: 6px;
}

@media (max-width: 900px) {
  .nav-links { display: none; position: absolute; top: 64px; right: 12px; background: #fff; border: 1px solid var(--border); border-radius: 12px; box-shadow: var(--shadow); padding: 12px; flex-direction: column; }
  .nav-links.show,
  .nav-links.open { display: flex; }
  .nav-toggle { display: inline-flex; }
  .nav-shell { position: relative; }
  .footer-panel-wrap { transform: none; margin-top: 20px; }
  .special-offer { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .hero { padding-top: 90px; }
  .price-stack { font-size: 22px; }
}

/* About page redesign */
.about-hero {
  background: radial-gradient(circle at 20% 20%, rgba(30, 107, 255, 0.12), transparent 35%),
    radial-gradient(circle at 80% 30%, rgba(102, 184, 255, 0.15), transparent 45%),
    linear-gradient(180deg, #f7faff 0%, #eef4ff 100%);
  padding: 120px 0 110px;
}

.about-hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: center;
}

.about-hero-copy h1 {
  font-size: 40px;
  margin: 12px 0 14px;
}

.about-hero-copy .lead {
  font-size: 17px;
  color: var(--ink-muted);
  margin-bottom: 20px;
}

.about-hero-copy .hero-subnav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.about-hero-art {
  position: relative;
  min-height: 320px;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--card-shadow);
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(0px);
  opacity: 0.7;
}

.orb-lg { width: 220px; height: 220px; background: rgba(30, 107, 255, 0.2); top: -60px; right: -40px; }
.orb-md { width: 150px; height: 150px; background: rgba(102, 184, 255, 0.25); bottom: -40px; left: 20%; }
.orb-sm { width: 90px; height: 90px; background: rgba(14, 92, 255, 0.18); top: 38%; left: 10%; }

.node-cluster {
  position: absolute;
  inset: 18% 12% auto auto;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.node-pill {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border);
  padding: 10px 14px;
  border-radius: 14px;
  font-weight: 700;
  color: var(--text);
  box-shadow: var(--card-shadow);
}

.node-pill.accent { background: var(--gradient); color: #fff; border-color: transparent; }

.mesh {
  position: absolute;
  inset: 16%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.mesh span {
  display: block;
  border-radius: var(--radius);
  background: rgba(14, 92, 255, 0.08);
  border: 1px dashed rgba(30, 107, 255, 0.35);
  min-height: 90px;
}

.story-section {
  background: linear-gradient(180deg, #f3f6fb 0%, #ffffff 100%);
  padding: 90px 0;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.timeline-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: var(--card-shadow);
  position: relative;
}

.timeline-date {
  display: inline-flex;
  padding: 6px 12px;
  background: rgba(30, 107, 255, 0.1);
  color: var(--primary);
  border-radius: 999px;
  font-weight: 700;
  margin-bottom: 10px;
}

.timeline-card h3 { margin: 4px 0 8px; }

.values-section .values-grid.alt {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.value-card {
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.value-card .value-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(30, 107, 255, 0.1);
  font-size: 22px;
}

.infra-section {
  padding: 90px 0;
}

.infra-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  align-items: start;
}

.infra-copy h2 { margin: 10px 0 12px; }

.map-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: var(--card-shadow);
}

.map-top {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 12px;
}

.dot {
  background: rgba(30, 107, 255, 0.12);
  color: var(--text);
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  font-weight: 700;
}

.dot.dot-lg { background: var(--gradient); color: #fff; border-color: transparent; }
.dot.muted { background: rgba(15, 23, 42, 0.08); color: var(--ink-muted); }

.map-lines {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 12px;
}

.map-lines span {
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(30, 107, 255, 0.4), rgba(102, 184, 255, 0.6));
}

.location-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--ink-muted);
}

.location-list li strong { color: var(--text); }

.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.work-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: var(--card-shadow);
}

.cta-section {
  padding: 90px 0 100px;
}

.cta-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--card-shadow);
  padding: 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
  align-items: center;
}

.cta-card h2 { margin: 10px 0; }

.cta-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

@media (max-width: 720px) {
  .about-hero { padding: 90px 0; }
  .about-hero-copy h1 { font-size: 32px; }
  .about-hero-art { min-height: 280px; }
  .cta-card { text-align: left; }
}

@media (max-width: 768px) {
  .live-platform-signals,
  .live-telemetry {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .dedicated-mesh-block {
    display: none !important;
  }
}
