:root {
  --void: #070706;
  --ink: #0c0b09;
  --char: #14120e;
  --panel: #1a1712;
  --gold-deep: #6e5218;
  --gold: #c9a44a;
  --gold-mid: #d4b56a;
  --gold-bright: #f0d78c;
  --gold-leaf: #f7e7b4;
  --steel: #d8d4c8;
  --ivory: #f4efe6;
  --muted: #9a9486;
  --line: rgba(201, 164, 74, 0.28);
  --font-display: "Anton", "Impact", sans-serif;
  --font-label: "Oswald", sans-serif;
  --font-official: "Cinzel", serif;
  --font-sign: "Great Vibes", cursive;
  --font-body: "Source Sans 3", sans-serif;
  --wrap: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--void);
  color: var(--ivory);
  font-family: var(--font-body);
  min-height: 100%;
}

body {
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

.wrap {
  width: min(var(--wrap), calc(100% - 40px));
  margin-inline: auto;
}

.gold-text {
  background: linear-gradient(
    105deg,
    #8a6a22 0%,
    #e8d48b 22%,
    #c9a44a 40%,
    #fff3c4 50%,
    #c9a44a 62%,
    #f0d78c 82%,
    #8a6a22 100%
  );
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: goldSheen 7s linear infinite;
}

@keyframes goldSheen {
  0% { background-position: 120% 50%; }
  100% { background-position: -120% 50%; }
}

.fx {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.fx-vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 40%, rgba(0, 0, 0, 0.72) 100%),
    linear-gradient(180deg, rgba(7, 7, 6, 0.2), rgba(7, 7, 6, 0.55));
}

.fx-grain {
  position: absolute;
  inset: -20%;
  opacity: 0.09;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grainShift 1.2s steps(2) infinite;
}

@keyframes grainShift {
  0% { transform: translate(0, 0); }
  50% { transform: translate(-2%, 1%); }
  100% { transform: translate(1%, -1%); }
}

.fx-smoke {
  position: absolute;
  width: 70vw;
  height: 70vw;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
}

.fx-smoke-a {
  left: -18vw;
  top: 10vh;
  background: radial-gradient(circle, #3a2a10, transparent 68%);
  animation: smokeA 28s ease-in-out infinite alternate;
}

.fx-smoke-b {
  right: -16vw;
  bottom: 4vh;
  background: radial-gradient(circle, #2a2418, transparent 70%);
  animation: smokeB 34s ease-in-out infinite alternate;
}

@keyframes smokeA {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(8vw, 6vh) scale(1.15); }
}

@keyframes smokeB {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(-6vw, -8vh) scale(1.2); }
}

.fx-orb {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.16;
}

.fx-orb-left {
  top: 12%;
  left: 8%;
  background: #c9a44a;
  animation: orbPulse 9s ease-in-out infinite;
}

.fx-orb-right {
  bottom: 8%;
  right: 6%;
  background: #8a6a22;
  animation: orbPulse 11s ease-in-out infinite reverse;
}

@keyframes orbPulse {
  0%, 100% { transform: scale(1); opacity: 0.12; }
  50% { transform: scale(1.18); opacity: 0.22; }
}

#goldfield {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  background: #050504;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

.preloader.is-done {
  opacity: 0;
  visibility: hidden;
}

.preloader-inner {
  text-align: center;
}

.preloader-kicker,
.eyebrow,
.section-index,
.brand-kicker,
.ca-label,
.hero-pills span,
.seal-caption {
  font-family: var(--font-official);
  letter-spacing: 0.34em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--gold);
}

.preloader-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 6rem);
  letter-spacing: 0.08em;
  margin: 10px 0 22px;
  line-height: 0.9;
}

.preloader-bar {
  width: 180px;
  height: 2px;
  margin: 0 auto;
  background: rgba(201, 164, 74, 0.2);
  overflow: hidden;
}

.preloader-bar span {
  display: block;
  height: 100%;
  width: 40%;
  background: linear-gradient(90deg, transparent, var(--gold-bright), transparent);
  animation: loadRun 1.1s ease-in-out infinite;
}

@keyframes loadRun {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(320%); }
}

