:root {
  --respond: #ff2f00;
  --command: #d19747;
  --control: #c0c9d5;
  --matrix: #e7d7b7;
  --black: #021717;
  --white: #ffffff;
  --ink: #101314;
  --muted: #5f6b70;
  --paper: #f8f3e9;
  --line: #cfd7d6;
  --red-dark: #8b1807;
  --blue: #1e3555;
  --rcc-cut-sm: 10px;
  --rcc-cut-md: 16px;
  --rcc-cut-lg: 22px;
  --grain-texture: url("data:image/svg+xml,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20width%3D'140'%20height%3D'140'%20viewBox%3D'0%200%20140%20140'%3E%3Cfilter%20id%3D'grain'%3E%3CfeTurbulence%20type%3D'fractalNoise'%20baseFrequency%3D'0.92'%20numOctaves%3D'5'%20stitchTiles%3D'stitch'%2F%3E%3CfeColorMatrix%20type%3D'saturate'%20values%3D'0'%2F%3E%3CfeComponentTransfer%3E%3CfeFuncA%20type%3D'table'%20tableValues%3D'0.08%200.82'%2F%3E%3C%2FfeComponentTransfer%3E%3C%2Ffilter%3E%3Crect%20width%3D'100%25'%20height%3D'100%25'%20filter%3D'url(%23grain)'%2F%3E%3C%2Fsvg%3E");
}

* {
  box-sizing: border-box;
}

html {
  background: var(--paper);
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  position: relative;
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

main {
  background: var(--matrix);
}

body::before {
  content: "";
  position: fixed;
  z-index: 100;
  inset: -24%;
  pointer-events: none;
  background-image: var(--grain-texture), var(--grain-texture);
  background-position: 0 0, 34px 21px;
  background-size: 112px 112px, 62px 62px;
  mix-blend-mode: normal;
  opacity: 0.16;
  transform: translate3d(0, 0, 0);
  filter: contrast(1.45);
  animation: grain-shift 1.35s steps(4) infinite;
}

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

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

button {
  cursor: pointer;
}

body.is-request-open {
  overflow: hidden;
}

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  color: var(--white);
  animation: header-in 720ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.nav {
  position: relative;
  width: min(560px, 56vw);
}

.nav-toggle {
  position: relative;
  --corner-cut: var(--rcc-cut-sm);
  --corner-line: rgba(255, 47, 0, 0.62);
  display: none;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid rgba(231, 215, 183, 0.22);
  color: var(--matrix);
  background:
    repeating-linear-gradient(
      119deg,
      rgba(231, 215, 183, 0.08) 0,
      rgba(231, 215, 183, 0.08) 1px,
      transparent 1px,
      transparent 5px
    ),
    rgba(2, 23, 23, 0.8);
  box-shadow: 0 18px 48px rgba(2, 23, 23, 0.18);
  cursor: pointer;
  font: inherit;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
  clip-path: polygon(var(--rcc-cut-sm) 0, 100% 0, 100% calc(100% - var(--rcc-cut-sm)), calc(100% - var(--rcc-cut-sm)) 100%, 0 100%, 0 var(--rcc-cut-sm));
}

.nav-toggle-icon {
  position: relative;
  width: 18px;
  height: 12px;
}

.nav-toggle-icon::before,
.nav-toggle-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: currentColor;
  transition:
    top 180ms ease,
    transform 240ms cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-toggle-icon::before {
  top: 1px;
}

.nav-toggle-icon::after {
  top: 9px;
}

.nav.is-open .nav-toggle-icon::before {
  top: 5px;
  transform: rotate(45deg);
}

.nav.is-open .nav-toggle-icon::after {
  top: 5px;
  transform: rotate(-45deg);
}

.nav-shell {
  position: relative;
  --corner-cut: var(--rcc-cut-md);
  --corner-line: rgba(231, 215, 183, 0.24);
  --nav-shell-padding: 5px;
  display: flex;
  gap: 2px;
  padding: var(--nav-shell-padding);
  border: 1px solid rgba(231, 215, 183, 0.22);
  background:
    repeating-linear-gradient(
      119deg,
      rgba(231, 215, 183, 0.08) 0,
      rgba(231, 215, 183, 0.08) 1px,
      transparent 1px,
      transparent 5px
    ),
    rgba(2, 23, 23, 0.72);
  box-shadow: 0 18px 48px rgba(2, 23, 23, 0.18);
  backdrop-filter: blur(14px);
  clip-path: polygon(var(--rcc-cut-md) 0, 100% 0, 100% calc(100% - var(--rcc-cut-md)), calc(100% - var(--rcc-cut-md)) 100%, 0 100%, 0 var(--rcc-cut-md));
}

.nav-shell::before,
.nav-toggle::before,
.button::before,
.card::before,
.launch-detail::before,
.request-panel::before {
  content: "";
  position: absolute;
  z-index: 5;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
        135deg,
        transparent calc(50% - 0.75px),
        var(--corner-line) calc(50% - 0.75px),
        var(--corner-line) calc(50% + 0.75px),
        transparent calc(50% + 0.75px)
      )
      top left / var(--corner-cut) var(--corner-cut) no-repeat,
    linear-gradient(
        135deg,
        transparent calc(50% - 0.75px),
        var(--corner-line) calc(50% - 0.75px),
        var(--corner-line) calc(50% + 0.75px),
        transparent calc(50% + 0.75px)
      )
      bottom right / var(--corner-cut) var(--corner-cut) no-repeat;
}

