@font-face {
  font-family: "CookieRun KR";
  src: url("cookie-dex/assets/fonts/CookieRun-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --bg-deep: #060305;
  --bg-mid: #10060c;
  --surface: rgba(22, 10, 20, 0.85);
  --surface-strong: rgba(14, 5, 12, 0.92);
  --surface-soft: rgba(30, 14, 26, 0.70);
  --line: rgba(255, 51, 120, 0.22);
  --line-strong: rgba(255, 51, 120, 0.45);
  --text: #ffffff;
  --text-soft: #dfc8d5;
  --text-muted: #b091a1;
  --brand-warm: #ff1a66;
  --brand-cool: #00eaff;
  --brand-violet: #d61aff;
  --brand-gold: #ffcc00;
  --good: #00ff88;
  --radius-lg: 1.25rem;
  --radius-md: 0.95rem;
  --shadow: 0 24px 48px rgba(0, 0, 0, 0.65), 0 0 35px rgba(214, 26, 255, 0.08);
  --hero-shadow: 0 32px 64px rgba(0, 0, 0, 0.8), 0 0 65px rgba(255, 26, 102, 0.12);
}

* {
  box-sizing: border-box;
}

html,
body {
  overflow-x: clip;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Outfit", sans-serif;
  color: var(--text);
  background: var(--bg-deep);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 0.7px, transparent 0.7px);
  background-size: 3px 3px;
  opacity: 0.2;
  mix-blend-mode: soft-light;
}

a {
  color: inherit;
}

.bg-orb,
.bg-grid-glow {
  display: none;
}

.bg-orb {
  border-radius: 50%;
  filter: blur(2px);
}


.bg-orb-a {
  width: 26rem;
  height: 26rem;
  top: 5%;
  right: -8rem;
  background: radial-gradient(circle, rgba(255, 26, 102, 0.25), rgba(255, 26, 102, 0) 70%);
  filter: blur(40px);
}

.bg-orb-b {
  width: 28rem;
  height: 28rem;
  left: -10rem;
  bottom: 0%;
  background: radial-gradient(circle, rgba(214, 26, 255, 0.22), rgba(214, 26, 255, 0) 70%);
  filter: blur(45px);
}

.bg-grid-glow {
  inset: 15% auto auto 50%;
  width: min(80vw, 65rem);
  height: 40rem;
  transform: translateX(-50%);
  background:
    radial-gradient(ellipse at center, rgba(255, 255, 255, 0.03), transparent 50%),
    radial-gradient(ellipse at center, rgba(0, 234, 255, 0.06), transparent 60%);
  filter: blur(28px);
  opacity: 0.8;
}

/* =========================================
   BENTO LAYOUT RESET
   ========================================= */

.bento-page {
  overflow-x: hidden;
}

.bento-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 0;
  background: linear-gradient(180deg, rgba(8, 3, 10, 0.96), rgba(8, 3, 10, 0.76));
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.34);
  padding: 0 1.5rem;
}

.bento-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  pointer-events: none;
  background: linear-gradient(90deg, #8ff7ff 0%, #d697ff 55%, #ff88b0 100%);
  box-shadow:
    0 0 10px rgba(143, 247, 255, 0.28),
    0 0 14px rgba(214, 151, 255, 0.18);
}

.bento-header-inner {
  max-width: 1600px;
  margin: 0 auto;
  min-height: 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-link {
  text-decoration: none;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  transition: filter 200ms ease;
}

.brand-link-image {
  display: block;
  width: clamp(10rem, 14vw, 13rem);
  height: auto;
}

.brand-link:hover {
  filter: drop-shadow(0 0 8px rgba(255, 26, 102, 0.5));
}

.feature-nav-toggle {
  display: none;
  width: 2.1rem;
  height: 2.1rem;
  flex: 0 0 auto;
  border: 1px solid rgba(111, 242, 255, 0.42);
  border-radius: 0.72rem;
  background: linear-gradient(145deg, rgba(11, 20, 36, 0.94), rgba(26, 9, 31, 0.96));
  color: #f4fbff;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  padding: 0;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.05),
    0 0 0 1px rgba(214, 26, 255, 0.14),
    0 0 18px rgba(0, 234, 255, 0.16),
    0 10px 24px rgba(0, 0, 0, 0.28);
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease;
}

.feature-nav-toggle:hover,
.feature-nav-toggle:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(214, 153, 255, 0.72);
  background: linear-gradient(145deg, rgba(14, 26, 46, 0.98), rgba(35, 12, 42, 0.98));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.07),
    0 0 0 1px rgba(214, 26, 255, 0.2),
    0 0 22px rgba(0, 234, 255, 0.24),
    0 12px 28px rgba(0, 0, 0, 0.3);
}

