:root {
  --bg: #030711;
  --bg-soft: #07101c;
  --panel: #0d1828;
  --text: #f7f9ff;
  --muted: #aab5c9;
  --line: rgba(255,255,255,.11);
  --blue: #1e68ff;
  --blue2: #0f4dcc;
  --cyan: #56d8ff;
  --max: 1220px;
  --radius: 22px;
  --shadow: 0 25px 75px rgba(0,0,0,.36);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 0%, rgba(30,104,255,.09), transparent 32rem),
    var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

img { max-width: 100%; }
a { color: inherit; }

.skip-link {
  position: fixed;
  top: -100px;
  left: 20px;
  z-index: 5000;
  padding: 12px 16px;
  background: #fff;
  color: #000;
  border-radius: 8px;
}
.skip-link:focus { top: 20px; }

.topbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1200;
  height: 40px;
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, #0d3c9a, #1e68ff);
  box-shadow: 0 8px 24px rgba(0,0,0,.22);
}

.topbar-inner {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
  gap: 28px;
  font-size: .76rem;
}

.topbar a,
.topbar-location {
  display: inline-flex;
  gap: 8px;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
}
.topbar a:hover { text-decoration: underline; }
.topbar span span,
.topbar a span { opacity: .75; }
.topbar strong { font-size: .79rem; }

.site-header {
  position: fixed;
  inset: 40px 0 auto 0;
  z-index: 1100;
  border-bottom: 1px solid transparent;
  transition: .25s ease;
}
.site-header.scrolled {
  background: rgba(3,7,17,.86);
  border-color: var(--line);
  backdrop-filter: blur(16px);
}

.nav-shell {
  width: min(var(--max), calc(100% - 36px));
  min-height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand { display: flex; align-items: center; }
.brand img {
  width: 205px;
  max-height: 60px;
  object-fit: contain;
  object-position: left center;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 27px;
}
.main-nav a {
  color: #e0e8f6;
  text-decoration: none;
  font-size: .94rem;
  font-weight: 720;
}
.main-nav a:hover { color: #fff; }
.nav-cta {
  padding: 11px 17px;
  border: 1px solid rgba(86,216,255,.36);
  border-radius: 999px;
  background: rgba(30,104,255,.16);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: transparent;
}
.menu-button span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: #fff;
}

.hero {
  position: relative;
  min-height: 860px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 175px 22px 100px;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2,7,16,.30), rgba(2,7,16,.12) 45%, rgba(2,7,16,.52)),
    linear-gradient(to bottom, rgba(2,7,16,.30), rgba(2,7,16,.78) 74%, var(--bg));
}

.hero-shell {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 70px;
  align-items: center;
}

.logo-panel {
  padding: 24px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 28px;
  background: rgba(4,10,21,.28);
  backdrop-filter: blur(4px);
  box-shadow: var(--shadow);
}
.logo-panel img {
  display: block;
  width: 100%;
  max-height: 520px;
  object-fit: contain;
}

