/* ============================================================
   JAMES PONS 007 ($P007)
   Design system — midnight tuxedo, champagne gold, one laser.
   ============================================================ */

/* ---------- 1. TOKENS ---------- */
:root {
  --midnight: #0A0A0C;
  --panel:    #131318;
  --gold:     #D9C08A;
  --crimson:  #C1121F;
  --pearl:    #F2EFE9;
  --smoke:    #8A8A93;

  --gold-07: rgba(217, 192, 138, .07);
  --gold-12: rgba(217, 192, 138, .12);
  --gold-22: rgba(217, 192, 138, .22);
  --gold-40: rgba(217, 192, 138, .40);
  --gold-45: rgba(217, 192, 138, .45);
  --gold-70: rgba(217, 192, 138, .70);
  --pearl-60: rgba(242, 239, 233, .60);
  --crimson-40: rgba(193, 18, 31, .40);

  --font-display: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  /* tuxedo pinstripe — 1px diagonal, 3% */
  --pinstripe: repeating-linear-gradient(45deg,
      rgba(242, 239, 233, .03) 0 1px,
      transparent 1px 8px);

  /* classified file corner — clipped top-right */
  --cut: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 0 100%);
  --cut-sm: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%);

  --ticker-h: 30px;
  --nav-h: 64px;
  --chrome: calc(var(--ticker-h) + var(--nav-h));

  --ease: cubic-bezier(.2, .6, .2, 1);
}

/* ---------- 2. RESET / BASE ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--chrome) + 20px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  padding-top: var(--chrome);
  background: var(--midnight);
  color: var(--pearl);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3 { margin: 0; font-family: var(--font-display); font-weight: 700; line-height: 1.04; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
img, video, svg { display: block; max-width: 100%; }
code { font-family: var(--font-mono); }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
strong { font-weight: 600; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

::selection { background: var(--gold); color: var(--midnight); }

.skip-link {
  position: fixed;
  top: 8px; left: 50%;
  z-index: 300;
  padding: 10px 18px;
  transform: translate(-50%, -160%);
  background: var(--gold);
  color: var(--midnight);
  font: 700 12px/1 var(--font-mono);
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: transform .25s var(--ease);
}
.skip-link:focus { transform: translate(-50%, 0); }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

/* ---------- 3. LAYOUT UTILITIES ---------- */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow { max-width: 820px; }

.section { padding: clamp(72px, 10vw, 128px) 0; }
.section--tight { padding: clamp(64px, 8vw, 104px) 0; }

.section__head { max-width: 720px; margin-bottom: clamp(40px, 5vw, 64px); }

.section__title {
  font-size: clamp(2.4rem, 5.6vw, 4rem);
  letter-spacing: -.015em;
  margin-top: 14px;
}

.section__lede {
  margin-top: 18px;
  max-width: 58ch;
  color: var(--pearl-60);
  font-size: 1.0625rem;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: .6875rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-70);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- 4. LASER DIVIDER ---------- */
.laser {
  position: relative;
  height: 1px;
  margin: 0 auto;
  width: min(1180px, 100% - 48px);
}
.laser--flush { width: 100%; }

.laser::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, var(--crimson-40) 14%, var(--crimson-40) 86%, transparent);
  opacity: 0;
  transition: opacity .7s ease .85s;
}
.laser.is-swept::before { opacity: 1; }