.feature-nav-toggle:focus-visible {
  outline: 2px solid rgba(111, 242, 255, 0.5);
  outline-offset: 2px;
}

.feature-nav-toggle-icon,
.feature-nav-toggle-icon::before,
.feature-nav-toggle-icon::after {
  display: block;
  width: 0.88rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #8ff7ff 0%, #d697ff 55%, #ff88b0 100%);
  box-shadow:
    0 0 8px rgba(0, 234, 255, 0.42),
    0 0 14px rgba(214, 26, 255, 0.2);
  transition:
    transform 180ms ease,
    opacity 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.feature-nav-toggle-icon {
  position: relative;
}

.feature-nav-toggle-icon::before,
.feature-nav-toggle-icon::after {
  content: "";
  position: absolute;
  left: 0;
}

.feature-nav-toggle-icon::before {
  transform: translateY(-6px);
}

.feature-nav-toggle-icon::after {
  transform: translateY(6px);
}

.bento-nav {
  display: flex;
  gap: 1.5rem;
}

.bento-nav a {
  font-family: 'CookieRun KR', 'Outfit', sans-serif;
  color: var(--text-soft);
  text-decoration: none;
  font-size: 1rem;
  letter-spacing: 0.02em;
  transition: color 200ms ease, text-shadow 200ms ease;
}

.bento-nav a:hover,
.bento-nav a:focus-visible,
.bento-nav a[aria-current="page"] {
  color: #fff;
  text-shadow: 0 0 10px rgba(0, 234, 255, 0.6);
  outline: none;
}

/* =========================================
   BENTO MAIN GRID (DESKTOP)
   ========================================= */

.bento-main {
  max-width: 1600px;
  margin: 1.2rem auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(18rem, 0.86fr);
  gap: clamp(1rem, 2vw, 1.5rem);
  min-height: calc(100vh - 9rem);
  align-items: stretch;
}

.premium-glass {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg,
      rgba(30, 12, 26, 0.65) 0%,
      rgba(16, 6, 14, 0.80) 50%,
      rgba(10, 4, 8, 0.90) 100%);
  backdrop-filter: blur(24px) saturate(1.2);
  -webkit-backdrop-filter: blur(24px) saturate(1.2);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.65), inset 0 1px 1px rgba(255, 255, 255, 0.1);
  overflow: hidden;
  position: relative;
}

/* =========================================
   BENTO HERO (LEFT SIDE)
   ========================================= */

.bento-hero {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 3rem;
  border-color: rgba(255, 26, 102, 0.4);
}

.hero-top {
  position: static;
  min-height: 0;
}

.hero-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  max-width: 38rem;
}

.hero-bottom.hero-content {
  align-self: flex-start;
  padding: 1.35rem 1.45rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 1.15rem;
  background:
    linear-gradient(155deg, rgba(40, 18, 34, 0.56) 0%, rgba(16, 7, 14, 0.72) 52%, rgba(8, 3, 7, 0.82) 100%);
  backdrop-filter: blur(20px) saturate(1.18);
  -webkit-backdrop-filter: blur(20px) saturate(1.18);
  box-shadow:
    0 22px 40px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    inset 0 0 0 1px rgba(255, 26, 102, 0.12);
  overflow: hidden;
}

.hero-bottom.hero-content::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    radial-gradient(circle at top left, rgba(255, 26, 102, 0.24), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 48%);
}

.hero-bottom.hero-content > * {
  position: relative;
  z-index: 1;
}

.glow-text {
  font-family: 'CookieRun KR', 'Outfit', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.72rem;
  color: var(--brand-cool);
  text-shadow: 0 0 12px rgba(0, 234, 255, 0.5);
  margin: 0;
}

.bento-hero .eyebrow {
  margin: 0;
}

#heroTitle {
  line-height: 0;
  margin: 0;
}

.hero-title-image {
  display: block;
  width: min(28rem, 100%);
  height: auto;
}

.hero-lede {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: #fdf5ff;
  line-height: 1.6;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
  margin: 0;
}

.hero-actions {
  display: none;
  margin-top: 1rem;
}

.hero-cta {
  display: inline-block;
  text-decoration: none;
  line-height: 0;
  transition: transform 150ms ease, filter 150ms ease;
}

.hero-cta:hover {
  transform: translateY(-3px) scale(1.02);
  filter: drop-shadow(0 14px 28px rgba(255, 26, 102, 0.28));
}

