:root {
  color-scheme: dark;
  --bg: #05070a;
  --bg-soft: #0b111d;
  --bg-panel: #0c121e;
  --bg-muted: #080c13;
  --text: #f8fafc;
  --text-soft: #cbd5e1;
  --text-muted: #8c99ab;
  --line: rgba(148, 163, 184, 0.18);
  --line-strong: rgba(0, 209, 255, 0.35);
  --accent: #00d1ff;
  --accent-strong: #7ce7ff;
  --accent-ink: #03131a;
  --shell: min(1120px, calc(100vw - 3rem));
  --radius: 1.25rem;
  --radius-sm: 0.9rem;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  --heading: "Segoe UI", "Arial Nova", Arial, sans-serif;
  --body: "Segoe UI", "Arial Nova", Arial, sans-serif;
  --mono: "Consolas", "SFMono-Regular", monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at top right, rgba(0, 209, 255, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 22%),
    var(--bg);
  color: var(--text);
  font-family: var(--body);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

::selection {
  background: var(--accent);
  color: var(--accent-ink);
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.shell {
  width: var(--shell);
  margin: 0 auto;
}

.shell-block {
  padding: 6rem 0;
}

.shell-block--tight {
  padding-top: 10rem;
  padding-bottom: 5rem;
}

.shell-block--muted {
  background: var(--bg-muted);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.shell-block--band {
  background: linear-gradient(180deg, rgba(11, 17, 29, 0.96), rgba(6, 11, 20, 0.96));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.shell-block--topline {
  border-top: 1px solid var(--line);
}

.shell-block--footer {
  border-top: 1px solid var(--line);
  padding-bottom: 1.8rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(24px);
  background: rgba(5, 7, 10, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header__inner {
  min-height: 5.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-logo img,
.footer-logo {
  width: auto;
  height: 2.4rem;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.site-nav--desktop {
  display: none;
}

.site-nav--mobile {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 50%;
  transform: translateX(-50%);
  width: var(--shell);
  display: grid;
  gap: 1rem;
  padding: 1rem 1.1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(5, 7, 10, 0.98);
  box-shadow: var(--shadow);
}

.site-nav__link {
  color: var(--text-soft);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.site-nav__link:hover,
.site-nav__link.is-active {
  color: var(--accent-strong);
}

.site-nav__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--text);
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 8rem 0 4rem;
}

.hero__image,
.excellence > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay,
.excellence__overlay,
.industry-card__overlay {
  position: absolute;
  inset: 0;
}

.hero__overlay--horizontal {
  background: linear-gradient(90deg, rgba(5, 7, 10, 0.98), rgba(5, 7, 10, 0.74), transparent 72%);
}

.hero__overlay--vertical {
  background: linear-gradient(180deg, rgba(5, 7, 10, 0.24), transparent 38%, rgba(5, 7, 10, 0.88));
}

.hero__content,
.excellence__content {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0;
  color: var(--text-muted);
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow--accent {
  color: var(--accent-strong);
}

.status-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 1.1rem rgba(0, 209, 255, 0.65);
}

.hero h1,
.page-hero__title,
.display-title,
.contact-band h2 {
  margin: 0;
  font-family: var(--heading);
  text-transform: uppercase;
  letter-spacing: -0.05em;
  line-height: 0.92;
}

.hero h1 {
  max-width: 7ch;
  margin-top: 1.2rem;
  font-size: clamp(3.8rem, 12vw, 7rem);
  font-weight: 800;
}

.hero h1 span {
  color: #93a4b8;
}

.hero__lead,
.page-hero__text,
.intro-copy p,
.capability-card p,
.industry-card p,
.value-card p,
.statement-card p,
.presence__copy p,
.contact-layout p,
.gallery-card p,
.two-column-copy p,
.capability-split__copy p,
.split-heading p,
.excellence__lead,
.footer-grid p {
  color: var(--text-soft);
  line-height: 1.8;
}

.hero__lead {
  max-width: 42rem;
  margin: 1.5rem 0 0;
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.35rem;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 700;
}

.button:hover {
  transform: translateY(-1px);
}

.button--solid {
  background: var(--accent);
  color: var(--accent-ink);
}

.button--ghost,
.button--outline {
  border-color: var(--line-strong);
  color: var(--accent-strong);
}

.button--ghost-light {
  border-color: rgba(255, 255, 255, 0.22);
  color: var(--text);
}

.button--full {
  width: 100%;
}

.section-meta {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.5rem;
  color: var(--text-muted);
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.section-meta__index {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--accent-strong);
}

.section-meta__index i {
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 1rem rgba(0, 209, 255, 0.75);
}

.section-meta__line {
  flex: 1;
  height: 1px;
  background: var(--line);
}

.section-meta__coords {
  display: none;
}

.page-hero {
  border-bottom: 1px solid var(--line);
}

.page-hero__title {
  max-width: 12ch;
  font-size: clamp(3rem, 10vw, 6rem);
  font-weight: 800;
}

.page-hero__text {
  max-width: 42rem;
  margin: 1.6rem 0 0;
  font-size: 1.1rem;
}

.intro-grid,
.two-column-copy,
.contact-layout,
.split-heading,
.contact-band__layout,
.footer-grid {
  display: grid;
  gap: 2rem;
}

.display-title {
  max-width: 12ch;
  font-size: clamp(2.5rem, 7vw, 4.8rem);
  font-weight: 780;
}

.display-title--small {
  font-size: clamp(2.35rem, 6vw, 3.8rem);
}

.intro-copy {
  max-width: 34rem;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.stat-row strong {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--text);
  font-size: 1.9rem;
}

.stat-row span,
.capability-card__index,
.presence__coords,
.footer-legal,
.gallery-card__dots {
  color: var(--text-muted);
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.split-heading {
  margin-bottom: 2rem;
}

.split-heading p {
  max-width: 23rem;
  margin: 0;
}

.card-grid {
  display: grid;
  gap: 1.25rem;
}

.panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(12, 18, 30, 0.96), rgba(7, 11, 18, 0.98));
  box-shadow: var(--shadow);
}

.panel--interactive {
  transition: transform 180ms ease, border-color 180ms ease;
}

.panel--interactive:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
}

.capability-card,
.value-card,
.gallery-card__body {
  padding: 1.5rem;
}

.capability-card__header,
.industry-card__content {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.capability-card__badge,
.value-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 999px;
  background: rgba(0, 209, 255, 0.12);
  color: var(--accent-strong);
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.capability-card h3,
.industry-card h3,
.gallery-card h3,
.value-card h3 {
  margin: 1.15rem 0 0;
  font-size: 1.45rem;
}

.capability-card ul {
  margin: 1.2rem 0 0;
  padding: 1.1rem 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.capability-card li {
  margin-top: 0.55rem;
  color: var(--text-muted);
}

.capability-card li::before {
  content: "- ";
}

.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1.2rem;
  color: var(--accent-strong);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.inline-link--light {
  color: var(--text);
}

.industry-card {
  min-height: 21rem;
}

.industry-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
  transition: transform 240ms ease, opacity 240ms ease;
}

.industry-card:hover img {
  transform: scale(1.03);
  opacity: 0.88;
}

.industry-card__overlay {
  background: linear-gradient(180deg, transparent, rgba(5, 7, 10, 0.9) 76%);
}

.industry-card__content {
  position: relative;
  z-index: 1;
  height: 100%;
  padding: 1.6rem;
  flex-direction: column;
  justify-content: flex-end;
}

.statement-grid,
.panel--split {
  display: grid;
}

.statement-grid {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.statement-card,
.capability-split__copy,
.presence__copy {
  padding: 2rem;
}

.statement-card {
  background: linear-gradient(180deg, rgba(11, 17, 29, 0.94), rgba(8, 12, 19, 0.94));
}

.statement-card p:last-child {
  margin: 1.2rem 0 0;
  color: var(--text);
  font-size: 1.6rem;
  line-height: 1.5;
}

.value-card p,
.gallery-card p {
  margin: 0.7rem 0 0;
}

.excellence {
  position: relative;
  overflow: hidden;
}

.excellence__overlay {
  background: linear-gradient(90deg, rgba(5, 7, 10, 0.96), rgba(5, 7, 10, 0.82), rgba(5, 7, 10, 0.38));
}

.excellence__steps {
  display: grid;
  gap: 0.25rem;
  margin-top: 1rem;
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.excellence__steps p {
  margin: 0;
}

.excellence__steps span {
  color: var(--accent);
}

.excellence__lead {
  max-width: 34rem;
  margin: 1.75rem 0 0;
}

.presence img,
.capability-split img {
  width: 100%;
  height: 100%;
  min-height: 20rem;
  object-fit: cover;
}

.presence__coords {
  display: block;
  margin-top: 2rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
}

.contact-band h2 {
  max-width: 13ch;
  margin-top: 0.9rem;
  font-size: clamp(2.35rem, 6vw, 4.8rem);
  font-weight: 780;
}

.gallery-card__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.gallery-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-card__dots {
  display: flex;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.9rem;
  border-top: 1px solid var(--line);
}

.gallery-dot {
  width: 0.7rem;
  height: 0.7rem;
  border: 0;
  border-radius: 50%;
  background: rgba(148, 163, 184, 0.45);
}

.gallery-dot.is-active {
  background: var(--accent);
  transform: scale(1.15);
}

.contact-layout {
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.6rem;
}

.contact-form span {
  color: var(--text-soft);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(11, 17, 29, 0.92);
  color: var(--text);
  padding: 0.95rem 1rem;
}

.contact-form textarea {
  min-height: 10rem;
  resize: vertical;
}

.contact-form__full {
  grid-column: 1 / -1;
}

.form-success {
  margin: 0;
  color: var(--accent-strong);
}

.not-found {
  display: grid;
  gap: 1rem;
}

.footer-grid p,
.footer-status p {
  margin: 0.8rem 0 0;
}

.footer-links {
  display: grid;
  gap: 0.7rem 1rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  margin-top: 1.25rem;
  width: fit-content;
}

.social-link__logo {
  display: block;
  width: clamp(9rem, 18vw, 12rem);
  height: auto;
}

.footer-legal {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(148, 163, 184, 0.1);
}

@media (min-width: 720px) {
  .card-grid--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .card-grid--gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .statement-grid,
  .panel--split,
  .contact-band__layout,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .site-nav--desktop {
    display: flex;
  }

  .site-nav__toggle,
  .site-nav--mobile {
    display: none;
  }

  .section-meta__coords {
    display: inline;
  }

  .intro-grid,
  .two-column-copy,
  .contact-layout {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  }

  .split-heading,
  .contact-band__layout,
  .footer-grid {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
  }

  .contact-band__layout {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
  }

  .card-grid--four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .card-grid--industries {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .card-grid--gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .statement-grid,
  .panel--split {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
  }

  .footer-status {
    text-align: right;
  }
}

@media (max-width: 719px) {
  .hero {
    padding-top: 7rem;
  }

  .hero h1 {
    max-width: 10ch;
    font-size: clamp(3rem, 13vw, 5rem);
    text-wrap: balance;
    overflow-wrap: anywhere;
  }

  .excellence__steps {
    font-size: clamp(2rem, 8vw, 3.25rem);
  }

  .excellence__steps p {
    white-space: nowrap;
  }

  .section-meta__line,
  .section-meta__coords {
    display: none;
  }

  .footer-legal {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}