:root {
  color-scheme: dark;
  --ink: #eef7fb;
  --muted: #9eb2c5;
  --dark: #07111f;
  --panel: rgba(10, 24, 42, 0.82);
  --panel-strong: #0d1b2e;
  --line: rgba(196, 232, 242, 0.16);
  --cyan: #35d7e7;
  --teal: #22c7a9;
  --blue: #4b8dff;
  --orange: #f5a524;
  --white: #ffffff;
  --shadow: 0 26px 90px rgba(0, 0, 0, 0.34);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 15% 8%, rgba(53, 215, 231, 0.24), transparent 28rem),
    radial-gradient(circle at 87% 20%, rgba(75, 141, 255, 0.18), transparent 32rem),
    linear-gradient(180deg, #07111f 0%, #0a1422 42%, #07111f 100%);
  color: var(--ink);
  min-width: 320px;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 20;
  transform: translateY(-140%);
  background: var(--cyan);
  color: #04111c;
  padding: 10px 14px;
  border-radius: var(--radius);
  font-weight: 800;
}

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

.section-shell {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 15;
  background: rgba(7, 17, 31, 0.76);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(7, 17, 31, 0.94);
  border-color: var(--line);
}

.nav-wrap {
  width: min(1180px, calc(100% - 40px));
  min-height: 76px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 138px;
}

.brand img {
  width: 156px;
  height: auto;
  display: block;
  filter: drop-shadow(0 10px 26px rgba(53, 215, 231, 0.14));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #c8d7e5;
  font-size: 0.94rem;
  font-weight: 700;
}

.nav-links a {
  transition: color 160ms ease;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-button {
  color: #04111c;
  background: linear-gradient(135deg, var(--cyan), var(--teal));
  padding: 12px 16px;
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(34, 199, 169, 0.22);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink);
  padding: 10px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100svh - 76px);
  padding: clamp(24px, 5vh, 48px) 0;
  display: flex;
  align-items: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, black, transparent 88%);
}

.hero-media {
  position: absolute;
  inset: 0;
  opacity: 0.46;
  pointer-events: none;
}

.hero-media img {
  position: absolute;
  right: max(-40px, calc((100vw - 1180px) / 2 - 60px));
  top: 50%;
  width: min(54vw, 680px);
  min-width: 460px;
  height: auto;
  transform: translateY(-50%);
  filter: saturate(1.08) contrast(1.04);
}

.hero-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 390px);
  gap: 34px;
  align-items: center;
}

.hero-copy {
  max-width: 760px;
}

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

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

h1 {
  font-size: clamp(3.1rem, 5.2vw, 5.7rem);
  line-height: 0.92;
  letter-spacing: 0;
  margin-bottom: 20px;
  max-width: 950px;
}

.hero-text {
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.55;
  color: #bfd0df;
  max-width: 660px;
  margin-bottom: 24px;
}

.hero-actions,
.contact-form .wide {
  grid-column: 1 / -1;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  padding: 14px 20px;
  border: 1px solid var(--line);
  font-weight: 900;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

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

.button.primary {
  border: 0;
  color: #04111c;
  background: linear-gradient(135deg, var(--cyan), var(--teal));
  box-shadow: 0 20px 46px rgba(34, 199, 169, 0.22);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--ink);
}

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

.hero-stats div,
.service-card,
.timeline article,
.metric-stack div,
.about-card,
.about-facts div,
.faq-list details,
.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.18);
}

.hero-stats div {
  padding: 14px;
}

.hero-stats dt {
  font-size: 1.72rem;
  font-weight: 950;
  color: var(--white);
}

.hero-stats dd {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.signal-panel {
  align-self: stretch;
  min-height: 460px;
  max-height: min(520px, calc(100svh - 140px));
  border: 1px solid rgba(53, 215, 231, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(7, 17, 31, 0.28), rgba(7, 17, 31, 0.82)),
    rgba(10, 24, 42, 0.7);
  box-shadow: var(--shadow);
  overflow: hidden;
  backdrop-filter: blur(14px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.panel-top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  color: #d8e9f2;
  font-size: 0.9rem;
}

.pulse-map {
  position: relative;
  min-height: 160px;
  margin: 16px;
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 34px 34px;
  overflow: hidden;
}

.pulse-map::before,
.pulse-map::after {
  content: "";
  position: absolute;
  inset: 22%;
  border: 1px solid rgba(53, 215, 231, 0.2);
  border-radius: 50%;
  transform: rotate(-18deg);
}

.pulse-map::after {
  inset: 8% 18%;
  border-color: rgba(34, 199, 169, 0.18);
}

.pulse {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 9px rgba(53, 215, 231, 0.14), 0 0 28px rgba(53, 215, 231, 0.8);
  animation: breathe 2.6s ease-in-out infinite;
}

.pulse.one { left: 24%; top: 30%; }
.pulse.two { right: 26%; top: 26%; animation-delay: 480ms; background: var(--teal); }
.pulse.three { left: 46%; bottom: 22%; animation-delay: 820ms; background: var(--blue); }
.pulse.four { right: 14%; bottom: 36%; animation-delay: 1200ms; background: var(--orange); }

@keyframes breathe {
  50% { transform: scale(1.4); opacity: 0.72; }
}

.system-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 0 16px 14px;
}

.system-grid span {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.045);
  border-radius: var(--radius);
  padding: 10px;
  color: #d9edf3;
  font-size: 0.82rem;
  font-weight: 800;
}

