/* ================================================================
   RWAEX v3 — Strict Wireframe Build
   Palette: #0C0C0C dark · #F4F0E8 cream · #3B82F6 blue
   Fonts: Inter (body) · Inter 600 (headings/logo)
================================================================ */

[hidden] {
  display: none !important;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Dark surfaces */
  --dk: #0C0C0C;
  --dk-1: #111111;
  --dk-2: #181818;
  --dk-3: #222222;
  /* Cream surfaces */
  --cr: #F4F0E8;
  --cr-2: #EBE6DA;
  /* Text */
  --tw: #F0EDE7;
  /* white-ish on dark */
  --tw-2: #D1D1D1;
  --tw-3: #949494;
  --tb: #0C0C0C;
  /* black-ish on cream */
  --tb-2: #444444;
  /* Accent */
  --blue: #3B82F6;
  --blue-dim: rgba(59, 130, 246, .12);
  --blue-mid: rgba(59, 130, 246, .28);
  /* Borders */
  --bd-w: rgba(255, 255, 255, .08);
  /* on dark */
  --bd-b: rgba(0, 0, 0, .10);
  /* on cream */
  /* Radii */
  --r: 10px;
  --r-lg: 18px;
  /* Easing */
  --ease: cubic-bezier(.4, 0, .2, 1);
  --ease-spring: cubic-bezier(.22, 1, .36, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--dk);
  color: var(--tw);
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

/* shared container */
.container {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ── SCROLL REVEAL ── */
.ru {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity .7s var(--ease-spring) var(--d, 0s),
    transform .7s var(--ease-spring) var(--d, 0s);
}

.ru.vis {
  opacity: 1;
  transform: translateY(0);
}

/* ── ANIMATIONS ── */
@keyframes pulse {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .35
  }
}

@keyframes progFill {
  from {
    transform: scaleX(0)
  }

  to {
    transform: scaleX(1)
  }
}

/* ─────────────────────────────────────
   NAV
───────────────────────────────────── */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 200;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .35s var(--ease), backdrop-filter .35s var(--ease), border-color .35s var(--ease);
}

.nav.scrolled {
  background: rgba(12, 12, 12, .88);
  backdrop-filter: blur(18px) saturate(1.3);
  border-bottom-color: var(--bd-w);
}

.nav-inner {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 40px;
  height: 60px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-logo {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: var(--tw);
  letter-spacing: -.02em;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  flex: 1;
  gap: 2px;
}

.nav-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--tw-2);
  padding: 6px 12px;
  border-radius: 6px;
  transition: color .16s, background .16s;
}

.nav-link:hover {
  color: var(--tw);
  background: rgba(255, 255, 255, .06);
}

.btn-contact {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, .75);
  padding: 7px 16px;
  border-radius: var(--r);
  border: 1px solid rgba(255, 255, 255, .24);
  flex-shrink: 0;
  transition: color .16s, border-color .16s, background .16s;
}

.btn-contact:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, .44);
  background: rgba(255, 255, 255, .07);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--tw);
  border-radius: 2px;
  transition: .3s var(--ease);
}

.hamburger.open span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.hamburger.open span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 60px;
  inset-inline: 0;
  z-index: 199;
  background: rgba(12, 12, 12, .97);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--bd-w);
  padding: 14px 24px 22px;
  transform: translateY(calc(-100% - 62px));
  visibility: hidden;
  transition: transform .3s var(--ease), visibility .3s;
}

.mobile-nav.open {
  transform: translateY(0);
  visibility: visible;
}

.mobile-nav a {
  font-size: 15px;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid var(--bd-w);
  color: var(--tw-2);
}

.mobile-nav .m-cta {
  margin-top: 12px;
  background: var(--blue);
  color: #fff;
  text-align: center;
  border-radius: var(--r);
  border: none;
  padding: 13px;
  font-weight: 600;
}

