:root {
  color-scheme: light;
  --ink: #14202c;
  --ink-strong: #070d13;
  --navy: #070d13;
  --navy-soft: #102537;
  --steel: #536579;
  --line: #cfd8df;
  --panel: #fffdf8;
  --mist: #f3f0e8;
  --gold: #caa46b;
  --gold-dark: #a77f43;
  --green: #1d6f5f;
  --red: #a54d3f;
  --shadow: 0 24px 70px rgba(7, 21, 35, 0.16);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    linear-gradient(90deg, rgba(7, 13, 19, 0.035) 1px, transparent 1px),
    linear-gradient(#f8f5ee, #f4f0e8);
  background-size: 96px 96px, auto;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

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

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

.skip-link:focus {
  z-index: 1000;
  top: 1rem;
  left: 1rem;
  width: auto;
  height: auto;
  padding: 0.75rem 1rem;
  clip: auto;
  color: #fff;
  background: var(--navy);
}

.container {
  width: min(calc(100% - 2rem), var(--max));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  background: rgba(7, 21, 35, 0.64);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(7, 21, 35, 0.96);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.2);
}

.nav-shell {
  width: min(calc(100% - 2rem), 1240px);
  min-height: 78px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  width: 214px;
}

.brand img {
  width: 100%;
  height: auto;
  filter: invert(1);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.94rem;
  font-weight: 650;
}

.nav-links a {
  transition: color 160ms ease;
}

.nav-links a:hover {
  color: #fff;
}

.nav-cta {
  padding: 0.68rem 1rem;
  color: var(--navy) !important;
  background: var(--gold);
  border-radius: var(--radius);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0.55rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: #fff;
}

.section {
  padding: clamp(84px, 8vw, 118px) 0;
}

.section-muted {
  background:
    linear-gradient(90deg, rgba(202, 164, 107, 0.1), transparent 40%),
    var(--mist);
}

.section-dark {
  color: #fff;
  background: var(--navy);
}

.hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  padding: 150px 0 82px;
  overflow: hidden;
}

.hero-bg,
.hero-overlay,
.hero-network,
.route-lines {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background-image: url("https://images.pexels.com/photos/4483862/pexels-photo-4483862.jpeg?auto=compress&cs=tinysrgb&w=1800");
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  animation: hero-drift 18s ease-in-out infinite alternate;
  will-change: transform;
}

.hero-network {
  z-index: 1;
  opacity: 0.42;
  mix-blend-mode: screen;
}

.route-lines {
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.route-lines span {
  position: absolute;
  left: -18%;
  width: 55%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(202, 164, 107, 0.78), transparent);
  opacity: 0.46;
  transform: rotate(-12deg);
  animation: route-sweep 9s linear infinite;
}

.route-lines span:nth-child(1) {
  top: 28%;
}

.route-lines span:nth-child(2) {
  top: 49%;
  animation-delay: 2.2s;
  animation-duration: 11s;
}

.route-lines span:nth-child(3) {
  top: 67%;
  animation-delay: 4s;
  animation-duration: 12s;
}

.hero-overlay {
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(7, 21, 35, 0.96), rgba(7, 21, 35, 0.78) 48%, rgba(7, 21, 35, 0.46)),
    linear-gradient(0deg, rgba(7, 21, 35, 0.82), rgba(7, 21, 35, 0.1) 42%);
}

.hero-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 4rem;
  align-items: end;
}

.hero-copy {
  max-width: 780px;
}

.eyebrow {
  margin: 0 0 0.95rem;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 1.3rem;
  font-size: clamp(2.7rem, 6vw, 5.8rem);
  line-height: 0.96;
  letter-spacing: 0;
  max-width: 12ch;
}

.hero h1 {
  color: #fff;
  text-wrap: balance;
}

h2 {
  margin-bottom: 1rem;
  color: var(--ink-strong);
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 0.75rem;
  color: var(--ink-strong);
  font-size: 1.12rem;
  line-height: 1.2;
}

.hero-lede {
  max-width: 720px;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
  text-wrap: pretty;
}

.reveal-hero {
  opacity: 1;
  transform: none;
  filter: none;
  animation: hero-rise 520ms cubic-bezier(0.2, 0.85, 0.2, 1) both;
  transition: none;
}