.nav-link {
  position: relative;
  z-index: 1;
  isolation: isolate;
  --nav-hover-start-cut: 7px;
  --nav-hover-end-cut: 7px;
  flex: 1;
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  border: 0;
  color: rgba(231, 215, 183, 0.68);
  background: transparent;
  cursor: pointer;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.nav-link:first-child {
  --nav-hover-start-cut: calc(var(--rcc-cut-md) - var(--nav-shell-padding));
}

.nav-link:last-child {
  --nav-hover-end-cut: calc(var(--rcc-cut-md) - var(--nav-shell-padding));
}

.nav-link::before,
.nav-link::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition:
    opacity 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

.nav-link::before {
  z-index: -1;
  background:
    linear-gradient(
        135deg,
        transparent calc(50% - 0.75px),
        rgba(255, 47, 0, 0.36) calc(50% - 0.75px),
        rgba(255, 47, 0, 0.36) calc(50% + 0.75px),
        transparent calc(50% + 0.75px)
      )
      top left / var(--nav-hover-start-cut) var(--nav-hover-start-cut) no-repeat,
    linear-gradient(
        135deg,
        transparent calc(50% - 0.75px),
        rgba(255, 47, 0, 0.36) calc(50% - 0.75px),
        rgba(255, 47, 0, 0.36) calc(50% + 0.75px),
        transparent calc(50% + 0.75px)
      )
      bottom right / var(--nav-hover-end-cut) var(--nav-hover-end-cut) no-repeat;
}

.nav-link::after {
  z-index: -2;
  border: 1px solid rgba(255, 47, 0, 0);
  background: rgba(255, 47, 0, 0);
  clip-path: polygon(var(--nav-hover-start-cut) 0, 100% 0, 100% calc(100% - var(--nav-hover-end-cut)), calc(100% - var(--nav-hover-end-cut)) 100%, 0 100%, 0 var(--nav-hover-start-cut));
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--white);
}

.nav-link:hover::after,
.nav-link:focus-visible::after {
  border-color: rgba(255, 47, 0, 0.26);
  background: rgba(255, 47, 0, 0.12);
  opacity: 1;
}

.nav-link:hover::before,
.nav-link:focus-visible::before {
  opacity: 1;
}

