:root {
    --bg: #0f060c;
    --bg-elevated: #1a0f16;
    --text: #f4e8ef;
    --muted: #b89fb0;
    --accent: #e04d8b;
    --accent-2: #c77dff;
    --accent-soft: rgba(224, 77, 139, 0.15);
    --border: rgba(244, 232, 239, 0.12);
    --surface: var(--bg-elevated);
    --radius: 12px;
    --font-sans: "Outfit", system-ui, sans-serif;
    --font-display: "Cormorant Garamond", Georgia, serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--text);
    background:
        radial-gradient(ellipse 900px 480px at 15% -5%, rgba(224, 77, 139, 0.22), transparent 55%),
        radial-gradient(ellipse 700px 420px at 92% 8%, rgba(199, 125, 255, 0.14), transparent 50%),
        radial-gradient(ellipse 600px 400px at 50% 100%, rgba(224, 77, 139, 0.08), transparent 45%),
        var(--bg);
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.mt-0 {
    margin-top: 0;
}

.skip-link {
    position: absolute;
    left: -999px;
    top: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--accent);
    color: #fff;
    z-index: 100;
    border-radius: 4px;
}

.skip-link:focus {
    left: 0.5rem;
}

a {
    color: #ffb3d4;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

a:hover {
    color: #fff;
}

.wrap {
    width: min(1120px, 92vw);
    margin-inline: auto;
}

.narrow {
    width: min(640px, 92vw);
    margin-inline: auto;
}

.site-header {
    border-bottom: 1px solid var(--border);
    background: rgba(15, 6, 12, 0.85);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 50;
    overflow: visible;
}

.header-inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0.85rem;
    padding: 1rem 0;
}

@media (min-width: 720px) {
    .header-inner {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: flex-start;
        justify-content: space-between;
        gap: 1rem;
    }
}

.header-brand {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem 1rem;
    width: 100%;
}

.header-utilities {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
}

.header-brand .lang-switcher-dropdown,
.header-brand .account-menu-dropdown {
    flex-shrink: 0;
}

.account-menu-dropdown {
    position: relative;
}

.account-menu-trigger {
    max-width: 12rem;
}

.account-menu-label {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 8rem;
}

.account-menu-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.25rem;
    height: 1.25rem;
    padding: 0 0.35rem;
    border-radius: 999px;
    background: var(--accent);
    color: #1a0a14;
    font-size: 0.7rem;
    font-weight: 700;
    line-height: 1;
    margin-left: 0.35rem;
}

.account-menu-panel {
    min-width: 14rem;
    right: 0;
    left: auto;
}

.account-menu-panel .account-menu-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.account-menu-option-label {
    flex: 1;
    min-width: 0;
}

.account-menu-option-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.15rem;
    height: 1.15rem;
    padding: 0 0.3rem;
    border-radius: 999px;
    background: var(--accent);
    color: #1a0a14;
    font-size: 0.65rem;
    font-weight: 700;
    flex-shrink: 0;
}

.account-menu-logout {
    border-top: 1px solid var(--border);
    margin-top: 0.25rem;
    padding-top: 0.5rem;
    color: var(--muted);
}

.logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
    letter-spacing: 0.02em;
}

.logo:hover {
    color: var(--accent);
}

.nav {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    align-items: center;
}

.nav-primary {
    width: 100%;
}

@media (min-width: 720px) {
    .nav-primary {
        width: auto;
        flex: 1 1 100%;
        justify-content: flex-end;
    }
}

.nav-group {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.65rem 1rem;
}

.nav-group + .nav-group {
    padding-left: 0.85rem;
    margin-left: 0.15rem;
    border-left: 1px solid var(--border);
}

.logo-block {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
}

.logo-tagline {
    margin: 0;
    font-size: 0.78rem;
    line-height: 1.3;
    color: var(--muted);
    font-weight: 400;
    max-width: 16rem;
}

.nav-cta.btn {
    margin-left: 0.35rem;
    padding: 0.45rem 1rem;
    font-size: 0.9rem;
    white-space: nowrap;
}

.nav-more-dropdown {
    margin-left: 0.15rem;
}

.nav-more-panel .nav-more-option {
    width: 100%;
    text-align: left;
    border: none;
    background: none;
    cursor: pointer;
    font: inherit;
}

.nav-more-section + .nav-more-section {
    margin-top: 0.65rem;
    padding-top: 0.65rem;
    border-top: 1px solid var(--border);
}

.nav-more-section-label {
    margin: 0 0 0.35rem;
    padding: 0 0.75rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--muted);
}

.nav-top-link {
    white-space: nowrap;
}