.hero-panel.reveal-hero {
  animation-delay: 180ms;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.9rem 1.15rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.1;
  transition: transform 180ms cubic-bezier(0.2, 0.85, 0.2, 1), background 180ms ease, border-color 180ms ease;
}

.button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, 0.42), transparent 70%);
  transform: translateX(-120%);
  transition: transform 650ms ease;
}

.button:hover::after {
  transform: translateX(120%);
}

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

.button-primary {
  color: var(--navy);
  background: var(--gold);
}

.button-primary:hover {
  background: #d9b879;
}

.button-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
}

.hero-panel {
  position: relative;
  overflow: hidden;
  padding: 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(7, 21, 35, 0.78);
  box-shadow: var(--shadow);
  transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transition: transform 220ms cubic-bezier(0.2, 0.85, 0.2, 1), border-color 180ms ease;
}

.hero-panel::before,
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: radial-gradient(circle at var(--glow-x, 50%) var(--glow-y, 50%), rgba(202, 164, 107, 0.18), transparent 34%);
  transition: opacity 180ms ease;
  pointer-events: none;
}

.hero-panel:hover::before,
.service-card:hover::before {
  opacity: 1;
}

.panel-orbit {
  position: absolute;
  top: 1.15rem;
  right: 1.15rem;
  width: 72px;
  aspect-ratio: 1;
  border: 1px solid rgba(202, 164, 107, 0.44);
  border-radius: 999px;
  opacity: 0.78;
  animation: orbit-pulse 4.8s ease-in-out infinite;
}

.panel-orbit::before,
.panel-orbit::after {
  content: "";
  position: absolute;
  border-radius: inherit;
}

.panel-orbit::before {
  inset: 13px;
  border: 1px dashed rgba(255, 255, 255, 0.32);
  animation: spin 9s linear infinite;
}

.panel-orbit::after {
  top: 50%;
  left: 50%;
  width: 7px;
  height: 7px;
  background: var(--gold);
  box-shadow: 0 0 22px rgba(202, 164, 107, 0.9);
  transform: translate(-50%, -50%);
}

.hero-mark {
  width: 190px;
  margin-bottom: 1.2rem;
  filter: invert(1);
}

