:root {
  --faceless-black: #050301;
  --faceless-void: #08050a;
  --faceless-plum: #170819;
  --faceless-violet: #7852ff;
  --faceless-cyan: #00dfff;
  --faceless-lemon: #ffeb36;
  --faceless-bone: #f4efe6;
  --faceless-paper: #d8cbb8;
  --faceless-ash: #bdb6ae;
  --faceless-line: rgba(244, 239, 230, 0.18);
  --faceless-line-strong: rgba(244, 239, 230, 0.34);
  --faceless-panel: rgba(5, 3, 1, 0.62);
  --faceless-max: clamp(1120px, 72vw, 1920px);
}

body.faceless-temple {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 16% -8%, rgba(120, 82, 255, 0.11), transparent 34rem),
    radial-gradient(circle at 96% 8%, rgba(0, 223, 255, 0.055), transparent 32rem),
    linear-gradient(135deg, #050301 0%, #09040c 46%, #050301 100%);
  color: var(--faceless-bone);
  font-family: Manrope, Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html.faceless-temple-js {
  scroll-behavior: smooth;
}

.ft-site-header,
.ft-site-footer {
  position: relative;
  z-index: 10;
  width: min(var(--faceless-max), calc(100% - 32px));
  margin-inline: auto;
  box-sizing: border-box;
}

.ft-site-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 18px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(244, 239, 230, 0.08);
}

.ft-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
  color: var(--faceless-bone);
  text-decoration: none;
}

.ft-brand-mark {
  display: block;
  width: 34px;
  height: 34px;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(0, 223, 255, 0.22));
}

.ft-brand-copy {
  display: grid;
  gap: 2px;
  line-height: 1;
}

.ft-brand-copy strong {
  color: var(--faceless-bone);
  font-family: Sora, Manrope, system-ui, sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.ft-brand-copy small {
  color: var(--faceless-cyan);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.ft-nav,
.ft-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
}

.ft-nav a,
.ft-footer-links a {
  color: var(--faceless-ash);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-decoration: none;
  text-transform: uppercase;
}

.ft-nav a:hover,
.ft-nav a:focus-visible,
.ft-footer-links a:hover,
.ft-footer-links a:focus-visible {
  color: var(--faceless-cyan);
  outline: none;
}

.ft-main {
  min-height: 60vh;
}

body.faceless-temple-chrome > footer:not(.ft-site-footer) {
  display: none !important;
}

.ft-site-footer {
  padding: clamp(30px, 5vw, 72px) 0 clamp(34px, 6vw, 86px);
}

.ft-footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--faceless-ash);
  font-size: 12px;
  line-height: 1.75;
}

.ft-footer-inner p {
  max-width: 680px;
  margin: 0;
}

@media (max-width: 760px) {
  .ft-site-header,
  .ft-footer-inner {
    display: grid;
    justify-items: start;
  }

  .ft-nav,
  .ft-footer-links {
    align-items: flex-start;
    gap: 9px 14px;
  }
}
