:root {
  --bg: #020607;
  --panel: rgba(7, 18, 20, 0.78);
  --panel-strong: rgba(9, 28, 31, 0.92);
  --line: rgba(119, 255, 244, 0.16);
  --text: #eefdfb;
  --muted: rgba(238, 253, 251, 0.72);
  --neon: #69fff3;
  --neon-soft: #1ddbd0;
  --neon-deep: #08383b;
  --shadow: 0 0 24px rgba(105, 255, 243, 0.28), 0 0 70px rgba(29, 219, 208, 0.18);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: "Archivo", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 50% 8%, rgba(29, 219, 208, 0.16), transparent 30rem),
    radial-gradient(circle at 85% 48%, rgba(105, 255, 243, 0.08), transparent 28rem),
    linear-gradient(135deg, #010304 0%, #041012 54%, #020607 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle, transparent 52%, rgba(0, 0, 0, 0.72) 100%);
  z-index: 0;
}

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

.noise {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.16;
  mix-blend-mode: screen;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 240 240' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E");
}

.orb {
  position: fixed;
  width: 38rem;
  height: 38rem;
  border-radius: 999px;
  background: rgba(60, 255, 241, 0.08);
  filter: blur(60px);
  z-index: 0;
  pointer-events: none;
}
.orb-one { left: -16rem; top: 10rem; }
.orb-two { right: -18rem; bottom: -12rem; }

.page-shell {
  position: relative;
  z-index: 2;
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(28px, 5vw, 70px) 0 32px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(260px, 0.88fr) minmax(300px, 1.12fr);
  align-items: center;
  gap: clamp(28px, 5vw, 74px);
  min-height: min(820px, 94vh);
}

.hero__visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 420px;
}

.neon-ring {
  position: absolute;
  width: min(86vw, 460px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(84, 255, 244, 0.28) 0%, rgba(20, 209, 202, 0.12) 38%, transparent 70%);
  box-shadow: inset 0 0 70px rgba(105, 255, 243, 0.13), 0 0 100px rgba(105, 255, 243, 0.11);
  transform: scale(0.92);
}

.logo-neon {
  position: relative;
  width: min(84vw, 470px);
  height: auto;
  filter:
    brightness(0) saturate(100%) invert(85%) sepia(79%) saturate(107%) hue-rotate(123deg) brightness(110%) contrast(101%)
    drop-shadow(0 0 6px rgba(131, 255, 248, 0.9))
    drop-shadow(0 0 22px rgba(78, 255, 245, 0.25))
    drop-shadow(0 0 58px rgba(21, 210, 204, 0.18));
  transform-origin: center;
}

.hero__content { max-width: 640px; }
.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--neon);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 900;
}

h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 18px;
  font-family: "Saira Stencil One", "Archivo", sans-serif;
  font-size: clamp(2.75rem, 6.6vw, 5.9rem);
  line-height: 1.1;
  letter-spacing: -0.055em;
  text-transform: uppercase;
  text-shadow: 0 0 18px rgba(105, 255, 243, 0.16);
}

.lead {
  max-width: 600px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.38rem);
  line-height: 1.55;
}

.hero__actions,
.cta-band {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 900;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(105, 255, 243, 0.72);
  box-shadow: var(--shadow);
  outline: none;
}
.button-primary {
  color: #011011;
  background: linear-gradient(135deg, var(--neon), #cafffb);
  border-color: rgba(105, 255, 243, 0.7);
}
.button-secondary,
.button-map {
  color: var(--text);
  background: rgba(105, 255, 243, 0.06);
  backdrop-filter: blur(10px);
}

.contact-panel,
.location-card,
.service-card,
.cta-band {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(8, 24, 27, 0.86), rgba(2, 8, 9, 0.66));
  box-shadow: 0 20px 90px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(18px);
}

.contact-panel {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 22px;
  align-items: center;
  padding: clamp(22px, 4vw, 34px);
  border-radius: var(--radius);
  margin-top: 18px;
}

.contact-panel h2,
.location-card h2,
.services__intro h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 0.95;
  letter-spacing: -0.045em;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.contact-item {
  display: grid;
  gap: 4px;
  min-height: 92px;
  padding: 16px 18px;
  border: 1px solid rgba(105, 255, 243, 0.13);
  border-radius: 20px;
  background: rgba(105, 255, 243, 0.04);
}
.contact-item span,
.service-card__number {
  color: var(--neon);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.17em;
  font-weight: 900;
}
.contact-item strong { align-self: start; font-size: 1.08rem; line-height: 1.2; }

.location-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 26px;
  margin-top: 18px;
  padding: clamp(22px, 4vw, 34px);
  border-radius: var(--radius);
}
.location-card p { margin-bottom: 8px; font-size: 1.08rem; }
.location-card .address-line { margin-top: 22px; }
.muted { color: var(--muted); }

.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 18px;
}
.services__intro {
  grid-column: 1 / -1;
  padding: 34px 4px 12px;
}
.service-card {
  position: relative;
  min-height: 338px;
  padding: clamp(22px, 3vw, 30px);
  border-radius: var(--radius);
  overflow: hidden;
}
.service-card::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -70px;
  width: 180px;
  aspect-ratio: 1;
  border: 1px solid rgba(105, 255, 243, 0.18);
  border-radius: 50%;
  box-shadow: inset 0 0 36px rgba(105, 255, 243, 0.06);
}
.service-card h3 {
  margin: 22px 0 16px;
  font-size: clamp(1.65rem, 3vw, 2.5rem);
  line-height: 0.96;
  letter-spacing: -0.035em;
}
.service-card p {
  color: var(--muted);
  line-height: 1.66;
  font-size: 1.02rem;
}
.service-card strong { color: var(--text); }

.cta-band {
  justify-content: space-between;
  align-items: center;
  margin-top: 18px;
  padding: clamp(22px, 4vw, 34px);
  border-radius: var(--radius);
}
.cta-band p {
  margin: 0;
  max-width: 620px;
  font-size: clamp(1.25rem, 2.6vw, 2rem);
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -0.035em;
}

.footer {
  position: relative;
  z-index: 2;
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 36px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: rgba(238, 253, 251, 0.5);
  font-size: 0.9rem;
}
.footer a {
  color: var(--neon);
  border-bottom: 1px solid rgba(105, 255, 243, 0.35);
  transition: color 0.25s ease, border-color 0.25s ease, text-shadow 0.25s ease;
}
.footer a:hover,
.footer a:focus-visible {
  color: #cafffb;
  border-color: rgba(105, 255, 243, 0.85);
  text-shadow: 0 0 14px rgba(105, 255, 243, 0.5);
  outline: none;
}

@media (max-width: 920px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 24px;
  }
  .hero__visual { min-height: 330px; order: -1; }
  .contact-panel,
  .contact-grid,
  .services { grid-template-columns: 1fr; }
  .location-card { align-items: flex-start; flex-direction: column; }
  .service-card { min-height: auto; }
}

@media (max-width: 560px) {
  .page-shell { width: min(100% - 22px, 1160px); padding-top: 20px; }
  .hero__visual { min-height: 280px; }
  h1 { font-size: clamp(2.25rem, 13vw, 4rem); }
  .button { width: 100%; }
  .contact-item { min-height: 96px; }
  .footer { flex-direction: column; }
}

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