:root {
  --dps-green-primary: #0f2f26;
  --dps-green-deep: #0a221c;
  --dps-green-surface: #163d33;
  --dps-gold-accent: #c6a75e;
  --dps-gold-soft: #d4b87a;
  --dps-gold-muted: #9f8447;
  --dps-ivory: #f2f1ed;
  --dps-ivory-soft: #e7e4dc;
  --dps-shadow-deep: rgba(0, 0, 0, 0.45);
  --dps-shadow-soft: rgba(0, 0, 0, 0.25);
  --home-section-gap: clamp(0.95rem, 1.7vw, 1.35rem);
  --home-card-radius: 1rem;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
}

body {
  font-family: "Outfit", sans-serif;
  color: var(--dps-ivory);
  background:
    radial-gradient(circle at 9% 12%, rgba(198, 167, 94, 0.16), transparent 34%),
    radial-gradient(circle at 82% 10%, rgba(129, 181, 165, 0.16), transparent 30%),
    linear-gradient(180deg, #173f34 0%, #0f2f26 58%, #091e18 100%);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: -32% -26%;
  pointer-events: none;
  z-index: -1;
  opacity: 0.3;
  background:
    conic-gradient(
      from 120deg at 50% 50%,
      rgba(212, 184, 122, 0.12),
      rgba(154, 227, 200, 0.1),
      rgba(212, 184, 122, 0.12)
    );
  animation: auroraRotate 28s linear infinite;
}

.scroll-beam {
  --beam-hue: 160;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  z-index: 180;
  pointer-events: none;
  background: rgba(6, 19, 15, 0.56);
  box-shadow: 0 1px 0 rgba(244, 230, 186, 0.2);
}

.scroll-beam-fill {
  display: block;
  width: 100%;
  height: 100%;
  transform-origin: left center;
  transform: scaleX(0);
  opacity: 0.45;
  background:
    linear-gradient(
      90deg,
      hsl(var(--beam-hue) 67% 58%),
      #f4e6ba 50%,
      hsl(calc(var(--beam-hue) + 28) 70% 56%)
    );
  box-shadow: 0 0 15px rgba(154, 227, 200, 0.52), 0 0 30px rgba(212, 184, 122, 0.46);
  transition: transform 130ms linear, opacity 180ms ease;
}

.home-masthead {
  grid-area: ribbon;
  position: relative;
  isolation: isolate;
  width: 100%;
  height: clamp(7.4rem, 16vw, 10.6rem);
  overflow: hidden;
  border-bottom: 1px solid rgba(198, 167, 94, 0.5);
  background:
    radial-gradient(circle at 18% 35%, rgba(212, 184, 122, 0.18), transparent 48%),
    radial-gradient(circle at 78% 22%, rgba(154, 227, 200, 0.12), transparent 46%),
    linear-gradient(120deg, rgba(8, 25, 20, 0.92), rgba(15, 47, 38, 0.82));
}

.home-masthead::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(212, 184, 122, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 184, 122, 0.06) 1px, transparent 1px);
  background-size: 74px 74px;
  opacity: 0.42;
  mix-blend-mode: screen;
  pointer-events: none;
}

.home-masthead-inner {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  align-items: center;
  gap: clamp(0.9rem, 2.1vw, 1.5rem);
  padding: 0.85rem clamp(0.9rem, 2.8vw, 2rem);
}

.home-masthead-copy {
  min-width: 0;
}

.home-masthead-logo {
  width: clamp(3.6rem, 8vw, 6.8rem);
  height: auto;
  aspect-ratio: 1 / 1;
  display: block;
  object-fit: contain;
  border-radius: 1rem;
  border: 1px solid rgba(212, 184, 122, 0.56);
  background: rgba(10, 34, 28, 0.6);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.34);
  flex-shrink: 0;
}

.home-masthead-name {
  margin: 0;
  color: #f8f6ef;
  font-family: "Cinzel", serif;
  font-size: clamp(1.55rem, 3.35vw, 3.25rem);
  font-weight: 700;
  letter-spacing: clamp(0.06em, 0.22vw, 0.15em);
  line-height: 1.1;
  text-transform: uppercase;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.52);
}

.home-masthead-address {
  margin: 0.3rem 0 0;
  color: #f4e6ba;
  font-size: clamp(0.78rem, 1.55vw, 1.55rem);
  font-weight: 700;
  letter-spacing: clamp(0.05em, 0.15vw, 0.1em);
  line-height: 1.22;
  text-transform: uppercase;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45);
}

