:root {
  --ink: #090909;
  --ink-2: #141414;
  --steel: #2d2d2d;
  --steel-2: #666360;
  --gold: #c99d4a;
  --gold-bright: #e6c375;
  --gold-dark: #76551e;
  --paper: #f3eee4;
  --paper-2: #e7ddcd;
  --line: rgba(201, 157, 74, 0.34);
  --white-line: rgba(255, 250, 240, 0.14);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
  --focus: #f5d06f;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 6rem;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 18% 22%, rgba(201, 157, 74, 0.11), transparent 24rem),
    radial-gradient(circle at 82% 8%, rgba(116, 78, 32, 0.12), transparent 20rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.035), transparent 35%),
    #080808;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.21;
  pointer-events: none;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent 82%);
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 20;
  padding: 0.6rem 0.85rem;
  background: var(--paper);
  color: var(--ink);
  transform: translateY(-170%);
  transition: transform 180ms ease;
}

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
  padding: 0;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 10;
  border-bottom: 1px solid transparent;
  background: rgba(8, 8, 8, 0.8);
  backdrop-filter: blur(16px);
  transition: border-color 180ms ease, background 180ms ease;
}

.site-header.is-condensed {
  border-color: var(--white-line);
  background: rgba(8, 8, 8, 0.94);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1240px, calc(100% - 2rem));
  min-height: 86px;
  margin: 0 auto;
  transition: min-height 180ms ease;
}

.site-header.is-condensed .nav-shell {
  min-height: 68px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
}

.brand-mark {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(201, 157, 74, 0.28);
  border-radius: 6px;
  background: #050505;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.45));
}

.brand-text {
  display: grid;
  gap: 0.05rem;
  min-width: 0;
}

.brand-name {
  color: var(--gold-bright);
  font-family: "Arial Black", Impact, Arial, Helvetica, sans-serif;
  font-size: clamp(1rem, 2vw, 1.32rem);
  line-height: 1;
  text-transform: uppercase;
}

.brand-line {
  max-width: 20rem;
  color: rgba(244, 240, 232, 0.72);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.35;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--paper);
  cursor: pointer;
}

.nav-toggle[aria-expanded="true"] {
  background: rgba(201, 157, 74, 0.16);
  color: var(--gold-bright);
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  background: currentColor;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-links a:not(.btn) {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  color: rgba(244, 240, 232, 0.78);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  transition: color 160ms ease;
}

.nav-links a:not(.btn)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -0.45rem;
  left: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.is-active {
  color: var(--paper);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.nav-links a.is-active::after {
  transform: scaleX(1);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  max-width: 100%;
  padding: 0.85rem 1.05rem;
  border: 1px solid var(--gold);
  border-radius: 6px;
  color: var(--paper);
  font-size: 0.8rem;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold) 50%, var(--gold-dark));
  background-color: var(--gold-bright);
  color: #111;
  box-shadow: 0 12px 32px rgba(201, 157, 74, 0.22);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.035);
  color: var(--paper);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: rgba(201, 157, 74, 0.11);
}

.btn-donate {
  min-height: 44px;
  background: rgba(201, 157, 74, 0.1);
  color: var(--gold-bright);
}

.btn-donate:hover,
.btn-donate:focus-visible,
.btn-donate.is-active {
  background: rgba(201, 157, 74, 0.18);
  color: var(--paper);
}

.btn-dark {
  background: var(--ink);
  color: var(--paper);
}

.cta-band .btn-secondary {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}

main {
  overflow: visible;
}

.wrap {
  width: min(1160px, calc(100% - 2rem));
  margin: 0 auto;
}

.section {
  position: relative;
  padding: clamp(2.8rem, 4.8vw, 4.6rem) 0;
}

.page-hero,
.home-hero {
  display: grid;
  align-items: center;
  padding-top: clamp(7.5rem, 10vw, 9.2rem);
  padding-bottom: clamp(2.2rem, 4vw, 3.4rem);
  background:
    linear-gradient(120deg, rgba(10, 10, 10, 0.96), rgba(10, 10, 10, 0.8) 48%, rgba(10, 10, 10, 0.94)),
    linear-gradient(rgba(201, 157, 74, 0.08) 1px, transparent 1px);
  background-size: auto, 100% 18px;
}

.home-hero {
  min-height: 82vh;
}

.page-hero {
  min-height: 50vh;
}

.home-hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(18rem, 25rem);
  align-items: center;
  gap: clamp(2rem, 4vw, 4rem);
}

