/* ============================================================
   COMPONENTS.CSS
   All reusable UI component styles: buttons, cards, nav,
   hero, modals, forms, carousel, board, accordion, etc.
   ============================================================ */


/* ── COMPONENT: SITE INTRO OVERLAY ─────────────────────────── */
.site-intro {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #050505;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
}

.site-intro.is-exiting {
  animation: siteIntroExit 0.75s cubic-bezier(0.4, 0, 1, 1) forwards;
  pointer-events: none;
}

@keyframes siteIntroExit {
  0%   { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.05); }
}

.site-intro-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.site-intro-eyebrow {
  display: block;
  font-size: 11px;
  letter-spacing: 0.58em;
  text-transform: uppercase;
  color: rgba(252, 252, 252, 0.6);
  margin-bottom: 18px;
  opacity: 0;
  animation: introFadeUp 0.6s ease 0.25s both;
}

.site-intro-wordmark {
  width: clamp(280px, 55vw, 680px);
  height: auto;
  display: block;
  margin-bottom: 28px;
  filter: drop-shadow(0 0 60px rgba(252, 252, 252, 0.18));
  opacity: 0;
  animation: introSlam 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.6s both;
}

.site-intro-tag {
  display: block;
  font-size: 11px;
  letter-spacing: 0.46em;
  text-transform: uppercase;
  color: rgba(252, 252, 252, 0.6);
  margin-bottom: 44px;
  opacity: 0;
  animation: introFadeUp 0.5s ease 1.05s both;
}

.site-intro-bar {
  width: 100px;
  height: 1px;
  background: rgba(252, 252, 252, 0.08);
  overflow: hidden;
  opacity: 0;
  animation: introFadeUp 0.4s ease 1.2s both;
}

.site-intro-fill {
  height: 100%;
  width: 0%;
  background: rgba(252, 252, 252, 0.55);
  transition: width 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.site-intro-fill.is-filling {
  width: 100%;
}

@keyframes introFadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes introSlam {
  from { opacity: 0; transform: scale(1.12); }
  to   { opacity: 1; transform: scale(1); }
}


/* ── COMPONENT: BUTTONS / CTA ───────────────────────────────── */
.cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 30px;
  border-radius: 999px;
  border: 1px solid rgba(252, 252, 252, 0.22);
  color: var(--paper);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease,
    background 0.3s ease;
}

.cta:hover {
  border-color: rgba(252, 252, 252, 0.6);
  background: rgba(252, 252, 252, 0.04);
  box-shadow: 0 0 48px rgba(252, 252, 252, 0.12), 0 0 96px rgba(252, 252, 252, 0.04);
  transform: translateY(-2px);
}

.cta--sm {
  margin-top: 8px;
  font-size: 11px;
  padding: 11px 24px;
}


/* ── COMPONENT: STATS ───────────────────────────────────────── */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 22px;
  margin-top: 18px;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px 24px;
  border-radius: 16px;
  background: rgba(252, 252, 252, 0.03);
  border: 1px solid rgba(252, 252, 252, 0.07);
  transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.stat:hover {
  border-color: rgba(252, 252, 252, 0.15);
  background: rgba(252, 252, 252, 0.055);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  transform: translateY(-1px);
}

.stat strong {
  display: block;
  font-size: clamp(24px, 3.8vw, 38px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--paper);
  line-height: 1;
}

.stat span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(252, 252, 252, 0.7);
}


/* ── COMPONENT: HERO MEDIA ──────────────────────────────────── */
.hero-media {
  display: grid;
  place-items: center;
  position: relative;
}

.hero-media img {
  width: min(85%, 760px);
  max-height: 840px;
  object-fit: contain;
  filter: drop-shadow(0 48px 80px rgba(0, 0, 0, 0.6))
    drop-shadow(0 0 48px rgba(252, 252, 252, 0.09));
  animation: float 10s ease-in-out infinite;
}

.phone-media img {
  width: min(100%, 420px);
  max-height: 560px;
  filter: none;
}


/* ── COMPONENT: SIGNAL CARDS (available pattern) ────────────── */
.signal {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  padding: 40px 0;
}

.signal-card {
  padding: 26px 28px;
  border-radius: 18px;
  border: 1px solid rgba(252, 252, 252, 0.07);
  background: rgba(252, 252, 252, 0.03);
  backdrop-filter: blur(10px);
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.signal-card:hover {
  border-color: rgba(252, 252, 252, 0.14);
  transform: translateY(-2px);
}

.signal-card strong {
  display: block;
  font-size: 22px;
  letter-spacing: 0.1em;
}

.signal-card span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--mist);
}


/* ── COMPONENT: FEATURE RAIL (available pattern) ────────────── */
.feature-rail {
  display: grid;
  gap: 28px;
  padding: 60px 0;
}

.feature-rail h2 {
  margin: 0;
  font-size: clamp(20px, 3vw, 32px);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.feature-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(240px, 1fr);
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
}

.feature-track::-webkit-scrollbar {
  height: 6px;
}

