:root {
  --mud: #14110c;
  --mud-deep: #0b0907;
  --earth: #1c1812;
  --olive: #6a7340;
  --olive-deep: #3d4324;
  --khaki: #c9b07a;
  --sand: #e4d2a3;
  --dust: #8a7a58;
  --smoke: #5c5648;
  --steel: #2a261d;
  --line: rgba(201, 176, 122, 0.22);
  --ink: #ede4cc;
  --muted: #9a8d6e;
  --stencil: "Black Ops One", "Arial Black", sans-serif;
  --type: "Special Elite", "Courier New", monospace;
  --ui: "Barlow Condensed", "Impact", sans-serif;
  --icon-tint: brightness(0) saturate(100%) invert(86%) sepia(24%) saturate(520%) hue-rotate(8deg) brightness(1.1);
}

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

html {
  scroll-behavior: smooth;
}

html,
body {
  background: var(--mud-deep);
  color: var(--ink);
  font-family: var(--type);
  min-height: 100%;
}

body {
  overflow-x: hidden;
  background:
    radial-gradient(1200px 700px at 70% -10%, rgba(106, 115, 64, 0.18), transparent 55%),
    radial-gradient(900px 600px at 10% 20%, rgba(62, 39, 35, 0.45), transparent 50%),
    linear-gradient(180deg, #16130e 0%, #0d0b08 40%, #12100b 100%);
}

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

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

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

.stencil {
  font-family: var(--stencil);
  letter-spacing: 0.06em;
  font-weight: 400;
  text-transform: uppercase;
}

/* atmosphere */
.atmosphere {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 40;
}

.atmosphere__ash {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.atmosphere__smoke {
  position: absolute;
  width: 70vw;
  height: 50vh;
  filter: blur(48px);
  opacity: 0.22;
  mix-blend-mode: screen;
  background: radial-gradient(circle, rgba(140, 120, 80, 0.55), transparent 70%);
}

.atmosphere__smoke.s1 {
  top: -10%;
  left: -10%;
  animation: smoke-a 28s ease-in-out infinite;
}

.atmosphere__smoke.s2 {
  right: -15%;
  top: 20%;
  width: 55vw;
  opacity: 0.16;
  animation: smoke-b 36s ease-in-out infinite;
}

.atmosphere__smoke.s3 {
  bottom: -20%;
  left: 20%;
  width: 80vw;
  opacity: 0.14;
  animation: smoke-a 42s ease-in-out infinite reverse;
}

.atmosphere__rays {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 40%, rgba(201, 176, 122, 0.035) 48%, transparent 56%),
    linear-gradient(95deg, transparent 60%, rgba(201, 176, 122, 0.02) 68%, transparent 76%);
  animation: rays 18s ease-in-out infinite;
}

.atmosphere__plane {
  position: absolute;
  top: 12%;
  left: -20%;
  width: 54px;
  height: 10px;
  background: #2c2922;
  clip-path: polygon(0 50%, 18% 30%, 70% 35%, 100% 10%, 78% 50%, 100% 85%, 70% 65%, 18% 70%);
  opacity: 0.28;
  animation: plane 42s linear infinite;
  filter: blur(0.4px);
}

.atmosphere__vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 42%, rgba(8, 6, 4, 0.72) 100%);
}

.atmosphere__grain {
  position: absolute;
  inset: -20%;
  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)' opacity='.55'/%3E%3C/svg%3E");
  opacity: 0.09;
  animation: grain 0.7s steps(2) infinite;
  mix-blend-mode: overlay;
}

.map-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image:
    linear-gradient(rgba(201, 176, 122, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 176, 122, 0.035) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at 50% 30%, black 20%, transparent 75%);
  opacity: 0.45;
}

@keyframes smoke-a {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(8%, 6%, 0) scale(1.15); }
}

@keyframes smoke-b {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1.05); }
  50% { transform: translate3d(-10%, 4%, 0) scale(1.2); }
}

@keyframes rays {
  0%, 100% { opacity: 0.55; transform: translateX(0); }
  50% { opacity: 1; transform: translateX(3%); }
}

@keyframes plane {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(130vw, 18vh, 0); }
}

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

