:root {
  --black: #070604;
  --ink: #17130d;
  --brown: #46391f;
  --olive: #77653a;
  --gold: #d7bd75;
  --paper: #f2e2b5;
  --dust: #b49a61;
  --pink: #d88d83;
  --rose: #f0b0a7;
  --white: #fff9e9;
  --line: rgba(242, 226, 181, 0.18);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 12%, rgba(216, 141, 131, 0.28), transparent 28rem),
    radial-gradient(circle at 78% 8%, rgba(215, 189, 117, 0.2), transparent 24rem),
    linear-gradient(135deg, #080704 0%, #17120a 45%, #070604 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

body::before {
  content: "0x69420 420 0x6 0x69420 420 0x6 0x69420 420";
  position: fixed;
  inset: 0;
  z-index: -2;
  color: rgba(215, 189, 117, 0.08);
  font-family: "Courier New", monospace;
  font-size: clamp(2.6rem, 7vw, 7rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.35;
  word-spacing: 1.2rem;
  transform: rotate(-4deg) scale(1.1);
  pointer-events: none;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(rgba(255, 249, 233, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 249, 233, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at center, black 0, transparent 76%);
  pointer-events: none;
}

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

button {
  font: inherit;
}

.site-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
  background: rgba(7, 6, 4, 0.72);
  border-bottom: 1px solid var(--line);
}

.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

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

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--black);
  background: linear-gradient(135deg, var(--pink), var(--gold) 72%);
  border-radius: 12px;
  font-weight: 950;
  box-shadow: 0 0 30px rgba(216, 141, 131, 0.32);
}

.brand-copy {
  display: grid;
  gap: 1px;
}

.brand-name {
  font-size: 0.94rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.brand-ticker {
  color: rgba(255, 249, 233, 0.58);
  font-family: "Courier New", monospace;
  font-size: 0.78rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-link,
.mini-button {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 14px;
  border: 1px solid rgba(255, 249, 233, 0.14);
  border-radius: 999px;
  color: rgba(255, 249, 233, 0.78);
  background: rgba(255, 249, 233, 0.05);
  font-size: 0.88rem;
  font-weight: 750;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.nav-link:hover,
.mini-button:hover {
  transform: translateY(-2px);
  border-color: rgba(216, 141, 131, 0.68);
  background: rgba(216, 141, 131, 0.12);
}

.hero {
  padding: 28px 0 64px;
}

.banner-stage {
  position: relative;
  min-height: clamp(560px, 78vh, 820px);
  display: grid;
  align-items: end;
  overflow: hidden;
  border: 1px solid rgba(242, 226, 181, 0.18);
  border-radius: 30px;
  background: var(--black);
  box-shadow: var(--shadow);
}

.banner-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 6, 4, 0.92) 0%, rgba(7, 6, 4, 0.45) 44%, rgba(7, 6, 4, 0.02) 100%),
    linear-gradient(0deg, rgba(7, 6, 4, 0.96) 0%, transparent 46%);
  pointer-events: none;
}

.banner-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.04) contrast(1.03);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  padding: clamp(28px, 5vw, 64px);
}

.eyebrow {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  padding: 9px 12px;
  color: var(--paper);
  border: 1px solid rgba(215, 189, 117, 0.32);
  border-radius: 999px;
  background: rgba(7, 6, 4, 0.58);
  font-family: "Courier New", monospace;
  font-size: 0.82rem;
  font-weight: 800;
}

.eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 18px var(--pink);
}

h1 {
  margin: 0;
  max-width: 10ch;
  color: var(--white);
  font-size: clamp(4rem, 13vw, 10.6rem);
  line-height: 0.82;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-text {
  max-width: 660px;
  margin: 24px 0 0;
  color: rgba(255, 249, 233, 0.78);
  font-size: clamp(1.02rem, 2vw, 1.25rem);
}

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

.primary-button,
.ghost-button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 850;
  cursor: pointer;
  transition: transform 180ms ease, filter 180ms ease, border-color 180ms ease;
}