.eyebrow {
  margin: 0 0 14px;
  color: #70b8ff;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.hero-copy h1,
.section-heading h2,
.split-copy h2,
.contact-card h2 {
  margin: 0;
  line-height: 1.04;
  letter-spacing: -.04em;
}
.hero-copy h1 {
  font-size: clamp(3.2rem, 6.4vw, 6.2rem);
  text-wrap: balance;
}
.hero-copy h1 span { color: #2f7dff; }
.hero-copy > p:not(.eyebrow) {
  max-width: 720px;
  color: #d3dbea;
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 31px;
}

.button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 13px;
  color: #fff;
  text-decoration: none;
  font-weight: 850;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button.primary {
  background: linear-gradient(135deg, var(--blue), var(--blue2));
  box-shadow: 0 16px 42px rgba(30,104,255,.30);
}
.button.secondary {
  border-color: rgba(121,183,255,.50);
  background: rgba(3,7,17,.54);
}
.button-kicker {
  display: block;
  margin-right: 10px;
  opacity: .70;
  font-size: .76rem;
  font-weight: 700;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 13px 26px;
  margin-top: 34px;
  color: #b0bbcc;
  font-size: .88rem;
}
.hero-trust span::before {
  content: "•";
  margin-right: 8px;
  color: var(--cyan);
}

.service-ribbon {
  position: relative;
  z-index: 3;
  margin-top: -40px;
  padding: 0 22px;
}
.ribbon-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(6,13,25,.92);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}
.ribbon-inner article {
  min-height: 145px;
  padding: 26px;
  border-right: 1px solid var(--line);
}
.ribbon-inner article:last-child { border-right: 0; }
.ribbon-inner span {
  color: #2f7dff;
  font-size: .75rem;
  font-weight: 900;
}
.ribbon-inner strong {
  display: block;
  margin-top: 13px;
  font-size: 1.07rem;
}
.ribbon-inner small {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  line-height: 1.45;
}

.section { padding: 115px 22px; }
.section > * {
  width: min(var(--max), 100%);
  margin-left: auto;
  margin-right: auto;
}
.section-heading { max-width: 760px; }
.section-heading h2,
.split-copy h2,
.contact-card h2 {
  font-size: clamp(2.3rem, 5vw, 4.35rem);
  text-wrap: balance;
}
.section-heading > p:last-child,
.split-copy > p,
.about-copy p,
.contact-card p {
  color: var(--muted);
  font-size: 1.08rem;
}

.services-section {
  background:
    radial-gradient(circle at 85% 7%, rgba(30,104,255,.13), transparent 28rem),
    #07101c;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 50px;
}
.service-card {
  min-height: 300px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255,255,255,.045), transparent),
    rgba(5,12,24,.74);
  box-shadow: var(--shadow);
  transition: transform .25s ease, border-color .25s ease;
}
.service-card:hover {
  transform: translateY(-7px);
  border-color: rgba(86,216,255,.42);
}
.service-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 27px;
  border: 1px solid rgba(86,216,255,.34);
  border-radius: 13px;
  color: var(--cyan);
  background: rgba(30,104,255,.10);
  font-weight: 900;
}
.service-card h3 {
  margin: 0 0 11px;
  font-size: 1.3rem;
}
.service-card p {
  margin: 0 0 22px;
  color: var(--muted);
}
.service-card a {
  color: #70b8ff;
  text-decoration: none;
  font-weight: 820;
}

.split-section {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
  padding: 120px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 75px;
  align-items: center;
}
.reverse .split-copy { order: 2; }
.split-copy > p { margin-top: 25px; }
.split-copy ul {
  padding: 0;
  margin: 30px 0;
  list-style: none;
}
.split-copy li {
  position: relative;
  padding: 11px 0 11px 31px;
  color: #dbe4f3;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.split-copy li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--cyan);
  font-weight: 900;
}
.inline-link {
  color: #70b8ff;
  font-weight: 850;
  text-decoration: none;
}