/* ── SHARED BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  background: var(--blue);
  color: #fff;
  padding: 12px 24px;
  border-radius: var(--r);
  border: none;
  cursor: pointer;
  transition: opacity .16s, transform .16s, box-shadow .16s;
}

.btn-primary:hover {
  opacity: .88;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(59, 130, 246, .32);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--tw-2);
  padding: 12px 20px;
  border-radius: var(--r);
  border: 1px solid var(--bd-w);
  transition: color .16s, border-color .16s, background .16s;
}

.btn-ghost:hover {
  color: var(--tw);
  border-color: rgba(255, 255, 255, .2);
  background: rgba(255, 255, 255, .05);
}

/* ─────────────────────────────────────
   SECTION 1 · HERO
───────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: .75;
  filter: saturate(.85) brightness(.86);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to right,
      rgba(6, 8, 14, .68) 0%,
      rgba(6, 8, 14, .28) 55%,
      rgba(6, 8, 14, .0) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding-bottom: 100px;
  padding-top: 0;
  width: 100%;
}

.hero-content {
  max-width: 520px;
}

.hero-title {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: clamp(36px, 4.8vw, 68px);
  line-height: 1.05;
  letter-spacing: -.04em;
  color: #fff;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: clamp(13px, 1.3vw, 15px);
  color: rgba(255, 255, 255, 0.803);
  line-height: 1.75;
  max-width: 360px;
  margin-bottom: 32px;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-hero-ghost {
  display: inline-flex;
  align-items: center;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, .82);
  padding: 9px 22px;
  border-radius: var(--r);
  border: 1px solid rgba(255, 255, 255, .28);
  background: rgba(255, 255, 255, .07);
  backdrop-filter: blur(6px);
  transition: color .16s, border-color .16s, background .16s;
}

.btn-hero-ghost:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, .5);
  background: rgba(255, 255, 255, .14);
}

/* ─────────────────────────────────────
   SECTION 2 · THE GLOBAL RWA HUB
───────────────────────────────────── */
.hub-section {
  background: var(--dk-1);
  padding: 100px 0;
  border-top: 1px solid var(--bd-w);
}

.hub-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.hub-title {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: clamp(30px, 3.5vw, 46px);
  line-height: 1.1;
  letter-spacing: -.03em;
  color: var(--tw);
  margin-bottom: 16px;
}

.hub-kicker {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--blue);
  margin-bottom: 20px;
}

.hub-desc {
  font-size: 15px;
  color: var(--tw-2);
  line-height: 1.75;
  max-width: 340px;
}

/* Feature Cards */
.hub-right {
  display: flex;
  flex-direction: column;
}

.feat-card {
  border-top: 1px solid var(--bd-w);
}

.feat-card:last-child {
  border-bottom: 1px solid var(--bd-w);
}

.feat-prog-wrap {
  height: 2px;
  background: var(--bd-w);
  overflow: hidden;
}

.feat-prog-bar {
  height: 100%;
  width: 100%;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
}

.feat-card--active .feat-prog-bar {
  animation: progFill 15s linear forwards;
}

.feat-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--tw);
}

.feat-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid;
  transition: background .2s, border-color .2s;
}

.feat-check svg {
  width: 14px;
  height: 14px;
  transition: transform .3s var(--ease);
}

.feat-card--active .feat-check svg {
  transform: scale(1.1);
}

.hub-icon-1 {
  border-color: rgba(59, 130, 246, .5);
  color: var(--blue);
}

.hub-icon-2 {
  filter: hue-rotate(100deg);
  border-color: rgba(59, 130, 246, .5);
  color: var(--blue);
}

.hub-icon-3 {
  filter: hue-rotate(240deg);
  border-color: rgba(59, 130, 246, .5);
  color: var(--blue);
}

.hub-icon-4 {
  filter: hue-rotate(45deg);
  border-color: rgba(59, 130, 246, .5);
  color: var(--blue);
}

.feat-card--active .hub-icon-1,
.feat-card--active .hub-icon-2,
.feat-card--active .hub-icon-3,
.feat-card--active .hub-icon-4 {
  background: var(--blue-dim);
  border-color: var(--blue-mid);
}

.feat-name {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  flex: 1;
  color: var(--tw-2);
  transition: color .2s;
}

.feat-card--active .feat-name {
  color: var(--tw);
}

.feat-arrow {
  color: var(--tw-3);
  flex-shrink: 0;
  transition: transform .25s var(--ease);
}

.feat-card--active .feat-arrow {
  transform: rotate(180deg);
}

.feat-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height .38s var(--ease-spring), padding .25s;
}

.feat-body p {
  font-size: 14px;
  color: var(--tw-2);
  line-height: 1.78;
  padding-bottom: 22px;
}

.feat-card--active .feat-body {
  max-height: 160px;
}

/* ─────────────────────────────────────
   SECTION 3 · STATS (cream)
───────────────────────────────────── */
.stats-section {
  background: var(--cr);
  padding: 100px 0;
}

.stats-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--tw-3);
  margin-bottom: 48px;
}

.stats-row {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-bottom: 56px;
  border-bottom: 1px solid var(--bd-b);
  padding-bottom: 48px;
}

.stat-block {
  flex: 1;
  padding-right: 40px;
}

.stat-num {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 1;
  letter-spacing: -.04em;
  color: var(--tb);
  margin-bottom: 8px;
}

.stat-lbl {
  display: block;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--tw-3);
}