.hero-grid > *,
.section-grid > *,
.cta-inner > *,
.lead-stack,
.capability-grid,
.capability > *,
.person-head > * {
  min-width: 0;
}

.page-hero .hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(12rem, 16rem);
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 1.1rem;
  color: var(--gold-bright);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 2.8rem;
  height: 1px;
  background: var(--gold);
}

.light .section-kicker {
  color: var(--gold-dark);
}

.light .section-kicker::before {
  background: var(--gold-dark);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Arial Black", Impact, Arial, Helvetica, sans-serif;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  overflow-wrap: normal;
  word-break: normal;
}

h1 {
  max-width: min(100%, 18ch);
  font-size: clamp(2.7rem, 4.4vw, 4.05rem);
}

.home-hero h1 {
  max-width: min(100%, 18ch);
  font-size: clamp(2.55rem, 3.6vw, 3.25rem);
}

.title-line {
  display: block;
}

.tm {
  font-size: 0.36em;
  vertical-align: super;
}

.nowrap {
  white-space: nowrap;
}

.page-hero h1 {
  max-width: min(100%, 19ch);
  font-size: clamp(2.35rem, 3.8vw, 3.35rem);
}

h2 {
  max-width: min(100%, 20ch);
  font-size: clamp(1.85rem, 2.65vw, 2.35rem);
}

h3 {
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  line-height: 1.08;
}

p {
  margin: 0;
}

.hero-copy {
  max-width: 43.5rem;
  margin-top: 1.35rem;
  color: rgba(244, 240, 232, 0.82);
  font-size: clamp(1rem, 1.45vw, 1.2rem);
}

.hero-copy + .hero-copy {
  margin-top: 0.8rem;
}

.hero-statement {
  margin: 0 0 0.9rem;
  color: var(--gold-bright);
  font-family: "Arial Black", Impact, Arial, Helvetica, sans-serif;
  font-size: clamp(1.05rem, 2.5vw, 1.75rem);
  line-height: 1.1;
  text-transform: uppercase;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.5rem;
}

.hero-art {
  position: relative;
  isolation: isolate;
}

.hero-art::before {
  content: "";
  position: absolute;
  inset: 7% 7% auto auto;
  z-index: -1;
  width: 76%;
  aspect-ratio: 1;
  border: 1px solid var(--line);
  transform: rotate(10deg);
}

.hero-art img {
  width: min(100%, 25rem);
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  margin-left: auto;
  border: 1px solid rgba(201, 157, 74, 0.28);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-art img.hero-poster {
  width: auto;
  max-width: min(100%, 23.5rem);
  max-height: clamp(28rem, 58vh, 34rem);
  aspect-ratio: auto;
  background: #050505;
}

.light {
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.68), rgba(231, 221, 205, 0.22)),
    var(--paper);
  color: var(--ink);
}

.dark {
  background:
    linear-gradient(180deg, rgba(8, 8, 8, 0.96), rgba(15, 15, 15, 0.98)),
    var(--ink);
  color: var(--paper);
}

.muted {
  background: #111;
  color: var(--paper);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(18rem, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(1.6rem, 3.4vw, 3rem);
  align-items: start;
}

.flow-layout {
  grid-template-columns: minmax(14rem, 0.5fr) minmax(0, 1.5fr);
}

.lead-stack {
  display: grid;
  gap: 1.05rem;
}

.lead {
  color: rgba(244, 240, 232, 0.76);
  font-size: clamp(1rem, 1.25vw, 1.08rem);
}

.light .lead,
.light p,
.light li {
  color: rgba(10, 10, 10, 0.74);
}

.stat-bar {
  border-block: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(201, 157, 74, 0.12), transparent 34%, rgba(201, 157, 74, 0.1)),
    #0d0d0d;
  padding: 1.4rem 0;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.stat strong {
  display: block;
  color: var(--gold-bright);
  font-family: "Arial Black", Impact, Arial, Helvetica, sans-serif;
  font-size: clamp(1.7rem, 4vw, 3rem);
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 0.35rem;
  color: rgba(244, 240, 232, 0.72);
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
}

.stat-footnote {
  margin-top: 1rem;
  color: rgba(244, 240, 232, 0.58);
  font-size: 0.88rem;
}

.capability-grid,
.card-grid,
.tile-grid,
.compare-grid,
.layer-grid,
.person-grid {
  display: grid;
  gap: 0.9rem;
}

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

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

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

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

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

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

.wide-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.capability,
.info-card,
.tile,
.compare-panel,
.layer,
.person-card,
.permission-panel,
.quote-card,
.company-card,
.disclosure-card {
  border: 1px solid var(--white-line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.018)),
    rgba(255, 255, 255, 0.02);
  padding: clamp(1rem, 1.8vw, 1.2rem);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.light .capability,
.light .info-card,
.light .tile,
.light .compare-panel,
.light .layer,
.light .person-card,
.light .permission-panel,
.light .quote-card,
.light .company-card,
.light .disclosure-card {
  border-color: rgba(124, 91, 35, 0.28);
  background: rgba(255, 250, 240, 0.78);
}

.info-card:hover,
.tile:hover,
.person-card:hover,
.company-card:hover {
  transform: translateY(-3px);
  border-color: rgba(201, 157, 74, 0.7);
}

.capability {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
}

.capability::before {
  content: "";
  width: 0.85rem;
  height: 0.85rem;
  margin-top: 0.32rem;
  border: 2px solid var(--gold);
  transform: rotate(45deg);
}

.info-card,
.tile,
.layer,
.company-card,
.disclosure-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0.85rem;
}

