:root {
    --cw-bg: #07090d;
    --cw-band: #0c1118;
    --cw-panel: #111823;
    --cw-panel-2: #151d29;
    --cw-line: rgba(226, 235, 247, .17);
    --cw-line-strong: rgba(226, 235, 247, .3);
    --cw-text: #f7f9fc;
    --cw-muted: #a9b4c5;
    --cw-lime: #c9ff2f;
    --cw-orange: #ff7a35;
    --cw-cyan: #54d8ea;
    --cw-rose: #ff6e82;
    --cw-violet: #a98cff;
    --cw-gold: #f2c15f;
}

.home-page,
.creative-worlds-page,
.creative-world-detail-page {
    background: var(--cw-bg);
    color: var(--cw-text);
}

.home-main,
.creative-worlds-main {
    overflow: hidden;
}

.home-page .topbar-main {
    padding-inline: 24px;
}

.home-hero {
    position: relative;
    height: calc(100svh - 150px);
    min-height: 640px;
    max-height: 860px;
    display: flex;
    align-items: flex-start;
    overflow: hidden;
    border-bottom: 1px solid var(--cw-line);
    background: #05070a;
}

.home-hero-backdrop,
.home-hero-carousel,
.home-hero-carousel-track,
.home-hero-slide {
    position: absolute;
    inset: 0;
}

.home-hero-carousel {
    overflow: hidden;
}

.home-hero-slide {
    opacity: 0;
    visibility: hidden;
    transform: scale(1.025);
    transition: opacity .7s ease, transform 7s ease, visibility 0s linear .7s;
}

.home-hero-slide.is-active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    transition-delay: 0s;
}

.home-hero-slide img,
.home-hero-slide video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(1.05) contrast(1.06);
}

.home-hero-vignette {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(4, 6, 9, .9) 0%, rgba(4, 6, 9, .63) 37%, rgba(4, 6, 9, .08) 70%), linear-gradient(180deg, rgba(4, 6, 9, .16), rgba(4, 6, 9, .16) 48%, rgba(4, 6, 9, .92));
}

.home-hero-inner {
    position: relative;
    z-index: 2;
    width: min(1600px, calc(100% - 12vw));
    margin: 0 auto;
    padding: 52px 0 116px;
}

.home-hero-copy {
    max-width: 960px;
}

.home-kicker,
.cw-eyebrow {
    display: block;
    color: var(--cw-lime);
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.home-kicker {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 34px;
    padding: 7px 14px;
    border: 1px solid rgba(201, 255, 47, .88);
    border-radius: 999px;
    color: #071006;
    background: var(--cw-lime);
    box-shadow: 0 10px 28px rgba(0, 0, 0, .26);
    font-size: .78rem;
    letter-spacing: .1em;
    line-height: 1.2;
}

.home-hero h1 {
    margin: 20px 0 16px;
    font-family: 'Space Grotesk', sans-serif;
    line-height: .98;
    letter-spacing: 0;
    text-shadow: 0 18px 50px rgba(0, 0, 0, .72);
}

.home-hero h1 span {
    display: block;
    max-width: 100%;
    overflow-wrap: anywhere;
}

.home-hero-brand {
    font-family: 'League Spartan', 'Space Grotesk', sans-serif;
    font-weight: 900;
    line-height: .9;
}

.home-hero-statement {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    line-height: 1.02;
}

.home-positioning {
    max-width: 840px;
    margin: 0 0 9px;
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.45;
    text-shadow: 0 10px 30px #000;
}

.home-lede {
    max-width: 820px;
    margin: 0;
    color: #e4eaf2;
    font-size: 1rem;
    line-height: 1.62;
    text-shadow: 0 10px 30px #000;
}

.home-future {
    display: flex;
    align-items: center;
    gap: 11px;
    max-width: 820px;
    margin: 14px 0 0;
    color: #f7f9fc;
    font-size: .9rem;
    font-weight: 750;
    line-height: 1.45;
    text-shadow: 0 10px 30px #000;
}

.home-future::before {
    content: "";
    width: 28px;
    height: 2px;
    flex: 0 0 28px;
    background: var(--cw-lime);
}

.home-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.home-primary,
.home-secondary {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 21px;
    border-radius: 7px;
    font-size: .94rem;
    font-weight: 800;
    text-decoration: none;
    transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.home-primary {
    border: 1px solid var(--cw-lime);
    color: #071006;
    background: var(--cw-lime);
}

.home-secondary {
    border: 1px solid rgba(255, 255, 255, .3);
    color: #fff;
    background: rgba(7, 10, 14, .56);
    backdrop-filter: blur(10px);
}

.home-primary:hover,
.home-secondary:hover,
.home-primary:focus-visible,
.home-secondary:focus-visible {
    transform: translateY(-2px);
    text-decoration: none;
}

.home-secondary:hover,
.home-secondary:focus-visible {
    border-color: rgba(201, 255, 47, .75);
    background: rgba(17, 24, 35, .86);
}

.home-hero-carousel-controls {
    position: absolute;
    z-index: 4;
    right: max(30px, calc((100% - 1440px) / 2));
    top: 50%;
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 7px;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 8px;
    background: rgba(7, 10, 14, .64);
    backdrop-filter: blur(12px);
    transform: translateY(-50%);
}

.home-hero-carousel-button,
.home-hero-carousel-dot {
    appearance: none;
    border: 0;
    cursor: pointer;
}

.home-hero-carousel-button {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border-radius: 6px;
    color: #fff;
    background: rgba(255, 255, 255, .08);
}

.home-hero-carousel-button:hover,
.home-hero-carousel-button:focus-visible {
    color: #071006;
    background: var(--cw-lime);
}

.home-hero-carousel-dots {
    display: flex;
    align-items: center;
    gap: 6px;
}

.home-hero-carousel-dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .45);
}

