:root {
  color-scheme: dark;
  --ink: #f7fbff;
  --muted: #b8c7d3;
  --line: rgba(255, 255, 255, 0.16);
  --panel: rgba(10, 27, 45, 0.84);
  --panel-strong: #ffffff;
  --text-dark: #102033;
  --text-soft: #5b6d7e;
  --green: #39d8aa;
  --blue: #54a8ff;
  --gold: #f5bf4f;
  --rose: #ff6f8c;
  --page: #071521;
  --radius: 8px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, #071521 0%, #0a1b2d 42%, #f4f8fb 42%, #f4f8fb 100%);
  background-size: 72px 72px, auto;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

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

.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: var(--radius);
  color: #071521;
  background: #ffffff;
  font-weight: 900;
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(7, 21, 33, 0.92);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  width: min(1220px, calc(100% - 32px));
  min-height: 76px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto auto;
  align-items: center;
  gap: 14px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
}

.brand span {
  display: grid;
  min-width: 0;
}

.brand strong {
  font-size: 1.05rem;
  line-height: 1.1;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.site-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px;
}

.site-menu a,
.nav-cta,
.menu-button,
.button {
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 900;
}

.site-menu a {
  padding: 10px 11px;
  color: #dce9f3;
}

.site-menu a:hover {
  color: #081525;
  background: #e8f7ff;
}

.nav-cta {
  justify-self: end;
  min-height: 42px;
  padding: 10px 15px;
  color: #071521;
  background: linear-gradient(135deg, var(--gold), var(--green));
  box-shadow: 0 12px 32px rgba(57, 216, 170, 0.2);
}

.menu-button {
  display: none;
  border: 1px solid var(--line);
  padding: 10px 12px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.hero-section {
  position: relative;
  overflow: hidden;
  min-height: 710px;
  padding: 92px 0 86px;
  background:
    linear-gradient(120deg, rgba(7, 21, 33, 0.98), rgba(9, 43, 66, 0.94) 52%, rgba(10, 83, 86, 0.9)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: auto, 88px 88px;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.58;
}

.hero-backdrop span {
  position: absolute;
  display: block;
  height: 1px;
  width: 34%;
  background: linear-gradient(90deg, transparent, rgba(57, 216, 170, 0.58), transparent);
  animation: scanline 9s linear infinite;
}

.hero-backdrop span:nth-child(1) { top: 18%; left: 0; }
.hero-backdrop span:nth-child(2) { top: 36%; right: 4%; animation-delay: -2s; }
.hero-backdrop span:nth-child(3) { top: 58%; left: 11%; animation-delay: -4s; }
.hero-backdrop span:nth-child(4) { top: 78%; right: 14%; animation-delay: -6s; }

@keyframes scanline {
  0% { transform: translateX(-38px); opacity: 0.25; }
  50% { opacity: 1; }
  100% { transform: translateX(38px); opacity: 0.25; }
}

.hero-inner,
.section-shell,
.trust-strip,
.managed-band,
.pricing-section,
.order-section,
.site-footer {
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(420px, 0.97fr);
  gap: 44px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.hero-copy h1,
.section-heading h2,
.managed-copy h2,
.order-copy h2 {
  margin: 0;
  font-weight: 1000;
  letter-spacing: 0;
}

.hero-copy h1 {
  max-width: 840px;
  font-size: 4.1rem;
  line-height: 0.98;
}

.hero-lead {
  max-width: 760px;
  margin: 24px 0 0;
  color: #d5e5ef;
  font-size: 1.18rem;
  line-height: 1.65;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 17px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  color: #071521;
  background: linear-gradient(135deg, #ffd66b, #39d8aa);
  box-shadow: 0 20px 42px rgba(57, 216, 170, 0.24);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.24);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.button-plan {
  width: 100%;
  color: #071521;
  background: #ffffff;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}

.hero-points span {
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: #e8f6ff;
  background: rgba(255, 255, 255, 0.07);
  font-size: 0.82rem;
  font-weight: 900;
}

.hero-visual {
  position: relative;
  min-height: 500px;
}

.server-orbit {
  position: absolute;
  inset: 30px;
  border: 1px solid rgba(84, 168, 255, 0.22);
  border-radius: 50%;
  transform: rotate(12deg);
  animation: slowRotate 28s linear infinite;
}

.orbit-two {
  inset: 78px 18px 88px 64px;
  border-color: rgba(245, 191, 79, 0.22);
  animation-duration: 36s;
  animation-direction: reverse;
}

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

.visual-panel {
  position: relative;
  z-index: 2;
  margin: 26px 0 0;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: var(--radius);
  background: rgba(4, 13, 24, 0.76);
  box-shadow: var(--shadow);
}

.panel-top {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  margin-bottom: 16px;
}

.panel-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--rose);
}

.panel-top span:nth-child(2) { background: var(--gold); }
.panel-top span:nth-child(3) { background: var(--green); }

.panel-top strong {
  margin-left: auto;
  color: #c6d6e1;
  font-size: 0.78rem;
}

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

.server-card {
  min-height: 128px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(84, 168, 255, 0.1), transparent),
    rgba(255, 255, 255, 0.05);
}

.server-card-active {
  border-color: rgba(57, 216, 170, 0.58);
  box-shadow: inset 0 0 0 1px rgba(57, 216, 170, 0.18);
}

.server-card small {
  display: block;
  color: var(--green);
  font-size: 0.74rem;
  font-weight: 1000;
}

.server-card strong,
.server-card span {
  display: block;
  overflow-wrap: anywhere;
}

.server-card strong {
  margin-top: 10px;
  font-size: 1.12rem;
}

.server-card span {
  margin-top: 5px;
  color: var(--muted);
  font-weight: 800;
}

.pulse-line {
  position: relative;
  height: 8px;
  margin-top: 18px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
}

.pulse-line span {
  display: block;
  width: 44%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--green), var(--gold));
  animation: pulseBar 3.5s ease-in-out infinite;
}

