:root {
  --black: #050505;
  --ink: #0b0b0c;
  --charcoal: #151617;
  --graphite: #232527;
  --steel: #8d939a;
  --muted: #b9bec4;
  --paper: #f4f1ea;
  --amber: #f2b632;
  --amber-strong: #ffc342;
  --line: rgba(255, 255, 255, 0.12);
  --panel: rgba(21, 22, 23, 0.86);
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.site-header {
  align-items: center;
  backdrop-filter: blur(16px);
  background: rgba(5, 5, 5, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  height: 74px;
  inset: 0 0 auto;
  justify-content: space-between;
  padding: 0 max(22px, calc((100% - var(--max-width)) / 2));
  position: fixed;
  z-index: 20;
}

.site-header.is-scrolled {
  background: rgba(5, 5, 5, 0.88);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}

.brand {
  align-items: center;
  display: inline-flex;
  font-size: 1.05rem;
  font-weight: 750;
  gap: 10px;
}

.brand-mark {
  background:
    linear-gradient(135deg, var(--amber), #8f6412),
    var(--amber);
  border-radius: 4px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.2), 0 0 28px rgba(242, 182, 50, 0.35);
  display: inline-block;
  height: 18px;
  position: relative;
  width: 18px;
}

.brand-mark::after {
  background: var(--black);
  content: "";
  height: 7px;
  inset: 5px auto auto 5px;
  position: absolute;
  width: 7px;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: 30px;
}

.site-nav a {
  color: var(--muted);
  font-size: 0.92rem;
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--amber-strong);
}

.nav-toggle {
  align-items: center;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--paper);
  cursor: pointer;
  display: none;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.nav-toggle svg {
  height: 22px;
  width: 22px;
}

.hero {
  min-height: 84svh;
  overflow: hidden;
  padding: 132px max(22px, calc((100% - var(--max-width)) / 2)) 82px;
  position: relative;
}

.hero-image {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
  z-index: 0;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.96) 0%, rgba(5, 5, 5, 0.84) 34%, rgba(5, 5, 5, 0.2) 72%),
    linear-gradient(0deg, rgba(5, 5, 5, 0.74) 0%, rgba(5, 5, 5, 0.08) 44%, rgba(5, 5, 5, 0.55) 100%);
  inset: 0;
  position: absolute;
  z-index: 1;
}

.hero-content {
  max-width: 720px;
  position: relative;
  z-index: 2;
}

.eyebrow {
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 760;
  margin: 0 0 18px;
  text-transform: uppercase;
}

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

h1 {
  font-size: 4.6rem;
  font-weight: 760;
  line-height: 0.98;
  margin-bottom: 24px;
  max-width: 820px;
}

.hero-copy {
  color: #d6d2c9;
  font-size: 1.12rem;
  margin-bottom: 32px;
  max-width: 620px;
}

.hero-actions,
.cta {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  align-items: center;
  border-radius: 6px;
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-size: 0.94rem;
  font-weight: 760;
  gap: 10px;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.protected-contact {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  max-width: 430px;
}

.contact-label {
  color: var(--steel);
  font-size: 0.82rem;
  font-weight: 760;
  text-transform: uppercase;
  width: 100%;
}

.email-output {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  color: var(--paper);
  font-size: 0.94rem;
  min-height: 42px;
  padding: 10px 12px;
  word-break: break-word;
}

.copy-email {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  color: var(--paper);
  cursor: pointer;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 740;
  min-height: 42px;
  padding: 9px 12px;
}

.copy-email:hover,
.copy-email:focus-visible {
  border-color: rgba(242, 182, 50, 0.7);
  color: var(--amber-strong);
}

.copy-status {
  color: var(--steel);
  font-size: 0.82rem;
  min-height: 1.2em;
  width: 100%;
}

.button svg {
  height: 18px;
  width: 18px;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--amber);
  border: 1px solid var(--amber);
  color: #111;
}

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--amber-strong);
  border-color: var(--amber-strong);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--paper);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  border-color: rgba(242, 182, 50, 0.7);
  color: var(--amber-strong);
}