.mast {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid transparent;
  transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.mast.is-stuck {
  background: rgba(7, 7, 6, 0.86);
  border-bottom-color: var(--line);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(16px);
}

.mast-inner {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-seal {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  padding: 2px;
  position: relative;
  isolation: isolate;
}

.brand-seal::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(from 180deg, #7a5c1e, #f0d78c, #c9a44a, #7a5c1e);
  animation: sealSpin 12s linear infinite;
  z-index: 0;
}

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

.brand-seal img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  filter: grayscale(0.15) contrast(1.05);
}

.brand-copy {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  font-size: 1.15rem;
}

.menu {
  display: flex;
  gap: 22px;
  margin-left: auto;
}

.menu a {
  font-family: var(--font-label);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.82rem;
  color: var(--steel);
  position: relative;
}

.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.menu a:hover {
  color: var(--gold-leaf);
}

.menu a:hover::after {
  width: 100%;
}

.nav-switch {
  display: none;
  margin-left: auto;
  width: 42px;
  height: 42px;
  position: relative;
}

.nav-switch span {
  position: absolute;
  left: 10px;
  right: 10px;
  height: 1.5px;
  background: var(--gold);
  transition: 0.25s ease;
}

.nav-switch span:nth-child(1) { top: 14px; }
.nav-switch span:nth-child(2) { top: 20px; }
.nav-switch span:nth-child(3) { top: 26px; }

.nav-switch.is-open span:nth-child(1) {
  top: 20px;
  transform: rotate(45deg);
}

.nav-switch.is-open span:nth-child(2) { opacity: 0; }

.nav-switch.is-open span:nth-child(3) {
  top: 20px;
  transform: rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--gold);
  min-height: 46px;
  padding: 0 18px;
  font-family: var(--font-label);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn-compact {
  min-height: 42px;
  padding: 0 14px;
}

.btn-lg {
  min-height: 52px;
  padding: 0 22px;
}

.btn-gold {
  background: linear-gradient(180deg, #e6c46a, #b48a2c);
  color: #1a1306;
  box-shadow: 0 0 0 1px rgba(255, 230, 150, 0.25) inset, 0 8px 24px rgba(201, 164, 74, 0.2);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 22px rgba(240, 215, 140, 0.35);
}

.btn-ghost {
  background: rgba(12, 11, 9, 0.45);
  color: var(--ivory);
}

.btn-ghost:hover {
  background: rgba(201, 164, 74, 0.1);
  transform: translateY(-2px);
}

.btn-mark {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  object-fit: contain;
}

.btn-mark.invert {
  filter: brightness(0) invert(1);
}

.btn-gold .invert-on-gold {
  filter: brightness(0);
}

.sheen::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, 0.38) 48%, transparent 66%);
  transform: translateX(-130%);
  animation: sheenMove 4.2s ease-in-out infinite;
}

@keyframes sheenMove {
  0%, 55% { transform: translateX(-130%); }
  80%, 100% { transform: translateX(130%); }
}

.fight-ribbon {
  position: relative;
  z-index: 5;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: linear-gradient(90deg, #100e0a, #1b160e 50%, #100e0a);
}

.fight-track {
  display: flex;
  gap: 38px;
  width: max-content;
  padding: 10px 0;
  animation: ribbon 28s linear infinite;
}

.fight-track span {
  font-family: var(--font-display);
  letter-spacing: 0.18em;
  color: var(--gold);
  font-size: 0.95rem;
  white-space: nowrap;
}

@keyframes ribbon {
  to { transform: translateX(-50%); }
}

.hero,
.about,
.acquire,
.intel,
.enlist,
.colophon {
  position: relative;
  z-index: 2;
}

.hero {
  padding: 42px 0 70px;
  min-height: calc(100vh - 120px);
}

.hero-watermark {
  position: absolute;
  right: -2vw;
  top: 4%;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(10rem, 28vw, 24rem);
  line-height: 0.75;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201, 164, 74, 0.12);
  pointer-events: none;
  user-select: none;
}

.hero-slash {
  position: absolute;
  inset: 12% -10% auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 164, 74, 0.45), transparent);
  transform: rotate(-8deg);
  animation: slashPulse 5s ease-in-out infinite;
}

@keyframes slashPulse {
  0%, 100% { opacity: 0.35; }
  50% { opacity: 0.9; }
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
}

.eyebrow-mark {
  width: 18px;
  height: 18px;
}

h1 {
  margin: 0;
  display: flex;
  flex-direction: column;
}

.h1-official {
  font-family: var(--font-official);
  letter-spacing: 0.5em;
  text-transform: uppercase;
  font-size: 0.82rem;
  color: var(--gold);
  margin-bottom: 10px;
}

.h1-gold,
.h1-steel {
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 8vw, 6.4rem);
  line-height: 0.86;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.h1-steel {
  color: var(--steel);
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
}

.hero-symbol {
  margin: 16px 0 8px;
  font-family: var(--font-display);
  letter-spacing: 0.22em;
  color: var(--gold-bright);
  font-size: 1.35rem;
}

.hero-line {
  margin: 0 0 18px;
  font-family: var(--font-label);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-size: 0.86rem;
}