.nav-link:focus-visible,
.nav-toggle:focus-visible {
  outline: 1px solid var(--respond);
  outline-offset: 2px;
}

.hero {
  position: relative;
  min-height: 78svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--black) url("./public/rcc-hero-field.jpg") center / cover no-repeat;
  padding: 112px clamp(20px, 7vw, 92px) 58px;
}

.hero-media,
.hero-scrim,
.hero-glitch {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  z-index: 0;
  display: block;
  object-fit: cover;
  object-position: center;
  transform: scale(1.03);
  animation: hero-drift 18s ease-in-out infinite alternate;
  will-change: object-position, filter, transform;
}

@media (prefers-reduced-motion: reduce) {
  .hero-media {
    display: none;
  }
}

.hero-scrim {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(2, 23, 23, 0.94) 0%, rgba(2, 23, 23, 0.76) 44%, rgba(2, 23, 23, 0.46) 100%),
    linear-gradient(180deg, rgba(2, 23, 23, 0.72) 0%, rgba(2, 23, 23, 0.18) 48%, rgba(2, 23, 23, 0.82) 100%);
}

.hero-glitch {
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 47, 0, 0.58), rgba(0, 222, 255, 0.42)),
    url("./public/rcc-hero-field.jpg") center / cover no-repeat;
  mix-blend-mode: screen;
  opacity: 0;
  transform: translate3d(0, 0, 0);
}

.hero-glitch::before,
.hero-glitch::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
}

.hero-glitch::before {
  background: repeating-linear-gradient(
    0deg,
    rgba(255, 255, 255, 0.36) 0,
    rgba(255, 255, 255, 0.36) 1px,
    transparent 1px,
    transparent 5px
  );
}

.hero-glitch::after {
  background:
    linear-gradient(90deg, transparent 0%, rgba(255, 47, 0, 0.44) 47%, transparent 54%),
    linear-gradient(90deg, transparent 0%, rgba(231, 215, 183, 0.32) 52%, transparent 60%);
  transform: translateX(-18%);
}

.hero.is-video-glitching .hero-media {
  animation:
    hero-drift 18s ease-in-out infinite alternate,
    video-glitch-media 860ms steps(2, end) both;
}

.hero.is-video-glitching .hero-glitch {
  animation: video-glitch-overlay 860ms steps(2, end) both;
}

.hero.is-video-glitching .hero-glitch::before {
  animation: video-glitch-lines 860ms steps(2, end) both;
}

.hero.is-video-glitching .hero-glitch::after {
  animation: video-glitch-tear 860ms steps(2, end) both;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(760px, 100%);
  min-width: 0;
  max-width: min(760px, 100%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--respond);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--respond);
}

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

h1 {
  margin-bottom: 0;
}

.hero-title {
  width: min(520px, 78vw);
  margin-bottom: 24px;
}

.hero-title img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 18px 26px rgba(0, 0, 0, 0.34));
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(34px, 5vw, 72px);
  line-height: 0.98;
  font-weight: 950;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 28px;
  line-height: 1;
}

.lede {
  width: 100%;
  max-width: 680px;
  margin-left: 2px;
  padding-left: 18px;
  border-left: 6px solid var(--respond);
  color: #f0eee9;
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.46;
  font-weight: 620;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  position: relative;
  --corner-cut: var(--rcc-cut-sm);
  --corner-line: currentColor;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  border-radius: 0;
  padding: 0 20px;
  color: inherit;
  background: transparent;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  clip-path: polygon(var(--rcc-cut-sm) 0, 100% 0, 100% calc(100% - var(--rcc-cut-sm)), calc(100% - var(--rcc-cut-sm)) 100%, 0 100%, 0 var(--rcc-cut-sm));
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.button::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -1px;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.32) 45%, transparent 62%);
  transform: translateX(-130%);
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

.button:active {
  transform: translateY(0);
}

.button:focus-visible {
  outline: 2px solid var(--respond);
  outline-offset: 3px;
}

