/* LEIR services */
body {
  -webkit-font-smoothing: antialiased;
  background: var(--ink);
  color: var(--chalk);
  font-family: 'Outfit', sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
}
html { scroll-behavior: smooth; }
canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
.vignette {
  position: fixed;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 25%, transparent 20%, rgba(6, 9, 16, 0.97) 100%);
  z-index: 1;
  pointer-events: none;
}
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 22px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-logo {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--chalk);
  text-decoration: none;
  text-transform: uppercase;
}
.nav-logo span { color: var(--orange); }
.nav-links { display: flex; gap: 36px; }
.nav-link {
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-link:hover,
.nav-link.active { color: var(--orange); }
.nav-cta {
  color: var(--orange) !important;
  padding-bottom: 3px;
  border-bottom: 1px solid rgba(232, 93, 4, 0.4);
}
main {
  position: relative;
  z-index: 2;
  padding: 120px 48px 80px;
}
.page-eyebrow {
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
  animation: fi 0.7s ease both;
}
.page-title {
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--chalk);
  margin-bottom: 72px;
  animation: fi 0.7s ease 0.1s both;
  opacity: 0;
}
.page-title span { color: var(--orange); }
.group-label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}
.group-label span {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--orange);
}
.group-label div { flex: 1; height: 1px; background: #0d1117; }
.group { margin-bottom: 64px; }
.row {
  display: flex;
  align-items: baseline;
  padding: 18px 0;
  border-top: 1px solid #0a0f1a;
  transition: border-top-color 0.2s;
  cursor: default;
}
.row:last-of-type {
  border-bottom: 1px solid #0a0f1a;
  margin-bottom: 0;
}
.row:hover { border-top-color: rgba(232, 93, 4, 0.12); }
.row:hover .rn { color: var(--chalk); }
.rn {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6a7590;
  min-width: 220px;
  transition: color 0.2s;
}
.rd {
  font-size: 11px;
  font-weight: 300;
  color: #5a6680;
  flex: 1;
}
.rr {
  font-size: 10px;
  font-weight: 300;
  color: #4a5570;
  min-width: 200px;
  text-align: right;
}
.cta-section {
  margin-top: 64px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cta {
  display: inline-flex;
  flex-direction: column;
  gap: 10px;
  cursor: pointer;
  text-decoration: none;
}
.cta-text {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: lowercase;
  color: var(--orange);
  transition: color 0.3s;
}
.cta-line {
  width: 40%;
  height: 1px;
  background: var(--orange);
  transition: width 0.5s ease;
}
.cta:hover .cta-text { color: var(--amber); }
.cta:hover .cta-line { width: 100%; }
.help {
  font-size: 9px;
  letter-spacing: 0.14em;
  color: #4a5570;
}
.help a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.help a:hover { color: #4a5570; }
.animate {
  animation: fi 0.6s ease both;
  opacity: 0;
}
@keyframes fi {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 640px) {
  nav { padding: 18px 24px; }
  main { padding: 100px 24px 60px; }
  .rr { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .page-eyebrow,
  .page-title,
  .animate {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