@keyframes pulseBar {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(130%); }
}

.trust-strip {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: -42px;
  padding: 12px;
  border: 1px solid rgba(10, 27, 45, 0.12);
  border-radius: var(--radius);
  color: var(--text-dark);
  background: #ffffff;
  box-shadow: 0 18px 52px rgba(8, 37, 59, 0.16);
}

.trust-strip div {
  min-height: 104px;
  padding: 14px;
  border-radius: var(--radius);
  background: #f3f8fb;
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  font-size: 1rem;
}

.trust-strip span {
  margin-top: 6px;
  color: var(--text-soft);
  font-weight: 700;
}

.section-shell,
.pricing-section {
  padding: 86px 0 0;
  color: var(--text-dark);
}

.section-heading {
  display: grid;
  gap: 14px;
  max-width: 850px;
}

.section-heading h2,
.managed-copy h2,
.order-copy h2 {
  font-size: 2.65rem;
  line-height: 1.08;
}

.section-heading p,
.managed-copy p,
.order-copy p,
.content-columns p {
  margin: 0;
  color: var(--text-soft);
  font-size: 1.05rem;
  line-height: 1.7;
}

.feature-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.feature-card,
.price-card,
.panel-stack article,
.managed-dashboard,
.order-form {
  border: 1px solid #dce7ef;
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 16px 42px rgba(31, 64, 88, 0.08);
}

.feature-card {
  min-height: 260px;
  padding: 22px;
}

.feature-card span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: var(--radius);
  color: #071521;
  background: linear-gradient(135deg, var(--gold), var(--green));
  font-weight: 1000;
}

.feature-card h3,
.price-card h3,
.panel-stack strong {
  margin: 18px 0 8px;
  color: var(--text-dark);
  font-size: 1.25rem;
}

