/*
Theme Name: Blox Talent Landing
Theme URI: https://bloxtalent.com/
Author: Blox Talent
Description: Validation landing page for Blox Talent early access interest.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
Text Domain: bloxtalent-landing
*/

:root {
    --background: #030812;
    --background-soft: #07101d;
    --panel: rgba(14, 21, 36, 0.86);
    --panel-strong: rgba(18, 26, 45, 0.94);
    --panel-hover: rgba(24, 34, 58, 0.94);
    --line: rgba(143, 157, 193, 0.18);
    --line-strong: rgba(151, 96, 255, 0.48);
    --text: #f8f9ff;
    --muted: #b6bed4;
    --soft: #7e88a7;
    --purple: #9a4dff;
    --purple-deep: #6534d9;
    --blue: #3b82ff;
    --cyan: #35c7ff;
    --green: #59e64c;
    --pink: #ff5bbd;
    --orange: #ff8a21;
    --container: 1530px;
    --radius: 8px;
    --shadow: 0 26px 90px rgba(0, 0, 0, 0.48);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    background:
        radial-gradient(circle at 78% 8%, rgba(115, 58, 219, 0.24), transparent 32%),
        radial-gradient(circle at 18% 0%, rgba(36, 99, 235, 0.16), transparent 29%),
        linear-gradient(180deg, #050a14 0%, #030812 48%, #040b14 100%);
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 15px;
    line-height: 1.55;
}

body.admin-bar .site-header {
    top: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

button {
    color: inherit;
}

.site-shell {
    min-height: 100vh;
    overflow: hidden;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    border-bottom: 1px solid rgba(143, 157, 193, 0.16);
    background: rgba(3, 8, 18, 0.86);
    backdrop-filter: blur(18px);
}

.nav-wrap {
    width: min(100% - 86px, var(--container));
    min-height: 58px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 260px 1fr 360px;
    align-items: center;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    width: fit-content;
}

.brand-cube {
    position: relative;
    width: 32px;
    height: 32px;
    display: inline-block;
    transform: rotate(30deg) skew(-8deg);
}

.brand-cube span {
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 3px;
    background: linear-gradient(135deg, #b861ff, #6f35ff);
    box-shadow: 0 0 22px rgba(154, 77, 255, 0.42);
}

.brand-cube span:nth-child(1) {
    left: 7px;
    top: 0;
}

.brand-cube span:nth-child(2) {
    left: 0;
    top: 12px;
    background: linear-gradient(135deg, #7f42ff, #4b22bd);
}

.brand-cube span:nth-child(3) {
    left: 14px;
    top: 12px;
    background: linear-gradient(135deg, #b95cff, #7438f3);
}

.brand-word {
    font-size: 23px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0;
}

.brand-word span {
    color: var(--purple);
}

.nav-links {
    display: flex;
    justify-content: center;
    gap: 48px;
    color: #d3d8e9;
    font-size: 15px;
    font-weight: 650;
}

.nav-links a {
    position: relative;
    padding: 21px 0 19px;
    transition: color 160ms ease;
}

.nav-links a:hover {
    color: var(--text);
}

.nav-links a:hover::after,
.nav-links a:first-child::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 48px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, var(--purple), transparent);
    transform: translateX(-50%);
}

.nav-actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
}

.icon-button,
.button-ghost,
.button-small,
.button-primary,
.button-secondary,
.form-button {
    border: 1px solid rgba(143, 157, 193, 0.18);
    border-radius: var(--radius);
    background: rgba(13, 19, 33, 0.82);
    color: var(--text);
    font-weight: 800;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.icon-button {
    position: relative;
    width: 42px;
    height: 38px;
    display: grid;
    place-items: center;
}

.icon-button span {
    position: relative;
    width: 15px;
    height: 15px;
    border: 2px solid #eef2ff;
    border-radius: 999px;
}

.icon-button span::after {
    content: "";
    position: absolute;
    right: -7px;
    bottom: -5px;
    width: 8px;
    height: 2px;
    border-radius: 999px;
    background: #eef2ff;
    transform: rotate(45deg);
}

.button-ghost,
.button-small {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
}

.button-small,
.button-primary,
.form-button {
    border-color: rgba(174, 118, 255, 0.72);
    background: linear-gradient(180deg, #a44fff, #7130db);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22), 0 14px 32px rgba(115, 48, 219, 0.32);
}

.button-primary,
.button-secondary,
.form-button {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 26px;
}

.button-secondary {
    background: rgba(15, 24, 42, 0.82);
}

.icon-button:hover,
.button-ghost:hover,
.button-small:hover,
.button-primary:hover,
.button-secondary:hover,
.form-button:hover {
    transform: translateY(-1px);
    border-color: rgba(174, 118, 255, 0.62);
}

.main-content {
    width: min(100% - 86px, var(--container));
    margin: 0 auto;
}

.hero {
    position: relative;
    isolation: isolate;
    display: grid;
    grid-template-columns: minmax(390px, 0.78fr) minmax(580px, 1.22fr);
    gap: 64px;
    align-items: center;
    width: 100vw;
    min-height: 575px;
    margin-left: calc(50% - 50vw);
    padding: 54px max(43px, calc((100vw - var(--container)) / 2)) 58px;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(3, 8, 18, 0.98) 0%, rgba(4, 10, 22, 0.96) 30%, rgba(5, 10, 24, 0.72) 50%, rgba(9, 10, 29, 0.24) 72%, rgba(9, 10, 29, 0.38) 100%),
        linear-gradient(180deg, rgba(5, 10, 23, 0.3), rgba(5, 8, 17, 0.94)),
        url("assets/hero-blox-talent.png") right center / auto 100% no-repeat,
        radial-gradient(circle at 86% 24%, rgba(151, 96, 255, 0.3), transparent 32%),
        #050a14;
    border-bottom: 1px solid rgba(143, 157, 193, 0.1);
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(circle at 13% 28%, rgba(32, 124, 255, 0.12), transparent 28%),
        radial-gradient(circle at 88% 58%, rgba(151, 96, 255, 0.16), transparent 30%);
    pointer-events: none;
}

.hero-copy,
.hero-directory {
    position: relative;
    z-index: 1;
}

.eyebrow,
.section-kicker {
    margin: 0 0 12px;
    color: #b88aff;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.hero h1 {
    max-width: 600px;
    margin: 0;
    color: #ffffff;
    font-size: 70px;
    line-height: 1.04;
    letter-spacing: 0;
}

.hero h1 span,
.section-heading h2 span {
    background: linear-gradient(135deg, #fffbff 0%, #b25cff 38%, #3d8eff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero h1 span {
    display: inline-block;
}

.hero-subtitle {
    max-width: 520px;
    margin: 20px 0 0;
    color: #c5ccdd;
    font-size: 19px;
    line-height: 1.45;
}

.hero-actions,
.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 26px;
}

.hero-proof {
    gap: 8px;
    margin-top: 24px;
}

.hero-proof span {
    padding: 7px 10px;
    border: 1px solid rgba(143, 157, 193, 0.18);
    border-radius: 999px;
    background: rgba(14, 21, 36, 0.72);
    color: var(--muted);
    font-size: 13px;
    font-weight: 750;
}

.hero-directory {
    min-height: 0;
    padding-top: 22px;
    align-self: center;
    transform: translate(34px, -24px);
}

.directory-search {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 26px 1fr 148px 48px;
    align-items: center;
    gap: 14px;
    max-width: 730px;
    min-height: 58px;
    padding: 0 10px 0 22px;
    border: 1px solid rgba(143, 157, 193, 0.2);
    border-radius: 999px;
    background: rgba(16, 23, 41, 0.78);
    color: var(--muted);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.search-icon {
    position: relative;
    width: 17px;
    height: 17px;
    border: 2px solid #eef2ff;
    border-radius: 999px;
}

.search-icon::after {
    content: "";
    position: absolute;
    right: -7px;
    bottom: -4px;
    width: 8px;
    height: 2px;
    border-radius: 999px;
    background: #eef2ff;
    transform: rotate(45deg);
}

.directory-search strong {
    color: #d8def0;
    font-size: 13px;
    font-weight: 700;
}

.directory-search button {
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(180deg, #a95cff, #6733d5);
}

.category-preview {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    max-width: 640px;
    margin-top: 18px;
}

.category-preview span {
    min-height: 41px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0 18px;
    border: 1px solid rgba(143, 157, 193, 0.2);
    border-radius: var(--radius);
    background: rgba(17, 24, 41, 0.82);
    color: #f2f4ff;
    font-weight: 850;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.category-preview svg,
.category-chip svg {
    width: 19px;
    height: 19px;
    color: #8b63ff;
    flex: 0 0 auto;
    stroke: currentColor;
    stroke-width: 2.15;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.category-builder svg {
    color: #5ee05d;
}

.category-ui-designer svg {
    color: #36a9ff;
}

.category-gfx-artist svg {
    color: #ff5bbd;
}

.category-clothing-designer svg {
    color: #ffc83d;
}

.category-animator svg {
    color: #ff8a21;
}

.category-tester svg {
    color: #55e3f0;
}

.category-modeler svg,
.category-ugc-creator svg {
    color: #a978ff;
}

.preview-section,
.section {
    padding: 26px 0;
}

.section-bar {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 20px;
    margin-bottom: 12px;
}

.section-bar h2 {
    margin: 0;
    font-size: 22px;
    letter-spacing: 0;
}

.section-bar p {
    margin: 2px 0 0;
    color: var(--soft);
}

.section-bar > span {
    padding: 5px 13px;
    border: 1px solid rgba(151, 96, 255, 0.36);
    border-radius: 999px;
    background: rgba(151, 96, 255, 0.12);
    color: #c8adff;
    font-weight: 800;
    white-space: nowrap;
}

.creator-preview-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.creator-card,
.feature-card,
.signup-panel,
.disclaimer-panel,
.trust-band {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background:
        linear-gradient(180deg, rgba(18, 26, 45, 0.88), rgba(9, 15, 28, 0.92)),
        var(--panel);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.creator-card {
    display: grid;
    grid-template-columns: 92px 1fr;
    gap: 14px;
    min-height: 132px;
    padding: 14px;
    transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.creator-card:hover {
    transform: translateY(-2px);
    border-color: rgba(151, 96, 255, 0.4);
    background: var(--panel-hover);
}

.creator-avatar-slot {
    width: 82px;
    height: 82px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: block;
    overflow: hidden;
    background-color: rgba(18, 26, 45, 0.88);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    box-shadow: 0 0 0 3px rgba(154, 77, 255, 0.14);
}

.avatar-scripter {
    background-image: url("assets/profile-scripter.png");
}

.avatar-builder {
    background-image: url("assets/profile-builder.png");
}

.avatar-ui {
    background-image: url("assets/profile-ui.png");
}

.avatar-gfx {
    background-image: url("assets/profile-gfx.png");
}

.avatar-masked {
    background-image: url("assets/profile-masked.png");
}

.avatar-tablet {
    background-image: url("assets/profile-tablet.png");
}

.creator-card-body h3 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 2px 0 0;
    font-size: 17px;
    line-height: 1.2;
}

.verified-mark {
    position: relative;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: linear-gradient(180deg, #b96aff, #7438f3);
    box-shadow: 0 0 16px rgba(154, 77, 255, 0.38);
    flex: 0 0 auto;
}

.verified-mark::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 4px;
    width: 5px;
    height: 8px;
    border-right: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
    transform: rotate(40deg);
}

.creator-card-body p {
    margin: 2px 0 8px;
    color: var(--muted);
    font-size: 13px;
}

.skill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.skill-row span {
    padding: 2px 8px;
    border: 1px solid rgba(143, 157, 193, 0.18);
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.05);
    color: #cfd5e8;
    font-size: 11px;
}

.rating-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 10px;
    color: #b9c2dc;
    font-size: 12px;
}

.rating-row span:first-child {
    color: #ffc83d;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 12px;
    color: #b389ff;
    font-size: 13px;
}

.card-meta strong {
    font-weight: 800;
}

.status-dot {
    position: relative;
    padding-left: 16px;
    color: var(--green);
    font-weight: 850;
}

.status-dot::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: #1dbb2d;
}

.status-dot.busy {
    color: var(--orange);
}

.status-dot.busy::before {
    background: var(--orange);
}

.portfolio-preview-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-top: 14px;
}

.portfolio-shot {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background:
        linear-gradient(180deg, rgba(18, 26, 45, 0.88), rgba(9, 15, 28, 0.92)),
        var(--panel);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.portfolio-image {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.portfolio-combat {
    background-image: url("assets/portfolio-voidblade-arena.png");
}

.portfolio-map {
    background-image: url("assets/portfolio-tropic-island.png");
}

.portfolio-dragon {
    background-image: url("assets/portfolio-dragonfall-raid.png");
}

.portfolio-ui-kit {
    background-image: url("assets/portfolio-dragonfall-raid.png");
}

.portfolio-shot:has(.portfolio-clothing-kit) {
    display: none;
}

.portfolio-space {
    background-image: url("assets/portfolio-asteroid-mine.png");
}

.portfolio-shot div {
    padding: 10px 12px 12px;
}

.portfolio-shot h3 {
    margin: 0;
    color: #ffffff;
    font-size: 15px;
}

.portfolio-shot p {
    margin: 2px 0 0;
    color: var(--soft);
    font-size: 13px;
}

.section {
    border-top: 1px solid rgba(143, 157, 193, 0.11);
}

.section-heading {
    max-width: 880px;
    margin-bottom: 24px;
}

.section-heading h2,
.signup-copy h2,
.disclaimer-panel h2 {
    margin: 0;
    color: #ffffff;
    font-size: 50px;
    line-height: 1.04;
    letter-spacing: 0;
}

.section-heading p,
.signup-copy p,
.disclaimer-panel p {
    margin: 14px 0 0;
    color: var(--muted);
    font-size: 17px;
}

.inline-heading {
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(300px, 0.42fr);
    gap: 42px;
    align-items: end;
    max-width: none;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.feature-card {
    min-height: 206px;
    padding: 22px;
}

.feature-icon,
.trust-badge {
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    margin-bottom: 18px;
    border-radius: 50%;
    background: radial-gradient(circle at 45% 35%, #c29aff, #6b32d7);
    box-shadow: 0 0 34px rgba(127, 66, 255, 0.34);
}

.feature-icon::before,
.trust-badge::before {
    content: "";
    width: 22px;
    height: 22px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.92);
}

.icon-portfolio {
    background: radial-gradient(circle at 45% 35%, #79c6ff, #2b61e8);
}

.icon-discovery {
    background: radial-gradient(circle at 45% 35%, #82ff8b, #168d39);
}

.icon-payment {
    background: radial-gradient(circle at 45% 35%, #ff8ed6, #bf2a83);
}

.feature-card h3 {
    margin: 0;
    font-size: 20px;
    letter-spacing: 0;
}

.feature-card p {
    margin: 10px 0 0;
    color: var(--muted);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(9, minmax(0, 1fr));
    gap: 10px;
}

.category-chip {
    min-height: 47px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 12px;
    border: 1px solid rgba(143, 157, 193, 0.18);
    border-radius: var(--radius);
    background: rgba(15, 23, 41, 0.72);
    color: #eef2ff;
    text-align: center;
    font-weight: 850;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.trust-band {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    padding: 20px 0;
    background:
        linear-gradient(90deg, rgba(57, 23, 112, 0.58), rgba(10, 17, 32, 0.9) 35%, rgba(47, 17, 76, 0.58)),
        var(--panel);
}

.trust-item {
    display: grid;
    grid-template-columns: 74px 1fr;
    gap: 16px;
    padding: 0 24px;
    border-right: 1px solid rgba(143, 157, 193, 0.14);
}

.trust-item:last-child {
    border-right: 0;
}

.trust-badge {
    width: 58px;
    height: 58px;
    margin: 0;
}

.badge-blue {
    background: radial-gradient(circle at 45% 35%, #85c5ff, #245ae3);
}

.badge-green {
    background: radial-gradient(circle at 45% 35%, #9aff9c, #168d39);
}

.badge-pink {
    background: radial-gradient(circle at 45% 35%, #ff8bd7, #b52882);
}

.trust-item h3 {
    margin: 0 0 4px;
    color: #d6b6ff;
    font-size: 18px;
}

.trust-item p {
    margin: 0;
    color: var(--muted);
}

.signup-section {
    display: grid;
    grid-template-columns: minmax(340px, 0.65fr) minmax(560px, 1fr);
    gap: 42px;
    align-items: start;
}

.signup-copy {
    position: sticky;
    top: 88px;
}

.signup-notes {
    display: grid;
    gap: 10px;
    margin-top: 24px;
}

.signup-notes span {
    position: relative;
    padding: 13px 14px 13px 36px;
    border: 1px solid rgba(143, 157, 193, 0.16);
    border-radius: var(--radius);
    background: rgba(15, 23, 41, 0.72);
    color: var(--muted);
    font-weight: 750;
}

.signup-notes span::before {
    content: "";
    position: absolute;
    left: 15px;
    top: 20px;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--green);
}

.signup-panel {
    padding: 22px;
}

.interest-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.form-field,
.availability-field {
    display: grid;
    gap: 7px;
}

.form-field.full,
.availability-field,
.form-button,
.form-privacy {
    grid-column: 1 / -1;
}

.form-field span,
.availability-field legend {
    color: #f4f6ff;
    font-size: 13px;
    font-weight: 850;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    border: 1px solid rgba(143, 157, 193, 0.2);
    border-radius: var(--radius);
    background: rgba(5, 10, 20, 0.82);
    color: var(--text);
    outline: 0;
    padding: 13px 14px;
    transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.form-field textarea {
    min-height: 126px;
    resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: rgba(154, 77, 255, 0.86);
    background: rgba(5, 10, 20, 0.98);
    box-shadow: 0 0 0 3px rgba(154, 77, 255, 0.14);
}

.radio-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.radio-option {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 0 14px;
    border: 1px solid rgba(143, 157, 193, 0.2);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.04);
    color: var(--muted);
    font-weight: 800;
}

.radio-option input {
    accent-color: var(--purple);
}

.form-button {
    width: 100%;
    margin-top: 4px;
}

.form-privacy {
    margin: 0;
    color: var(--soft);
    font-size: 13px;
}

.form-message {
    margin: 0 0 16px;
    padding: 13px 14px;
    border-radius: var(--radius);
    font-weight: 800;
}

.form-message.success {
    border: 1px solid rgba(89, 230, 76, 0.36);
    background: rgba(89, 230, 76, 0.1);
    color: #caffc5;
}

.form-message.error {
    border: 1px solid rgba(255, 91, 189, 0.36);
    background: rgba(255, 91, 189, 0.1);
    color: #ffd4ef;
}

.hidden-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.disclaimer-panel {
    display: grid;
    grid-template-columns: 0.44fr 1fr;
    gap: 42px;
    padding: 24px;
    align-items: center;
}

.disclaimer-panel p {
    margin: 0;
}

.site-footer {
    width: min(100% - 86px, var(--container));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    padding: 30px 0 22px;
    border-top: 1px solid rgba(143, 157, 193, 0.14);
    color: var(--muted);
}

.footer-brand p,
.copyright {
    margin: 10px 0 0;
}

.footer-links {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 22px;
    color: #d8def0;
    font-weight: 700;
}

.copyright {
    grid-column: 1 / -1;
    color: var(--soft);
    font-size: 13px;
}

@media (max-width: 1280px) {
    .nav-wrap,
    .main-content,
    .site-footer {
        width: min(100% - 40px, var(--container));
    }

    .nav-wrap {
        grid-template-columns: 220px 1fr 260px;
    }

    .nav-links {
        gap: 28px;
    }

    .button-ghost {
        display: none;
    }

    .hero {
        grid-template-columns: 1fr;
        gap: 34px;
        min-height: 620px;
        padding-top: 48px;
        padding-bottom: 52px;
    }

    .hero-directory {
        max-width: 760px;
        padding-top: 0;
        transform: none;
    }

    .creator-preview-grid,
    .feature-grid,
    .trust-band {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .portfolio-preview-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .category-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .trust-item {
        border-bottom: 1px solid rgba(143, 157, 193, 0.14);
    }

    .trust-item:nth-child(2) {
        border-right: 0;
    }

    .trust-item:nth-child(3),
    .trust-item:nth-child(4) {
        padding-top: 20px;
        border-bottom: 0;
    }
}

@media (max-width: 860px) {
    body.admin-bar .site-header {
        top: 0;
    }

    .nav-wrap {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 14px 0;
    }

    .nav-links {
        justify-content: flex-start;
        gap: 22px;
        overflow-x: auto;
        white-space: nowrap;
    }

    .nav-links a {
        padding: 6px 0;
    }

    .nav-actions {
        justify-content: flex-start;
    }

    .hero {
        min-height: auto;
        padding-top: 38px;
        padding-bottom: 44px;
        background:
            linear-gradient(90deg, rgba(3, 8, 18, 0.98) 0%, rgba(4, 10, 22, 0.94) 48%, rgba(5, 10, 24, 0.78) 100%),
            linear-gradient(180deg, rgba(5, 10, 23, 0.46), rgba(5, 8, 17, 0.96)),
            url("assets/hero-blox-talent.png") right center / auto 100% no-repeat,
            #050a14;
    }

    .hero h1 {
        font-size: 58px;
    }

    .hero-directory {
        min-height: 0;
    }

    .directory-search {
        grid-template-columns: 24px 1fr 44px;
    }

    .directory-search strong {
        display: none;
    }

    .creator-preview-grid,
    .feature-grid,
    .trust-band,
    .portfolio-preview-row,
    .signup-section,
    .disclaimer-panel,
    .site-footer,
    .inline-heading {
        grid-template-columns: 1fr;
    }

    .signup-copy {
        position: static;
    }

    .trust-item,
    .trust-item:nth-child(2),
    .trust-item:nth-child(3) {
        padding: 18px 20px;
        border-right: 0;
        border-bottom: 1px solid rgba(143, 157, 193, 0.14);
    }

    .trust-item:nth-child(4) {
        padding: 18px 20px;
        border-bottom: 0;
    }

    .footer-links {
        justify-content: flex-start;
    }
}

@media (max-width: 620px) {
    .nav-wrap,
    .main-content,
    .site-footer {
        width: min(100% - 28px, var(--container));
    }

    .hero {
        padding-right: 20px;
        padding-left: 20px;
    }

    .hero h1 {
        font-size: 46px;
    }

    .brand-word {
        font-size: 21px;
    }

    .button-small {
        padding: 0 18px;
    }

    .hero-actions,
    .nav-actions {
        width: 100%;
    }

    .button-primary,
    .button-secondary,
    .button-small {
        flex: 1 1 auto;
    }

    .directory-search {
        min-height: 52px;
        font-size: 13px;
    }

    .category-preview span {
        flex: 1 1 calc(50% - 8px);
        justify-content: center;
        padding: 0 12px;
        font-size: 13px;
    }

    .creator-card {
        grid-template-columns: 74px 1fr;
    }

    .creator-avatar-slot {
        width: 66px;
        height: 66px;
    }

    .category-grid,
    .interest-form {
        grid-template-columns: 1fr;
    }

    .section-heading h2,
    .signup-copy h2,
    .disclaimer-panel h2 {
        font-size: 34px;
    }
}