.hero-line i {
  display: inline-block;
  width: 18px;
  height: 1px;
  margin: 0 8px 4px;
  background: var(--gold);
}

.hero-lede {
  max-width: 34rem;
  color: #d7d1c4;
  line-height: 1.65;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 26px 0 22px;
}

.ca-plate {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 540px;
  padding: 10px 12px 10px 16px;
  border: 1px solid var(--line);
  background: rgba(20, 18, 14, 0.7);
}

.ca-value {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--steel);
  font-size: 0.86rem;
}

.ca-copy {
  border: 1px solid var(--gold);
  color: var(--gold-leaf);
  padding: 7px 12px;
  font-family: var(--font-label);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.ca-copy:hover,
.ca-copy.is-copied {
  background: rgba(201, 164, 74, 0.16);
}

.hero-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 560px;
}

.stage-ring,
.stage-ring-slow {
  position: absolute;
  width: min(520px, 92%);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px dashed rgba(201, 164, 74, 0.38);
  animation: ringSpin 22s linear infinite;
}

.stage-ring-slow {
  width: min(580px, 100%);
  border-style: dotted;
  animation-duration: 36s;
  animation-direction: reverse;
  opacity: 0.55;
}

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

.stage-frame {
  position: relative;
  width: min(420px, 86%);
  aspect-ratio: 1;
  padding: 14px;
  background:
    radial-gradient(circle at 30% 20%, rgba(240, 215, 140, 0.18), transparent 40%),
    #0b0a08;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(201, 164, 74, 0.35);
}

.stage-glow {
  position: absolute;
  inset: 8%;
  background: radial-gradient(circle, rgba(201, 164, 74, 0.28), transparent 65%);
  filter: blur(18px);
  animation: orbPulse 6s ease-in-out infinite;
}

.stage-portrait {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.2) contrast(1.12) saturate(0.85);
  animation: ken 18s ease-in-out infinite alternate;
}

@keyframes ken {
  from { transform: scale(1.04) translate(0, 0); }
  to { transform: scale(1.12) translate(-2%, 2%); }
}

.corner {
  position: absolute;
  width: 22px;
  height: 22px;
  border: 1.5px solid var(--gold);
  z-index: 3;
  pointer-events: none;
}

.c-tl { top: 8px; left: 8px; border-right: 0; border-bottom: 0; }
.c-tr { top: 8px; right: 8px; border-left: 0; border-bottom: 0; }
.c-bl { bottom: 8px; left: 8px; border-right: 0; border-top: 0; }
.c-br { bottom: 8px; right: 8px; border-left: 0; border-top: 0; }

.stage-sign {
  margin: 18px 0 0;
  font-family: var(--font-sign);
  font-size: 2.4rem;
  color: var(--gold-bright);
  text-shadow: 0 0 18px rgba(201, 164, 74, 0.35);
  animation: signGlow 3.6s ease-in-out infinite;
}

@keyframes signGlow {
  0%, 100% { opacity: 0.78; }
  50% { opacity: 1; }
}

.hero-pills {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 46px;
  padding: 0;
  list-style: none;
}

.hero-pills li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(26, 23, 18, 0.8), rgba(10, 9, 7, 0.8));
}

.hero-pills img {
  width: 22px;
  height: 22px;
}

.hero-pills span {
  display: block;
  margin-bottom: 4px;
}

.hero-pills strong {
  font-family: var(--font-label);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about,
.acquire,
.intel,
.enlist {
  padding: 96px 0;
}

.about {
  background: linear-gradient(180deg, transparent, rgba(20, 16, 8, 0.55) 30%, transparent);
}

.about-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 56px;
  align-items: center;
}

.seal-plate {
  position: relative;
  padding: 16px;
  background: #0d0c0a;
  border: 1px solid var(--line);
}

.seal-plate img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  filter: grayscale(0.15) contrast(1.08);
}

.seal-plate::after {
  content: "";
  position: absolute;
  inset: 16px;
  box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.35);
  pointer-events: none;
}

.seal-caption {
  text-align: center;
  margin: 14px 0 0;
}

.section-index {
  margin: 0 0 12px;
}

.section-title {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.section-sub,
.about-lead,
.about-brief p,
.ops-body p {
  color: #cfc8b8;
  line-height: 1.7;
}

.about-lead {
  font-size: 1.18rem;
  color: var(--ivory);
}

.doctrine {
  list-style: none;
  padding: 18px 0 0;
  margin: 28px 0 0;
  border-top: 1px solid var(--line);
}

.doctrine li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(201, 164, 74, 0.12);
}

.doctrine span {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 1.4rem;
}