.home-hero-carousel-dot.is-active {
    width: 20px;
    border-radius: 4px;
    background: var(--cw-lime);
}

.home-hero-carousel--single .home-hero-carousel-controls {
    display: none;
}

.home-hero-slate {
    position: absolute;
    z-index: 3;
    left: 50%;
    bottom: 24px;
    width: min(1260px, calc(100% - 64px));
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    border: 1px solid rgba(255, 255, 255, .25);
    background: rgba(4, 7, 10, .66);
    backdrop-filter: blur(14px);
    transform: translateX(-50%);
}

.home-hero-slate a {
    min-height: 54px;
    display: grid;
    place-items: center;
    padding: 8px 10px;
    border-right: 1px solid rgba(255, 255, 255, .16);
    color: #f8fafc;
    font-family: 'Space Grotesk', sans-serif;
    font-size: .69rem;
    font-weight: 800;
    line-height: 1.25;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
}

.home-hero-slate a:last-child {
    border-right: 0;
}

.home-hero-slate a:hover,
.home-hero-slate a:focus-visible {
    color: #071006;
    background: var(--cw-lime);
}

.cw-section {
    width: min(1440px, calc(100% - 64px));
    margin: 0 auto;
    padding: 92px 0;
}

.cw-section-heading {
    max-width: 930px;
    margin-bottom: 34px;
}

.cw-section-heading--split {
    max-width: none;
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(300px, .55fr);
    gap: 48px;
    align-items: end;
}

.cw-section-heading h1,
.cw-section-heading h2,
.cw-page-hero h1,
.cw-detail-hero h1,
.home-final h2 {
    margin: 13px 0 0;
    color: var(--cw-text);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.7rem;
    line-height: 1;
    letter-spacing: 0;
}

.cw-section-heading p,
.cw-page-hero p,
.cw-detail-hero p,
.home-final p {
    margin: 0;
    color: var(--cw-muted);
    font-size: 1rem;
    line-height: 1.65;
}