.tile {
  min-height: 9.5rem;
}

.info-card p,
.tile p,
.layer p,
.person-card p,
.permission-panel p,
.quote-card p,
.company-card p,
.disclosure-card p {
  color: rgba(244, 240, 232, 0.72);
}

.light .info-card p,
.light .tile p,
.light .layer p,
.light .person-card p,
.light .permission-panel p,
.light .quote-card p,
.light .company-card p,
.light .disclosure-card p {
  color: rgba(10, 10, 10, 0.7);
}

.card-list,
.criteria,
.route-list,
.plain-list,
.journey-list {
  display: grid;
  gap: 0.65rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.card-list li,
.criteria li,
.route-list li,
.plain-list li,
.journey-list li {
  position: relative;
  padding-left: 1.25rem;
}

.card-list li::before,
.criteria li::before,
.route-list li::before,
.plain-list li::before,
.journey-list li::before {
  content: "";
  position: absolute;
  top: 0.7rem;
  left: 0;
  width: 0.45rem;
  height: 0.45rem;
  background: var(--gold);
}

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.05rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  min-height: 2.25rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.45rem 0.75rem;
  color: rgba(244, 240, 232, 0.86);
  font-size: 0.83rem;
  font-weight: 800;
  text-transform: uppercase;
}

.light .chip {
  border-color: rgba(124, 91, 35, 0.34);
  background: rgba(124, 91, 35, 0.08);
  color: var(--gold-dark);
}

.light .btn-secondary {
  border-color: rgba(124, 91, 35, 0.62);
  background: rgba(124, 91, 35, 0.1);
  color: var(--ink);
}

.light .btn-secondary:hover,
.light .btn-secondary:focus-visible {
  background: rgba(124, 91, 35, 0.16);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 1.75rem;
  color: var(--gold-bright);
  font-size: 0.78rem;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: rgba(230, 195, 117, 0.55);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
  text-transform: uppercase;
}

.light .text-link {
  color: var(--gold-dark);
  text-decoration-color: rgba(118, 85, 30, 0.52);
}

.text-link::after {
  content: ">";
}

.timeline {
  display: grid;
  gap: 1rem;
}

.journey-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.05rem;
}

.journey-flow span {
  display: inline-flex;
  align-items: center;
  min-height: 2.4rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.45rem 0.75rem;
  color: var(--gold-bright);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.light .journey-flow span {
  color: var(--gold-dark);
}

.process-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-flow li {
  position: relative;
  display: grid;
  min-height: 6.5rem;
  align-content: center;
  gap: 0.45rem;
  border: 1px solid rgba(124, 91, 35, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.92), rgba(231, 221, 205, 0.58)),
    var(--paper);
  padding: 1rem 0.85rem;
  box-shadow: 0 14px 34px rgba(10, 10, 10, 0.08);
}

.process-flow li:not(:last-child)::after {
  content: none;
}