.feature-track::-webkit-scrollbar-thumb {
  background: rgba(252, 252, 252, 0.2);
  border-radius: 999px;
}

.feature-card {
  scroll-snap-align: start;
  padding: 26px;
  border-radius: 20px;
  border: 1px solid rgba(252, 252, 252, 0.12);
  background: linear-gradient(140deg, rgba(252, 252, 252, 0.08), rgba(252, 252, 252, 0.02));
}

.feature-card h3 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 600;
}

.feature-card p {
  margin: 0;
  color: var(--mist);
  line-height: 1.6;
}


/* ── COMPONENT: NFT ACCORDION ───────────────────────────────── */
.nft-accordion {
  display: grid;
  gap: 10px;
  margin-top: 8px;
}

.nft-item {
  border-radius: 16px;
  border: 1px solid rgba(252, 252, 252, 0.08);
  background: rgba(252, 252, 252, 0.02);
  overflow: hidden;
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
}

.nft-item.is-open {
  border-color: rgba(252, 252, 252, 0.22);
  background: linear-gradient(150deg, rgba(252, 252, 252, 0.07), rgba(252, 252, 252, 0.02));
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.nft-toggle {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: inherit;
  font-family: inherit;
  text-align: left;
}

.nft-toggle-inner {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nft-toggle h3 {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(252, 252, 252, 0.5);
  transition: color 0.25s;
}

.nft-item.is-open .nft-toggle h3 {
  color: rgba(252, 252, 252, 0.92);
}

.nft-chevron {
  color: rgba(252, 252, 252, 0.6);
  font-size: 12px;
  transition: transform 0.3s ease, color 0.25s;
  flex-shrink: 0;
}

.nft-item.is-open .nft-chevron {
  transform: rotate(180deg);
  color: rgba(252, 252, 252, 0.65);
}

.nft-panel {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  padding: 0 22px;
  transition: max-height 0.35s ease, opacity 0.3s ease, padding 0.3s ease;
}

.nft-panel[aria-hidden="false"] {
  max-height: 300px;
  opacity: 1;
  padding: 0 22px 18px;
}

.nft-panel p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(252, 252, 252, 0.64);
}


/* ── COMPONENT: PROTOCOL CIRCLE ─────────────────────────────── */
.circle-sub {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: var(--mist);
}

.circle-title {
  margin: 0;
  font-size: clamp(24px, 4vw, 46px);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.circle-list {
  display: none;
  gap: 16px;
  margin-top: 8px;
}

.circle-card {
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px solid rgba(252, 252, 252, 0.14);
  background: linear-gradient(150deg, rgba(252, 252, 252, 0.08), rgba(252, 252, 252, 0.02));
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.circle-card h3 {
  margin: 0 0 10px;
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.circle-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--mist);
}

.circle-mobile-hint {
  display: none;
  margin: 12px auto 0;
  text-align: center;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mist);
}

.circle-shell {
  position: relative;
  --radius: clamp(210px, 35vw, 320px);
  --item: clamp(110px, 14vw, 150px);
  --icon: clamp(72px, 10vw, 100px);
  width: calc((var(--radius) * 2) + var(--item));
  height: calc((var(--radius) * 2) + var(--item));
  margin: 0 auto 0 0;
  justify-self: end;
  transform: translateX(-128px);
}

.circle-shell .orbit {
  position: absolute;
  inset: 18%;
  opacity: 0.4;
  border-radius: 50%;
  border: 1px solid rgba(252, 252, 252, 0.14);
  box-shadow: inset 0 0 60px rgba(252, 252, 252, 0.06);
  pointer-events: none;
}

.circle-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(var(--radius) * 2);
  height: calc(var(--radius) * 2);
  transform: translate(-50%, -52%);
  border-radius: 50%;
  border: 1px solid rgba(252, 252, 252, 0.2);
  box-shadow: 0 0 60px rgba(252, 252, 252, 0.06);
  pointer-events: none;
}

.circle-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.circle-center img {
  width: min(400px, 56vw);
  border-radius: 0;
  display: block;
}

/* Coin flip card */
.circle-flip {
  position: relative;
  width: min(640px, 96vw);
  height: min(640px, 96vw);
  transform-style: preserve-3d;
  transition: transform 0.7s ease;
}

.circle-flip.is-flipped {
  transform: rotateY(180deg);
}

.circle-face {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  backface-visibility: hidden;
}

.circle-face img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Constrain the front coin image — back face fills the full card */
.circle-face.front img {
  width: min(400px, 56vw);
  height: auto;
}

.circle-face.back {
  transform: rotateY(180deg);
}