.laser__beam {
  position: absolute;
  top: -1px; left: 0;
  width: 20%; height: 3px;
  opacity: 0;
  background: linear-gradient(90deg, transparent, var(--crimson) 30%, #FF6B74 50%, var(--crimson) 70%, transparent);
  box-shadow: 0 0 16px 2px rgba(193, 18, 31, .5);
  will-change: transform, opacity;
}
.laser.is-swept .laser__beam { animation: laser-sweep 1.3s cubic-bezier(.45, 0, .2, 1) forwards; }

@keyframes laser-sweep {
  0%   { opacity: 0; transform: translateX(-110%); }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { opacity: 0; transform: translateX(510%); }
}

/* ---------- 5. TICKER TAPE ---------- */
.ticker {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 120;
  height: var(--ticker-h);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #050506;
  border-bottom: 1px solid var(--gold-12);
}
.ticker__track {
  display: flex;
  flex: none;
  white-space: nowrap;
  animation: ticker-roll 46s linear infinite;
}
.ticker:hover .ticker__track { animation-play-state: paused; }

.ticker__item {
  flex: none;
  font-family: var(--font-mono);
  font-size: .6875rem;
  font-weight: 500;
  letter-spacing: .16em;
  color: var(--gold);
  text-transform: uppercase;
}
.ticker__sep { flex: none; padding: 0 14px; color: var(--gold-40); }

@keyframes ticker-roll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- 6. NAVBAR ---------- */
.nav {
  position: fixed;
  top: var(--ticker-h); left: 0; right: 0;
  z-index: 110;
  height: var(--nav-h);
  background: rgba(10, 10, 12, .86);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: background .3s var(--ease), border-color .3s var(--ease);
}
.nav.is-stuck { background: rgba(10, 10, 12, .95); border-bottom-color: var(--gold-12); }

.nav__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* brand */
.brand { display: inline-flex; align-items: center; gap: 11px; flex: none; }
.brand__mark {
  width: 34px; height: 34px;
  flex: none;
  filter: drop-shadow(0 0 10px rgba(217, 192, 138, .28));
}
.brand__text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1875rem;
  letter-spacing: .1em;
  color: var(--pearl);
  white-space: nowrap;
}
.brand__text em { font-style: normal; color: var(--gold); letter-spacing: .1em; }

.brand--footer .brand__mark { width: 28px; height: 28px; opacity: .85; }
.brand--footer .brand__text { font-size: 1.3125rem; }

.nav__menu { display: flex; align-items: center; gap: 26px; }
.nav__list { display: flex; align-items: center; gap: 24px; }