.home-masthead-sheen {
  position: absolute;
  top: -95%;
  left: -26%;
  width: 38%;
  height: 290%;
  transform: rotate(16deg);
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.18),
    rgba(255, 255, 255, 0)
  );
  animation: homeSheen 9.5s linear infinite;
  pointer-events: none;
  opacity: 0.78;
}

.top-nav.is-condensed .home-masthead {
  height: 3.85rem;
  border-bottom-color: rgba(212, 184, 122, 0.36);
}

.top-nav.is-condensed .home-masthead-inner {
  padding-top: 0.35rem;
  padding-bottom: 0.35rem;
}

.top-nav.is-condensed .home-masthead-logo {
  width: 2.6rem;
  border-radius: 0.7rem;
}

.top-nav.is-condensed .home-masthead-name {
  font-size: 1.05rem;
  letter-spacing: 0.12em;
}

.top-nav.is-condensed .home-masthead-address {
  display: none;
}

.skip-link {
  position: absolute;
  left: 0.8rem;
  top: -3rem;
  background: var(--dps-gold-accent);
  color: #10211c;
  padding: 0.45rem 0.7rem;
  text-decoration: none;
  z-index: 100;
}

.skip-link:focus {
  top: 0.8rem;
}

main {
  width: min(1220px, 95vw);
  margin: 0 auto 1.2rem;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: min(80vh, 760px);
  margin-top: 1rem;
  border: 1px solid rgba(198, 167, 94, 0.33);
  box-shadow: 0 30px 44px var(--dps-shadow-deep);
  isolation: isolate;
  perspective: 1200px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(120% 70% at 50% 48%, rgba(255, 255, 255, 0.08), transparent 62%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.08) 36%, rgba(0, 0, 0, 0.44) 100%);
  opacity: 0.62;
}

.hero::after {
  content: "";
  position: absolute;
  inset: -14% -34%;
  z-index: 3;
  pointer-events: none;
  opacity: 0;
  transform: translateX(-60%);
  background: linear-gradient(
    112deg,
    transparent 36%,
    rgba(244, 230, 186, 0.16) 50%,
    transparent 64%
  );
}

.hero.hero--transitioning::after {
  animation: heroLightSweep 1250ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0;
  filter: brightness(0.58) saturate(1.05) contrast(1.02);
  transform: scale(1.08) translate3d(0, 0, 0);
  transform-origin: center center;
  transition:
    opacity 1200ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 9600ms cubic-bezier(0.2, 0.7, 0.2, 1),
    filter 1200ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, opacity;
  backface-visibility: hidden;
}

.hero-image.is-active {
  opacity: 1;
  filter: brightness(0.62) saturate(1.08) contrast(1.04);
  animation: heroKenBurns 9600ms ease-in-out both;
}

.hero-image.hero-image--next {
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at var(--hero-spot-x, 50%) var(--hero-spot-y, 42%), rgba(244, 230, 186, 0.2), transparent 34%),
    radial-gradient(circle at 20% 22%, rgba(212, 184, 122, 0.12), transparent 36%),
    radial-gradient(circle at 80% 14%, rgba(138, 209, 183, 0.1), transparent 34%),
    linear-gradient(158deg, rgba(10, 32, 26, 0.28), rgba(5, 15, 12, 0.72) 66%);
  transition: opacity 920ms ease, background-position 180ms linear;
}

.hero-grid-scan {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.05;
  background:
    linear-gradient(rgba(212, 184, 122, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 184, 122, 0.08) 1px, transparent 1px);
  background-size: 56px 56px;
  mix-blend-mode: screen;
  animation: scanFlow 16s linear infinite;
  pointer-events: none;
}

.hero.hero--transitioning .hero-overlay {
  opacity: 0.88;
}

.hero.hero--impact .hero-ring-cluster span {
  border-color: rgba(244, 230, 186, 0.58);
  animation-duration: 3.2s;
}