.circle-back {
  display: grid;
  place-items: center;
  width: min(390px, 74%);
  height: min(330px, 62%);
  padding: 28px;
  text-align: left;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(252, 252, 252, 0.1);
  background: rgba(12, 12, 12, 0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
  transform: translateY(-10px);
  position: relative;
}

.circle-back::after {
  content: none;
}

.circle-back-inner {
  width: 100%;
  height: 100%;
  border-radius: 0;
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 0;
  border: none;
  background: transparent;
  position: relative;
  z-index: 1;
}

.circle-back-inner > * {
  position: relative;
  z-index: 1;
}

.circle-back h3 {
  margin: 0;
  font-size: 16px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.circle-back p {
  margin: 0;
  font-size: 14px;
  color: var(--mist);
  line-height: 1.6;
}

/* Circle orbit items */
.circle-item {
  position: absolute;
  top: 50%;
  left: 50%;
  width: var(--item);
  transform: translate(-50%, -50%) rotate(calc(36deg * var(--i)))
    translateY(calc(var(--radius) * -1)) rotate(calc(-36deg * var(--i)));
  text-align: center;
  cursor: pointer;
  touch-action: manipulation;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.circle-item:hover {
  transform: translate(-50%, -50%) rotate(calc(36deg * var(--i)))
    translateY(calc(var(--radius) * -1)) rotate(calc(-36deg * var(--i)))
    scale(1.08);
}

.circle-icon {
  width: var(--icon);
  height: var(--icon);
  margin: 0 auto 1rem;
  background: linear-gradient(145deg, #212320, #050505);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(252, 252, 252, 0.2);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.circle-icon i {
  font-size: calc(var(--icon) * 0.22);
  color: rgba(252, 252, 252, 0.9);
}

.circle-item:hover .circle-icon {
  border-color: rgba(252, 252, 252, 0.9);
  border-width: 2px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.5), 0 0 24px rgba(252, 252, 252, 0.18);
  transform: translateY(-2px) scale(1.03);
}

.circle-label {
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--paper);
  opacity: 0.8;
}

/* Shared quote style used in circle back and modals */
.circle-quote {
  margin: 4px 0 0;
  padding-left: 14px;
  border-left: 1px solid rgba(252, 252, 252, 0.24);
  font-size: 13px;
  line-height: 1.6;
  color: rgba(252, 252, 252, 0.86);
}

.circle-quote-meta {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--mist);
}


/* ── COMPONENT: SCROLL CARDS ────────────────────────────────── */
.scroll-cards {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.scroll-card {
  border-radius: 16px;
  border: 1px solid rgba(252, 252, 252, 0.1);
  padding: 18px 22px;
  background: rgba(252, 252, 252, 0.02);
  transition:
    border-color 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.55s ease,
    box-shadow 0.55s ease;
  overflow: hidden;
}

.scroll-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.scroll-card h3 {
  margin: 0;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(252, 252, 252, 0.7);
  transition: color 0.5s ease;
}

.scroll-card-tag {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(252, 252, 252, 0.6);
  transition: color 0.5s ease;
  flex-shrink: 0;
}

.scroll-card-body {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(252, 252, 252, 0.74);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin-top: 0;
  transition:
    max-height 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.45s ease,
    margin-top 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.scroll-card.is-scroll-active {
  border-color: rgba(252, 252, 252, 0.28);
  background: linear-gradient(150deg, rgba(252, 252, 252, 0.08), rgba(252, 252, 252, 0.02));
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.scroll-card.is-scroll-active h3 {
  color: rgba(252, 252, 252, 0.92);
}

.scroll-card.is-scroll-active .scroll-card-tag {
  color: rgba(252, 252, 252, 0.6);
}

.scroll-card.is-scroll-active .scroll-card-body {
  max-height: 200px;
  opacity: 1;
  margin-top: 14px;
}

/* Showcase accordion (legacy scroll-card variant) */
.showcase-grid {
  display: grid;
  gap: 12px;
}

.showcase-accordion {
  display: grid;
  gap: 12px;
}

.showcase-accordion.is-measuring .showcase-panel,
.showcase-accordion.is-measuring .showcase-toggle i,
.showcase-accordion.is-measuring .showcase-item {
  transition: none !important;
}

.showcase-item {
  position: relative;
  border-radius: 999px;
  border: 1px solid rgba(252, 252, 252, 0.12);
  background: #0b0b0b;
  overflow: visible;
  transition: border-color 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.showcase-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 12px 0 24px;
  padding-right: 32px;
  background: transparent;
  border: none;
  color: rgba(252, 252, 252, 0.92);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.2em;
  cursor: pointer;
  min-height: 38px;
  position: relative;
}

.showcase-item:not(.is-open) .showcase-toggle {
  min-height: 38px;
  padding-top: 0;
  padding-bottom: 0;
  transform: translateY(0);
}

.showcase-toggle span {
  margin-left: auto;
  color: rgba(252, 252, 252, 0.74);
}

.showcase-toggle i {
  color: rgba(252, 252, 252, 0.6);
  font-size: 0.9em;
  transition: transform 0.35s ease, color 0.35s ease;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}

.showcase-item.is-open {
  border-radius: 18px;
  border-color: rgba(252, 252, 252, 0.28);
  background: #111111;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.showcase-item.is-open .showcase-toggle i {
  transform: translateY(-50%) rotate(180deg);
  color: rgba(252, 252, 252, 0.85);
}

.showcase-panel {
  display: grid;
  gap: 10px;
  margin-top: 0;
  padding: 0 10px;
  color: rgba(252, 252, 252, 0.86);
  font-size: 13px;
  line-height: 1.6;
  text-transform: none;
  letter-spacing: 0.02em;
  border-radius: 16px;
  border: 0 solid rgba(252, 252, 252, 0.18);
  background: #0b0b0b;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  max-height: 0;
  opacity: 0;
  transform: translateY(-4px);
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    opacity 0.2s ease,
    transform 0.35s ease,
    padding 0.35s ease,
    margin 0.35s ease,
    border-width 0.35s ease;
}

.showcase-item.is-open .showcase-panel {
  margin-top: 10px;
  padding: 8px 12px 10px;
  border-width: 1px;
  max-height: var(--panel-height, 240px);
  opacity: 1;
  transform: translateY(0);
}

.showcase-modal-trigger {
  display: none;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  border: 1px solid rgba(252, 252, 252, 0.2);
  background: rgba(8, 8, 8, 0.7);
}


/* ── COMPONENT: AI AGENT ────────────────────────────────────── */
.agent-video-col {
  display: flex;
  justify-content: center;
  align-items: center;
}

.agent-video-wrap {
  position: relative;
  width: min(100%, 360px);
  aspect-ratio: 9 / 16;
  max-height: 78vh;
  border-radius: 0;
  overflow: hidden;
  background: transparent;
  border: none;
  box-shadow: none;
}

.agent-video-wrap canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.agent-video-wrap video {
  display: none;
}

.agent-video-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 55%, rgba(9, 9, 9, 0.45));
  pointer-events: none;
}

.agent-copy-col {
  position: relative;
  min-height: 380px;
}

.agent-phase {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  display: grid;
  gap: 22px;
  transition: opacity 0.55s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.agent-phase.is-hidden {
  opacity: 0;
  transform: translateY(calc(-50% + 28px));
  pointer-events: none;
}

.agent-feat-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.agent-feat-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  letter-spacing: 0.04em;
  line-height: 1.5;
  color: rgba(252, 252, 252, 0.65);
}

.agent-feat-icon {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: rgba(252, 252, 252, 0.05);
  border: 1px solid rgba(252, 252, 252, 0.09);
  display: grid;
  place-items: center;
  font-size: 11px;
  flex-shrink: 0;
  color: rgba(252, 252, 252, 0.55);
}

.agent-highlight {
  color: rgba(252, 252, 252, 0.9);
  font-style: italic;
  font-weight: 500;
}

.agent-scrub-bar {
  position: absolute;
  bottom: -28px;
  left: 0;
  right: 0;
  height: 2px;
  background: transparent;
  border-radius: 999px;
  overflow: hidden;
}

.agent-scrub-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, rgba(252, 252, 252, 0.35), rgba(252, 252, 252, 0.65));
  border-radius: 999px;
  transition: width 0.08s linear;
}