@keyframes flicker {
  0%, 92%, 100% { opacity: 1; filter: none; }
  93% { opacity: 0.72; filter: contrast(1.2); }
  95% { opacity: 1; }
  97% { opacity: 0.55; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes pulse-ring {
  0%, 100% { transform: scale(1); opacity: 0.45; }
  50% { transform: scale(1.06); opacity: 0.15; }
}

@keyframes scan {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}

@keyframes live {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.25; }
}

@keyframes rise {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

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

@keyframes stamp {
  0% { transform: scale(1); }
  40% { transform: scale(0.96); }
  100% { transform: scale(1); }
}

@keyframes boot-out {
  to { opacity: 0; visibility: hidden; }
}

@keyframes fill {
  from { width: 0; }
  to { width: 100%; }
}

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

/* boot */
.boot {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: #0a0806;
  display: grid;
  place-items: center;
  text-align: center;
  animation: boot-out 0.7s ease 2.15s forwards;
}

.boot__inner {
  display: grid;
  gap: 18px;
  place-items: center;
  padding: 24px;
}

.boot__code {
  font-family: var(--ui);
  letter-spacing: 0.28em;
  font-size: 12px;
  color: var(--khaki);
}

.boot__title {
  font-family: var(--stencil);
  font-size: clamp(28px, 6vw, 56px);
  color: var(--sand);
  animation: flicker 2s linear infinite;
}

.boot__bar {
  width: min(320px, 70vw);
  height: 4px;
  background: #2a2418;
  overflow: hidden;
}

.boot__bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--olive-deep), var(--khaki));
  animation: fill 1.8s ease forwards;
}

/* nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 28px;
  background: rgba(12, 10, 7, 0.55);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav.is-scrolled {
  background: rgba(10, 8, 6, 0.82);
}

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

.nav__patch {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--khaki);
  box-shadow: 0 0 0 3px rgba(61, 67, 36, 0.7);
}

.nav__patch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 38%;
}

.nav__word {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav__word span {
  font-family: var(--stencil);
  font-size: 15px;
  letter-spacing: 0.08em;
}

.nav__word small {
  font-family: var(--ui);
  letter-spacing: 0.18em;
  color: var(--khaki);
  font-size: 11px;
  margin-top: 4px;
}

.nav__links {
  display: flex;
  gap: 26px;
}

.nav__links a {
  font-family: var(--ui);
  letter-spacing: 0.16em;
  font-size: 14px;
  font-weight: 600;
  color: var(--sand);
  position: relative;
}

.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--khaki);
  transition: width 0.25s ease;
}

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

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

.nav__toggle {
  display: none;
  width: 42px;
  height: 42px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 10px;
  border: 1px solid var(--line);
}

.nav__toggle span {
  display: block;
  height: 2px;
  background: var(--sand);
}

.icon-btn {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: rgba(26, 22, 16, 0.7);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.icon-btn img {
  width: 16px;
  height: 16px;
  filter: var(--icon-tint);
}

.icon-btn:hover {
  transform: translateY(-2px);
  border-color: var(--khaki);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 18px;
  font-family: var(--ui);
  font-weight: 700;
  letter-spacing: 0.16em;
  font-size: 14px;
  border: 1px solid var(--khaki);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.btn img {
  width: 16px;
  height: 16px;
}

.btn--solid {
  background: linear-gradient(180deg, #8a7a42, #4d5328);
  color: #11100b;
  box-shadow: inset 0 1px 0 rgba(255, 240, 200, 0.25), 0 8px 24px rgba(0, 0, 0, 0.35);
}

.btn--solid img {
  filter: brightness(0) saturate(100%);
}

.btn--ghost {
  background: rgba(20, 17, 12, 0.55);
  color: var(--sand);
}

.btn--ghost img {
  filter: var(--icon-tint);
}

.btn--xl {
  min-height: 56px;
  padding: 0 28px;
  font-size: 16px;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
}

.btn:active {
  animation: stamp 0.25s ease;
}

/* hero */
.hero {
  position: relative;
  z-index: 2;
  padding: 48px 28px 0;
  min-height: calc(100vh - 70px);
}