.panel-kicker {
  margin-bottom: 0.8rem;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-panel ul {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-panel li {
  position: relative;
  padding-left: 1rem;
  color: rgba(255, 255, 255, 0.78);
  border-left: 2px solid var(--gold);
  animation: line-in 700ms ease both;
}

.hero-panel li:nth-child(2) {
  animation-delay: 120ms;
}

.hero-panel li:nth-child(3) {
  animation-delay: 240ms;
}

.hero-panel li:nth-child(4) {
  animation-delay: 360ms;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 720px;
  margin-top: 2rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
}

.hero-stats div {
  padding: 1rem;
  background: rgba(7, 21, 35, 0.44);
}

.hero-stats strong,
.hero-stats span {
  display: block;
}

.hero-stats strong {
  color: #fff;
  font-size: 1.65rem;
  line-height: 1;
}

.hero-stats span {
  margin-top: 0.4rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
  line-height: 1.35;
}

.trust-strip {
  padding: 1.25rem 0;
  color: #fff;
  background: var(--navy-soft);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  overflow: hidden;
}

.trust-grid span {
  position: relative;
  min-height: 62px;
  display: grid;
  place-items: center;
  padding: 0.9rem;
  text-align: center;
  background: var(--navy-soft);
  color: rgba(255, 255, 255, 0.82);
  font-weight: 750;
}

.trust-grid span::after {
  content: "";
  position: absolute;
  inset: auto 18% 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  animation: trust-signal 4.8s ease-in-out infinite;
}

.trust-grid span:nth-child(2)::after {
  animation-delay: 0.5s;
}

.trust-grid span:nth-child(3)::after {
  animation-delay: 1s;
}

.trust-grid span:nth-child(4)::after {
  animation-delay: 1.5s;
}

.trust-grid span:nth-child(5)::after {
  animation-delay: 2s;
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 3rem;
  text-align: center;
}

.section-heading.align-left {
  margin: 0;
  text-align: left;
}

.section-heading p:not(.eyebrow),
.split-copy p,
.about-copy p,
.contact-copy p {
  color: var(--steel);
  font-size: 1.05rem;
  text-wrap: pretty;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 265px;
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transition: transform 220ms cubic-bezier(0.2, 0.85, 0.2, 1), box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  transform: perspective(900px) translateY(-4px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  border-color: rgba(202, 164, 107, 0.72);
  box-shadow: 0 20px 46px rgba(16, 32, 51, 0.1);
}

.service-card.feature {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(202, 164, 107, 0.16), transparent 50%),
    var(--navy);
  border-color: var(--navy);
}

.service-card.feature h3,
.service-card.feature .card-number {
  color: #fff;
}

.service-card.feature p {
  color: rgba(255, 255, 255, 0.78);
}

.card-number {
  color: var(--gold-dark);
  font-size: 0.82rem;
  font-weight: 850;
}

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

.split-section {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.split-grid {
  display: grid;
  grid-template-columns: 0.92fr 1fr;
  gap: 4rem;
  align-items: center;
}

.image-block {
  position: relative;
  min-height: 580px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.image-block img {
  width: 100%;
  height: 100%;
  min-height: 580px;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 720ms cubic-bezier(0.2, 0.85, 0.2, 1);
}

.image-block:hover img {
  transform: scale(1.09);
}

.scan-line {
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(202, 164, 107, 0.5), transparent);
  height: 24%;
  transform: translateY(-120%);
  opacity: 0.45;
  animation: scan 5.5s ease-in-out infinite;
}

.trade-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.28;
  pointer-events: none;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 1.6rem 0 2rem;
}

.pill-list span {
  padding: 0.55rem 0.75rem;
  color: var(--ink-strong);
  background: #edf2f6;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 750;
  transition: transform 180ms cubic-bezier(0.2, 0.85, 0.2, 1), border-color 180ms ease, background 180ms ease;
}

.pill-list span:hover {
  transform: translateY(-2px);
  border-color: rgba(202, 164, 107, 0.8);
  background: #fff8ec;
}

.process-list {
  display: grid;
  gap: 0.75rem;
}

.process-list div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--mist);
  transition: transform 180ms cubic-bezier(0.2, 0.85, 0.2, 1), background 180ms ease, border-color 180ms ease;
}

.process-list div:hover {
  transform: translateX(4px);
  border-color: rgba(29, 111, 95, 0.38);
  background: #fff;
}

.process-list strong {
  color: var(--green);
}

.standards-grid {
  display: grid;
  grid-template-columns: 0.86fr 1fr;
  gap: 4rem;
  align-items: start;
}

.standards-list {
  display: grid;
  gap: 1rem;
}

.standards-list article {
  padding: 1.2rem;
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 32px rgba(16, 32, 51, 0.08);
}

.standards-list p {
  margin-bottom: 0;
  color: var(--steel);
}

.about-section {
  color: #fff;
  background:
    linear-gradient(120deg, rgba(29, 111, 95, 0.22), transparent 52%),
    var(--navy);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 4rem;
  align-items: center;
}

.about-copy h2,
.about-copy p {
  color: #fff;
}

.about-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.metrics-panel {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.14);
}

.metrics-panel div {
  position: relative;
  padding: 1.35rem;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.metrics-panel div::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.12), transparent);
  transform: translateX(-120%);
  animation: panel-sheen 6.5s ease-in-out infinite;
}

.metrics-panel div:nth-child(2)::after {
  animation-delay: 1.4s;
}

.metrics-panel div:nth-child(3)::after {
  animation-delay: 2.8s;
}

.metrics-panel strong,
.metrics-panel span {
  display: block;
}

.metrics-panel strong {
  margin-bottom: 0.35rem;
  color: #fff;
  font-size: 1.28rem;
}

.metrics-panel span {
  color: rgba(255, 255, 255, 0.72);
}

.contact-section {
  background: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.86fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-methods {
  display: grid;
  gap: 0.85rem;
  margin-top: 2rem;
  color: var(--ink-strong);
  font-weight: 800;
}

.contact-methods a {
  color: var(--green);
}

.contact-form {
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--mist);
  box-shadow: 0 18px 48px rgba(16, 32, 51, 0.08);
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1rem;
  color: var(--ink-strong);
  font-weight: 750;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #c8d2dd;
  border-radius: var(--radius);
  padding: 0.86rem 0.9rem;
  color: var(--ink);
  background: #fff;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(202, 164, 107, 0.3);
  border-color: var(--gold-dark);
}

