@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700;900&family=Playfair+Display:ital,wght@0,700;1,700;1,900&display=swap');

:root {
  --bg: #070707;
  --panel: #0f0f0f;
  --panel2: #141414;
  --text: #f5f0e6;
  --muted: #aaa49a;
  --gold: #e1b84f;
  --gold2: #ffdb78;
  --line: #282828;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "DM Sans", system-ui, sans-serif;
  overflow-x: hidden;
}

button, a { -webkit-tap-highlight-color: transparent; }

.noise {
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
  opacity: .035;
  background-image:
    radial-gradient(circle at 20% 30%, #fff 0 1px, transparent 1px),
    radial-gradient(circle at 80% 70%, #fff 0 1px, transparent 1px);
  background-size: 7px 7px, 11px 11px;
}

.cursor-glow {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255,219,120,.17) 0%, rgba(225,184,79,.08) 28%, rgba(225,184,79,0) 68%);
  mix-blend-mode: screen;
  filter: blur(2px);
}

.cursor-glow::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 22px;
  height: 22px;
  border: 1px solid rgba(255,219,120,.75);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 24px rgba(255,219,120,.5);
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  padding: 22px 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to bottom, rgba(7,7,7,.96), rgba(7,7,7,.7), transparent);
}

.logo {
  text-decoration: none;
  color: var(--gold);
  font-weight: 900;
  font-size: 1.3rem;
}

.nav nav { display: flex; gap: 28px; }

.nav nav a {
  color: var(--text);
  text-decoration: none;
  text-transform: uppercase;
  font-size: .78rem;
  letter-spacing: .16em;
  opacity: .78;
}

.hero {
  min-height: 100vh;
  padding: 140px max(6vw, 28px) 90px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 22%, rgba(225,184,79,.16), transparent 24%),
    linear-gradient(125deg, #070707 0%, #0c0c0c 65%, #181107 100%);
}

.hero-kicker, .eyebrow {
  color: var(--gold);
  font-weight: 900;
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 20px 0 22px;
  max-width: 1180px;
  font-size: clamp(4rem, 10vw, 9.5rem);
  line-height: .83;
  letter-spacing: -.075em;
}

.hero h1 span {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-size: .6em;
  color: transparent;
  -webkit-text-stroke: 1px var(--gold2);
  letter-spacing: -.045em;
}

.hero-copy {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
  line-height: 1.55;
}

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

.button {
  border: 1px solid var(--gold);
  padding: 15px 20px;
  font: inherit;
  font-weight: 900;
  letter-spacing: .08em;
  text-decoration: none;
  cursor: pointer;
}

.button.gold { background: var(--gold); color: #101010; }
.button.ghost { background: transparent; color: var(--gold); }

.eval-wrap {
  width: min(640px, 100%);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  margin-top: 50px;
  color: #aaa;
  font-size: .75rem;
  letter-spacing: .12em;
}

.eval-wrap strong { color: var(--gold); font-size: 1.1rem; }
.eval-bar { height: 6px; background: #222; overflow: hidden; }
.eval-fill {
  height: 100%;
  width: 88%;
  background: linear-gradient(90deg, #8d6b1e, var(--gold2));
  animation: pulseMeter 2.4s ease-in-out infinite alternate;
}

@keyframes pulseMeter {
  to { width: 100%; filter: brightness(1.3); }
}

.king {
  position: absolute;
  right: 3vw;
  bottom: -14vh;
  color: rgba(225,184,79,.075);
  font-size: min(48vw, 700px);
  line-height: 1;
  transform: rotate(-8deg);
}

.ticker {
  overflow: hidden;
  background: var(--gold);
  color: #111;
  border-top: 1px solid #bd963a;
  border-bottom: 1px solid #bd963a;
}

.ticker-track {
  width: max-content;
  display: flex;
  gap: 28px;
  padding: 14px 0;
  font-weight: 900;
  letter-spacing: .11em;
  animation: ticker 26s linear infinite;
}

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

.section {
  position: relative;
  padding: 120px max(6vw, 28px);
  border-bottom: 1px solid var(--line);
}

.manifesto h2,
.receipts h2,
.aura h2,
.quote-wall h2,
.final h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3rem, 7vw, 6.8rem);
  line-height: .96;
  letter-spacing: -.05em;
  margin: 18px 0 46px;
}

.copy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  max-width: 1080px;
}

.copy-grid p { color: var(--muted); font-size: 1.14rem; }
.copy-grid strong { color: var(--text); }

.receipts { background: #0b0b0b; }

.receipt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.receipt {
  min-height: 330px;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}

.hero-receipt {
  background: linear-gradient(145deg, rgba(225,184,79,.16), transparent 70%);
}

.receipt-kicker {
  font-size: .72rem;
  letter-spacing: .15em;
  color: var(--gold);
  font-weight: 900;
}

.receipt-number {
  font-size: clamp(3.4rem, 7vw, 6.8rem);
  font-weight: 900;
  color: var(--gold2);
  letter-spacing: -.06em;
  margin-top: 38px;
}

.receipt h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2rem;
  margin: auto 0 8px;
}

.receipt p { color: var(--muted); margin: 0; }

.aura-grid {
  max-width: 1100px;
  display: grid;
  gap: 22px;
}

.aura-grid article {
  display: grid;
  grid-template-columns: 1.5fr auto;
  gap: 12px 24px;
  align-items: center;
}