.nav-flyout {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.nav-flyout-trigger {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-flyout-chevron {
    display: inline-block;
    width: 0.45rem;
    height: 0.45rem;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg) translateY(-1px);
    opacity: 0.65;
}

.nav-flyout-panel {
    position: absolute;
    top: calc(100% + 0.35rem);
    left: 0;
    z-index: 120;
    min-width: 11.5rem;
    margin: 0;
    padding: 0.35rem 0;
    list-style: none;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s;
}

.nav-flyout-option {
    display: block;
    padding: 0.45rem 0.85rem;
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

.nav-flyout-option:hover,
.nav-flyout-option:focus-visible {
    background: rgba(199, 125, 255, 0.12);
    color: var(--accent);
}

@media (hover: hover) and (min-width: 720px) {
    .nav-flyout:hover .nav-flyout-panel,
    .nav-flyout:focus-within .nav-flyout-panel {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-flyout:hover .nav-flyout-trigger,
    .nav-flyout:focus-within .nav-flyout-trigger {
        color: var(--accent);
    }
}

.nav-flyout.is-open .nav-flyout-panel {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    margin-top: 0.25rem;
    width: 100%;
}

.discover-hubs-index {
    padding-bottom: 2rem;
}

.discover-hubs-index-back {
    margin-top: 1.5rem;
}

.footer-share-btn {
    font: inherit;
    color: inherit;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 0.15em;
}

.footer-share-btn:hover,
.footer-share-btn:focus-visible {
    color: var(--accent);
}

.nav a {
    color: var(--muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
}

.nav a:hover {
    color: var(--text);
}

.nav .nav-share-btn {
    font: inherit;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--muted);
    background: none;
    border: none;
    border-radius: 0;
    padding: 0;
    margin: 0;
    cursor: pointer;
    text-decoration: none;
    line-height: inherit;
    -webkit-appearance: none;
    appearance: none;
}

.nav .nav-share-btn:hover,
.nav .nav-share-btn:focus-visible {
    color: var(--text);
    outline: none;
}

main {
    padding-bottom: 4rem;
}

.hero {
    padding: clamp(3rem, 8vw, 5.5rem) 0;
}

.hero-inner {
    max-width: 42rem;
}

.hero-split-inner {
    display: grid;
    gap: 2.5rem;
    align-items: start;
    padding: clamp(2.5rem, 6vw, 4rem) 0 clamp(2rem, 5vw, 3.5rem);
}

@media (min-width: 960px) {
    .hero-split-inner {
        grid-template-columns: 1.15fr 0.85fr;
        gap: 3rem;
    }
}

.hero-copy .lead {
    max-width: 38rem;
}

.hero-note {
    margin: 1.25rem 0 0;
    font-size: 0.9rem;
    color: var(--muted);
}

.hero-note--accent {
    max-width: 38rem;
    padding: 0.85rem 1rem;
    border-radius: var(--radius);
    border: 1px solid rgba(199, 125, 255, 0.22);
    background: rgba(199, 125, 255, 0.06);
    color: #e8dcf4;
    line-height: 1.5;
}

.guide-checklist {
    margin: 0.75rem 0 1.5rem;
    padding-left: 1.25rem;
    line-height: 1.55;
    color: var(--text);
}

.guide-checklist li {
    margin-bottom: 0.55rem;
}

.hero-panel {
    border-radius: calc(var(--radius) + 4px);
    border: 1px solid var(--border);
    background: linear-gradient(165deg, rgba(199, 125, 255, 0.08), rgba(26, 15, 22, 0.95));
    padding: 1.5rem 1.5rem 1.35rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.hero-stats {
    list-style: none;
    margin: 0 0 1.25rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.hero-stats li {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid var(--border);
}

.hero-stats li:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
}

.hero-stat-value {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.02em;
}

.hero-stat-label {
    font-size: 0.88rem;
    color: var(--muted);
}

.hero-callout {
    margin: 0;
    padding: 1rem 1rem 1.05rem;
    border-radius: var(--radius);
    background: rgba(224, 77, 139, 0.1);
    border: 1px solid rgba(224, 77, 139, 0.28);
    font-size: 0.92rem;
    line-height: 1.55;
    color: #ecd5e4;
}

.hero-callout p {
    margin: 0;
}

.trust-strip {
    padding-block: clamp(1.25rem, 3vw, 1.75rem);
}

.trust-pills {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.75rem;
}

@media (min-width: 720px) {
    .trust-pills {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .trust-pills {
        grid-template-columns: repeat(4, 1fr);
    }
}

.trust-pills li {
    margin: 0;
    padding: 0.85rem 1rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: rgba(26, 15, 22, 0.65);
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.45;
}

.trust-pills strong {
    display: block;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.2rem;
    color: var(--accent-2);
}

.card-soft {
    border-color: rgba(199, 125, 255, 0.25);
    background: rgba(26, 15, 22, 0.85);
}

.link-stack {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.link-stack a {
    font-weight: 500;
}

.sitemap-subhead {
    font-size: 1.05rem;
    font-weight: 600;
    margin: 0 0 0.75rem;
    color: var(--text);
}

.section--tight {
    padding-top: 0;
}

.sitemap-matrix-wrap {
    overflow-x: auto;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: rgba(26, 15, 22, 0.65);
}

.sitemap-matrix {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.92rem;
}

.sitemap-matrix th,
.sitemap-matrix td {
    padding: 0.65rem 0.85rem;
    text-align: left;
    vertical-align: top;
    border-bottom: 1px solid var(--border);
}

.sitemap-matrix thead th {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--muted);
    background: rgba(12, 6, 10, 0.45);
}

.sitemap-matrix tbody tr:last-child th,
.sitemap-matrix tbody tr:last-child td {
    border-bottom: none;
}

.sitemap-matrix tbody th {
    font-weight: 600;
    white-space: nowrap;
    min-width: 6rem;
}

.sitemap-loc-code {
    font-weight: 400;
    color: var(--muted);
    font-size: 0.85em;
}

.sitemap-matrix-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 1rem;
}

.sitemap-matrix-links a {
    font-weight: 500;
}

.align-center {
    align-items: center;
}

.cta-band {
    margin-top: 0;
}

.cta-band-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: clamp(1.75rem, 4vw, 2.25rem);
    border-radius: calc(var(--radius) + 6px);
    border: 1px solid var(--border);
    background: rgba(26, 15, 22, 0.75);
}

.cta-band--rose .cta-band-inner {
    border-color: rgba(224, 77, 139, 0.35);
    background: linear-gradient(120deg, rgba(224, 77, 139, 0.18), rgba(26, 15, 22, 0.9));
}

.cta-band-title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin: 0 0 0.35rem;
    font-weight: 600;
}

.cta-band-text {
    margin: 0;
    color: var(--muted);
    max-width: 36rem;
}

.breadcrumbs {
    font-size: 0.88rem;
    color: var(--muted);
    margin-bottom: 0.75rem;
}

.breadcrumbs a {
    color: var(--muted);
}

.breadcrumbs a:hover {
    color: #fff;
}

.section-tight {
    padding-top: 0;
    padding-bottom: 0.5rem;
}

.apply-trust {
    list-style: none;
    margin: 0;
    padding: 1rem 1.15rem;
    border-radius: var(--radius);
    border: 1px solid rgba(199, 125, 255, 0.25);
    background: rgba(199, 125, 255, 0.06);
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    font-size: 0.95rem;
    color: #e8d4e4;
}

@media (min-width: 560px) {
    .apply-trust {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 0.75rem 1rem;
    }
}

.apply-trust li {
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.apply-trust-icon {
    color: var(--accent-2);
    font-weight: 700;
}

.guide-content h2 {
    scroll-margin-top: 5rem;
}

.applicant-themes {
    padding-top: 0;
}

.themes-title {
    font-family: var(--font-display);
    font-size: clamp(1.65rem, 3vw, 2.1rem);
    margin: 0 0 0.5rem;
    text-align: center;
}

.themes-sub {
    text-align: center;
    color: var(--muted);
    max-width: 36rem;
    margin: 0 auto 1.75rem;
    font-size: 0.98rem;
}

.theme-chips {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 40rem;
    margin-inline: auto;
}

.theme-chips li {
    margin: 0;
    padding: 0.9rem 1.1rem;
    border-radius: var(--radius);
    border: 1px solid rgba(199, 125, 255, 0.22);
    background: rgba(199, 125, 255, 0.06);
    font-style: italic;
    color: #e8d8e8;
    font-size: 0.98rem;
    line-height: 1.45;
}

.themes-cta {
    text-align: center;
    margin: 1.75rem 0 0;
    font-weight: 500;
}

.contact-human {
    border-radius: calc(var(--radius) + 4px);
    border: 1px solid rgba(224, 77, 139, 0.35);
    background: linear-gradient(145deg, rgba(224, 77, 139, 0.12), rgba(26, 15, 22, 0.95));
    padding: 1.35rem 1.5rem 1.4rem;
}

.contact-human-title {
    font-family: var(--font-display);
    font-size: 1.45rem;
    margin: 0 0 0.5rem;
    font-weight: 600;
}

.contact-human-text {
    margin: 0 0 1rem;
    color: var(--muted);
    font-size: 0.96rem;
}

.contact-human-email {
    margin: 0 0 0.75rem;
}

.contact-human-mailto {
    word-break: break-all;
}

.contact-human-hint {
    margin: 0;
    font-size: 0.88rem;
    color: var(--muted);
}

.footer-contact {
    margin: 0 0 0.75rem;
    font-size: 0.95rem;
}

.footer-contact a {
    font-weight: 500;
}

.optional-tag {
    font-weight: 400;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--muted);
}

.field-hint {
    margin: -0.15rem 0 0.45rem;
    font-size: 0.86rem;
    line-height: 1.45;
    color: var(--muted);
}

.apply-progress {
    margin: 0 0 1.5rem;
}

.apply-progress-track {
    display: block;
    height: 4px;
    border-radius: 999px;
    background: var(--border);
    margin-bottom: 0.65rem;
    overflow: hidden;
}

.apply-progress-fill {
    display: block;
    height: 100%;
    width: 50%;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    transition: width 0.25s ease;
}

.apply-progress-label {
    font-size: 0.88rem;
    font-weight: 500;
    color: #e8d4e8;
}

.apply-progress-hint {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.82rem;
    font-weight: 400;
    color: var(--muted);
    line-height: 1.45;
}

.apply-draft-banner {
    margin-bottom: 1.25rem;
    padding: 1rem 1.15rem;
    border-radius: var(--radius);
    border: 1px solid rgba(199, 125, 255, 0.35);
    background: rgba(199, 125, 255, 0.08);
}

.apply-draft-banner-text {
    margin: 0 0 0.75rem;
    font-size: 0.95rem;
    color: #e8d8e8;
}

.apply-draft-banner-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.thank-extra {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.65;
}

.thank-links {
    list-style: none;
    padding: 0;
    margin: 1.25rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.thank-links a {
    font-weight: 500;
}

.thank-call {
    margin: 1rem 0 1.25rem;
}

.apply-form[data-apply-multistep="1"]:not(.apply-form--errors):not(.apply-form--step2) .apply-step-2 {
    display: none;
}

.apply-form[data-apply-multistep="1"].apply-form--step2:not(.apply-form--errors) .apply-step-1 {
    display: none;
}

.apply-form--errors #apply-btn-continue {
    display: none;
}

fieldset.apply-step {
    border: none;
    padding: 0;
    margin: 0;
    min-width: 0;
}

legend.apply-step-legend {
    padding: 0;
    margin: 0 0 1rem;
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    width: 100%;
}

.apply-step-actions {
    margin-top: 1.5rem;
}

.apply-step-actions-split {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

.apply-step-actions-split .apply-btn-submit {
    flex: 1;
    min-width: 12rem;
}

fieldset.apply-prefs-fieldset {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    padding: 1.1rem 1rem 0.25rem;
    margin: 1.25rem 0 1.5rem;
    min-width: 0;
}

legend.apply-prefs-legend {
    padding: 0 0.35rem;
    margin: 0;
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    width: auto;
}

.apply-prefs-fieldset .field-label-like {
    display: block;
    font-weight: 600;
    margin-bottom: 0.35rem;
    font-size: 0.95rem;
}

.apply-prefs-fieldset .checkbox-stack {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.35rem;
}

.intro-call-card {
    border-radius: calc(var(--radius) + 4px);
    border: 1px solid rgba(199, 125, 255, 0.35);
    background: linear-gradient(145deg, rgba(199, 125, 255, 0.1), rgba(26, 15, 22, 0.95));
    padding: 1.35rem 1.5rem 1.5rem;
    text-align: center;
}

.intro-call-title {
    font-family: var(--font-display);
    font-size: 1.45rem;
    margin: 0 0 0.5rem;
}

.intro-call-text {
    margin: 0 auto 1.1rem;
    color: var(--muted);
    font-size: 0.95rem;
    max-width: 32rem;
}

.intro-call-btn {
    display: inline-flex;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.72rem;
    color: var(--accent);
    font-weight: 600;
    margin: 0 0 1rem;
}

.eyebrow-platform {
    color: var(--accent-2);
    margin-bottom: 0.35rem;
}

.hero h1,
.page-head h1 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(2.1rem, 5vw, 3.25rem);
    line-height: 1.15;
    margin: 0 0 1.25rem;
    letter-spacing: 0.01em;
}

.lead {
    font-size: 1.15rem;
    color: var(--muted);
    margin: 0 0 2rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.5rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    font-family: inherit;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn:active {
    transform: scale(0.98);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), #b0306a);
    color: #fff;
    box-shadow: 0 8px 28px rgba(224, 77, 139, 0.35);
}

.btn-primary:hover {
    box-shadow: 0 10px 36px rgba(224, 77, 139, 0.45);
    color: #fff;
}

.btn-ghost {
    background: transparent;
    border-color: var(--border);
    color: var(--text);
}

.btn-ghost:hover {
    border-color: var(--muted);
    color: #fff;
}

.btn-block {
    width: 100%;
}

.section {
    padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.section-alt {
    background: rgba(26, 15, 22, 0.6);
    border-block: 1px solid var(--border);
}

.grid-2 {
    display: grid;
    gap: 2.5rem;
    grid-template-columns: 1fr;
}

@media (min-width: 900px) {
    .grid-2 {
        grid-template-columns: 1.1fr 0.9fr;
        align-items: start;
    }
}

.checks {
    margin: 0;
    padding-left: 1.2rem;
    color: var(--muted);
}

.checks li {
    margin-bottom: 1rem;
}

.checks strong {
    color: var(--text);
}

.card {
    border-radius: var(--radius);
    padding: 1.75rem;
    border: 1px solid var(--border);
    background: var(--bg-elevated);
}

.card-accent {
    border-color: rgba(224, 77, 139, 0.35);
    background: linear-gradient(160deg, var(--accent-soft), var(--bg-elevated));
}

.card h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    margin-top: 0;
}

.steps {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .steps {
        grid-template-columns: repeat(3, 1fr);
    }
}

.steps li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.25rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--bg-elevated);
}

.step-num {
    flex-shrink: 0;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    background: var(--accent-soft);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.prose h2 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    margin-top: 2rem;
}

.prose h2:first-child {
    margin-top: 0;
}

.page-head {
    padding: clamp(2rem, 4vw, 3rem) 0 1rem;
}

.field {
    margin-bottom: 1.25rem;
}

.field-row {
    display: grid;
    gap: 1rem;
}

.propose-product-link-import {
    margin-bottom: 1.75rem;
    padding: 1rem 1.15rem;
    border: 1px solid var(--border, rgba(0, 0, 0, 0.12));
    border-radius: 0.75rem;
    background: var(--surface-soft, rgba(0, 0, 0, 0.03));
}

.propose-product-link-import-title {
    margin: 0 0 0.35rem;
    font-size: 1.05rem;
}

.propose-product-link-import-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: stretch;
    margin-top: 0.75rem;
}

.propose-product-link-import-row input[type="url"] {
    flex: 1 1 14rem;
    min-width: 0;
}

@media (min-width: 560px) {
    .field-row {
        grid-template-columns: 1fr 1fr;
    }
}

.field label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.4rem;
    font-size: 0.92rem;
}

.auth-form {
    max-width: 24rem;
    margin-top: 1.25rem;
}

.auth-form-actions {
    margin: 1.5rem 0 0;
}

.dev-login-panel {
    margin: 2rem 0 0;
    padding: 1.35rem 1.25rem;
    border: 1px dashed rgba(199, 125, 255, 0.35);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.04);
}

.dev-login-eyebrow {
    margin: 0 0 0.35rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--accent);
}

.dev-login-title {
    margin: 0 0 0.35rem;
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--text);
}

.dev-login-lead {
    margin: 0 0 1rem;
    font-size: 0.92rem;
    color: var(--muted);
    line-height: 1.45;
}

.dev-login-actions {
    display: grid;
    gap: 0.65rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.dev-login-action {
    margin: 0;
}

.dev-login-action form {
    margin: 0;
}

.dev-login-btn {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
    width: 100%;
    text-align: left;
    padding: 1rem 1.1rem;
    height: auto;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    font-family: inherit;
    font-size: 0.95rem;
    cursor: pointer;
    transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.dev-login-btn:hover,
.dev-login-btn:focus-visible {
    border-color: rgba(199, 125, 255, 0.45);
    background: rgba(199, 125, 255, 0.08);
    color: #fff;
    outline: none;
}

.dev-login-btn-label {
    font-weight: 600;
    color: #f5e8ff;
}

.dev-login-btn-desc {
    font-size: 0.86rem;
    font-weight: 400;
    color: var(--muted);
    line-height: 1.4;
}

.dev-login-unavailable {
    margin: 0;
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.45;
}

.dev-login-foot {
    margin: 1rem 0 0;
    font-size: 0.88rem;
}

.dev-login-foot a {
    color: var(--accent-2);
    text-decoration: none;
}

.dev-login-foot a:hover,
.dev-login-foot a:focus-visible {
    color: var(--accent);
    text-decoration: underline;
}

/* Public pages that reuse console-field markup without console.css */
body:not(.console) .console-form-grid,
body:not(.console) .refer-form {
    display: grid;
    gap: 1rem;
    max-width: 40rem;
}

body:not(.console) .console-field {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin-bottom: 0;
}

body:not(.console) .console-field label {
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text);
}

body:not(.console) .console-field .field-hint {
    margin: 0.25rem 0 0;
    font-size: 0.875rem;
    color: var(--muted);
}

.req {
    color: var(--accent);
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
input[type="url"],
input[type="date"],
input[type="number"],
select,
textarea {
    width: 100%;
    max-width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: var(--bg-elevated);
    color: var(--text);
    font-family: inherit;
    font-size: 1rem;
    line-height: 1.4;
    box-sizing: border-box;
}

input:focus,
select:focus,
textarea:focus {
    outline: 2px solid rgba(224, 77, 139, 0.45);
    outline-offset: 2px;
}

textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-field {
    margin: 1.5rem 0;
}

.checkbox {
    display: flex;
    gap: 0.65rem;
    align-items: flex-start;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--muted);
}

.checkbox input {
    margin-top: 0.25rem;
    width: 1.1rem;
    height: 1.1rem;
    accent-color: var(--accent);
}

.hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.alert {
    padding: 1rem 1.25rem;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
}

.alert-error {
    background: rgba(180, 40, 60, 0.2);
    border: 1px solid rgba(255, 120, 140, 0.35);
    color: #ffc9cf;
}

.alert ul {
    margin: 0.5rem 0 0;
    padding-left: 1.2rem;
}

.faq-section-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 0.75rem;
    margin-top: 1.25rem;
}