.nav__link {
  position: relative;
  font-size: .875rem;
  color: var(--smoke);
  padding: 6px 0;
  transition: color .25s var(--ease);
  white-space: nowrap;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav__link:hover { color: var(--pearl); }
.nav__link.is-active { color: var(--gold); }
.nav__link.is-active::after { transform: scaleX(1); }
.nav__link--flag { color: var(--gold-70); }

.nav__actions { display: flex; align-items: center; gap: 14px; flex: none; }

.nav__x {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border: 1px solid var(--gold-22);
  color: var(--gold);
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.nav__x svg { width: 15px; height: 15px; fill: currentColor; }
.nav__x:hover { border-color: var(--gold); background: var(--gold-07); }

.nav__toggle {
  display: none;
  width: 42px; height: 42px;
  align-items: center;
  justify-content: center;
}
.nav__bars, .nav__bars::before, .nav__bars::after {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--gold);
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.nav__bars { position: relative; }
.nav__bars::before, .nav__bars::after { content: ""; position: absolute; left: 0; }
.nav__bars::before { top: -7px; }
.nav__bars::after  { top: 7px; }
.nav__toggle[aria-expanded="true"] .nav__bars { background: transparent; }
.nav__toggle[aria-expanded="true"] .nav__bars::before { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] .nav__bars::after  { transform: translateY(-7px) rotate(-45deg); }

/* ---------- 7. BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  font-family: var(--font-mono);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
  border: 1px solid transparent;
  transition: background .28s var(--ease), color .28s var(--ease),
              border-color .28s var(--ease), transform .18s var(--ease),
              box-shadow .28s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--gold { background: var(--gold); color: var(--midnight); border-color: var(--gold); font-weight: 700; }
.btn--gold:hover { background: #E7D3A8; border-color: #E7D3A8; box-shadow: 0 10px 30px -12px rgba(217, 192, 138, .55); }

.btn--outline { border-color: var(--gold-40); color: var(--gold); }
.btn--outline:hover { border-color: var(--gold); background: var(--gold-07); }

.btn--ghost { color: var(--smoke); padding-left: 6px; padding-right: 6px; }
.btn--ghost:hover { color: var(--pearl); }

.btn--sm { padding: 11px 20px; font-size: .6875rem; }
.btn--block { display: flex; width: 100%; margin-top: 22px; }

.btn.is-pending { opacity: .55; cursor: not-allowed; }
.btn.is-pending:hover { transform: none; box-shadow: none; }

/* dossier buttons */
.btn--copy {
  background: var(--gold);
  color: var(--midnight);
  border-color: var(--gold);
  font-weight: 700;
  letter-spacing: .12em;
  min-height: 44px;
  min-width: 96px;
  padding: 12px 22px;
}
.btn--copy:hover { background: #E7D3A8; border-color: #E7D3A8; }
.btn--copy.is-done { background: var(--crimson); border-color: var(--crimson); color: var(--pearl); }

.btn--x {
  background: var(--pearl);
  color: var(--midnight);
  border-color: var(--pearl);
  font-weight: 700;
  min-height: 48px;
}
.btn--x:hover { background: #fff; border-color: #fff; }

.btn--buy {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
  font-weight: 700;
  min-height: 48px;
}
.btn--buy:hover { background: var(--gold); color: var(--midnight); }

/* ---------- 8. TOAST ---------- */
.toast {
  position: fixed;
  bottom: 24px; left: 50%;
  z-index: 400;
  max-width: calc(100vw - 32px);
  padding: 14px 22px;
  transform: translate(-50%, 16px);
  background: var(--midnight);
  border: 1px solid var(--gold-45);
  color: var(--pearl);
  font-family: var(--font-mono);
  font-size: .75rem;
  letter-spacing: .04em;
  text-align: center;
  box-shadow: 0 20px 50px -20px rgba(0, 0, 0, .95);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s;
}
.toast.is-visible { opacity: 1; visibility: visible; transform: translate(-50%, 0); }

/* ---------- 9. HERO ---------- */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: min(78vh, 720px);
  padding: clamp(56px, 8vw, 96px) 0;
  overflow: hidden;
}

.hero__media { position: absolute; inset: 0; overflow: hidden; }
.hero__video,
.hero__fallback {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__fallback { display: none; }

.hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 10, 12, .75) 0%, transparent 22%),
    linear-gradient(180deg, transparent 58%, rgba(10, 10, 12, .92) 100%),
    linear-gradient(90deg, rgba(10, 10, 12, .92) 0%, rgba(10, 10, 12, .72) 45%, rgba(10, 10, 12, .35) 100%);
}

.hero__inner { position: relative; z-index: 1; }
.hero__copy { max-width: 640px; }

.hero__title {
  margin-top: 20px;
  font-size: clamp(3.2rem, 8.6vw, 6.5rem);
  letter-spacing: -.025em;
  text-transform: uppercase;
  text-shadow: 0 2px 30px rgba(0, 0, 0, .75);
}
.hero__sub {
  margin-top: 24px;
  max-width: 46ch;
  font-size: 1.0625rem;
  color: rgba(242, 239, 233, .82);
  text-shadow: 0 1px 14px rgba(0, 0, 0, .8);
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
}

/* ---------- 10. ★ DOSSIER — ONE ADDRESS ---------- */
.dossier {
  position: relative;
  padding: clamp(48px, 6vw, 76px) 24px clamp(56px, 7vw, 88px);
}

.dossier__inner {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(32px, 4.4vw, 52px) clamp(22px, 4vw, 52px);
  background-color: var(--midnight);
  background-image: var(--pinstripe);
  border: 1px solid var(--gold-45);
  box-shadow: inset 0 0 0 1px rgba(217, 192, 138, .14),
              0 40px 90px -60px rgba(0, 0, 0, 1);
  overflow: hidden;
}
.dossier__inner::before {      /* inner hairline frame — a file within a file */
  content: "";
  position: absolute;
  inset: 9px;
  border: 1px solid var(--gold-12);
  pointer-events: none;
}
.dossier__inner::after {       /* laser sweep across the block */
  content: "";
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 30%;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(193, 18, 31, .16) 45%, rgba(255, 107, 116, .3) 50%, rgba(193, 18, 31, .16) 55%, transparent);
  animation: dossier-scan 6s ease-in-out 1.2s infinite;
}
@keyframes dossier-scan {
  0%, 62%  { opacity: 0; transform: translateX(-110%); }
  66%      { opacity: 1; }
  96%      { opacity: 1; transform: translateX(360%); }
  100%     { opacity: 0; transform: translateX(360%); }
}