.button.primary {
  color: var(--white);
  background: var(--respond);
  border-color: var(--respond);
  box-shadow: 0 16px 34px rgba(255, 47, 0, 0.22);
}

.button.dark {
  color: var(--white);
  background: var(--black);
  border-color: var(--black);
}

.button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.45);
}

.identity-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(18px, 4vw, 52px);
  min-height: 62px;
  padding: 14px clamp(20px, 7vw, 92px);
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.identity-strip span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--black);
  padding: 0;
}

.identity-strip span::before {
  content: "";
  display: block;
  width: 34px;
  height: 9px;
  background: currentColor;
}

.identity-strip .respond::before {
  background: var(--respond);
}

.identity-strip .command::before {
  background: var(--command);
}

.identity-strip .control::before {
  background: var(--control);
}

.identity-strip .matrix::before {
  background: var(--matrix);
  border: 1px solid #cdbf9e;
}

.section {
  padding: clamp(64px, 9vw, 120px) clamp(20px, 7vw, 92px);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.card[data-reveal]:nth-child(2) {
  transition-delay: 90ms;
}

.card[data-reveal]:nth-child(3) {
  transition-delay: 180ms;
}

.system {
  background: var(--paper);
}

.section-copy {
  max-width: 860px;
  margin-bottom: 36px;
}

.proof-copy p,
.section-copy p,
.ops-panel p,
.launch-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.proof {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(360px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  background:
    linear-gradient(90deg, rgba(2, 23, 23, 0.04) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, rgba(2, 23, 23, 0.04) 0 1px, transparent 1px 100%),
    var(--matrix);
  background-size: 38px 38px;
}

.proof-copy {
  position: sticky;
  top: 42px;
}

.proof-copy h2 {
  max-width: 680px;
}

.proof-grid {
  display: grid;
  gap: 12px;
}

.proof-grid article {
  position: relative;
  --corner-cut: var(--rcc-cut-md);
  --corner-line: rgba(139, 24, 7, 0.42);
  overflow: hidden;
  min-height: 176px;
  border: 1px solid rgba(16, 19, 20, 0.18);
  border-left: 8px solid var(--red-dark);
  padding: 24px 24px 24px 26px;
  background:
    repeating-linear-gradient(
      119deg,
      rgba(16, 19, 20, 0.045) 0,
      rgba(16, 19, 20, 0.045) 1px,
      transparent 1px,
      transparent 6px
    ),
    rgba(248, 243, 233, 0.72);
  clip-path: polygon(var(--rcc-cut-md) 0, 100% 0, 100% calc(100% - var(--rcc-cut-md)), calc(100% - var(--rcc-cut-md)) 100%, 0 100%, 0 var(--rcc-cut-md));
}

.proof-grid article:nth-child(2) {
  border-left-color: var(--command);
}

.proof-grid article:nth-child(3) {
  border-left-color: var(--control);
}

.proof-grid span {
  display: block;
  margin-bottom: 18px;
  color: var(--red-dark);
  font-size: 12px;
  font-weight: 950;
}

.proof-grid strong {
  display: block;
  margin-bottom: 10px;
  color: var(--black);
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1;
}

.proof-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.cards {
  display: grid;
  gap: 14px;
}

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

.card {
  position: relative;
  --corner-cut: var(--rcc-cut-md);
  --corner-line: var(--line);
  min-height: 270px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid var(--line);
  border-top-width: 8px;
  border-radius: 0;
  padding: 24px;
  color: var(--black);
  background: var(--white);
  clip-path: polygon(var(--rcc-cut-md) 0, 100% 0, 100% calc(100% - var(--rcc-cut-md)), calc(100% - var(--rcc-cut-md)) 100%, 0 100%, 0 var(--rcc-cut-md));
}

.card span {
  margin-bottom: auto;
  font-weight: 950;
  opacity: 0.68;
}

.card p {
  margin: 0;
  color: currentColor;
  line-height: 1.48;
  font-weight: 650;
  opacity: 0.78;
}

.card.respond {
  border-top-color: var(--respond);
}

.card.command {
  border-top-color: var(--command);
}

.card.control {
  border-top-color: var(--control);
}

.operations {
  background: var(--black);
  color: var(--white);
}

.ops-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.8fr);
  gap: 40px;
  align-items: end;
  margin-bottom: 28px;
  padding-top: 28px;
  border-top: 8px solid var(--command);
}