.faq-section-nav a {
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    border: 1px solid var(--border);
    text-decoration: none;
    font-size: 0.92rem;
}

.faq-section-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin: 2rem 0 0.5rem;
    scroll-margin-top: 5rem;
}

.faq-section:first-child .faq-section-title {
    margin-top: 0;
}

.faq-list .faq-item {
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border);
}

.faq-list .faq-item:last-child {
    border-bottom: none;
}

.faq-item h2,
.faq-item h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    margin: 0 0 0.75rem;
    color: var(--text);
}

.footer-platform {
    margin: 1rem 0 0.35rem;
    font-size: 0.85rem;
}

.footer-platform-nav {
    margin: 0;
}

.site-footer {
    border-top: 1px solid var(--border);
    padding: 2.5rem 0;
    background: #0a0408;
    font-size: 0.9rem;
    color: var(--muted);
}

.footer-inner {
    text-align: center;
}

.age-notice {
    color: var(--text);
    margin: 0 0 1rem;
}

.footer-trust {
    margin: 0 auto 1rem;
    max-width: 40rem;
    line-height: 1.55;
}

.share-block {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 1.25rem 1.35rem;
    margin: 1.75rem auto 0;
    max-width: 40rem;
    width: 100%;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.03);
}
.share-block--prominent,
.share-section-prominent .share-block {
    margin-top: 0;
    max-width: none;
}
.share-section-prominent {
    padding-top: 1rem;
    padding-bottom: 1rem;
}
.catalog-detail-share {
    margin: 1.25rem 0 1.5rem;
}
.catalog-detail-share .share-block {
    margin-top: 0;
    max-width: none;
}

.wrap.narrow > .share-block:first-child {
    margin-top: 0;
}

.share-block-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    margin: 0 0 0.5rem;
}

.share-block-lead {
    margin: 0 0 0.5rem;
    font-size: 0.92rem;
    color: var(--muted);
    line-height: 1.55;
}
.share-block-invite-hint {
    margin: 0 0 1rem;
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.45;
}
.share-block-tools {
    flex: 1 1 14rem;
    min-width: 0;
}
.share-block-social-label {
    margin: 0.65rem 0 0.35rem;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--muted);
}
.share-block-social {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}
.share-block-social .btn-share-social {
    text-decoration: none;
}
.share-block-email-panel {
    margin-top: 0.75rem;
    padding: 0.85rem 0.9rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.02);
}
.share-block-email-lead {
    margin: 0 0 0.75rem;
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.45;
}
.share-block-email-form .field {
    margin-bottom: 0.65rem;
}
.share-block-email-form .field label {
    display: block;
    font-size: 0.88rem;
    margin-bottom: 0.25rem;
}
.share-block-email-form input,
.share-block-email-form textarea {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}
.share-block-flash {
    margin: 0 0 0.75rem;
    padding: 0.5rem 0.65rem;
    border-radius: var(--radius);
    font-size: 0.9rem;
}
.share-block-flash--ok {
    border: 1px solid rgba(80, 200, 120, 0.35);
    background: rgba(80, 200, 120, 0.08);
}
.share-block-flash--error {
    border: 1px solid rgba(224, 77, 139, 0.35);
    background: rgba(224, 77, 139, 0.08);
}
.site-share-dialog {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0;
    max-width: min(36rem, calc(100vw - 2rem));
    width: 100%;
    background: var(--bg-elevated);
    color: var(--text);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
}
.site-share-dialog::backdrop {
    background: rgba(0, 0, 0, 0.55);
}
.site-share-dialog-inner {
    padding: 1rem 1.15rem 1.25rem;
}
.site-share-dialog-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}
.site-share-dialog-title {
    margin: 0;
    font-family: var(--font-display);
    font-size: 1.2rem;
}
.site-share-dialog-close {
    border: none;
    background: transparent;
    color: var(--muted);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    padding: 0.15rem 0.35rem;
}
.site-share-dialog-close:hover,
.site-share-dialog-close:focus-visible {
    color: var(--text);
}
.site-share-dialog .share-block {
    margin: 0;
    max-width: none;
    border: none;
    padding: 0;
    background: transparent;
}

.lead-follow {
    margin-top: 0.75rem;
}

.share-block-tools {
    width: 100%;
}

.share-block-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}

.share-qr-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.2rem 0.55rem 0.2rem 0.3rem;
}

.share-block-qr-thumb {
    display: block;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border-radius: 0.25rem;
    background: #fff;
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 2px;
    box-sizing: border-box;
    pointer-events: none;
}

.share-qr-dialog {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0;
    max-width: min(22rem, calc(100vw - 2rem));
    width: 100%;
    background: var(--bg-elevated);
    color: var(--text);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
}

.share-qr-dialog::backdrop {
    background: rgba(0, 0, 0, 0.55);
}

.share-qr-dialog-inner {
    padding: 1rem 1.1rem 1.15rem;
    text-align: center;
}

.share-qr-dialog-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    text-align: left;
}

.share-qr-dialog-title {
    margin: 0;
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
}

.share-qr-dialog-close {
    border: none;
    background: transparent;
    color: var(--muted);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    padding: 0.15rem 0.35rem;
}

.share-qr-dialog-close:hover,
.share-qr-dialog-close:focus-visible {
    color: var(--text);
}

.share-block-qr-expanded {
    display: block;
    width: 100%;
    max-width: 280px;
    height: auto;
    margin: 0 auto;
    border-radius: 0.35rem;
    background: #fff;
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 0.35rem;
    box-sizing: border-box;
}

.share-qr-dialog .share-block-qr-hint {
    margin: 0.75rem 0 0;
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.45;
}

.btn-share {
    font-size: 0.88rem;
}

.share-block-feedback {
    margin: 0.85rem 0 0;
    font-size: 0.88rem;
    color: var(--accent, #c77dff);
}

.footer-meta {
    margin: 0 0 0.5rem;
}

.partners-intro {
    color: var(--muted);
    max-width: 40rem;
    margin-bottom: 1.5rem;
}

.partner-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 1.25rem;
    grid-template-columns: 1fr;
}

@media (min-width: 640px) {
    .partner-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 960px) {
    .partner-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.partner-card {
    margin: 0;
    padding: 1.25rem 1.35rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: rgba(26, 15, 22, 0.75);
}

.partner-type {
    display: inline-block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent-2);
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.partner-name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin: 0 0 0.35rem;
    font-weight: 600;
}

.affiliate-disclosure {
    border-block: 1px solid var(--border);
    background: rgba(224, 77, 139, 0.06);
}

.affiliate-disclosure h2 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    margin-top: 0;
}

.lang-switcher {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem 0.5rem;
    font-size: 0.82rem;
    margin-top: 0.35rem;
}

.lang-switcher span {
    color: var(--muted);
}

.lang-switcher a {
    color: var(--muted);
    font-weight: 500;
    text-decoration: none;
}

.lang-switcher a:hover,
.lang-switcher a[aria-current="true"] {
    color: #fff;
}

.lang-switcher a[aria-current="true"] {
    text-decoration: underline;
    text-underline-offset: 2px;
}

.lang-switcher-dropdown {
    position: relative;
}

.lang-switcher-trigger {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    width: 100%;
    min-width: 5.5rem;
    max-width: 11rem;
    font: inherit;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--muted);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 0.35rem 0.5rem 0.35rem 0.55rem;
    cursor: pointer;
    text-align: left;
    line-height: 1.2;
    -webkit-appearance: none;
    appearance: none;
}

.lang-switcher-trigger:hover,
.lang-switcher-trigger:focus-visible {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.25);
    outline: none;
}

.lang-switcher-trigger:focus-visible {
    box-shadow: 0 0 0 2px rgba(199, 125, 255, 0.45);
}

.lang-switcher-trigger[aria-expanded="true"] {
    color: #fff;
    border-color: rgba(199, 125, 255, 0.45);
    background: rgba(26, 15, 22, 0.95);
}

.lang-switcher-current {
    flex: 1;
    min-width: 0;
}

.lang-switcher-chevron {
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    opacity: 0.85;
    flex-shrink: 0;
    transition: transform 0.15s ease;
}

.lang-switcher-trigger[aria-expanded="true"] .lang-switcher-chevron {
    transform: rotate(180deg);
}

.lang-switcher-panel {
    position: absolute;
    z-index: 300;
    top: calc(100% + 0.35rem);
    inset-inline-end: 0;
    min-width: 100%;
    width: max-content;
    max-width: 14rem;
    padding: 0.35rem;
    margin: 0;
    list-style: none;
    background: #12080f;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(0, 0, 0, 0.2);
}

.lang-switcher-panel[hidden],
.account-menu-panel[hidden] {
    display: none !important;
}

.lang-switcher-panel:not([hidden]),
.account-menu-panel:not([hidden]) {
    display: block;
}

.lang-switcher-panel:not([hidden]) {
    animation: lang-panel-in 0.12s ease-out;
}

.account-menu-panel:not([hidden]) {
    animation: lang-panel-in 0.12s ease-out;
}

@keyframes lang-panel-in {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.lang-switcher-option {
    display: block;
    padding: 0.45rem 0.65rem;
    margin: 0;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--muted);
    text-decoration: none;
    border-radius: 6px;
    line-height: 1.25;
    white-space: nowrap;
}

.lang-switcher-option:hover,
.lang-switcher-option:focus-visible {
    color: #fff;
    background: rgba(199, 125, 255, 0.12);
    outline: none;
}

.lang-switcher-option.is-current {
    color: #f0d6ff;
    background: rgba(199, 125, 255, 0.18);
}

.lang-switcher-option.is-current::after {
    content: ' ✓';
    font-size: 0.75em;
    opacity: 0.9;
}

/* Hub & opportunity catalog */
.hero-audience-paths {
    padding-top: 0;
    margin-top: -0.5rem;
}

.hero-audience-paths-title {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    margin: 0 0 0.5rem;
}

.hero-audience-paths-lead {
    margin: 0 0 1.25rem;
    max-width: 42rem;
}

.hero-audience-cards {
    max-width: 52rem;
}

.hub-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(16rem, 1fr));
    gap: 1.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.hub-card {
    margin: 0;
}

.hub-card-link {
    display: block;
    height: 100%;
    padding: 1.35rem 1.25rem;
    text-decoration: none;
    color: inherit;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: border-color 0.15s ease, background 0.15s ease;
}

.hub-card-link:hover,
.hub-card-link:focus-visible {
    border-color: rgba(199, 125, 255, 0.45);
    background: rgba(199, 125, 255, 0.08);
    outline: none;
}

.hub-card-title {
    margin: 0 0 0.5rem;
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    color: #f5e8ff;
}

.hub-card-desc {
    margin: 0 0 0.75rem;
    font-size: 0.92rem;
    color: var(--muted);
    line-height: 1.45;
}

.hub-card-count {
    margin: 0;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--accent);
}

.catalog-vertical-filter {
    margin-bottom: 1.5rem;
}

.catalog-vertical-filter-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.catalog-vertical-filter-link {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted, rgba(255, 255, 255, 0.72));
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    transition: border-color 0.15s, color 0.15s, background 0.15s;
}

.catalog-vertical-filter-link:hover,
.catalog-vertical-filter-link.is-active {
    color: var(--accent);
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.04);
}

.catalog-list-toolbar {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.catalog-list-toolbar .catalog-vertical-filter {
    margin-bottom: 0;
}

.catalog-list-toolbar-controls {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem 1.25rem;
}

.catalog-sort-form {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
}

.catalog-sort-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted, rgba(255, 255, 255, 0.72));
}

.catalog-sort-select {
    font-size: 0.85rem;
    padding: 0.35rem 0.65rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 0.35rem;
    background: rgba(0, 0, 0, 0.25);
    color: inherit;
}

.catalog-media-filter-link {
    white-space: nowrap;
}

.talent-completeness {
    margin: 1.25rem 0;
    padding: 1rem 1.15rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
}