.dossier__stamp {
  position: absolute;
  top: 26px; right: 22px;
  z-index: 2;
  padding: 7px 14px;
  border: 2px solid var(--crimson);
  color: var(--crimson);
  font-family: var(--font-mono);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  opacity: .85;
  transform: rotate(-8deg);
  pointer-events: none;
}

.dossier__title {
  position: relative;
  max-width: 20ch;
  font-size: clamp(28px, 4vw, 46px);
  letter-spacing: .06em;
  color: var(--pearl);
  text-transform: uppercase;
}
.dossier__sub {
  position: relative;
  margin-top: 16px;
  max-width: 56ch;
  color: var(--pearl-60);
  font-size: 1rem;
}

.dossier__ca {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px 14px;
  margin-top: 30px;
}
.dossier__ca-label {
  grid-column: 1 / -1;
  font-family: var(--font-mono);
  font-size: .625rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--smoke);
}
.dossier__ca-value {
  min-width: 0;
  padding: 14px 18px;
  background: var(--gold-07);
  border: 1px dashed var(--gold-40);
  border-radius: 6px;
  color: var(--gold);
  font-size: clamp(15px, 2.4vw, 26px);
  line-height: 1.35;
  letter-spacing: .01em;
  word-break: break-all;
  user-select: all;
  -webkit-user-select: all;
}

.dossier__links {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}
.dossier__links .btn { flex: 1 1 240px; }

.dossier__warning {
  position: relative;
  margin-top: 28px;
  padding: 16px 20px;
  background: rgba(193, 18, 31, .08);
  border-left: 3px solid var(--crimson);
  color: rgba(242, 239, 233, .92);
  font-size: .9375rem;
  line-height: 1.65;
}
.dossier__warning strong { color: var(--pearl); }

.dossier__disclaimer {
  position: relative;
  margin-top: 20px;
  font-size: .8125rem;
  color: rgba(138, 138, 147, .85);
}

/* ---------- 11. TRUST BAR ---------- */
.trust { padding: 34px 0; }
.trust__text {
  text-align: center;
  font-family: var(--font-mono);
  font-size: .6875rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(138, 138, 147, .6);
}

/* ---------- 12. GADGET CARDS ---------- */
.gadgets { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.gcard {
  position: relative;
  padding: 30px 26px 32px;
  background: var(--gold-22);
  clip-path: var(--cut);
  transition: transform .35s var(--ease), background .35s var(--ease);
}
.gcard::before {
  content: "";
  position: absolute;
  inset: 1px;
  background-color: var(--panel);
  background-image: var(--pinstripe);
  clip-path: var(--cut);
}
.gcard::after {
  content: "";
  position: absolute;
  top: 0; left: 26px;
  width: 34px; height: 3px;
  background: var(--gold);
}
.gcard > * { position: relative; z-index: 1; }
.gcard:hover { transform: translateY(-4px); background: var(--gold-40); }

.gcard__icon {
  width: 26px; height: 26px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.3;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: .9;
}
.gcard__name {
  margin-top: 22px;
  font-family: var(--font-mono);
  font-size: .6875rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--smoke);
}
.gcard__value {
  margin-top: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 2.4vw, 1.875rem);
  line-height: 1.1;
  color: var(--gold);
  word-break: break-word;
}
.gcard__unit { font-size: .8125rem; letter-spacing: .06em; }
.gcard__slash { color: var(--gold-40); margin: 0 2px; }
.gcard__note { margin-top: 14px; font-size: .875rem; color: var(--pearl-60); }