.stat-divider {
  width: 1px;
  background: var(--bd-b);
  flex-shrink: 0;
  margin: 0 40px 0 0;
}

/* ── Pie Chart Component ── */
.pie-wrap {
  margin-top: 4px;
}

.pie-intro {
  font-size: 13px;
  color: var(--tw-3);
  text-transform: uppercase;
  letter-spacing: .10em;
  font-weight: 600;
  margin-bottom: 32px;
}

.pie-layout {
  display: flex;
  align-items: center;
  gap: 52px;
  flex-wrap: wrap;
}

.pie-chart-wrap {
  position: relative;
  flex-shrink: 0;
  width: 240px;
  height: 240px;
}

#pie-svg {
  display: block;
}

.pie-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transition: opacity .2s;
}

.pie-center-val {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 26px;
  color: var(--tb);
  line-height: 1;
}

.pie-center-lbl {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--tw-3);
  margin-top: 4px;
}

.pie-legend {
  list-style: none;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pie-leg-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--bd-b);
  cursor: pointer;
  transition: opacity .2s;
}

.pie-leg-item:first-child {
  border-top: 1px solid var(--bd-b);
}

.pie-leg-item:hover {
  opacity: .75;
}

.pie-leg-item.active {
  opacity: 1;
}

.pie-leg-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 3px;
}

.pie-leg-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pie-leg-val {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--tb);
  line-height: 1;
}

.pie-leg-name {
  font-size: 12px;
  color: var(--tb-2);
  line-height: 1.5;
}

/* ─────────────────────────────────────
   SECTION 4 · HOW IT WORKS (dark)
───────────────────────────────────── */
.how-section {
  background: var(--dk-1);
  padding: 80px 0 100px;
  border-top: 1px solid var(--bd-w);
}

.how-label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .24em;

  /* Metallic Gradient */
  background: linear-gradient(180deg, #FFFFFF 0%, #777777 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;

  margin-bottom: 32px;
}

.how-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: #D9D9D7;
  border-radius: 16px;
  overflow: hidden;
}

.how-col {
  background: #E2E2E0;
  padding: 44px 36px 40px;
  border-right: 1px solid rgba(0, 0, 0, .08);
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: background .25s;
}

.how-col:last-child {
  border-right: none;
}

.how-col:hover {
  background: #EAEAE8;
}

.how-num {
  font-family: 'Inter', sans-serif;
  font-size: 60px;
  font-weight: 600;
  line-height: 1;
  color: rgba(0, 0, 0, .14);
  display: block;
  margin-bottom: 28px;
}

.how-title {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #0C0C0C;
  margin-bottom: 12px;
}

.how-desc {
  font-size: 13px;
  color: rgba(0, 0, 0, .58);
  line-height: 1.8;
  flex: 1;
  margin-bottom: 24px;
}

.how-tags {
  font-size: 13px;
  font-weight: 700;
  color: #0C0C0C;
  line-height: 1.6;
  margin-top: auto;
}

/* ─────────────────────────────────────
   SECTION 5 · DIVERSIFY WITH RWAEX (cream)
───────────────────────────────────── */
.assets-section {
  background: var(--cr);
  padding: 100px 0;
}

.assets-inner {}

.assets-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 32px;
  gap: 24px;
  flex-wrap: wrap;
}

.assets-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -.03em;
  color: var(--tb);
}

.asset-tabs {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}

.atab {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: var(--tb-2);
  background: none;
  border: 1px solid var(--bd-b);
  padding: 7px 14px;
  border-radius: 100px;
  cursor: pointer;
  transition: color .16s, background .16s, border-color .16s;
}

.atab:hover {
  color: var(--tb);
  border-color: rgba(0, 0, 0, .2);
}

.atab--on {
  background: rgba(0, 0, 0, .07);
  color: var(--tb);
  border-color: rgba(0, 0, 0, .18);
}

/* Mosaic */
.mosaic {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  grid-template-rows: 290px 260px;
  gap: 10px;
}

.tile {
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  background: var(--cr-2);
  transition: transform .35s var(--ease-spring), box-shadow .35s;
}

.tile:hover {
  transform: scale(1.01);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .14);
}

.tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tile-lbl {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .68), transparent);
  padding: 18px 16px 14px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
}

.tile-apy {
  font-size: 11px;
  color: rgba(255, 255, 255, .72);
}

.tile-re {
  grid-column: 1;
  grid-row: 1;
}

.tile-art {
  grid-column: 2;
  grid-row: 1;
}

.tile-commodities {
  grid-column: 3;
  grid-row: 1;
}

.tile-credit {
  grid-column: 1;
  grid-row: 2;
}

