@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,500;12..96,600;12..96,700;12..96,800&family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
    --ink: #0b0e2a;
    --ink-2: #1f2546;
    --ink-3: #3b4163;
    --muted: #6a7090;
    --soft: #8a90ad;
    --line: rgba(11, 14, 42, 0.1);
    --line-2: rgba(11, 14, 42, 0.06);

    --paper: #faf6e9;
    --paper-2: #f3ecd6;
    --surface: #ffffff;
    --surface-2: #fefcf3;

    --navy: #050a30;
    --navy-2: #0a1156;
    --navy-deep: #02041a;
    --gold: #d8bf70;
    --gold-bright: #f0d98a;
    --gold-deep: #b58d32;
    --gold-soft: #f4eac4;

    --c-immerse-a: #1e1b4b;
    --c-immerse-b: #7c3aed;
    --c-immerse-c: #ec4899;

    --c-zones-a: #9a3412;
    --c-zones-b: #ea580c;
    --c-zones-c: #fbbf24;

    --c-wellness-a: #134e4a;
    --c-wellness-b: #14b8a6;
    --c-wellness-c: #5eead4;

    --c-sustain-a: #14532d;
    --c-sustain-b: #16a34a;
    --c-sustain-c: #84cc16;

    --c-hybrid-a: #1e3a8a;
    --c-hybrid-b: #3b82f6;
    --c-hybrid-c: #67e8f9;

    --max: 1240px;
    --r-md: 14px;
    --r-lg: 22px;
    --r-xl: 28px;
}

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

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.55;
    color: var(--ink);
    background: var(--paper);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button { font: inherit; cursor: pointer; }

