:root {
  color-scheme: dark;
  --bg: #080b12;
  --bg-soft: #0d1320;
  --panel: rgba(16, 24, 39, 0.72);
  --panel-strong: #111827;
  --text: #f4f7fb;
  --muted: #a5b2c5;
  --muted-2: #6f7d91;
  --line: rgba(255, 255, 255, 0.11);
  --accent: #60f0d5;
  --accent-2: #7aa7ff;
  --warning: #ffe58a;
  --shadow: 0 32px 100px rgba(0, 0, 0, 0.42);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --container: 1180px;
}

* { 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;
  background:
    radial-gradient(circle at 15% 8%, rgba(96, 240, 213, 0.18), transparent 30rem),
    radial-gradient(circle at 82% 18%, rgba(122, 167, 255, 0.18), transparent 28rem),
    linear-gradient(180deg, #080b12 0%, #0a0e17 44%, #070a10 100%);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.8), transparent 85%);
  z-index: -1;
}

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

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

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  transform: translateY(-150%);
  background: var(--accent);
  color: #06100e;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 800;
  z-index: 100;
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(8, 11, 18, 0.62);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, background .25s ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(8, 11, 18, 0.84);
}

.nav-wrap {
  min-height: 82px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 26px;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: linear-gradient(145deg, rgba(96,240,213,.16), rgba(122,167,255,.10));
  box-shadow: inset 0 0 26px rgba(96,240,213,.08);
}

.brand-mark svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: var(--accent);
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand strong {
  display: block;
  letter-spacing: -0.04em;
  font-size: 1.06rem;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: .78rem;
  margin-top: -2px;
}

.site-nav {
  justify-self: center;
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.035);
}

.site-nav a {
  color: var(--muted);
  font-size: .92rem;
  padding: 9px 14px;
  border-radius: 999px;
  transition: color .2s ease, background .2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
  background: rgba(255,255,255,.07);
}

.header-call {
  justify-self: end;
  color: #06100e;
  background: var(--accent);
  border-radius: 999px;
  padding: 12px 17px;
  font-weight: 850;
  box-shadow: 0 12px 35px rgba(96, 240, 213, .16);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.04);
  color: var(--text);
  place-items: center;
  padding: 12px;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  margin: 3px 0;
  border-radius: 4px;
}

.section-bleed {
  position: relative;
}

.hero {
  padding: 86px 0 74px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr);
  gap: 70px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent);
  font-size: .82rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .14em;
  margin: 0 0 20px;
}

.eyebrow span {
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  font-size: clamp(3rem, 6vw, 6.8rem);
  line-height: .88;
  letter-spacing: -0.085em;
  max-width: 900px;
  margin-bottom: 28px;
}

h2 {
  font-size: clamp(2.25rem, 4vw, 4.8rem);
  line-height: .94;
  letter-spacing: -0.075em;
  margin-bottom: 22px;
}

h3 {
  font-size: 1.34rem;
  line-height: 1.18;
  letter-spacing: -0.035em;
  margin-bottom: 12px;
}

.hero-lead,
.section-heading p,
.visit-copy > p,
.contact-copy p,
.seo-card p {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 720px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 54px;
  padding: 14px 21px;
  border-radius: 999px;
  font-weight: 850;
  border: 1px solid transparent;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #b6fff3);
  color: #06100e;
  box-shadow: 0 16px 45px rgba(96, 240, 213, .18);
}

.btn-secondary {
  border-color: var(--line);
  background: rgba(255,255,255,.045);
  color: var(--text);
}

.full { width: 100%; }

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 760px;
}

.hero-facts div {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 17px;
  background: rgba(255,255,255,.035);
}

.hero-facts strong {
  display: block;
  font-size: 1.05rem;
  letter-spacing: -0.03em;
}

.hero-facts span {
  display: block;
  color: var(--muted-2);
  font-size: .9rem;
  margin-top: 2px;
}

.hero-panel {
  min-height: 590px;
  position: relative;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.025)),
    radial-gradient(circle at 50% 32%, rgba(96,240,213,.19), transparent 30%),
    rgba(13, 19, 32, .64);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
  isolation: isolate;
}

.hero-panel::before,
.hero-panel::after {
  content: "";
  position: absolute;
  inset: 50px;
  border: 1px solid rgba(96,240,213,.12);
  border-radius: 999px;
  transform: rotate(-18deg);
}

.hero-panel::after {
  inset: 115px 42px;
  border-color: rgba(122,167,255,.14);
  transform: rotate(18deg);
}

.status-card {
  position: absolute;
  top: 52px;
  left: 44px;
  right: 44px;
  z-index: 2;
  border-radius: 26px;
  padding: 22px;
  background: rgba(6, 10, 17, .78);
  border: 1px solid var(--line);
  backdrop-filter: blur(18px);
  box-shadow: 0 25px 65px rgba(0,0,0,.32);
}

