:root {
  --ink: #080909;
  --surface: #101112;
  --surface-2: #151719;
  --line: #2a2d30;
  --line-light: #3b3f43;
  --text: #f1f2f2;
  --muted: #94999e;
  --metal: #c3c7ca;
  --mint: #79d8c4;
  --violet: #aeb1d9;
  --error: #ff8c80;
}

* { box-sizing: border-box; }

html { background: var(--ink); }

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  color: var(--text);
  background:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px),
    var(--ink);
  background-size: 48px 48px;
  font-family: "Archivo", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

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

.site-shell {
  width: min(1500px, 100%);
  min-height: 100vh;
  margin: 0 auto;
  padding: 0 42px;
}

.topbar {
  height: 78px;
  display: grid;
  grid-template-columns: 1fr auto auto 1fr;
  gap: 18px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  text-decoration: none;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
}

.brand img { width: 34px; height: 34px; object-fit: cover; }

nav { display: flex; gap: 34px; }
nav a, .panel-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
}
nav a:hover, .panel-links a:hover { color: var(--text); }
.nav-coming-soon {
  display: grid;
  gap: 3px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  cursor: default;
  user-select: none;
}
.nav-coming-soon small {
  width: fit-content;
  padding: 2px 6px;
  background: #e32219;
  color: #fff;
  clip-path: polygon(3% 13%, 96% 0, 100% 84%, 4% 100%, 0 58%);
  font: 700 0.48rem/1.25 "Barlow Condensed", sans-serif;
  letter-spacing: 0.05em;
  transform: rotate(-2deg);
}
.mobile-menu { display: none; }

.network {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--metal);
  font-size: 0.75rem;
  text-transform: uppercase;
}

.network i, .live-pill i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 12px rgba(121,216,196,0.72);
}

.mint-layout {
  min-height: calc(100vh - 142px);
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(360px, 0.65fr);
  align-items: stretch;
  gap: 0;
}

.product {
  position: relative;
  min-height: 690px;
  padding: 72px 6vw 48px 0;
  display: grid;
  grid-template-rows: auto 1fr;
  border-right: 1px solid var(--line);
  overflow: hidden;
}

.product::after {
  content: "212";
  position: absolute;
  right: 1vw;
  top: 42%;
  color: rgba(255,255,255,0.025);
  font: 700 25rem/0.7 "Barlow Condensed", sans-serif;
  pointer-events: none;
}

.kicker, .panel-kicker {
  margin: 0;
  color: var(--muted);
  font: 600 0.7rem/1.3 "Archivo", sans-serif;
  text-transform: uppercase;
}

h1 {
  margin: 16px 0 20px;
  font: 600 clamp(4.4rem, 7vw, 8.4rem)/0.78 "Barlow Condensed", sans-serif;
  text-transform: uppercase;
}

h1 span {
  color: transparent;
  -webkit-text-stroke: 1px var(--line-light);
}

.intro {
  width: min(560px, 90%);
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.75;
}
.launch-milestone {
  display: flex;
  align-items: center;
  gap: 11px;
  width: fit-content;
  margin: 20px 0 0;
  color: var(--metal);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
}
.launch-milestone span {
  padding: 5px 7px;
  border: 1px solid var(--mint);
  color: var(--mint);
  font-size: 0.56rem;
  letter-spacing: 0.08em;
}

.product-visual {
  position: relative;
  min-height: 370px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.box-art {
  position: relative;
  z-index: 2;
  width: min(570px, 78%);
  height: auto;
  margin-bottom: -42px;
  filter: drop-shadow(0 38px 44px rgba(0,0,0,0.75));
}

.edition-stamp {
  position: absolute;
  left: 0;
  bottom: 56px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--line-light);
}
.edition-stamp span { font: 600 3.6rem/1 "Barlow Condensed", sans-serif; }
.edition-stamp small { font-size: 0.55rem; line-height: 1.5; }

.mint-panel {
  align-self: center;
  margin: 46px 0 46px 46px;
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--line-light);
  border-radius: 6px;
  box-shadow: 0 26px 80px rgba(0,0,0,0.38);
}

.panel-head { display: flex; justify-content: space-between; align-items: flex-start; }
.panel-head h2, .modal h3 {
  margin: 6px 0 0;
  font: 600 2rem/1 "Barlow Condensed", sans-serif;
  text-transform: uppercase;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 9px;
  border: 1px solid var(--line);
  color: var(--metal);
  font-size: 0.65rem;
  text-transform: uppercase;
}