.hero-cta-image {
  display: block;
  width: min(22rem, 100%);
  height: auto;
}

.btn-glow {
  padding: 1rem 2.5rem;
  font-size: 1.2rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand-warm), var(--brand-violet));
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
  box-shadow: 0 8px 25px rgba(255, 26, 102, 0.4), inset 0 2px 2px rgba(255, 255, 255, 0.3);
  border: none;
  display: inline-flex;
  text-decoration: none;
  align-items: center;
  justify-content: center;
  font-family: 'CookieRun KR', 'Outfit', sans-serif;
  transition: transform 150ms ease, box-shadow 150ms ease;
}

.btn-glow:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 35px rgba(214, 26, 255, 0.6), inset 0 2px 2px rgba(255, 255, 255, 0.4);
}

.hero-art {
  position: absolute;
  top: 50%;
  left: 40%;
  right: auto;
  bottom: auto;
  width: 300%;
  height: 300%;
  transform: translate(-54%, -50%);
  transform-origin: center center;
  pointer-events: none;
  z-index: 1;
  isolation: isolate;
}

.hero-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 3, 8, 0.88) 0%, rgba(7, 3, 8, 0.12) 26%, rgba(7, 3, 8, 0) 58%);
  z-index: 2;
}

.hero-art-cookie {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.8)) drop-shadow(0 0 30px rgba(68, 28, 124, 0.42));
  animation: floatCookie 12s ease-in-out infinite;
}

@keyframes floatCookie {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

/* =========================================
   BENTO GRID RIGHT (MODULES)
   ========================================= */

.bento-grid-right {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 14rem), 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: stretch;
}

.bento-card {
  transition: transform 300ms cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 300ms ease, border-color 300ms ease;
  display: flex;
  flex-direction: column;
  overflow: visible;
}

.bento-card:hover,
.bento-card.is-mobile-hover {
  transform: translateY(-8px) scale(1.02);
}

.bento-card-link {
  display: flex;
  flex-direction: column;
  flex: 1;
  text-decoration: none;
  color: inherit;
  padding: 16px;
  position: relative;
  z-index: 2;
  border-radius: inherit;
  overflow: visible;
}

.bento-card-clip {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  border-radius: inherit;
  pointer-events: none;
}

.bento-card-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.15;
  transition: opacity 300ms ease;
  background-size: cover;
  background-position: center;
}

.bento-card:hover .bento-card-bg,
.bento-card.is-mobile-hover .bento-card-bg {
  opacity: 0.4;
}

.feature-card-art {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  user-select: none;
  display: block;
  height: auto;
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.42));
}

.bento-card-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  position: relative;
  z-index: 5;
}

.bento-card-content h2,
.bento-card-content h3 {
  font-family: 'CookieRun KR', 'Outfit', sans-serif;
  font-size: 2.6rem;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.8);
  margin-bottom: 0.5rem;
  margin-top: 0;
  color: #fff;
}

.feature-card-title {
  margin-top: 0;
  margin-bottom: 0.5rem;
  line-height: 0;
}

.feature-card-title-image {
  display: block;
  width: min(100%, 160px);
  height: auto;
}

.bento-card-content p {
  font-size: 1.15rem;
  color: var(--text-soft);
  max-width: 85%;
  margin-top: 0;
  line-height: 1.5;
}

.module-icon {
  width: clamp(70px, 9vw, 130px);
  margin-top: auto;
  align-self: flex-end;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.6));
  /* Strong springy bounce curve */
  transition: transform 450ms cubic-bezier(0.34, 1.6, 0.64, 1);
}

.bento-card:hover .module-icon,
.bento-card.is-mobile-hover .module-icon {
  transform: scale(1.5) rotate(-15deg);
}

/* Specific Card Layouts */
.bento-module-dex,
.bento-module-guild,
.bento-module-arena,
.bento-module-resonant {
  grid-column: 1 / -1;
}

.bento-module-dex {
  border-color: rgba(255, 26, 102, 0.3);
}

.bento-module-dex:hover,
.bento-module-dex.is-mobile-hover {
  border-color: var(--brand-warm);
  box-shadow: 0 20px 50px rgba(255, 26, 102, 0.4);
}

.bento-module-dex .dex-bg {
  background: radial-gradient(circle at bottom right, rgba(255, 26, 102, 0.8), transparent 70%);
}

.bento-module-dex .feature-card-art-dex {
  left: -68px;
  bottom: -94px;
  width: 320px;
  opacity: 0.94;
}