.status-top {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 850;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(96,240,213,.52);
  animation: pulse 1.6s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(96,240,213,.5); }
  70% { box-shadow: 0 0 0 12px rgba(96,240,213,0); }
  100% { box-shadow: 0 0 0 0 rgba(96,240,213,0); }
}

.terminal-lines {
  display: grid;
  gap: 9px;
  font-family: "SFMono-Regular", Consolas, monospace;
  color: var(--muted);
  font-size: .91rem;
}

.terminal-lines span {
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 13px;
  padding: 11px 12px;
  background: rgba(255,255,255,.035);
}

.orbit-card {
  position: absolute;
  z-index: 3;
  width: min(270px, calc(100% - 70px));
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.13);
  backdrop-filter: blur(16px);
  box-shadow: 0 24px 52px rgba(0,0,0,.32);
}

.orbit-card b,
.orbit-card small {
  display: block;
}

.orbit-card small {
  color: var(--muted);
  margin-top: 3px;
}

.card-a { left: 52px; bottom: 72px; }
.card-b { right: 40px; bottom: 170px; }

.icon-chip {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 13px;
  margin-bottom: 16px;
  color: #06100e;
  background: var(--accent);
  font-weight: 900;
  font-size: .8rem;
}

.hero-glow {
  position: absolute;
  width: 330px;
  height: 330px;
  border-radius: 50%;
  left: 50%;
  bottom: 16%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(96,240,213,.22), rgba(122,167,255,.08) 42%, transparent 70%);
  filter: blur(8px);
  z-index: 1;
}

.trust-strip {
  border-block: 1px solid var(--line);
  background: rgba(255,255,255,.025);
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
}

.strip-grid span {
  min-height: 86px;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--muted);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.service-section,
.process-section,
.seo-section {
  padding: 110px 0;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 410px;
  gap: 50px;
  align-items: end;
  margin-bottom: 38px;
}

.section-heading p {
  margin-bottom: 0;
}

.service-card,
.service-tile,
.process-step,
.contact-card,
.seo-card {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255,255,255,.06), rgba(255,255,255,.025));
  border-radius: var(--radius-lg);
  box-shadow: 0 26px 70px rgba(0,0,0,.22);
}

.main-card {
  padding: 28px;
}

.card-label {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--warning);
  background: rgba(255,229,138,.08);
  border: 1px solid rgba(255,229,138,.18);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 18px;
}

.main-card p,
.service-tile p,
.process-step p,
.contact-card dd,
.site-footer p {
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  color: var(--accent);
  font-weight: 900;
  margin-top: 5px;
}

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

.service-tile {
  padding: 24px;
  min-height: 265px;
  position: relative;
  overflow: hidden;
}

.service-tile::after {
  content: "";
  position: absolute;
  inset: auto -28% -50% 30%;
  height: 150px;
  background: radial-gradient(circle, rgba(96,240,213,.12), transparent 68%);
}

.tile-number {
  display: inline-block;
  color: var(--accent);
  font-weight: 950;
  margin-bottom: 56px;
}

.visit-section {
  padding: 112px 0;
  background:
    radial-gradient(circle at 14% 50%, rgba(122,167,255,.16), transparent 32rem),
    linear-gradient(90deg, rgba(255,255,255,.025), rgba(255,255,255,.045));
  border-block: 1px solid var(--line);
}

.visit-layout {
  display: grid;
  grid-template-columns: minmax(420px, .95fr) minmax(0, 1.05fr);
  gap: 70px;
  align-items: center;
}

.map-card {
  position: relative;
  min-height: 520px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, rgba(96,240,213,.2), transparent 28%),
    #0b111d;
  box-shadow: var(--shadow);
}

.map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 46px 46px;
  transform: perspective(800px) rotateX(52deg) scale(1.25) translateY(58px);
  transform-origin: center;
}

.pin {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 13px;
  border-radius: 999px;
  background: rgba(255,255,255,.09);
  border: 1px solid var(--line);
  backdrop-filter: blur(14px);
  font-weight: 850;
  box-shadow: 0 18px 45px rgba(0,0,0,.22);
}

.pin::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
}

.pin-main {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #06100e;
  background: var(--accent);
}

.pin-main::before { background: #06100e; }
.pin-one { left: 12%; top: 25%; }
.pin-two { right: 13%; top: 29%; }
.pin-three { left: 22%; bottom: 18%; }

.visit-list {
  display: grid;
  gap: 12px;
  margin: 30px 0;
}

.visit-list div {
  padding: 17px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.045);
  border: 1px solid var(--line);
}

.visit-list b,
.visit-list span {
  display: block;
}