.talent-completeness-title {
    margin: 0 0 0.65rem;
    font-size: 0.95rem;
    font-weight: 600;
}

.talent-completeness-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.25rem;
}

.talent-completeness-item {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
}

.talent-completeness-item.is-done {
    color: rgba(255, 255, 255, 0.88);
}

.talent-completeness-mark {
    display: inline-block;
    width: 1.1rem;
}

.share-block-embed {
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.share-block-embed-title {
    margin: 0 0 0.35rem;
    font-size: 0.95rem;
}

.share-block-embed-lead {
    margin: 0 0 0.65rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.72);
}

.share-block-embed-code {
    display: block;
    width: 100%;
    max-width: 36rem;
    margin-bottom: 0.5rem;
    font-family: ui-monospace, monospace;
    font-size: 0.75rem;
    padding: 0.5rem;
    border-radius: 0.35rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(0, 0, 0, 0.25);
    color: inherit;
}

.opportunity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(18rem, 1fr));
    gap: 1.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.opportunity-card {
    margin: 0;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.opportunity-card-type {
    display: inline-block;
    margin-bottom: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--accent);
}

.opportunity-card-title {
    margin: 0 0 0.5rem;
    font-size: 1.15rem;
}

.opportunity-card-title a {
    color: #f5e8ff;
    text-decoration: none;
}

.opportunity-card-title a:hover {
    color: var(--accent);
}

.opportunity-card-summary {
    margin: 0 0 0.65rem;
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.45;
}

.opportunity-card-meta {
    margin: 0 0 1rem;
    font-size: 0.85rem;
    color: var(--muted);
}

.opportunity-detail {
    max-width: 42rem;
}

.opportunity-detail .eyebrow {
    margin-bottom: 0.35rem;
}

.opportunity-detail h1 {
    margin-top: 0;
}

/* Discover */
.discover-layout {
    display: grid;
    gap: 2rem;
}
@media (min-width: 960px) {
    .discover-layout {
        grid-template-columns: 1fr 280px;
        align-items: start;
    }
    .discover-main {
        grid-column: 1;
    }
    .discover-subscribe {
        grid-column: 2;
        grid-row: 1 / span 3;
    }
}
.discover-filters-grid {
    display: grid;
    gap: 1rem;
    margin-bottom: 1rem;
}
@media (min-width: 720px) {
    .discover-filters-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
.discover-field span {
    display: block;
    font-size: 0.85rem;
    color: var(--muted);
    margin-bottom: 0.35rem;
}
.discover-types label {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-right: 1rem;
    font-size: 0.9rem;
}
.discover-view-tabs {
    display: flex;
    gap: 0.5rem;
    margin: 1.25rem 0;
    flex-wrap: wrap;
}
.discover-view-tab {
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    border: 1px solid var(--border);
    text-decoration: none;
    color: var(--muted);
    font-size: 0.9rem;
}
.discover-view-tab.is-active,
.discover-view-tab:hover {
    color: #f5e8ff;
    border-color: var(--accent);
}
.discover-map {
    height: 420px;
    width: 100%;
    border-radius: 12px;
    border: 1px solid var(--border);
    margin-bottom: 0.75rem;
}
.discover-map-hint {
    font-size: 0.9rem;
    color: var(--muted);
}
.discover-calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}
.discover-calendar-dow {
    font-size: 0.75rem;
    text-align: center;
    color: var(--muted);
    padding: 0.35rem;
}
.discover-calendar-cell {
    min-height: 4.5rem;
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 0.25rem;
    font-size: 0.75rem;
}
.discover-calendar-cell.is-empty {
    background: transparent;
    border-color: transparent;
}
.discover-calendar-cell.has-events {
    border-color: var(--accent);
}
.discover-calendar-day {
    font-weight: 600;
    display: block;
    margin-bottom: 0.15rem;
}
.discover-calendar-events {
    list-style: none;
    margin: 0;
    padding: 0;
}
.discover-calendar-events a {
    color: var(--accent);
    text-decoration: none;
}
.discover-calendar-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}
.discover-subscribe {
    padding: 1.25rem;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.2);
}
.discover-subscribe input,
.discover-subscribe select {
    width: 100%;
    margin-bottom: 0.75rem;
}
.discover-flash {
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    background: rgba(120, 80, 200, 0.25);
}
.discover-empty {
    color: var(--muted);
}

.home-calendar-section {
    padding: 0 0 2.5rem;
    margin-top: -0.5rem;
}
.home-calendar-intro {
    margin-bottom: 1.25rem;
}
.home-calendar-intro .home-discover-title {
    margin: 0 0 0.5rem;
    font-size: clamp(1.5rem, 3vw, 2rem);
}
.home-calendar-intro .home-discover-lead {
    margin: 0 0 1rem;
    max-width: 48rem;
    color: var(--muted);
}
.home-calendar-fullbleed {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 0 clamp(0.75rem, 2.5vw, 2rem) 1rem;
    box-sizing: border-box;
}
.home-calendar-fullbleed .discover-calendar {
    max-width: none;
}
.home-calendar-fullbleed .discover-calendar-grid {
    gap: 6px;
}
.home-calendar-fullbleed .discover-calendar-cell {
    min-height: clamp(4.5rem, 8vw, 6.5rem);
    font-size: clamp(0.65rem, 1.1vw, 0.8rem);
}
.home-calendar-fullbleed .discover-calendar-events a {
    line-height: 1.3;
}
.home-calendar-fullbleed .discover-calendar-type {
    display: block;
    font-size: 0.55em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--accent-2);
    margin-bottom: 0.1rem;
}
.home-calendar-filter-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.home-calendar-filter-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    border: 1px solid var(--border);
    font-size: 0.88rem;
    cursor: pointer;
    color: var(--muted);
    transition: border-color 0.15s, color 0.15s, background 0.15s;
}
.home-calendar-filter-pill input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}
.home-calendar-filter-pill.is-active,
.home-calendar-filter-pill:has(input:checked) {
    border-color: var(--accent);
    color: #f5e8ff;
    background: rgba(199, 125, 255, 0.12);
}
.home-calendar-footer {
    margin-top: 1.25rem;
}
.home-calendar-footer .home-discover-actions {
    margin: 0;
}
.discover-hub-search-intro {
    margin: 0 0 1rem;
    color: var(--muted);
    max-width: 42rem;
}
.discover-hub-search {
    margin-bottom: 0.5rem;
}
.discover-hub-calendar {
    margin-top: 0;
}
.discover-hub-links {
    margin-top: 1.25rem;
}
.discover-distance {
    color: var(--accent);
}

.hero-paths {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1rem;
}
.hero-trust-strip {
    list-style: none;
    margin: 0 0 1rem;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.25rem;
    font-size: 0.9rem;
    color: var(--muted);
}
.hero-trust-strip li::before {
    content: "·";
    margin-right: 0.5rem;
    color: var(--accent-2);
}
.hero-trust-strip li:first-child::before {
    content: none;
    margin: 0;
}
.home-week-strip {
    padding: 2rem 0;
    border-bottom: 1px solid var(--border);
}
.home-week-strip-head {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.5rem 1.5rem;
    margin-bottom: 1rem;
}
.home-week-strip-head h2 {
    margin: 0;
}
.home-week-range {
    margin: 0;
    color: var(--muted);
    font-size: 0.95rem;
}
.home-week-cards {
    margin-bottom: 1rem;
}
.home-week-more {
    margin: 0;
}
.discover-type-legend {
    list-style: none;
    margin: 0 0 0.75rem;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
    font-size: 0.85rem;
    color: var(--muted);
}
.discover-type-legend-swatch {
    display: inline-block;
    width: 0.65rem;
    height: 0.65rem;
    border-radius: 2px;
    margin-right: 0.35rem;
    vertical-align: middle;
}
.discover-calendar-empty {
    margin: 0 0 0.75rem;
    color: var(--muted);
    font-size: 0.95rem;
}
.discover-calendar-cell.is-today {
    outline: 2px solid var(--accent);
    outline-offset: -2px;
}
.discover-type--castings .discover-calendar-type,
.discover-type-legend-swatch.discover-type--castings { background: #c77dff; }
.discover-type--jobs .discover-calendar-type,
.discover-type-legend-swatch.discover-type--jobs { background: #7ec8ff; }
.discover-type--events .discover-calendar-type,
.discover-type-legend-swatch.discover-type--events { background: #7dffb8; }
.discover-type--shows .discover-calendar-type,
.discover-type-legend-swatch.discover-type--shows { background: #ffb87d; }
.opportunity-key-facts {
    margin: 1.5rem 0;
    padding: 1rem 1.25rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.02);
}
.opportunity-key-facts h2 {
    margin: 0 0 0.75rem;
    font-size: 1rem;
}
.opportunity-key-facts dl {
    margin: 0;
    display: grid;
    gap: 0.35rem 1rem;
    grid-template-columns: auto 1fr;
}
.opportunity-key-facts dt {
    font-weight: 500;
    color: var(--muted);
}
.opportunity-key-facts dd {
    margin: 0;
}
.apply-scoped-card {
    margin: 1rem 0 1.5rem;
    padding: 1rem 1.25rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: rgba(199, 125, 255, 0.06);
}
.apply-scoped-card h2 {
    margin: 0 0 0.5rem;
    font-size: 1.1rem;
}
.apply-scoped-card-meta {
    margin: 0 0 0.75rem;
    color: var(--muted);
    font-size: 0.95rem;
}
@media (min-width: 720px) {
    .apply-scoped-card {
        position: sticky;
        top: 1rem;
        z-index: 2;
    }
}
.hero-paths-label {
    margin: 0.75rem 0 0.35rem;
    font-size: 0.95rem;
    color: var(--muted);
}
.hero-paths-audience {
    margin-bottom: 0.5rem;
}
.hero-paths-secondary {
    margin-bottom: 1rem;
}
.ux-empty-state {
    margin: 1.5rem 0;
    padding: 1.25rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: rgba(199, 125, 255, 0.05);
}
.ux-empty-state-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}
.ux-setup-checklist {
    margin: 1.5rem 0;
    padding: 1.25rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: rgba(199, 125, 255, 0.06);
}
.ux-setup-checklist-list {
    margin: 0.75rem 0 0;
    padding-left: 1.25rem;
}
.ux-setup-checklist-item.is-done {
    color: var(--muted);
}
.thanks-portal-block {
    margin: 1.5rem 0;
}
.apply-draft-email-step1 {
    flex: 1 1 100%;
    margin: 0 0 0.5rem;
}
.discover-geo-hint {
    margin-top: 0.5rem;
}
.thanks-opportunity {
    margin: 1rem 0;
    padding: 1rem;
    border-left: 3px solid var(--accent);
    background: rgba(199, 125, 255, 0.08);
}
@media (max-width: 719px) {
    .nav-group + .nav-group {
        padding-left: 0;
        margin-left: 0;
        border-left: none;
    }

    .nav-flyout {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .nav-flyout-panel {
        width: 100%;
    }

    .nav-cta.btn {
        margin-left: 0;
        width: 100%;
        text-align: center;
    }

    .logo-tagline {
        max-width: 100%;
        font-size: 0.72rem;
    }
}

@media (max-width: 640px) {
    .site-header .nav {
        gap: 0.5rem 0.75rem;
        font-size: 0.88rem;
    }
}

.home-stats {
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--border);
}
.home-stats-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    text-align: center;
}
.home-stat-value {
    display: block;
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--accent-2);
}
.home-stat-label {
    display: block;
    font-size: 0.88rem;
    color: var(--muted);
}
.home-callout {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
}
.home-callout p {
    margin: 0;
    font-style: italic;
    color: var(--muted);
    text-align: center;
}
.home-how {
    padding: 2rem 0;
    border-bottom: 1px solid var(--border);
}
.home-how-steps {
    margin: 1.25rem 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 1rem;
}
.home-how-steps li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.home-how-step-num {
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--accent-soft);
    color: var(--accent-2);
    font-weight: 600;
}
.earn-paths {
    padding: clamp(1.5rem, 3vw, 2.25rem) 0;
    border-bottom: 1px solid var(--border);
}
.earn-paths--compact {
    padding: 1.25rem 0;
}
.earn-paths h2 {
    margin: 0 0 0.65rem;
    font-family: var(--font-display);
    font-size: clamp(1.45rem, 3vw, 1.85rem);
    font-weight: 600;
    color: var(--text);
    line-height: 1.2;
}
.earn-paths-lead {
    margin: 0 0 1.25rem;
    color: var(--muted);
}
.earn-paths-grid {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
}
.earn-path-card {
    margin: 0;
    padding: 1.35rem 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
}
.earn-path-card--primary {
    border-color: rgba(224, 77, 139, 0.35);
    background: linear-gradient(160deg, var(--accent-soft), var(--bg-elevated));
}
.earn-path-card--secondary {
    border-color: rgba(199, 125, 255, 0.32);
    background: rgba(199, 125, 255, 0.07);
}
.earn-path-card--not_cash {
    border-color: rgba(184, 159, 176, 0.28);
    background: rgba(26, 15, 22, 0.92);
}
.earn-path-card--producer {
    border-color: rgba(199, 125, 255, 0.28);
    background: rgba(255, 255, 255, 0.03);
}
.earn-path-badge {
    display: inline-block;
    margin-bottom: 0.65rem;
    padding: 0.2rem 0.55rem;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 999px;
    background: var(--accent-soft);
    color: var(--accent);
    border: 1px solid rgba(224, 77, 139, 0.28);
}
.earn-path-card--secondary .earn-path-badge {
    background: rgba(199, 125, 255, 0.14);
    color: var(--accent-2);
    border-color: rgba(199, 125, 255, 0.3);
}
.earn-path-card--not_cash .earn-path-badge {
    background: rgba(184, 159, 176, 0.12);
    color: var(--muted);
    border-color: rgba(184, 159, 176, 0.22);
}
.earn-path-card--producer .earn-path-badge {
    background: rgba(199, 125, 255, 0.12);
    color: var(--accent-2);
    border-color: rgba(199, 125, 255, 0.28);
}
.earn-path-card-title {
    margin: 0 0 0.5rem;
    font-family: var(--font-display);
    font-size: 1.28rem;
    font-weight: 600;
    color: #f5e8ff;
    line-height: 1.25;
}
.earn-path-card-body {
    margin: 0 0 0.85rem;
    font-size: 0.92rem;
    color: var(--muted);
    line-height: 1.5;
}
.earn-path-card .btn {
    margin: 0;
}
.earn-paths-footer,
.earn-paths-more {
    margin: 1.25rem 0 0;
}
.earn-paths-inline {
    margin: 0.75rem 0 0;
    font-size: 0.9rem;
    color: var(--muted);
}
.earn-paths-inline a {
    color: #ffb3d4;
}
.page-head .earn-paths {
    padding: 1.35rem 0 0;
    margin: 0;
    border-bottom: none;
}
.page-head .earn-paths > .wrap.narrow,
.page-head .earn-paths > .wrap {
    width: 100%;
    max-width: none;
    margin-inline: 0;
    padding: 0;
}
.hero-search-wrap {
    margin: 1rem 0;
}
.home-discover-search {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: flex-end;
    max-width: 36rem;
}
.home-discover-search-field {
    flex: 1 1 12rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.home-discover-search-field input[type="text"] {
    width: 100%;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--bg-elevated);
    color: var(--text);
}
.home-discover-search-radius {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    font-size: 0.9rem;
}
.home-discover-search-radius input {
    width: 5rem;
    padding: 0.5rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--bg-elevated);
    color: var(--text);
}
.hero-secondary-links {
    margin: 0.75rem 0 0;
    font-size: 0.9rem;
    color: var(--muted);
}
.hero-secondary-links a {
    color: var(--muted);
}
.hero-secondary-links a:hover {
    color: var(--text);
}
.home-jump-nav {
    position: sticky;
    top: 4.5rem;
    z-index: 40;
    background: rgba(15, 6, 12, 0.92);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(8px);
}
.home-jump-nav-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.25rem;
    padding: 0.6rem 0;
    font-size: 0.9rem;
}
.home-jump-nav a {
    color: var(--muted);
    text-decoration: none;
}
.home-jump-nav a:hover {
    color: var(--accent-2);
}
.home-categories-title {
    margin: 0 0 1.25rem;
    font-size: 1.25rem;
}
.home-discover-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}
.home-new-here {
    padding: 1.75rem 0;
    border-bottom: 1px solid var(--border);
    background: rgba(199, 125, 255, 0.04);
}
.home-new-here-links {
    list-style: none;
    margin: 1rem 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}