.hero-impact-wave {
  position: absolute;
  width: 22px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(244, 230, 186, 0.8);
  background: radial-gradient(circle, rgba(244, 230, 186, 0.3), rgba(244, 230, 186, 0));
  transform: translate(-50%, -50%) scale(0.2);
  opacity: 0.95;
  pointer-events: none;
  z-index: 3;
  animation: heroImpactWave 900ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-impact-wave::before {
  content: "";
  position: absolute;
  inset: 25%;
  border: 1px solid rgba(154, 227, 200, 0.6);
  border-radius: 50%;
}

.hero-signal-canvas {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.34;
}

.hero-ring-cluster {
  position: absolute;
  right: clamp(1rem, 3.2vw, 2.2rem);
  top: clamp(1rem, 2.8vw, 2rem);
  width: clamp(130px, 20vw, 250px);
  aspect-ratio: 1;
  z-index: 3;
  pointer-events: none;
}

.hero-ring-cluster span {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(212, 184, 122, 0.28);
  border-radius: 50%;
  animation: orbPulse 8.2s ease-in-out infinite;
}

.hero-ring-cluster span:nth-child(2) {
  inset: 15%;
  animation-delay: -2s;
}

.hero-ring-cluster span:nth-child(3) {
  inset: 30%;
  animation-delay: -4s;
}

.hero-content {
  position: relative;
  z-index: 4;
  max-width: min(48vw, 620px);
  margin: clamp(3.5rem, 8vh, 6rem) 0 0 clamp(1rem, 3vw, 2rem);
  padding: 1.2rem 1.2rem 1.25rem;
  border: 1px solid rgba(198, 167, 94, 0.26);
  border-radius: 1rem;
  background: linear-gradient(140deg, rgba(9, 28, 23, 0.6), rgba(9, 28, 23, 0.4));
  backdrop-filter: blur(4px);
  box-shadow: 0 12px 18px rgba(0, 0, 0, 0.24);
  transform-style: preserve-3d;
  opacity: 0;
  transform: translateY(1.8rem);
  transition: opacity 1000ms ease, transform 1000ms ease;
}

body.is-ready .hero-content {
  opacity: 1;
  transform: translateY(0);
}

body.is-ready .hero-image {
  transform: scale(1);
}

.section-mark {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.7rem;
  color: var(--dps-gold-soft);
}

.hero-rotation-label {
  margin: 0.44rem 0 0;
  color: rgba(212, 184, 122, 0.92);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-future-line {
  margin: 0.52rem 0 0;
  color: rgba(154, 227, 200, 0.95);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: opacity 240ms ease, transform 240ms ease, filter 240ms ease;
  will-change: opacity, transform, filter;
}

.hero-future-line.is-changing {
  opacity: 0.7;
  transform: translateY(-1px);
  filter: blur(0.2px);
}

.hero h1 {
  margin: 0.52rem 0 0.82rem;
  font-family: "Cinzel", serif;
  font-size: clamp(1.65rem, 3.4vw, 2.7rem);
  line-height: 1.2;
  text-wrap: balance;
  color: #f8f6ef;
  text-shadow: 0 6px 22px rgba(0, 0, 0, 0.45);
}

.hero h1.is-scrambling {
  letter-spacing: 0.012em;
  filter: drop-shadow(0 0 10px rgba(212, 184, 122, 0.16));
}

.hero p {
  margin: 0;
  line-height: 1.62;
  color: var(--dps-ivory-soft);
}

.hero-lead {
  margin-top: 0;
  max-width: 60ch;
  font-size: clamp(0.96rem, 1.1vw, 1.05rem);
}

.hero-actions {
  margin-top: 1.1rem;
  display: flex;
  gap: 0.68rem;
  flex-wrap: wrap;
}

.cta-main,
.cta-ghost {
  --mag-x: 0px;
  --mag-y: 0px;
  --lift: 0px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--dps-ivory);
  border: 1px solid rgba(198, 167, 94, 0.52);
  padding: 0.64rem 0.95rem;
  min-height: 2.55rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  overflow: hidden;
  border-radius: 0.75rem;
  transform: translate3d(var(--mag-x), calc(var(--mag-y) - var(--lift)), 0);
  transition: transform 190ms ease, box-shadow 190ms ease, background 190ms ease;
}

.cta-main::before,
.cta-ghost::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(212, 184, 122, 0), rgba(212, 184, 122, 0.22), rgba(212, 184, 122, 0));
  transform: translateX(-120%);
  transition: transform 420ms ease;
}

.cta-main {
  background: linear-gradient(145deg, rgba(198, 167, 94, 0.22), rgba(136, 96, 35, 0.2));
}

.cta-main:hover,
.cta-ghost:hover,
.cta-main:focus-visible,
.cta-ghost:focus-visible {
  --lift: 2px;
  background: rgba(198, 167, 94, 0.25);
  box-shadow: 0 10px 16px var(--dps-shadow-soft);
}