.form-note {
  margin: 0.85rem 0 0;
  color: var(--steel);
  font-size: 0.88rem;
}

.site-footer {
  padding: 3rem 0 1.2rem;
  color: rgba(255, 255, 255, 0.76);
  background: #050d16;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.9fr;
  gap: 3rem;
  padding-bottom: 2.2rem;
}

.site-footer img {
  width: 210px;
  margin-bottom: 1rem;
  filter: invert(1);
}

.site-footer nav,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 0.7rem;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.84);
}

.site-footer a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.9rem;
}

.reveal {
  opacity: 1;
  transform: translateY(12px) scale(0.996);
  filter: blur(0);
  transition: transform 520ms cubic-bezier(0.2, 0.85, 0.2, 1), filter 520ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* Premium dossier redesign */
.site-header {
  background: rgba(7, 13, 19, 0.76);
}

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

.nav-links {
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.045);
}

.nav-links a {
  padding: 0.72rem 0.95rem;
  border-right: 1px solid rgba(255, 255, 255, 0.09);
}

.nav-links a:last-child {
  border-right: 0;
}

.nav-cta {
  border-radius: 0;
}

.hero {
  min-height: 870px;
  padding: 134px 0 116px;
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    var(--navy);
  background-size: 86px 86px, 86px 86px, auto;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 72px 0 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(120deg, transparent 0 55%, rgba(202, 164, 107, 0.15) 55.2%, transparent 55.6%),
    linear-gradient(90deg, rgba(202, 164, 107, 0.06), transparent 34%);
}

.hero-rail {
  position: absolute;
  z-index: 4;
  top: 116px;
  bottom: 112px;
  left: max(1rem, calc((100vw - var(--max)) / 2 - 64px));
  display: grid;
  align-content: space-between;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.hero-bg {
  left: 47%;
  z-index: 0;
  clip-path: polygon(13% 0, 100% 0, 100% 100%, 0 100%);
  opacity: 0.92;
  filter: saturate(0.82) contrast(1.08);
}

.hero-network {
  z-index: 2;
  opacity: 0.32;
}

.route-lines {
  z-index: 2;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 13, 19, 0.98) 0 44%, rgba(7, 13, 19, 0.82) 62%, rgba(7, 13, 19, 0.5)),
    linear-gradient(0deg, rgba(7, 13, 19, 0.94), rgba(7, 13, 19, 0.18) 46%);
}

.hero-grid {
  grid-template-columns: minmax(0, 0.95fr) 430px;
  align-items: center;
  gap: 4.5rem;
}

.hero-copy {
  max-width: 840px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.eyebrow::before {
  content: "";
  width: 42px;
  height: 1px;
  background: var(--gold);
}

h1 {
  max-width: 11.2ch;
  font-size: clamp(3.2rem, 6.6vw, 6.9rem);
  letter-spacing: 0;
}

.hero-lede {
  max-width: 750px;
  padding-left: 1.2rem;
  border-left: 2px solid rgba(202, 164, 107, 0.72);
}

.hero-actions {
  margin-top: 2rem;
}

.button {
  min-height: 52px;
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 0.86rem;
}

.button-primary {
  box-shadow: 0 18px 42px rgba(202, 164, 107, 0.18);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.035);
}

.hero-stats {
  max-width: 760px;
  margin-top: 2.2rem;
  border-radius: 0;
  border-color: rgba(202, 164, 107, 0.26);
  background: rgba(202, 164, 107, 0.1);
}

.hero-stats div {
  min-height: 92px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), transparent 52%),
    rgba(7, 13, 19, 0.64);
}

.hero-stats strong {
  font-size: 2rem;
}

.hero-panel {
  padding: 1.6rem 1.45rem 1.45rem;
  border-radius: 0;
  border-color: rgba(202, 164, 107, 0.26);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(7, 13, 19, 0.72);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.3);
}

.hero-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-top: 4px solid var(--gold);
  opacity: 0.75;
}

.hero-mark {
  width: 206px;
}

.panel-kicker {
  color: var(--gold);
  letter-spacing: 0.12em;
}