.tile-text {
  grid-column: 2;
  grid-row: 2;
  background: #fff;
  border: 1px solid var(--bd-b);
}

.tile-treasuries {
  grid-column: 3;
  grid-row: 2;
}

.stat-tile {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  gap: 6px;
  padding: 20px;
  text-align: center;
}

.st-pct {
  font-family: 'Inter', sans-serif;
  font-size: 38px;
  font-weight: 600;
  color: var(--blue);
}

.st-lbl {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, .7);
}

.st-sub {
  font-size: 11px;
  color: rgba(255, 255, 255, .4);
}

.text-tile {
  padding: 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
}

.tt-eye {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--blue);
}

.tt-body {
  font-size: 13px;
  color: var(--tb-2);
  line-height: 1.7;
  flex: 1;
}

.dash-tile {
  padding: 22px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dt-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.dt-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--tw-3);
}

.dt-val {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--tb);
}

.dt-chart {
  display: block;
  flex: 1;
  width: 100%;
}

.dt-gain {
  font-size: 12px;
  font-weight: 600;
  color: var(--blue);
}

/* ─────────────────────────────────────
   SECTION 6 · FOOTER (dark)
───────────────────────────────────── */
.footer {
  background: var(--dk);
  border-top: 1px solid var(--bd-w);
  padding-top: 80px;
  overflow: hidden;
}

.footer-top {
  display: flex;
  justify-content: center;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--bd-w);
}

.footer-top .footer-col {
  width: 100%;
  max-width: 800px;
}

.fc-head {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .24em;

  /* Metallic Gradient */
  background: linear-gradient(180deg, #FFFFFF 0%, #777777 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;

  margin-bottom: 24px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col li {
  font-size: 12px;
  color: var(--tw-3);
  line-height: 1.7;
}



.footer-links-row {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 24px;
  padding-bottom: 24px;
  flex-wrap: wrap;
  font-size: 12px;
}

.footer-links-row a {
  color: var(--tw-2);
  transition: color .16s;
}

.footer-links-row a:hover {
  color: #FFFFFF;
}

.footer-copy {
  margin-left: auto;
  color: var(--tw-2);
}

.footer-wordmark {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  letter-spacing: -.05em;
  font-size: clamp(24px, 5.3vw, 60px);
  line-height: .85;
  color: #fff;
  user-select: none;
  text-align: right;
  padding-right: 30px;
  padding-bottom: 0.2em;
  overflow: hidden;
}

/* ─────────────────────────────────────
   RESPONSIVE
───────────────────────────────────── */
@media (max-width: 960px) {
  .hub-inner {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .how-cols {
    grid-template-columns: 1fr 1fr;
  }

  .how-col:nth-child(3) {
    grid-column: span 2;
    border-right: none;
    border-top: 1px solid var(--bd-w);
  }

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

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

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

  .tile-re,
  .tile-art,
  .tile-commodities,
  .tile-credit,
  .tile-text,
  .tile-treasuries {
    grid-column: auto;
    grid-row: auto;
  }

  .tile-re {
    grid-column: span 2;
    height: 260px;
  }

  .tile-commodities,
  .tile-art {
    height: 220px;
  }

  .tile-credit,
  .tile-text,
  .tile-treasuries {
    height: 230px;
  }

  .footer-links-row {
    justify-content: center;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .footer-copy {
    margin-left: 0;
    width: 100%;
    text-align: center;
    margin-top: 16px;
  }

  .footer-wordmark {
    text-align: center;
    padding-right: 0;
  }
}

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

  .btn-launch {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-nav {
    display: flex;
  }

  .container,
  .nav-inner {
    padding: 0 20px;
  }

  .hero-inner {
    padding-top: 110px;
    padding-bottom: 80px;
  }

  .hero-title {
    font-size: clamp(34px, 10vw, 56px);
    line-height: 1;
  }

  .how-cols {
    grid-template-columns: 1fr;
  }

  .how-col {
    border-right: none;
    border-bottom: 1px solid var(--bd-w);
  }

  .how-col:nth-child(3) {
    grid-column: 1;
  }

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

  .tile-re,
  .tile-art,
  .tile-commodities,
  .tile-credit,
  .tile-text,
  .tile-treasuries {
    grid-column: 1;
    grid-row: auto;
  }

  .tile-re,
  .tile-art,
  .tile-credit {
    height: 240px;
  }

  .tile-commodities,
  .tile-text,
  .tile-treasuries {
    height: 200px;
  }

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

  .stats-row {
    flex-direction: column;
    gap: 32px;
  }

  .stat-divider {
    display: none;
  }

  .footer-links-row {
    flex-direction: column;
    gap: 16px;
  }
}