/* ---------- 13. TERMINAL ---------- */
.transmission {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: clamp(40px, 5vw, 72px);
  align-items: center;
}
.transmission__copy { min-width: 0; }
.transmission__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 26px;
  font-family: var(--font-mono);
  font-size: .625rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--smoke);
}
.transmission__meta li { display: flex; align-items: center; gap: 8px; }
.transmission__meta li::before { content: ""; width: 4px; height: 4px; background: var(--gold); }

.terminal {
  background: var(--gold-22);
  clip-path: var(--cut);
  padding: 1px;
  box-shadow: 0 30px 70px -40px rgba(0, 0, 0, .9);
}
.terminal__bar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 18px;
  background: #0E0E12;
  border-bottom: 1px solid var(--gold-12);
}
.terminal__dots { display: flex; gap: 6px; }
.terminal__dots i { width: 8px; height: 8px; border-radius: 50%; background: rgba(138, 138, 147, .35); }
.terminal__dots i:first-child { background: var(--crimson); opacity: .7; }
.terminal__title {
  font-family: var(--font-mono);
  font-size: .625rem;
  letter-spacing: .12em;
  color: var(--smoke);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.terminal__screen {
  position: relative;
  overflow: hidden;
  background: #050506;
  padding: 24px 22px 28px;
  min-height: clamp(400px, 48vh, 470px);
}
.terminal__out {
  margin: 0;
  font-family: var(--font-mono);
  font-size: clamp(11.5px, 1.05vw, 13.5px);
  line-height: 1.62;
  color: var(--gold);
  white-space: pre-wrap;
  word-break: break-word;
}

.t-dim  { color: rgba(217, 192, 138, .55); }
.t-key  { color: var(--pearl); }
.t-red  { color: var(--crimson); font-weight: 700; }
.t-burn { color: rgba(193, 18, 31, .75); }

.t-cursor {
  display: inline-block;
  width: .58em; height: 1.02em;
  vertical-align: text-bottom;
  background: var(--gold);
  animation: t-blink 1s steps(1, end) infinite;
}
@keyframes t-blink { 0%, 50% { opacity: 1; } 51%, 100% { opacity: 0; } }

.terminal__flash {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: var(--crimson);
  opacity: 0;
  pointer-events: none;
}
.terminal__flash.is-lit { animation: t-flash .45s ease-out forwards; }
@keyframes t-flash { 0% { opacity: 0; } 12% { opacity: .72; } 100% { opacity: 0; } }

.terminal__scan {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: repeating-linear-gradient(180deg, rgba(255, 255, 255, .025) 0 1px, transparent 1px 3px);
}

/* ---------- 14. TIMELINE ---------- */
.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-top: 46px;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 5px; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-40), var(--gold-40) 88%, transparent);
}
.tl { position: relative; padding-right: 18px; }
.tl__dot {
  position: absolute;
  top: -46px; left: 0;
  width: 11px; height: 11px;
  border-radius: 50%;
  background: var(--midnight);
  border: 1px solid var(--gold-40);
}
.tl:first-child .tl__dot {
  background: var(--crimson);
  border-color: var(--crimson);
  box-shadow: 0 0 0 4px rgba(193, 18, 31, .16), 0 0 14px 1px rgba(193, 18, 31, .55);
}
.tl__num {
  font-family: var(--font-mono);
  font-size: .625rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--smoke);
}
.tl__name { margin-top: 10px; font-size: 1.875rem; color: var(--gold); letter-spacing: -.01em; }
.tl__text { margin-top: 12px; font-size: .9375rem; color: var(--pearl-60); }