.cw-world-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.cw-world-card {
    --world-accent: var(--cw-lime);
    position: relative;
    min-width: 0;
    height: clamp(390px, 30vw, 430px);
    display: block;
    overflow: hidden;
    border: 1px solid var(--cw-line);
    border-radius: 8px;
    color: #fff;
    background: #0d131b;
    text-decoration: none;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.cw-world-card--orange { --world-accent: var(--cw-orange); }
.cw-world-card--cyan { --world-accent: var(--cw-cyan); }
.cw-world-card--rose { --world-accent: var(--cw-rose); }
.cw-world-card--violet { --world-accent: var(--cw-violet); }
.cw-world-card--gold { --world-accent: var(--cw-gold); }

.cw-world-card:hover,
.cw-world-card:focus-visible {
    border-color: var(--world-accent);
    box-shadow: 0 28px 70px rgba(0, 0, 0, .42);
    transform: translateY(-4px);
    text-decoration: none;
}

.cw-world-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

.cw-world-card:hover img,
.cw-world-card:focus-visible img {
    transform: scale(1.025);
}

.cw-world-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5, 7, 10, .14) 18%, rgba(5, 7, 10, .9) 88%), linear-gradient(90deg, rgba(5, 7, 10, .35), transparent 72%);
}

.cw-world-card-top {
    position: absolute;
    z-index: 2;
    top: 18px;
    left: 18px;
    right: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.cw-status,
.cw-world-count,
.cw-category-status {
    display: inline-flex;
    align-items: center;
    min-height: 27px;
    padding: 0 9px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 4px;
    color: #f4f7fb;
    background: rgba(5, 8, 11, .72);
    font-size: .66rem;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.cw-status--live,
.cw-status--expanding,
.cw-category-status--live,
.cw-category-status--beta {
    border-color: color-mix(in srgb, var(--world-accent, var(--cw-lime)) 60%, transparent);
    color: var(--world-accent, var(--cw-lime));
}

.cw-world-index {
    position: absolute;
    z-index: 1;
    top: 52px;
    right: 18px;
    color: rgba(255, 255, 255, .2);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 4.2rem;
    font-weight: 700;
}

.cw-world-copy {
    position: absolute;
    z-index: 2;
    left: 24px;
    right: 24px;
    bottom: 22px;
    max-width: 610px;
}

.cw-world-copy h3 {
    margin: 0 0 9px;
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.15rem;
    line-height: 1.05;
    letter-spacing: 0;
}

.cw-world-copy p {
    max-width: 560px;
    margin: 0;
    color: #d9e0e9;
    font-size: .96rem;
    line-height: 1.5;
}

.cw-world-link {
    display: inline-flex;
    gap: 9px;
    margin-top: 17px;
    color: var(--world-accent);
    font-size: .82rem;
    font-weight: 800;
    text-transform: uppercase;
}

.cw-world-link b {
    font-size: 1rem;
}

.cw-section-action {
    display: flex;
    justify-content: flex-end;
    margin-top: 24px;
}

.cw-text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--cw-lime);
    font-weight: 800;
    text-decoration: none;
}

.cw-text-link:hover,
.cw-text-link:focus-visible {
    color: #fff;
    text-decoration: none;
}

.home-showcase {
    width: 100%;
    padding-left: max(32px, calc((100% - 1440px) / 2));
    padding-right: max(32px, calc((100% - 1440px) / 2));
    border-top: 1px solid var(--cw-line);
    border-bottom: 1px solid var(--cw-line);
    background: var(--cw-band);
}

.home-showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.home-showcase-card {
    overflow: hidden;
    border: 1px solid var(--cw-line);
    border-radius: 8px;
    background: var(--cw-panel);
}

.home-showcase-video-wrap {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    cursor: pointer;
    background: #020304;
}

.home-showcase-video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-showcase-play {
    position: absolute;
    left: 16px;
    bottom: 16px;
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 50%;
    color: #071006;
    background: var(--cw-lime);
}

.home-showcase-meta {
    padding: 16px;
}

.home-showcase-meta > div:first-child {
    min-height: 48px;
}

.home-showcase-meta b,
.home-showcase-meta small {
    display: block;
}

