:root {
  --ink: #0b0b0a;
  --paper: #f1eee5;
  --cream: #ded8c8;
  --gold: #c9a768;
  --line: rgba(241, 238, 229, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--paper);
  font-family: "Manrope", sans-serif;
  -webkit-font-smoothing: antialiased;
}

button,
a {
  color: inherit;
}

a {
  text-decoration: none;
}

button {
  font: inherit;
}

.noise {
  position: fixed;
  z-index: 20;
  inset: 0;
  pointer-events: none;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.65'/%3E%3C/svg%3E");
}

.shell {
  width: min(1360px, calc(100% - 80px));
  margin-inline: auto;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px;
  border-bottom: 1px solid var(--line);
}

.brand {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.brand__dot {
  color: var(--gold);
}

.nav nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav nav a {
  transition: color 180ms ease;
}

.nav nav a:hover {
  color: var(--gold);
}

.nav__x {
  padding: 13px 18px;
  border: 1px solid var(--line);
}

.hero {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 8vw;
  align-items: center;
  min-height: calc(100vh - 100px);
  padding-block: 70px 90px;
}

.eyebrow {
  margin: 0;
  color: var(--gold);
  font-family: "DM Mono", monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  line-height: 1.5;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 880px;
  margin: 27px 0 32px;
  font-size: clamp(58px, 7.6vw, 124px);
  font-weight: 500;
  letter-spacing: -0.075em;
  line-height: 0.88;
}

.hero h1 em {
  display: block;
  margin-top: 12px;
  color: var(--gold);
  font-family: "Playfair Display", serif;
  font-weight: 600;
}

.hero__intro {
  max-width: 590px;
  margin: 0;
  color: rgba(241, 238, 229, 0.68);
  font-size: 17px;
  line-height: 1.75;
}

.hero__intro em {
  color: var(--paper);
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 42px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 0;
  cursor: pointer;
  font-family: "DM Mono", monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--gold {
  background: var(--gold);
  color: var(--ink);
}

.button--gold:hover {
  background: var(--paper);
}

.button--text {
  color: rgba(241, 238, 229, 0.66);
}

.button--text:hover {
  color: var(--paper);
}

.hero__portrait {
  width: 100%;
  max-width: 440px;
  justify-self: end;
}

.portrait__frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 0.84;
  background: #222;
}

.portrait__frame::after {
  position: absolute;
  z-index: 4;
  inset: 0;
  content: "";
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
  pointer-events: none;
}

.portrait__frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: grayscale(1) contrast(1.07);
  transform: scale(1.01);
}