.feature-card p,
.price-card p,
.panel-stack span,
.price-card li,
.check-list li {
  color: var(--text-soft);
  font-weight: 700;
}

.managed-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.7fr);
  gap: 26px;
  align-items: center;
  margin-top: 88px;
  padding: 34px;
  border-radius: var(--radius);
  color: var(--text-dark);
  background:
    linear-gradient(135deg, #ffffff, #eff8fb);
  box-shadow: 0 22px 64px rgba(18, 46, 70, 0.1);
}

.check-list,
.price-card ul {
  display: grid;
  gap: 9px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.price-card li {
  position: relative;
  padding-left: 25px;
}

.check-list li::before,
.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: inset 0 0 0 3px #dff8f1;
}

.managed-dashboard {
  padding: 20px;
}

.dash-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--text-dark);
  font-weight: 1000;
}

.dash-row strong {
  color: #0b7d63;
}

.dash-meter {
  height: 12px;
  margin: 18px 0;
  overflow: hidden;
  border-radius: 999px;
  background: #e7eef4;
}

.dash-meter span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--green));
}

.dash-list {
  display: grid;
  gap: 10px;
}

.dash-list p {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 12px;
  margin: 0;
  padding: 10px;
  border: 1px solid #e3edf4;
  border-radius: var(--radius);
  color: var(--text-dark);
  background: #f8fbfd;
}

.dash-list span {
  color: var(--text-soft);
  font-weight: 700;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.8fr);
  gap: 28px;
  align-items: start;
}

.panel-stack {
  display: grid;
  gap: 12px;
}

.panel-stack article {
  padding: 20px;
}

.panel-stack strong,
.panel-stack span {
  display: block;
}

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

.price-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 492px;
  padding: 20px;
}

.price-card.popular {
  border-color: rgba(57, 216, 170, 0.72);
  box-shadow: 0 22px 62px rgba(57, 216, 170, 0.18);
}

.popular-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 6px 9px;
  border-radius: 999px;
  color: #071521;
  background: var(--gold);
  font-size: 0.72rem;
  font-weight: 1000;
}

.price-head {
  display: grid;
  gap: 7px;
  min-height: 74px;
}

.price-head span {
  color: #0b7d63;
  font-weight: 1000;
  text-transform: uppercase;
}

.price-head strong {
  color: var(--text-dark);
  font-size: 2rem;
  line-height: 1;
}

.price-card ul {
  margin-bottom: 14px;
}

.price-card .button {
  align-self: end;
  margin-top: auto;
  border-color: #d5e4ed;
  background: linear-gradient(135deg, #f7fbff, #ffffff);
}

.seo-content {
  padding-bottom: 82px;
}

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

.content-columns p {
  padding: 20px;
  border: 1px solid #dce7ef;
  border-radius: var(--radius);
  background: #ffffff;
}

.order-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(460px, 1fr);
  gap: 26px;
  align-items: start;
  padding: 42px;
  border-radius: var(--radius);
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(7, 21, 33, 0.98), rgba(10, 83, 86, 0.96)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: auto, 78px 78px;
  box-shadow: var(--shadow);
}

.order-copy p {
  color: #d4e4ee;
}