.bento-module-guild .feature-card-art-guild,
.bento-module-arena .feature-card-art-arena,
.bento-module-resonant .feature-card-art-resonant {
  left: -68px;
  bottom: -64px;
  width: 260px;
  opacity: 0.94;
}

.bento-module-dex .bento-card-content h2,
.bento-module-dex .bento-card-content p,
.bento-module-guild .bento-card-content h3,
.bento-module-guild .bento-card-content p,
.bento-module-arena .bento-card-content h3,
.bento-module-arena .bento-card-content p,
.bento-module-resonant .bento-card-content h3,
.bento-module-resonant .bento-card-content p {
  max-width: 96%;
}

.bento-module-guild {
  border-color: rgba(255, 204, 0, 0.3);
}

.bento-module-guild:hover,
.bento-module-guild.is-mobile-hover {
  border-color: var(--brand-gold);
  box-shadow: 0 20px 50px rgba(255, 204, 0, 0.4);
}

.bento-module-guild .guild-bg {
  background: radial-gradient(circle at bottom right, rgba(255, 204, 0, 0.8), transparent 70%);
}

.bento-module-arena {
  border-color: rgba(0, 234, 255, 0.3);
}

.bento-module-arena:hover,
.bento-module-arena.is-mobile-hover {
  border-color: var(--brand-cool);
  box-shadow: 0 20px 50px rgba(0, 234, 255, 0.4);
}

.bento-module-arena .arena-bg {
  background: radial-gradient(circle at bottom right, rgba(0, 234, 255, 0.8), transparent 70%);
}

.bento-module-resonant {
  border-color: rgba(0, 255, 136, 0.42);
}

.bento-module-resonant:hover,
.bento-module-resonant.is-mobile-hover {
  border-color: var(--good);
  box-shadow: 0 20px 50px rgba(0, 255, 136, 0.42);
}

.bento-module-resonant .resonant-bg {
  background: radial-gradient(circle at bottom right, rgba(0, 255, 136, 0.88), transparent 70%);
}

.bento-module-resonant .bento-card-content h3 {
  font-size: 2rem;
  line-height: 1.02;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.8), 0 0 18px rgba(0, 255, 136, 0.16);
}

/* =========================================
   METRICS SCROLLER
   ========================================= */

.bento-metrics {
  grid-column: 1 / -1;
  width: auto;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.35rem 1.5rem 1.5rem;
  border-color: rgba(214, 26, 255, 0.3);
}

.bento-metrics-intro {
  margin: 0;
  max-width: 52rem;
  text-align: center;
  font-family: "CookieRun KR", "Outfit", sans-serif;
  font-size: clamp(0.92rem, 1.8vw, 1.22rem);
  line-height: 1.45;
  letter-spacing: 0.01em;
  color: #fff6ea;
  text-shadow:
    0 3px 12px rgba(0, 0, 0, 0.45),
    0 0 18px rgba(255, 152, 184, 0.12);
  text-wrap: balance;
}

.metrics-scroller {
  display: flex;
  width: 100%;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.metric-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}

.metric-label {
  font-family: 'CookieRun KR', 'Outfit', sans-serif;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: var(--brand-violet);
  letter-spacing: 0.1em;
}

.metric-val {
  font-family: 'CookieRun KR', 'Outfit', sans-serif;
  font-size: 2.5rem;
  color: #fff;
  line-height: 1;
  text-shadow: 0 4px 15px rgba(214, 26, 255, 0.5);
}

/* =========================================
   FOOTER
   ========================================= */