.operations .eyebrow.dark {
  color: var(--command);
}

.ops-panel p {
  color: #d9dfdf;
}

.ops-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.2);
}

.ops-grid div {
  min-height: 180px;
  padding: 24px;
  background: var(--black);
}

.ops-grid strong,
.ops-grid span {
  display: block;
}

.ops-grid strong {
  margin-bottom: 12px;
  color: var(--matrix);
  font-size: 20px;
  line-height: 1.1;
}

.ops-grid span {
  color: #d9dfdf;
  line-height: 1.48;
}

.launch {
  background: var(--matrix);
}

.launch-copy {
  max-width: 1180px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.52fr);
  gap: clamp(30px, 6vw, 80px);
  align-items: end;
}

.launch-copy .button {
  margin-top: 12px;
}

.launch-detail {
  --corner-cut: var(--rcc-cut-lg);
  --corner-line: rgba(139, 24, 7, 0.42);
  position: relative;
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(16, 19, 20, 0.16);
  background: rgba(16, 19, 20, 0.18);
  clip-path: polygon(var(--rcc-cut-lg) 0, 100% 0, 100% calc(100% - var(--rcc-cut-lg)), calc(100% - var(--rcc-cut-lg)) 100%, 0 100%, 0 var(--rcc-cut-lg));
}

.launch-detail div {
  padding: 22px;
  background:
    repeating-linear-gradient(
      119deg,
      rgba(16, 19, 20, 0.045) 0,
      rgba(16, 19, 20, 0.045) 1px,
      transparent 1px,
      transparent 6px
    ),
    rgba(248, 243, 233, 0.74);
}

.launch-detail span,
.launch-detail strong {
  display: block;
}

.launch-detail span {
  margin-bottom: 8px;
  color: var(--red-dark);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.launch-detail strong {
  color: var(--black);
  font-size: 18px;
  line-height: 1.24;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px clamp(20px, 7vw, 92px);
  border-top: 1px solid rgba(16, 19, 20, 0.14);
  background: var(--paper);
  color: var(--black);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.footer-brand {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 16px;
}

.footer-brand img {
  display: block;
  width: clamp(112px, 13vw, 162px);
  height: auto;
}

.footer-brand span {
  color: var(--muted);
}

.request-modal {
  position: fixed;
  z-index: 120;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 22px;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 180ms ease,
    visibility 0ms linear 220ms;
}

.request-modal.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transition-delay: 0ms;
}

.request-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 20%, rgba(255, 47, 0, 0.18), transparent 28%),
    rgba(2, 23, 23, 0.78);
  backdrop-filter: blur(14px);
}

.request-panel {
  position: relative;
  --corner-cut: var(--rcc-cut-lg);
  --corner-line: rgba(255, 47, 0, 0.62);
  overflow: hidden;
  width: min(860px, calc(100vw - 32px));
  max-height: min(760px, calc(100svh - 32px));
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(320px, 1fr);
  gap: 0;
  border: 1px solid rgba(231, 215, 183, 0.28);
  color: var(--white);
  background:
    repeating-linear-gradient(
      119deg,
      rgba(231, 215, 183, 0.06) 0,
      rgba(231, 215, 183, 0.06) 1px,
      transparent 1px,
      transparent 6px
    ),
    #061d1d;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.46);
  clip-path: polygon(var(--rcc-cut-lg) 0, 100% 0, 100% calc(100% - var(--rcc-cut-lg)), calc(100% - var(--rcc-cut-lg)) 100%, 0 100%, 0 var(--rcc-cut-lg));
  transform: translateY(22px) scale(0.96);
  transition:
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 220ms ease;
}