.hero__coords {
  display: flex;
  justify-content: space-between;
  font-family: var(--ui);
  letter-spacing: 0.22em;
  font-size: 11px;
  color: var(--dust);
  margin-bottom: 28px;
}

.hero__layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ui);
  letter-spacing: 0.28em;
  font-size: 13px;
  color: var(--khaki);
  margin-bottom: 16px;
}

.eyebrow .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c44;
  box-shadow: 0 0 10px #c44;
  animation: live 1.4s ease infinite;
}

.hero__name {
  font-size: clamp(52px, 8vw, 104px);
  line-height: 0.88;
  color: var(--sand);
  text-shadow: 0 8px 0 rgba(0, 0, 0, 0.35), 0 0 40px rgba(201, 176, 122, 0.12);
  animation: flicker 7s linear infinite;
}

.hero__name span {
  display: block;
}

.hero__symbol {
  margin: 18px 0 10px;
  font-family: var(--ui);
  letter-spacing: 0.2em;
  color: var(--dust);
}

.hero__symbol b {
  color: var(--khaki);
  font-weight: 700;
}

.hero__line {
  font-size: clamp(18px, 2.4vw, 26px);
  color: var(--ink);
  margin-bottom: 8px;
}

.hero__sub {
  color: var(--muted);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 22px;
}

.dogtag {
  position: relative;
  max-width: 560px;
  padding: 16px 18px 16px 36px;
  background:
    linear-gradient(180deg, rgba(42, 38, 29, 0.9), rgba(22, 19, 14, 0.95));
  border: 1px solid rgba(201, 176, 122, 0.35);
  clip-path: polygon(16px 0, calc(100% - 16px) 0, 100% 16px, 100% calc(100% - 16px), calc(100% - 16px) 100%, 16px 100%, 0 calc(100% - 16px), 0 16px);
  margin-bottom: 22px;
}

.dogtag__holes {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  gap: 12px;
}

.dogtag__holes i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mud-deep);
  box-shadow: inset 0 0 0 2px #8a7a58;
}

.dogtag__meta {
  display: flex;
  justify-content: space-between;
  font-family: var(--ui);
  letter-spacing: 0.18em;
  font-size: 12px;
  color: var(--khaki);
  margin-bottom: 8px;
}

.dogtag__copy {
  letter-spacing: 0.18em;
  color: var(--sand);
  border-bottom: 1px solid transparent;
}

.dogtag__copy:hover,
.dogtag.is-copied .dogtag__copy {
  border-bottom-color: var(--khaki);
}

.dogtag code {
  display: block;
  font-family: var(--type);
  font-size: 14px;
  color: var(--ink);
  word-break: break-all;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}

.hero__chain {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.chip {
  height: 34px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  background: rgba(20, 17, 12, 0.7);
  border: 1px solid var(--line);
}

.chip img {
  height: 16px;
  width: auto;
  filter: var(--icon-tint);
}

.chip--icon img {
  height: 18px;
  width: 18px;
}

.hero__portrait {
  display: grid;
  place-items: center;
}

.portrait {
  position: relative;
  width: min(460px, 100%);
  animation: float 7s ease-in-out infinite;
}

.portrait__ring {
  position: absolute;
  inset: -18px;
  border: 1px dashed rgba(201, 176, 122, 0.35);
  border-radius: 50%;
  animation: pulse-ring 4.5s ease-in-out infinite, spin-slow 48s linear infinite;
}

.portrait__frame {
  position: relative;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #b9a46d;
  box-shadow:
    0 0 0 10px rgba(42, 38, 29, 0.85),
    0 30px 60px rgba(0, 0, 0, 0.5),
    inset 0 0 40px rgba(0, 0, 0, 0.35);
}

.portrait__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
  filter: contrast(1.05) saturate(0.92);
}

.portrait__scratch {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(125deg, transparent 40%, rgba(255, 255, 255, 0.08) 42%, transparent 46%),
    repeating-linear-gradient(-20deg, transparent 0 18px, rgba(0, 0, 0, 0.08) 18px 19px);
  mix-blend-mode: overlay;
}

.portrait__plate {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  min-width: 180px;
  text-align: center;
  padding: 8px 14px;
  background: rgba(14, 12, 8, 0.82);
  border: 1px solid var(--khaki);
}