.hero-panel ul {
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.hero-panel li {
  padding: 0.84rem 0 0.84rem 1rem;
  border-left: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1rem;
  bottom: 1rem;
  width: 2px;
  background: var(--gold);
}

.manifest-strip {
  position: absolute;
  z-index: 5;
  right: 0;
  bottom: 0;
  left: 0;
  min-height: 68px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(202, 164, 107, 0.24);
  background: rgba(7, 13, 19, 0.86);
  color: rgba(255, 255, 255, 0.66);
  backdrop-filter: blur(14px);
}

.manifest-strip span {
  display: grid;
  place-items: center;
  padding: 0.85rem;
  border-right: 1px solid rgba(255, 255, 255, 0.11);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
}

.trust-strip {
  padding: 0;
  background: #0d2234;
}

.trust-grid {
  width: min(calc(100% - 2rem), var(--max));
  border-radius: 0;
  background: rgba(202, 164, 107, 0.18);
}

.trust-grid span {
  min-height: 74px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.01)),
    #0d2234;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
}

.capabilities-section {
  background:
    linear-gradient(90deg, rgba(7, 13, 19, 0.045) 1px, transparent 1px),
    linear-gradient(#f8f5ee, #f3efe6);
  background-size: 118px 118px, auto;
}

.section-heading {
  max-width: 930px;
  margin-inline: 0;
  text-align: left;
}

.dossier-heading {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2.4rem;
  align-items: end;
  max-width: none;
}

.dossier-heading h2 {
  margin-bottom: 0;
}

.dossier-heading p:not(.eyebrow) {
  margin-bottom: 0;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.capability-ledger {
  display: block;
  border-top: 1px solid rgba(7, 13, 19, 0.18);
}

.capability-ledger .service-card {
  min-height: 0;
  display: grid;
  grid-template-columns: 76px minmax(220px, 0.5fr) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: start;
  padding: 1.45rem 0;
  border: 0;
  border-bottom: 1px solid rgba(7, 13, 19, 0.14);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.capability-ledger .service-card:hover {
  transform: perspective(900px) translateX(8px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  border-color: rgba(7, 13, 19, 0.14);
  box-shadow: none;
}

.capability-ledger .service-card.feature {
  margin: 0.3rem 0;
  padding: 1.6rem;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(202, 164, 107, 0.2), transparent 58%),
    #0d2234;
}

.capability-ledger .service-card.feature h3 {
  color: #fff;
}

.capability-ledger .card-number {
  color: var(--gold-dark);
  font-size: 1rem;
}

.capability-ledger h3 {
  margin-bottom: 0;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
}

.capability-ledger p {
  margin-bottom: 0;
  font-size: 1rem;
}

.split-section {
  background:
    linear-gradient(90deg, #0b1722 0 38%, #f7f3eb 38%);
  border: 0;
}

.split-grid {
  grid-template-columns: 0.95fr 1.05fr;
}

.image-block {
  border-radius: 0;
  clip-path: polygon(0 0, 92% 0, 100% 100%, 8% 100%);
  box-shadow: 0 30px 80px rgba(7, 13, 19, 0.28);
}

.split-copy {
  padding: 2.6rem;
  background: rgba(255, 253, 248, 0.72);
  border-top: 1px solid rgba(7, 13, 19, 0.16);
  border-bottom: 1px solid rgba(7, 13, 19, 0.16);
}

.pill-list {
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.pill-list span {
  border: 0;
  border-radius: 0;
  background: rgba(255, 253, 248, 0.92);
}

.process-list {
  gap: 0;
  border-top: 1px solid rgba(7, 13, 19, 0.16);
}

.process-list div {
  border: 0;
  border-bottom: 1px solid rgba(7, 13, 19, 0.13);
  border-radius: 0;
  background: transparent;
}

.assurance-section {
  color: #fff;
  background:
    linear-gradient(90deg, rgba(202, 164, 107, 0.1) 1px, transparent 1px),
    #08121d;
  background-size: 98px 98px, auto;
}

.assurance-section h2,
.assurance-section h3 {
  color: #fff;
}

.assurance-section .section-heading p:not(.eyebrow),
.assurance-section .standards-list p {
  color: rgba(255, 255, 255, 0.68);
}

.assurance-section .standards-list {
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.assurance-section .standards-list article {
  padding: 1.25rem 0 1.25rem 1.4rem;
  border: 0;
  border-left: 2px solid var(--gold);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.contact-section {
  background:
    linear-gradient(90deg, rgba(7, 13, 19, 0.045) 1px, transparent 1px),
    #f7f3eb;
  background-size: 108px 108px, auto;
}

.contact-form {
  border-radius: 0;
  background: #fffdf8;
  box-shadow: 0 24px 70px rgba(7, 13, 19, 0.12);
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 78px;
    right: 1rem;
    left: 1rem;
    display: none;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    background: rgba(7, 21, 35, 0.98);
    box-shadow: var(--shadow);
  }

  .nav-links a {
    border-right: 0;
  }

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

  .nav-cta {
    text-align: center;
  }

  .hero-grid,
  .split-grid,
  .standards-grid,
  .about-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero {
    min-height: auto;
    padding-bottom: 108px;
  }

  .hero-rail {
    display: none;
  }

  .hero-bg {
    left: 0;
    clip-path: none;
    opacity: 0.52;
  }

  .hero-panel {
    max-width: 560px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    max-width: 560px;
  }

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

  .dossier-heading {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .capability-ledger .service-card {
    grid-template-columns: 58px 1fr;
    gap: 1rem;
  }

  .capability-ledger .service-card p {
    grid-column: 2;
  }

  .split-section {
    background: #f7f3eb;
  }

  .split-copy {
    padding: 0;
    background: transparent;
    border: 0;
  }

  .image-block {
    clip-path: none;
  }

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

  .image-block,
  .image-block img {
    min-height: 420px;
  }
}

@media (max-width: 640px) {
  .brand {
    width: 170px;
  }

  .section {
    padding: 76px 0;
  }

  .hero {
    padding-top: 118px;
    padding-bottom: 144px;
  }

  .route-lines,
  .hero-network {
    opacity: 0.32;
  }

  h1 {
    max-width: 100%;
    font-size: 2.62rem;
  }

  .hero-lede {
    padding-left: 0.9rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-stats {
    margin-top: 1.6rem;
  }

  .manifest-strip {
    grid-template-columns: 1fr;
    font-size: 0.72rem;
  }

  .manifest-strip span {
    min-height: 44px;
    padding: 0.6rem;
  }

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

  .trust-grid {
    width: 100%;
  }

  .capability-ledger .service-card,
  .capability-ledger .service-card.feature {
    grid-template-columns: 1fr;
    padding: 1.25rem 0;
  }

  .capability-ledger .service-card.feature {
    padding: 1.25rem;
  }

  .capability-ledger .service-card p {
    grid-column: auto;
  }

  .split-copy {
    padding-top: 1.4rem;
  }

  .process-list div {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

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

@keyframes hero-drift {
  0% {
    transform: scale(1.04) translate3d(0, 0, 0);
  }

  100% {
    transform: scale(1.08) translate3d(-18px, 10px, 0);
  }
}

@keyframes hero-rise {
  0% {
    opacity: 0.92;
    transform: translateY(8px) scale(0.998);
    filter: blur(0);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes route-sweep {
  0% {
    transform: translateX(0) rotate(-12deg);
    opacity: 0;
  }

  12%,
  62% {
    opacity: 0.72;
  }

  100% {
    transform: translateX(250%) rotate(-12deg);
    opacity: 0;
  }
}

@keyframes orbit-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.62;
  }

  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes line-in {
  0% {
    opacity: 0;
    transform: translateX(12px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes trust-signal {
  0%,
  22% {
    transform: scaleX(0);
    opacity: 0;
  }

  42%,
  72% {
    transform: scaleX(1);
    opacity: 1;
  }

  100% {
    transform: scaleX(0);
    transform-origin: right;
    opacity: 0;
  }
}

@keyframes scan {
  0%,
  18% {
    transform: translateY(-120%);
  }

  58%,
  100% {
    transform: translateY(520%);
  }
}

@keyframes panel-sheen {
  0%,
  32% {
    transform: translateX(-120%);
  }

  62%,
  100% {
    transform: translateX(120%);
  }
}

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

  .hero-network,
  .route-lines {
    display: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
    filter: none;
  }
}