.request-modal.is-open .request-panel {
  transform: translateY(0) scale(1);
}

.request-panel:focus {
  outline: none;
}

.request-intro,
.request-form {
  position: relative;
  z-index: 1;
}

.request-intro {
  padding: clamp(26px, 4vw, 42px);
  background:
    linear-gradient(180deg, rgba(139, 24, 7, 0.2), rgba(139, 24, 7, 0)),
    rgba(2, 23, 23, 0.66);
}

.request-intro h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 4.5vw, 56px);
}

.request-intro p {
  margin: 0;
  color: rgba(248, 243, 233, 0.76);
  line-height: 1.58;
}

.request-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: clamp(22px, 4vw, 34px);
  padding-top: clamp(58px, 5vw, 68px);
  background: rgba(248, 243, 233, 0.96);
  color: var(--black);
}

.request-form label {
  display: grid;
  gap: 7px;
}

.request-form span {
  color: var(--red-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.request-form input,
.request-form select,
.request-form textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(16, 19, 20, 0.2);
  border-radius: 0;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.76);
  padding: 10px 12px;
  outline: none;
}

.request-form textarea {
  min-height: 112px;
  resize: vertical;
}

.request-form input:focus,
.request-form select:focus,
.request-form textarea:focus {
  border-color: var(--respond);
  box-shadow: 0 0 0 3px rgba(255, 47, 0, 0.14);
}

.form-wide,
.request-form-footer {
  grid-column: 1 / -1;
}

.request-form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 4px;
}