/* Static (non-scroll) agent variant */
.agent-static-img {
  position: relative;
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 20px;
  filter: drop-shadow(0 32px 64px rgba(0, 0, 0, 0.55));
}

/* When using a static image, the wrap should size naturally */
.agent-section--static .agent-video-wrap {
  aspect-ratio: unset;
  height: auto;
  max-height: none;
  overflow: visible;
  background: transparent;
  border-radius: 0;
}

.agent-copy-col--static {
  position: static;
  min-height: auto;
}

.agent-copy-col--static .agent-phase {
  position: static;
  transform: none;
  opacity: 1;
}

.agent-phase--lower {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(252, 252, 252, 0.07);
}


/* ── COMPONENT: DYNK CARDS ──────────────────────────────────── */
.dynk-cards-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 10px;
}

.dynk-card-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(252, 252, 252, 0.7);
}

.dynk-card-feat i {
  color: rgba(252, 252, 252, 0.45);
  width: 16px;
  flex-shrink: 0;
}

.dynk-card-img {
  width: clamp(300px, 38vw, 460px);
  height: auto;
  border-radius: 18px;
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.5));
  transition: transform 0.4s ease, filter 0.4s ease;
}

.dynk-card-img:hover {
  transform: translateY(-6px) rotate(-1deg);
  filter: drop-shadow(0 32px 64px rgba(0, 0, 0, 0.6));
}

/* 3D card face (decorative variant) */
.dynk-card-3d {
  width: 290px;
  height: 182px;
  perspective: 1000px;
}

.dynk-card-face {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #111827 0%, #1e2a45 60%, #0d2240 100%);
  border-radius: 18px;
  border: 1px solid rgba(252, 252, 252, 0.12);
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.6), 0 0 40px rgba(255, 255, 255, 0.04);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.dynk-card-face::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 55%);
  pointer-events: none;
}

.dynk-card-3d:hover .dynk-card-face {
  transform: rotateY(-10deg) rotateX(5deg) translateY(-4px);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.7), 0 0 50px rgba(255, 255, 255, 0.06);
}

.dynk-card-logo {
  position: absolute;
  top: 18px;
  left: 20px;
}

.dynk-card-logo img {
  width: 72px;
  filter: brightness(10) saturate(0);
  opacity: 0.9;
}