.payment-box {
  display: grid;
  gap: 6px;
  margin-top: 22px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.payment-box span {
  color: var(--green);
  font-weight: 1000;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.payment-box strong {
  overflow-wrap: anywhere;
  font-size: 1.25rem;
}

.order-form {
  display: grid;
  gap: 14px;
  padding: 20px;
  color: var(--text-dark);
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.order-form label {
  display: grid;
  gap: 7px;
  color: #30485d;
  font-size: 0.84rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.order-form :where(input, select, textarea) {
  width: 100%;
  min-height: 46px;
  border: 1px solid #cfdde8;
  border-radius: var(--radius);
  padding: 12px;
  color: var(--text-dark);
  background: #f9fcfe;
  font: inherit;
  font-weight: 700;
}

.order-form textarea {
  resize: vertical;
}

.consent-line {
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: start;
  text-transform: none !important;
  font-size: 0.9rem !important;
}

.consent-line input {
  width: 18px;
  min-height: 18px;
  margin-top: 3px;
  accent-color: var(--green);
}

.hidden-field {
  position: absolute;
  left: -10000px;
}

.form-submit {
  width: 100%;
  border: 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: center;
  padding: 34px 0 42px;
  color: var(--text-dark);
}

.site-footer div {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 5px 12px;
  align-items: center;
}

.site-footer strong {
  grid-column: 2;
}

.site-footer span {
  grid-column: 2;
  color: var(--text-soft);
  font-weight: 700;
}

.site-footer img {
  grid-row: 1 / span 2;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.site-footer a {
  color: #23445f;
  font-weight: 900;
  text-decoration: none;
}

.reveal-ready {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

.simple-page {
  min-height: 100vh;
  color: var(--text-dark);
  background:
    linear-gradient(90deg, rgba(8, 37, 59, 0.06) 1px, transparent 1px),
    linear-gradient(135deg, #eff7fb 0%, #ffffff 42%, #eaf8f4 100%);
  background-size: 70px 70px, auto;
}

.simple-wrap {
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0 70px;
}

.simple-brand {
  color: var(--text-dark);
}

.simple-brand small {
  color: var(--text-soft);
}

.simple-card,
.legal-card {
  margin-top: 42px;
  border: 1px solid #d8e7ef;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 70px rgba(18, 46, 70, 0.12);
}

.simple-card {
  padding: 36px;
}

.legal-card {
  padding: 34px;
}

.simple-card h1,
.legal-card h1 {
  margin: 0;
  color: var(--text-dark);
  font-size: 2.7rem;
  line-height: 1.08;
}

.legal-card h2 {
  margin: 28px 0 8px;
  color: var(--text-dark);
  font-size: 1.2rem;
}

.simple-card p,
.legal-card p {
  color: var(--text-soft);
  font-size: 1.05rem;
  line-height: 1.7;
}

.simple-card .button {
  margin-top: 14px;
}

@media (max-width: 1060px) {
  .nav-wrap {
    grid-template-columns: minmax(230px, 1fr) auto;
  }

  .menu-button {
    display: inline-flex;
    justify-content: center;
  }

  .site-menu,
  .nav-cta {
    display: none;
  }

  .site-menu.is-open {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    padding: 0 0 14px;
  }

  .hero-inner,
  .managed-band,
  .split-section,
  .order-section {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-copy h1 {
    font-size: 3.2rem;
  }

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

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

@media (max-width: 680px) {
  .nav-wrap,
  .hero-inner,
  .section-shell,
  .trust-strip,
  .managed-band,
  .pricing-section,
  .order-section,
  .site-footer {
    width: min(100% - 22px, 1220px);
  }

  .brand small {
    display: none;
  }

  .site-menu.is-open,
  .trust-strip,
  .feature-grid,
  .pricing-grid,
  .content-columns,
  .field-row,
  .server-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-section {
    min-height: auto;
    padding: 58px 0 78px;
  }

  .hero-copy h1 {
    font-size: 2.35rem;
    line-height: 1.04;
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-visual {
    min-height: auto;
  }

  .server-orbit {
    display: none;
  }

  .section-heading h2,
  .managed-copy h2,
  .order-copy h2 {
    font-size: 2rem;
  }

  .managed-band,
  .order-section {
    padding: 22px;
  }

  .order-section {
    margin-top: 28px;
  }

  .site-footer {
    display: grid;
  }

  .site-footer nav {
    justify-content: flex-start;
  }

  .simple-card,
  .legal-card {
    padding: 24px;
  }

  .simple-card h1,
  .legal-card h1 {
    font-size: 2.05rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}
