:root {
  --bg: #07090b;
  --bg-soft: #0d1114;
  --panel: #13181c;
  --panel-2: #1b2125;
  --line: #2b3338;
  --text: #f2f4f5;
  --muted: #a8afb4;
  --dim: #747d84;
  --blue: #008cff;
  --blue-deep: #006fc9;
  --spark: #f28a3a;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 88px 88px;
  opacity: 0.22;
}

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

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

p,
h1,
h2,
h3,
figure {
  margin: 0;
}

p {
  color: var(--muted);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-160%);
  background: var(--text);
  color: var(--bg);
  padding: 10px 14px;
  border-radius: 4px;
  font-weight: 700;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(7, 9, 11, 0.82);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  font-size: 24px;
  line-height: 1;
  font-weight: 850;
  letter-spacing: 0;
}

.brand span:last-child {
  color: var(--blue);
}

.brand--footer {
  margin-bottom: 14px;
}

.nav-links,
.footer-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.nav-links a,
.footer-links a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 8px 12px;
  color: var(--muted);
  font-size: 14px;
}

.nav-links a:hover,
.nav-links a[aria-current="page"],
.footer-links a:hover {
  color: var(--text);
  border-color: rgba(0, 140, 255, 0.34);
  background: rgba(0, 140, 255, 0.08);
}

.hero {
  position: relative;
  border-bottom: 1px solid var(--line);
  background: var(--bg-soft);
}

.hero-media {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-media::after,
.footer-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 9, 11, 0.18), transparent 34%, rgba(7, 9, 11, 0.18)),
    linear-gradient(180deg, transparent 58%, rgba(7, 9, 11, 0.18));
  pointer-events: none;
}

.hero-media img {
  width: 100%;
  min-height: 250px;
  object-fit: cover;
  object-position: center;
}

.hero-statement {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 54px 0 68px;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
}

.hero-statement h1,
.page-hero h1 {
  max-width: 760px;
  font-size: 64px;
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-copy {
  display: grid;
  gap: 26px;
  align-content: start;
  max-width: 610px;
}

.hero-copy p,
.page-hero-copy p,
.cta-band p {
  font-size: 18px;
}

.eyebrow {
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0;
  margin-bottom: 16px;
}

.action-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 4px;
  border: 1px solid var(--line);
  padding: 12px 18px;
  font-weight: 800;
  line-height: 1.2;
}

.button--primary {
  border-color: var(--blue-deep);
  background: var(--blue-deep);
  color: #ffffff;
}

.button--ghost {
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
}

.button:hover {
  border-color: var(--spark);
}

.section {
  position: relative;
  padding: 96px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.section--intro {
  background:
    linear-gradient(90deg, rgba(0, 140, 255, 0.08), transparent 40%),
    var(--bg);
}

.section--muted {
  background: var(--bg-soft);
}

.section-grid,
.section-heading,
.split-layout,
.detail-grid,
.feature-grid,
.cta-band,
.page-hero {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.section-grid--editorial {
  display: grid;
  grid-template-columns: 86px minmax(260px, 0.9fr) minmax(300px, 1fr);
  gap: 42px;
  align-items: start;
}

.section-number {
  color: var(--dim);
  font-size: 12px;
  font-weight: 800;
  border-top: 2px solid var(--blue);
  padding-top: 18px;
}

.section-grid h2,
.section-heading h2,
.text-panel h2,
.cta-band h2 {
  font-size: 42px;
  line-height: 1.08;
  letter-spacing: 0;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 42px;
  align-items: center;
}

.split-layout--reverse {
  grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1.15fr);
}

.split-layout--reverse .image-panel {
  order: 2;
}

.image-panel {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  background: var(--panel);
}

.image-panel img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
  object-position: center;
}

.image-panel--wide img {
  aspect-ratio: 16 / 9;
}

.text-panel {
  display: grid;
  gap: 20px;
}

.text-link {
  width: fit-content;
  color: var(--text);
  font-weight: 800;
  border-bottom: 2px solid var(--blue);
  padding-bottom: 6px;
}