.dynk-card-chip {
  width: 34px;
  height: 26px;
  background: linear-gradient(135deg, #c8a84b, #e8c568, #a5803e);
  border-radius: 5px;
  position: absolute;
  bottom: 46px;
  left: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.dynk-card-chip::after {
  content: "";
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 2px;
}

.dynk-card-nfc {
  position: absolute;
  bottom: 18px;
  right: 18px;
  color: rgba(252, 252, 252, 0.65);
  font-size: 18px;
  transform: rotate(90deg);
}


/* ── COMPONENT: WEF CAROUSEL ────────────────────────────────── */
.wef-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border: 1px solid rgba(252, 252, 252, 0.12);
  border-radius: 999px;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--mist);
  background: rgba(252, 252, 252, 0.04);
}

.wef-title {
  margin: 0;
  font-size: clamp(32px, 6vw, 68px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.03;
}

.wef-sub {
  margin: 0 auto;
  font-size: clamp(14px, 1.6vw, 17px);
  color: var(--mist);
  max-width: 560px;
  line-height: 1.7;
}

.wef-stage {
  display: flex;
  align-items: center;
  gap: 16px;
}

.wef-quote-frame {
  flex: 1;
  min-height: 240px;
  padding: clamp(28px, 4vw, 52px);
  border-radius: 24px;
  border: 1px solid rgba(252, 252, 252, 0.07);
  background: linear-gradient(160deg, rgba(252, 252, 252, 0.04), rgba(252, 252, 252, 0.01));
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  transition: opacity 0.3s ease;
}

.wef-quote-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(252, 252, 252, 0.03), transparent);
  pointer-events: none;
}

.wef-quote-frame.is-fading {
  opacity: 0;
}

.wef-deco-quote {
  font-size: 160px;
  line-height: 0.5;
  color: rgba(252, 252, 252, 0.05);
  font-family: Georgia, "Times New Roman", serif;
  position: absolute;
  top: 28px;
  left: 28px;
  pointer-events: none;
  user-select: none;
}

.wef-quote-text {
  margin: 0;
  font-size: clamp(16px, 2.4vw, 22px);
  line-height: 1.65;
  font-weight: 400;
  color: rgba(252, 252, 252, 0.88);
  font-style: italic;
  position: relative;
  z-index: 1;
}

.wef-quote-author {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--mist);
  position: relative;
  z-index: 1;
}

.wef-btn {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(252, 252, 252, 0.12);
  background: rgba(10, 10, 10, 0.7);
  color: var(--paper);
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 13px;
  flex-shrink: 0;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.wef-btn:hover {
  border-color: rgba(252, 252, 252, 0.36);
  box-shadow: 0 0 24px rgba(252, 252, 252, 0.08);
  transform: scale(1.06);
}

.wef-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.wef-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(252, 252, 252, 0.18);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.3s ease, width 0.3s ease;
}

.wef-dot.is-active {
  background: rgba(252, 252, 252, 0.75);
  width: 20px;
}



/* ── COMPONENT: FOUNDER BOARD ───────────────────────────────── */
.board-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-top: 6px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mist);
}

.board-legend-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.board-legend-swatch {
  width: 12px;
  height: 12px;
  border-radius: 3px;
  border: 1px solid rgba(252, 252, 252, 0.28);
  background: rgba(252, 252, 252, 0.06);
}

.board-legend-swatch.sold {
  background: rgba(64, 214, 140, 0.55);
  border-color: rgba(64, 214, 140, 0.65);
}

/* Board stats row */
.board-stats-row {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 28px 0 20px;
}

.board-stat-big {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 72px;
}

.board-stat-right {
  text-align: right;
}

.board-stat-num {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  color: var(--paper);
}

.board-stat-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--mist);
}

.board-progress-wrap {
  flex: 1;
  display: grid;
  gap: 9px;
}

.board-progress-bar {
  height: 5px;
  border-radius: 999px;
  background: rgba(252, 252, 252, 0.08);
  overflow: hidden;
}

.board-progress-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(64, 214, 140, 0.6), rgba(64, 214, 140, 0.9));
  width: 0%;
  transition: width 1.4s ease;
}

.board-progress-label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mist);
  text-align: center;
}