.portrait__plate span {
  display: block;
  font-family: var(--ui);
  letter-spacing: 0.2em;
  font-size: 10px;
  color: var(--khaki);
}

.portrait__plate strong {
  font-family: var(--stencil);
  font-size: 13px;
  letter-spacing: 0.08em;
}

.ticker {
  margin: 56px -28px 0;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(12, 10, 7, 0.7);
}

.ticker__track {
  display: flex;
  align-items: center;
  gap: 28px;
  width: max-content;
  padding: 12px 0;
  animation: ticker 28s linear infinite;
  font-family: var(--ui);
  letter-spacing: 0.28em;
  font-size: 13px;
  color: var(--khaki);
}

.ticker .star {
  width: 10px;
  height: 10px;
  background: var(--sand);
  clip-path: polygon(50% 0, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

/* sections */
.section {
  position: relative;
  z-index: 2;
  padding: 96px 28px;
  max-width: 1240px;
  margin: 0 auto;
}

.section__head {
  text-align: center;
  margin-bottom: 48px;
}

.section__index {
  font-family: var(--ui);
  letter-spacing: 0.32em;
  font-size: 13px;
  color: var(--khaki);
  margin-bottom: 14px;
}

.section__head h2,
.joinus h2 {
  font-size: clamp(36px, 6vw, 64px);
  color: var(--sand);
}

.insignia {
  width: 140px;
  height: 18px;
  margin: 0 auto 16px;
  background:
    linear-gradient(var(--khaki), var(--khaki)) left center / calc(50% - 16px) 2px no-repeat,
    linear-gradient(var(--khaki), var(--khaki)) right center / calc(50% - 16px) 2px no-repeat,
    var(--khaki);
  clip-path: polygon(
    0 40%, 38% 40%, 42% 10%, 50% 0, 58% 10%, 62% 40%, 100% 40%,
    100% 60%, 62% 60%, 58% 90%, 50% 100%, 42% 90%, 38% 60%, 0 60%
  );
}

.insignia--light {
  background:
    linear-gradient(#efe3c0, #efe3c0) left center / calc(50% - 16px) 2px no-repeat,
    linear-gradient(#efe3c0, #efe3c0) right center / calc(50% - 16px) 2px no-repeat,
    #efe3c0;
}

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

.reveal.is-in {
  animation: rise 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.12s; }
.delay-2 { animation-delay: 0.24s; }
.delay-3 { animation-delay: 0.36s; }

.about__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.brief {
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(36, 31, 22, 0.85), rgba(16, 14, 10, 0.92));
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
  position: relative;
}

.brief::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--khaki), transparent);
}

.brief header {
  display: flex;
  justify-content: space-between;
  font-family: var(--ui);
  letter-spacing: 0.16em;
  font-size: 12px;
  color: var(--khaki);
  margin-bottom: 16px;
}

.brief h3 {
  font-family: var(--stencil);
  font-size: 20px;
  line-height: 1.25;
  margin-bottom: 12px;
  color: var(--sand);
}

.brief p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 15px;
}

.about__banner-strip {
  margin-top: 22px;
  padding: 22px 26px;
  border: 1px dashed rgba(201, 176, 122, 0.35);
  text-align: center;
  color: var(--ink);
  line-height: 1.8;
  background: rgba(20, 17, 12, 0.55);
}

.orders {
  list-style: none;
  display: grid;
  gap: 14px;
}

.order {
  display: grid;
  grid-template-columns: 70px 72px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 18px 20px;
  background: rgba(18, 16, 12, 0.78);
  border: 1px solid var(--line);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.order:hover {
  transform: translateX(6px);
  border-color: rgba(201, 176, 122, 0.5);
  background: rgba(28, 24, 16, 0.9);
}

.order__num {
  font-family: var(--stencil);
  font-size: 28px;
  color: var(--olive);
}

.order__icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  background: #11100c;
  border: 1px solid var(--line);
}

.order__icon img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  filter: var(--icon-tint);
}

.order__icon--wide img {
  width: 52px;
  height: auto;
}

.order__body h3 {
  font-family: var(--stencil);
  font-size: 18px;
  margin-bottom: 6px;
  color: var(--sand);
}

