:root {
    --bg: #030507;
    --panel: rgba(8, 12, 18, 0.78);
    --line: rgba(255,255,255,0.10);
    --line-strong: rgba(255,255,255,0.18);
    --text: #f6f9fb;
    --muted: #a5b0bd;
    --soft: #687482;
    --r-cyan: #00d4ff;
    --r-green: #00e5a0;
    --r-yellow: #f0d060;
    --r-orange: #ff7a30;
    --r-red: #ff3030;
    --nav-h: 62px;
}

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

html { scroll-behavior: smooth; }

body {
    min-height: 100vh;
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 300;
    color: var(--text);
    background:
        radial-gradient(circle at 18% 10%, rgba(0,212,255,0.12), transparent 30%),
        radial-gradient(circle at 78% 18%, rgba(240,208,96,0.10), transparent 28%),
        linear-gradient(180deg, #05080d 0%, #030507 60%, #000 100%);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
button { border: 0; background: none; color: inherit; font: inherit; cursor: pointer; }

nav {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1000;
    height: var(--nav-h);
    display: flex;
    align-items: center;
    padding: 0 52px;
    gap: 36px;
    border-bottom: 1px solid transparent;
    transition: background 0.45s ease, border-color 0.45s ease;
}

nav::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 150px;
    background: linear-gradient(180deg, rgba(0,0,0,0.62), rgba(0,0,0,0.28) 48%, rgba(0,0,0,0));
    pointer-events: none;
    z-index: -1;
}

nav.scrolled {
    background: rgba(0,0,0,0.76);
    border-color: rgba(255,255,255,0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-wm {
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.03em;
    text-transform: uppercase;
}

.logo-wm .a { color: #fff; }
.logo-wm .b {
    background: linear-gradient(90deg, var(--r-cyan), var(--r-green));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
    list-style: none;
}

.nav-links a,
.nav-link-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(246,249,251,0.66);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active,
.nav-link-btn:hover,
.nav-link-btn.active,
.nav-link-btn[aria-expanded="true"] {
    color: #fff;
}

.nav-links a.active::after,
.nav-link-btn.active::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -20px;
    height: 1px;
    background: var(--r-cyan);
}

.nav-dropdown {
    position: relative;
}

.nav-caret {
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 18px);
    left: -18px;
    min-width: 240px;
    display: grid;
    gap: 6px;
    padding: 12px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(4,7,10,0.94);
    box-shadow: 0 24px 70px rgba(0,0,0,0.46);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    opacity: 0;
    transform: translateY(8px);
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu,
.nav-dropdown.mobile-open .nav-dropdown-menu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.nav-dropdown-menu a {
    display: block;
    padding: 12px 10px;
    border: 1px solid transparent;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.active {
    color: var(--r-cyan);
    border-color: rgba(0,212,255,0.18);
    background: rgba(0,212,255,0.08);
}

.nav-right {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 16px;
}

.live-pill,
.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 36px;
    border-radius: 999px;
    color: #bff8ff;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    font-size: 10px;
    font-weight: 700;
}

.live-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--r-green);
    box-shadow: 0 0 18px rgba(0,229,160,0.74);
}

.nav-cta {
    padding: 0 16px;
    color: #fff;
    border: 1px solid rgba(0,212,255,0.32);
    background: rgba(0,212,255,0.06);
}

.hero,
.profile-hero {
    position: relative;
    min-height: 100svh;
    overflow: hidden;
}

.hero-media,
.hero-media video,
.hero-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-media video,
.hero-media img {
    object-fit: cover;
    filter: saturate(0.94) contrast(1.06);
}

.hero-media .hero-fallback {
    z-index: 1;
}

.hero-media .hero-video-bg {
    z-index: 2;
    opacity: 0;
    transition: opacity 0.7s ease;
}

.hero-media .hero-video-bg.is-ready {
    opacity: 1;
}

.hero::after,
.profile-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(2,4,7,0.94) 0%, rgba(2,4,7,0.70) 34%, rgba(2,4,7,0.22) 70%, rgba(2,4,7,0.08) 100%),
        linear-gradient(180deg, rgba(2,4,7,0.10) 0%, rgba(2,4,7,0.18) 52%, rgba(2,4,7,0.96) 100%);
    pointer-events: none;
}