.visit-list span {
  color: var(--muted);
  margin-top: 2px;
}

.price-note {
  display: grid;
  gap: 4px;
  padding: 20px;
  border-radius: 20px;
  border: 1px solid rgba(96,240,213,.18);
  background: rgba(96,240,213,.065);
}

.price-note span { color: var(--muted); }
.price-note a { color: var(--accent); font-weight: 900; }

.center {
  text-align: center;
  max-width: 820px;
  margin-inline: auto;
  margin-bottom: 42px;
}

.center .eyebrow { justify-content: center; }
.center p { margin-inline: auto; }

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

.process-step {
  padding: 25px;
}

.process-step span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: #06100e;
  background: var(--accent);
  font-weight: 950;
  margin-bottom: 38px;
}

.seo-section { padding-top: 0; }

.seo-card {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 40px;
  align-items: center;
  padding: 42px;
  background:
    linear-gradient(145deg, rgba(96,240,213,.08), rgba(122,167,255,.055)),
    rgba(255,255,255,.035);
}

.seo-card h2 { font-size: clamp(2rem, 3vw, 3.25rem); }
.seo-card p { margin-bottom: 0; }

.contact-section {
  padding: 105px 0;
  background:
    radial-gradient(circle at 75% 20%, rgba(96,240,213,.14), transparent 28rem),
    #090d16;
  border-block: 1px solid var(--line);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 60px;
  align-items: center;
}

.phone-big {
  display: inline-flex;
  margin-top: 20px;
  font-size: clamp(2rem, 4vw, 4.3rem);
  line-height: 1;
  letter-spacing: -0.07em;
  font-weight: 950;
  color: var(--accent);
}

.contact-card {
  padding: 30px;
}

.contact-card dl {
  display: grid;
  gap: 0;
  margin: 0 0 24px;
}

.contact-card dl div {
  display: grid;
  gap: 2px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.contact-card dt {
  color: var(--muted-2);
  font-size: .84rem;
}

.contact-card dd {
  margin: 0;
  font-weight: 800;
  color: var(--text);
}

.site-footer {
  padding: 38px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 40px;
  align-items: center;
}

.footer-brand { margin-bottom: 14px; }
.site-footer p { max-width: 420px; margin-bottom: 0; }

.footer-links,
.footer-contact {
  display: grid;
  gap: 8px;
}

.footer-links a,
.footer-contact span {
  color: var(--muted);
}

.footer-contact a {
  color: var(--accent);
  font-weight: 950;
}

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

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

@media (max-width: 1080px) {
  .nav-wrap { grid-template-columns: auto auto; }
  .site-nav,
  .header-call {
    display: none;
  }
  .nav-toggle {
    justify-self: end;
    display: block;
  }
  .site-nav.is-open {
    display: grid;
    position: absolute;
    top: 82px;
    left: 20px;
    right: 20px;
    border-radius: 22px;
    padding: 12px;
    background: rgba(10, 14, 23, .96);
    border: 1px solid var(--line);
  }
  .site-nav.is-open a { padding: 13px 15px; }
  .hero-grid,
  .visit-layout,
  .contact-grid,
  .two-col,
  .seo-card {
    grid-template-columns: 1fr;
  }
  .hero-panel,
  .map-card {
    min-height: 500px;
  }
  .service-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .strip-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .container { width: min(100% - 28px, var(--container)); }
  .hero { padding: 54px 0 54px; }
  .hero-grid { gap: 36px; }
  h1 { font-size: clamp(3rem, 16vw, 4.1rem); }
  h2 { font-size: clamp(2.25rem, 11vw, 3.2rem); }
  .hero-lead,
  .section-heading p,
  .visit-copy > p,
  .contact-copy p,
  .seo-card p {
    font-size: 1rem;
  }
  .hero-actions {
    display: grid;
  }
  .hero-facts,
  .service-grid,
  .process-grid,
  .strip-grid {
    grid-template-columns: 1fr;
  }
  .hero-panel,
  .map-card {
    min-height: 430px;
    border-radius: 26px;
  }
  .status-card {
    left: 18px;
    right: 18px;
    top: 22px;
  }
  .card-a {
    left: 18px;
    bottom: 28px;
  }
  .card-b {
    right: 18px;
    bottom: 143px;
  }
  .service-section,
  .process-section,
  .visit-section,
  .contact-section {
    padding: 74px 0;
  }
  .seo-section { padding: 0 0 74px; }
  .seo-card,
  .main-card,
  .contact-card {
    padding: 24px;
    border-radius: 24px;
  }
  .service-tile { min-height: auto; }
  .tile-number,
  .process-step span { margin-bottom: 26px; }
  .phone-big { font-size: clamp(2rem, 10vw, 3rem); }
}

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