.order__body p {
  color: var(--muted);
  line-height: 1.6;
  max-width: 620px;
}

.order__link {
  font-family: var(--ui);
  letter-spacing: 0.16em;
  font-weight: 700;
  font-size: 13px;
  padding: 10px 14px;
  border: 1px solid var(--khaki);
  color: var(--sand);
}

.order__link--static {
  opacity: 0.7;
}

.order__link:hover {
  background: rgba(201, 176, 122, 0.12);
}

.recon {
  border: 1px solid var(--line);
  background: rgba(10, 8, 6, 0.8);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.recon__bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  font-family: var(--ui);
  letter-spacing: 0.16em;
  font-size: 12px;
  color: var(--dust);
  border-bottom: 1px solid var(--line);
}

.recon__live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #d36a4a;
}

.recon__live i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d36a4a;
  animation: live 1.2s ease infinite;
}

.recon__bar a {
  color: var(--khaki);
}

.recon__frame {
  position: relative;
  height: min(720px, 78vh);
  overflow: hidden;
}

.recon__frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  background: #0b0b0b;
}

.recon__scan {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(201, 176, 122, 0.08), transparent);
  height: 28%;
  animation: scan 5.5s linear infinite;
}

.joinus {
  position: relative;
  z-index: 2;
  width: 100%;
  overflow: hidden;
}

.joinus__banner {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 1;
}

.joinus__banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.joinus__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 8, 6, 0.12) 0%, rgba(10, 8, 6, 0.22) 38%, rgba(10, 8, 6, 0.82) 100%),
    radial-gradient(ellipse at center, transparent 28%, rgba(8, 6, 4, 0.4) 100%);
}

.joinus__content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
  padding: 36px 24px 40px;
  max-width: none;
}

.joinus__line {
  margin: 18px 0 10px;
  font-size: clamp(18px, 2.4vw, 26px);
}

.joinus__copy {
  color: #d7cba8;
  line-height: 1.8;
  margin-bottom: 28px;
  max-width: 720px;
}

.foot {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 28px;
  border-top: 1px solid var(--line);
  background: #0c0a07;
}

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

.foot__brand img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 38%;
  border: 1px solid var(--khaki);
}

.foot__brand strong {
  display: block;
  font-family: var(--stencil);
  font-size: 14px;
}

.foot__brand span,
.foot__note {
  font-family: var(--ui);
  letter-spacing: 0.08em;
  color: var(--dust);
  font-size: 13px;
}

.foot__note {
  max-width: 420px;
  text-align: center;
}

.foot__links {
  display: flex;
  gap: 10px;
}

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

.foot__links img {
  width: 18px;
  height: 18px;
  filter: var(--icon-tint);
}

@media (max-width: 980px) {
  .hero__layout,
  .about__grid {
    grid-template-columns: 1fr;
  }

  .hero__portrait {
    order: -1;
  }

  .portrait {
    width: min(320px, 80vw);
  }

  .nav__links {
    position: fixed;
    inset: 70px 16px auto;
    display: none;
    flex-direction: column;
    gap: 0;
    background: rgba(12, 10, 7, 0.96);
    border: 1px solid var(--line);
    padding: 10px;
  }

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

  .nav__links a {
    padding: 14px 12px;
    border-bottom: 1px solid var(--line);
  }

  .nav__toggle {
    display: flex;
  }

  .order {
    grid-template-columns: 56px 56px 1fr;
  }

  .order__link {
    grid-column: 1 / -1;
    text-align: center;
  }

  .foot {
    flex-direction: column;
    text-align: center;
  }

  .recon__bar {
    flex-wrap: wrap;
  }

  .joinus__content {
    position: relative;
    padding: 28px 16px 40px;
    background: linear-gradient(180deg, rgba(10, 8, 6, 0.15), #0c0a07);
  }
}

@media (max-width: 640px) {
  .nav {
    padding: 10px 14px;
  }

  .hero,
  .section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero__coords {
    display: none;
  }

  .nav__word span {
    font-size: 12px;
  }

  .order__icon {
    width: 48px;
    height: 48px;
  }
}

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

  .boot {
    display: none;
  }

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