:root {
--color-bg:      var(--wp--preset--color--base);
--color-surface: var(--wp--preset--color--surface);
--color-text:    var(--wp--preset--color--contrast);
--color-accent:  var(--wp--preset--color--accent);
--color-divider: var(--wp--custom--divider);
--accent-ink:    var(--wp--preset--color--accent-ink);
--color-neutral-100: var(--wp--preset--color--neutral-100);
--color-neutral-200: var(--wp--preset--color--neutral-200);
--color-neutral-300: var(--wp--preset--color--neutral-300);
--color-neutral-400: var(--wp--preset--color--neutral-400);
--color-neutral-600: var(--wp--preset--color--neutral-600);
--color-neutral-700: var(--wp--preset--color--neutral-700);
--color-neutral-800: var(--wp--preset--color--neutral-800);
--gutter:   var(--wp--custom--gutter);
--header-h: var(--wp--custom--header-height);
--shell:    1360px;
--shadow-md: var(--wp--preset--shadow--md);
--shadow-lg: var(--wp--preset--shadow--lg);
}
html[data-theme="dark"] {
--color-bg:      #191817;
--color-surface: #262322;
--color-text:    #f3f2f2;
--color-accent:  #ff563c;
--color-divider: color-mix(in srgb, #f3f2f2 32%, transparent);
--accent-ink:    #ff8a75;
--color-neutral-100: #232120;
--color-neutral-200: #2b2827;
--color-neutral-300: #3b3837;
--color-neutral-400: #575353;
--color-neutral-600: #a5a1a1;
--color-neutral-700: #c2bebe;
--color-neutral-800: #e4e1e1;
--shadow-md: none;
--shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.55);
color-scheme: dark;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
background: var(--color-bg);
color: var(--color-text);
-webkit-font-smoothing: antialiased;
}
:focus { outline: none; }
:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 2px; }
::selection { background: color-mix(in srgb, var(--color-accent) 30%, transparent); }
::-webkit-scrollbar { height: 8px; width: 10px; }
::-webkit-scrollbar-thumb { background: var(--color-neutral-400); }
::-webkit-scrollbar-track { background: var(--color-neutral-200); }
img { max-width: 100%; height: auto; }
@media (prefers-reduced-motion: reduce) {
*, *::before, *::after {
animation-duration: 0.01ms !important;
transition-duration: 0.01ms !important;
}
html { scroll-behavior: auto; }
}
.nft-skip-link {
position: absolute;
left: -9999px;
top: 0;
z-index: 200;
padding: 10px 16px;
background: var(--color-text);
color: var(--color-bg);
font-size: 13px;
font-weight: 800;
}
.nft-skip-link:focus { left: 12px; top: 12px; }
.screen-reader-text {
position: absolute !important;
width: 1px;
height: 1px;
margin: -1px;
padding: 0;
overflow: hidden;
clip-path: inset(50%);
white-space: nowrap;
}
.nft-shell {
width: 100%;
max-width: var(--shell);
margin-inline: auto;
padding-inline: var(--gutter);
}
.nft-rule { height: 2px; background: var(--color-divider); border: 0; margin: 0; }
.nft-rule--hair { height: 1px; }
.nft-kicker {
font-size: 11px;
font-weight: 800;
letter-spacing: 0.14em;
text-transform: uppercase;
color: var(--accent-ink);
}
.nft-kicker--muted {
color: var(--color-neutral-700);
font-weight: 600;
letter-spacing: 0.1em;
}
.nft-kicker--sm { font-size: 10px; }
.nft-meta { font-size: 13px; color: var(--color-neutral-700); }
.nft-section {
width: 100%;
max-width: var(--shell);
margin-inline: auto;
padding: clamp(40px, 5vw, 68px) var(--gutter) 0;
}
.nft-section-head {
display: flex;
align-items: flex-end;
justify-content: space-between;
gap: 20px;
flex-wrap: wrap;
padding-bottom: 16px;
border-bottom: 2px solid var(--color-divider);
}
.nft-section-head h2 { margin: 0; }
.nft-section-head > a {
font-size: 13px;
font-weight: 600;
letter-spacing: 0.06em;
text-transform: uppercase;
color: var(--accent-ink);
white-space: nowrap;
}
.nft-thumb {
display: block;
background: var(--color-neutral-200);
overflow: hidden;
position: relative;
}
.nft-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.nft-thumb--16x9  { aspect-ratio: 16 / 9; }
.nft-thumb--16x10 { aspect-ratio: 16 / 10; }
.nft-thumb--4x3   { aspect-ratio: 4 / 3; }
.nft-thumb--1x1   { aspect-ratio: 1 / 1; }
.nft-thumb--2x1   { aspect-ratio: 2 / 1; }
.nft-thumb--empty {
display: flex;
align-items: center;
justify-content: center;
}
.nft-thumb__mark {
width: clamp(26px, 22%, 104px);
height: auto;
color: var(--color-neutral-400);
}
.nft-band .nft-thumb__mark { color: rgba(243, 242, 242, 0.28); }
.nft-btn {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 6px;
cursor: pointer;
text-decoration: none;
font-family: inherit;
font-weight: 800;
font-size: 14px;
line-height: 1.2;
padding: 9px 14px;
border: 1px solid transparent;
border-radius: 0;
background: transparent;
color: var(--color-text);
}
.nft-btn:hover { text-decoration: none; }
.nft-btn--primary { background: var(--color-accent); color: var(--wp--preset--color--base); }
.nft-btn--primary:hover { background: #dd2b0f; }
.nft-btn--secondary { border-color: var(--color-divider); }
.nft-btn--secondary:hover { background: color-mix(in srgb, var(--color-text) 7%, transparent); }
.nft-btn--icon { width: 36px; height: 36px; padding: 0; }
.nft-btn--lg { min-height: 48px; font-size: 15px; padding: 0 20px; }
.nft-btn--block { width: 100%; justify-content: flex-start; }
.nft-tag {
display: inline-flex;
align-items: center;
font-size: 12px;
padding: 5px 11px;
text-decoration: none;
background: var(--color-neutral-100);
color: var(--color-neutral-800);
}
.nft-tag:hover { background: var(--color-neutral-200); text-decoration: none; }
.nft-header {
position: sticky;
top: 0;
z-index: 80;
background: var(--color-bg);
border-bottom: 2px solid var(--color-divider);
}
.nft-header__bar {
display: flex;
align-items: center;
gap: clamp(16px, 2.2vw, 32px);
height: var(--header-h);
}
.nft-brand {
display: flex;
align-items: center;
gap: 11px;
flex-shrink: 0;
text-decoration: none;
color: var(--color-text);
}
.nft-brand:hover { text-decoration: none; }
.nft-brand__mark { display: block; flex-shrink: 0; }
.nft-brand__words { display: flex; align-items: baseline; gap: 7px; }
.nft-brand__name { font-size: 21px; font-weight: 800; letter-spacing: -0.035em; line-height: 1; }
.nft-brand__sub {
font-size: 10px;
font-weight: 600;
letter-spacing: 0.2em;
text-transform: uppercase;
color: var(--color-neutral-700);
line-height: 1;
}
.nft-nav ul {
display: flex;
align-items: stretch;
gap: clamp(10px, 1.4vw, 20px);
margin: 0;
padding: 0;
list-style: none;
height: var(--header-h);
}
.nft-nav li { display: flex; }
.nft-nav a {
display: flex;
align-items: center;
font-size: 14px;
font-weight: 600;
letter-spacing: -0.005em;
text-decoration: none;
white-space: nowrap;
color: var(--color-text);
border-bottom: 3px solid transparent;
}
.nft-nav a:hover { color: var(--accent-ink); text-decoration: none; }
.nft-nav .current-menu-item > a,
.nft-nav .current-menu-parent > a,
.nft-nav .current-menu-ancestor > a {
border-bottom-color: var(--color-accent);
}
.nft-header__actions {
margin-left: auto;
display: flex;
align-items: center;
gap: 8px;
flex-shrink: 0;
}
.nft-header__actions .nft-btn--icon {
border-color: var(--color-divider);
color: var(--color-text);
background: transparent;
}
.nft-theme-toggle [data-icon="moon"] { display: none; }
html[data-theme="dark"] .nft-theme-toggle [data-icon="sun"] { display: none; }
html[data-theme="dark"] .nft-theme-toggle [data-icon="moon"] { display: block; }
@media (max-width: 1023px) {
.nft-only-wide { display: none !important; }
}
@media (min-width: 1024px) {
.nft-only-narrow { display: none !important; }
}
.nft-mobile-nav {
display: none;
border-bottom: 2px solid var(--color-divider);
background: var(--color-bg);
max-height: 70vh;
overflow-y: auto;
}
.nft-mobile-nav.is-open { display: block; }
.nft-mobile-nav__inner { padding: 12px 0 24px; }
.nft-mobile-nav ul { list-style: none; margin: 0; padding: 0; }
.nft-mobile-nav a {
display: flex;
align-items: center;
justify-content: space-between;
min-height: 52px;
font-size: 17px;
font-weight: 600;
color: var(--color-text);
text-decoration: none;
border-bottom: 1px solid var(--color-divider);
}
.nft-trust-strip { border-bottom: 1px solid var(--color-divider); }
.nft-trust-strip__inner {
display: flex;
flex-wrap: wrap;
align-items: center;
gap: 6px 26px;
padding: 9px 0;
font-size: 11px;
font-weight: 600;
letter-spacing: 0.1em;
text-transform: uppercase;
}
.nft-trust-strip__claim { color: var(--accent-ink); }
.nft-trust-strip__item { color: var(--color-neutral-700); }
.nft-trust-strip a {
color: var(--color-neutral-700);
text-decoration: underline;
text-underline-offset: 3px;
}
.nft-search-overlay {
position: fixed;
inset: 0;
z-index: 120;
background: color-mix(in srgb, #201e1d 55%, transparent);
display: flex;
align-items: flex-start;
justify-content: center;
padding: clamp(12px, 6vh, 80px) 16px;
}
.nft-search-overlay[hidden] { display: none; }
.nft-search-overlay__panel {
width: min(760px, 100%);
background: var(--color-bg);
border: 2px solid var(--color-text);
box-shadow: var(--shadow-lg);
max-height: 80vh;
display: flex;
flex-direction: column;
}
.nft-search-overlay__head {
display: flex;
align-items: center;
gap: 14px;
padding: 18px 20px;
border-bottom: 2px solid var(--color-divider);
}
.nft-search-overlay__head input[type="search"] {
flex: 1;
min-width: 0;
border: 0;
outline: none;
background: transparent;
font-family: inherit;
font-size: clamp(20px, 2.6vw, 28px);
font-weight: 800;
letter-spacing: -0.028em;
color: var(--color-text);
}
.nft-search-overlay__hint { padding: 20px; font-size: 14px; color: var(--color-neutral-700); }
.nft-footer {
background: #201e1d;
color: #f3f2f2;
margin-top: clamp(48px, 6vw, 84px);
}
.nft-footer a { color: rgba(243, 242, 242, 0.82); text-decoration: none; }
.nft-footer a:hover { color: #ff8a75; text-decoration: none; }
.nft-footer__inner { padding-block: clamp(40px, 5vw, 64px) 28px; }
.nft-footer__top { display: flex; flex-wrap: wrap; gap: clamp(28px, 4vw, 56px); }
.nft-footer__brand { flex: 1 1 300px; min-width: 0; }
.nft-footer__brand .nft-brand__sub { color: rgba(243, 242, 242, 0.6); }
.nft-footer__blurb {
font-size: 15px;
line-height: 1.6;
color: rgba(243, 242, 242, 0.72);
margin: 0 0 20px;
max-width: 38ch;
}
.nft-footer__social { display: flex; gap: 10px; }
.nft-footer__social a {
display: flex;
align-items: center;
justify-content: center;
width: 40px;
height: 40px;
border: 1px solid rgba(243, 242, 242, 0.3);
color: #f3f2f2;
}
.nft-footer__col { flex: 0 1 180px; min-width: 150px; }
.nft-footer__col h3 {
font-size: 11px;
font-weight: 800;
letter-spacing: 0.14em;
text-transform: uppercase;
color: rgba(243, 242, 242, 0.55);
margin: 0 0 14px;
padding-bottom: 10px;
border-bottom: 1px solid rgba(243, 242, 242, 0.2);
}
.nft-footer__col ul {
list-style: none;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
gap: 9px;
}
.nft-footer__col a { font-size: 14px; }
.nft-footer__legal {
margin-top: clamp(32px, 4vw, 48px);
padding-top: 20px;
border-top: 1px solid rgba(243, 242, 242, 0.2);
display: flex;
flex-wrap: wrap;
gap: 10px 32px;
justify-content: space-between;
align-items: baseline;
}
.nft-footer__legal p {
font-size: 12px;
color: rgba(243, 242, 242, 0.5);
margin: 0;
max-width: 52ch;
}
.nft-lead {
width: 100%;
max-width: var(--shell);
margin-inline: auto;
padding: clamp(28px, 4vw, 48px) var(--gutter) 0;
}
.nft-lead__grid { display: flex; flex-wrap: wrap; gap: clamp(28px, 3.5vw, 48px); }
.nft-lead__main { flex: 7 1 520px; min-width: 0; }
.nft-lead__side { flex: 5 1 330px; min-width: 0; }
.nft-lead a { text-decoration: none; color: var(--color-text); display: block; }
.nft-lead a:hover { text-decoration: none; }
.nft-lead__main .nft-thumb { margin-bottom: 18px; }
.nft-lead__side .nft-thumb { margin-bottom: 16px; }
.nft-lead__eyebrow {
display: flex;
align-items: center;
gap: 12px;
margin-bottom: 12px;
flex-wrap: wrap;
}
.nft-lead__dash { width: 26px; height: 2px; background: var(--color-divider); }
.nft-lead__title {
font-size: clamp(28px, 3.4vw, 44px);
font-weight: 800;
line-height: 1.03;
letter-spacing: -0.035em;
margin: 0 0 14px;
text-wrap: pretty;
}
.nft-lead__dek {
font-size: clamp(16px, 1.3vw, 19px);
line-height: 1.55;
color: var(--color-neutral-700);
margin: 0 0 16px;
max-width: 60ch;
text-wrap: pretty;
}
.nft-lead__side .nft-lead__title { font-size: clamp(22px, 2.1vw, 28px); line-height: 1.08; letter-spacing: -0.028em; }
.nft-lead__side .nft-lead__dek { font-size: 16px; }
.nft-lead__byline { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.nft-score {
display: inline-flex;
align-items: baseline;
gap: 3px;
border: 2px solid var(--color-text);
padding: 5px 10px;
}
.nft-score__value { font-size: 20px; font-weight: 800; line-height: 1; letter-spacing: -0.03em; }
.nft-score__max { font-size: 11px; font-weight: 600; color: var(--color-neutral-700); }
.nft-score--md { padding: 9px 12px; }
.nft-score--md .nft-score__value { font-size: 24px; letter-spacing: -0.035em; }
.nft-score--lg { padding: 8px 14px; }
.nft-score--lg .nft-score__value { font-size: 32px; letter-spacing: -0.04em; }
.nft-score--lg .nft-score__max { font-size: 13px; }
.nft-rail {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
border-top: 2px solid var(--color-divider);
margin-top: clamp(28px, 3.5vw, 44px);
}
.nft-rail__item {
display: block;
text-decoration: none;
color: var(--color-text);
padding: 22px clamp(16px, 2vw, 28px) 26px;
border-right: 1px solid var(--color-divider);
border-bottom: 1px solid var(--color-divider);
}
.nft-rail__item:hover { background: var(--color-neutral-100); text-decoration: none; }
.nft-rail__item h3 {
font-size: 17px;
font-weight: 800;
line-height: 1.18;
letter-spacing: -0.018em;
margin: 9px 0 10px;
text-wrap: pretty;
}
.nft-rail__item .nft-meta { font-size: 12px; }
.nft-mega-toggle { gap: 5px; }
.nft-mega-toggle[aria-expanded="true"] svg { transform: rotate(180deg); }
.nft-mega {
border-top: 1px solid var(--color-divider);
border-bottom: 2px solid var(--color-divider);
background: var(--color-bg);
box-shadow: var(--shadow-md);
}
.nft-mega[hidden] { display: none; }
.nft-mega__inner {
display: flex;
flex-wrap: wrap;
gap: 40px;
padding-block: 32px 36px;
}
.nft-mega__col { flex: 1 1 190px; min-width: 0; }
.nft-mega__title {
font-size: 11px;
font-weight: 800;
letter-spacing: 0.14em;
text-transform: uppercase;
color: var(--accent-ink);
padding-bottom: 10px;
border-bottom: 2px solid var(--color-divider);
margin-bottom: 14px;
}
.nft-mega__links { display: flex; flex-direction: column; gap: 2px; }
.nft-mega__links a {
font-size: 15px;
font-weight: 400;
line-height: 1.35;
color: var(--color-text);
text-decoration: none;
padding: 5px 0;
}
.nft-mega__links a:hover { color: var(--accent-ink); text-decoration: none; }
.nft-mega__featured {
flex: 1 1 300px;
min-width: 0;
border-left: 2px solid var(--color-divider);
padding-left: 32px;
}
.nft-mega__featured a { display: block; text-decoration: none; color: var(--color-text); }
.nft-mega__featured a:hover .nft-mega__featured-title { color: var(--accent-ink); }
.nft-mega__featured .nft-thumb { margin-bottom: 12px; }
.nft-mega__featured-title {
display: block;
font-size: 19px;
font-weight: 800;
line-height: 1.15;
letter-spacing: -0.02em;
margin-bottom: 8px;
text-wrap: pretty;
}
@media (max-width: 1023px) {
.nft-mega__featured { border-left: 0; padding-left: 0; }
}