.hero-inner,
.profile-hero-inner {
    position: relative;
    z-index: 2;
    width: min(1440px, calc(100vw - 104px));
    min-height: 100svh;
    margin: 0 auto;
    padding: calc(var(--nav-h) + 54px) 0 62px;
    display: grid;
    align-items: end;
}

.profile-hero-inner {
    grid-template-columns: minmax(0, 0.68fr) minmax(320px, 0.32fr);
    gap: 32px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
    color: var(--r-green);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 3.2px;
    text-transform: uppercase;
}

.eyebrow::before {
    content: '';
    width: 26px;
    height: 1px;
    background: var(--r-cyan);
}

.hero-title,
.profile-title {
    max-width: 980px;
    font-size: clamp(52px, 8.8vw, 138px);
    font-weight: 250;
    line-height: 0.86;
    letter-spacing: 0;
    text-transform: uppercase;
}

.hero-title span,
.profile-title span {
    display: block;
    background: linear-gradient(90deg, var(--r-cyan), var(--r-green), var(--r-yellow));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-copy,
.profile-copy {
    max-width: 760px;
    margin-top: 22px;
    color: rgba(246,249,251,0.76);
    font-size: clamp(17px, 2vw, 23px);
    line-height: 1.48;
}

.hero-actions,
.social-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.btn-main,
.btn-alt,
.social-strip a,
.text-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.btn-main {
    color: #031018;
    background: linear-gradient(90deg, var(--r-cyan), var(--r-green));
}

.btn-alt,
.social-strip a,
.text-link {
    border: 1px solid rgba(255,255,255,0.14);
    background: rgba(255,255,255,0.05);
    color: #fff;
}

.stat-panel,
.bio-panel,
.licensing-card,
.chaser-card,
.gallery-card {
    border: 1px solid var(--line);
    background: rgba(4,7,10,0.74);
    box-shadow: 0 24px 70px rgba(0,0,0,0.32);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.stat-panel {
    align-self: end;
    display: grid;
    gap: 12px;
    padding: 18px;
}

.stat-row {
    display: grid;
    grid-template-columns: 0.62fr 1fr;
    gap: 14px;
    align-items: baseline;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.stat-row:last-child {
    border-bottom: 0;
}

.stat-row strong {
    color: #fff;
    font-size: clamp(24px, 3vw, 42px);
    font-weight: 500;
    line-height: 0.95;
}

.stat-row span {
    color: var(--muted);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section {
    width: min(1440px, calc(100vw - 104px));
    margin: 0 auto;
    padding: 88px 0;
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 24px;
    margin-bottom: 28px;
}

.section-title {
    font-size: clamp(34px, 5vw, 72px);
    font-weight: 260;
    line-height: 0.96;
    letter-spacing: 0;
    text-transform: uppercase;
}

.section-title span {
    display: block;
    color: var(--r-cyan);
}

.section-copy {
    max-width: 680px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7;
}

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

.chaser-card {
    position: relative;
    min-height: 520px;
    display: grid;
    align-content: end;
    overflow: hidden;
}

.chaser-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.78;
    filter: saturate(0.92) contrast(1.05);
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.chaser-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(2,4,7,0.08), rgba(2,4,7,0.30) 42%, rgba(2,4,7,0.94) 100%),
        linear-gradient(90deg, rgba(2,4,7,0.54), rgba(2,4,7,0.10));
}

.chaser-card:hover img {
    transform: scale(1.05);
    opacity: 0.9;
}

.chaser-copy {
    position: relative;
    z-index: 2;
    padding: 20px;
}

.chaser-copy h2,
.chaser-copy h3 {
    margin-bottom: 12px;
    font-size: clamp(28px, 3vw, 44px);
    font-weight: 300;
    line-height: 0.95;
    text-transform: uppercase;
}

.chaser-copy p {
    color: rgba(246,249,251,0.75);
    font-size: 14px;
    line-height: 1.55;
}

.tag-row,
.metric-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 16px 0;
}

.tag-row span,
.metric,
.bio-point {
    border: 1px solid rgba(255,255,255,0.11);
    background: rgba(255,255,255,0.05);
}

.tag-row span {
    min-height: 28px;
    display: inline-flex;
    align-items: center;
    padding: 0 9px;
    color: rgba(246,249,251,0.82);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.bio-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.62fr) minmax(320px, 0.38fr);
    gap: 18px;
}