.flow-index {
  color: var(--gold-dark);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.process-flow strong {
  color: var(--ink);
  font-family: "Arial Black", Impact, Arial, Helvetica, sans-serif;
  font-size: clamp(0.9rem, 1.05vw, 1rem);
  line-height: 1.08;
  text-transform: uppercase;
}

.quote-card {
  padding: clamp(1.2rem, 3vw, 2rem);
}

.quote-card blockquote {
  margin: 0;
  color: rgba(244, 240, 232, 0.78);
  font-size: clamp(1rem, 1.35vw, 1.12rem);
}

.light .quote-card blockquote {
  color: rgba(10, 10, 10, 0.76);
}

.quote-card cite {
  display: block;
  margin-top: 1rem;
  color: var(--gold-bright);
  font-style: normal;
  font-weight: 900;
}

.light .quote-card cite {
  color: var(--gold-dark);
}

.measure-stack {
  display: grid;
  gap: 0.85rem;
}

.measure-item {
  border-bottom: 1px solid rgba(201, 157, 74, 0.22);
  padding-bottom: 0.85rem;
}

.measure-item h3 {
  color: var(--gold-dark);
  font-size: 1rem;
}

.company-card .tag-list,
.disclosure-card .tag-list {
  margin-top: auto;
}

.legal-copy {
  margin-top: 1rem;
  color: rgba(244, 240, 232, 0.64);
  font-size: 0.86rem;
}

.fine-print {
  margin-top: 0.65rem;
  color: rgba(244, 240, 232, 0.48);
  font-size: 0.72rem;
  line-height: 1.45;
}

.timeline-step {
  display: grid;
  grid-template-columns: minmax(9rem, max-content) minmax(0, 1fr);
  gap: 1.35rem;
  align-items: start;
  border-bottom: 1px solid rgba(201, 157, 74, 0.22);
  padding-bottom: 1rem;
}

.timeline-step strong {
  color: var(--gold-bright);
  font-family: "Arial Black", Impact, Arial, Helvetica, sans-serif;
  text-transform: uppercase;
}

.light .timeline-step strong {
  color: var(--gold-dark);
}

.person-card {
  min-height: 100%;
}

.person-head {
  display: grid;
  grid-template-columns: 4.2rem 1fr;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.avatar {
  display: grid;
  width: 4.2rem;
  height: 4.2rem;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(201, 157, 74, 0.14), rgba(255, 255, 255, 0.035)),
    #0c0c0c;
  color: var(--gold-bright);
  font-family: "Arial Black", Impact, Arial, Helvetica, sans-serif;
  font-size: 1.25rem;
}

.person-card h3 {
  font-size: 1.08rem;
}

.person-title {
  margin-top: 0.3rem;
  color: var(--gold-bright);
  font-size: 0.84rem;
  font-weight: 900;
  line-height: 1.3;
  text-transform: uppercase;
}

.light .person-title {
  color: var(--gold-dark);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1rem;
}

.tag {
  border: 1px solid rgba(201, 157, 74, 0.32);
  border-radius: 999px;
  background: rgba(201, 157, 74, 0.1);
  padding: 0.25rem 0.48rem;
  color: var(--gold-bright);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.light .tag {
  border-color: rgba(124, 91, 35, 0.34);
  background: rgba(124, 91, 35, 0.08);
  color: var(--gold-dark);
}

.form-panel {
  border: 1px solid rgba(124, 91, 35, 0.35);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.72);
  box-shadow: 0 24px 55px rgba(10, 10, 10, 0.12);
}

.form-panel.dark-panel {
  border-color: var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow);
}

.form-inner {
  display: grid;
  gap: 1rem;
  padding: clamp(1rem, 3vw, 1.6rem);
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.4rem;
}

.field.full {
  grid-column: 1 / -1;
}

label {
  color: rgba(10, 10, 10, 0.82);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.dark-panel label {
  color: rgba(244, 240, 232, 0.86);
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(10, 10, 10, 0.16);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--ink);
  padding: 0.78rem 0.85rem;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

textarea {
  min-height: 8rem;
  resize: vertical;
}

.dark-panel input,
.dark-panel select,
.dark-panel textarea {
  border-color: rgba(244, 240, 232, 0.18);
  background: rgba(0, 0, 0, 0.35);
  color: var(--paper);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 157, 74, 0.17);
}

input[aria-invalid="true"],
select[aria-invalid="true"],
textarea[aria-invalid="true"] {
  border-color: #b42318;
  box-shadow: 0 0 0 4px rgba(180, 35, 24, 0.16);
}

input::placeholder,
textarea::placeholder {
  color: rgba(10, 10, 10, 0.47);
}

.dark-panel input::placeholder,
.dark-panel textarea::placeholder {
  color: rgba(244, 240, 232, 0.52);
}

.form-status {
  min-height: 1.5rem;
  color: var(--gold-dark);
  font-size: 0.92rem;
  font-weight: 700;
}

.dark-panel .form-status {
  color: var(--gold-bright);
}

.cta-band {
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(118, 85, 30, 0.18), transparent 28%, rgba(201, 157, 74, 0.18)),
    var(--paper-2);
  border-top: 1px solid rgba(118, 85, 30, 0.18);
  color: var(--ink);
  padding: clamp(2.2rem, 4vw, 3.5rem) 0;
}

.cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.5rem;
}

.cta-inner h2 {
  max-width: 14ch;
}

.cta-inner p {
  max-width: 34rem;
  margin-top: 0.8rem;
  color: rgba(10, 10, 10, 0.72);
  font-size: 1.05rem;
}

.section-offset {
  margin-top: clamp(1.25rem, 2.4vw, 1.65rem);
}

.site-footer {
  border-top: 1px solid var(--white-line);
  background: #050505;
  color: rgba(244, 240, 232, 0.72);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, minmax(8rem, 0.65fr));
  gap: 2rem;
  padding: 3rem 0 2rem;
}

.footer-brand img {
  width: 6.8rem;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  border: 1px solid rgba(201, 157, 74, 0.28);
  border-radius: 8px;
  background: #050505;
  margin-bottom: 1rem;
}

.footer-brand strong {
  display: block;
  color: var(--paper);
  font-family: "Arial Black", Impact, Arial, Helvetica, sans-serif;
  line-height: 1.05;
  text-transform: uppercase;
}

.footer-brand p {
  margin-top: 0.7rem;
  color: rgba(244, 240, 232, 0.62);
}

.footer-brand address {
  margin-top: 0.7rem;
  color: rgba(244, 240, 232, 0.62);
  font-style: normal;
}

.footer-col h2 {
  margin-bottom: 0.8rem;
  color: var(--gold-bright);
  font: 900 0.78rem/1.2 Arial, Helvetica, sans-serif;
  text-transform: uppercase;
}

.footer-col a,
.footer-col span {
  display: block;
  min-height: 2rem;
  padding: 0.18rem 0;
  color: rgba(244, 240, 232, 0.68);
  font-size: 0.94rem;
}

.footer-col a:hover,
.footer-col a:focus-visible {
  color: var(--paper);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--white-line);
  padding: 1.1rem 0 1.4rem;
  color: rgba(244, 240, 232, 0.52);
  font-size: 0.84rem;
}

.footer-bottom a {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  color: rgba(244, 240, 232, 0.66);
  text-decoration: underline;
  text-decoration-color: rgba(244, 240, 232, 0.34);
  text-underline-offset: 0.22em;
}

.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: var(--paper);
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

@media (max-width: 1060px) {
  .card-grid,
  .tile-grid,
  .wide-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .person-grid,
  .layer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .process-flow li::after {
    display: none;
  }
}

@media (max-width: 900px) {
  .hero-grid,
  .page-hero .hero-grid,
  .section-grid,
  .cta-inner,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .home-hero,
  .page-hero {
    min-height: auto;
  }

  .hero-art img {
    width: min(100%, 22rem);
    margin: 0;
  }

  .stats,
  .capability-grid,
  .compare-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-inner .actions {
    margin-top: 0;
  }
}

@media (max-width: 760px) {
  .home-hero,
  .page-hero {
    padding-top: 6rem;
  }

  .nav-shell {
    min-height: 74px;
  }

  .brand-line {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-top: 1px solid var(--white-line);
    background: rgba(8, 8, 8, 0.98);
    padding: 0.65rem 1rem 1rem;
  }

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

  .nav-links a:not(.btn) {
    padding: 0.86rem 0;
  }

  .nav-links .btn {
    margin-top: 0.45rem;
  }

  h1,
  .page-hero h1 {
    max-width: 100%;
    font-size: clamp(1.55rem, 6.8vw, 1.82rem);
    line-height: 1.03;
    overflow-wrap: break-word;
    word-break: normal;
  }

  .home-hero h1 {
    font-size: clamp(1.55rem, 6.8vw, 1.82rem);
  }

  h2 {
    font-size: clamp(1.75rem, 7.5vw, 2.15rem);
    overflow-wrap: break-word;
  }

  .hero-grid {
    display: block;
  }

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

  .hero-art {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    width: 8.5rem;
    opacity: 0.18;
    pointer-events: none;
  }

  .hero-art::before {
    display: none;
  }

  .hero-art img {
    width: 100%;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .stats,
  .capability-grid,
  .card-grid,
  .tile-grid,
  .compare-grid,
  .layer-grid,
  .person-grid,
  .wide-grid,
  .process-flow,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .timeline-step {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 360px) {
  h1,
  .page-hero h1 {
    font-size: clamp(1.55rem, 7.25vw, 1.85rem);
    overflow-wrap: break-word;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
