:root {
  color-scheme: dark;
  --ink: #05070d;
  --panel: #0a111d;
  --panel-2: #0e1826;
  --line: rgba(128, 184, 230, 0.2);
  --text: #f5f9ff;
  --muted: #a8bad0;
  --blue: #0a7cff;
  --blue-2: #45b7ff;
  --cyan: #00d1c8;
  --green: #72e3a5;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.36);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  color: var(--text);
  background: var(--ink);
}

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

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

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  width: min(1180px, calc(100% - 32px));
  min-height: 76px;
  margin: 16px auto 0;
  padding: 12px 14px 12px 18px;
  border: 1px solid rgba(112, 181, 236, 0.22);
  border-radius: 8px;
  background: rgba(5, 10, 19, 0.82);
  box-shadow: 0 12px 38px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px);
}

.brand img {
  width: 150px;
  height: auto;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 26px;
  color: var(--muted);
  font-size: 0.95rem;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--white);
}

.header-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 6px;
  font-weight: 700;
  white-space: nowrap;
}

.header-action {
  background: rgba(10, 124, 255, 0.15);
  border: 1px solid rgba(69, 183, 255, 0.5);
  color: #d8f0ff;
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 92svh;
  overflow: hidden;
  padding: 132px 24px 72px;
  border-bottom: 1px solid var(--line);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 7, 13, 0.96) 0%, rgba(5, 7, 13, 0.84) 38%, rgba(5, 7, 13, 0.36) 72%, rgba(5, 7, 13, 0.82) 100%),
    linear-gradient(180deg, rgba(5, 7, 13, 0.42) 0%, rgba(5, 7, 13, 0.9) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  margin: 0 auto;
  padding-top: 20px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 670px;
  margin: 0;
  font-size: clamp(4rem, 11vw, 8.25rem);
  line-height: 0.9;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.08rem;
}

.hero-copy {
  max-width: 650px;
  margin: 24px 0 0;
  color: #d2deeb;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

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

.button.primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  color: var(--white);
  box-shadow: 0 16px 38px rgba(10, 124, 255, 0.34);
}

.button.secondary {
  border: 1px solid rgba(164, 207, 242, 0.34);
  background: rgba(255, 255, 255, 0.04);
  color: #eaf6ff;
}

.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 760px;
  margin-top: 34px;
}

.hero-metrics span {
  min-width: 150px;
  padding: 14px 16px;
  border: 1px solid rgba(121, 183, 232, 0.2);
  border-radius: 8px;
  background: rgba(8, 16, 28, 0.62);
  color: var(--muted);
}

.hero-metrics strong {
  display: block;
  color: var(--white);
  font-size: 1.2rem;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 18px 16px;
  border-bottom: 1px solid var(--line);
  background: #08101b;
}

.trust-strip span {
  padding: 8px 12px;
  border: 1px solid rgba(121, 183, 232, 0.18);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.9rem;
}

.section,
.hosting-band,
.contact-section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 88px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.7fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 34px;
}

.section-heading .eyebrow,
.hosting-copy .eyebrow,
.contact-section .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -34px;
}

.section-heading p:not(.eyebrow),
.hosting-copy p,
.contact-section p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.service-card,
.plan,
.timeline article,
.contact-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(15, 30, 49, 0.78), rgba(8, 16, 28, 0.95));
  box-shadow: var(--shadow);
}

.service-card {
  min-height: 246px;
  padding: 24px;
}

.service-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 40px;
  border: 1px solid rgba(69, 183, 255, 0.36);
  border-radius: 8px;
  color: var(--cyan);
  background: rgba(10, 124, 255, 0.12);
  font-size: 0;
  font-weight: 850;
}

.service-icon::before {
  font-size: 1rem;
}

.service-card:nth-child(1) .service-icon::before {
  content: "H";
}

.service-card:nth-child(2) .service-icon::before {
  content: "D";
}

.service-card:nth-child(3) .service-icon::before {
  content: "N";
}

.service-card:nth-child(4) .service-icon::before {
  content: "M";
}

.service-card p,
.timeline p,
.plan li {
  color: var(--muted);
}