.visual-panel {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 32px;
  background:
    radial-gradient(circle at 65% 25%, rgba(30,104,255,.34), transparent 15rem),
    linear-gradient(145deg, #0d1d35, #07101c);
  box-shadow: var(--shadow);
}
.visual-caption {
  position: absolute;
  inset: auto 26px 26px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  background: rgba(4,10,21,.74);
  backdrop-filter: blur(14px);
}
.visual-caption span {
  display: block;
  color: #70b8ff;
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.visual-caption strong {
  display: block;
  margin-top: 5px;
  font-size: 1.1rem;
}

.wifi-arc {
  position: absolute;
  left: 50%;
  top: 42%;
  border: 2px solid rgba(86,216,255,.8);
  border-color: rgba(86,216,255,.8) transparent transparent transparent;
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(180deg);
}
.a1 { width: 110px; height: 110px; }
.a2 { width: 220px; height: 220px; opacity: .65; }
.a3 { width: 340px; height: 340px; opacity: .32; }
.wifi-dot {
  position: absolute;
  left: 50%;
  top: 43%;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 35px rgba(86,216,255,.9);
  transform: translate(-50%, -50%);
}

.business {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  padding: 60px;
}
.rack-line {
  height: 46px;
  border: 1px solid rgba(86,216,255,.28);
  border-radius: 9px;
  background:
    linear-gradient(90deg, rgba(30,104,255,.16), transparent 50%),
    rgba(0,0,0,.20);
}
.rack-lights {
  position: absolute;
  top: 93px;
  right: 82px;
  display: flex;
  gap: 8px;
}
.rack-lights i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 11px rgba(86,216,255,.8);
}

.trust-section {
  padding-top: 35px;
  padding-bottom: 35px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #07101c;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.trust-grid article {
  padding: 26px;
  border-right: 1px solid var(--line);
}
.trust-grid article:last-child { border-right: 0; }
.trust-grid span {
  color: #2f7dff;
  font-size: .75rem;
  font-weight: 900;
}
.trust-grid h3 {
  margin: 11px 0 6px;
  font-size: 1.08rem;
}
.trust-grid p {
  margin: 0;
  color: var(--muted);
}

.about-section { background: #050b15; }
.about-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 80px;
}
.about-copy { padding-top: 16px; }

.contact-section {
  padding: 65px 22px 120px;
}
.contact-card {
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding: 55px;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 50px;
  align-items: center;
  border: 1px solid rgba(86,216,255,.25);
  border-radius: 28px;
  background:
    radial-gradient(circle at 100% 0%, rgba(30,104,255,.28), transparent 25rem),
    linear-gradient(135deg, #0d1c34, #07101c);
  box-shadow: var(--shadow);
}
.phone-link {
  display: inline-block;
  margin-top: 12px;
  color: #8fc8ff;
  font-weight: 850;
  text-decoration: none;
}
.contact-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact-options article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(4,10,21,.46);
}
.contact-options article > span {
  color: #70b8ff;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.contact-options h3 {
  margin: 8px 0;
  font-size: 1.24rem;
}
.contact-options p {
  margin: 0 0 20px;
  font-size: .95rem;
}
.contact-options .button { width: 100%; }

.mobile-call { display: none; }

footer {
  padding: 65px 22px 30px;
  border-top: 1px solid var(--line);
  background: #02050c;
}
.footer-grid,
.footer-bottom {
  width: min(var(--max), 100%);
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr .75fr .75fr;
  gap: 55px;
}
.footer-grid img { width: 220px; }
.footer-grid p {
  max-width: 390px;
  color: var(--muted);
}
.footer-grid h3 {
  margin: 0 0 13px;
  font-size: .83rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.footer-grid a,
.footer-grid span {
  display: block;
  margin: 8px 0;
  color: var(--muted);
  text-decoration: none;
}
.footer-grid a:hover { color: #fff; }
.footer-bottom {
  margin-top: 45px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  color: #7f8ca3;
  font-size: .88rem;
}
.footer-bottom a {
  color: #aeb9cd;
  text-decoration: none;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1000px) {
  .hero-shell,
  .split-section,
  .about-grid,
  .contact-card {
    grid-template-columns: 1fr;
  }
  .hero-shell { gap: 45px; }
  .hero-art { max-width: 760px; margin: 0 auto; }
  .hero-copy { text-align: center; }
  .hero-actions,
  .hero-trust { justify-content: center; }
  .reverse .split-copy { order: 0; }
}

@media (max-width: 900px) {
  .menu-button { display: block; }

  .main-nav {
    position: absolute;
    top: 75px;
    right: 18px;
    width: min(320px, calc(100vw - 36px));
    padding: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(3,7,17,.97);
    box-shadow: var(--shadow);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 11px 12px; }

  .ribbon-inner,
  .services-grid,
  .trust-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .ribbon-inner article:nth-child(2),
  .trust-grid article:nth-child(2) { border-right: 0; }
  .ribbon-inner article:nth-child(-n+2),
  .trust-grid article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }

  .visual-panel { min-height: 420px; }
}

@media (max-width: 680px) {
  .topbar-inner { justify-content: center; }
  .topbar a[href^="mailto:"],
  .topbar-location { display: none; }

  .brand img { width: 155px; }

  .hero {
    min-height: 790px;
    padding: 155px 18px 90px;
  }
  .hero-copy h1 { font-size: clamp(3rem, 15vw, 4.7rem); }

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

  .section { padding: 82px 18px; }

  .ribbon-inner,
  .services-grid,
  .trust-grid,
  .footer-grid,
  .contact-options {
    grid-template-columns: 1fr;
  }

  .ribbon-inner article,
  .trust-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .ribbon-inner article:last-child,
  .trust-grid article:last-child { border-bottom: 0; }

  .split-section {
    width: min(100% - 36px, var(--max));
    padding: 84px 0;
  }
  .visual-panel { min-height: 365px; }
  .business { padding: 35px; }
  .contact-card { padding: 34px 24px; }

  .mobile-call {
    position: fixed;
    z-index: 1300;
    left: 16px;
    right: 16px;
    bottom: 16px;
    display: block;
    padding: 14px 18px;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, var(--blue), var(--blue2));
    box-shadow: 0 14px 38px rgba(0,0,0,.35);
    text-align: center;
    text-decoration: none;
    font-weight: 900;
  }

  body { padding-bottom: 78px; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
  .reveal { opacity: 1; transform: none; }
}