.skip {
    position: absolute;
    top: -3rem;
    left: 1rem;
    z-index: 9999;
    padding: 0.7rem 1rem;
    background: var(--gold);
    color: var(--navy);
    text-decoration: none;
    font-weight: 700;
    border-radius: 0 0 10px 10px;
}
.skip:focus { top: 0; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(2, 4, 26, 0.95);
    backdrop-filter: blur(18px) saturate(150%);
    -webkit-backdrop-filter: blur(18px) saturate(150%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-header-row {
    width: min(calc(100% - 2rem), var(--max));
    margin: 0 auto;
    min-height: 68px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1.25rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    text-decoration: none;
    color: inherit;
}

.brand-mark {
    height: 36px;
    width: 36px;
    object-fit: contain;
    flex-shrink: 0;
}

.brand-name {
    font-family: 'Bricolage Grotesque', system-ui, sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    line-height: 1;
    letter-spacing: -0.045em;
    white-space: nowrap;
    color: #fff;
    font-variation-settings: 'opsz' 32;
}

.brand-name-event { color: #ffffff; }
.brand-name-gavel { color: var(--gold); }

.primary-nav {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 1.7rem;
}

.primary-nav a {
    position: relative;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 500;
    padding: 0.3rem 0;
    transition: color 0.18s ease;
}

.primary-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.2s ease;
}

.primary-nav a:hover,
.primary-nav a:focus-visible,
.primary-nav a[aria-current="page"] { color: #fff; }

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after,
.primary-nav a[aria-current="page"]::after { transform: scaleX(1); }

.menu-trigger {
    display: none;
    width: 42px;
    height: 42px;
    padding: 0;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(216, 191, 112, 0.32);
    border-radius: 10px;
    position: relative;
    justify-self: end;
}

.menu-trigger span {
    position: absolute;
    left: 50%;
    width: 18px;
    height: 1.6px;
    background: var(--gold);
    border-radius: 2px;
    transform: translateX(-50%);
    transition: transform 0.22s ease, top 0.22s ease, opacity 0.22s ease;
}
.menu-trigger span:nth-child(1) { top: 14px; }
.menu-trigger span:nth-child(2) { top: 20px; }
.menu-trigger span:nth-child(3) { top: 26px; }

.menu-trigger[aria-expanded="true"] span:nth-child(1) { top: 20px; transform: translateX(-50%) rotate(45deg); }
.menu-trigger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-trigger[aria-expanded="true"] span:nth-child(3) { top: 20px; transform: translateX(-50%) rotate(-45deg); }

.sheet-host {
    position: fixed;
    inset: 0;
    z-index: 200;
}

.sheet-veil {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(2, 4, 18, 0.62);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.22s ease;
}

.sheet-host.is-open .sheet-veil { opacity: 1; }

.sheet {
    position: absolute;
    top: 0;
    right: 0;
    width: min(380px, 100%);
    height: 100%;
    background: linear-gradient(180deg, #0a1156 0%, #02041a 100%);
    color: #fff;
    box-shadow: -30px 0 60px rgba(0, 0, 0, 0.5);
    transform: translateX(100%);
    transition: transform 0.28s cubic-bezier(0.2, 0.8, 0.2, 1);
    display: flex;
    flex-direction: column;
    padding: 1.1rem 1.2rem 1.4rem;
}

.sheet-host.is-open .sheet { transform: translateX(0); }

.sheet-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.sheet-tag {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    font-size: 1.35rem;
    letter-spacing: -0.04em;
    color: var(--gold);
}

.sheet-close {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(216, 191, 112, 0.3);
    border-radius: 9px;
    position: relative;
}

.sheet-close span {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 14px;
    height: 1.6px;
    background: var(--gold);
    border-radius: 2px;
    margin: -0.8px 0 0 -7px;
}
.sheet-close span:first-child { transform: rotate(45deg); }
.sheet-close span:last-child { transform: rotate(-45deg); }

.sheet-nav {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
}

.sheet-nav a {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    padding: 1.1rem 0;
    text-decoration: none;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.035em;
    line-height: 1;
}

.sheet-nav a em {
    font-style: normal;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.1em;
    min-width: 2.4ch;
}

.sheet-nav a[aria-current="page"] { color: var(--gold); }

.sheet-foot {
    margin: auto 0 0;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    line-height: 1.5;
}

body.no-scroll { overflow: hidden; }

.kicker {
    display: inline-block;
    padding: 0.4rem 0.75rem;
    background: rgba(11, 14, 42, 0.05);
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink);
}

.kicker-on-light {
    background: var(--paper);
    border-color: rgba(184, 141, 50, 0.28);
    color: var(--gold-deep);
}

.kicker-on-dark {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(216, 191, 112, 0.3);
    color: var(--gold);
}

.section-title {
    margin: 0.75rem 0 0;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700;
    font-size: clamp(1.7rem, 3.4vw, 2.7rem);
    line-height: 1.05;
    letter-spacing: -0.035em;
    color: var(--navy);
    max-width: 26ch;
    font-variation-settings: 'opsz' 96;
}

.section-title-on-dark { color: #fff; }

.section-blurb {
    margin: 0.85rem 0 0;
    color: var(--muted);
    font-size: 0.98rem;
    line-height: 1.6;
    max-width: 56ch;
}

.section-head {
    margin-bottom: clamp(1.6rem, 3vw, 2.4rem);
}

.hero {
    width: min(calc(100% - 2rem), var(--max));
    margin: 0 auto;
    padding: clamp(2.5rem, 5vw, 4.5rem) 0 clamp(2rem, 4vw, 3rem);
}

.hero-title {
    margin: 1rem 0 0;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700;
    font-size: clamp(2.4rem, 6vw, 5.4rem);
    line-height: 0.96;
    letter-spacing: -0.045em;
    color: var(--navy);
    max-width: 17ch;
    font-variation-settings: 'opsz' 96;
}

.hero-lede {
    margin: 1.4rem 0 0;
    color: var(--ink-2);
    font-size: clamp(1.02rem, 1.4vw, 1.18rem);
    line-height: 1.6;
    max-width: 60ch;
}

.hero-stats {
    margin: 2.4rem 0 0;
    padding: 1.5rem 0 1.6rem;
    border-top: 1px solid rgba(11, 14, 42, 0.16);
    border-bottom: 1px solid rgba(11, 14, 42, 0.16);
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
}

.hero-stat {
    margin: 0;
    padding: 0 1rem;
    border-right: 1px solid var(--line);
}

.hero-stat:last-child { border-right: 0; }
.hero-stat:first-child { padding-left: 0; }
.hero-stat:last-child { padding-right: 0; }

.hero-stat dt {
    margin: 0 0 0.3rem;
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
}

.hero-stat dd {
    margin: 0;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1;
    color: var(--navy);
    letter-spacing: -0.05em;
    font-variation-settings: 'opsz' 96;
}

.hero-stat-sub {
    font-size: 0.55em;
    color: var(--gold-deep);
    font-weight: 700;
    margin-left: 0.05em;
}

.filter-row {
    margin: 1.8rem 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.filter {
    background: transparent;
    border: 1px solid var(--line);
    color: var(--ink);
    border-radius: 999px;
    padding: 0.55rem 1rem;
    font-size: 0.84rem;
    font-weight: 600;
    transition: background 0.18s, border-color 0.18s, color 0.18s, transform 0.15s;
}

.filter:hover {
    border-color: var(--gold-deep);
    color: var(--gold-deep);
}

.filter.is-on {
    background: var(--navy);
    border-color: var(--navy);
    color: #fff;
}

.featured {
    width: min(calc(100% - 2rem), var(--max));
    margin: 0 auto;
    padding: clamp(1rem, 3vw, 2rem) 0 clamp(2rem, 5vw, 3.5rem);
}

.featured-card {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.15fr);
    gap: clamp(1.2rem, 2.5vw, 2rem);
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-xl);
    padding: clamp(1rem, 2vw, 1.5rem);
    box-shadow: 0 30px 60px rgba(11, 14, 42, 0.06);
}

.poster {
    position: relative;
    border-radius: var(--r-lg);
    overflow: hidden;
    aspect-ratio: 5 / 4;
    background: var(--navy);
    box-shadow: 0 18px 40px rgba(11, 14, 42, 0.18);
    display: block;
}

.featured-poster.poster {
    aspect-ratio: 5 / 4.6;
}

.poster-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.poster-rank {
    position: absolute;
    top: clamp(0.8rem, 2vw, 1.4rem);
    left: clamp(0.9rem, 2vw, 1.5rem);
    z-index: 2;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    font-size: clamp(2.4rem, 5vw, 4.4rem);
    line-height: 1;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: -0.06em;
    -webkit-text-stroke: 0.5px rgba(0, 0, 0, 0.18);
    font-variation-settings: 'opsz' 96;
    pointer-events: none;
}

.poster-tag {
    position: absolute;
    bottom: clamp(0.9rem, 2vw, 1.4rem);
    left: clamp(0.9rem, 2vw, 1.5rem);
    z-index: 2;
    padding: 0.4rem 0.85rem;
    background: rgba(255, 255, 255, 0.95);
    color: var(--navy);
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.poster-01 { background: linear-gradient(135deg, var(--c-immerse-a) 0%, var(--c-immerse-b) 50%, var(--c-immerse-c) 100%); }
.poster-02 { background: linear-gradient(135deg, var(--c-zones-a) 0%, var(--c-zones-b) 60%, var(--c-zones-c) 100%); }
.poster-03 { background: linear-gradient(135deg, var(--c-wellness-a) 0%, var(--c-wellness-b) 60%, var(--c-wellness-c) 100%); }
.poster-04 { background: linear-gradient(135deg, var(--c-sustain-a) 0%, var(--c-sustain-b) 60%, var(--c-sustain-c) 100%); }
.poster-05 { background: linear-gradient(135deg, var(--c-hybrid-a) 0%, var(--c-hybrid-b) 60%, var(--c-hybrid-c) 100%); }

.featured-body {
    display: flex;
    flex-direction: column;
    padding: 0.4rem 0.4rem 0.6rem;
}

.featured-title {
    margin: 0.7rem 0 0.35rem;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700;
    font-size: clamp(1.9rem, 3.8vw, 3rem);
    line-height: 1;
    letter-spacing: -0.04em;
    color: var(--navy);
    font-variation-settings: 'opsz' 96;
}

.featured-sub {
    margin: 0;
    color: var(--ink-3);
    font-size: 1.05rem;
    line-height: 1.45;
    font-weight: 500;
}

.rating-line {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    margin: 1rem 0 0;
    padding: 0.85rem 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    flex-wrap: wrap;
}

.rating-line-sm {
    margin: 0.65rem 0 0;
    padding: 0.55rem 0;
}

.stars {
    position: relative;
    display: inline-block;
    font-size: 1.1rem;
    line-height: 1;
    color: rgba(11, 14, 42, 0.16);
    letter-spacing: 0.18em;
    flex-shrink: 0;
    height: 1em;
}

.stars::before {
    content: "\2605\2605\2605\2605\2605";
}

.stars-fill {
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    white-space: nowrap;
    color: var(--gold-deep);
    height: 100%;
}

.stars-fill::before {
    content: "\2605\2605\2605\2605\2605";
}

.stars-on-dark { color: rgba(255, 255, 255, 0.18); }
.stars-on-dark .stars-fill { color: var(--gold); }

.rating-line-sm .stars { font-size: 0.95rem; letter-spacing: 0.16em; }

.rating-num {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    font-size: 1.45rem;
    color: var(--navy);
    line-height: 1;
    letter-spacing: -0.04em;
}

.rating-line-sm .rating-num { font-size: 1.2rem; }

.rating-meta {
    color: var(--muted);
    font-size: 0.86rem;
    font-weight: 500;
    letter-spacing: -0.005em;
}

.featured-prose {
    margin: 1.05rem 0 0;
    color: var(--ink-2);
    font-size: 0.98rem;
    line-height: 1.65;
}

.reviewer-card {
    margin: 1.2rem 0 0;
    padding: 1rem 1.1rem;
    background: var(--surface-2);
    border: 1px solid var(--line);
    border-left: 3px solid var(--gold-deep);
    border-radius: 0 14px 14px 0;
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
}

.reviewer-card blockquote {
    margin: 0;
    flex: 1;
    min-width: 0;
}

.reviewer-card blockquote p {
    margin: 0 0 0.5rem;
    color: var(--navy);
    font-size: 1.02rem;
    line-height: 1.45;
    font-weight: 500;
}

.reviewer-card figcaption {
    color: var(--ink-3);
    font-size: 0.78rem;
    letter-spacing: 0.02em;
}

.reviewer-card figcaption strong {
    color: var(--navy);
    font-weight: 700;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    color: #fff;
    flex-shrink: 0;
    letter-spacing: -0.02em;
    box-shadow: 0 4px 12px rgba(11, 14, 42, 0.14), inset 0 -1px 2px rgba(0, 0, 0, 0.12);
}

.avatar-sm {
    width: 30px;
    height: 30px;
    font-size: 0.8rem;
}

.avatar-lg {
    width: 56px;
    height: 56px;
    font-size: 1.4rem;
}

.avatar-coral { background: linear-gradient(135deg, #f87171 0%, #ec4899 100%); }
.avatar-blue { background: linear-gradient(135deg, #60a5fa 0%, #6366f1 100%); }
.avatar-green { background: linear-gradient(135deg, #34d399 0%, #16a34a 100%); }
.avatar-purple { background: linear-gradient(135deg, #c084fc 0%, #8b5cf6 100%); }

.reaction-row {
    margin: 1.2rem 0 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1.4rem;
    color: var(--muted);
    font-size: 0.85rem;
}

.reaction-row strong {
    color: var(--navy);
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700;
    margin-right: 0.3rem;
    letter-spacing: -0.02em;
}

.grid-section,
.reviewers,
.closer {
    width: min(calc(100% - 2rem), var(--max));
    margin: 0 auto;
    padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.trend-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(1rem, 2vw, 1.4rem);
}

.trend-card {
    display: flex;
    flex-direction: column;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: 0 1px 2px rgba(11, 14, 42, 0.04);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.trend-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 44px rgba(11, 14, 42, 0.1);
}

.trend-poster.poster {
    aspect-ratio: 5 / 3;
    border-radius: 0;
    box-shadow: none;
}

.trend-body {
    padding: 1.2rem 1.3rem 1.35rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.trend-name {
    margin: 0 0 0.55rem;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700;
    font-size: clamp(1.2rem, 1.9vw, 1.55rem);
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--navy);
    font-variation-settings: 'opsz' 60;
}

.trend-summary {
    margin: 0;
    color: var(--ink-2);
    font-size: 0.95rem;
    line-height: 1.6;
}

.reviewer-mini {
    margin: 0.85rem 0 0;
    padding: 0.65rem 0.75rem;
    background: var(--surface-2);
    border: 1px solid var(--line-2);
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
}

.reviewer-mini blockquote {
    margin: 0;
    flex: 1;
    min-width: 0;
}

.reviewer-mini blockquote p {
    margin: 0 0 0.3rem;
    color: var(--navy);
    font-size: 0.92rem;
    line-height: 1.4;
    font-weight: 500;
}

.reviewer-mini figcaption {
    color: var(--ink-3);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.chips {
    margin: 0.85rem 0 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.chips li {
    padding: 0.32rem 0.7rem;
    background: var(--paper-2);
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 0.74rem;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: -0.005em;
}

.reviewer-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(1rem, 2vw, 1.4rem);
}

.reviewer {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: 1.4rem 1.45rem 1.5rem;
    box-shadow: 0 1px 2px rgba(11, 14, 42, 0.04);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.reviewer:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 36px rgba(11, 14, 42, 0.08);
}

.reviewer-head {
    display: flex;
    align-items: center;
    gap: 0.95rem;
    padding-bottom: 1.05rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--line);
}

.reviewer-head h3 {
    margin: 0 0 0.18rem;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700;
    font-size: 1.18rem;
    letter-spacing: -0.025em;
    color: var(--navy);
    line-height: 1.1;
}

.reviewer-head p {
    margin: 0;
    color: var(--muted);
    font-size: 0.82rem;
    letter-spacing: -0.005em;
}

.reviewer-quote {
    margin: 0 0 1.1rem;
}

.reviewer-quote p {
    margin: 0;
    color: var(--navy);
    font-size: 1rem;
    line-height: 1.45;
    font-weight: 500;
}

.reviewer-stats {
    margin: 0;
    padding-top: 1rem;
    border-top: 1px solid var(--line);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.reviewer-stats > div { margin: 0; }

.reviewer-stats dt {
    margin: 0 0 0.2rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
}

.reviewer-stats dd {
    margin: 0;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--navy);
    line-height: 1;
    letter-spacing: -0.04em;
}

.ranking-section {
    width: 100%;
    padding: 0;
    margin: 0;
}

.ranking-card {
    width: min(calc(100% - 2rem), var(--max));
    margin: clamp(2rem, 4vw, 3rem) auto;
    background: linear-gradient(160deg, #02041a 0%, #050a30 50%, #0a1156 100%);
    color: #fff;
    border-radius: var(--r-xl);
    padding: clamp(2rem, 4vw, 3.2rem) clamp(1.4rem, 3vw, 2.5rem);
    box-shadow: 0 30px 70px rgba(11, 14, 42, 0.22);
    position: relative;
    overflow: hidden;
}

.ranking-card::before {
    content: "";
    position: absolute;
    top: -25%;
    right: -10%;
    width: 480px;
    height: 480px;
    background: radial-gradient(closest-side, rgba(216, 191, 112, 0.18), transparent 70%);
    pointer-events: none;
}

.ranking-head {
    position: relative;
    z-index: 1;
    margin-bottom: 1.6rem;
}

.ranking {
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 1;
}

.ranking-row {
    display: grid;
    grid-template-columns: 3.4rem minmax(0, 1.45fr) minmax(0, 1fr) 4rem;
    align-items: center;
    gap: 1rem;
    padding: 1.3rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ranking-row:first-child { padding-top: 0.4rem; }
.ranking-row:last-child { border-bottom: 0; padding-bottom: 0.4rem; }

.ranking-num {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    font-size: 1.65rem;
    line-height: 1;
    color: var(--gold);
    letter-spacing: -0.04em;
}

.ranking-body h3 {
    margin: 0 0 0.32rem;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700;
    font-size: 1.18rem;
    line-height: 1.15;
    letter-spacing: -0.025em;
    color: #fff;
}

.ranking-body p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.86rem;
    line-height: 1.55;
    max-width: 56ch;
}

.ranking-row .stars { font-size: 1.1rem; }

.ranking-score {
    text-align: right;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    font-size: 1.85rem;
    line-height: 1;
    color: var(--gold-bright);
    letter-spacing: -0.04em;
}

.closer {
    text-align: left;
    max-width: 70ch;
    padding-bottom: clamp(3rem, 6vw, 5rem);
}

.closer-title {
    margin: 0.85rem 0 0.95rem;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700;
    font-size: clamp(1.65rem, 3.2vw, 2.5rem);
    line-height: 1.05;
    letter-spacing: -0.035em;
    color: var(--navy);
    max-width: 22ch;
}

.closer-prose {
    margin: 0;
    color: var(--ink-2);
    font-size: 1rem;
    line-height: 1.7;
}

.closer-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 1.4rem;
    padding: 0.78rem 1.2rem;
    background: var(--navy);
    color: var(--gold-bright);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.94rem;
    letter-spacing: -0.005em;
    transition: transform 0.2s ease, background 0.2s ease;
}

.closer-cta:hover { transform: translateX(3px); background: #050a30; }

.site-footer {
    border-top: 1px solid var(--line);
    padding: 2rem 0 3rem;
    background: var(--paper);
}

.site-footer-row {
    width: min(calc(100% - 2rem), var(--max));
    margin: 0 auto;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
}

.brand-foot .brand-name { color: var(--navy); font-size: 1.25rem; }
.brand-foot .brand-name-event { color: var(--navy); }
.brand-foot .brand-name-gavel { color: var(--gold-deep); }

.site-footer-line {
    margin: 0;
    color: var(--muted);
    font-size: 0.88rem;
    max-width: 40ch;
}

a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--gold-deep);
    outline-offset: 3px;
    border-radius: 4px;
}

@media (max-width: 980px) {
    .primary-nav { display: none; }
    .menu-trigger { display: inline-flex; align-items: center; justify-content: center; }

    .featured-card { grid-template-columns: 1fr; }
    .trend-grid { grid-template-columns: 1fr; }
    .reviewer-grid { grid-template-columns: 1fr; }

    .featured-body { padding: 0; }
    .featured-poster.poster { aspect-ratio: 5 / 4; }

    .ranking-row {
        grid-template-columns: 2.4rem minmax(0, 1fr) 3.2rem;
        grid-template-areas:
            "rank title score"
            "rank desc desc"
            "rank stars stars";
        row-gap: 0.6rem;
    }
    .ranking-num { grid-area: rank; }
    .ranking-body { display: contents; }
    .ranking-body h3 { grid-area: title; }
    .ranking-body p { grid-area: desc; }
    .ranking-row .stars { grid-area: stars; }
    .ranking-score { grid-area: score; }
}

@media (min-width: 981px) { .sheet-host { display: none; } }

@media (max-width: 720px) {
    body { font-size: 15.5px; }

    .site-header-row {
        width: min(calc(100% - 1rem), var(--max));
        min-height: 60px;
    }

    .brand-mark { height: 32px; width: 32px; }
    .brand-name { font-size: 1.32rem; }

    .hero,
    .featured,
    .grid-section,
    .reviewers,
    .closer,
    .ranking-card,
    .site-footer-row {
        width: min(calc(100% - 1rem), var(--max));
    }

    .hero-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.2rem 0;
    }
    .hero-stat:nth-child(2) { border-right: 0; padding-right: 0; }
    .hero-stat:nth-child(3) { padding-left: 0; padding-top: 1.2rem; border-top: 1px solid var(--line); }
    .hero-stat:nth-child(4) { padding-top: 1.2rem; border-top: 1px solid var(--line); }

    .filter { font-size: 0.78rem; padding: 0.48rem 0.85rem; }

    .featured-card { padding: 0.7rem 0.7rem 1rem; }
    .featured-body { padding: 0 0.4rem; }

    .reviewer-stats dd { font-size: 1.3rem; }
    .ranking-card { padding: 2rem 1.4rem; }
    .ranking-num { font-size: 1.4rem; }
    .ranking-score { font-size: 1.5rem; }
    .ranking-body h3 { font-size: 1.06rem; }
    .ranking-body p { font-size: 0.84rem; }
}

@media (max-width: 380px) {
    .hero-title { font-size: 2rem; }
    .hero-stat dd { font-size: 1.6rem; }
    .featured-title { font-size: 1.7rem; }
    .brand-name { font-size: 1.2rem; }
    .brand-mark { height: 28px; width: 28px; }
}

@media (orientation: landscape) and (max-width: 920px) and (max-height: 540px) {
    .hero { padding: 1.6rem 0 1.4rem; }
    .grid-section, .reviewers, .closer { padding: 2rem 0; }

    .sheet { padding: 0.8rem 1rem 0.9rem; }
    .sheet-top { padding-bottom: 0.6rem; }
    .sheet-nav a { padding: 0.7rem 0; font-size: 1.18rem; }
    .sheet-foot { padding-top: 0.6rem; font-size: 0.78rem; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