.bento-footer {
  text-align: center;
  padding: 2rem 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* =========================================
   RESPONSIVE
   ========================================= */

@media (max-width: 1140px) and (min-width: 700px) {
  .bento-main {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }

  .hero-content {
    gap: 0.6rem;
    max-width: 31rem;
  }

  .hero-bottom.hero-content {
    padding: 1.05rem 1.1rem 1.15rem;
    border-radius: 1rem;
  }

  .glow-text {
    font-size: 0.88rem;
    letter-spacing: 0.12em;
  }

  .bento-hero .hero-title-image {
    width: min(22rem, 100%);
  }

  .hero-lede {
    font-size: 1rem;
    line-height: 1.5;
  }

  .bento-grid-right {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bento-grid-right .bento-card {
    grid-column: auto;
  }

  .bento-module-dex .feature-card-art-dex {
    left: -48px;
    bottom: -78px;
    width: 290px;
    opacity: 0.94;
  }

}

@media (max-width: 699px) {
  .bento-main {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: 1.5rem;
  }

  .bento-hero {
    max-height: none;
  }
}

@media (max-width: 860px) {
  .bento-header {
    overflow: visible;
  }

  .bento-header-inner {
    position: relative;
    overflow: visible;
    flex-wrap: nowrap;
    gap: 0.75rem;
    min-height: 3.5rem;
    padding: 0.75rem 0;
  }

  .feature-nav-toggle {
    display: flex;
    order: -1;
  }

  .brand-link {
    margin-right: auto;
  }

  .bento-nav {
    display: none;
    position: absolute;
    top: calc(100% + 0.55rem);
    left: 0;
    right: 0;
    z-index: 60;
    flex-basis: auto;
    flex-direction: column;
    gap: 0.35rem;
    padding: 0.7rem;
    border: 1px solid rgba(255, 188, 210, 0.16);
    border-radius: 0.95rem;
    background: linear-gradient(180deg, rgba(14, 6, 12, 0.96), rgba(10, 4, 8, 0.9));
    box-shadow: 0 20px 36px rgba(0, 0, 0, 0.42);
    backdrop-filter: blur(18px) saturate(1.12);
    -webkit-backdrop-filter: blur(18px) saturate(1.12);
  }

  .feature-nav-toggle.is-open ~ .bento-nav {
    display: flex;
  }

  .bento-nav a {
    padding: 0.6rem 1rem;
    border-radius: 0.5rem;
    transition: background 150ms ease;
  }

  .bento-nav a:hover,
  .bento-nav a:focus-visible {
    background: rgba(255, 255, 255, 0.06);
  }

  /* Hamburger icon animation when open */
  .feature-nav-toggle.is-open .feature-nav-toggle-icon {
    background: transparent;
    box-shadow: none;
  }

  .feature-nav-toggle.is-open .feature-nav-toggle-icon::before {
    transform: rotate(45deg);
  }

  .feature-nav-toggle.is-open .feature-nav-toggle-icon::after {
    transform: rotate(-45deg);
  }

  .brand-link-image {
    width: min(10.5rem, 48vw);
  }

  .bento-hero {
    padding: 0.8rem;
    min-height: auto;
    max-height: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
  }

  .hero-top {
    position: relative;
    width: 100%;
    min-height: clamp(9.75rem, 30vw, 12rem);
  }

  .bento-hero #heroTitle {
    margin-top: 0;
  }

  .bento-hero .hero-title-image {
    width: min(12rem, 80%);
  }

  .bento-hero .hero-cta-image {
    width: min(11.25rem, 48.75vw);
  }

  .hero-art {
    position: absolute;
    top: -23rem;
    bottom: auto;
    right: -11.5rem;
    width: 126%;
    transform: scale(2.3);
    transform-origin: top right;
    opacity: 0.74;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
  }

  .hero-bottom {
    z-index: 10;
    position: relative;
    margin-top: auto;
  }

  .hero-bottom.hero-content {
    align-self: stretch;
    gap: 0.45rem;
    width: 100%;
    max-width: none;
    padding: 0.75rem 0.75rem 0.8rem;
    border-radius: 1rem;
  }

  .hero-lede {
    font-size: 0.82rem;
    line-height: 1.38;
  }

  .bento-module-dex .feature-card-art-dex {
    left: -38px;
    bottom: -48px;
    width: 176px;
    opacity: 0.86;
  }

  .bento-module-guild .feature-card-art-guild,
  .bento-module-arena .feature-card-art-arena,
  .bento-module-resonant .feature-card-art-resonant {
    left: -38px;
    bottom: -38px;
    width: 176px;
    opacity: 0.86;
  }

  .bento-module-dex .bento-card-content h2,
  .bento-module-dex .bento-card-content p,
  .bento-module-guild .bento-card-content h3,
  .bento-module-guild .bento-card-content p,
  .bento-module-arena .bento-card-content h3,
  .bento-module-arena .bento-card-content p,
  .bento-module-resonant .bento-card-content h3,
  .bento-module-resonant .bento-card-content p {
    max-width: 92%;
  }

  .bento-grid-right {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 1.35rem;
    grid-row: 3;
  }

  .bento-metrics {
    grid-row: 1;
    gap: 0.7rem;
    padding: 0.9rem 0.75rem;
  }

  .bento-metrics-intro {
    font-size: 0.8rem;
    line-height: 1.45;
  }

  .metrics-scroller {
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 0.55rem;
  }

  .metric-item {
    flex: 1 1 0;
    min-width: 0;
    gap: 0.1rem;
  }

  .metric-label {
    font-size: 0.64rem;
    letter-spacing: 0.06em;
  }

  .metric-val {
    font-size: 1.7rem;
  }
}