@media (max-width: 600px) {
    .home-stats-grid {
        grid-template-columns: 1fr;
    }
}

/* Talent profiles — gallery & video */
.talent-media {
    margin: 1.5rem 0 2rem;
    display: grid;
    gap: 2rem;
}
.talent-media-heading {
    margin: 0 0 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--muted);
}
.talent-gallery--placeholder .talent-gallery-main {
    object-fit: contain;
    background: var(--surface);
}
.talent-gallery-stage {
    display: grid;
    gap: 0.75rem;
}
.talent-gallery-frame {
    position: relative;
    width: 100%;
    max-width: 100%;
}
.talent-gallery-main-btn {
    display: block;
    width: 100%;
    padding: 0;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface);
    cursor: zoom-in;
    overflow: hidden;
}
.talent-gallery-pins-layer {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    pointer-events: none;
}
.talent-gallery-pins-layer [data-talent-shoppable-pin] {
    pointer-events: auto;
}
.talent-gallery-main {
    display: block;
    width: 100%;
    height: auto;
    max-height: min(70vh, 640px);
    object-fit: cover;
    aspect-ratio: 4 / 5;
}
.talent-gallery-thumbs {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.talent-gallery-thumb {
    padding: 0;
    border: 2px solid transparent;
    border-radius: calc(var(--radius) - 2px);
    background: transparent;
    cursor: pointer;
    overflow: hidden;
    opacity: 0.72;
    transition: opacity 0.15s ease, border-color 0.15s ease;
}
.talent-gallery-thumb:hover,
.talent-gallery-thumb.is-active {
    opacity: 1;
    border-color: var(--accent);
}
.talent-gallery-thumb img {
    display: block;
    width: 72px;
    height: 90px;
    object-fit: cover;
}
.talent-profile-links-dl {
    display: grid;
    gap: 0.5rem 1rem;
    grid-template-columns: minmax(7rem, auto) 1fr;
    margin: 0;
}

.talent-profile-links-dl dt {
    font-weight: 600;
    margin: 0;
}

.talent-profile-links-dl dd {
    margin: 0;
}

.talent-video-embed-wrap {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    background: #000;
}
.talent-video-embed {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.talent-video-player {
    display: block;
    width: 100%;
    max-height: min(70vh, 480px);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: #000;
}
.talent-video-poster-only img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}
.talent-lightbox {
    max-width: min(96vw, 960px);
    width: 100%;
    padding: 0;
    border: none;
    border-radius: var(--radius);
    background: var(--bg);
    color: var(--text);
}
.talent-lightbox::backdrop {
    background: rgba(0, 0, 0, 0.82);
}
.talent-lightbox-img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 90vh;
    object-fit: contain;
}
.talent-lightbox-close {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    z-index: 1;
    width: 2.5rem;
    height: 2.5rem;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
}
.opportunity-card--talent {
    display: grid;
    gap: 0.75rem;
}
.opportunity-card-thumb {
    display: block;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
}
.opportunity-card-thumb img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

/* Model conversion — testimonials & for-models */
.model-testimonials {
    padding: 2rem 0;
    border-bottom: 1px solid var(--border);
}
.model-testimonials-heading {
    margin: 0 0 0.5rem;
    font-size: 1.25rem;
}
.model-testimonials-lead {
    margin: 0 0 1.25rem;
    color: var(--muted);
    max-width: 42rem;
}
.model-testimonials-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 1rem;
}
.model-testimonials--cards .model-testimonials-list {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.model-testimonials--compact .model-testimonials-list {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.model-testimonial-card {
    margin: 0;
    padding: 1.25rem 1.35rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface);
}
.model-testimonial-card blockquote {
    margin: 0;
}
.model-testimonial-card blockquote p {
    margin: 0;
    font-style: italic;
    line-height: 1.5;
}
.model-testimonial-byline {
    margin: 0.75rem 0 0;
    font-size: 0.875rem;
    color: var(--muted);
}
.model-trust .model-stats {
    margin-top: 1.5rem;
}
.model-faq-list dt {
    font-weight: 600;
    margin-top: 1rem;
}
.model-faq-list dd {
    margin: 0.35rem 0 0;
    color: var(--muted);
}
.model-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}
#apply-castings .home-week-strip-head {
    margin-bottom: 0.5rem;
}

/* Platform usefulness — tools grid & trust tiles */
.home-why,
.home-expect {
    padding: 2rem 0;
}
.home-expect {
    border-top: 1px solid var(--border);
}
.platform-tools {
    padding: 2rem 0;
    border-top: 1px solid var(--border);
}
.platform-tools-lead {
    max-width: 42rem;
    margin-bottom: 1.5rem;
}
.platform-tools-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}
.platform-tool-card {
    margin: 0;
    height: 100%;
}
.platform-tool-card-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 1.25rem 1.35rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface);
    text-decoration: none;
    color: inherit;
    transition: border-color 0.15s ease, background 0.15s ease;
}
.platform-tool-card-link:hover {
    border-color: var(--accent);
    background: rgba(199, 125, 255, 0.06);
}
.platform-tool-card-title {
    margin: 0 0 0.5rem;
    font-size: 1.05rem;
}
.platform-tool-card-desc {
    margin: 0;
    flex: 1;
    font-size: 0.925rem;
    color: var(--muted);
    line-height: 1.45;
}
.platform-tool-card-cta {
    margin-top: 0.85rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--accent);
}
.platform-tools-more {
    margin: 1.25rem 0 0;
}
.home-trust-tiles {
    padding: 1.5rem 0 2rem;
    border-bottom: 1px solid var(--border);
}
.home-trust-tiles-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.75rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.home-trust-tile {
    margin: 0;
}
.home-trust-tile a {
    display: block;
    height: 100%;
    padding: 1rem 1.1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: rgba(199, 125, 255, 0.04);
    text-decoration: none;
    color: inherit;
    transition: border-color 0.15s ease;
}
.home-trust-tile a:hover {
    border-color: var(--accent);
}
.home-trust-tile p {
    margin: 0;
    font-size: 0.925rem;
    line-height: 1.45;
    color: var(--muted);
}
.platform-audience-cta {
    padding: 2.5rem 0;
}