.portrait__money {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.portrait__stamp {
  position: absolute;
  z-index: 3;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: flex;
  justify-content: space-between;
  padding: 10px 12px;
  background: rgba(11, 11, 10, 0.85);
  backdrop-filter: blur(8px);
  font-family: "DM Mono", monospace;
  font-size: 7px;
  letter-spacing: 0.12em;
}

.portrait__caption {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 14px;
  font-family: "DM Mono", monospace;
  font-size: 8px;
  letter-spacing: 0.1em;
  line-height: 1.6;
  text-transform: uppercase;
}

.portrait__caption span:last-child {
  color: rgba(241, 238, 229, 0.45);
  text-align: right;
}

.ticker {
  overflow: hidden;
  border-block: 1px solid rgba(11, 11, 10, 0.28);
  background: var(--gold);
  color: var(--ink);
}

.ticker__track {
  display: flex;
  width: max-content;
  animation: ticker 30s linear infinite;
}

.ticker span {
  padding: 17px 28px;
  font-family: "DM Mono", monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.13em;
  white-space: nowrap;
}

.ticker span::after {
  margin-left: 55px;
  content: "◆";
  font-size: 6px;
  vertical-align: 2px;
}

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

.statement {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 12vw;
  padding-block: 150px;
}

.section-heading h2,
.holdings h2 {
  margin: 22px 0 28px;
  font-size: clamp(44px, 5.4vw, 76px);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.section-heading > p:last-child {
  max-width: 460px;
  color: rgba(241, 238, 229, 0.57);
  font-size: 14px;
  line-height: 1.8;
}

.ledger {
  border-top: 1px solid var(--paper);
}

.ledger__row {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: baseline;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
}

.ledger__row span {
  color: rgba(241, 238, 229, 0.56);
  font-family: "DM Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ledger__row strong {
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.03em;
  text-align: right;
}

.ledger__row--main {
  padding: 38px 0;
}

.ledger__row--main strong {
  color: var(--gold);
  font-family: "Playfair Display", serif;
  font-size: clamp(52px, 6vw, 82px);
  font-style: italic;
  line-height: 0.8;
}

.holdings {
  padding-bottom: 150px;
}

.holdings__header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 50px;
  margin-bottom: 55px;
}

.holdings__header h2 {
  margin-bottom: 0;
}

.holdings__header > p {
  max-width: 430px;
  margin: 0 0 4px;
  color: rgba(241, 238, 229, 0.57);
  font-size: 14px;
  line-height: 1.8;
}

.cards {
  display: grid;
  grid-template-columns: 1.1fr 0.95fr 0.95fr;
  gap: 12px;
}

.card {
  position: relative;
  display: flex;
  overflow: hidden;
  flex-direction: column;
  justify-content: space-between;
  min-height: 480px;
  padding: 28px;
  border: 1px solid var(--line);
}

.card__index {
  font-family: "DM Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.12em;
}

.card__chart {
  width: 110%;
  margin-left: -5%;
}

.card__chart svg {
  width: 100%;
  overflow: visible;
}

.card__chart path {
  fill: none;
  stroke: var(--gold);
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
}

.card__bottom {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
}

.card__bottom p {
  margin: 0 0 8px;
  font-family: "DM Mono", monospace;
  font-size: 8px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.card__bottom h3 {
  max-width: 240px;
  margin: 0;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.card__bottom > span {
  color: var(--gold);
  font-family: "DM Mono", monospace;
  font-size: 10px;
  white-space: nowrap;
}

.card--cream {
  background: var(--cream);
  color: var(--ink);
}

.card--cream blockquote {
  margin: 20px 0 80px;
  font-family: "Playfair Display", serif;
  font-size: clamp(36px, 4vw, 56px);
  font-style: italic;
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1;
}

.card--cream blockquote span {
  display: block;
  margin-top: 24px;
  font-family: "DM Mono", monospace;
  font-size: 8px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-transform: uppercase;
}

.card--cream .card__bottom > span {
  color: var(--ink);
}

.card--gold {
  background: var(--gold);
  color: var(--ink);
}

.monogram {
  align-self: center;
  font-family: "Playfair Display", serif;
  font-size: 210px;
  font-style: italic;
  line-height: 0.9;
}

.card--gold .card__bottom > span {
  color: var(--ink);
}

.hard-assets {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  min-height: 900px;
  background: var(--cream);
  color: var(--ink);
}

.hard-assets__image {
  min-height: 900px;
  padding: clamp(20px, 3vw, 48px);
  background: #11110f;
}

.hard-assets__image img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 1100px;
  object-fit: contain;
}

.hard-assets__copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(70px, 9vw, 150px);
}

.hard-assets__copy .eyebrow {
  color: #80683d;
}

.hard-assets__number {
  position: absolute;
  top: 42px;
  right: 48px;
  margin: 0;
  font-family: "DM Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.12em;
}

.hard-assets__copy h2 {
  margin: 28px 0 32px;
  font-size: clamp(58px, 6.3vw, 98px);
  font-weight: 500;
  letter-spacing: -0.075em;
  line-height: 0.9;
}

.hard-assets__copy h2 em {
  color: #92784a;
  font-family: "Playfair Display", serif;
  font-weight: 600;
}

.hard-assets__copy > p:not(.eyebrow, .hard-assets__number) {
  max-width: 530px;
  margin: 0;
  color: rgba(11, 11, 10, 0.65);
  font-size: 15px;
  line-height: 1.85;
}

.hard-assets__stats {
  margin-top: 60px;
  border-top: 1px solid rgba(11, 11, 10, 0.25);
}

.hard-assets__stats div {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(11, 11, 10, 0.18);
}

.hard-assets__stats span {
  font-family: "DM Mono", monospace;
  font-size: 8px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hard-assets__stats strong {
  font-size: 14px;
  font-weight: 600;
}

.net-worth {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--ink);
}

.net-worth__inner {
  padding-block: 130px 80px;
}

.net-worth__label,
.net-worth__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.net-worth__label > span,
.net-worth__status {
  color: rgba(241, 238, 229, 0.42);
  font-family: "DM Mono", monospace;
  font-size: 8px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.net-worth__value {
  margin-block: 55px 72px;
  color: var(--gold);
  font-family: "DM Mono", monospace;
  font-size: clamp(55px, 11.2vw, 172px);
  font-weight: 300;
  letter-spacing: -0.09em;
  line-height: 0.8;
  white-space: nowrap;
}

.net-worth__footer {
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.net-worth__footer p {
  max-width: 560px;
  margin: 0;
  color: rgba(241, 238, 229, 0.43);
  font-size: 11px;
  line-height: 1.65;
}

.net-worth__status {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--paper);
  white-space: nowrap;
}

.net-worth__status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #82bd77;
  box-shadow: 0 0 0 5px rgba(130, 189, 119, 0.1);
  animation: pulse 1.6s ease-in-out infinite;
}

@keyframes pulse {
  50% {
    box-shadow: 0 0 0 9px rgba(130, 189, 119, 0);
    transform: scale(0.8);
  }
}

.quote {
  background: var(--paper);
  color: var(--ink);
}

.quote__inner {
  padding-block: 150px;
  text-align: center;
}

.quote .eyebrow {
  color: #92784a;
}

.quote blockquote {
  max-width: 1100px;
  margin: 48px auto 42px;
  font-family: "Playfair Display", serif;
  font-size: clamp(43px, 6vw, 86px);
  font-style: italic;
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 1.04;
}

.signature {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.signature span {
  font-size: 18px;
  font-weight: 700;
}

.footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding-block: 70px 40px;
}

.footer p {
  color: rgba(241, 238, 229, 0.42);
  font-size: 12px;
  line-height: 1.7;
}

.footer__right {
  text-align: right;
}

.footer__right a {
  font-family: "DM Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer__confession {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  grid-column: 1 / -1;
  width: min(680px, 100%);
  margin: 70px auto 0;
  padding: 18px 22px 20px;
  border: 1px solid rgba(241, 238, 229, 0.13);
  border-left: 3px solid var(--gold);
  background: #11110f;
  color: rgba(241, 238, 229, 0.68);
  text-align: left;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.3);
  transform: rotate(-0.35deg);
}