.home-showcase-meta > div:first-child > b {
    overflow: hidden;
    color: #fff;
    font-size: 1rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.home-showcase-meta small {
    margin-top: 4px;
    color: var(--cw-muted);
}

.home-showcase-stats {
    min-height: 36px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 12px;
    border-top: 1px solid var(--cw-line);
    border-bottom: 1px solid var(--cw-line);
    color: #8f9cad;
    font-size: .72rem;
}

.home-showcase-stats b {
    display: inline;
    color: #dce4ee;
}

.home-showcase-like {
    appearance: none;
    padding: 0;
    border: 0;
    color: #8f9cad;
    background: transparent;
    cursor: pointer;
    font: inherit;
}

.home-showcase-like-on,
.home-showcase-like-on b {
    color: var(--cw-rose);
}

.home-showcase-comments {
    max-height: 72px;
    overflow: auto;
    margin-top: 10px;
    color: #9eabba;
    font-size: .75rem;
}

.home-showcase-comments p {
    margin: 5px 0;
}

.home-showcase-comments b {
    display: inline;
    color: #dce4ee;
}

.home-showcase-comment-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    margin-top: 10px;
}

.home-showcase-comment-form input {
    width: 100%;
    min-width: 0;
    height: 36px;
    padding: 0 10px;
    border: 1px solid var(--cw-line);
    border-radius: 5px;
    color: #fff;
    background: #0b1017;
}

.home-showcase-comment-form button {
    height: 36px;
    padding: 0 13px;
    border: 0;
    border-radius: 5px;
    color: #071006;
    background: var(--cw-lime);
    font-weight: 800;
}

.home-showcase-empty {
    min-height: 210px;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 14px;
    border-top: 1px solid var(--cw-line);
    border-bottom: 1px solid var(--cw-line);
    color: var(--cw-muted);
}

.home-final {
    position: relative;
    width: min(1440px, calc(100% - 64px));
    min-height: 510px;
    margin: 92px auto;
    display: flex;
    align-items: center;
    overflow: hidden;
    border: 1px solid var(--cw-line);
    border-radius: 8px;
}

.home-final > img,
.home-final-shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.home-final > img {
    object-fit: cover;
}

.home-final-shade {
    background: linear-gradient(90deg, rgba(5, 7, 10, .94), rgba(5, 7, 10, .7) 48%, rgba(5, 7, 10, .12));
}

.home-final-copy {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 48px;
}

.home-final h2 {
    font-size: 3.35rem;
}

.home-final p {
    max-width: 690px;
    margin: 17px 0 25px;
    color: #dce3ec;
}

.home-gallery-modal[hidden] {
    display: none;
}

.home-gallery-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: grid;
    place-items: center;
    padding: 24px;
}

.home-gallery-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .85);
}

.home-gallery-modal-panel {
    position: relative;
    width: min(1060px, 96vw);
    max-height: 92vh;
    overflow: auto;
    border: 1px solid var(--cw-line-strong);
    border-radius: 8px;
    background: #090d13;
}

.home-gallery-modal-video-wrap video {
    display: block;
    width: 100%;
    max-height: 76vh;
    background: #000;
}

.home-gallery-modal-close {
    position: absolute;
    z-index: 2;
    top: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 50%;
    color: #fff;
    background: rgba(5, 7, 10, .78);
    font-size: 1.5rem;
    cursor: pointer;
}

.home-gallery-modal-meta {
    padding: 18px 20px 22px;
}

.home-gallery-modal-meta span {
    color: var(--cw-lime);
    font-size: .72rem;
    font-weight: 800;
    text-transform: uppercase;
}

.home-gallery-modal-meta h3 {
    margin: 5px 0 0;
    color: #fff;
}

.gallery-modal-open {
    overflow: hidden;
}

/* Creative Worlds directory */
.cw-page-hero {
    position: relative;
    min-height: 460px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    border-bottom: 1px solid var(--cw-line);
    background: #0a0e14;
}

.cw-page-hero-media {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.cw-page-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.88) contrast(1.08);
}

.cw-page-hero-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(5, 7, 10, .94), rgba(5, 7, 10, .68) 54%, rgba(5, 7, 10, .42)), linear-gradient(180deg, rgba(5, 7, 10, .12), rgba(5, 7, 10, .88));
}

.cw-page-hero-copy {
    position: relative;
    z-index: 1;
    width: min(1440px, calc(100% - 64px));
    margin: 0 auto;
    padding: 70px 0;
}

.cw-page-hero h1 {
    max-width: 920px;
    font-size: 4.3rem;
}

.cw-page-hero p {
    max-width: 760px;
    margin-top: 18px;
    color: #dbe2eb;
}

.cw-directory {
    padding-top: 68px;
}