/* ---------- 15. FIELD AGENTS ---------- */
.agents { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.acard {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 30px 26px 32px;
  background: var(--gold-22);
  clip-path: var(--cut);
  transition: transform .35s var(--ease), background .35s var(--ease);
}
.acard::before {
  content: "";
  position: absolute;
  inset: 1px;
  background-color: var(--panel);
  background-image: var(--pinstripe);
  clip-path: var(--cut);
}
.acard > * { position: relative; z-index: 1; }
.acard:hover { transform: translateY(-4px); background: var(--gold-40); }

.acard__photo {
  flex: none;
  width: 120px; height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(217, 192, 138, .5);
}
.acard__quote {
  margin: 24px 0 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.42;
  color: var(--pearl);
}
.acard__name {
  margin-top: auto;          /* attributions line up across cards of unequal quote length */
  padding-top: 16px;
  border-top: 1px solid var(--gold-12);
  font-family: var(--font-mono);
  font-size: .6875rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
}
.acard__name span {
  display: block;
  margin-top: 5px;
  letter-spacing: .1em;
  text-transform: none;
  color: var(--smoke);
}

/* ---------- 16. ACCEPT / STEPS ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }

.step {
  position: relative;
  padding: 30px 28px 34px;
  background: var(--gold-22);
  clip-path: var(--cut);
}
.step::before {
  content: "";
  position: absolute;
  inset: 1px;
  background-color: var(--panel);
  background-image: var(--pinstripe);
  clip-path: var(--cut);
}
.step > * { position: relative; z-index: 1; }
.step--final { background: var(--gold-40); }

.step__num {
  font-family: var(--font-mono);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .2em;
  color: var(--crimson);
}
.step__name { margin-top: 14px; font-size: 1.75rem; color: var(--gold); }
.step__text { margin-top: 12px; font-size: .9375rem; color: var(--pearl-60); }
.step__verify {
  display: inline-block;
  margin-top: 16px;
  font-family: var(--font-mono);
  font-size: .6875rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-70);
  border-bottom: 1px solid var(--gold-22);
  padding-bottom: 3px;
  transition: color .25s var(--ease), border-color .25s var(--ease);
}
.step__verify:hover { color: var(--gold); border-color: var(--gold); }

/* ---------- 17. FAQ ---------- */
.faq { border-top: 1px solid var(--gold-12); }
.faq__item { border-bottom: 1px solid var(--gold-12); }

.faq__q {
  position: relative;
  display: block;
  padding: 26px 52px 26px 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.25rem, 2.4vw, 1.5rem);
  color: var(--pearl);
  transition: color .25s var(--ease);
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q:hover { color: var(--gold); }
.faq__q::after {
  content: "";
  position: absolute;
  top: 50%; right: 6px;
  width: 13px; height: 13px;
  margin-top: -7px;
  border-right: 1.5px solid var(--gold);
  border-bottom: 1.5px solid var(--gold);
  transform: rotate(45deg);
  transform-origin: 60% 60%;
  transition: transform .3s var(--ease);
}
.faq__item[open] .faq__q { color: var(--gold); }
.faq__item[open] .faq__q::after { transform: rotate(-135deg); }

.faq__a { padding: 0 52px 28px 0; color: var(--pearl-60); max-width: 62ch; }

/* ---------- 18. FOOTER ---------- */
.footer { position: relative; padding-top: 1px; }
.footer .laser { margin-bottom: clamp(48px, 6vw, 72px); }
.footer__inner { padding-bottom: clamp(48px, 6vw, 72px); }

.footer__dossier {
  max-width: 720px;
  margin-bottom: 46px;
  padding: 26px 28px 30px;
  background-color: var(--midnight);
  background-image: var(--pinstripe);
  border: 1px solid var(--gold-22);
}
.footer__dossier-label {
  font-family: var(--font-mono);
  font-size: .6875rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-70);
}
.footer__dossier .dossier__ca { margin-top: 18px; }
.footer__dossier .dossier__ca-value { font-size: clamp(13px, 1.6vw, 16px); padding: 11px 14px; }
.footer__dossier .dossier__links { margin-top: 16px; }
.footer__dossier .dossier__links .btn { flex: 1 1 200px; min-height: 44px; font-size: .6875rem; }