.refer-layout {
    display: grid;
    gap: 2rem;
    max-width: 56rem;
}
@media (min-width: 768px) {
    .refer-layout {
        grid-template-columns: minmax(200px, 260px) 1fr;
        align-items: start;
    }
}
.refer-aside {
    padding: 1.25rem 1.35rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: rgba(199, 125, 255, 0.04);
}
.refer-aside-list {
    margin: 0.75rem 0 0;
    padding-left: 1.15rem;
    color: var(--muted);
    font-size: 0.925rem;
    line-height: 1.5;
}
.refer-promo-note {
    margin: 0.75rem 0 0;
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.45;
}
.refer-promo--inline {
    padding: 1.25rem 1.35rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface);
}
.refer-promo--inline h2 {
    margin-top: 0;
    font-size: 1.15rem;
}
.refer-type-chips {
    list-style: none;
    margin: 1rem 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.refer-chip {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    border: 1px solid var(--border);
    font-size: 0.8125rem;
    color: var(--muted);
    background: var(--surface);
}
.refer-form fieldset {
    margin: 0 0 1.5rem;
    padding: 0;
    border: 0;
}
.refer-form legend {
    font-weight: 600;
    margin-bottom: 0.75rem;
    padding: 0;
}

.shop-disclaimer {
    margin: 1rem 0 0;
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.45;
}
.shop-disclaimer--list {
    margin-bottom: 1.25rem;
}
.shop-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}
.shop-filter-chip {
    display: inline-block;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    border: 1px solid var(--border);
    font-size: 0.875rem;
    text-decoration: none;
    color: var(--muted);
    background: var(--surface);
}
.shop-filter-chip.is-active,
.shop-filter-chip:hover {
    border-color: var(--accent);
    color: var(--text);
}
.shop-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 1.25rem;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}
.shop-card {
    margin: 0;
}
.shop-card-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--surface);
    transition: border-color 0.15s ease;
}
.shop-card-link:hover {
    border-color: var(--accent);
}
.shop-card-image-wrap {
    display: block;
    aspect-ratio: 4 / 5;
    background: rgba(199, 125, 255, 0.06);
    overflow: hidden;
    position: relative;
}
.shop-card--platform .shop-card-link {
    border-color: rgba(199, 125, 255, 0.35);
}
.shop-card-badge {
    position: absolute;
    top: 0.65rem;
    left: 0.65rem;
    z-index: 1;
    padding: 0.2rem 0.55rem;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text);
    background: rgba(199, 125, 255, 0.92);
    border-radius: 999px;
}
.shop-card-price--platform {
    font-weight: 600;
    color: var(--text);
}
.shop-card-price-note,
.shop-card-oos {
    display: block;
    padding: 0 1rem 0.35rem;
    font-size: 0.82rem;
    color: var(--muted);
}
.shop-card-oos {
    padding-bottom: 1rem;
    color: #c96;
}
.shop-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.shop-product-img--placeholder {
    object-fit: contain;
    padding: 1rem;
    background: rgba(199, 125, 255, 0.06);
}
.shop-card-image-wrap--wishlist {
    display: block;
    margin-bottom: 0;
}
.shop-card-category,
.shop-card-brand {
    display: block;
    padding: 0 1rem;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--muted);
}
.shop-card-category {
    padding-top: 0.85rem;
}
.shop-card-title {
    margin: 0.35rem 0;
    padding: 0 1rem;
    font-size: 1.05rem;
}
.shop-card-price,
.shop-card-rating {
    display: block;
    padding: 0 1rem 1rem;
    font-size: 0.9rem;
    color: var(--muted);
}
.shop-stars {
    display: inline-flex;
    align-items: center;
    gap: 0.15rem;
}
.shop-star {
    color: var(--muted);
    font-size: 0.95rem;
}
.shop-star.is-filled {
    color: #e8b84a;
}
.shop-stars-count {
    margin-left: 0.35rem;
    font-size: 0.85rem;
    color: var(--muted);
}
.shop-detail {
    display: grid;
    gap: 2rem;
}
@media (min-width: 720px) {
    .shop-detail {
        grid-template-columns: minmax(200px, 280px) 1fr;
        align-items: start;
    }
    .shop-detail--gallery {
        grid-template-columns: minmax(280px, 1fr) 1fr;
    }
}
.shop-detail-media img {
    width: 100%;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}
.shop-detail-category,
.shop-detail-brand {
    margin: 0 0 0.25rem;
    font-size: 0.85rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.shop-detail-title {
    margin: 0.5rem 0;
}
.shop-detail-price {
    font-size: 1.1rem;
    font-weight: 500;
}
.shop-detail-price--platform {
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--text);
}
.shop-detail-price-note {
    margin: 0.25rem 0 0.75rem;
    font-size: 0.9rem;
    color: var(--muted);
}
.shop-buy-actions {
    margin-top: 1.25rem;
    padding: 1.25rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: rgba(199, 125, 255, 0.05);
}
.shop-platform-stock {
    margin: 0 0 0.75rem;
}
.shop-partner-alt-lead {
    margin: 1rem 0 0.5rem;
    font-size: 0.92rem;
    color: var(--muted);
}
.shop-buy-cta--partner {
    margin-top: 0.25rem;
}
.shop-platform-buy-cta {
    margin-top: 0.25rem;
}
.shop-detail-subhead {
    margin: 1.25rem 0 0.5rem;
    font-size: 1rem;
}
.shop-vendor-band {
    margin: 1.25rem 0;
    padding: 1rem 1.1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface);
}
.shop-filters--sellers {
    margin-top: 0.5rem;
}
.shop-filters-label {
    display: block;
    width: 100%;
    font-size: 0.8rem;
    color: var(--muted);
    margin-bottom: 0.35rem;
}
.shop-seller-active-banner {
    margin: 0.75rem 0 1rem;
    padding: 0.65rem 0.9rem;
    background: var(--surface);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}
.shop-card-vendor {
    display: block;
    font-size: 0.8rem;
    color: var(--muted);
    margin-top: 0.15rem;
}
.shop-vendor-band .shop-disclaimer {
    margin: 0.75rem 0 0;
    font-size: 0.85rem;
    color: var(--muted);
}
.shop-buy-cta {
    margin-top: 0.5rem;
}
.shop-reviews-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 1rem;
}
.shop-review {
    padding: 1rem 1.1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface);
}
.shop-review-body {
    margin: 0.5rem 0 0.25rem;
}
.shop-review-meta {
    margin: 0;
    font-size: 0.85rem;
    color: var(--muted);
}
.shop-reviews-empty {
    color: var(--muted);
}

.catalog-propose-cta {
    margin: 1.25rem 0 0;
    padding: 1.1rem 1.25rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface);
}
.catalog-propose-cta-title {
    margin: 0 0 0.35rem;
    font-size: 1.1rem;
}
.catalog-propose-cta-lead {
    margin: 0 0 0.75rem;
    color: var(--muted);
}
.apply-intent-lead {
    margin: 0 0 1rem;
    color: var(--muted);
}
.apply-intent-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 1rem;
}
@media (min-width: 640px) {
    .apply-intent-grid {
        grid-template-columns: 1fr 1fr;
    }
}
.apply-intent-card {
    margin: 0;
    padding: 1.1rem 1.25rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface);
}
.apply-intent-card.is-active {
    border-color: var(--accent);
    box-shadow: 0 0 0 1px var(--accent);
}
.apply-intent-card-title {
    margin: 0 0 0.35rem;
    font-size: 1.05rem;
}
.apply-intent-card-desc {
    margin: 0 0 0.85rem;
    color: var(--muted);
    font-size: 0.95rem;
}
.apply-intent-card-current {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent);
}
.creator-portal-nav {
    margin: 0 0 1.5rem;
}
.creator-portal-nav-title {
    margin: 0 0 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--muted);
}
.creator-portal-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.65rem;
}
.creator-portal-nav-link {
    display: block;
    padding: 0.85rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface);
    text-decoration: none;
    color: inherit;
    transition: border-color 0.15s ease, background 0.15s ease;
}
.creator-portal-nav-link:hover,
.creator-portal-nav-link:focus-visible {
    border-color: var(--accent);
    background: var(--bg-elevated);
}
.creator-portal-nav-label {
    display: block;
    font-weight: 600;
}
.creator-portal-nav-desc {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.9rem;
    color: var(--muted);
}
.creator-portal-actions {
    margin: 0;
}
.applicant-portal-email {
    margin: 0.5rem 0 0;
    font-size: 0.95rem;
    color: var(--muted);
}
.applicant-application-list {
    list-style: none;
    margin: 1.25rem 0 0;
    padding: 0;
    display: grid;
    gap: 1rem;
}
.applicant-application-card {
    margin: 0;
    padding: 1rem 1.1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface);
}
.applicant-application-card-title {
    margin: 0 0 0.35rem;
    font-size: 1.05rem;
}
.applicant-application-meta {
    margin: 0 0 0.75rem;
    font-size: 0.92rem;
    color: var(--muted);
}
.applicant-application-actions {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.applicant-status-badge {
    display: inline-block;
    padding: 0.15rem 0.5rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    background: var(--bg-elevated);
    color: var(--text);
}
.applicant-status-replied {
    border: 1px solid var(--accent);
}
.applicant-portal-actions {
    margin: 1.5rem 0 0;
}
.applicant-detail-facts {
    margin-bottom: 1.25rem;
}
.catalog-pagination {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}
.catalog-pagination-summary {
    margin: 0 0 0.75rem;
    font-size: 0.92rem;
    color: var(--muted);
}
.catalog-pagination-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}
.catalog-pagination-current {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.25rem;
    padding: 0.35rem 0.65rem;
    border-radius: var(--radius);
    font-weight: 600;
    background: var(--accent);
    color: var(--bg);
}
.apply-draft-email-hint {
    margin-top: 0.75rem;
}
.catalog-search-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
    margin: 0 0 1.25rem;
}
.catalog-search-toolbar input[type="search"] {
    flex: 1 1 12rem;
    min-width: 10rem;
    max-width: 24rem;
}
.catalog-circle-aside {
    margin: 1.25rem 0;
    padding: 1rem 1.1rem;
    border-left: 3px solid var(--accent);
    background: var(--surface);
}
.catalog-circle-aside p {
    margin: 0.35rem 0;
}
.catalog-circle-geo-hint {
    margin-top: 0.75rem !important;
    font-size: 0.9rem;
    color: var(--muted);
}
.circular-nearby-strip {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}
.circular-nearby-lead {
    margin: 0.35rem 0 0;
    color: var(--muted);
    max-width: 42rem;
}
.circular-revenue-loop {
    margin: 1.75rem 0 0;
    padding: 1.1rem 1.25rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface);
}
.circular-revenue-loop h2 {
    margin: 0 0 0.35rem;
    font-size: 1.05rem;
}
.circular-revenue-loop p {
    margin: 0 0 0.75rem;
    color: var(--muted);
}
.circular-revenue-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    margin: 0;
    padding: 0;
    list-style: none;
}
.circular-hub-alert {
    margin: 1.5rem 0;
}
.thanks-alert-block {
    margin: 1.5rem 0;
    padding: 1rem 1.1rem;
    border-left: 3px solid var(--accent);
    background: var(--surface);
}
.producer-circle-subscribe form {
    display: grid;
    gap: 0.75rem;
    max-width: 28rem;
}
.shop-review-form-section {
    margin-top: 0;
}

.content-mature-notice {
    margin: 1rem 0 0;
    padding: 0.85rem 1rem;
    border: 1px solid var(--border);
    border-left: 3px solid var(--accent);
    border-radius: var(--radius);
    background: var(--bg-elevated);
    font-size: 0.95rem;
    color: var(--muted);
}
.content-mature-notice p {
    margin: 0;
}
.content-mature-notice strong {
    color: var(--text);
}
.content-mature-notice a {
    color: var(--accent-2);
}

.prep-glam-strip-lead {
    max-width: 42rem;
    margin-bottom: 1.25rem;
}
.prep-glam-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}
.prep-glam-card {
    margin: 0;
}
.prep-glam-card-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 1.1rem 1.15rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--bg-elevated);
    color: inherit;
    text-decoration: none;
    transition: border-color 0.15s ease, background 0.15s ease;
}
.prep-glam-card-link:hover {
    border-color: rgba(224, 77, 139, 0.45);
    background: rgba(224, 77, 139, 0.06);
}
.prep-glam-card-title {
    margin: 0 0 0.35rem;
    font-size: 1.05rem;
    font-family: var(--font-sans);
    font-weight: 600;
}
.prep-glam-card-desc {
    margin: 0 0 0.75rem;
    flex: 1;
    font-size: 0.92rem;
    color: var(--muted);
    line-height: 1.5;
}
.prep-glam-card-cta {
    font-size: 0.88rem;
    color: var(--accent-2);
}
.catalog-glam-badge {
    display: inline-block;
    margin-left: 0.35rem;
    padding: 0.15rem 0.45rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 4px;
    background: var(--accent-soft);
    color: var(--accent-2);
    vertical-align: middle;
}
.catalog-glam-aside {
    margin: 1rem 0;
}
.thanks-prep-block {
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border);
}