.cta-main:hover::before,
.cta-ghost:hover::before,
.cta-main:focus-visible::before,
.cta-ghost:focus-visible::before {
  transform: translateX(120%);
}

.cta-main:focus-visible,
.cta-ghost:focus-visible,
.final-links a:focus-visible {
  outline: 2px solid rgba(242, 241, 237, 0.84);
  outline-offset: 2px;
}

.seal {
  position: absolute;
  right: 1.4rem;
  bottom: 1.2rem;
  width: 84px;
  height: 90px;
  border: 1px solid rgba(198, 167, 94, 0.55);
  border-radius: 0.8rem;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at center, rgba(198, 167, 94, 0.2), rgba(10, 34, 28, 0.74));
  box-shadow: 0 0 24px rgba(198, 167, 94, 0.24);
  z-index: 4;
}

.seal img {
  width: 78%;
  height: 84%;
  display: block;
  object-fit: contain;
}

.status-strip {
  margin-top: var(--home-section-gap);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.status-strip article {
  position: relative;
  overflow: hidden;
  border-radius: var(--home-card-radius);
  border: 1px solid rgba(198, 167, 94, 0.28);
  background: linear-gradient(180deg, rgba(20, 56, 47, 0.9), rgba(13, 41, 34, 0.95));
  padding: 0.95rem;
  text-align: center;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.22);
  display: grid;
  align-content: center;
  min-height: 108px;
  transform: translate3d(0, 0, 0);
  transition: transform 240ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.status-strip article::after {
  content: "";
  position: absolute;
  inset: -40%;
  pointer-events: none;
  opacity: 0;
  background:
    radial-gradient(circle at var(--card-x, 50%) var(--card-y, 50%), rgba(244, 230, 186, 0.28), transparent 26%);
  transition: opacity 220ms ease;
}

.status-strip article.is-hovered {
  border-color: rgba(212, 184, 122, 0.74);
  box-shadow: 0 16px 26px rgba(0, 0, 0, 0.28);
}

.status-strip article.is-hovered::after {
  opacity: 1;
}

.prism-card {
  position: relative;
  overflow: hidden;
  transform: translate3d(0, 0, 0);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.prism-card::before {
  content: "";
  position: absolute;
  inset: -46%;
  pointer-events: none;
  opacity: 0;
  background:
    conic-gradient(
      from 0deg at var(--card-x, 50%) var(--card-y, 50%),
      rgba(212, 184, 122, 0.22),
      rgba(154, 227, 200, 0.18),
      rgba(212, 184, 122, 0.22)
    );
  animation: prismSpin 8s linear infinite;
  transition: opacity 240ms ease;
}

.prism-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at var(--card-x, 50%) var(--card-y, 50%), rgba(255, 255, 255, 0.14), transparent 42%);
  opacity: 0;
  transition: opacity 220ms ease;
}

.prism-card.is-hovered {
  border-color: rgba(212, 184, 122, 0.74);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.3);
}

.prism-card.is-hovered::before,
.prism-card.is-hovered::after {
  opacity: 1;
}

.status-label {
  margin: 0;
  color: var(--dps-ivory-soft);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.status-value {
  margin: 0.28rem 0 0;
  color: var(--dps-gold-soft);
  font-family: "Cinzel", serif;
  font-size: 1.86rem;
  line-height: 1.12;
}

.future-command {
  margin-top: var(--home-section-gap);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.execution-bridge {
  margin-top: var(--home-section-gap);
  border: 1px solid rgba(198, 167, 94, 0.32);
  border-radius: 1.1rem;
  padding: 1rem;
  background:
    radial-gradient(circle at 12% 18%, rgba(212, 184, 122, 0.13), transparent 46%),
    radial-gradient(circle at 88% 12%, rgba(154, 227, 200, 0.1), transparent 42%),
    linear-gradient(165deg, rgba(16, 47, 40, 0.9), rgba(9, 29, 24, 0.96));
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.24);
}

.execution-bridge header p {
  margin: 0;
  color: rgba(154, 227, 200, 0.94);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
}

.execution-bridge header h2 {
  margin: 0.42rem 0 0.46rem;
  font-family: "Cinzel", serif;
  color: var(--dps-gold-soft);
  font-size: clamp(1.22rem, 2.4vw, 1.85rem);
}

.execution-bridge header {
  margin-bottom: 0.8rem;
}

.execution-bridge header > p:last-child {
  margin: 0;
  color: var(--dps-ivory-soft);
  line-height: 1.6;
  max-width: 74ch;
}

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

.execution-card {
  border-radius: var(--home-card-radius);
  border: 1px solid rgba(198, 167, 94, 0.28);
  background: linear-gradient(180deg, rgba(20, 56, 47, 0.9), rgba(13, 41, 34, 0.95));
  padding: 0.95rem;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.22);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.execution-card:hover,
.execution-card:focus-within {
  transform: translateY(-1px);
  border-color: rgba(212, 184, 122, 0.64);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.24);
}