.aura-grid strong { color: var(--gold); }
.bar {
  grid-column: 1 / -1;
  height: 9px;
  background: #181818;
  overflow: hidden;
}

.bar i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #8a681b, var(--gold2));
}

.quote-wall {
  min-height: 72vh;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.quote-mark {
  position: absolute;
  left: 50%;
  top: 20px;
  transform: translateX(-50%);
  font-family: Georgia, serif;
  font-size: 15rem;
  color: rgba(225,184,79,.11);
}

.quote-wall h2 {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  max-width: 1250px;
}

.quote-wall p { color: var(--muted); }

.lore-grid {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.lore-grid article {
  min-height: 350px;
  border: 1px solid var(--line);
  padding: 28px;
  background: linear-gradient(160deg, #121212, #0a0a0a);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.num { color: var(--gold); font-weight: 900; margin-bottom: auto; }

.lore-grid h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2rem;
  margin: 0 0 12px;
}

.lore-grid p { color: var(--muted); margin: 0; }

.terminal { background: #050505; }

.terminal-window {
  max-width: 980px;
  margin: 0 auto;
  border: 1px solid #303030;
  box-shadow: 0 30px 90px rgba(0,0,0,.35);
}

.terminal-top {
  height: 44px;
  background: #151515;
  border-bottom: 1px solid #2a2a2a;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
}

.terminal-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #3a3a3a;
}

.terminal-top em {
  margin-left: 10px;
  color: #777;
  font-size: .78rem;
}

.terminal-body {
  padding: 28px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  color: #c8c8c8;
  line-height: 1.8;
}

.terminal-body p { margin: 0; }
.gold-text { color: var(--gold); }

.final {
  min-height: 86vh;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(circle at center, rgba(225,184,79,.16), transparent 34%),
    #080808;
}

.final h2 {
  margin-bottom: 12px;
  font-size: clamp(4.5rem, 11vw, 10rem);
}

.subtitle { color: var(--muted); font-size: 1.2rem; }

.throne { margin-top: 26px; }

.crown {
  font-size: 5rem;
  color: var(--gold);
  margin-bottom: 18px;
  animation: float 2.2s ease-in-out infinite alternate;
}

@keyframes float { to { transform: translateY(-8px) rotate(2deg); } }

#truthBtn {
  border: 1px solid var(--gold);
  background: var(--gold);
  color: #111;
  padding: 17px 24px;
  font: inherit;
  font-weight: 900;
  letter-spacing: .08em;
  cursor: pointer;
}

.truth {
  min-height: 36px;
  color: var(--gold2);
  margin-top: 20px;
  font-weight: 900;
  font-size: 1.15rem;
}

footer {
  padding: 28px max(6vw, 28px);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #747474;
  font-size: .82rem;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.78);
  backdrop-filter: blur(10px);
}

.modal.show { display: flex; }

.modal-card {
  width: min(520px, calc(100% - 40px));
  background: #0d0d0d;
  border: 1px solid var(--gold);
  padding: 44px;
  text-align: center;
  position: relative;
  box-shadow: 0 30px 120px rgba(225,184,79,.14);
}

.x {
  position: absolute;
  right: 14px;
  top: 10px;
  border: 0;
  color: #888;
  background: transparent;
  font-size: 1.5rem;
  cursor: pointer;
}

.modal-mini {
  color: var(--gold);
  letter-spacing: .15em;
  font-size: .75rem;
  font-weight: 900;
}

.modal-big {
  font-size: 9rem;
  line-height: 1;
  color: var(--gold2);
  font-weight: 900;
  margin: 20px 0;
}

.modal-card p { color: var(--muted); }


.photo-feature h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3rem, 7vw, 6.8rem);
  line-height: .96;
  letter-spacing: -.05em;
  margin: 18px 0 46px;
  max-width: 1100px;
}

.photo-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 18px;
  align-items: stretch;
}

.photo-card {
  position: relative;
  margin: 0;
  min-height: 620px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #0c0c0c;
}

.photo-card img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  display: block;
  object-fit: cover;
  filter: saturate(.82) contrast(1.05) brightness(.82);
  transition: transform .5s ease, filter .5s ease;
}

.portrait-card img {
  object-position: center 28%;
}

.chess-card img {
  object-position: center center;
}

.photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,5,5,.92) 0%, rgba(5,5,5,.2) 42%, transparent 72%);
  pointer-events: none;
}

.photo-card:hover img {
  transform: scale(1.025);
  filter: saturate(1) contrast(1.08) brightness(.9);
}

.photo-card figcaption {
  position: absolute;
  z-index: 2;
  left: 28px;
  right: 28px;
  bottom: 26px;
}

.photo-card figcaption span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .16em;
}

.photo-card figcaption strong {
  display: block;
  max-width: 680px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.7rem, 3vw, 3rem);
  line-height: 1.03;
}


@media (max-width: 900px) {
  .receipt-grid { grid-template-columns: 1fr 1fr; }
  .lore-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 700px) {
  .photo-grid { grid-template-columns: 1fr; }
  .photo-card, .photo-card img { min-height: 520px; }
  .cursor-glow { display: none; }
  .nav nav { display: none; }
  .copy-grid, .receipt-grid, .lore-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 120px; }
  .hero h1 { font-size: clamp(4rem, 18vw, 7rem); }
  .section { padding-top: 88px; padding-bottom: 88px; }
  .eval-wrap { grid-template-columns: 1fr auto; }
  .eval-wrap span { grid-column: 1 / -1; }
  footer { flex-direction: column; }
}
