@font-face {
  font-family: "Instrument Sans";
  src: url("assets/fonts/instrument-sans-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Instrument Sans";
  src: url("assets/fonts/instrument-sans-500.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Instrument Sans";
  src: url("assets/fonts/instrument-sans-700.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Instrument Serif";
  src: url("assets/fonts/instrument-serif-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Instrument Serif";
  src: url("assets/fonts/instrument-serif-italic-400.ttf") format("truetype");
  font-style: italic;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Mono";
  src: url("assets/fonts/ibm-plex-mono-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Mono";
  src: url("assets/fonts/ibm-plex-mono-500.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

:root {
  --page-max: 1440px;
  --content-pad: 31px;
  --content-width: calc(min(100vw, var(--page-max)) - (var(--content-pad) * 2));
  --ink: #d7e5d6;
  --dark: #080212;
  --black: #202020;
  --mint: #00f47b;
  --paper: #d7e5d6;
  --blue: #182cf5;
  --card-blue: #2858a4;
  --orange: #f47b00;
  --red-line: #e1003c;
  --focus: #00f47b;
  --skeleton-paper-base: rgba(215, 229, 214, 0.08);
  --skeleton-paper-highlight: rgba(215, 229, 214, 0.15);
  --skeleton-ink-base: rgba(32, 32, 32, 0.045);
  --skeleton-ink-highlight: rgba(32, 32, 32, 0.095);
}

* {
  box-sizing: border-box;
}

html {
  background: #0a041f;
  scroll-behavior: smooth;
}

html.is-script-scrolling {
  scroll-behavior: auto;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(6976.08px 6515.44px at 50% 100%, #cacac4 0%, #7baced 15.8654%, #5370bd 26.9231%, #445298 37.0192%, #493ca1 45.1923%, #270f2d 62.0192%, #0a041f 67.3077%);
  font-family: "Instrument Sans", Arial, sans-serif;
  overflow-x: clip;
}

body.intro-active {
  height: 100vh;
  overflow: hidden;
}

body.landing-page {
  height: 100vh;
  overflow: hidden;
}

img,
svg {
  max-width: 100%;
}

button,
a,
input {
  font: inherit;
}

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

button:focus-visible,
a:focus-visible,
input:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
}

::selection {
  color: #0a0a0a;
  background: var(--mint);
}

.skip-link {
  position: fixed;
  left: 14px;
  top: 12px;
  z-index: 20;
  transform: translateY(-160%);
  color: #080808;
  background: var(--paper);
  padding: 10px 12px;
  text-decoration: none;
}

.skip-link:focus {
  transform: none;
}

.intro-screen {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  min-height: 100vh;
  overflow: hidden;
  color: var(--paper);
  background: #080212;
}

.intro-screen.is-hidden {
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  transition: opacity 220ms ease, visibility 0s linear 220ms;
}

.intro-slides,
.intro-slide {
  position: absolute;
  inset: 0;
}

.intro-slides::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(8, 2, 18, 0.1) 0%, rgba(8, 2, 18, 0.34) 48%, rgba(8, 2, 18, 0.66) 100%),
    rgba(8, 2, 18, 0.14);
}

.intro-slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.015);
  transition: opacity 120ms linear;
}

.intro-slide.is-active {
  opacity: 1;
}

.intro-content {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 27px;
  padding: 24px;
  text-align: center;
}

.landing-content {
  width: max-content;
  max-width: calc(100vw - 48px);
  gap: 31px;
}

.intro-title {
  margin: 0;
  color: var(--paper);
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 108px;
  line-height: 0.95;
  font-weight: 400;
  letter-spacing: 0;
  white-space: nowrap;
}

.intro-actions {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
}

.intro-action {
  min-height: 52px;
  padding: 13px 22px 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-family: "IBM Plex Mono", monospace;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
}

.intro-enter {
  color: #080808;
  background: var(--mint);
  border: 1px solid var(--mint);
}

.intro-enter:not(.is-disabled):hover,
.intro-enter:not(.is-disabled):focus-visible {
  background: var(--mint);
  border-color: var(--mint);
}

.intro-enter.is-checking {
  color: rgba(215, 229, 214, 0.72);
  background: rgba(215, 229, 214, 0.16);
  border-color: rgba(215, 229, 214, 0.42);
  cursor: wait;
}

.intro-enter.is-restricted {
  color: var(--paper);
  background: var(--red-line);
  border-color: var(--red-line);
  cursor: not-allowed;
}

.intro-action.is-disabled {
  cursor: not-allowed;
}

.legal-disclaimer {
  margin: 0;
  color: rgba(215, 229, 214, 0.82);
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  line-height: 1.45;
}

.landing-disclaimer {
  position: absolute;
  left: max(18px, calc((100vw - var(--page-max)) / 2 + var(--content-pad)));
  right: max(18px, calc((100vw - var(--page-max)) / 2 + var(--content-pad)));
  bottom: 18px;
  z-index: 2;
  max-width: 940px;
  margin: 0 auto;
  text-align: center;
}

.site-legal-footer {
  width: min(100%, var(--page-max));
  margin: 0 auto;
  padding: 18px var(--content-pad) 22px;
  background: #050505;
}

.site-legal-footer .legal-disclaimer {
  max-width: var(--content-width);
  color: #ffffff;
  opacity: 0.9;
}

.region-status {
  min-height: 17px;
  margin: -12px 0 0;
  color: #ff9f9f;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  line-height: 1.35;
  text-align: center;
  visibility: hidden;
}

.region-status.is-visible {
  visibility: visible;
}

.geo-banner {
  width: 100%;
  margin: 0;
  padding: 9px var(--content-pad);
  background: linear-gradient(180deg, #4a0016 0%, #2c000d 100%);
  border-bottom: 1px solid var(--red-line);
  text-align: center;
}

.geo-banner[hidden] {
  display: none;
}

.geo-banner p {
  max-width: var(--page-max);
  margin: 0 auto;
  color: #ffb3c1;
  font-family: "IBM Plex Mono", monospace;
  font-size: 13px;
  line-height: 1.4;
}

.geo-banner-link {
  padding: 0;
  border: 0;
  background: none;
  color: #ffffff;
  font: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
}

.geo-banner-link:hover,
.geo-banner-link:focus-visible {
  color: var(--ink);
}

.hyperlink.is-disabled,
[data-trade-action].is-disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

.site-header,
.dashboard {
  width: min(100%, var(--page-max));
  margin: 0 auto;
}

.site-header {
  height: 110px;
}

.header-inner {
  height: 100%;
  margin-inline: var(--content-pad);
  border-bottom: 1px solid var(--red-line);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-top: 32px;
}

.brand {
  display: inline-flex;
  align-items: flex-start;
  gap: 23px;
  color: var(--ink);
  text-decoration: none;
  line-height: 1;
}

.brand-symbol {
  font-size: 41px;
  letter-spacing: 0;
  font-weight: 400;
}

.brand-name {
  margin-top: 1px;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 42px;
  line-height: 0.95;
}

.primary-nav {
  display: flex;
  align-items: flex-start;
  gap: 50px;
  color: var(--ink);
  font-family: "IBM Plex Mono", monospace;
  font-size: 19px;
  line-height: 1;
}

.primary-nav a,
.nav-button,
.portal-button {
  color: inherit;
  text-decoration: none;
  border: 0;
  background: transparent;
  padding: 14px 0;
  cursor: pointer;
}

.portal-button {
  margin-top: -1px;
  min-width: 254px;
  min-height: 46px;
  padding: 12px 14px 11px;
  color: #080808;
  background: var(--paper);
  border: 1px solid var(--paper);
  text-align: center;
}

.hero-section {
  height: 238px;
  padding: 43px var(--content-pad) 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(500px, 0.64fr);
  gap: 24px;
}

.hero-copy h1 {
  margin: 0 0 45px;
  font-size: 44px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0;
}

.hero-copy p {
  max-width: 900px;
  margin: 0;
  font-size: 19px;
  line-height: 1.22;
  letter-spacing: 0;
}

.treasury-hero {
  position: relative;
  display: grid;
  justify-items: end;
  align-content: start;
  padding-top: 2px;
}

.treasury-hero h2 {
  margin: 0 0 37px;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 42px;
  line-height: 1;
  font-weight: 400;
  animation: floor-metric-roll-up 620ms cubic-bezier(0.16, 0.82, 0.24, 1) 180ms both;
}

.treasury-total {
  margin-right: 185px;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 91px;
  line-height: 0.82;
  letter-spacing: 0;
  min-width: min(336px, 100%);
  text-align: right;
  font-variant-numeric: tabular-nums;
  animation: floor-metric-roll-up 680ms cubic-bezier(0.16, 0.82, 0.24, 1) 300ms both;
}

.notional-ticker {
  position: absolute;
  right: 0;
  top: 96px;
  margin: 0;
  display: grid;
  gap: 12px;
  width: 178px;
  text-align: right;
  font-size: 18px;
  line-height: 1.08;
  font-weight: 700;
  animation: floor-metric-roll-up 620ms cubic-bezier(0.16, 0.82, 0.24, 1) 420ms both;
}

.notional-ticker dt,
.notional-ticker dd {
  margin: 0;
}

.notional-ticker dd {
  color: var(--ink);
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.notional-ticker dd span:first-child,
.metric-delta span:first-child {
  color: var(--mint);
}

/* Net 24h movement is negative: light the trend triangle red instead of green. */
.notional-ticker dd span.is-negative:first-child,
.metric-delta span.is-negative:first-child {
  color: var(--red-line);
}

.floor-module {
  --market-band-height: 218px;
  --floor-strip-height: 80px;
  --floor-shape-delay: 260ms;
  --floor-green-duration: 280ms;
  --floor-blue-duration: 750ms;
  --market-cap-roll-delay: 880ms;
  position: relative;
  isolation: isolate;
  height: 651px;
  width: var(--content-width);
  margin: 0 auto;
}

.floor-module::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 0;
  height: calc(var(--market-band-height) + var(--floor-strip-height));
  transform-origin: 50% 100%;
  background: linear-gradient(180deg, #152bf4 0%, #3951ed 8%, #aab4ef 100%);
  animation: floor-shape-grow-up var(--floor-blue-duration) linear var(--floor-shape-delay) both;
}

.market-band {
  position: relative;
  z-index: 1;
  height: var(--market-band-height);
  overflow: hidden;
  background: transparent;
}

.market-cap {
  position: absolute;
  top: 18px;
  left: 16px;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  animation: floor-metric-roll-up 620ms cubic-bezier(0.16, 0.82, 0.24, 1) var(--market-cap-roll-delay) both;
}

.market-cap strong {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 41px;
  line-height: 0.95;
  font-weight: 400;
  min-width: 124px;
  font-variant-numeric: tabular-nums;
}

.market-cap span,
.tax-note {
  font-size: 19px;
  line-height: 1.12;
  font-weight: 700;
}

.tax-note {
  position: absolute;
  right: 22px;
  top: 19px;
  z-index: 1;
  text-align: right;
  animation: floor-metric-roll-up 620ms cubic-bezier(0.16, 0.82, 0.24, 1) calc(var(--market-cap-roll-delay) + 80ms) both;
}

.tracked-token-badge {
  position: absolute;
  top: 18px;
  left: calc(50% - 128px);
  z-index: 1;
  display: flex;
  width: 256px;
  gap: 8px;
  color: var(--paper);
  animation: floor-metric-roll-up 620ms cubic-bezier(0.16, 0.82, 0.24, 1) calc(var(--market-cap-roll-delay) + 40ms) both;
}

.tracked-token-address,
.tracked-token-network {
  height: 39px;
  border: 1px solid rgba(244, 241, 231, 0.34);
  /* Neutral tint behind the Robinhood Chain lockup (was Base brand blue). */
  background: rgba(12, 15, 23, 0.55);
  backdrop-filter: blur(2px);
}

.tracked-token-address {
  display: grid;
  place-items: center;
  flex: 0 0 156px;
  min-width: 0;
  padding: 0 12px;
  color: inherit;
  cursor: pointer;
  transition: background 140ms ease, border-color 140ms ease, color 140ms ease;
}

.tracked-token-address strong {
  min-width: 0;
  font-family: "IBM Plex Mono", monospace;
  font-size: 13px;
  line-height: 1;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tracked-token-address:hover,
.tracked-token-address:focus-visible {
  color: #080808;
  background: var(--mint);
  border-color: var(--mint);
}

.tracked-token-network {
  flex: 0 0 92px;
  display: grid;
  place-items: center;
}

.tracked-token-network img {
  display: block;
  width: auto;
  height: 19px;
}

.floor-strip {
  position: relative;
  z-index: 2;
  height: var(--floor-strip-height);
  display: grid;
  grid-template-columns: 1fr 1.85fr;
  align-items: center;
  color: #050505;
  overflow: hidden;
  isolation: isolate;
  background: transparent;
}

.floor-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  transform-origin: 50% 100%;
  background: var(--mint);
  animation: floor-shape-grow-up var(--floor-green-duration) linear var(--floor-shape-delay) both;
}

.floor-strip > * {
  position: relative;
  z-index: 1;
}

.floor-strip h2 {
  margin: 0 0 0 16px;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 43px;
  line-height: 1;
  font-weight: 400;
  animation: floor-metric-roll-up 620ms cubic-bezier(0.16, 0.82, 0.24, 1) 660ms both;
}

.floor-strip dl {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(390px, 1.12fr);
  align-items: center;
  gap: 42px;
  margin: 0 24px 0 0;
}

.floor-strip dl div {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 19px;
  animation: floor-metric-roll-up 620ms cubic-bezier(0.16, 0.82, 0.24, 1) 740ms both;
}

.floor-strip dl div:nth-child(2) {
  animation-delay: 820ms;
}

.floor-strip dt,
.floor-strip dd {
  margin: 0;
}

.floor-strip dt {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 40px;
  line-height: 1;
  min-width: 132px;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.floor-strip .wall-street-clock {
  display: inline-flex;
  align-items: baseline;
  gap: 0.18em;
  min-width: 245px;
  white-space: nowrap;
}

.floor-strip dd {
  max-width: 166px;
  font-size: 19px;
  line-height: 1.1;
  font-weight: 700;
}

.portfolio-panel {
  position: relative;
  z-index: 3;
  height: 353px;
  padding: 18px 20px 19px;
  background: var(--paper);
  overflow: hidden;
  transform-origin: 50% 0;
  animation: floor-portfolio-paper-in var(--floor-blue-duration) linear var(--floor-shape-delay) both;
}

.portfolio-frame {
  height: 316px;
  border: 1.5px solid #202020;
  animation: floor-portfolio-frame-in 360ms cubic-bezier(0.16, 0.82, 0.24, 1) calc(var(--floor-shape-delay) + 80ms) both;
}

.portfolio-heading {
  height: 53px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 13px 0 15px;
  color: var(--paper);
  background: #202020;
  overflow: hidden;
  animation: floor-portfolio-heading-in 360ms cubic-bezier(0.18, 0.86, 0.28, 1) calc(var(--floor-shape-delay) + 120ms) both;
}

.portfolio-heading h2 {
  margin: 0;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 31px;
  line-height: 1;
  font-weight: 400;
  animation: floor-metric-roll-up 320ms cubic-bezier(0.16, 0.82, 0.24, 1) calc(var(--floor-shape-delay) + 180ms) both;
}

.hyperlink {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--paper);
  text-decoration: none;
  font-size: 18px;
  line-height: 1;
  animation: floor-metric-roll-up 320ms cubic-bezier(0.16, 0.82, 0.24, 1) calc(var(--floor-shape-delay) + 220ms) both;
}

.hyperlink img {
  width: 25px;
  height: 25px;
}

.portfolio-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  color: #202020;
  background: var(--paper);
}

.col-asset {
  width: 20%;
}

.col-venue {
  width: 22%;
}

.col-composition {
  width: 10%;
}

.col-percent {
  width: 7%;
}

.col-bar {
  width: 18%;
}

.col-notional {
  width: 12%;
}

.col-notional-label {
  width: 11%;
}

.portfolio-table caption {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.portfolio-table tbody tr {
  height: 65px;
  cursor: pointer;
}

.portfolio-table tbody tr:hover {
  background: rgba(0, 244, 123, 0.12);
}

.portfolio-table tbody tr.portfolio-skeleton-row {
  cursor: default;
}

.portfolio-table tbody tr.portfolio-skeleton-row:hover {
  background: transparent;
}

.portfolio-table tbody tr.portfolio-empty-row {
  height: 260px;
  cursor: default;
}

.portfolio-table tbody tr.portfolio-empty-row:hover {
  background: transparent;
}

.portfolio-empty-row td {
  text-align: center;
  font-size: 18px;
  line-height: 1;
  font-weight: 700;
}

.portfolio-table td {
  padding: 6px 7px;
  vertical-align: middle;
  opacity: 0;
  transform: translate3d(0, 9px, 0);
  animation: floor-portfolio-cell-in 320ms cubic-bezier(0.16, 0.82, 0.24, 1) var(--row-delay) both;
}

.portfolio-table td:nth-child(2) {
  animation-delay: calc(var(--row-delay) + 15ms);
}

.portfolio-table td:nth-child(3) {
  animation-delay: calc(var(--row-delay) + 30ms);
}

.portfolio-table td:nth-child(4) {
  animation-delay: calc(var(--row-delay) + 45ms);
}

.portfolio-table td:nth-child(5) {
  animation-delay: calc(var(--row-delay) + 60ms);
}

.portfolio-table td:nth-child(6),
.portfolio-table td:nth-child(7) {
  animation-delay: calc(var(--row-delay) + 80ms);
}

.skeleton-box {
  display: inline-block;
  overflow: hidden;
  border-radius: 4px;
  color: transparent;
  background: var(--skeleton-paper-base);
  background-image: linear-gradient(110deg, transparent 0%, transparent 34%, var(--skeleton-paper-highlight) 48%, transparent 62%, transparent 100%);
  background-size: 230% 100%;
  background-position: 140% 0;
  animation: floor-skeleton-shimmer 1.25s linear infinite;
}

.portfolio-table .skeleton-box {
  background-color: var(--skeleton-ink-base);
  background-image: linear-gradient(110deg, transparent 0%, transparent 34%, var(--skeleton-ink-highlight) 48%, transparent 62%, transparent 100%);
}

.metric-skeleton {
  width: var(--skeleton-width, 6ch);
  height: 0.78em;
  vertical-align: -0.08em;
}

.treasury-total.metric-skeleton,
.metric-card-value.metric-skeleton {
  display: block;
  height: 0.72em;
  vertical-align: baseline;
}

.floor-strip dt.metric-skeleton {
  display: block;
  min-width: 0;
}

.skeleton-asset {
  display: inline-grid;
  grid-template-columns: 40px minmax(82px, 1fr);
  align-items: center;
  gap: 17px;
  width: min(170px, 100%);
}

.skeleton-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.skeleton-line {
  height: 16px;
  width: var(--skeleton-width, 100%);
}

.skeleton-line-asset {
  --skeleton-width: 118px;
}

.skeleton-line-venue {
  --skeleton-width: 176px;
}

.skeleton-line-small {
  --skeleton-width: 82px;
  height: 28px;
}

.skeleton-line-percent {
  --skeleton-width: 54px;
  height: 28px;
}

.skeleton-bar {
  width: min(327px, 100%);
  height: 9px;
}

.skeleton-line-notional {
  --skeleton-width: 92px;
}

.skeleton-line-label {
  --skeleton-width: 62px;
  height: 28px;
}

.asset-link {
  display: inline-block;
  max-width: 100%;
  color: #202020;
  text-decoration: none;
  font-size: 18px;
  line-height: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.venue-cell {
  font-size: 15px;
  line-height: 1;
  white-space: nowrap;
}

.venue-cell img {
  width: 25px;
  height: 25px;
  margin-right: 8px;
  vertical-align: middle;
}

.composition-cell {
  font-size: 17px;
  line-height: 0.92;
  font-weight: 700;
}

.percent-cell {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 33px;
  line-height: 1;
  text-align: right;
  padding-right: 14px;
  font-variant-numeric: tabular-nums;
}

.bar-track {
  position: relative;
  height: 9px;
  width: min(327px, 100%);
  background: #2758aa;
  overflow: hidden;
}

.bar-track::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--bar-start, 45%);
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left center;
  animation: floor-portfolio-bar-fill 360ms cubic-bezier(0.16, 0.82, 0.24, 1) var(--bar-delay) both;
}

.notional-cell {
  padding-left: 8px;
  padding-right: 8px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 17px;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  text-align: right;
}

.notional-label-cell {
  padding-left: 8px;
  padding-right: 14px;
  font-size: 14px;
  line-height: 0.95;
  font-weight: 700;
  text-align: right;
  white-space: nowrap;
}

.performance-section {
  position: relative;
  height: 650px;
  width: var(--content-width);
  margin: 0 auto;
  padding-top: 48px;
}

.performance-copy h2 {
  margin: 0;
  font-size: 43px;
  line-height: 1.18;
  font-weight: 700;
  letter-spacing: 0;
}

.performance-note {
  position: absolute;
  top: 47px;
  right: 0;
  width: 360px;
  margin: 0;
  text-align: right;
  font-size: 19px;
  line-height: 1.3;
  font-weight: 500;
}

.line-chart {
  position: absolute;
  left: 0;
  right: 0;
  top: 145px;
  height: 350px;
  margin: 0;
  pointer-events: auto;
}

.line-chart.is-loading {
  pointer-events: none;
}

.line-chart.is-loading::before,
.line-chart.is-loading::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 6px;
}

.line-chart.is-loading::before {
  background:
    linear-gradient(90deg, rgba(215, 229, 214, 0.14), rgba(215, 229, 214, 0.14)) 0 93% / 100% 1px no-repeat,
    linear-gradient(90deg, rgba(215, 229, 214, 0.07), rgba(215, 229, 214, 0.07)) 4% 30% / 18% 12px no-repeat,
    linear-gradient(90deg, rgba(215, 229, 214, 0.07), rgba(215, 229, 214, 0.07)) 41% 52% / 22% 12px no-repeat,
    linear-gradient(90deg, rgba(215, 229, 214, 0.07), rgba(215, 229, 214, 0.07)) 78% 22% / 18% 12px no-repeat,
    linear-gradient(115deg, transparent 0 13%, rgba(215, 229, 214, 0.13) 13% 14.5%, transparent 14.5% 29%, rgba(215, 229, 214, 0.13) 29% 30.5%, transparent 30.5% 45%, rgba(215, 229, 214, 0.13) 45% 46.5%, transparent 46.5% 62%, rgba(215, 229, 214, 0.13) 62% 63.5%, transparent 63.5% 100%),
    rgba(215, 229, 214, 0.025);
}

.line-chart.is-loading::after {
  background: linear-gradient(110deg, transparent 0%, transparent 34%, rgba(215, 229, 216, 0.11) 48%, transparent 62%, transparent 100%);
  animation: floor-chart-shimmer 1.35s linear infinite;
  transform: translateX(-100%);
}

.line-chart.is-loading svg {
  visibility: hidden;
}

.line-chart svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.chart-line {
  fill: none;
  stroke: var(--paper);
  stroke-width: 3;
  stroke-linecap: butt;
  stroke-linejoin: miter;
  vector-effect: non-scaling-stroke;
}

.chart-line.is-negative {
  stroke: var(--red-line);
}

.chart-line.is-flat {
  opacity: 0.72;
}

.chart-hit-area {
  fill: transparent;
  pointer-events: all;
}

.chart-axis-line,
.chart-axis-tick line {
  stroke: rgba(220, 238, 216, 0.54);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.chart-axis-tick text {
  fill: var(--paper);
  font-family: "Instrument Sans", Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  opacity: 0.92;
  pointer-events: none;
}

.chart-hover {
  opacity: 0;
  pointer-events: none;
}

.chart-hover.is-visible {
  opacity: 1;
}

.chart-hover-line {
  stroke: rgba(247, 126, 0, 0.82);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.chart-hover-dot {
  fill: var(--orange);
  stroke: var(--paper);
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
}

.chart-tooltip-pointer {
  fill: var(--orange);
  stroke: var(--paper);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.chart-tooltip-box {
  fill: var(--orange);
  stroke: var(--paper);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.chart-tooltip-value,
.chart-tooltip-date {
  fill: #000;
  font-family: "Instrument Sans", Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
}

.chart-tooltip-date {
  font-size: 12px;
  font-weight: 600;
  opacity: 0.76;
}

.clock-row {
  position: absolute;
  left: 10px;
  bottom: 59px;
  display: grid;
  grid-template-columns: auto auto;
  align-items: baseline;
  gap: 176px;
}

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

.clock-row time {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 39px;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.clock-row em {
  font-style: italic;
}

.allocation-legend {
  position: absolute;
  right: 1px;
  bottom: 60px;
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
}

.allocation-legend::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -20px;
  height: 8px;
  background: var(--legend-gradient, linear-gradient(90deg, #00f47b 0 25%, #f47b00 25% 53%, #5a93ff 53% 76%, #ff4c4c 76% 100%));
}

.legend-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}

.legend-swatch {
  width: 9px;
  height: 9px;
  display: inline-block;
  background: var(--legend-color);
}

.legend-skeleton {
  color: inherit;
}

.legend-skeleton-swatch {
  width: 9px;
  height: 9px;
}

.legend-skeleton-label {
  height: 14px;
}

.metric-row {
  height: 185px;
  width: var(--content-width);
  margin: 14px auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  align-items: start;
}

.metric-card {
  position: relative;
  min-height: 142px;
  border: 6px solid var(--paper);
  padding: 13px 15px;
}

.metric-card h2 {
  margin: 0;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 31px;
  line-height: 1;
  font-weight: 400;
}

.metric-card-blue {
  background: var(--card-blue);
}

.metric-card-orange {
  color: #151515;
  background: var(--orange);
}

.metric-card-dark {
  background: #202020;
}

.metric-card-value {
  position: absolute;
  left: 15px;
  bottom: 16px;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 38px;
  line-height: 1;
}

.metric-delta {
  position: absolute;
  right: 16px;
  bottom: 20px;
  font-size: 16px;
  line-height: 1;
  font-weight: 500;
}

.burn-grid {
  margin: 24px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.burn-grid dt,
.burn-grid dd {
  margin: 0;
}

.burn-grid dt {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 39px;
  line-height: 0.92;
}

.burn-grid dd {
  font-size: 18px;
  line-height: 1;
}

.wallet-list {
  margin-top: 22px;
  display: grid;
  gap: 10px;
}

.wallet-item {
  display: grid;
  grid-template-columns: 25px minmax(0, 1fr) auto;
  align-items: center;
  column-gap: 7px;
  color: var(--paper);
  font-size: 17px;
  line-height: 1;
}

.wallet-item-no-icon {
  grid-template-columns: minmax(0, 1fr) auto;
}

.wallet-item img {
  width: 25px;
  height: 25px;
}

.wallet-item span {
  min-width: 0;
}

.wallet-copy {
  grid-column: 3;
  justify-self: end;
  max-width: 100%;
  border: 0;
  padding: 0 1px;
  color: inherit;
  background: transparent;
  cursor: pointer;
  text-align: right;
  font: inherit;
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  white-space: nowrap;
}

.wallet-item-no-icon .wallet-copy {
  grid-column: 2;
}

.how-section {
  height: 546px;
  width: var(--content-width);
  margin: 0 auto;
  padding: 16px 18px;
  color: #202020;
  background: var(--paper);
  scroll-margin-top: 34px;
  transform-origin: 50% 0;
}

.how-frame {
  height: 516px;
  border: 1.5px solid #202020;
  overflow: hidden;
}

.how-section.is-arriving {
  animation: floor-how-paper-arrive 720ms cubic-bezier(0.16, 0.82, 0.24, 1) both;
}

.how-section.is-arriving .how-frame {
  animation: floor-how-frame-arrive 620ms cubic-bezier(0.16, 0.82, 0.24, 1) 70ms both;
}

.how-frame > h2 {
  height: 53px;
  margin: 0;
  padding: 9px 10px 0;
  color: var(--paper);
  background: #202020;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 32px;
  line-height: 1;
  font-weight: 400;
}

.how-section.is-arriving .how-frame > h2 {
  animation: floor-how-heading-arrive 540ms cubic-bezier(0.16, 0.82, 0.24, 1) 120ms both;
}

.how-body {
  height: 463px;
  display: grid;
  grid-template-columns: 344px minmax(0, 619px) minmax(320px, 1fr);
  align-items: stretch;
}

.how-steps {
  margin: 0;
  padding: 0 0 0 23px;
  list-style: none;
  display: grid;
  grid-template-rows: repeat(3, 1fr);
}

.how-steps li {
  position: relative;
  padding-top: 17px;
}

.how-section.is-arriving .how-steps li,
.how-section.is-arriving .how-illustration,
.how-section.is-arriving .key-stats::before,
.how-section.is-arriving .key-stats div {
  animation: floor-how-item-arrive 560ms cubic-bezier(0.16, 0.82, 0.24, 1) both;
}

.how-section.is-arriving .how-steps li:nth-child(1) {
  animation-delay: 220ms;
}

.how-section.is-arriving .how-steps li:nth-child(2) {
  animation-delay: 285ms;
}

.how-section.is-arriving .how-steps li:nth-child(3) {
  animation-delay: 350ms;
}

.how-section.is-arriving .how-illustration {
  animation-delay: 280ms;
}

.how-section.is-arriving .key-stats::before {
  animation-delay: 340ms;
}

.how-section.is-arriving .key-stats div:nth-child(1) {
  animation-delay: 390ms;
}

.how-section.is-arriving .key-stats div:nth-child(2) {
  animation-delay: 430ms;
}

.how-section.is-arriving .key-stats div:nth-child(3) {
  animation-delay: 470ms;
}

.how-section.is-arriving .key-stats div:nth-child(4) {
  animation-delay: 510ms;
}

.how-section.is-arriving .key-stats div:nth-child(5) {
  animation-delay: 550ms;
}

.how-steps li::after {
  content: none;
}

.how-steps strong {
  display: block;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 29px;
  line-height: 1;
  font-weight: 400;
}

.how-steps span {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  line-height: 1.14;
  font-weight: 700;
}

.how-illustration {
  width: 100%;
  max-width: 619px;
  height: 464px;
  object-fit: cover;
}

.how-slideshow {
  position: relative;
  overflow: hidden;
  /* Match the section paper so any letterbox blends in instead of showing dark bars. */
  background: var(--paper);
}

.how-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  /* Full step slides carry borders and edge labels — never crop them. */
  object-fit: contain;
  opacity: 0;
  transition: opacity 900ms ease;
}

.how-slide.is-active {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .how-slide {
    transition: none;
  }
}

.key-stats {
  margin: 0;
  padding: 17px 14px 18px;
  display: grid;
  grid-template-rows: auto repeat(5, minmax(0, 1fr));
  background: var(--paper);
}

.key-stats::before {
  content: "Key Stats";
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 31px;
  line-height: 1;
}

.key-stats div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
  min-height: 0;
}

.key-stats dt,
.key-stats dd {
  margin: 0;
  text-align: left;
}

.key-stats dt {
  font-size: 13px;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.key-stats dd {
  font-size: 16px;
  line-height: 1.15;
  font-weight: 500;
}

.market-shot-section {
  height: 758px;
  width: var(--content-width);
  margin: 0 auto;
  padding-top: 26px;
}

.market-chart-frame {
  position: relative;
  display: block;
  margin: 0;
  height: 732px;
  overflow: hidden;
  background: #111827;
}

.market-chart-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #111827;
}

.bottom-section {
  width: var(--content-width);
  margin: 0 auto;
  padding: 26px 0 28px;
}

.bottom-grid {
  display: grid;
  grid-template-columns: 437px minmax(0, 1fr);
  gap: 30px;
  align-items: start;
}

.floor-photo {
  position: relative;
  margin: 0;
  width: 437px;
  height: 546px;
  overflow: hidden;
}

.floor-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floor-photo figcaption {
  position: absolute;
  left: 31px;
  top: 254px;
  color: var(--paper);
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 74px;
  line-height: 1;
  pointer-events: none;
}

.portal-preview {
  position: relative;
  min-height: 539px;
  border: 6px solid var(--paper);
  background: #000;
  overflow: hidden;
}

.portal-preview-overview {
  min-height: 527px;
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr) auto;
  gap: 18px;
  padding: 26px 30px 28px;
  color: var(--paper);
}

.portal-preview-overview h2 {
  margin: 0;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 45px;
  line-height: 0.96;
  font-weight: 400;
}

.portal-preview-overview p {
  max-width: 780px;
  margin: 0;
  font-size: 18px;
  line-height: 1.28;
  font-weight: 400;
}

.portal-overview-grid {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 22px;
  align-content: start;
}

.portal-overview-grid div {
  min-height: 139px;
  border-top: 2px solid var(--mint);
  background: rgba(215, 229, 214, 0.045);
  padding: 12px 12px 10px;
}

.portal-overview-grid dt,
.portal-overview-grid dd {
  margin: 0;
}

.portal-overview-grid dt {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 30px;
  line-height: 1;
}

.portal-overview-grid dd {
  margin-top: 8px;
  color: rgba(215, 229, 214, 0.88);
  font-size: 14px;
  line-height: 1.22;
  font-weight: 400;
}

.portal-preview-overview .portal-risk-note {
  max-width: none;
  color: rgba(215, 229, 214, 0.78);
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  line-height: 1.45;
}

.portal-preview-inner {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(370px, 52%);
  min-height: 154px;
  display: grid;
  align-content: end;
  justify-items: end;
  gap: 14px;
  padding: 24px;
  opacity: 0;
  background: #000;
  transition: opacity 160ms ease;
}

.portal-preview:hover .portal-preview-inner,
.portal-preview:focus-within .portal-preview-inner {
  opacity: 1;
}

.portal-preview-title {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 31px;
}

.portal-preview-action,
.redeem-action {
  color: #080808;
  background: var(--paper);
  border: 1px solid var(--paper);
  padding: 11px 16px;
  cursor: pointer;
}

.redeem-action[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Wallet / window status line in the redeem modal (on-chain portal). */
.redeem-status {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 10px 12px;
  font-size: 14px;
  border: 1px solid rgba(215, 229, 214, 0.35);
  background: #000;
}

.redeem-status-dot {
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(215, 229, 214, 0.5);
}

.redeem-status[data-state="connected"] .redeem-status-dot,
.redeem-status[data-state="done"] .redeem-status-dot {
  background: var(--mint);
}

.redeem-status[data-state="connecting"] .redeem-status-dot {
  background: var(--orange);
}

.redeem-status[data-state="wrongChain"] .redeem-status-dot,
.redeem-status[data-state="closed"] .redeem-status-dot {
  background: var(--red-line);
}

.redeem-status-text a {
  color: var(--mint);
}

.redeem-amount-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.redeem-slider {
  flex: 1 1 auto;
  height: 4px;
  accent-color: var(--mint);
  cursor: pointer;
}

.redeem-slider:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.redeem-max {
  flex: 0 0 auto;
  padding: 7px 14px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--paper);
  background: #000;
  border: 1px solid var(--paper);
  cursor: pointer;
}

.redeem-max:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.redeem-balance {
  margin: 0 0 16px;
  font-size: 13px;
  color: rgba(215, 229, 214, 0.75);
}

.redeem-reason {
  margin: 0 0 16px;
  padding: 9px 12px;
  font-size: 14px;
  color: #ffd7d7;
  border: 1px solid var(--red-line);
  background: rgba(225, 0, 60, 0.12);
}

.redeem-note {
  margin: 14px 0 0;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(215, 229, 214, 0.6);
}

.redeem-contract {
  margin: 10px 0 0;
  font-size: 12px;
  color: rgba(215, 229, 214, 0.55);
}

.redeem-contract a {
  color: var(--mint);
  font-family: "IBM Plex Mono", monospace;
}

/* "Redemptions not open yet" popup with a live countdown to the next 4:30 PM ET window. */
.redemption-closed-modal {
  width: min(520px, calc(100vw - 28px));
  padding: 0;
  color: var(--paper);
  background: #111;
  border: 4px solid var(--paper);
}

.redemption-closed-modal::backdrop {
  background: rgba(8, 2, 18, 0.78);
}

.redemption-closed-lead {
  margin: 0 0 22px;
  font-size: 16px;
  line-height: 1.5;
}

.countdown {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
  margin: 0 0 16px;
}

.countdown-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 84px;
  padding: 16px 8px;
  border: 1px solid rgba(215, 229, 214, 0.4);
  background: #000;
}

.countdown-value {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 52px;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.countdown-label {
  margin-top: 8px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(215, 229, 214, 0.6);
}

.countdown-sep {
  align-self: center;
  padding-top: 6px;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 40px;
  line-height: 1;
  color: rgba(215, 229, 214, 0.5);
}

.redemption-closed-target {
  margin: 0 0 20px;
  font-size: 14px;
  text-align: center;
  color: var(--mint);
}

.redemption-closed-note {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(215, 229, 214, 0.65);
}

.copy-status {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 30;
  transform: translateX(-50%) translateY(140%);
  min-width: 160px;
  padding: 10px 14px;
  color: #080808;
  background: var(--mint);
  text-align: center;
  visibility: hidden;
  transition: transform 160ms ease;
}

.copy-status.is-visible {
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.redemption-modal {
  width: min(520px, calc(100vw - 28px));
  padding: 0;
  color: var(--paper);
  background: #111;
  border: 4px solid var(--paper);
}

.rules-modal {
  width: min(980px, calc(100vw - 28px));
  max-height: min(900px, calc(100vh - 28px));
  padding: 0;
  color: var(--paper);
  background: #111;
  border: 4px solid var(--paper);
}

.redemption-modal::backdrop,
.rules-modal::backdrop {
  background: rgba(8, 2, 18, 0.78);
}

.modal-card {
  padding: 20px;
}

.rules-card {
  display: flex;
  flex-direction: column;
  max-height: calc(min(900px, 100vh - 28px) - 8px);
  padding: 24px 28px 28px;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 20px;
  margin-bottom: 28px;
}

.modal-header h2 {
  margin: 0;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 38px;
  line-height: 1;
  font-weight: 400;
}

.modal-header button {
  color: #080808;
  background: var(--paper);
  border: 1px solid var(--paper);
  padding: 8px 12px;
  cursor: pointer;
}

.field-label {
  display: block;
  margin-bottom: 8px;
  font-size: 15px;
  font-weight: 700;
}

#redeemAmount {
  width: 100%;
  height: 48px;
  margin-bottom: 18px;
  border: 1px solid var(--paper);
  color: var(--paper);
  background: #000;
  padding: 8px 12px;
}

.estimate-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 0 0 20px;
}

.estimate-grid div {
  border: 1px solid rgba(215, 229, 214, 0.5);
  padding: 12px;
}

.estimate-grid dt,
.estimate-grid dd {
  margin: 0;
}

.estimate-grid dt {
  font-size: 14px;
}

.estimate-grid dd {
  margin-top: 10px;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 30px;
}

.rules-document {
  min-height: 0;
  overflow-y: auto;
  padding: 0 16px 4px 0;
  font-size: 17px;
  line-height: 1.46;
}

.rules-document section {
  padding: 21px 0 24px;
  border-top: 1px solid rgba(215, 229, 214, 0.35);
}

.rules-document section:first-child {
  padding-top: 0;
  border-top: 0;
}

.rules-document h3 {
  margin: 0 0 13px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 18px;
  line-height: 1.1;
  font-weight: 500;
  text-transform: uppercase;
}

.rules-document p {
  margin: 0 0 14px;
}

.rules-document p:last-child,
.rules-document ul:last-child,
.rules-document ol:last-child {
  margin-bottom: 0;
}

.rules-document ul,
.rules-document ol {
  margin: 0 0 14px;
  padding-left: 24px;
}

.rules-document li {
  margin: 5px 0;
}

.rule-formula {
  padding: 14px 16px;
  color: #080808;
  background: var(--paper);
  font-size: 20px;
  line-height: 1.15;
}

.rule-closing {
  color: var(--mint);
  font-size: 20px;
}

@keyframes floor-shape-grow-up {
  from {
    opacity: 0.78;
    transform: scaleY(0);
  }

  to {
    opacity: 1;
    transform: scaleY(1);
  }
}

@keyframes floor-metric-roll-up {
  from {
    opacity: 0;
    transform: translate3d(0, 24px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes floor-portfolio-paper-in {
  from {
    opacity: 0;
    clip-path: inset(0 0 100% 0);
    transform: translate3d(0, 16px, 0);
  }

  55% {
    opacity: 1;
  }

  to {
    opacity: 1;
    clip-path: inset(0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes floor-portfolio-frame-in {
  from {
    opacity: 0;
    transform: translate3d(0, 8px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes floor-portfolio-heading-in {
  from {
    opacity: 0;
    transform: translate3d(0, 6px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes floor-portfolio-cell-in {
  from {
    opacity: 0;
    transform: translate3d(0, 9px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes floor-portfolio-bar-fill {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

@keyframes floor-skeleton-shimmer {
  from {
    background-position: 140% 0;
  }

  to {
    background-position: -80% 0;
  }
}

@keyframes floor-chart-shimmer {
  from {
    transform: translateX(-100%);
  }

  to {
    transform: translateX(100%);
  }
}

@keyframes floor-how-paper-arrive {
  from {
    opacity: 0.88;
    transform: translate3d(0, 18px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes floor-how-frame-arrive {
  from {
    opacity: 0.72;
    clip-path: inset(0 0 100% 0);
  }

  to {
    opacity: 1;
    clip-path: inset(0);
  }
}

@keyframes floor-how-heading-arrive {
  from {
    opacity: 0;
    transform: translate3d(0, 7px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes floor-how-item-arrive {
  from {
    opacity: 0;
    transform: translate3d(0, 12px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .treasury-hero h2,
  .treasury-total,
  .notional-ticker,
  .floor-module::before,
  .market-cap,
  .tax-note,
  .floor-strip::before,
  .floor-strip h2,
  .floor-strip dl div,
  .portfolio-panel,
  .portfolio-frame,
  .portfolio-heading,
  .portfolio-heading h2,
  .hyperlink,
  .portfolio-table td,
  .bar-track::before,
  .how-section,
  .how-section .how-frame,
  .how-section .how-frame > h2,
  .how-section .how-steps li,
  .how-section .how-illustration,
  .how-section .key-stats::before,
  .how-section .key-stats div,
  .skeleton-box,
  .line-chart.is-loading::after {
    animation: none;
  }

  .portfolio-table td,
  .how-section,
  .how-section .how-frame,
  .how-section .how-frame > h2,
  .how-section .how-steps li,
  .how-section .how-illustration,
  .how-section .key-stats::before,
  .how-section .key-stats div {
    opacity: 1;
    transform: none;
    clip-path: none;
  }

  .bar-track::before {
    transform: scaleX(1);
  }
}

@media (max-width: 1200px) {
  :root {
    --content-width: calc(100vw - 36px);
    --content-pad: 18px;
  }

  .primary-nav {
    gap: 28px;
  }

  .portal-button {
    min-width: 220px;
  }

  .treasury-total {
    margin-right: 185px;
  }

  .floor-strip dl {
    gap: 34px;
  }

  .portfolio-table {
    table-layout: auto;
  }

  .bar-track {
    width: 250px;
  }

  .how-body {
    grid-template-columns: 300px minmax(420px, 1fr) 260px;
  }

  .how-illustration {
    width: 100%;
  }
}

@media (max-width: 1100px) {
  .hero-section {
    height: auto;
    padding-bottom: 30px;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .treasury-hero {
    justify-items: start;
  }

  .treasury-hero h2 {
    margin-bottom: 20px;
    max-width: 100%;
    text-align: left;
    font-size: 34px;
  }

  .treasury-total {
    margin-right: 0;
    font-size: 76px;
    text-align: left;
  }

  .notional-ticker {
    position: static;
    width: auto;
    margin-top: 12px;
    text-align: left;
    gap: 6px;
  }

  .floor-module {
    height: auto;
  }

  .portfolio-panel {
    height: auto;
    padding: 12px;
  }

  .portfolio-frame {
    height: auto;
  }

  .portfolio-heading {
    height: auto;
    min-height: 54px;
    padding: 12px;
    align-items: flex-start;
    gap: 12px;
  }

  .portfolio-heading h2 {
    font-size: 29px;
  }

  .portfolio-table,
  .portfolio-table colgroup,
  .portfolio-table tbody,
  .portfolio-table tr,
  .portfolio-table td {
    display: block;
    width: 100%;
  }

  .portfolio-table tbody tr {
    height: auto;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px 14px;
    padding: 12px;
    border-top: 1px solid rgba(32, 32, 32, 0.35);
  }

  .portfolio-table td {
    padding: 0;
  }

  .asset-cell,
  .composition-cell,
  .percent-cell,
  .bar-cell {
    grid-column: 1 / -1;
  }

  .venue-cell {
    white-space: normal;
    font-size: 14px;
  }

  .bar-track {
    width: 100%;
  }

  .notional-cell,
  .notional-label-cell {
    text-align: left;
  }

  .notional-label-cell {
    white-space: normal;
  }
}

@media (max-width: 900px) {
  body {
    overflow-x: hidden;
  }

  .site-header {
    height: auto;
  }

  .header-inner {
    min-height: 104px;
    padding: 20px 0 16px;
    flex-direction: column;
    gap: 18px;
  }

  .brand {
    gap: 16px;
  }

  .brand-symbol {
    font-size: 34px;
  }

  .brand-name {
    font-size: 35px;
  }

  .primary-nav {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    font-size: 14px;
  }

  .primary-nav a,
  .nav-button,
  .portal-button {
    min-width: 0;
    min-height: 40px;
    padding: 12px 10px;
    text-align: center;
    border: 1px solid rgba(215, 229, 214, 0.45);
  }

  .portal-button {
    grid-column: 1 / -1;
    background: var(--paper);
  }

  .hero-section,
  .floor-module,
  .performance-section,
  .metric-row,
  .how-section,
  .market-shot-section,
  .bottom-section {
    height: auto;
    min-height: 0;
  }

  .floor-module {
    --market-band-height: 170px;
    --floor-strip-height: 220px;
    --floor-blue-duration: 460ms;
    --market-cap-roll-delay: 690ms;
  }

  .hero-section {
    padding-top: 28px;
    padding-bottom: 26px;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-copy h1 {
    margin-bottom: 22px;
    font-size: 34px;
    line-height: 1.04;
  }

  .hero-copy p {
    font-size: 17px;
    line-height: 1.3;
  }

  .treasury-hero {
    justify-items: start;
  }

  .treasury-hero h2 {
    font-size: 32px;
  }

  .treasury-total {
    margin: 0;
    font-size: 68px;
  }

  .notional-ticker {
    position: static;
    width: auto;
    margin-top: 12px;
    text-align: left;
    gap: 6px;
  }

  .market-band {
    height: var(--market-band-height);
  }

  .floor-strip {
    height: auto;
    min-height: var(--floor-strip-height);
    grid-template-columns: 1fr;
    align-content: center;
    gap: 18px;
    padding: 22px 16px;
  }

  .floor-strip h2 {
    margin: 0;
  }

  .floor-strip dl {
    margin: 0;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .floor-strip dl div {
    justify-content: space-between;
    gap: 18px;
  }

  .portfolio-panel {
    height: auto;
    padding: 12px;
  }

  .portfolio-frame {
    height: auto;
  }

  .portfolio-heading {
    height: auto;
    min-height: 54px;
    padding: 12px;
    align-items: flex-start;
    gap: 12px;
  }

  .portfolio-heading h2 {
    font-size: 27px;
  }

  .hyperlink {
    font-size: 15px;
    white-space: nowrap;
  }

  .portfolio-table,
  .portfolio-table colgroup,
  .portfolio-table tbody,
  .portfolio-table tr,
  .portfolio-table td {
    display: block;
    width: 100%;
  }

  .portfolio-table tbody tr {
    height: auto;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px 14px;
    padding: 12px;
    border-top: 1px solid rgba(32, 32, 32, 0.35);
  }

  .portfolio-table td {
    padding: 0;
  }

  .asset-cell {
    grid-column: 1 / -1;
  }

  .venue-cell {
    white-space: normal;
    font-size: 14px;
  }

  .composition-cell,
  .percent-cell,
  .bar-cell {
    grid-column: 1 / -1;
  }

  .bar-track {
    width: 100%;
  }

  .notional-cell,
  .notional-label-cell {
    text-align: left;
  }

  .notional-label-cell {
    white-space: normal;
  }

  .performance-section {
    padding: 34px 0 32px;
  }

  .performance-copy h2 {
    font-size: 34px;
  }

  .performance-note {
    position: static;
    width: auto;
    margin-top: 24px;
    text-align: left;
    font-size: 17px;
  }

  .line-chart {
    position: static;
    height: auto;
    aspect-ratio: 1.85 / 1;
    margin-top: 34px;
  }

  .clock-row,
  .allocation-legend {
    position: static;
  }

  .clock-row {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 22px;
  }

  .allocation-legend {
    flex-wrap: wrap;
    margin-top: 42px;
  }

  .metric-row {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-bottom: 28px;
  }

  .metric-card {
    min-height: 142px;
  }

  .how-section {
    padding: 12px;
  }

  .how-frame {
    height: auto;
  }

  .how-frame > h2 {
    height: auto;
    min-height: 53px;
  }

  .how-body {
    height: auto;
    grid-template-columns: 1fr;
  }

  .how-steps {
    padding: 10px 16px;
    gap: 18px;
  }

  .how-steps li {
    padding-top: 0;
  }

  .how-steps li::after {
    display: none;
  }

  .how-illustration {
    width: 100%;
    height: auto;
    aspect-ratio: 619 / 464;
  }

  .key-stats {
    grid-template-rows: none;
    gap: 16px;
    padding: 16px;
  }

  .market-shot-section {
    padding-top: 24px;
  }

  .market-chart-frame {
    height: auto;
    aspect-ratio: 1.55 / 1;
  }

  .bottom-section {
    padding-top: 24px;
    padding-bottom: 80px;
  }

  .bottom-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .floor-photo {
    width: min(437px, 100%);
    height: auto;
    aspect-ratio: 437 / 546;
  }

  .portal-preview {
    min-height: 340px;
  }

  .portal-preview-overview {
    min-height: 328px;
    padding: 20px 18px 150px;
    gap: 14px;
  }

  .portal-preview-overview h2 {
    font-size: 35px;
  }

  .portal-preview-overview p {
    font-size: 16px;
  }

  .portal-overview-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .portal-overview-grid div {
    min-height: 0;
    padding: 9px 10px 8px;
  }

  .portal-overview-grid dt {
    font-size: 27px;
  }

  .portal-overview-grid dd {
    font-size: 13px;
  }

  .portal-preview-inner {
    width: 100%;
    min-height: 132px;
    opacity: 1;
  }
}

@media (max-width: 460px) {
  :root {
    --content-width: calc(100vw - 24px);
    --content-pad: 12px;
  }

  .hero-copy h1 {
    font-size: 30px;
  }

  .landing-content {
    width: calc(100vw - 40px);
    gap: 26px;
  }

  .intro-title {
    font-size: 68px;
  }

  .intro-action {
    min-height: 44px;
    font-size: 15px;
    padding-inline: 10px;
  }

  .landing-disclaimer {
    left: 12px;
    right: 12px;
    bottom: 10px;
    font-size: 10px;
    line-height: 1.32;
  }

  .treasury-hero h2 {
    font-size: 29px;
  }

  .treasury-total {
    font-size: 56px;
  }

  .market-cap {
    top: 12px;
    left: 12px;
    right: 12px;
    flex-direction: column;
    gap: 3px;
  }

  .market-cap strong {
    font-size: 38px;
  }

  .market-cap span,
  .tax-note {
    font-size: 16px;
    line-height: 1.1;
  }

  .tracked-token-badge {
    top: 92px;
    left: calc(50% - 105px);
    width: 210px;
    gap: 6px;
  }

  .tracked-token-address,
  .tracked-token-network {
    height: 28px;
  }

  .tracked-token-address {
    flex-basis: 132px;
    padding: 0 9px;
  }

  .tracked-token-address strong {
    font-size: 11px;
  }

  .tracked-token-network {
    flex-basis: 72px;
  }

  .tracked-token-network img {
    height: 14px;
  }

  .tax-note {
    right: 12px;
    bottom: 10px;
    top: auto;
  }

  .floor-strip dt {
    font-size: 35px;
  }

  .floor-strip dd {
    font-size: 16px;
  }

  .portfolio-heading {
    flex-direction: column;
  }

  .asset-link {
    gap: 12px;
    font-size: 17px;
  }

  .clock-row time {
    font-size: 35px;
  }

  .metric-card h2 {
    font-size: 29px;
  }

  .burn-grid {
    gap: 12px;
  }

  .wallet-item {
    grid-template-columns: 25px minmax(0, 1fr) auto;
  }

  .wallet-item-no-icon {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .wallet-copy {
    grid-column: 3;
    justify-self: end;
  }

  .wallet-item-no-icon .wallet-copy {
    grid-column: 2;
  }
}

@media (max-width: 330px) {
  .floor-module {
    --floor-strip-height: 244px;
    --floor-blue-duration: 480ms;
    --market-cap-roll-delay: 710ms;
  }
}