.creator-photo-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}
.creator-photos-page {
    display: grid;
    gap: 1.5rem;
}
.creator-photo-section-title {
    margin: 0 0 0.75rem;
    font-size: 1rem;
    font-weight: 600;
}
.creator-photo-quota {
    margin: 0;
    font-size: 0.95rem;
    color: var(--muted);
}
.creator-photo-upload-card {
    padding: 1.1rem 1.25rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface);
}
.creator-photo-upload-form {
    margin: 0;
}
.creator-photo-dropzone {
    position: relative;
    margin-bottom: 1rem;
    border: 2px dashed var(--border);
    border-radius: var(--radius);
    background: var(--bg);
    cursor: pointer;
    transition: border-color 0.15s ease, background 0.15s ease;
}
.creator-photo-dropzone:hover,
.creator-photo-dropzone:focus-visible,
.creator-photo-dropzone.is-dragover {
    border-color: var(--accent);
    background: var(--bg-elevated);
    outline: none;
}
.creator-photo-dropzone.has-preview .creator-photo-dropzone-inner {
    display: none;
}
.creator-photo-input {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.creator-photo-dropzone-inner {
    padding: 2rem 1.25rem;
    text-align: center;
}
.creator-photo-dropzone-label {
    margin: 0 0 0.35rem;
    font-weight: 600;
}
.creator-photo-dropzone-hint {
    margin: 0;
    font-size: 0.9rem;
    color: var(--muted);
}
.creator-photo-preview-wrap {
    padding: 1rem;
    text-align: center;
}
.creator-photo-preview-wrap[hidden] {
    display: none !important;
}
.creator-photo-preview-img {
    display: block;
    max-width: 100%;
    max-height: min(50vh, 320px);
    margin: 0 auto 0.75rem;
    border-radius: calc(var(--radius) - 2px);
    object-fit: contain;
}
.creator-photo-preview-name {
    margin: 0 0 0.5rem;
    font-size: 0.9rem;
    color: var(--muted);
    word-break: break-all;
}
.creator-photo-upload-error[hidden] {
    display: none !important;
}
.creator-photo-upload-error {
    margin: 0 0 0.75rem;
}
.creator-photo-limit-note {
    margin: 0;
    color: var(--muted);
}
.creator-photo-pins-cta {
    margin: 0;
}
.creator-photo-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.creator-photo-filter {
    padding: 0.4rem 0.75rem;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--surface);
    color: inherit;
    font: inherit;
    font-size: 0.9rem;
    cursor: pointer;
    transition: border-color 0.15s ease, background 0.15s ease;
}
.creator-photo-filter:hover,
.creator-photo-filter:focus-visible {
    border-color: var(--accent);
    outline: none;
}
.creator-photo-filter.is-active {
    border-color: var(--accent);
    background: var(--accent);
    color: #fff;
}
.creator-photo-filter-count {
    opacity: 0.85;
    font-size: 0.85em;
}
.creator-photo-empty {
    margin: 0;
    color: var(--muted);
}
.creator-photo-empty[hidden] {
    display: none !important;
}
.creator-photo-grid--manage {
    margin-top: 0.25rem;
}
.creator-photo-card {
    margin: 0;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--surface);
}
.creator-photo-card[hidden] {
    display: none !important;
}
.creator-photo-thumb {
    display: block;
    width: 100%;
    padding: 0;
    border: none;
    background: #000;
    cursor: zoom-in;
    aspect-ratio: 4 / 5;
    overflow: hidden;
}
.creator-photo-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.creator-photo-card-meta {
    padding: 0.65rem 0.75rem;
    display: grid;
    gap: 0.35rem;
    font-size: 0.9rem;
}
.creator-photo-status {
    display: inline-block;
    width: fit-content;
    padding: 0.15rem 0.5rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
.creator-photo-status--pending {
    background: rgba(255, 193, 7, 0.2);
    color: #c9a000;
}
.creator-photo-status--approved {
    background: rgba(76, 175, 80, 0.2);
    color: #3d9a41;
}
.creator-photo-status--rejected {
    background: rgba(244, 67, 54, 0.15);
    color: #d44336;
}
.creator-photo-date {
    color: var(--muted);
    font-size: 0.85rem;
}
.creator-photo-reject-reason {
    margin: 0;
    font-size: 0.85rem;
    color: var(--muted);
}
.creator-photo-pin-meta {
    margin: 0;
    font-size: 0.85rem;
}
.creator-photo-lightbox {
    position: relative;
    max-width: min(96vw, 900px);
    width: 100%;
    padding: 0;
    border: none;
    border-radius: var(--radius);
    background: transparent;
}
.creator-photo-lightbox::backdrop {
    background: rgba(0, 0, 0, 0.88);
}
.creator-photo-lightbox-img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 90vh;
    object-fit: contain;
    border-radius: var(--radius);
}
.creator-photo-lightbox-close {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    z-index: 1;
    width: 2.5rem;
    height: 2.5rem;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
}
@media (min-width: 640px) {
    .creator-photo-grid--manage {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    }
}
@media (min-width: 960px) {
    .creator-photo-grid--manage {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}
.talent-shoppable-frame {
    position: relative;
    margin: 0;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
}
.talent-shoppable-img {
    display: block;
    width: 100%;
    height: auto;
    vertical-align: middle;
}
.talent-shoppable-pin-wrap {
    position: absolute;
    z-index: 3;
    left: 0;
    top: 0;
    transform: translate(-50%, -50%);
}
.talent-shoppable-pin {
    position: relative;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    border: 2px solid #fff;
    background: var(--accent);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.talent-shoppable-pin-marker {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: #fff;
}
.talent-shoppable-pin:hover,
.talent-shoppable-pin:focus-visible {
    transform: scale(1.08);
    outline: 2px solid var(--accent-2);
    outline-offset: 2px;
}
.talent-shoppable-pin-wrap .talent-shoppable-pin:hover,
.talent-shoppable-pin-wrap .talent-shoppable-pin:focus-visible {
    transform: scale(1.08);
}
.talent-shoppable-pin-card {
    position: absolute;
    left: 50%;
    bottom: calc(100% + 0.5rem);
    transform: translateX(-50%);
    min-width: 11rem;
    max-width: 16rem;
    padding: 0.65rem 0.75rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--bg-elevated);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    color: var(--text);
    text-align: left;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.15s ease, visibility 0.15s ease, transform 0.15s ease;
}
.talent-shoppable-pin-wrap--below .talent-shoppable-pin-card {
    bottom: auto;
    top: calc(100% + 0.5rem);
}
.talent-shoppable-pin-wrap--start .talent-shoppable-pin-card {
    left: 0;
    transform: translateX(0);
}
.talent-shoppable-pin-wrap--end .talent-shoppable-pin-card {
    left: auto;
    right: 0;
    transform: translateX(0);
}
.talent-shoppable-pin-card-title {
    margin: 0 0 0.25rem;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.35;
}
.talent-shoppable-pin-card-price {
    margin: 0 0 0.5rem;
    font-size: 0.85rem;
    color: var(--muted);
}
.talent-shoppable-pin-card-link {
    width: 100%;
    justify-content: center;
}
.talent-shoppable-pin-wrap:hover .talent-shoppable-pin-card,
.talent-shoppable-pin-wrap:focus-within .talent-shoppable-pin-card,
.talent-shoppable-pin-wrap.is-open .talent-shoppable-pin-card {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.talent-shoppable-pin-wrap.is-open .talent-shoppable-pin-card {
    transform: translateX(-50%) translateY(-2px);
}
.talent-shoppable-pin-wrap.is-open.talent-shoppable-pin-wrap--below .talent-shoppable-pin-card {
    transform: translateX(-50%) translateY(2px);
}
.talent-lightbox-inner {
    position: relative;
    width: 100%;
}
.talent-lightbox-pins {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
}
.talent-lightbox-pins [data-talent-shoppable-pin] {
    pointer-events: auto;
}
@media (hover: none) {
    .talent-shoppable-pin-wrap:not(.is-open) .talent-shoppable-pin-card {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }
}
.photo-pins-editor {
    max-width: none;
}
.photo-pins-wrap {
    max-width: 72rem;
}
.page-head--compact .lead {
    max-width: 40rem;
}
.photo-pins-section {
    padding-top: 0.5rem;
}
.photo-pins-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    list-style: none;
    margin: 0 0 1.25rem;
    padding: 0;
}
.photo-pins-step {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.88rem;
    color: var(--muted);
}
.photo-pins-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 999px;
    border: 1px solid var(--border);
    font-size: 0.78rem;
    font-weight: 700;
}
.photo-pins-step.is-current {
    color: inherit;
    font-weight: 600;
}
.photo-pins-step.is-current .photo-pins-step-num,
.photo-pins-step.is-done .photo-pins-step-num {
    border-color: var(--accent, #2d6a4f);
    background: var(--accent, #2d6a4f);
    color: #fff;
}
.photo-pins-workspace {
    display: grid;
    gap: 1.25rem;
}
@media (min-width: 960px) {
    .photo-pins-workspace {
        grid-template-columns: minmax(11rem, 16rem) minmax(0, 1fr);
        align-items: start;
    }
    .photo-pins-sidebar {
        position: sticky;
        top: 1rem;
    }
}
.photo-pins-editor-panel {
    padding: 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface-alt, rgba(0, 0, 0, 0.02));
}
.photo-pins-stage-wrap {
    position: relative;
    margin-bottom: 0.65rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    background: #111;
}
.photo-pins-stage {
    display: block;
    width: 100%;
    height: auto;
    cursor: crosshair;
}
.photo-pins-stage-wrap .talent-shoppable-pin.is-placed,
.photo-pins-stage-wrap .photo-pins-draft-pin {
    position: absolute;
    transform: translate(-50%, -50%);
    z-index: 2;
    pointer-events: none;
}
.photo-pins-draft-pin.is-draft {
    animation: photo-pins-pulse 1.2s ease-in-out infinite;
    box-shadow: 0 0 0 4px rgba(199, 125, 255, 0.35);
}
@keyframes photo-pins-pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.12); }
}
.photo-pins-stage-hint {
    margin: 0 0 0.85rem;
    font-size: 0.9rem;
    color: var(--muted);
}
.photo-pins-stage-hint.is-placed {
    color: var(--accent, #2d6a4f);
    font-weight: 600;
}
.photo-pins-stage-hint.is-error {
    color: #b42318;
}
.photo-pins-form-row {
    display: grid;
    gap: 0.65rem;
}
@media (min-width: 640px) {
    .photo-pins-form-row {
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: end;
    }
    .photo-pins-form-row label {
        grid-column: 1 / -1;
    }
}
.photo-pins-form-row select {
    width: 100%;
}
.photo-pins-share {
    margin-top: 1.25rem;
}
.creator-pin-share-cards {
    display: grid;
    gap: 0.85rem;
}
.creator-pin-share-card {
    padding: 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: rgba(199, 125, 255, 0.04);
}
.creator-pin-share-card-head {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.65rem;
}
.creator-pin-share-card-head h3 {
    margin: 0;
    font-size: 1rem;
}
.creator-share-caption--prominent {
    margin: 0 0 0.65rem;
    font-size: 0.95rem;
    line-height: 1.45;
}
.creator-share-row--compact .creator-share-url {
    display: none;
}
.creator-pin-share-more {
    margin-top: 0.75rem;
    font-size: 0.88rem;
}
.creator-pin-share-more summary {
    cursor: pointer;
    color: var(--muted);
}
.creator-pin-remove-form {
    margin-top: 0.65rem;
}
.creator-pin-remove-btn {
    color: #b42318;
}
.creator-pins-product-chips {
    margin-bottom: 1rem;
}
.creator-pins-chips-label {
    margin: 0 0 0.4rem;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--muted);
}
.creator-pins-chips-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    list-style: none;
    margin: 0;
    padding: 0;
}
.creator-pins-chip {
    display: inline-flex;
    flex-direction: column;
    gap: 0.1rem;
    padding: 0.4rem 0.65rem;
    border: 1px solid var(--border);
    border-radius: 999px;
    color: inherit;
    text-decoration: none;
    font-size: 0.82rem;
    line-height: 1.2;
    max-width: 100%;
}
.creator-pins-chip-title {
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 14rem;
}
.creator-pins-chip-meta {
    font-size: 0.72rem;
    opacity: 0.85;
}
.creator-pins-chip.is-active,
.creator-pins-chip:hover {
    border-color: var(--accent, #2d6a4f);
    background: rgba(45, 106, 79, 0.08);
}
.creator-commerce-hub--compact {
    margin: 1rem 0 0;
    padding: 0.85rem 1rem;
}
.creator-commerce-hub-compact-head {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 1rem;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.65rem;
}
.creator-commerce-hub--compact .creator-commerce-hub-title {
    margin: 0;
    font-size: 0.95rem;
}
.creator-commerce-hub-compact-actions {
    margin: 0;
}
.creator-commerce-hub--compact .creator-commerce-hub-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.creator-pin-photo-picker-item.has-pins:not(.is-active) {
    border-color: rgba(124, 58, 237, 0.45);
}
.photo-pins-empty-filter {
    padding: 1.5rem;
    border: 1px dashed var(--border);
    border-radius: var(--radius);
    text-align: center;
}
.creator-public-pin-photo {
    max-width: 36rem;
    margin: 0 auto 1.5rem;
}
.creator-public-pin-fallback {
    max-width: 20rem;
    margin: 0 auto 1.5rem;
}
.creator-public-item-body {
    margin-top: 1rem;
}
.creator-public-item-note {
    font-size: 1.05rem;
}
.creator-public-pin-list {
    margin: 1rem 0 1.5rem;
    padding: 0;
    list-style: none;
}
.creator-public-pin-list li {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 0.75rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
}
.creator-public-pin-list-title {
    margin-top: 1.25rem;
    font-size: 1rem;
}
.creator-public-pin-list-price {
    color: var(--muted);
    font-size: 0.92rem;
}
.creator-photo-pin-share-list {
    margin: 1.25rem 0;
    padding: 0;
    list-style: none;
}
.creator-photo-pin-share-item {
    margin-bottom: 1rem;
    padding: 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: rgba(199, 125, 255, 0.04);
}
.creator-share-url {
    display: block;
    overflow-x: auto;
    font-size: 0.82rem;
    word-break: break-all;
}
.talent-shoppable-pin-wrap.is-focused .talent-shoppable-pin-marker {
    box-shadow: 0 0 0 3px rgba(199, 125, 255, 0.65);
}
.acquisition-spotlight {
    margin: 1.25rem 0 1.5rem;
    padding: 1rem 1.15rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--surface-alt, rgba(0, 0, 0, 0.03));
}
.acquisition-spotlight-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin: 0 0 0.35rem;
    opacity: 0.85;
}