.hosting-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.35fr);
  gap: 34px;
  align-items: stretch;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hosting-copy {
  align-self: center;
}

.hosting-copy p {
  margin-top: 20px;
}

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

.plan {
  position: relative;
  min-height: 330px;
  padding: 26px;
}

.plan.featured {
  border-color: rgba(69, 183, 255, 0.62);
  background: linear-gradient(180deg, rgba(10, 124, 255, 0.2), rgba(8, 16, 28, 0.96));
}

.badge {
  position: absolute;
  top: 18px;
  right: 18px;
  margin: 0;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(114, 227, 165, 0.14);
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
}

.price {
  margin: 24px 0;
  color: var(--white);
  font-size: 2.3rem;
  font-weight: 850;
  line-height: 1;
}

.price span {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 650;
}

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

.plan li {
  min-height: 24px;
  padding-left: 24px;
  background: linear-gradient(var(--cyan), var(--cyan)) 0 0.72em / 8px 8px no-repeat;
}

.section-heading.compact {
  display: block;
  max-width: 760px;
}

.section-heading.compact .eyebrow {
  margin-bottom: 14px;
}

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

.timeline article {
  min-height: 220px;
  padding: 26px;
}

.timeline span {
  display: block;
  margin-bottom: 44px;
  color: var(--blue-2);
  font-weight: 850;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(280px, 390px);
  gap: 42px;
  align-items: center;
  padding-top: 96px;
}

.contact-section h2 {
  max-width: 760px;
}

.contact-section p {
  max-width: 650px;
  margin-top: 20px;
}

.contact-panel {
  display: grid;
  gap: 12px;
  padding: 22px;
}

.contact-card {
  padding: 16px;
  border: 1px solid rgba(121, 183, 232, 0.18);
  border-radius: 8px;
  background: rgba(5, 10, 19, 0.36);
}

.contact-card h3 {
  color: var(--white);
}

.contact-label {
  margin: 0 0 6px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-card address {
  color: var(--muted);
  font-style: normal;
}

.contact-actions {
  display: grid;
  gap: 12px;
}

.map-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  color: #d8f0ff;
  font-weight: 750;
}

.map-link:hover,
.map-link:focus-visible {
  color: var(--white);
}

.map-frame {
  width: 100%;
  height: 240px;
  border: 1px solid rgba(121, 183, 232, 0.18);
  border-radius: 8px;
  background: #05070d;
}

.button.wide {
  width: 100%;
  min-height: 52px;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 30px max(24px, calc((100vw - 1180px) / 2));
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: #05070d;
}

.site-footer img {
  width: 132px;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    display: none;
  }

  .section-heading,
  .hosting-band,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .section-heading .eyebrow,
  .hosting-copy .eyebrow,
  .contact-section .eyebrow {
    margin-bottom: 0;
  }

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

@media (max-width: 640px) {
  .site-header {
    width: calc(100% - 20px);
    min-height: 64px;
    margin-top: 10px;
    padding: 10px;
  }

  .brand img {
    width: 126px;
  }

  .header-action {
    min-height: 40px;
    padding: 0 12px;
    font-size: 0.9rem;
  }

  .hero {
    min-height: 94svh;
    padding: 116px 16px 52px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(5, 7, 13, 0.96) 0%, rgba(5, 7, 13, 0.78) 72%, rgba(5, 7, 13, 0.86) 100%),
      linear-gradient(180deg, rgba(5, 7, 13, 0.3) 0%, rgba(5, 7, 13, 0.93) 100%);
  }

  h1 {
    font-size: clamp(3.4rem, 18vw, 5.6rem);
  }

  .hero-actions,
  .hero-metrics {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button,
  .hero-metrics span {
    width: 100%;
  }

  .section,
  .hosting-band,
  .contact-section {
    width: min(100% - 24px, 1180px);
    padding: 64px 0;
  }

  .section-heading {
    gap: 18px;
  }

  .service-grid,
  .plans,
  .timeline {
    grid-template-columns: 1fr;
  }

  .service-card,
  .plan,
  .timeline article {
    min-height: auto;
  }

  .service-icon,
  .timeline span {
    margin-bottom: 24px;
  }
}