.primary-button {
  color: var(--black);
  border: 0;
  background: linear-gradient(135deg, var(--pink), var(--gold));
  box-shadow: 0 18px 44px rgba(216, 141, 131, 0.28);
}

.ghost-button {
  color: var(--paper);
  border: 1px solid rgba(242, 226, 181, 0.22);
  background: rgba(255, 249, 233, 0.06);
}

.primary-button:hover,
.ghost-button:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
}

.dossier-card {
  position: absolute;
  right: clamp(18px, 4vw, 54px);
  bottom: clamp(18px, 4vw, 54px);
  z-index: 2;
  width: min(340px, calc(100% - 36px));
  padding: 18px;
  border: 1px solid rgba(242, 226, 181, 0.24);
  border-radius: 20px;
  background: rgba(7, 6, 4, 0.72);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.48);
}

.dossier-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(242, 226, 181, 0.12);
}

.dossier-row:last-child {
  border-bottom: 0;
}

.dossier-label {
  color: rgba(255, 249, 233, 0.48);
  font-family: "Courier New", monospace;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.dossier-value {
  color: var(--paper);
  font-weight: 900;
  text-align: right;
}

.ticker-tape {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.tape-item {
  min-height: 84px;
  display: grid;
  align-content: center;
  gap: 2px;
  padding: 18px;
  border: 1px solid rgba(242, 226, 181, 0.16);
  border-radius: 18px;
  background: rgba(255, 249, 233, 0.06);
}

.tape-number {
  color: var(--gold);
  font-family: "Courier New", monospace;
  font-size: clamp(1.25rem, 2.4vw, 2rem);
  font-weight: 900;
}

.tape-label {
  color: rgba(255, 249, 233, 0.58);
  font-size: 0.82rem;
  font-weight: 760;
  text-transform: uppercase;
}

.section {
  padding: 72px 0;
}

.briefing {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(24px, 5vw, 54px);
  align-items: center;
}

.portrait-orbit {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  position: relative;
  transform: perspective(1000px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transition: transform 220ms ease-out;
}

.portrait-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(242, 226, 181, 0.22);
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(216, 141, 131, 0.18), rgba(215, 189, 117, 0.12));
  box-shadow: var(--shadow);
}

.portrait-frame::before {
  content: "0x69420";
  position: absolute;
  left: 20px;
  top: 18px;
  z-index: 1;
  padding: 8px 10px;
  border: 1px solid rgba(242, 226, 181, 0.2);
  border-radius: 999px;
  color: var(--paper);
  background: rgba(7, 6, 4, 0.62);
  font-family: "Courier New", monospace;
  font-weight: 900;
}

.portrait-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.section-kicker {
  margin: 0 0 10px;
  color: var(--pink);
  font-family: "Courier New", monospace;
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.section-title {
  margin: 0;
  color: var(--white);
  font-size: clamp(2.35rem, 6vw, 5.4rem);
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-copy {
  margin: 22px 0 0;
  color: rgba(255, 249, 233, 0.72);
  font-size: 1.04rem;
}

.memo-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.memo-tab {
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(242, 226, 181, 0.16);
  border-radius: 999px;
  color: rgba(255, 249, 233, 0.68);
  background: rgba(255, 249, 233, 0.05);
  cursor: pointer;
  font-weight: 800;
}

.memo-tab.is-active {
  color: var(--black);
  background: var(--gold);
}

.memo-panel {
  display: none;
  margin-top: 18px;
  padding: 22px;
  border: 1px solid rgba(242, 226, 181, 0.16);
  border-radius: 18px;
  background: rgba(255, 249, 233, 0.06);
}

.memo-panel.is-active {
  display: block;
}

.memo-panel p {
  margin: 0;
  color: rgba(255, 249, 233, 0.78);
  font-size: 1rem;
}

.manifest {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.manifest-card {
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border: 1px solid rgba(242, 226, 181, 0.16);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(216, 141, 131, 0.12), transparent 42%),
    rgba(255, 249, 233, 0.055);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.2);
}

.manifest-card:nth-child(2) {
  background:
    linear-gradient(145deg, rgba(215, 189, 117, 0.16), transparent 42%),
    rgba(255, 249, 233, 0.055);
}

.manifest-card:nth-child(3) {
  background:
    linear-gradient(145deg, rgba(119, 101, 58, 0.34), transparent 46%),
    rgba(255, 249, 233, 0.055);
}

.card-code {
  color: var(--gold);
  font-family: "Courier New", monospace;
  font-size: 0.84rem;
  font-weight: 900;
}

.manifest-card h3 {
  margin: 34px 0 12px;
  color: var(--white);
  font-size: 1.32rem;
  line-height: 1.05;
}

.manifest-card p {
  margin: 0;
  color: rgba(255, 249, 233, 0.68);
}

.token-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 24px;
  align-items: end;
  padding: clamp(28px, 6vw, 54px);
  border: 1px solid rgba(242, 226, 181, 0.18);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(216, 141, 131, 0.18), transparent 36%),
    linear-gradient(225deg, rgba(215, 189, 117, 0.22), transparent 40%),
    rgba(7, 6, 4, 0.7);
  box-shadow: var(--shadow);
}