.text-link:hover {
  border-color: var(--spark);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

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

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

.feature-card,
.detail-item {
  min-height: 230px;
  display: grid;
  gap: 16px;
  align-content: start;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 6px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
  padding: 24px;
}

.feature-card span,
.detail-item span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.feature-card h3,
.detail-item h2 {
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: 0;
}

.section--cta {
  background:
    linear-gradient(90deg, rgba(0, 111, 201, 0.16), transparent 46%),
    linear-gradient(180deg, var(--bg), var(--bg-soft));
}

.cta-band {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  background: rgba(19, 24, 28, 0.72);
  padding: 44px;
}

.cta-band h2 {
  max-width: 820px;
  margin-bottom: 18px;
}

.cta-band p {
  max-width: 720px;
  margin-bottom: 28px;
}

.page-hero {
  padding: 78px 0 86px;
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
  gap: 46px;
  align-items: center;
}

.page-hero-copy {
  display: grid;
  gap: 24px;
}

.page-hero .image-panel img {
  min-height: 380px;
  aspect-ratio: 16 / 9;
}

.page-hero--contact {
  align-items: stretch;
}

.contact-layout {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(340px, 1.2fr);
  gap: 24px;
  align-items: stretch;
}

.contact-panel,
.map-panel {
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 6px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
  padding: 30px;
}

.contact-panel h2 {
  font-size: 36px;
  line-height: 1.1;
  margin-bottom: 24px;
}

.contact-list {
  display: grid;
  gap: 18px;
  margin: 0;
}

.contact-list div {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  padding-top: 18px;
}

.contact-list dt {
  color: var(--dim);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-list dd {
  margin: 6px 0 0;
  color: var(--text);
  font-size: 22px;
  line-height: 1.35;
  font-weight: 800;
}

.contact-list a:hover {
  color: var(--blue);
}

.map-panel {
  display: grid;
  gap: 18px;
}

.map-frame {
  min-height: 280px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  background: var(--panel);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 280px;
  display: block;
  border: 0;
  filter: grayscale(1) invert(0.88) contrast(1.05);
}

.site-footer {
  position: relative;
  background: #050607;
}

.footer-media {
  position: relative;
  overflow: hidden;
}

.footer-media img {
  width: 100%;
  min-height: 210px;
  object-fit: cover;
  object-position: center;
}

.footer-shell {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 34px 0 42px;
  display: flex;
  justify-content: space-between;
  gap: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

:focus-visible {
  outline: 2px solid var(--spark);
  outline-offset: 4px;
}

@media (max-width: 980px) {
  .hero-statement,
  .page-hero,
  .split-layout,
  .split-layout--reverse,
  .section-grid--editorial {
    grid-template-columns: 1fr;
  }

  .split-layout--reverse .image-panel {
    order: 0;
  }

  .hero-statement h1,
  .page-hero h1 {
    font-size: 48px;
  }

  .section-grid h2,
  .section-heading h2,
  .text-panel h2,
  .cta-band h2 {
    font-size: 34px;
  }

  .feature-grid,
  .detail-grid,
  .contact-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section {
    padding: 74px 0;
  }
}

@media (max-width: 700px) {
  .nav-shell,
  .hero-statement,
  .section-grid,
  .section-heading,
  .split-layout,
  .detail-grid,
  .feature-grid,
  .cta-band,
  .page-hero,
  .footer-shell {
    width: min(100% - 32px, var(--max));
  }

  .nav-shell {
    min-height: 92px;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
  }

  .nav-links {
    justify-content: center;
  }

  .hero-media img {
    min-height: 210px;
    object-position: 42% center;
  }

  .hero-statement {
    padding: 40px 0 54px;
    gap: 28px;
  }

  .hero-statement h1,
  .page-hero h1 {
    font-size: 40px;
  }

  .hero-copy p,
  .page-hero-copy p,
  .cta-band p {
    font-size: 16px;
  }

  .action-row,
  .button {
    width: 100%;
  }

  .section-grid h2,
  .section-heading h2,
  .text-panel h2,
  .cta-band h2 {
    font-size: 30px;
  }

  .feature-grid,
  .detail-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .detail-item {
    min-height: auto;
  }

  .page-hero {
    padding: 54px 0 66px;
  }

  .image-panel img,
  .page-hero .image-panel img {
    min-height: 250px;
  }

  .cta-band {
    padding: 28px;
  }

  .contact-panel,
  .map-panel {
    padding: 24px;
  }

  .contact-list dd {
    font-size: 19px;
  }

  .footer-media img {
    min-height: 180px;
    object-position: 54% center;
  }

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

@media (max-width: 430px) {
  .brand {
    font-size: 22px;
  }

  .nav-links a,
  .footer-links a {
    font-size: 13px;
    padding: 8px 10px;
  }

  .hero-statement h1,
  .page-hero h1 {
    font-size: 34px;
  }

  .section-grid h2,
  .section-heading h2,
  .text-panel h2,
  .cta-band h2 {
    font-size: 26px;
  }

  .button {
    padding: 12px 14px;
  }
}
