@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,500;0,600;0,700;0,800;0,900;1,700&family=DM+Mono:wght@400;500&display=swap");

:root {
  --ink: #0b0d0b;
  --paper: #f0eadb;
  --paper-deep: #d8ceb5;
  --acid: #a9ff68;
  --gold: #d8b66b;
  --line: rgba(240, 234, 219, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  overflow-x: hidden;
}

button,
a {
  font: inherit;
}

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

button {
  color: inherit;
}

::selection {
  background: var(--acid);
  color: var(--ink);
}

.topbar {
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(11, 13, 11, 0.76);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  height: 82px;
  left: 0;
  padding: 0 4vw;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 50;
}

.brand {
  align-items: center;
  display: flex;
  font-size: 17px;
  font-weight: 800;
  gap: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-mark {
  align-items: center;
  background: var(--acid);
  border-radius: 50% 50% 44% 56%;
  color: var(--ink);
  display: inline-flex;
  font-family: "DM Mono", monospace;
  font-size: 11px;
  height: 34px;
  justify-content: center;
  transform: rotate(-8deg);
  width: 34px;
}

.topbar nav {
  display: flex;
  font-family: "DM Mono", monospace;
  font-size: 11px;
  gap: 34px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.topbar nav a {
  opacity: 0.62;
  transition: opacity 180ms ease, color 180ms ease;
}

.topbar nav a:hover {
  color: var(--acid);
  opacity: 1;
}

.ca-button {
  align-items: center;
  background: transparent;
  border: 1px solid rgba(240, 234, 219, 0.46);
  cursor: pointer;
  display: inline-grid;
  gap: 2px;
  grid-template-columns: 1fr auto;
  padding: 13px 14px;
  text-align: left;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease,
    transform 180ms ease;
}

.ca-button:hover {
  background: var(--acid);
  border-color: var(--acid);
  color: var(--ink);
  transform: translateY(-2px);
}

.ca-button span {
  font-family: "DM Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.12em;
  opacity: 0.65;
}

.ca-button strong {
  font-size: 16px;
  letter-spacing: 0.08em;
}

.ca-button i {
  font-style: normal;
  grid-column: 2;
  grid-row: 1 / span 2;
  margin-left: 22px;
}

.ca-button-small {
  justify-self: end;
  min-width: 108px;
}

.ca-button-small i {
  display: none;
}

.hero {
  background:
    radial-gradient(circle at 72% 35%, rgba(216, 182, 107, 0.18), transparent 25%),
    linear-gradient(90deg, #0b0d0b 0 50%, #11140f 50% 100%);
  display: grid;
  grid-template-columns: 48% 47% 5%;
  min-height: 100vh;
  padding-top: 82px;
  position: relative;
}

.hero::before {
  background-image: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 4px,
    rgba(255, 255, 255, 0.015) 5px
  );
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 4;
}

.hero-copy {
  align-self: center;
  padding: 8vh 5vw 7vh 7vw;
  position: relative;
  z-index: 5;
}

.eyebrow,
.kicker {
  align-items: center;
  color: var(--acid);
  display: flex;
  font-family: "DM Mono", monospace;
  font-size: 10px;
  gap: 9px;
  letter-spacing: 0.16em;
  margin: 0 0 24px;
  text-transform: uppercase;
}

.live-dot {
  animation: pulse 1.5s ease-out infinite;
  background: var(--acid);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(169, 255, 104, 0.1);
  display: inline-block;
  height: 7px;
  width: 7px;
}

@keyframes pulse {
  50% {
    box-shadow: 0 0 0 9px rgba(169, 255, 104, 0);
  }
}

.hero h1 {
  font-size: clamp(80px, 10.5vw, 178px);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 0.68;
  margin: 0 0 52px -0.08em;
  position: relative;
  text-transform: uppercase;
  z-index: 6;
}

.hero h1 span {
  color: transparent;
  font-style: italic;
  letter-spacing: -0.08em;
  -webkit-text-stroke: 2px var(--paper);
}

.hero-lede {
  border-left: 2px solid var(--gold);
  font-family: "DM Mono", monospace;
  font-size: clamp(12px, 1.1vw, 16px);
  line-height: 1.65;
  margin: 0 0 32px;
  padding-left: 18px;
  text-transform: uppercase;
}

.hero-lede strong {
  color: var(--gold);
}

.hero-actions {
  align-items: stretch;
  display: flex;
  gap: 12px;
}

.primary-cta {
  align-items: center;
  background: var(--paper);
  color: var(--ink);
  display: flex;
  font-size: 17px;
  font-weight: 800;
  justify-content: space-between;
  letter-spacing: 0.07em;
  min-width: 220px;
  padding: 16px 18px;
  text-transform: uppercase;
  transition: background 180ms ease, transform 180ms ease;
}

.primary-cta:hover {
  background: var(--acid);
  transform: translateY(-2px);
}

.primary-cta span {
  font-size: 22px;
}

.portrait-wrap {
  --mx: 0;
  --my: 0;
  align-self: stretch;
  min-height: 680px;
  overflow: hidden;
  position: relative;
}

.portrait-wrap::before {
  background: conic-gradient(
    from 200deg at 50% 80%,
    transparent,
    rgba(216, 182, 107, 0.14),
    transparent 40%
  );
  content: "";
  inset: 0;
  position: absolute;
}

.portrait-frame {
  bottom: 0;
  clip-path: polygon(8% 8%, 95% 0, 100% 91%, 82% 100%, 0 93%, 0 18%);
  left: 2%;
  overflow: hidden;
  position: absolute;
  right: 3%;
  top: 5%;
  transform: translate(
      calc(var(--mx) * -8px),
      calc(var(--my) * -8px)
    )
    rotate(1.25deg);
  transition: transform 100ms linear;
}

.portrait-frame::after {
  background: linear-gradient(
    180deg,
    transparent 55%,
    rgba(11, 13, 11, 0.6) 100%
  );
  content: "";
  inset: 0;
  position: absolute;
}

.portrait-frame img {
  height: 100%;
  object-fit: cover;
  object-position: 50% 43%;
  transform: scale(1.05);
  width: 100%;
}

.portrait-stamp {
  background: var(--acid);
  color: var(--ink);
  font-family: "DM Mono", monospace;
  font-size: 9px;
  left: 0;
  letter-spacing: 0.16em;
  padding: 9px 13px;
  position: absolute;
  text-transform: uppercase;
  top: 8%;
  transform: rotate(-4deg);
  z-index: 7;
}

.portrait-caption {
  align-items: end;
  bottom: 4.5%;
  display: grid;
  grid-template-columns: 1fr auto;
  left: 8%;
  position: absolute;
  right: 10%;
  text-transform: uppercase;
  z-index: 7;
}

.portrait-caption span {
  font-family: "DM Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.15em;
  opacity: 0.72;
}

.portrait-caption span:last-child {
  grid-column: 2;
  grid-row: 1 / span 2;
  writing-mode: vertical-rl;
}

.portrait-caption strong {
  font-size: 30px;
  letter-spacing: 0.06em;
}

.lens-flare {
  background: rgba(169, 255, 104, 0.25);
  box-shadow: 0 0 22px 8px rgba(169, 255, 104, 0.16);
  height: 3px;
  position: absolute;
  top: 43%;
  width: 13%;
  z-index: 4;
}

.lens-flare-left {
  left: 33%;
  transform: rotate(-2deg);
}

.lens-flare-right {
  right: 32%;
  transform: rotate(2deg);
}

.paw {
  color: var(--gold);
  font-size: 22px;
  opacity: 0.26;
  position: absolute;
  transform: rotate(42deg);
}

.paw::after {
  content: "•••";
  font-size: 9px;
  left: -2px;
  letter-spacing: 1px;
  position: absolute;
  top: -9px;
}

.paw-one {
  right: 2%;
  top: 19%;
}

.paw-two {
  right: 7%;
  top: 29%;
  transform: rotate(61deg) scale(0.75);
}

.social-rail {
  border-left: 1px solid var(--line);
  display: grid;
  grid-template-rows: repeat(4, 1fr);
  position: relative;
  z-index: 6;
}

.social-rail a {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: background 180ms ease, color 180ms ease;
}

.social-rail a:hover {
  background: var(--acid);
  color: var(--ink);
}

.social-rail span {
  font-family: "DM Mono", monospace;
  font-size: 8px;
  margin-bottom: 12px;
  opacity: 0.55;
}

.social-rail img {
  filter: brightness(0) invert(1);
  height: 23px;
  object-fit: contain;
  transition: filter 180ms ease, transform 180ms ease;
  width: 23px;
}

.social-rail a:hover img {
  filter: brightness(0);
  transform: rotate(-7deg) scale(1.12);
}

.social-rail img.original-color,
.social-rail a:hover img.original-color {
  filter: none;
}

.ticker {
  background: var(--acid);
  color: var(--ink);
  font-family: "DM Mono", monospace;
  font-size: 11px;
  overflow: hidden;
  padding: 13px 0;
  text-transform: uppercase;
  transform: rotate(-0.65deg) scale(1.02);
}

.ticker > div {
  animation: crawl 24s linear infinite;
  display: flex;
  white-space: nowrap;
  width: max-content;
}

.ticker span {
  margin-right: 24px;
}

.ticker i {
  font-style: normal;
  margin: 0 14px;
}

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

.section-shell {
  margin: 0 auto;
  max-width: 1500px;
  padding: 130px 7vw;
}

.story {
  display: grid;
  gap: 52px;
  grid-template-columns: 90px 1fr 2fr;
  position: relative;
}

.story::after {
  color: rgba(240, 234, 219, 0.025);
  content: "R";
  font-size: 55vw;
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
  position: absolute;
  right: -8vw;
  top: -11vw;
}

.section-index {
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  font-family: "DM Mono", monospace;
  gap: 10px;
  position: relative;
  z-index: 2;
}

.section-index span {
  color: var(--acid);
  font-size: 8px;
  letter-spacing: 0.18em;
}

.section-index strong {
  font-size: 28px;
}

.story-heading,
.story-grid {
  position: relative;
  z-index: 2;
}

.story h2,
.market h2,
.buy h2,
.final-call h2 {
  font-size: clamp(54px, 7vw, 112px);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 0.85;
  margin: 0;
  text-transform: uppercase;
}

.story-heading h2 {
  max-width: 420px;
}

.story-grid {
  column-gap: 44px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 48px;
}

.story-grid p {
  font-family: "DM Mono", monospace;
  font-size: 12px;
  line-height: 1.85;
  margin: 0;
  opacity: 0.72;
}

.story-drop span {
  color: var(--gold);
  float: left;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 70px;
  font-weight: 900;
  line-height: 0.75;
  margin: 9px 10px 0 0;
}

blockquote {
  border-left: 2px solid var(--acid);
  font-size: 27px;
  font-style: italic;
  font-weight: 700;
  grid-column: 1 / -1;
  line-height: 1.15;
  margin: 0;
  padding: 7px 0 7px 24px;
  text-transform: uppercase;
}

blockquote cite {
  display: block;
  font-family: "DM Mono", monospace;
  font-size: 8px;
  font-style: normal;
  letter-spacing: 0.11em;
  margin-top: 16px;
  opacity: 0.5;
}

.evidence-strip {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  grid-column: 2 / -1;
  grid-template-columns: repeat(4, 1fr);
}

.evidence-strip div {
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 23px;
}

.evidence-strip div:last-child {
  border: 0;
}

.evidence-strip span {
  font-family: "DM Mono", monospace;
  font-size: 8px;
  letter-spacing: 0.12em;
  opacity: 0.45;
  text-transform: uppercase;
}

.evidence-strip strong {
  font-size: 19px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.status-live {
  color: var(--acid);
}

.market {
  background: var(--paper);
  color: var(--ink);
  max-width: none;
}

.market .kicker {
  color: #42692d;
}

.market-top {
  align-items: end;
  display: grid;
  gap: 10vw;
  grid-template-columns: 1fr 1fr;
  margin: 0 auto 55px;
  max-width: 1280px;
}

.market-top > p {
  border-left: 1px solid rgba(11, 13, 11, 0.2);
  font-family: "DM Mono", monospace;
  font-size: 11px;
  line-height: 1.8;
  margin: 0;
  max-width: 540px;
  padding-left: 24px;
}

.chart-window {
  background: #0d0d12;
  box-shadow: 22px 22px 0 #bdb39b;
  margin: 0 auto;
  max-width: 1280px;
  padding-bottom: 10px;
  position: relative;
  transform: rotate(-0.4deg);
}

.chart-bar {
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--paper);
  display: grid;
  font-family: "DM Mono", monospace;
  font-size: 9px;
  grid-template-columns: 1fr 2fr 1fr;
  letter-spacing: 0.1em;
  min-height: 50px;
  padding: 0 18px;
}

.chart-bar strong {
  justify-self: center;
}

.chart-bar > span {
  justify-self: end;
  opacity: 0.45;
}

.window-lights {
  display: flex;
  gap: 6px;
}

.window-lights i {
  background: #d8b66b;
  border-radius: 50%;
  display: block;
  height: 7px;
  width: 7px;
}

.window-lights i:nth-child(2) {
  background: var(--acid);
}

.window-lights i:nth-child(3) {
  background: #646464;
}

.chart-window iframe {
  border: 0;
  display: block;
  height: 620px;
  width: 100%;
}

.chart-corner {
  background: var(--acid);
  bottom: -15px;
  color: var(--ink);
  font-family: "DM Mono", monospace;
  font-size: 8px;
  letter-spacing: 0.14em;
  padding: 9px 12px;
  position: absolute;
  right: -14px;
}

.buy {
  display: grid;
  gap: 8vw;
  grid-template-columns: 0.8fr 1.2fr;
}

.buy-intro {
  position: static;
  align-self: start;
}

.buy h2 span {
  color: var(--acid);
  display: block;
  font-style: italic;
  -webkit-text-stroke: 0;
}

.buy-intro > p:last-child {
  font-family: "DM Mono", monospace;
  font-size: 11px;
  line-height: 1.8;
  max-width: 330px;
  opacity: 0.62;
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
}

.steps li {
  align-items: start;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 28px;
  grid-template-columns: 45px 1fr auto;
  padding: 28px 8px 40px;
  transition: border-color 180ms ease, padding-left 180ms ease;
}

.steps li:hover {
  border-color: var(--acid);
  padding-left: 15px;
}

.steps li > span {
  color: var(--acid);
  font-family: "DM Mono", monospace;
  font-size: 10px;
}

.steps h3 {
  font-size: 27px;
  letter-spacing: 0.03em;
  margin: -4px 0 10px;
  text-transform: uppercase;
}

.steps p {
  font-family: "DM Mono", monospace;
  font-size: 10px;
  line-height: 1.8;
  margin: 0;
  max-width: 520px;
  opacity: 0.57;
}

.steps li > i {
  color: var(--gold);
  font-size: 22px;
  font-style: normal;
}

.final-call {
  align-items: center;
  background:
    radial-gradient(circle at 50% 30%, rgba(216, 182, 107, 0.28), transparent 26%),
    #070807;
  display: flex;
  flex-direction: column;
  min-height: 760px;
  overflow: hidden;
  padding: 125px 6vw 100px;
  position: relative;
  text-align: center;
}

.final-call::before,
.final-call::after {
  border: 1px solid rgba(216, 182, 107, 0.18);
  border-radius: 50%;
  content: "";
  height: 700px;
  position: absolute;
  top: -360px;
  width: 700px;
}

.final-call::after {
  height: 950px;
  top: -510px;
  width: 950px;
}

.final-call > * {
  position: relative;
  z-index: 2;
}

.final-call > p {
  color: var(--gold);
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.final-call h2 {
  margin: 26px 0 55px;
}

.final-call h2 span {
  color: transparent;
  font-style: italic;
  -webkit-text-stroke: 1.5px var(--paper);
}

.final-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 24px;
}

.final-links a {
  align-items: center;
  border: 1px solid var(--line);
  display: flex;
  font-family: "DM Mono", monospace;
  font-size: 9px;
  gap: 10px;
  letter-spacing: 0.09em;
  padding: 12px 18px;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease;
}

.final-links a:hover {
  background: var(--paper);
  color: var(--ink);
}

.final-links img {
  filter: brightness(0) invert(1);
  height: 17px;
  object-fit: contain;
  width: 17px;
}

.final-links a:hover img {
  filter: brightness(0);
}

.final-links img.original-color,
.final-links a:hover img.original-color {
  filter: none;
}

.ca-button-final {
  margin-top: 5px;
  min-width: 270px;
}

footer {
  align-items: center;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr 1.5fr 1fr;
  padding: 34px 5vw;
}

footer p,
footer > span {
  font-family: "DM Mono", monospace;
  font-size: 8px;
  line-height: 1.6;
  margin: 0;
  opacity: 0.43;
  text-transform: uppercase;
}

footer p {
  justify-self: center;
  max-width: 620px;
  text-align: center;
}

footer > span {
  justify-self: end;
}

@media (max-width: 1050px) {
  .topbar nav {
    display: none;
  }

  .topbar {
    grid-template-columns: 1fr auto;
  }

  .hero {
    grid-template-columns: 45% 50% 5%;
  }

  .hero-copy {
    padding-left: 5vw;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .story {
    grid-template-columns: 60px 1fr;
  }

  .story-grid {
    grid-column: 2;
  }

  .evidence-strip {
    grid-column: 2;
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .topbar {
    height: 68px;
    padding: 0 18px;
  }

  .brand {
    font-size: 14px;
  }

  .brand-mark {
    height: 29px;
    width: 29px;
  }

  .ca-button-small {
    min-width: 94px;
    padding: 9px 11px;
  }

  .hero {
    display: flex;
    flex-direction: column;
    padding-top: 68px;
  }

  .hero-copy {
    order: 2;
    padding: 38px 22px 55px;
  }

  .hero h1 {
    font-size: clamp(67px, 24vw, 110px);
    line-height: 0.72;
    margin-bottom: 38px;
  }

  .portrait-wrap {
    min-height: 62vh;
    order: 1;
  }

  .portrait-frame {
    left: 0;
    right: 0;
    top: 2%;
  }

  .portrait-frame img {
    object-position: 50% 30%;
  }

  .portrait-stamp {
    left: 13px;
  }

  .social-rail {
    border-left: 0;
    border-top: 1px solid var(--line);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    min-height: 78px;
    order: 3;
  }

  .social-rail a {
    border-bottom: 0;
    border-right: 1px solid var(--line);
  }

  .social-rail span {
    display: none;
  }

  .section-shell {
    padding: 90px 22px;
  }

  .story {
    gap: 34px;
    grid-template-columns: 1fr;
  }

  .section-index {
    border-bottom: 1px solid var(--line);
    border-right: 0;
    flex-direction: row;
    justify-content: space-between;
    padding-bottom: 14px;
  }

  .story-grid,
  .evidence-strip {
    grid-column: 1;
  }

  .story-grid {
    grid-template-columns: 1fr;
  }

  blockquote {
    grid-column: 1;
  }

  .evidence-strip {
    grid-template-columns: 1fr 1fr;
  }

  .evidence-strip div {
    padding: 15px;
  }

  .market-top,
  .buy {
    gap: 42px;
    grid-template-columns: 1fr;
  }

  .chart-window {
    box-shadow: 10px 10px 0 #bdb39b;
  }

  .chart-window iframe {
    height: 500px;
  }

  .chart-bar {
    grid-template-columns: auto 1fr;
  }

  .chart-bar strong {
    justify-self: end;
  }

  .chart-bar > span {
    display: none;
  }

  .buy-intro {
    position: static;
  }

  .final-call {
    min-height: 660px;
    padding-left: 18px;
    padding-right: 18px;
  }

  .final-links a {
    flex: 1 1 40%;
    justify-content: center;
  }

  footer {
    grid-template-columns: 1fr;
    text-align: left;
  }

  footer > span {
    justify-self: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .ticker > div,
  .live-dot {
    animation: none;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(38px);
  transition:
    opacity 700ms ease,
    transform 700ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.copy-toast {
  background: var(--acid);
  bottom: 22px;
  color: var(--ink);
  font-family: "DM Mono", monospace;
  font-size: 9px;
  font-weight: 500;
  left: 50%;
  letter-spacing: 0.12em;
  opacity: 0;
  padding: 12px 16px;
  pointer-events: none;
  position: fixed;
  text-transform: uppercase;
  transform: translate(-50%, 18px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
  z-index: 100;
}

.copy-toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