.cw-directory .cw-world-card {
    height: clamp(420px, 32vw, 455px);
}

.cw-world-atlas {
    border-top: 1px solid var(--cw-line);
    border-bottom: 1px solid var(--cw-line);
    background:
        linear-gradient(115deg, rgba(22, 32, 46, .72), rgba(7, 9, 13, .96) 54%),
        var(--cw-band);
}

.cw-world-atlas-inner {
    padding-top: 74px;
    padding-bottom: 80px;
}

.cw-world-atlas-figure,
.cw-world-map-figure {
    margin: 0;
    overflow: hidden;
    border: 1px solid var(--cw-line-strong);
    border-radius: 6px;
    background: #030508;
    box-shadow: 0 28px 80px rgba(0, 0, 0, .28);
}

.cw-world-atlas-figure img,
.cw-world-map-figure img {
    display: block;
    width: 100%;
    height: auto;
}

/* Creative World detail */
.cw-detail-poster {
    position: relative;
    margin: 0;
    overflow: hidden;
    border-bottom: 1px solid var(--cw-line);
    background: #020305;
}

.cw-detail-poster img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 900px;
    object-fit: contain;
    background: #020305;
}

.cw-detail-intro {
    padding-top: 66px;
    padding-bottom: 78px;
}

.cw-detail-intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
    gap: 50px;
    align-items: end;
}

.cw-detail-intro h1 {
    margin: 13px 0 0;
    color: var(--cw-text);
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.8rem, 5vw, 4.7rem);
    line-height: .98;
    letter-spacing: 0;
}

.cw-detail-intro p {
    max-width: 830px;
    margin: 18px 0 0;
    color: var(--cw-muted);
    font-size: 1rem;
    line-height: 1.65;
}

.cw-detail-intro-note {
    margin: 0 !important;
    padding: 20px 0 0 22px;
    border-left: 2px solid var(--cw-lime);
    color: #d8e1ec !important;
    font-size: .96rem !important;
}

.cw-world-map {
    border-top: 1px solid var(--cw-line);
    background:
        radial-gradient(circle at 82% 8%, rgba(201, 255, 47, .08), transparent 30%),
        var(--cw-band);
}

.cw-world-map-inner {
    padding-top: 80px;
    padding-bottom: 96px;
}

.cw-detail-hero {
    position: relative;
    min-height: 590px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    border-bottom: 1px solid var(--cw-line);
}

.cw-detail-hero > img,
.cw-detail-hero-shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.cw-detail-hero > img {
    object-fit: cover;
}

.cw-detail-hero-shade {
    background: linear-gradient(90deg, rgba(5, 7, 10, .9), rgba(5, 7, 10, .5) 58%, rgba(5, 7, 10, .16)), linear-gradient(180deg, rgba(5, 7, 10, .08), rgba(5, 7, 10, .92));
}

.cw-detail-hero-copy {
    position: relative;
    z-index: 1;
    width: min(1440px, calc(100% - 64px));
    margin: 0 auto;
    padding: 70px 0;
}

.cw-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 30px;
    color: #e8edf4;
    font-weight: 700;
    text-decoration: none;
}

.cw-back-link:hover,
.cw-back-link:focus-visible {
    color: var(--cw-lime);
    text-decoration: none;
}

.cw-detail-hero h1 {
    max-width: 940px;
    font-size: 4.7rem;
}

.cw-detail-hero p {
    max-width: 820px;
    margin-top: 18px;
    color: #e1e7ef;
}

.cw-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.cw-category-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.cw-category-card {
    min-height: 480px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--cw-line);
    border-radius: 8px;
    color: inherit;
    background: var(--cw-panel);
    text-decoration: none;
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

a.cw-category-card:hover,
a.cw-category-card:focus-visible {
    border-color: rgba(201, 255, 47, .65);
    box-shadow: 0 24px 60px rgba(0, 0, 0, .35);
    transform: translateY(-3px);
    text-decoration: none;
}

.cw-category-card--unavailable {
    opacity: .78;
}

.cw-category-media {
    position: relative;
    flex: 0 0 auto;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #070a0f;
}

.cw-category-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cw-category-status {
    position: absolute;
    top: 12px;
    left: 12px;
}