.bio-panel,
.licensing-card {
    padding: clamp(22px, 4vw, 38px);
}

.bio-panel h2,
.licensing-card h2 {
    margin-bottom: 18px;
    font-size: clamp(30px, 4vw, 56px);
    font-weight: 280;
    line-height: 1;
    text-transform: uppercase;
}

.bio-panel p {
    color: rgba(246,249,251,0.78);
    font-size: 18px;
    line-height: 1.78;
}

.bio-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 24px;
}

.bio-point {
    padding: 16px;
}

.bio-point span {
    display: block;
    margin-bottom: 8px;
    color: var(--soft);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.bio-point strong {
    font-size: 17px;
    font-weight: 500;
}

.metric-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.metric {
    min-height: 132px;
    padding: 18px;
}

.metric strong {
    display: block;
    margin-bottom: 10px;
    color: #fff;
    font-size: clamp(28px, 4vw, 54px);
    line-height: 0.92;
    font-weight: 500;
}

.metric span {
    color: var(--muted);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.licensing-card p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.65;
}

.contact-list {
    display: grid;
    gap: 10px;
    margin-top: 22px;
}

.contact-list a {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 14px;
    border: 1px solid rgba(255,255,255,0.10);
    background: rgba(255,255,255,0.045);
    color: #fff;
}

.contact-list span {
    color: var(--muted);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.gallery-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 16px;
}

.gallery-card {
    min-height: 360px;
    overflow: hidden;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    display: block;
    object-fit: cover;
}

.ww-footer {
    border-top: 1px solid rgba(255,255,255,0.08);
    background: rgba(0,0,0,0.62);
}

.ww-footer-top {
    width: min(1320px, calc(100vw - 104px));
    margin: 0 auto;
    padding: 46px 0;
    display: grid;
    grid-template-columns: 1.3fr repeat(3, minmax(150px, 1fr));
    gap: 30px;
}

.ft-brand-wm {
    display: inline-flex;
    gap: 4px;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.03em;
    text-transform: uppercase;
}

.ft-brand-wm .a { color: #fff; }
.ft-brand-wm .b {
    background: linear-gradient(90deg, var(--r-cyan), var(--r-green));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ww-footer-brand p,
.ww-footer-col a,
.ww-footer-bottom {
    color: rgba(246,249,251,0.66);
}

.ww-footer-brand p {
    max-width: 420px;
    margin-top: 14px;
    font-size: 14px;
    line-height: 1.65;
}

.ww-footer-socials,
.ww-footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.ww-social,
.ww-footer-links a,
.ww-rating {
    display: inline-flex;
    min-height: 30px;
    align-items: center;
    padding: 0 10px;
    border: 1px solid rgba(255,255,255,0.10);
    color: rgba(246,249,251,0.72);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.7px;
    text-transform: uppercase;
}

.ww-footer-col h4 {
    margin-bottom: 12px;
    color: #fff;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.ww-footer-col ul {
    display: grid;
    gap: 9px;
    list-style: none;
}

.ww-footer-bottom {
    width: min(1320px, calc(100vw - 104px));
    margin: 0 auto;
    padding: 18px 0 28px;
    border-top: 1px solid rgba(255,255,255,0.06);
    display: flex;
    justify-content: space-between;
    gap: 18px;
    font-size: 12px;
}

@media (max-width: 1120px) {
    nav {
        padding: 0 24px;
        gap: 20px;
    }

    .profile-hero-inner,
    .bio-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .chaser-grid,
    .metric-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .hero-inner,
    .profile-hero-inner,
    .section,
    .ww-footer-top,
    .ww-footer-bottom {
        width: min(100vw - 28px, 640px);
    }

    .hero-inner,
    .profile-hero-inner {
        padding-top: calc(var(--nav-h) + 72px);
        align-items: center;
    }

    .profile-title,
    .hero-title {
        font-size: clamp(46px, 18vw, 72px);
    }

    .profile-copy,
    .hero-copy {
        font-size: 16px;
    }

    .chaser-grid,
    .metric-grid,
    .bio-points,
    .ww-footer-top {
        grid-template-columns: 1fr;
    }

    .section-head,
    .ww-footer-bottom {
        display: grid;
    }

    .chaser-card {
        min-height: 460px;
    }
}