.supply-block { margin: 30px 0 26px; }
.supply-line { display: flex; justify-content: space-between; color: var(--muted); font-size: 0.72rem; }
.supply-line strong { color: var(--text); font-weight: 600; }
.progress { height: 3px; margin-top: 12px; background: #25282a; overflow: hidden; }
.progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--violet), var(--mint));
  transition: width 0.35s ease;
}

.mint-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 0 24px;
  border: 1px solid var(--line);
}
.mint-facts div { padding: 15px 12px; }
.mint-facts div + div { border-left: 1px solid var(--line); }
.mint-facts dt { margin-bottom: 7px; color: var(--muted); font-size: 0.62rem; text-transform: uppercase; }
.mint-facts dd { margin: 0; color: var(--metal); font-size: 0.82rem; font-weight: 600; }

.btn {
  width: 100%;
  min-height: 52px;
  border: 1px solid transparent;
  border-radius: 3px;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.1s ease;
}
.btn:active { transform: translateY(1px); }
.btn:disabled { cursor: not-allowed; opacity: 0.38; }
.btn.connect { background: transparent; border-color: var(--line-light); color: var(--text); }
.btn.connect:hover { border-color: var(--metal); }
.btn.mint { background: var(--text); color: var(--ink); }
.btn.mint:not(:disabled):hover { background: var(--mint); }

.disconnect-link {
  width: 100%;
  margin: 9px 0 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.68rem;
}
.disconnect-link:hover { color: var(--text); }
.hidden { display: none !important; }

.quantity-control {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 20px 0 12px;
  color: var(--muted);
  font-size: 0.72rem;
  text-transform: uppercase;
}
.stepper { display: grid; grid-template-columns: 35px 42px 35px; height: 35px; border: 1px solid var(--line-light); }
.qty-btn, #qtyDisplay { display: grid; place-items: center; min-width: 0; border: 0; background: transparent; color: var(--text); }
.qty-btn { cursor: pointer; font-size: 1rem; }
.qty-btn:hover { background: var(--surface-2); }
#qtyDisplay { border-inline: 1px solid var(--line-light); font-size: 0.78rem; }

.wallet-info, .status { min-height: 1.2em; margin: 10px 0 0; font-size: 0.72rem; line-height: 1.45; }
.wallet-info { color: var(--muted); }
.status { color: var(--mint); }
.status.error { color: var(--error); }

.trust-block { margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line); }
.trust-block p { margin: 7px 0; color: var(--muted); font-size: 0.67rem; line-height: 1.45; }
.trust-block span { color: var(--mint); margin-right: 7px; }
.breeding-entry {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 68px;
  margin-top: 20px;
  padding: 13px 15px;
  border: 1px solid var(--line-light);
  color: var(--text);
  text-decoration: none;
  text-transform: uppercase;
}
.breeding-entry span { display: grid; gap: 5px; font-size: 0.74rem; font-weight: 700; }
.breeding-entry small { color: var(--muted); font-size: 0.58rem; font-weight: 500; text-transform: uppercase; }
.breeding-entry strong { color: var(--mint); font-size: 0.63rem; font-weight: 600; white-space: nowrap; }
.coming-soon-card { cursor: default; user-select: none; background: rgba(121,216,196,0.025); }
.coming-soon-card strong {
  padding: 5px 9px;
  background: #e32219;
  color: #fff;
  clip-path: polygon(3% 13%, 96% 0, 100% 84%, 4% 100%, 0 58%);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  transform: rotate(-2deg);
}
.panel-links { display: flex; justify-content: space-between; margin-top: 22px; }
.panel-links a { font-size: 0.65rem; }
.sold-out-pill {
  color: var(--mint);
  border-color: rgba(125, 224, 202, 0.42);
  background: rgba(125, 224, 202, 0.08);
}
.soldout-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 18px;
}
.soldout-actions .btn {
  display: grid;
  place-items: center;
  min-height: 54px;
  text-decoration: none;
}
.soldout-secondary {
  color: var(--text);
  border: 1px solid var(--rule2);
  background: transparent;
}
.soldout-secondary:hover { border-color: var(--text); }