.execution-tag {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.68rem;
  color: rgba(212, 184, 122, 0.92);
}

.execution-card h3 {
  margin: 0.45rem 0 0;
  font-family: "Cinzel", serif;
  color: #f2e4bc;
  font-size: 1rem;
}

.execution-card p {
  margin: 0.52rem 0 0;
  color: var(--dps-ivory-soft);
  line-height: 1.58;
}

.command-card {
  border-radius: 1.05rem;
  border: 1px solid rgba(198, 167, 94, 0.3);
  background: linear-gradient(180deg, rgba(20, 56, 47, 0.9), rgba(13, 41, 34, 0.95));
  padding: 0.95rem;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.22);
  transform-style: preserve-3d;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.command-card:hover,
.command-card:focus-within {
  border-color: rgba(212, 184, 122, 0.65);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.24);
}

.command-tag {
  margin: 0;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(154, 227, 200, 0.92);
}

.command-card h2 {
  margin: 0.5rem 0 0;
  font-family: "Cinzel", serif;
  font-size: 1.1rem;
  color: var(--dps-gold-soft);
}

.command-card p {
  margin: 0.52rem 0 0;
  line-height: 1.6;
  color: var(--dps-ivory-soft);
}

.final-action-strip {
  margin: var(--home-section-gap) 0 2.1rem;
}

.final-action-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0.8rem;
}

.final-action-card {
  border-radius: var(--home-card-radius);
  border: 1px solid rgba(198, 167, 94, 0.32);
  background:
    radial-gradient(circle at 88% 10%, rgba(212, 184, 122, 0.12), transparent 42%),
    linear-gradient(180deg, rgba(20, 56, 47, 0.9), rgba(13, 41, 34, 0.95));
  padding: 1rem;
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.24);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.final-action-card:hover,
.final-action-card:focus-within {
  transform: translateY(-1px);
  border-color: rgba(212, 184, 122, 0.66);
  box-shadow: 0 14px 22px rgba(0, 0, 0, 0.26);
}

.final-kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  color: rgba(154, 227, 200, 0.92);
}

.final-action-card h2 {
  margin: 0.45rem 0 0;
  font-family: "Cinzel", serif;
  color: var(--dps-gold-soft);
  font-size: clamp(1.12rem, 2.1vw, 1.45rem);
}

.final-action-card p {
  margin: 0.58rem 0 0;
  color: var(--dps-ivory-soft);
  line-height: 1.6;
}

.final-links {
  margin-top: 0.85rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
}

.final-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(198, 167, 94, 0.42);
  border-radius: 0.75rem;
  padding: 0.5rem 0.6rem;
  color: var(--dps-ivory);
  text-decoration: none;
  background: rgba(10, 34, 28, 0.56);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.final-links a:hover,
.final-links a:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(212, 184, 122, 0.88);
  background: rgba(198, 167, 94, 0.18);
}

.reduced-motion * {
  transition: none !important;
  animation: none !important;
}

body.reduced-motion::before {
  animation: none !important;
}

body.reduced-motion .scroll-beam-fill {
  transition: none !important;
}

@keyframes scanFlow {
  from {
    background-position: 0 0, 0 0;
  }

  to {
    background-position: 170px 100px, 130px 140px;
  }
}

@keyframes orbPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.36;
  }

  50% {
    transform: scale(1.11);
    opacity: 0.68;
  }
}

@keyframes futureBlink {
  0%,
  100% {
    opacity: 0.52;
  }

  50% {
    opacity: 1;
  }
}

@keyframes homeSheen {
  from {
    transform: translateX(0) rotate(16deg);
  }

  to {
    transform: translateX(320%) rotate(16deg);
  }
}