.availability {
  margin: 0 16px 16px;
  padding: 14px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(53, 215, 231, 0.16), rgba(34, 199, 169, 0.1));
  border: 1px solid rgba(53, 215, 231, 0.24);
}

.availability small,
.availability span {
  display: block;
  color: var(--muted);
}

.availability strong {
  display: block;
  color: var(--white);
  font-size: 2rem;
  line-height: 1.05;
  margin: 8px 0;
}

.logo-band,
.services,
.approach,
.proof,
.about,
.faq,
.contact {
  padding: 96px 0;
  position: relative;
}

.logo-band {
  background: #f4f7f2;
  border-block: 1px solid rgba(8, 36, 46, 0.12);
  color: #102033;
}

.band-heading {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 28px;
  align-items: end;
  margin-bottom: 34px;
}

.band-heading h2,
.section-heading h2,
.proof h2,
.about h2,
.contact h2 {
  font-size: clamp(2rem, 4vw, 4.1rem);
  line-height: 1;
  letter-spacing: 0;
  margin-bottom: 18px;
}

.client-grid {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 10px;
}

.client-grid img {
  width: 100%;
  height: 74px;
  object-fit: contain;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  filter: grayscale(0.18);
}

.logo-band .eyebrow,
.services .eyebrow,
.approach .eyebrow,
.faq .eyebrow {
  color: #087a78;
}

.logo-band h2,
.services h2,
.approach h2,
.faq h2,
.services h3,
.approach h3,
.faq summary {
  color: #102033;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 42px;
}

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

.section-heading p,
.proof-grid p,
.about-card p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.logo-band .section-heading p,
.services .section-heading p,
.approach .section-heading p,
.faq .section-heading p,
.services .service-card p,
.services .service-card li,
.approach .timeline p,
.faq .faq-list p {
  color: #4e6171;
}

.services {
  background:
    radial-gradient(circle at 78% 10%, rgba(245, 165, 36, 0.13), transparent 24rem),
    linear-gradient(180deg, #fbfcf8 0%, #eff5f2 100%);
  color: #102033;
}

.services .service-card,
.approach .timeline article,
.faq .faq-list details {
  border-color: rgba(8, 36, 46, 0.12);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 52px rgba(13, 31, 46, 0.08);
}

.services .service-index,
.approach .timeline span {
  color: #055654;
  background: #d9f5ee;
}

.approach {
  background: #f7f3ea;
  color: #102033;
}

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

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

.service-card::after {
  content: "";
  position: absolute;
  inset: auto 18px 18px auto;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(53, 215, 231, 0.18), transparent 68%);
}

.service-card.compact {
  min-height: 210px;
}

.service-index {
  color: var(--cyan);
  font-weight: 950;
  font-size: 0.82rem;
}

.service-card h3 {
  font-size: 1.45rem;
  margin: 18px 0 12px;
}

.service-card p,
.service-card li,
.timeline p,
.metric-stack span,
.about-facts span,
.faq-list p,
.footer p,
.footer a,
.form-note {
  color: var(--muted);
  line-height: 1.62;
}

.service-card ul {
  padding-left: 18px;
  margin: 18px 0 0;
}

.split-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 46px;
  align-items: start;
}

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

.timeline article {
  padding: 22px;
}

.timeline span {
  display: inline-flex;
  border-radius: 999px;
  padding: 5px 9px;
  font-size: 0.78rem;
  font-weight: 950;
  margin-bottom: 22px;
}

.timeline h3 {
  margin-bottom: 10px;
}

.proof {
  background:
    linear-gradient(135deg, rgba(7, 17, 31, 0.98), rgba(13, 34, 39, 0.96)),
    #07111f;
}

.proof-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 36px;
  margin-bottom: 34px;
}

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

.metric-stack div {
  padding: 22px;
}

.metric-stack strong,
.about-facts strong {
  display: block;
  color: var(--white);
  font-size: 1.22rem;
  margin-bottom: 6px;
}

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