.footer__confession::before,
.footer__confession::after {
  position: absolute;
  z-index: 2;
  pointer-events: none;
}

.footer__confession::before {
  right: 18px;
  bottom: 17px;
  width: calc(100% - 36px);
  height: 25px;
  background: #030303;
  box-shadow: 0 2px 0 rgba(201, 167, 104, 0.18);
  content: "";
  transform-origin: right center;
  animation: failed-redaction 4.8s cubic-bezier(0.7, 0, 0.3, 1) infinite;
}

.footer__confession::after {
  right: 28px;
  bottom: 23px;
  color: rgba(241, 238, 229, 0.58);
  content: "REDACTED";
  font-family: "DM Mono", monospace;
  font-size: 7px;
  letter-spacing: 0.2em;
  animation: failed-redaction-label 4.8s step-end infinite;
}

.footer__confession span {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
  font-family: "DM Mono", monospace;
  font-size: 7px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer__confession p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: inherit;
  font-family: "DM Mono", monospace;
  font-size: clamp(12px, 1.25vw, 16px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.4;
}

@keyframes failed-redaction {
  0%,
  32%,
  76%,
  100% {
    transform: translateX(0) scaleX(1);
  }

  43%,
  65% {
    transform: translateX(96%) scaleX(0.04);
  }
}

@keyframes failed-redaction-label {
  0%,
  42%,
  66%,
  100% {
    opacity: 1;
  }

  43%,
  65% {
    opacity: 0;
  }
}

.toast {
  position: fixed;
  z-index: 30;
  right: 28px;
  bottom: 28px;
  width: min(390px, calc(100% - 40px));
  padding: 28px;
  border: 1px solid rgba(201, 167, 104, 0.5);
  background: #151513;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.45);
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.toast.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.toast strong,
.toast > span {
  display: block;
}

.toast strong {
  margin: 12px 25px 8px 0;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.3;
}

.toast > span {
  color: rgba(241, 238, 229, 0.5);
  font-size: 12px;
}

.toast__close {
  position: absolute;
  top: 15px;
  right: 17px;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: rgba(241, 238, 229, 0.5);
  font-size: 21px;
}

@media (max-width: 940px) {
  .shell {
    width: min(100% - 40px, 760px);
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 80px;
    padding-block: 80px;
  }

  .hero__portrait {
    max-width: 560px;
    justify-self: start;
  }

  .statement {
    grid-template-columns: 1fr;
    gap: 70px;
    padding-block: 110px;
  }

  .holdings__header {
    align-items: start;
    flex-direction: column;
  }

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

  .card {
    min-height: 430px;
  }

  .hard-assets {
    grid-template-columns: 1fr;
  }

  .hard-assets__image {
    min-height: 0;
  }

  .hard-assets__image img {
    height: auto;
    max-height: none;
  }

  .net-worth__value {
    font-size: clamp(54px, 11vw, 100px);
  }
}

@media (max-width: 600px) {
  .shell {
    width: calc(100% - 32px);
  }

  .nav {
    height: 78px;
  }

  .nav nav > a:not(.nav__x) {
    display: none;
  }

  .nav__x {
    padding: 10px 12px;
    font-size: 8px;
  }

  .hero {
    min-height: 0;
    gap: 65px;
    padding-block: 65px 75px;
  }

  .hero h1 {
    font-size: clamp(51px, 16vw, 76px);
  }

  .hero__intro {
    font-size: 15px;
  }

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

  .portrait__stamp {
    font-size: 6px;
  }

  .statement,
  .holdings {
    padding-block: 90px;
  }

  .ledger__row {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .ledger__row strong {
    text-align: left;
  }

  .ledger__row--main strong {
    font-size: 62px;
  }

  .card {
    min-height: 390px;
    padding: 22px;
  }

  .hard-assets__image {
    padding: 16px;
  }

  .hard-assets__copy {
    padding: 85px 24px;
  }

  .hard-assets__copy h2 {
    font-size: clamp(54px, 17vw, 78px);
  }

  .hard-assets__number {
    top: 28px;
    right: 24px;
  }

  .net-worth__inner {
    padding-block: 90px 65px;
  }

  .net-worth__label,
  .net-worth__footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .net-worth__value {
    margin-block: 50px 58px;
    font-size: clamp(43px, 13vw, 68px);
  }

  .quote__inner {
    padding-block: 100px;
  }

  .footer {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer__right {
    text-align: left;
  }

  .footer__confession {
    margin-top: 35px;
    padding-inline: 16px;
  }
}

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

  .ticker__track {
    animation-play-state: paused;
  }

  .net-worth__status i {
    animation: none;
  }

  .footer__confession {
    transform: none;
  }

  .footer__confession::before,
  .footer__confession::after {
    animation: none;
  }

  .footer__confession::before {
    transform: translateX(96%) scaleX(0.04);
  }

  .footer__confession::after {
    opacity: 0;
  }

  .button,
  .toast {
    transition: none;
  }
}