.footer__top { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px; }

.footer__disclaimer {
  margin-top: 30px;
  padding-top: 26px;
  border-top: 1px solid var(--gold-12);
  max-width: 74ch;
  font-size: .8125rem;
  line-height: 1.75;
  color: rgba(138, 138, 147, .82);
}
.footer__copy {
  margin-top: 20px;
  font-family: var(--font-mono);
  font-size: .625rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(138, 138, 147, .6);
}

/* ---------- 19. RESPONSIVE ---------- */
@media (max-width: 1080px) {
  .gadgets { grid-template-columns: repeat(2, 1fr); }
  .nav__list { gap: 18px; }
  .nav__link { font-size: .8125rem; }
}

@media (max-width: 900px) {
  :root { --nav-h: 58px; }

  .nav__toggle { display: inline-flex; }

  .nav__menu {
    position: fixed;
    top: calc(var(--ticker-h) + var(--nav-h));
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 24px 26px;
    background: rgba(10, 10, 12, .97);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--gold-12);
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .28s var(--ease), transform .28s var(--ease), visibility .28s;
  }
  .nav__menu.is-open { opacity: 1; visibility: visible; transform: none; }

  .nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__link {
    display: block;
    padding: 16px 0;
    font-size: 1rem;
    border-bottom: 1px solid var(--gold-12);
  }
  .nav__link::after { display: none; }
  .nav__actions { margin-top: 20px; }
  .nav__actions .btn { flex: 1; justify-content: center; }

  .transmission { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: repeat(2, 1fr); row-gap: 46px; }
  .timeline::before { display: none; }
  .tl { padding-left: 22px; padding-right: 0; }
  .tl::before {
    content: "";
    position: absolute;
    top: 4px; bottom: 0; left: 0;
    width: 1px;
    background: var(--gold-40);
  }
  .tl__dot { top: 0; left: -5px; }

  .agents, .steps { grid-template-columns: 1fr; }
  .acard, .step { max-width: 560px; }
}

@media (max-width: 768px) {
  .hero { min-height: min(72vh, 620px); }
  .hero__video, .hero__fallback { object-position: 70% center; }
  .hero__scrim {
    background:
      linear-gradient(180deg, rgba(10, 10, 12, .8) 0%, transparent 26%),
      linear-gradient(180deg, transparent 52%, rgba(10, 10, 12, .95) 100%),
      rgba(10, 10, 12, .86);
  }
}

@media (max-width: 620px) {
  .gadgets { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; }
  .section__title { font-size: clamp(2.1rem, 8vw, 2.75rem); }
  .terminal__screen { min-height: 430px; padding: 20px 16px 24px; }
  .hero__actions .btn { flex: 1 1 100%; }
  .hero__actions .btn--ghost { flex-basis: auto; }

  .dossier { padding-left: 18px; padding-right: 18px; }
  .dossier__ca { grid-template-columns: 1fr; }
  .dossier__ca .btn--copy { width: 100%; }
  .dossier__links .btn { flex: 1 1 100%; }
  .footer__dossier { padding: 22px 20px 24px; }
}

@media (max-width: 480px) {
  .dossier__stamp { display: none; }
}

@media (max-width: 400px) {
  .container { padding: 0 18px; }
  .laser { width: calc(100% - 36px); }
  .brand__text { font-size: 1.0625rem; }
  .brand__mark { width: 30px; height: 30px; }
  .dossier__inner { padding-left: 18px; padding-right: 18px; }
}

/* ---------- 20. REDUCED MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }

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

  .ticker__track { animation: none; transform: none; }
  .ticker { overflow-x: auto; }

  .laser::before { opacity: 1; }
  .laser__beam { display: none; }
  .dossier__inner::after { display: none; }

  .t-cursor { animation: none; opacity: 1; }
  .btn:hover, .gcard:hover, .acard:hover { transform: none; }
}