/* Board grid */
.board-grid-wrap {
  border-radius: 20px;
  padding: 20px;
  background: rgba(252, 252, 252, 0.02);
  border: 1px solid rgba(252, 252, 252, 0.07);
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.board-grid-static {
  display: grid;
  grid-template-columns: repeat(40, 1fr);
  gap: 4px;
}

.board-tile-static {
  aspect-ratio: 1;
  border-radius: 3px;
  background: rgba(252, 252, 252, 0.06);
  border: 1px solid rgba(252, 252, 252, 0.1);
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  cursor: default;
}

.board-tile-static:hover {
  background: rgba(252, 252, 252, 0.18);
  border-color: rgba(252, 252, 252, 0.4);
  z-index: 2;
}

.board-tile-static::after {
  content: attr(data-num);
  position: absolute;
  bottom: calc(100% + 5px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(8, 8, 8, 0.94);
  border: 1px solid rgba(252, 252, 252, 0.18);
  border-radius: 6px;
  padding: 4px 7px;
  font-size: 9px;
  letter-spacing: 0.14em;
  font-family: "Montserrat", sans-serif;
  color: var(--paper);
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.12s ease;
  z-index: 10;
}

.board-tile-static:hover::after {
  opacity: 1;
}

.board-tile-static.is-sold {
  background: rgba(64, 214, 140, 0.5);
  border-color: rgba(64, 214, 140, 0.6);
  box-shadow: 0 0 5px rgba(64, 214, 140, 0.2);
}

.board-tile-static.is-sold:hover {
  background: rgba(64, 214, 140, 0.75);
  border-color: rgba(64, 214, 140, 0.85);
}

.board-tile-static.is-selected {
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(255, 255, 255, 1);
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

/* Legacy board styles (kept for compatibility) */
.board-shell {
  position: relative;
  border-radius: 26px;
  padding: clamp(12px, 2vw, 20px);
  border: none;
  background: transparent;
  box-shadow: none;
  overflow: hidden;
  width: 100%;
}

.board-shell::after { content: none; }

.board-shell.is-locked .board-viewport {
  filter: saturate(0.85) brightness(0.92);
}

.board-viewport {
  position: relative;
  width: 100%;
  height: auto;
  border-radius: 20px;
  overflow: hidden;
  background: transparent;
  z-index: 1;
}

.board-shell.is-active .board-viewport { cursor: grab; }
.board-shell.is-active .board-viewport:active { cursor: grabbing; }

.board-canvas {
  position: absolute;
  left: 50%;
  top: 50%;
  transform-origin: 0 0;
  will-change: transform;
}

.board-grid {
  display: grid;
  gap: 0;
  background: transparent;
}

.board-tile {
  width: var(--board-tile, 14px);
  height: var(--board-tile, 14px);
  border-radius: 0;
  border: 1px solid rgba(252, 252, 252, 0.22);
  background: rgba(252, 252, 252, 0.06);
  color: var(--paper);
  font-size: var(--board-label, 7px);
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 0 0.5px rgba(0, 0, 0, 0.3);
  user-select: none;
  overflow: hidden;
}

.board-tile[data-status="available"] { background: rgba(252, 252, 252, 0.06); }
.board-tile[data-status="sold"]      { background: rgba(64, 214, 140, 0.55); }

.board-tile.is-empty {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  pointer-events: none;
}

.board-grid.is-compact .board-tile span { display: none; }

.board-overlay { display: none; }
.board-overlay span { display: block; }

.board-overlay small {
  display: block;
  margin-top: 10px;
  font-size: 10px;
  letter-spacing: 0.24em;
  color: var(--mist);
}

.board-shell.is-active .board-overlay { display: none; }


/* ── COMPONENT: MODALS ──────────────────────────────────────── */
.modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: radial-gradient(
    120% 120% at 50% 10%,
    rgba(252, 252, 252, 0.08),
    rgba(8, 8, 8, 0.85) 50%,
    rgba(2, 2, 2, 0.95) 100%
  );
  backdrop-filter: blur(8px);
  z-index: 40;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal-card {
  width: min(92vw, 440px);
  border-radius: 22px;
  border: 1px solid rgba(252, 252, 252, 0.2);
  background: linear-gradient(160deg, #20211f, #060606);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  padding: 22px;
  position: relative;
  opacity: 0;
  transform: translateY(18px) scale(0.98);
  transition: transform 0.45s ease, opacity 0.45s ease;
}

.modal.is-open .modal-card {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.modal-kicker {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--mist);
}

.modal-card h3 {
  margin: 10px 0 12px;
  font-size: 20px;
  letter-spacing: 0.08em;
}

.modal-card p {
  margin: 0;
  color: var(--mist);
  line-height: 1.6;
  font-size: 14px;
}

.wallet-modal .modal-card {
  width: min(94vw, 520px);
  padding: 40px 24px 24px;
  border: 1px solid rgba(252, 252, 252, 0.2);
  background: linear-gradient(160deg, #20211f, #060606);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.modal-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: grid;
  gap: 10px;
}

.modal-list li {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(252, 252, 252, 0.12);
  background: rgba(252, 252, 252, 0.03);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
}

.modal-list span {
  color: var(--mist);
}

.modal-email {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(252, 252, 252, 0.22);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--paper);
  background: linear-gradient(120deg, rgba(16, 16, 16, 0.9), #050505);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.modal-email:hover {
  border-color: var(--glow);
  box-shadow: 0 0 28px rgba(252, 252, 252, 0.12);
  transform: translateY(-1px);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(252, 252, 252, 0.2);
  background: rgba(8, 8, 8, 0.7);
  color: var(--paper);
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 14px;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.2s ease;
}

.modal-close:hover {
  border-color: rgba(252, 252, 252, 0.45);
  background: rgba(30, 30, 30, 0.9);
  transform: scale(1.08);
}


/* ── COMPONENT: FOUNDER TEASER (available pattern) ──────────── */
.founder-teaser {
  padding: clamp(60px, 10vw, 120px) clamp(24px, 6vw, 80px);
  display: flex;
  align-items: center;
  gap: clamp(40px, 7vw, 100px);
  max-width: 1100px;
  margin: 0 auto;
}

.founder-teaser-copy {
  flex: 1;
}

.founder-teaser-stats {
  display: flex;
  gap: 32px;
  margin: 28px 0 36px;
}

.founder-teaser-stats .stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.founder-teaser-stats .stat strong {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--paper);
}

.founder-teaser-stats .stat span {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(252, 252, 252, 0.7);
}

.founder-teaser-badge {
  flex: 0 0 auto;
  position: relative;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ftb-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(252, 252, 252, 0.1);
  animation: ftbSpin 18s linear infinite;
}

.ftb-ring::after {
  content: "";
  position: absolute;
  top: -3px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(252, 252, 252, 0.5);
}

.ftb-inner {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(252, 252, 252, 0.08), rgba(252, 252, 252, 0.02));
  border: 1px solid rgba(252, 252, 252, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ftb-inner img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  opacity: 0.85;
}


/* ── RESPONSIVE: COMPONENTS ─────────────────────────────────── */
@media (hover: none), (pointer: coarse) {
  .circle-flip,
  .circle-flip.is-flipped {
    transform: none !important;
  }

  .circle-face.back {
    display: none;
  }
}

@media (max-width: 1100px) {
  .wef-btn {
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 900px) {
  .hero-media img {
    width: min(100%, 520px);
  }

  .circle-shell {
    margin: 0 auto;
    justify-self: center;
    transform: none;
  }

  .wef-title {
    font-size: clamp(28px, 5vw, 52px);
  }

  .board-viewport {
    height: clamp(220px, 68vw, 420px);
  }

  .stats {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }

  .agent-video-col,
  .agent-copy-col {
    width: min(100%, 560px);
  }

  .agent-video-wrap {
    aspect-ratio: 9 / 16;
    max-height: 46svh;
    width: 100%;
  }

  .agent-copy-col {
    min-height: 420px;
    padding-bottom: 30px;
  }

  .agent-phase {
    top: 0;
    transform: none;
    gap: 18px;
  }

  .agent-phase.is-hidden {
    transform: translateY(24px);
  }

  .agent-copy-col .showcase-title {
    font-size: clamp(28px, 7vw, 42px);
  }

  .agent-copy-col .lead {
    max-width: none;
    font-size: clamp(15px, 2.6vw, 18px);
  }

  .agent-feat-list li {
    font-size: 13px;
    line-height: 1.45;
  }

  .agent-scrub-bar {
    bottom: 0;
  }

  .board-grid-static {
    grid-template-columns: repeat(32, 1fr);
    gap: 3px;
  }
}

@media (max-width: 860px) {
  .dynk-card-3d {
    width: 240px;
    height: 150px;
  }
}

@media (max-width: 700px) {
  .hero {
    gap: 16px;
  }

  .lead {
    max-width: 100%;
  }

  .hero-media img,
  .phone-media img {
    animation: none;
  }

  .cta {
    padding: 12px 22px;
    letter-spacing: 0.22em;
  }

  .stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 12px;
    text-align: center;
  }

  .stat {
    padding: 10px 8px;
  }

  .stat strong {
    font-size: 16px;
  }

  .stat span {
    font-size: 9px;
    letter-spacing: 0.12em;
  }

  .showcase-accordion {
    gap: 10px;
  }

  .showcase-toggle {
    flex-direction: row;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    letter-spacing: 0.16em;
    padding-left: 20px;
    padding-right: 38px;
    min-height: 44px;
  }

  .showcase-toggle span {
    margin-left: auto;
  }

  .showcase-item:not(.is-open) .showcase-toggle {
    min-height: 44px;
    padding-top: 0;
    padding-bottom: 0;
    transform: translateY(0);
  }

  .showcase-panel {
    font-size: 12px;
    line-height: 1.55;
    padding-left: 14px;
    padding-right: 14px;
  }

  .feature-track {
    grid-auto-columns: minmax(220px, 80%);
  }

  .circle-shell {
    --radius: clamp(120px, 32vw, 180px);
    --item: clamp(64px, 16vw, 90px);
    --icon: clamp(46px, 12vw, 64px);
    width: min(92vw, calc((var(--radius) * 2) + var(--item)));
    height: auto;
    aspect-ratio: 1 / 1;
    display: grid;
    place-items: center;
    justify-self: center;
    margin: 0 auto;
    transform: none;
  }

  .circle-shell .orbit {
    transform: translateY(10px);
  }

  .circle-ring {
    transform: translate(-50%, -48%);
  }

  .circle-shell {
    display: grid;
  }

  .circle-mobile-hint {
    display: block;
  }

  .circle-list {
    display: none;
  }

  .phone-media {
    display: none;
  }

  .showcase-modal-trigger {
    display: inline-flex;
  }

  .circle-item {
    display: grid;
    place-items: center;
  }

  .circle-icon {
    margin-bottom: 0;
  }

  .circle-label {
    position: absolute;
    left: 50%;
    top: calc(100% + 2px);
    transform: translateX(-50%);
    font-size: 10px;
    letter-spacing: 0.12em;
    line-height: 1.1;
    white-space: nowrap;
  }

  /* Labels for items on the upper half of the circle */
  .circle-item[style*="--i: 0"] .circle-label,
  .circle-item[style*="--i: 1"] .circle-label,
  .circle-item[style*="--i: 2"] .circle-label,
  .circle-item[style*="--i: 8"] .circle-label,
  .circle-item[style*="--i: 9"] .circle-label {
    top: auto;
    bottom: calc(100% + 2px);
  }

  .circle-face.front img {
    width: min(160px, 46vw);
    transform: translateY(4px);
  }

  .circle-back {
    width: min(300px, 88%);
    height: min(260px, 70%);
    padding: 18px;
  }

  .circle-back-inner {
    gap: 10px;
  }

  .wef-stage {
    gap: 10px;
  }

  .wef-btn {
    width: 40px;
    height: 40px;
    font-size: 12px;
  }

  .wef-quote-frame {
    min-height: 200px;
    padding: 24px 20px;
  }

  .modal-card {
    padding: 18px;
  }

  .modal-kicker {
    margin-bottom: 6px;
  }

  .modal-card h3 {
    margin: 6px 0 10px;
  }

  .modal-card p {
    margin: 0 0 12px;
  }

  .circle-quote {
    margin-top: 10px;
  }

  .circle-quote-meta {
    margin-top: 6px;
  }

  .scroll-card {
    border-color: rgba(252, 252, 252, 0.14);
    background: rgba(252, 252, 252, 0.04);
  }

  .scroll-card h3 {
    color: rgba(252, 252, 252, 0.82);
  }

  .scroll-card-tag {
    color: rgba(252, 252, 252, 0.65);
  }

  .scroll-card .scroll-card-body,
  .scroll-card.is-scroll-active .scroll-card-body {
    max-height: none;
    opacity: 1;
    margin-top: 14px;
  }

  .board-grid-static {
    grid-template-columns: repeat(20, 1fr);
    gap: 3px;
  }

  .board-stats-row {
    gap: 16px;
  }

  .board-grid-wrap {
    padding: 14px;
  }

  .agent-copy-col {
    min-height: 460px;
    padding-bottom: 26px;
  }

  .agent-copy-col--static {
    min-height: auto;
    padding-bottom: 0;
  }

  .agent-phase {
    gap: 16px;
  }

  .agent-video-wrap {
    max-height: 42svh;
    border-radius: 0;
  }

  .agent-feat-list {
    gap: 10px;
  }

  .founder-teaser {
    flex-direction: column;
  }

  .founder-teaser-badge {
    display: none;
  }
}

@media (max-width: 520px) {
  .cta {
    font-size: 11px;
    letter-spacing: 0.18em;
  }

  .showcase-toggle {
    font-size: 10px;
    letter-spacing: 0.14em;
  }

  .footer-title {
    letter-spacing: 0.2em;
  }

  .board-overlay {
    font-size: 11px;
    letter-spacing: 0.18em;
  }

  .board-overlay small {
    letter-spacing: 0.14em;
  }

  .board-grid-static {
    grid-template-columns: repeat(16, 1fr);
    gap: 2px;
  }

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

  .agent-video-col,
  .agent-copy-col {
    width: 100%;
  }

  .agent-video-wrap {
    max-height: 38svh;
  }

  .agent-copy-col {
    min-height: 500px;
  }

  .agent-copy-col--static {
    min-height: auto;
  }

  .agent-phase {
    gap: 14px;
  }

  .agent-feat-list li {
    align-items: flex-start;
    gap: 12px;
  }

  .agent-feat-icon {
    width: 28px;
    height: 28px;
    font-size: 10px;
  }
}

@media (max-width: 420px) {
  .circle-shell {
    --radius: clamp(120px, 36vw, 170px);
    --item: clamp(70px, 19vw, 96px);
    --icon: clamp(48px, 14vw, 66px);
  }

  .circle-label {
    font-size: 8px;
    letter-spacing: 0.1em;
  }

  .wef-btn {
    width: 36px;
    height: 36px;
  }

}

@media (prefers-reduced-motion: reduce) {
  .scroll-card .scroll-card-body {
    max-height: none;
    opacity: 1;
    margin-top: 14px;
  }

  .scroll-card {
    border-color: rgba(252, 252, 252, 0.14);
    background: rgba(252, 252, 252, 0.04);
  }

  .scroll-card h3 {
    color: rgba(252, 252, 252, 0.82);
  }

  .scroll-card-tag {
    color: rgba(252, 252, 252, 0.65);
  }

  .agent-section {
    grid-template-columns: 1fr;
    padding: 0;
  }

  .agent-copy-col {
    min-height: auto;
  }

  .agent-phase {
    position: static;
    transform: none;
  }

  .agent-phase.is-hidden {
    display: none;
  }

  .agent-video-wrap {
    aspect-ratio: 16 / 9;
    max-height: none;
  }
}