.doctrine strong {
  font-family: var(--font-label);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.doctrine p {
  margin: 6px 0 0;
}

.section-head {
  max-width: 720px;
  margin-bottom: 42px;
}

.ops {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0;
  position: relative;
}

.ops::before {
  content: "";
  position: absolute;
  left: 27px;
  top: 12px;
  bottom: 12px;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--gold), transparent);
}

.ops-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 22px;
  padding: 8px 0 28px;
}

.ops-num {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  color: #1a1306;
  background: linear-gradient(180deg, #e6c46a, #b48a2c);
  position: relative;
  z-index: 1;
  box-shadow: 0 0 18px rgba(201, 164, 74, 0.25);
}

.ops-body {
  padding: 8px 0 0;
  border-top: 1px solid var(--line);
}

.ops-body h3 {
  margin: 0 0 8px;
  font-family: var(--font-label);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 1.2rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  color: var(--gold-leaf);
  font-family: var(--font-label);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.text-link img {
  width: 16px;
  height: 16px;
}

.text-link:hover {
  color: var(--gold-bright);
}

.intel {
  background: radial-gradient(ellipse at top, rgba(201, 164, 74, 0.07), transparent 55%);
}

.monitor {
  position: relative;
  padding: 14px;
  background: #0a0908;
  border: 1px solid var(--line);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.monitor-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 8px 12px;
  font-family: var(--font-label);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--muted);
}

.monitor-live {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px var(--gold);
  animation: liveBlink 1.6s ease-in-out infinite;
}

@keyframes liveBlink {
  50% { opacity: 0.25; }
}

.monitor-screen {
  height: min(680px, 78vh);
  background: #000;
}

.monitor-screen iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.poster {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #080706;
  border: 1px solid var(--line);
}

.poster > img {
  width: 100%;
  aspect-ratio: 3 / 1;
  object-fit: cover;
  object-position: center top;
  filter: contrast(1.08) saturate(0.9);
}

.poster-sheen {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 35%, rgba(240, 215, 140, 0.16) 50%, transparent 65%);
  transform: translateX(-120%);
  animation: posterSweep 7s ease-in-out infinite;
  pointer-events: none;
}

@keyframes posterSweep {
  0%, 40% { transform: translateX(-120%); }
  70%, 100% { transform: translateX(120%); }
}

.poster-cap {
  position: absolute;
  inset: auto 0 0;
  padding: 48px 28px 26px;
  background: linear-gradient(180deg, transparent, rgba(7, 7, 6, 0.92));
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
}

.poster-sign {
  margin: 0;
  font-family: var(--font-sign);
  font-size: clamp(2rem, 5vw, 3.4rem);
  color: var(--gold-bright);
}

.poster-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.poster-actions .btn-mark {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.colophon {
  padding: 36px 0 48px;
  border-top: 1px solid var(--line);
}

.colophon-layout {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
}

.colo-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.colo-brand img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid var(--gold);
}

.colo-name {
  margin: 0;
  font-family: var(--font-label);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.colo-sign {
  margin: 2px 0 0;
  font-family: var(--font-sign);
  font-size: 1.6rem;
  color: var(--gold);
}

.colo-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.colo-links {
  display: flex;
  gap: 12px;
}

.colo-links a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
}

.colo-links img {
  width: 18px;
  height: 18px;
}

.colo-links a:first-child img,
.colo-links a:last-child img {
  filter: brightness(0) invert(0.92);
}

.colo-links a:last-child img {
  filter: none;
}

.colo-links a:hover {
  border-color: var(--gold);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
}

.reveal.in {
  animation: rise 0.9s ease forwards;
}

.reveal.delay.in {
  animation-delay: 0.18s;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .hero-layout,
  .about-layout,
  .colophon-layout {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: 460px;
    order: -1;
  }

  .hero-watermark {
    display: none;
  }

  .hero-pills,
  .poster-cap {
    grid-template-columns: 1fr;
    display: grid;
  }

  .mast-inner {
    flex-wrap: wrap;
  }

  .nav-switch {
    display: block;
  }

  .menu {
    display: none;
    width: 100%;
    flex-direction: column;
    padding: 0 0 16px;
    margin: 0;
  }

  .menu.is-open {
    display: flex;
  }

  .btn-compact {
    display: none;
  }

  .colophon-layout {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .hero-actions,
  .poster-actions {
    display: grid;
  }

  .ca-plate {
    flex-wrap: wrap;
  }

  .ops::before {
    left: 22px;
  }

  .ops-num {
    width: 44px;
    height: 44px;
  }

  .ops-step {
    grid-template-columns: 44px 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