.cookie-consent {
    position: fixed;
    inset: auto 0 0;
    z-index: 1200;
    padding: 0.85rem 0 calc(0.85rem + env(safe-area-inset-bottom, 0));
    background: rgba(26, 10, 20, 0.96);
    color: #fff;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.25);
}

.cookie-consent-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: flex-end;
    justify-content: space-between;
}

.cookie-consent-title {
    margin: 0 0 0.35rem;
    font-size: 1.05rem;
}

.cookie-consent-lead {
    margin: 0;
    max-width: 42rem;
    opacity: 0.92;
}

.cookie-consent-links {
    margin: 0.5rem 0 0;
    font-size: 0.92rem;
}

.cookie-consent-links a {
    color: inherit;
}

.cookie-consent-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.footer-cookie-settings {
    background: none;
    border: 0;
    padding: 0;
    font: inherit;
    color: inherit;
    text-decoration: underline;
    cursor: pointer;
}
.acquisition-discover-band {
    text-align: center;
}
.thanks-growth-block {
    margin: 1.5rem 0;
    padding: 1.25rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
}
.thanks-growth-block--creator {
    opacity: 0.95;
}
.admin-marketing-preset-chips .btn {
    margin: 0.25rem 0.35rem 0.25rem 0;
}

.wishlist-funding-bar {
    margin: 0.75rem 0;
    height: 0.5rem;
    border-radius: 999px;
    background: var(--border, rgba(0, 0, 0, 0.12));
    overflow: hidden;
}
.wishlist-funding-bar-fill {
    height: 100%;
    border-radius: inherit;
    background: var(--accent, #2d6a4f);
    transition: width 0.25s ease;
}

.creator-commerce-model {
    margin: 0 0 2rem;
    padding: 1.25rem 1.35rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface-alt, rgba(0, 0, 0, 0.02));
}
.creator-commerce-model--compact {
    padding: 1rem 1.15rem;
}
.creator-commerce-model--compact .creator-commerce-model-title {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
}
.creator-commerce-model-title {
    margin: 0 0 0.5rem;
    font-size: 1.35rem;
}
.creator-commerce-model-lead {
    margin: 0 0 1rem;
    max-width: 48rem;
    opacity: 0.92;
}
.creator-commerce-model-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
}
.creator-commerce-card {
    margin: 0;
    padding: 1rem 1.1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface, #fff);
}
.creator-commerce-card--wishlist {
    border-top: 3px solid var(--accent, #2d6a4f);
}
.creator-commerce-card--pins {
    border-top: 3px solid #7c3aed;
}
.creator-commerce-badge {
    display: inline-block;
    margin: 0 0 0.5rem;
    padding: 0.15rem 0.55rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    border-radius: 999px;
    background: rgba(45, 106, 79, 0.12);
    color: var(--accent, #2d6a4f);
}
.creator-commerce-badge--earn {
    background: rgba(124, 58, 237, 0.12);
    color: #7c3aed;
}
.creator-commerce-card-title {
    margin: 0 0 0.35rem;
    font-size: 1.05rem;
}
.creator-commerce-card p {
    margin: 0 0 0.65rem;
    font-size: 0.95rem;
}
.creator-commerce-steps {
    margin: 0 0 0.85rem;
    padding-left: 1.15rem;
    font-size: 0.92rem;
}
.creator-commerce-steps li + li {
    margin-top: 0.25rem;
}
.creator-public-section-title {
    margin: 0 0 0.35rem;
    font-size: 1.25rem;
}
.creator-public-section-lead {
    margin: 0 0 1rem;
    opacity: 0.9;
}
.creator-community-looks-grid {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: repeat(auto-fill, minmax(11rem, 1fr));
    list-style: none;
    margin: 0;
    padding: 0;
}
.creator-community-looks-item {
    margin: 0;
}
.creator-community-looks-frame {
    border-radius: var(--radius);
    overflow: hidden;
}
.creator-community-looks-meta {
    margin: 0.45rem 0 0;
    font-size: 0.88rem;
    opacity: 0.85;
}
.creator-community-looks-link {
    display: block;
    color: inherit;
    text-decoration: none;
}
.creator-community-looks-link:hover .creator-community-looks-frame {
    outline: 2px solid var(--accent, #2d6a4f);
    outline-offset: 2px;
}
.creator-public-looks .creator-photo-grid {
    margin-top: 0.5rem;
}

.creator-public-item-layout {
    display: grid;
    gap: 1.5rem;
}
@media (min-width: 48rem) {
    .creator-public-item-layout {
        grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
        align-items: start;
    }
}
.creator-public-item-badge {
    display: inline-block;
    margin: 0 0 0.65rem;
    padding: 0.2rem 0.6rem;
    font-size: 0.78rem;
    font-weight: 600;
    border-radius: 999px;
    background: rgba(45, 106, 79, 0.12);
    color: var(--accent, #2d6a4f);
}
.creator-public-item-actions {
    margin: 1rem 0;
}
.creator-look-gallery {
    margin: 0 0 1rem;
}
.creator-look-gallery-lead {
    margin: 0 0 0.75rem;
    font-size: 0.92rem;
    opacity: 0.88;
}
.creator-look-gallery--single .talent-gallery-stage {
    max-width: 36rem;
}
.creator-pins-product-summary {
    margin: 0 0 1.5rem;
    padding: 1rem 1.1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface-alt, rgba(0, 0, 0, 0.02));
}
.creator-pins-summary-title {
    margin: 0 0 0.75rem;
    font-size: 1.05rem;
}
.creator-pins-summary-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.5rem;
}
.creator-pins-summary-item a {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 0.75rem;
    align-items: center;
    padding: 0.55rem 0.65rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: inherit;
    text-decoration: none;
}
.creator-pins-summary-item.is-active a,
.creator-pins-summary-item a:hover {
    border-color: var(--accent, #2d6a4f);
    outline: 1px solid var(--accent, #2d6a4f);
}
.creator-pins-summary-badge {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: var(--accent, #2d6a4f);
}
.creator-pins-more-angles {
    margin: 1rem 0;
    padding: 0.85rem 1rem;
    border: 1px dashed var(--border);
    border-radius: var(--radius);
}
.creator-wishlist-photo-status {
    margin: 0.35rem 0;
    font-size: 0.92rem;
    opacity: 0.88;
}
.creator-wishlist-photo-actions {
    margin: 0.5rem 0 0.75rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.creator-commerce-hub {
    margin: 1.25rem 0;
    padding: 1rem 1.15rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface-alt, rgba(0, 0, 0, 0.02));
}
.creator-commerce-hub-title {
    margin: 0 0 0.35rem;
    font-size: 1.1rem;
}
.creator-commerce-hub-lead {
    margin: 0 0 0.85rem;
    font-size: 0.92rem;
    opacity: 0.9;
}
.creator-commerce-hub-metrics {
    display: grid;
    gap: 0.65rem;
    grid-template-columns: repeat(auto-fit, minmax(6.5rem, 1fr));
    margin-bottom: 0.85rem;
}
.creator-commerce-hub-metric {
    margin: 0;
    padding: 0.55rem 0.65rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface, #fff);
    text-align: center;
}
.creator-commerce-hub-metric-value {
    margin: 0;
    font-size: 1.35rem;
    font-weight: 700;
}
.creator-commerce-hub-metric-label {
    margin: 0.15rem 0 0;
    font-size: 0.75rem;
    opacity: 0.85;
}
.creator-commerce-hub-actions {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}
.creator-commerce-hub-actions .is-current {
    border-color: var(--accent, #2d6a4f);
}
.creator-pin-photo-picker {
    margin: 0 0 1.25rem;
}
.creator-pin-photo-picker-title {
    margin: 0 0 0.5rem;
    font-size: 1rem;
}
.creator-pin-photo-picker-grid {
    display: grid;
    gap: 0.5rem;
    grid-template-columns: repeat(auto-fill, minmax(5.5rem, 1fr));
    list-style: none;
    margin: 0;
    padding: 0;
}
.creator-pin-photo-picker-item {
    position: relative;
    display: block;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}
.creator-pin-photo-picker-item.is-active {
    border-color: var(--accent, #2d6a4f);
    outline: 2px solid var(--accent, #2d6a4f);
    outline-offset: 1px;
}
.creator-pin-photo-picker-item img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}
.creator-pin-photo-picker-badge {
    position: absolute;
    top: 0.25rem;
    right: 0.25rem;
    min-width: 1.25rem;
    padding: 0.1rem 0.35rem;
    font-size: 0.72rem;
    font-weight: 700;
    text-align: center;
    border-radius: 999px;
    background: rgba(124, 58, 237, 0.92);
    color: #fff;
}
.creator-share-row {
    margin: 0.35rem 0 0.75rem;
}
.creator-share-row-actions {
    margin: 0.35rem 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}
.creator-share-copy-flash {
    margin: 0.35rem 0 0;
    color: var(--accent, #2d6a4f);
}
.creator-pin-share-title {
    margin: 1.25rem 0 0.5rem;
    font-size: 1.05rem;
}
.creator-pins-empty-state {
    padding: 1rem 0;
}
.creator-pins-summary-main {
    flex: 1;
}
.creator-pins-summary-item {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 0.75rem;
    align-items: center;
    justify-content: space-between;
}
.creator-portal-nav-item--featured .creator-portal-nav-link {
    border-color: #7c3aed;
    background: rgba(124, 58, 237, 0.06);
}
.creator-portal-nav-badge {
    display: inline-block;
    margin-left: 0.35rem;
    padding: 0.1rem 0.45rem;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    border-radius: 999px;
    background: rgba(124, 58, 237, 0.15);
    color: #7c3aed;
    vertical-align: middle;
}