.signal-row {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  margin-top: 42px;
  padding-top: 22px;
}

.signal-row span {
  align-items: center;
  display: inline-flex;
  font-size: 0.9rem;
  gap: 9px;
}

.signal-row span::before {
  background: var(--amber);
  border-radius: 999px;
  content: "";
  height: 7px;
  width: 7px;
}

.trust-strip {
  background: #111213;
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, 1fr);
}

.trust-strip div {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015));
  min-height: 142px;
  padding: 28px max(22px, calc((100vw - var(--max-width)) / 2 + 22px));
}

.trust-strip strong {
  color: var(--paper);
  display: block;
  font-size: 1rem;
  margin-bottom: 8px;
}

.trust-strip span {
  color: var(--muted);
  display: block;
  max-width: 310px;
}

.section {
  padding: 94px max(22px, calc((100% - var(--max-width)) / 2));
}

.section-heading {
  max-width: 710px;
}

.section-heading h2,
.cta h2 {
  font-size: 3rem;
  font-weight: 740;
  line-height: 1.05;
  margin-bottom: 0;
}

.section-heading.compact {
  max-width: 760px;
}

.intro-grid {
  color: var(--muted);
  display: grid;
  gap: 36px;
  grid-template-columns: 1fr 1fr;
  margin-top: 36px;
  max-width: 1000px;
}

.intro-grid p {
  font-size: 1.05rem;
  margin: 0;
}

.services {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, 1fr);
  padding-top: 0;
}

.service-card {
  background: var(--charcoal);
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 390px;
  padding: 26px;
}

.service-icon {
  align-items: center;
  background: rgba(242, 182, 50, 0.1);
  border: 1px solid rgba(242, 182, 50, 0.26);
  border-radius: 6px;
  color: var(--amber);
  display: flex;
  height: 48px;
  justify-content: center;
  margin-bottom: 34px;
  width: 48px;
}

.service-icon svg {
  height: 24px;
  width: 24px;
}

.service-card h3 {
  font-size: 1.16rem;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--muted);
  margin: 0;
}

.service-points {
  border-top: 1px solid var(--line);
  color: #d8d1c3;
  display: grid;
  gap: 8px;
  list-style: none;
  margin: 22px 0 0;
  padding: 18px 0 0;
}

.service-points li {
  align-items: center;
  display: flex;
  font-size: 0.9rem;
  gap: 9px;
}

.service-points li::before {
  background: var(--amber);
  border-radius: 999px;
  content: "";
  height: 5px;
  flex: 0 0 5px;
  width: 5px;
}

.operations {
  background:
    linear-gradient(90deg, rgba(242, 182, 50, 0.09), transparent 34%),
    #101112;
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  padding: 96px max(22px, calc((100% - var(--max-width)) / 2));
}

.operations-inner {
  display: grid;
  gap: 48px;
}

.operations-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: 0.86fr 1.14fr;
}

.ops-panel {
  background: rgba(5, 5, 5, 0.56);
  border: 1px solid rgba(242, 182, 50, 0.28);
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.36);
  padding: 28px;
}

.panel-label {
  color: var(--steel);
  display: block;
  font-size: 0.78rem;
  font-weight: 740;
  margin-bottom: 26px;
  text-transform: uppercase;
}

.status-line {
  align-items: center;
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}

.status-dot {
  background: var(--amber);
  border-radius: 999px;
  box-shadow: 0 0 22px rgba(242, 182, 50, 0.75);
  height: 10px;
  width: 10px;
}

.ops-panel dl {
  display: grid;
  gap: 0;
  margin: 0;
}

.ops-panel dl div {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 18px;
  grid-template-columns: 120px 1fr;
  padding: 16px 0;
}

.ops-panel dt {
  color: var(--steel);
  font-size: 0.9rem;
}

