:root {
  color-scheme: dark;
  --bg: #11110f;
  --text: #f2efe7;
  --muted: #beb7a8;
  --line: rgba(242, 239, 231, 0.18);
  --panel: rgba(24, 24, 21, 0.72);
  --moss: #9dbb73;
  --copper: #d08c5a;
  --steel: #7ea8b2;
  --shadow: rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  width: 100%;
  min-height: 100%;
  background: var(--bg);
}

body {
  width: 100%;
  min-height: 100%;
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

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

#signal-scene {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #11110f;
  z-index: 0;
}

.page-shell {
  position: relative;
  z-index: 1;
  width: calc(100% - 40px);
  max-width: 1120px;
  margin: 0 auto;
}

.hero {
  min-height: 68svh;
  display: grid;
  grid-template-rows: auto 1fr;
  padding: 26px 0 48px;
}

.topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.wordmark,
.status-pill {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  background: rgba(17, 17, 15, 0.52);
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 36px var(--shadow);
}

.wordmark {
  padding: 0 14px;
  font-size: 0.92rem;
  font-weight: 650;
}

.status-pill {
  padding: 0 13px;
  font-size: 0.82rem;
  color: var(--moss);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-copy {
  align-self: center;
  max-width: 760px;
  padding: 8vh 0 0;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--copper);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

h1 {
  margin: 0;
  font-size: clamp(4.4rem, 12vw, 10.5rem);
  line-height: 0.88;
  font-weight: 760;
  letter-spacing: 0;
}

.lead {
  max-width: 560px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.36rem);
  line-height: 1.58;
}

.actions {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 136px));
  gap: 12px;
  margin-top: 34px;
}

.action {
  min-width: 0;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  padding: 0 18px;
  background: rgba(20, 20, 18, 0.72);
  backdrop-filter: blur(12px);
  color: var(--text);
  font-weight: 680;
  white-space: nowrap;
  box-shadow: 0 14px 36px var(--shadow);
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.action.primary {
  border-color: rgba(157, 187, 115, 0.64);
  color: #f6f8ef;
}

.action:hover,
.action:focus-visible {
  border-color: var(--steel);
  background: rgba(32, 34, 30, 0.78);
  transform: translateY(-2px);
  outline: none;
}

.links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  padding: 0 0 44px;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 760;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.section-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

.service {
  min-height: 92px;
  display: grid;
  grid-template-columns: minmax(72px, 96px) minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  border: 1px solid var(--line);
  padding: 18px 20px;
  background: var(--panel);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 48px var(--shadow);
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.service:hover,
.service:focus-visible {
  border-color: rgba(126, 168, 178, 0.72);
  background: rgba(29, 31, 28, 0.82);
  transform: translateY(-2px);
  outline: none;
}

.service-kicker {
  color: var(--copper);
  font-size: 0.75rem;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.service-title {
  display: block;
  font-size: 1.18rem;
  font-weight: 760;
  overflow-wrap: anywhere;
}

.service-meta {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.service-action {
  min-width: 64px;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(126, 168, 178, 0.38);
  color: var(--steel);
  font-size: 0.84rem;
  font-weight: 720;
}

@media (max-width: 720px) {
  .page-shell {
    width: calc(100% - 28px);
    max-width: 1120px;
  }

  .hero {
    min-height: 60svh;
    padding: 18px 0 32px;
  }

  .topline {
    align-items: stretch;
  }

  .wordmark,
  .status-pill {
    min-height: 38px;
  }

  .hero-copy {
    padding-top: 9vh;
    max-width: 100%;
    overflow: hidden;
  }

  h1 {
    font-size: clamp(4rem, 21vw, 5.4rem);
    line-height: 0.9;
  }

  .lead {
    margin-top: 22px;
  }

  .actions {
    grid-template-columns: 1fr;
    margin-top: 28px;
    max-width: 260px;
  }

  .action {
    padding: 0 12px;
    font-size: 0.96rem;
  }

  .links {
    padding-bottom: 28px;
  }

  .service {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 10px;
    min-height: 0;
    padding: 18px;
  }

  .service-action {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .topline {
    gap: 10px;
  }

  .wordmark,
  .status-pill {
    padding-left: 11px;
    padding-right: 11px;
  }

}