footer {
  min-height: 64px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-top: 1px solid var(--line);
  color: #666b70;
  font-size: 0.62rem;
  text-transform: uppercase;
}

footer > span:last-child { justify-self: end; }

.social-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid transparent;
  border-radius: 3px;
  transition: border-color 0.18s ease, background 0.18s ease, transform 0.1s ease;
}

.social-links a:hover {
  border-color: var(--line-light);
  background: var(--surface);
}

.social-links a:active { transform: translateY(1px); }

.social-links img {
  width: 16px;
  height: 16px;
  opacity: 0.62;
  filter: invert(1);
  transition: opacity 0.18s ease;
}

.social-links a:hover img { opacity: 1; }

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 10010;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(3,4,4,0.82);
  backdrop-filter: blur(10px);
}
.modal { width: min(360px, 100%); padding: 28px; background: var(--surface); border: 1px solid var(--line-light); border-radius: 6px; }
.modal h3 { margin-bottom: 22px; }
.wallet-list { display: grid; gap: 9px; }
.wallet-option, .modal-close {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: transparent;
  color: var(--text);
  cursor: pointer;
}
.wallet-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 13px;
  text-align: left;
  text-decoration: none;
}
.wallet-option:hover, .modal-close:hover { border-color: var(--metal); }
.wallet-monogram {
  display: grid;
  place-items: center;
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  border: 1px solid var(--line-light);
  border-radius: 7px;
  color: var(--text);
  font-weight: 700;
}
.wallet-m { background: #f6851b; color: #17110d; }
.wallet-c { background: #1652f0; color: #fff; border-radius: 50%; }
.wallet-t { background: #3375bb; color: #fff; }
.wallet-option-copy { display: grid; gap: 3px; flex: 1; }
.wallet-option-copy strong { font-size: 0.8rem; }
.wallet-option-copy small { color: var(--muted); font-size: 0.62rem; }
.wallet-option-action { color: var(--muted); font-size: 0.65rem; text-transform: uppercase; }
.modal-close { margin-top: 14px; color: var(--muted); }

@media (max-width: 980px) {
  .site-shell { padding: 0 22px; }
  .topbar { grid-template-columns: 1fr auto auto; gap: 18px; }
  .topbar nav { display: flex; }
  .topbar .nav-opensea { display: none; }
  .mint-layout { grid-template-columns: 1fr; }
  .product { min-height: 640px; padding: 54px 0 30px; border-right: 0; }
  .product-visual { min-height: 330px; }
  .box-art { width: min(500px, 72%); }
  .mint-panel { width: min(560px, 100%); margin: 0 auto 60px; }
}

@media (max-width: 600px) {
  .site-shell { padding: 0 16px; }
  .site-shell, .mint-layout, .product { width: 100%; max-width: 100%; overflow-x: hidden; }
  .topbar { position: relative; z-index: 20; height: 64px; grid-template-columns: 1fr auto; }
  .network { display: none; }
  .network i { width: 8px; height: 8px; }
  .brand img { width: 30px; height: 30px; }
  .topbar { gap: 12px; }
  .topbar > nav { display: none; }
  .mobile-menu { display: block; position: relative; }
  .mobile-menu summary { width: 38px; height: 38px; display: grid; place-content: center; gap: 4px; border: 1px solid var(--line); cursor: pointer; list-style: none; }
  .mobile-menu summary::-webkit-details-marker { display: none; }
  .mobile-menu summary span { display: block; width: 16px; height: 1px; background: var(--text); transition: transform 0.18s ease, opacity 0.18s ease; }
  .mobile-menu[open] summary span:first-child { transform: translateY(5px) rotate(45deg); }
  .mobile-menu[open] summary span:nth-child(2) { opacity: 0; }
  .mobile-menu[open] summary span:last-child { transform: translateY(-5px) rotate(-45deg); }
  .mobile-menu nav { position: absolute; top: 46px; right: 0; width: min(280px, calc(100vw - 32px)); display: grid; gap: 0; padding: 8px; border: 1px solid var(--line-light); background: #101112; box-shadow: 0 22px 55px rgba(0,0,0,0.65); }
  .mobile-coming-soon { display: grid; gap: 4px; padding: 15px 13px; color: var(--text); cursor: default; user-select: none; }
  .mobile-coming-soon + .mobile-coming-soon { border-top: 1px solid var(--line); }
  .mobile-menu nav a { display: grid; gap: 4px; padding: 15px 13px; color: var(--text); text-decoration: none; border-top: 1px solid var(--line); }
  .mobile-menu nav strong { font-size: 0.76rem; text-transform: uppercase; }
  .mobile-menu nav small { color: var(--muted); font-size: 0.58rem; text-transform: uppercase; letter-spacing: 0.08em; }
  .mobile-coming-soon small {
    width: fit-content;
    padding: 3px 8px;
    background: #e32219;
    color: #fff;
    clip-path: polygon(3% 13%, 96% 0, 100% 84%, 4% 100%, 0 58%);
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 700;
    transform: rotate(-2deg);
  }
  .mint-layout, .product, .product-copy { min-width: 0; }
  .product { min-height: 560px; padding-top: 42px; }
  .product h1 { font-size: 3.3rem; }
  .intro { width: calc(100vw - 32px); max-width: 330px; font-size: 0.86rem; }
  .product-visual { min-height: 275px; }
  .box-art { width: 88%; margin-bottom: -25px; }
  .edition-stamp { display: none; }
  .mint-panel { width: 100%; max-width: 100%; padding: 24px 20px; margin-bottom: 40px; }
  .mint-facts div { padding: 13px 8px; }
  footer {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding: 18px 0;
  }
  .social-links { grid-column: 1; grid-row: 2; justify-content: start; }
  footer > .legal-disclaimer-link { grid-column: 2; grid-row: 2; justify-self: end; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
/* Independent collection explorer */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.hidden { display: none !important; }
.modal-open { overflow: hidden; }
.nav-button { appearance: none; border: 0; background: none; color: inherit; font: inherit; cursor: pointer; padding: 0; }
.topbar nav .nav-active { color: #fff; }
.collection-main { max-width: 1480px; margin: 0 auto; padding: 72px 42px 90px; }
.collection-hero { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(360px, .75fr); gap: 72px; align-items: end; min-height: 420px; padding: 56px 0 68px; border-bottom: 1px solid rgba(255,255,255,.12); }
.collection-hero h1 { margin: 12px 0 18px; font: 600 clamp(68px, 8vw, 128px)/.78 "Barlow Condensed", sans-serif; letter-spacing: -.055em; text-transform: uppercase; }
.collection-hero h1 span { color: #96a4a3; }
.collection-hero .platform-wordmark {
  display: grid;
  justify-items: stretch;
  gap: .055em;
  width: 2.55em;
  margin: 18px 0 28px;
  font-size: clamp(118px, 13vw, 205px);
  font-weight: 700;
  line-height: .82;
  letter-spacing: 0;
}
.platform-wordmark span {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  width: 100%;
  color: inherit !important;
  background: none;
  filter: none;
}
.platform-wordmark b {
  display: block;
  min-width: 0;
  text-align: center;
  font: inherit;
  color: #fff;
  background: none;
  -webkit-text-fill-color: #fff;
  -webkit-text-stroke: 1px rgba(18,20,20,.82);
  transform: scaleX(1.58);
  transform-origin: center;
  filter:
    drop-shadow(0 2px 0 #0b0d0d)
    drop-shadow(0 5px 0 #343839)
    drop-shadow(0 12px 18px rgba(0,0,0,.68));
}
.platform-wordmark span:nth-child(1) b:nth-child(2),
.platform-wordmark span:nth-child(2) b:nth-child(2) {
  background: none;
}
.platform-wordmark span:nth-child(1) b:nth-child(3),
.platform-wordmark span:nth-child(2) b:nth-child(3) {
  background: none;
}
.platform-wordmark span:nth-child(3) b {
  background: none;
}
.platform-identity .intro { max-width: 620px; }
.collection-hero .intro { max-width: 720px; }
.contract-chip { display: inline-flex; align-items: center; gap: 10px; margin-top: 24px; padding: 10px 14px; border: 1px solid rgba(255,255,255,.14); border-radius: 999px; background: rgba(255,255,255,.035); color: #cad0cf; font-size: 12px; }
.contract-chip i { width: 7px; height: 7px; border-radius: 50%; background: #8bbf9b; box-shadow: 0 0 12px #8bbf9b; }
.contract-chip code { color: #fff; font-family: inherit; }
.collection-stats { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid rgba(255,255,255,.12); background: linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.015)); }
.collection-stats div { min-width: 0; padding: 28px 22px; border-right: 1px solid rgba(255,255,255,.1); }
.collection-stats div:last-child { border-right: 0; }
.collection-stats span, .collection-stats small { display: block; color: #7d8584; font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.collection-stats strong { display: block; margin: 8px 0; font: 600 38px/1 "Barlow Condensed", sans-serif; color: #f2f3f3; }
.collection-browser { padding-top: 70px; }
.browser-heading { display: flex; align-items: end; justify-content: space-between; gap: 24px; }
.browser-heading h2 { margin: 4px 0 0; font: 600 52px/1 "Barlow Condensed", sans-serif; text-transform: uppercase; }
.collection-connect { width: auto; min-width: 164px; padding-inline: 24px; }
.collection-toolbar { display: grid; grid-template-columns: minmax(260px, 1fr) auto auto; gap: 12px; margin: 30px 0 18px; }
.collection-search input, .sort-control { height: 52px; border: 1px solid rgba(255,255,255,.13); background: #101212; color: #f5f5f5; }
.collection-search input { width: 100%; padding: 0 18px; font: 500 14px "Archivo", sans-serif; outline: none; }
.collection-search input:focus { border-color: #809492; box-shadow: 0 0 0 3px rgba(128,148,146,.13); }
.filter-tabs { display: flex; border: 1px solid rgba(255,255,255,.13); padding: 4px; background: #101212; }
.filter-tabs button { border: 0; padding: 0 17px; background: transparent; color: #7f8786; font: 600 12px "Archivo", sans-serif; cursor: pointer; }
.filter-tabs button.active { background: #e7eae9; color: #090a0a; }
.filter-tabs span { margin-left: 5px; opacity: .6; }
.sort-control { display: flex; align-items: center; padding: 0 14px; gap: 10px; }
.sort-control span { color: #777f7e; font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.sort-control select { border: 0; background: transparent; color: #f5f5f5; font: 600 12px "Archivo", sans-serif; outline: none; }
.index-notice { display: flex; align-items: center; gap: 12px; min-height: 56px; padding: 10px 16px; border: 1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.025); }
.index-notice p { margin: 0; }
.index-notice strong, .index-notice small { display: block; }
.index-notice strong { color: #dce0df; font-size: 12px; }
.index-notice small { color: #6f7776; margin-top: 3px; }
.index-pulse { width: 8px; height: 8px; border-radius: 50%; background: #98a7a5; animation: pulse 1.2s infinite alternate; }
.index-ok { color: #8bbf9b; font-weight: 700; }
.index-warning { color: #d4a96a; font-weight: 700; }
@keyframes pulse { to { opacity: .25; } }
.token-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; margin-top: 18px; }
.token-card { min-width: 0; padding: 0; border: 1px solid rgba(255,255,255,.1); background: #0c0e0e; color: #fff; text-align: left; cursor: pointer; transition: transform .2s ease, border-color .2s ease, background .2s ease; overflow: hidden; }
.token-card:hover, .token-card:focus-visible { transform: translateY(-3px); border-color: rgba(171,187,184,.45); background: #121515; outline: none; }
.token-card-media { display: block; aspect-ratio: 1; overflow: hidden; background: radial-gradient(circle at 50% 35%, #222726, #090a0a 72%); }
.token-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.token-card:hover img { transform: scale(1.025); }
.token-card-copy { display: block; padding: 16px; }
.token-card-copy small, .token-card-copy strong, .token-card-copy span { display: block; }
.token-card-copy small { color: #77807f; font-size: 9px; letter-spacing: .15em; text-transform: uppercase; }
.token-card-copy strong { margin: 7px 0 12px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font: 600 23px/1 "Barlow Condensed", sans-serif; text-transform: uppercase; }
.token-card-copy span { color: #868e8d; font-size: 11px; }
.empty-state { padding: 80px 0; color: #78807f; text-align: center; }
.token-overlay { padding: 30px; overflow-y: auto; }
.token-modal { position: relative; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr); width: min(1120px, 100%); margin: auto; border: 1px solid rgba(255,255,255,.16); background: #0b0d0d; box-shadow: 0 35px 100px #000; }
.token-modal-close { position: absolute; z-index: 2; top: 16px; right: 16px; width: 40px; height: 40px; border: 1px solid rgba(255,255,255,.18); background: rgba(8,9,9,.8); color: #fff; font-size: 24px; cursor: pointer; }
.token-modal-media { min-height: 620px; background: radial-gradient(circle at 50% 35%, #252a29, #080909 72%); }
.token-modal-media img { width: 100%; height: 100%; object-fit: cover; }
.token-modal-copy { padding: 54px 48px 44px; }
.token-modal-copy h2 { margin: 6px 0 14px; font: 600 56px/.9 "Barlow Condensed", sans-serif; text-transform: uppercase; }
.token-description { color: #929a99; line-height: 1.6; }
.token-provenance { margin: 26px 0; border-top: 1px solid rgba(255,255,255,.1); }
.token-provenance div { display: flex; justify-content: space-between; gap: 24px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.token-provenance dt { color: #6f7776; }
.token-provenance dd { margin: 0; color: #dadddc; }
.attribute-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.attribute-grid div { padding: 12px; border: 1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.025); }
.attribute-grid small, .attribute-grid strong { display: block; }
.attribute-grid small { color: #697170; font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
.attribute-grid strong { margin-top: 5px; font-size: 12px; }
.token-actions { display: grid; gap: 10px; margin-top: 26px; }
.token-actions .btn { text-align: center; text-decoration: none; }
.secondary-action { display: block; padding: 12px; color: #aab2b1; text-align: center; text-decoration: none; font-size: 12px; }
.marketplace-preview { margin-top: 22px; padding: 16px; border-left: 2px solid #64706f; background: rgba(255,255,255,.03); }
.marketplace-preview span, .marketplace-preview strong, .marketplace-preview small { display: block; }
.marketplace-preview span { color: #747c7b; font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.marketplace-preview strong { margin: 6px 0; font-size: 13px; }
.marketplace-preview small { color: #747c7b; line-height: 1.45; }
@media (max-width: 1050px) {
  .collection-hero { grid-template-columns: 1fr; gap: 38px; }
  .token-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .token-modal { grid-template-columns: 1fr 1fr; }
  .token-modal-media { min-height: 520px; }
}
@media (max-width: 760px) {
  .collection-main { padding: 34px 18px 60px; }
  .collection-hero { min-height: 0; padding: 30px 0 44px; }
  .collection-hero h1 { font-size: clamp(58px, 20vw, 88px); }
  .collection-hero .platform-wordmark {
    margin: 16px 0 26px;
    font-size: clamp(104px, 34vw, 142px);
    line-height: .84;
    gap: .06em;
  }
  .collection-stats { grid-template-columns: 1fr 1fr; }
  .collection-stats div:last-child { grid-column: 1 / -1; border-top: 1px solid rgba(255,255,255,.1); }
  .collection-toolbar { grid-template-columns: 1fr; }
  .filter-tabs { height: 48px; }
  .filter-tabs button { flex: 1; }
  .sort-control { justify-content: space-between; }
  .token-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
  .token-card-copy { padding: 12px; }
  .token-card-copy strong { font-size: 19px; }
  .browser-heading { align-items: stretch; flex-direction: column; }
  .collection-connect { width: 100%; }
  .token-overlay { padding: 0; align-items: flex-start; }
  .token-modal { display: block; width: 100%; min-height: 100%; border: 0; }
  .token-modal-media { min-height: 0; aspect-ratio: 1; }
  .token-modal-copy { padding: 32px 20px 50px; }
}
@media (max-width: 560px) {
  .soldout-actions { grid-template-columns: 1fr; }
}

/* On-demand official COA desk */
.coa-main { max-width: 1260px; margin: 0 auto; padding: 88px 42px 110px; }
.coa-intro { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr); gap: 86px; align-items: end; padding: 28px 0 76px; border-bottom: 1px solid rgba(255,255,255,.12); }
.coa-intro h1 { margin: 18px 0 28px; font-size: clamp(78px, 10vw, 152px); letter-spacing: -.045em; }
.coa-intro h1 span { color: #fff; -webkit-text-stroke: 0; }
.coa-steps { margin: 0; padding: 0; list-style: none; border: 1px solid rgba(255,255,255,.13); background: rgba(255,255,255,.025); }
.coa-steps li { display: grid; grid-template-columns: 52px 110px 1fr; gap: 12px; align-items: center; min-height: 76px; padding: 14px 18px; border-bottom: 1px solid rgba(255,255,255,.1); }
.coa-steps li:last-child { border-bottom: 0; }
.coa-steps li > span { color: var(--mint); font: 600 28px/1 "Barlow Condensed", sans-serif; }
.coa-steps strong { text-transform: uppercase; font-size: 13px; }
.coa-steps small { color: var(--muted); line-height: 1.45; }
.coa-claim { padding-top: 70px; }
.coa-claim-heading { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 26px; }
.coa-claim-heading h2 { margin: 5px 0 0; font: 600 54px/1 "Barlow Condensed", sans-serif; text-transform: uppercase; }
.coa-service-level { display: grid; gap: 4px; color: var(--muted); font-size: 10px; letter-spacing: .12em; text-align: right; text-transform: uppercase; }
.coa-service-level strong { color: var(--mint); font-size: 13px; }
.coa-request-panel { width: min(760px, 100%); padding: 28px; border: 1px solid rgba(255,255,255,.14); background: linear-gradient(145deg, rgba(255,255,255,.05), rgba(255,255,255,.015)); }
.coa-status, .coa-proof { display: flex; gap: 14px; align-items: center; margin-bottom: 22px; padding: 15px; border: 1px solid rgba(255,255,255,.1); background: #0d0f0f; }
.coa-status > span, .coa-proof > span { display: grid; flex: 0 0 34px; width: 34px; height: 34px; place-items: center; border: 1px solid #555d5c; border-radius: 50%; color: #e8ebea; font: 600 16px "Barlow Condensed", sans-serif; }
.coa-status.success > span, .coa-proof > span { border-color: var(--mint); color: var(--mint); }
.coa-status.error > span { border-color: var(--error); color: var(--error); }
.coa-status p, .coa-proof p { margin: 0; }
.coa-status strong, .coa-status small, .coa-proof strong, .coa-proof small { display: block; }
.coa-status strong, .coa-proof strong { font-size: 13px; }
.coa-status small, .coa-proof small { margin-top: 4px; color: var(--muted); font-size: 11px; line-height: 1.45; }
.coa-primary { width: 100%; }
.coa-owned, .coa-submit { margin-top: 28px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.11); }
.coa-owned > label, .coa-submit > label { display: block; margin-bottom: 9px; color: var(--muted); font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.coa-owned select, .coa-submit input { width: 100%; height: 54px; padding: 0 15px; border: 1px solid rgba(255,255,255,.16); background: #0b0d0d; color: #fff; font: 600 13px "Archivo", sans-serif; }
.coa-token-preview { display: grid; grid-template-columns: 112px 1fr; gap: 18px; align-items: center; margin: 14px 0; padding: 12px; border: 1px solid rgba(255,255,255,.1); background: #0b0d0d; }
.coa-token-preview img { width: 112px; aspect-ratio: 1; object-fit: cover; background: #161919; }
.coa-token-preview small, .coa-token-preview strong, .coa-token-preview span { display: block; }
.coa-token-preview small { color: var(--muted); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.coa-token-preview strong { margin: 7px 0; font: 600 28px/1 "Barlow Condensed", sans-serif; text-transform: uppercase; }
.coa-token-preview span { color: var(--muted); font-size: 11px; }
.coa-text-button { display: block; margin: 14px auto 0; padding: 8px; border: 0; background: transparent; color: var(--metal); text-decoration: underline; cursor: pointer; }
.coa-fine-print { margin: 14px 0 0; color: #707776; font-size: 10px; line-height: 1.55; }
@media (max-width: 820px) {
  .coa-main { padding: 52px 18px 80px; }
  .coa-intro { grid-template-columns: 1fr; gap: 46px; padding-bottom: 52px; }
  .coa-intro h1 { font-size: clamp(72px, 25vw, 118px); }
  .coa-claim-heading { align-items: flex-start; flex-direction: column; }
  .coa-service-level { text-align: left; }
}
@media (max-width: 520px) {
  .coa-steps li { grid-template-columns: 42px 84px 1fr; padding-inline: 12px; }
  .coa-request-panel { padding: 18px; }
  .coa-token-preview { grid-template-columns: 84px 1fr; }
  .coa-token-preview img { width: 84px; }
}