.request-form-footer p {
  min-height: 19px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.request-close {
  position: absolute;
  z-index: 6;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(231, 215, 183, 0.32);
  color: var(--white);
  background: rgba(2, 23, 23, 0.68);
  clip-path: polygon(var(--rcc-cut-sm) 0, 100% 0, 100% calc(100% - var(--rcc-cut-sm)), calc(100% - var(--rcc-cut-sm)) 100%, 0 100%, 0 var(--rcc-cut-sm));
}

.request-close span {
  position: absolute;
  top: 19px;
  left: 11px;
  width: 18px;
  height: 2px;
  background: currentColor;
}

.request-close span:first-child {
  transform: rotate(45deg);
}

.request-close span:last-child {
  transform: rotate(-45deg);
}

.request-close:focus-visible {
  outline: 2px solid var(--respond);
  outline-offset: 3px;
}

@keyframes header-in {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-drift {
  from {
    object-position: 48% 50%;
  }
  to {
    object-position: 52% 49%;
  }
}

@keyframes video-glitch-media {
  0%,
  100% {
    clip-path: inset(0);
    filter: none;
    transform: scale(1.03) translate3d(0, 0, 0);
  }
  16% {
    clip-path: inset(0 0 58% 0);
    filter: contrast(2) saturate(1.6) brightness(1.26);
    transform: scale(1.075) translate3d(-22px, 0, 0);
  }
  34% {
    clip-path: inset(54% 0 18% 0);
    filter: contrast(1.85) saturate(0.68) brightness(1.32);
    transform: scale(1.06) translate3d(24px, -4px, 0);
  }
  58% {
    clip-path: inset(18% 0 46% 0);
    filter: contrast(2.1) saturate(1.65) brightness(0.94);
    transform: scale(1.08) translate3d(-18px, 5px, 0);
  }
  76% {
    clip-path: inset(0);
    filter: contrast(1.45) saturate(1.2);
    transform: scale(1.045) translate3d(10px, 0, 0);
  }
}

@keyframes video-glitch-overlay {
  0%,
  100% {
    opacity: 0;
    clip-path: inset(0);
    transform: translate3d(0, 0, 0);
  }
  14% {
    opacity: 0.68;
    clip-path: inset(0 0 58% 0);
    transform: translate3d(32px, 0, 0);
  }
  36% {
    opacity: 0.54;
    clip-path: inset(50% 0 16% 0);
    transform: translate3d(-30px, 0, 0);
  }
  62% {
    opacity: 0.56;
    clip-path: inset(18% 0 44% 0);
    transform: translate3d(20px, -2px, 0);
  }
  80% {
    opacity: 0.28;
    clip-path: inset(0);
    transform: translate3d(-10px, 0, 0);
  }
}

@keyframes video-glitch-lines {
  0%,
  100% {
    opacity: 0;
    transform: translateY(0);
  }
  18% {
    opacity: 0.28;
    transform: translateY(-16px);
  }
  42% {
    opacity: 0.18;
    transform: translateY(10px);
  }
  66% {
    opacity: 0.26;
    transform: translateY(-6px);
  }
}

@keyframes video-glitch-tear {
  0%,
  100% {
    opacity: 0;
    transform: translateX(-18%);
  }
  22% {
    opacity: 0.72;
    transform: translateX(18%);
  }
  48% {
    opacity: 0.34;
    transform: translateX(-8%);
  }
  72% {
    opacity: 0.48;
    transform: translateX(10%);
  }
}

@keyframes grain-shift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  25% {
    transform: translate3d(-1.4%, 1.1%, 0);
  }
  50% {
    transform: translate3d(1.2%, -0.9%, 0);
  }
  75% {
    transform: translate3d(-0.7%, -1.3%, 0);
  }
}

@media (max-width: 860px) {
  .site-header {
    align-items: flex-end;
  }

  .nav {
    width: min(500px, 66vw);
  }

  .hero {
    min-height: 76svh;
    padding-top: 112px;
  }

  .identity-strip {
    gap: 16px 22px;
  }

  .cards.three,
  .proof,
  .launch-copy,
  .ops-panel,
  .ops-grid {
    grid-template-columns: 1fr;
  }

  .proof-copy {
    position: static;
  }

  .card,
  .ops-grid div {
    min-height: 210px;
  }

  .request-panel {
    grid-template-columns: 1fr;
    overflow-y: auto;
  }

  .request-form {
    padding: clamp(22px, 4vw, 34px);
  }

  .request-intro {
    padding-right: 72px;
  }
}

@media (max-width: 700px) {
  .site-header {
    align-items: flex-end;
    padding: 14px 16px;
  }

  .nav {
    width: auto;
  }

  .nav-toggle {
    display: inline-flex;
    width: 124px;
  }

  .nav-shell {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: min(260px, calc(100vw - 32px));
    display: grid;
    gap: 4px;
    padding: 8px;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px) scale(0.98);
    transform-origin: top right;
    transition:
      opacity 160ms ease,
      transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
      visibility 0ms linear 180ms;
  }

  .nav.is-open .nav-shell {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
    transition-delay: 0ms;
  }

  .nav-link {
    min-height: 44px;
    justify-content: flex-start;
    padding: 0 12px;
    font-size: 11px;
  }

}

@media (max-width: 540px) {
  .footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    min-height: auto;
    padding-top: 128px;
    padding-bottom: 54px;
  }

  .hero-title {
    width: min(330px, 100%);
    margin-bottom: 20px;
  }

  .lede {
    padding-left: 14px;
    font-size: 17px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .proof-grid article {
    min-height: auto;
    padding: 22px;
  }

  .request-modal {
    padding: 12px;
  }

  .request-panel {
    width: calc(100vw - 24px);
    max-height: calc(100svh - 24px);
  }

  .request-form {
    grid-template-columns: 1fr;
  }

  .request-form-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .request-intro {
    padding: 24px 66px 24px 22px;
  }

  .request-intro h2 {
    font-size: 32px;
  }

}

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  body::before {
    animation: none !important;
    transform: none;
  }
}