.token-panel::before {
  content: "$WIFELON";
  position: absolute;
  right: -0.1em;
  top: -0.25em;
  color: rgba(255, 249, 233, 0.045);
  font-size: clamp(4rem, 13vw, 11rem);
  font-weight: 950;
  line-height: 1;
}

.token-panel h2 {
  position: relative;
  margin: 0;
  color: var(--white);
  font-size: clamp(2.4rem, 7vw, 6.8rem);
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
}

.token-panel p {
  position: relative;
  max-width: 660px;
  margin: 20px 0 0;
  color: rgba(255, 249, 233, 0.74);
  font-size: 1.04rem;
}

.token-box {
  position: relative;
  padding: 22px;
  border: 1px solid rgba(242, 226, 181, 0.18);
  border-radius: 18px;
  background: rgba(255, 249, 233, 0.07);
}

.token-box dl {
  margin: 0;
}

.token-box div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(242, 226, 181, 0.12);
}

.token-box div:last-child {
  border-bottom: 0;
}

.token-box dt {
  color: rgba(255, 249, 233, 0.52);
}

.token-box dd {
  margin: 0;
  color: var(--paper);
  font-weight: 900;
  text-align: right;
}

.footer {
  padding: 34px 0 48px;
  color: rgba(255, 249, 233, 0.52);
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.92rem;
}

@media (max-width: 900px) {
  .banner-stage {
    min-height: 720px;
    align-items: start;
  }

  .banner-stage::after {
    background:
      linear-gradient(0deg, rgba(7, 6, 4, 0.96) 0%, rgba(7, 6, 4, 0.7) 54%, rgba(7, 6, 4, 0.18) 100%);
  }

  .hero-content {
    padding-bottom: 220px;
  }

  .dossier-card {
    left: 18px;
    right: 18px;
    bottom: 18px;
    width: auto;
  }

  .ticker-tape,
  .manifest,
  .briefing,
  .token-panel {
    grid-template-columns: 1fr;
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 0;
  }

  .nav-links {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .site-shell {
    width: min(100% - 22px, 1180px);
  }

  .hero {
    padding-top: 16px;
  }

  .banner-stage,
  .portrait-frame,
  .token-panel {
    border-radius: 20px;
  }

  h1 {
    font-size: clamp(3.2rem, 19vw, 5.2rem);
  }

  .hero-content {
    padding: 22px;
    padding-bottom: 248px;
  }

  .ticker-tape {
    gap: 10px;
  }

  .tape-item,
  .manifest-card {
    min-height: auto;
  }

  .nav-link,
  .mini-button {
    min-height: 38px;
    padding: 0 12px;
  }
}