.cw-category-copy {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 19px;
}

.cw-category-copy h2 {
    margin: 0;
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.55rem;
    line-height: 1.1;
    letter-spacing: 0;
}

.cw-category-strapline {
    min-height: 39px;
    margin: 7px 0 0;
    color: var(--cw-lime);
    font-size: .82rem;
    font-weight: 700;
    line-height: 1.45;
}

.cw-category-description {
    margin: 15px 0 20px;
    color: var(--cw-muted);
    font-size: .9rem;
    line-height: 1.55;
}

.cw-category-cta {
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid var(--cw-line);
    color: #fff;
    font-size: .78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.cw-category-card--unavailable .cw-category-cta {
    color: #8793a3;
}

@media (max-width: 1180px) {
    .home-hero h1 .home-hero-brand {
        font-size: 3.7rem !important;
    }
    .home-hero h1 .home-hero-statement {
        font-size: 2.85rem !important;
    }
    .home-hero-slate {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .home-hero-slate a:nth-child(3) {
        border-right: 0;
    }
    .home-hero-slate a:nth-child(-n+3) {
        border-bottom: 1px solid rgba(255, 255, 255, .16);
    }
    .home-hero-inner {
        padding-bottom: 144px;
    }
    .cw-category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .home-showcase-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 1100px) {
    .home-page .topbar .tnl-nav,
    .creative-worlds-page .topbar .tnl-nav,
    .creative-world-detail-page .topbar .tnl-nav,
    .home-page .topbar-signin-btn,
    .home-page .topbar-signup-btn,
    .creative-worlds-page .topbar-signin-btn,
    .creative-worlds-page .topbar-signup-btn,
    .creative-world-detail-page .topbar-signin-btn,
    .creative-world-detail-page .topbar-signup-btn,
    .home-page .topbar-new-btn,
    .creative-worlds-page .topbar-new-btn,
    .creative-world-detail-page .topbar-new-btn {
        display: none;
    }
    .home-page .topbar-mobile-btn,
    .creative-worlds-page .topbar-mobile-btn,
    .creative-world-detail-page .topbar-mobile-btn {
        display: flex;
        align-items: center;
    }
}

@media (max-width: 880px) {
    .home-page .topbar .tnl-nav,
    .creative-worlds-page .topbar .tnl-nav,
    .creative-world-detail-page .topbar .tnl-nav {
        display: none;
    }
    .home-page .topbar-signin-btn,
    .home-page .topbar-signup-btn,
    .creative-worlds-page .topbar-signin-btn,
    .creative-worlds-page .topbar-signup-btn,
    .creative-world-detail-page .topbar-signin-btn,
    .creative-world-detail-page .topbar-signup-btn {
        display: none;
    }
    .home-page .topbar-mobile-btn,
    .creative-worlds-page .topbar-mobile-btn,
    .creative-world-detail-page .topbar-mobile-btn {
        display: flex;
        align-items: center;
    }
    .home-hero {
        height: auto;
        min-height: 740px;
    }
    .home-hero-inner,
    .cw-section,
    .cw-page-hero-copy,
    .cw-detail-hero-copy,
    .home-final {
        width: min(100% - 32px, 720px);
    }
    .home-hero-inner {
        padding: 100px 0 166px;
    }
    .home-hero-copy {
        max-width: 680px;
    }
    .home-hero h1 .home-hero-brand {
        font-size: 3.05rem !important;
    }
    .home-hero h1 .home-hero-statement {
        font-size: 2.55rem !important;
    }
    .home-positioning {
        font-size: 1.06rem;
    }
    .home-hero-vignette {
        background: linear-gradient(180deg, rgba(4, 6, 9, .36), rgba(4, 6, 9, .76) 56%, rgba(4, 6, 9, .96));
    }
    .home-hero-carousel-controls {
        top: 24px;
        right: 16px;
        transform: none;
    }
    .cw-section {
        padding: 68px 0;
    }
    .cw-section-heading--split {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .cw-section-heading h1,
    .cw-section-heading h2,
    .cw-page-hero h1,
    .cw-detail-hero h1,
    .home-final h2 {
        font-size: 2.8rem;
    }
    .cw-world-grid {
        grid-template-columns: 1fr;
    }
    .cw-world-card,
    .cw-directory .cw-world-card {
        height: 390px;
    }
    .cw-page-hero-media {
        grid-template-columns: 1fr 1fr;
    }
    .cw-page-hero-media img:nth-child(n+3) {
        display: none;
    }
    .cw-page-hero,
    .cw-detail-hero {
        min-height: 520px;
    }
    .cw-detail-intro-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .cw-detail-intro-note {
        max-width: 660px;
    }
    .home-final {
        margin: 68px auto;
    }
    .home-final-copy {
        padding: 32px;
    }
}

@media (max-width: 620px) {
    .home-page .topbar {
        height: 88px;
    }
    .home-page .topbar-main {
        height: 88px;
        padding: 0 16px;
        gap: 10px;
    }
    .home-page .topbar-mobile {
        top: 88px;
    }
    .home-page .topbar-logo-shield {
        width: 100%;
    }
    .home-page .brand {
        min-width: 0;
        gap: 7px;
    }
    .home-page .topbar .brand--has-logo img {
        height: 68px !important;
        max-width: 80px !important;
    }
    .home-page .brand::before {
        width: 24px;
        height: 24px;
    }
    .home-page .brand-name {
        font-size: 20px !important;
    }
    .home-page .brand-sub {
        font-size: 11px !important;
    }
    .home-hero {
        min-height: 720px;
    }
    .home-hero-inner {
        padding: 42px 0 210px;
    }
    .home-hero h1 .home-hero-brand {
        font-size: 2.2rem !important;
    }
    .home-hero h1 .home-hero-statement {
        font-size: 2rem !important;
    }
    .home-kicker,
    .cw-eyebrow {
        font-size: .66rem;
    }
    .home-kicker {
        min-height: 30px;
        padding: 6px 10px;
        font-size: .64rem;
        letter-spacing: .08em;
    }
    .home-positioning {
        font-size: 1rem;
    }
    .home-lede {
        font-size: .9rem;
    }
    .home-future {
        font-size: .82rem;
    }
    .home-actions {
        display: grid;
        grid-template-columns: 1fr;
    }
    .home-actions .home-secondary:last-child {
        display: none;
    }
    .home-primary,
    .home-secondary {
        width: 100%;
    }
    .home-hero-slate {
        bottom: 16px;
        width: calc(100% - 32px);
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .home-hero-slate a,
    .home-hero-slate a:nth-child(3) {
        min-height: 48px;
        border-right: 1px solid rgba(255, 255, 255, .16);
        border-bottom: 1px solid rgba(255, 255, 255, .16);
        font-size: .58rem;
    }
    .home-hero-slate a:nth-child(even) {
        border-right: 0;
    }
    .home-hero-slate a:nth-last-child(-n+2) {
        border-bottom: 0;
    }
    .cw-section-heading h1,
    .cw-section-heading h2,
    .cw-page-hero h1,
    .cw-detail-hero h1,
    .home-final h2 {
        font-size: 2.2rem;
    }
    .cw-world-card,
    .cw-directory .cw-world-card {
        height: 420px;
    }
    .cw-world-card-top {
        align-items: flex-start;
    }
    .cw-world-count {
        max-width: 130px;
        text-align: right;
    }
    .cw-world-copy h3 {
        font-size: 1.8rem;
    }
    .cw-world-copy p {
        font-size: .88rem;
    }
    .cw-world-index {
        font-size: 3.4rem;
    }
    .home-showcase {
        padding-left: 16px;
        padding-right: 16px;
    }
    .home-showcase-grid,
    .cw-category-grid {
        grid-template-columns: 1fr;
    }
    .cw-category-card {
        min-height: 450px;
    }
    .home-final {
        min-height: 560px;
    }
    .home-final-shade {
        background: linear-gradient(180deg, rgba(5, 7, 10, .46), rgba(5, 7, 10, .94) 66%);
    }
    .home-final-copy {
        align-self: flex-end;
        padding: 24px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-hero-slide,
    .cw-world-card,
    .cw-world-card img,
    .cw-category-card,
    .home-primary,
    .home-secondary {
        transition: none;
    }
}