blockquote {
  margin: 0;
  padding: 24px;
  border-left: 3px solid var(--cyan);
  background: rgba(255, 255, 255, 0.045);
  border-radius: var(--radius);
}

blockquote p {
  color: #dbeaf1;
  line-height: 1.7;
  margin-bottom: 18px;
}

cite {
  color: var(--muted);
  font-style: normal;
  font-weight: 800;
}

.about-card {
  padding: 30px;
}

.about {
  background:
    radial-gradient(circle at 10% 20%, rgba(53, 215, 231, 0.14), transparent 24rem),
    linear-gradient(180deg, #091421, #07111f);
}

.about-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.about-facts div {
  padding: 24px;
}

.about-facts strong {
  font-size: 2rem;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 22px 24px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 900;
}

.faq-list p {
  margin: 14px 0 0;
}

.contact {
  padding-bottom: 112px;
  background:
    radial-gradient(circle at 82% 12%, rgba(34, 199, 169, 0.18), transparent 28rem),
    #07111f;
}

.faq {
  background: #faf8f1;
  color: #102033;
}

.contact-shell {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
  align-items: start;
}

.email-link {
  display: inline-flex;
  color: var(--cyan);
  font-weight: 900;
  margin-top: 18px;
}

.contact-form {
  padding: 22px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #d8e9f2;
  font-weight: 800;
  font-size: 0.92rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  color: var(--ink);
  padding: 13px 14px;
  outline: none;
}

.contact-form select option {
  color: #07111f;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px rgba(53, 215, 231, 0.1);
}

.contact-form button {
  cursor: pointer;
}

.form-note {
  margin: 0;
  font-size: 0.88rem;
}

.footer {
  border-top: 1px solid var(--line);
  background: #050c16;
}

.footer-shell {
  padding: 46px 0;
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.7fr;
  gap: 36px;
}

.footer-logo {
  width: 158px;
  margin-bottom: 16px;
}

.footer h2 {
  font-size: 1rem;
  margin: 0 0 14px;
}

.footer a {
  display: block;
  margin: 8px 0;
}

.footer-bottom {
  padding: 18px 0 28px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-size: 0.9rem;
}

@media (prefers-reduced-motion: no-preference) {
  .service-card,
  .timeline article,
  .metric-stack div,
  blockquote,
  .about-card,
  .about-facts div,
  .faq-list details,
  .contact-form {
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
  }

  .service-card:hover,
  .timeline article:hover,
  .metric-stack div:hover,
  blockquote:hover,
  .about-facts div:hover {
    transform: translateY(-4px);
    border-color: rgba(53, 215, 231, 0.32);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.04));
  }
}

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

  .nav-links {
    position: fixed;
    inset: 76px 20px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(7, 17, 31, 0.98);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .hero {
    min-height: calc(100svh - 76px);
  }

  .hero-media img {
    opacity: 0.34;
    right: -240px;
    top: 48%;
  }

  .hero-shell,
  .split-section,
  .proof-grid,
  .contact-shell {
    grid-template-columns: 1fr;
  }

  .signal-panel {
    min-height: 380px;
    max-height: none;
  }

  .band-heading,
  .service-grid,
  .testimonial-row,
  .footer-shell {
    grid-template-columns: 1fr;
  }

  .client-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .service-card,
  .service-card.compact {
    min-height: auto;
  }
}

@media (max-width: 680px) {
  .section-shell,
  .nav-wrap {
    width: min(100% - 28px, 1180px);
  }

  .brand img {
    width: 138px;
  }

  .hero {
    min-height: calc(100svh - 76px);
    padding: 22px 0 26px;
  }

  .hero-shell {
    align-items: start;
  }

  h1 {
    font-size: clamp(2.55rem, 12.5vw, 3.45rem);
    line-height: 0.94;
    margin-bottom: 16px;
  }

  .eyebrow {
    font-size: 0.7rem;
    margin-bottom: 12px;
  }

  .hero-text {
    font-size: 0.98rem;
    line-height: 1.52;
    margin-bottom: 18px;
  }

  .hero-actions {
    gap: 10px;
    margin-bottom: 16px;
  }

  .button {
    min-height: 44px;
    padding: 12px 14px;
    font-size: 0.9rem;
  }

  .hero-media img {
    opacity: 0.18;
    right: -360px;
    top: 46%;
  }

  .timeline,
  .about-facts,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .hero-stats div {
    padding: 10px 8px;
  }

  .hero-stats dt {
    font-size: 1.22rem;
  }

  .hero-stats dd {
    font-size: 0.72rem;
    line-height: 1.25;
  }

  .signal-panel {
    display: none;
  }

  .client-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .logo-band,
  .services,
  .approach,
  .proof,
  .about,
  .faq,
  .contact {
    padding: 70px 0;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