@keyframes heroKenBurns {
  0% {
    transform: scale(1.035) translate3d(0, 0, 0);
  }

  50% {
    transform: scale(1.085) translate3d(-1.4%, -0.9%, 0);
  }

  100% {
    transform: scale(1.055) translate3d(0.9%, 0.6%, 0);
  }
}

@keyframes heroLightSweep {
  0% {
    opacity: 0;
    transform: translateX(-60%);
  }

  30% {
    opacity: 0.55;
  }

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

@keyframes heroImpactWave {
  to {
    transform: translate(-50%, -50%) scale(16);
    opacity: 0;
  }
}

@keyframes auroraRotate {
  from {
    transform: rotate(0deg) scale(1);
  }

  to {
    transform: rotate(360deg) scale(1.08);
  }
}

@keyframes prismSpin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@media (pointer: coarse) {
  .scroll-beam {
    height: 3px;
  }
}

@media (max-width: 1080px) {
  .hero-content {
    max-width: min(68vw, 600px);
  }

  .hero-actions {
    gap: 0.55rem;
  }

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

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

  .execution-grid {
    grid-template-columns: 1fr;
  }

  .final-action-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  body::before {
    opacity: 0.22;
  }

  .home-masthead {
    height: clamp(6.9rem, 26vw, 8.9rem);
  }

  .home-masthead-inner {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 0.5rem;
  }

  .home-masthead-logo {
    width: 2.85rem;
    border-radius: 0.75rem;
    padding: 0.2rem;
  }

  .home-masthead-name {
    font-size: clamp(1.05rem, 4.3vw, 1.35rem);
  }

  .home-masthead-address {
    font-size: clamp(0.68rem, 3vw, 0.9rem);
  }

  .home-masthead-copy {
    width: 100%;
  }

  .hero {
    min-height: min(84vh, 720px);
    display: flex;
    align-items: flex-end;
  }

  .hero::before {
    opacity: 0.44;
    background:
      radial-gradient(130% 72% at 50% 48%, rgba(255, 255, 255, 0.06), transparent 64%),
      linear-gradient(180deg, rgba(0, 0, 0, 0.28) 0%, rgba(0, 0, 0, 0.08) 38%, rgba(0, 0, 0, 0.34) 100%);
  }

  .hero-overlay {
    background:
      radial-gradient(circle at 50% 44%, rgba(244, 230, 186, 0.16), transparent 36%),
      radial-gradient(circle at 18% 22%, rgba(212, 184, 122, 0.09), transparent 40%),
      radial-gradient(circle at 82% 14%, rgba(138, 209, 183, 0.08), transparent 36%),
      linear-gradient(156deg, rgba(10, 32, 26, 0.16), rgba(5, 15, 12, 0.5) 68%);
  }

  .hero-grid-scan {
    opacity: 0.03;
  }

  .hero-signal-canvas {
    opacity: 0.18;
  }

  .hero-image {
    filter: brightness(0.66) saturate(1.06) contrast(1.02);
  }

  .hero-image.is-active {
    filter: brightness(0.72) saturate(1.08) contrast(1.03);
  }

  .hero-content {
    margin: 0 0.8rem 0.9rem;
    max-width: min(88%, 25rem);
    padding: 0.88rem 0.92rem;
    border-color: rgba(198, 167, 94, 0.2);
    background: linear-gradient(160deg, rgba(7, 20, 16, 0.42), rgba(7, 20, 16, 0.18));
    backdrop-filter: blur(2px);
    box-shadow: 0 10px 16px rgba(0, 0, 0, 0.2);
  }

  .hero h1 {
    font-size: clamp(1.34rem, 5.9vw, 1.92rem);
    margin: 0.4rem 0 0.58rem;
    line-height: 1.24;
  }

  .hero-lead {
    font-size: 0.92rem;
    line-height: 1.5;
  }

  .hero-actions {
    margin-top: 0.86rem;
    gap: 0.5rem;
  }

  .hero-actions .cta-main,
  .hero-actions .cta-ghost {
    flex: 1 1 100%;
  }

  .seal {
    right: 0.8rem;
    bottom: 0.8rem;
    width: 70px;
    height: 76px;
  }

  .future-command {
    grid-template-columns: 1fr;
  }

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

  .final-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .section-mark {
    font-size: 0.62rem;
  }

  .hero-rotation-label,
  .hero-future-line {
    display: none;
  }

  .hero-content {
    max-width: calc(100% - 1.6rem);
  }

  .seal {
    width: 62px;
    height: 68px;
  }
}