.ops-panel dd {
  color: var(--paper);
  margin: 0;
}

.ops-copy {
  align-self: end;
  color: var(--muted);
  display: grid;
  gap: 18px;
  max-width: 650px;
}

.ops-copy p {
  font-size: 1.08rem;
  margin: 0;
}

.layers {
  background: var(--black);
}

.layer-list {
  border-top: 1px solid var(--line);
  margin-top: 42px;
}

.layer-row {
  align-items: start;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 20px;
  grid-template-columns: 64px 210px 1fr;
  padding: 24px 0;
}

.layer-row span {
  color: var(--amber);
  font-weight: 780;
}

.layer-row strong {
  color: var(--paper);
  font-size: 1.08rem;
}

.layer-row p {
  color: var(--muted);
  margin: 0;
  max-width: 680px;
}

.cta {
  background:
    linear-gradient(120deg, rgba(242, 182, 50, 0.18), rgba(242, 182, 50, 0) 46%),
    var(--charcoal);
  border: 1px solid rgba(242, 182, 50, 0.22);
  border-radius: 8px;
  justify-content: space-between;
  margin: 0 max(22px, calc((100% - var(--max-width)) / 2)) 94px;
  padding: 42px;
}

.cta div {
  max-width: 720px;
}

.cta p:last-child {
  color: var(--muted);
  font-size: 1.04rem;
  margin: 20px 0 0;
}

.site-footer {
  align-items: center;
  border-top: 1px solid var(--line);
  color: var(--steel);
  display: flex;
  flex-wrap: wrap;
  font-size: 0.9rem;
  gap: 12px 24px;
  justify-content: space-between;
  padding: 28px max(22px, calc((100% - var(--max-width)) / 2));
}

@media (max-width: 1040px) {
  h1 {
    font-size: 3.65rem;
  }

  .section-heading h2,
  .cta h2 {
    font-size: 2.5rem;
  }

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

  .service-card {
    min-height: 350px;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .trust-strip div {
    min-height: 118px;
    padding-left: max(22px, calc((100vw - var(--max-width)) / 2 + 22px));
  }
}

@media (max-width: 760px) {
  .site-header {
    height: 66px;
    padding: 0 18px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    align-items: stretch;
    background: rgba(8, 8, 8, 0.98);
    border: 1px solid var(--line);
    border-radius: 8px;
    display: none;
    flex-direction: column;
    gap: 0;
    inset: 76px 18px auto;
    padding: 8px;
    position: fixed;
  }

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

  .site-nav a {
    border-radius: 6px;
    padding: 13px 12px;
  }

  .hero {
    min-height: 0;
    padding: 96px 18px 52px;
  }

  .hero-image {
    object-position: 62% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(5, 5, 5, 0.98) 0%, rgba(5, 5, 5, 0.86) 62%, rgba(5, 5, 5, 0.56) 100%),
      linear-gradient(0deg, rgba(5, 5, 5, 0.72), rgba(5, 5, 5, 0.25));
  }

  h1 {
    font-size: 2.48rem;
    line-height: 1.04;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .button {
    width: 100%;
  }

  .protected-contact {
    justify-content: stretch;
    max-width: none;
    width: 100%;
  }

  .email-output {
    flex: 1;
  }

  .signal-row {
    margin-top: 30px;
  }

  .section,
  .operations {
    padding: 68px 18px;
  }

  .section-heading h2,
  .cta h2 {
    font-size: 2.05rem;
  }

  .intro-grid,
  .operations-grid {
    grid-template-columns: 1fr;
  }

  .services {
    grid-template-columns: 1fr;
    padding-top: 0;
  }

  .service-card {
    min-height: 0;
  }

  .layer-row {
    gap: 8px;
    grid-template-columns: 1fr;
  }

  .ops-panel dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .cta {
    margin: 0 18px 68px;
    padding: 30px 22px;
  }

  .site-footer {
    padding: 24px 18px;
  }
}
