:root {
    --bg: #080a0f;
    --bg-2: #0d1017;
    --surface: #11151d;
    --surface-2: #171c26;
    --surface-3: #1c222d;

    --border: rgba(255, 255, 255, 0.09);
    --border-strong: rgba(255, 255, 255, 0.15);

    --text: #f5f7fa;
    --text-dim: #8f98a9;
    --text-muted: #656c7d;

    --primary: #aee875;
    --primary-2: #78d66f;
    --primary-hover: #c3f18d;
    --primary-ink: #101507;
    --primary-soft: rgba(174, 232, 117, 0.10);
    --primary-glow: 0 0 0 1px rgba(174, 232, 117, 0.22), 0 0 28px rgba(174, 232, 117, 0.16);

    --blue: #4DA3FF;
    --purple: #6C5CE7;

    --font-display: 'Lilita One', system-ui, sans-serif;
    --font-body: 'Inter', system-ui, sans-serif;

    --radius-sm: 8px;
    --radius: 11px;
    --radius-md: 14px;
    --radius-lg: 18px;
    --radius-xl: 24px;

    --shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
    --shadow-lg: 0 24px 70px rgba(0, 0, 0, 0.45);

    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --fast: 150ms;

    --wrap: 1200px;
    --pad: 32px;
}

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

/* Buttons and links set their own `display` (inline-flex, etc.), which otherwise beats the
   browser's default `[hidden]{display:none}` rule - this makes the `hidden` attribute/property
   reliably hide them (used to toggle "Log In" vs. the signed-in whoami/Log out in the nav). */
[hidden] {
    display: none !important;
}

html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

body,
h1,
h2,
h3,
p {
    margin: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

img,
svg {
    display: block;
    max-width: 100%;
}

button,
input,
select {
    font: inherit;
    color: inherit;
}

button {
    cursor: pointer;
}

body {
    background:
        radial-gradient(circle at 50% -20%, rgba(174, 232, 117, 0.08), transparent 38%),
        var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
    overflow-x: hidden;
}

:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
    border-radius: 4px;
}

/* nav bar */
.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(8, 10, 15, 0.78);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
}

.nav-inner {
    max-width: var(--wrap);
    margin: 0 auto;
    padding: 0 var(--pad);
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

/*
.brand {
    font-family: var(--font-display);
    font-size: 20px;
    letter-spacing: 0.02em;
}

.brand em {
    font-style: normal;
    color: var(--primary);
} */

.brand {
    display: inline-flex;
    align-items: center;
    line-height: 1;
    text-decoration: none;
}

.brand-mark {
    height: 48px;
    width: auto;
    display: block;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-links a {
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dim);
    transition: color var(--fast) var(--ease), background var(--fast) var(--ease);
}

.nav-links a:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.04);
}

.nav-links a.active {
    color: var(--primary);
    background: var(--primary-soft);
}

/* "Public Data" dropdown: opens on hover or click/Enter (see navbar.js). */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border: 0;
    border-radius: var(--radius-sm);
    background: transparent;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dim);
    transition: color var(--fast) var(--ease), background var(--fast) var(--ease);
}

.nav-dropdown-toggle::after {
    content: '';
    width: 6px;
    height: 6px;
    margin-top: -3px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg);
    transition: transform var(--fast) var(--ease);
}

.nav-dropdown:hover .nav-dropdown-toggle,
.nav-dropdown.open .nav-dropdown-toggle {
    color: var(--text);
    background: rgba(255, 255, 255, 0.04);
}

.nav-dropdown.active .nav-dropdown-toggle {
    color: var(--primary);
    background: var(--primary-soft);
}

.nav-dropdown:hover .nav-dropdown-toggle::after,
.nav-dropdown.open .nav-dropdown-toggle::after {
    transform: rotate(225deg);
    margin-top: 3px;
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 180px;
    padding: 6px;
    margin-top: 6px;
    display: none;
    flex-direction: column;
    gap: 2px;
    background: var(--surface);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

/* Invisible bridge so the menu doesn't close while the pointer crosses the gap. */
.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: -8px;
    height: 8px;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
    display: flex;
}

.nav-dropdown-menu a {
    white-space: nowrap;
}

.mobile-group {
    padding: 12px 4px 4px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.mobile-menu a.mobile-sub {
    padding-left: 18px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.whoami {
    font-size: 13px;
    color: var(--text-dim);
    white-space: nowrap;
}

.menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 36px;
    height: 36px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
}

.menu-btn span {
    width: 16px;
    height: 2px;
    background: var(--text);
    transition: transform var(--fast) var(--ease), opacity var(--fast) var(--ease);
}

.menu-btn.open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.menu-btn.open span:nth-child(2) {
    opacity: 0;
}

.menu-btn.open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
    display: none;
    flex-direction: column;
    padding: 8px var(--pad) 20px;
    border-bottom: 1px solid var(--border);
    background: var(--bg-2);
}

.mobile-menu a {
    padding: 12px 4px;
    font-size: 15px;
    color: var(--text-dim);
    border-bottom: 1px solid var(--border);
}

.mobile-menu .nav-actions {
    margin-top: 14px;
}

.mobile-menu.open {
    display: flex;
}

/* buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    transition: transform var(--fast) var(--ease), background var(--fast) var(--ease),
        border-color var(--fast) var(--ease), box-shadow var(--fast) var(--ease);
}

.btn-sm {
    padding: 8px 14px;
    font-size: 13px;
}

.btn-lg {
    padding: 15px 28px;
    font-size: 15px;
    border-radius: var(--radius);
}

.btn-primary {
    background: var(--primary);
    color: var(--primary-ink);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: var(--primary-glow);
}

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

.btn-ghost:hover {
    color: var(--text);
    border-color: rgba(174, 232, 117, 0.4);
}

.btn-secondary {
    background: var(--surface-2);
    color: var(--text);
    border-color: var(--border-strong);
}

.btn-secondary:hover {
    background: var(--surface-3);
    border-color: rgba(174, 232, 117, 0.35);
}

/* floating elements */
.float {
    position: absolute;
    left: var(--x);
    top: var(--y);
    animation: drift var(--d, 25s) ease-in-out infinite alternate;
    will-change: transform;
    pointer-events: none;
}

@keyframes drift {
    0% {
        transform: translate(0, 0) rotate(var(--rot, 0deg));
    }

    100% {
        transform: translate(24px, -34px) rotate(calc(var(--rot, 0deg) + 6deg));
    }
}

.float:nth-child(odd) {
    animation-name: drift-alt;
}

@keyframes drift-alt {
    0% {
        transform: translate(0, 0) rotate(var(--rot, 0deg));
    }

    100% {
        transform: translate(-30px, 26px) rotate(calc(var(--rot, 0deg) - 8deg));
    }
}

.float--team {
    width: var(--s, 64px);
    height: var(--s, 64px);
    object-fit: contain;
    opacity: 0.55;
    filter: saturate(0.85) brightness(0.95);
}

.float--brawler {
    width: var(--s, 52px);
    height: var(--s, 52px);
    object-fit: cover;
    border-radius: 50%;
    opacity: 0.55;
    filter: saturate(0.85) brightness(1);
}

.float--chip {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    padding: 7px 13px;
    background: rgba(23, 28, 38, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    white-space: nowrap;
    opacity: 1;
}

.float--chip strong {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 1;
    color: var(--primary);
    opacity: 0.95;
}

.float--chip span {
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 3px;
    opacity: 0.95;
}

.float--score {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-display);
    font-size: 30px;
    letter-spacing: 0.02em;
    opacity: 0.42;
}

.float--score .win {
    color: var(--primary);
}

.float--score .loss {
    color: var(--text-dim);
}

.float--score .dash {
    color: var(--text-muted);
    font-size: 20px;
    margin: 0 2px;
    opacity: 0.7;
}

.float--big {
    font-family: var(--font-display);
    font-size: 160px;
    line-height: 1;
    letter-spacing: -6px;
    color: var(--primary);
    opacity: 0.035;
    user-select: none;
}

.float:nth-child(1) {
    animation-delay: -2s;
}

.float:nth-child(2) {
    animation-delay: -7s;
}

.float:nth-child(3) {
    animation-delay: -12s;
}

.float:nth-child(4) {
    animation-delay: -4s;
}

.float:nth-child(5) {
    animation-delay: -9s;
}

.float:nth-child(6) {
    animation-delay: -15s;
}

.float:nth-child(7) {
    animation-delay: -6s;
}

.float:nth-child(8) {
    animation-delay: -11s;
}

.float:nth-child(9) {
    animation-delay: -3s;
}

.float:nth-child(10) {
    animation-delay: -13s;
}

.float:nth-child(11) {
    animation-delay: -5s;
}

.float:nth-child(12) {
    animation-delay: -10s;
}

.float:nth-child(13) {
    animation-delay: -8s;
}

.float:nth-child(14) {
    animation-delay: -1s;
}

.float:nth-child(15) {
    animation-delay: -14s;
}

.float:nth-child(16) {
    animation-delay: -4.5s;
}

.float:nth-child(17) {
    animation-delay: -9.5s;
}

.float:nth-child(18) {
    animation-delay: -2.5s;
}

.float:nth-child(19) {
    animation-delay: -12.5s;
}

.float:nth-child(20) {
    animation-delay: -7.5s;
}

.float:nth-child(21) {
    animation-delay: -3.5s;
}

.float:nth-child(22) {
    animation-delay: -11.5s;
}

.float:nth-child(23) {
    animation-delay: -6.5s;
}

.float:nth-child(24) {
    animation-delay: -13.5s;
}

.float:nth-child(25) {
    animation-delay: -5.5s;
}

.float:nth-child(26) {
    animation-delay: -10.5s;
}

.float:nth-child(27) {
    animation-delay: -1.5s;
}

/* hero section */
.hero {
    position: relative;
    min-height: 780px;
    padding: 140px 0 180px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    mask-image: linear-gradient(180deg,
            black 0%,
            black 72%,
            rgba(0, 0, 0, 0.55) 86%,
            transparent 100%);
    -webkit-mask-image: linear-gradient(180deg,
            black 0%,
            black 72%,
            rgba(0, 0, 0, 0.55) 86%,
            transparent 100%);
}

.hero-bg .grid-lines {
    position: absolute;
    inset: -1px;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 20%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 20%, transparent 75%);
}

.hero-bg .glow {
    position: absolute;
    top: -280px;
    left: 50%;
    transform: translateX(-50%);
    width: 1100px;
    height: 1100px;
    background: radial-gradient(circle, rgba(174, 232, 117, 0.05), transparent 60%);
}

/* Farther from the centre = brighter; the ones near the headline (.float--near) stay softer. */
.hero-bg .float--brawler {
    opacity: 0.65;
}

.hero-bg .float--team {
    opacity: 0.65;
}

.hero-bg .float--near {
    opacity: 0.45;
}

.hero-bg .float--chip {
    opacity: 0.85;
    transform: scale(0.95);
}

.hero-bg .float--score {
    opacity: 0.5;
}

.hero-bg .float--big {
    opacity: 0.05;
}

.hero-bg .vignette {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 55% 50% at 50% 45%,
            rgba(8, 10, 15, 0.7) 0%,
            rgba(8, 10, 15, 0.88) 45%,
            var(--bg) 100%);
}

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 860px;
    margin: 0 auto;
    padding: 0 var(--pad);
    text-align: center;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(46px, 7vw, 92px);
    font-weight: 400;
    line-height: 0.98;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 28px;
}

.hero-title em {
    font-style: normal;
    color: var(--primary);
    text-shadow: var(--primary-glow);
}

.hero-lead {
    font-size: clamp(16px, 1.6vw, 19px);
    line-height: 1.65;
    color: var(--text-dim);
    max-width: 640px;
    margin: 0 auto 40px;
}

.hero-lead strong {
    color: var(--text);
    font-weight: 600;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 26px;
}

.hero-hint {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 0.03em;
}

.hero-hint svg {
    color: var(--primary);
    opacity: 0.8;
    flex-shrink: 0;
}

/* access section */
.access {
    padding: 40px 0 100px;
    position: relative;
    z-index: 1;
}

.access-inner {
    max-width: var(--wrap);
    margin: 0 auto;
    padding: 0 var(--pad);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.access-card {
    position: relative;
    padding: 34px 32px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: border-color var(--fast) var(--ease), transform var(--fast) var(--ease);
}

.access-card:hover {
    border-color: rgba(174, 232, 117, 0.3);
    transform: translateY(-3px);
}

.access-card--public {
    background: linear-gradient(180deg, rgba(174, 232, 117, 0.04), var(--surface) 40%);
}

.access-card--private {
    background: linear-gradient(180deg, rgba(108, 92, 231, 0.05), var(--surface) 40%);
}

.access-card--private:hover {
    border-color: rgba(108, 92, 231, 0.35);
}

.access-card h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 0.3px;
    margin-bottom: 12px;
}

.access-card p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--text-dim);
    margin-bottom: 22px;
}

.access-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.access-card li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13.5px;
    color: var(--text-dim);
    line-height: 1.5;
}

.access-card li svg {
    flex-shrink: 0;
    margin-top: 3px;
    color: var(--primary);
}

.access-card--private li svg {
    color: #b9aeff;
}

/* audience section */
.audience {
    padding: 0 0 100px;
}

.audience-inner {
    max-width: var(--wrap);
    margin: 0 auto;
    padding: 0 var(--pad);
}

.audience-head {
    max-width: 640px;
    margin-bottom: 44px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.section-title em {
    font-style: normal;
    color: var(--primary);
}

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

.audience-card {
    padding: 28px 26px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: border-color var(--fast) var(--ease), transform var(--fast) var(--ease);
}

.audience-card:hover {
    border-color: rgba(174, 232, 117, 0.3);
    transform: translateY(-3px);
}

.audience-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    color: var(--primary);
    border-radius: var(--radius);
    margin-bottom: 18px;

    filter: brightness(0) saturate(100%) invert(81%) sepia(35%) saturate(650%) hue-rotate(45deg) brightness(104%) contrast(93%);
}

.audience-card h4 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 8px;
    letter-spacing: 0.2px;
}

.audience-card p {
    font-size: 13.5px;
    color: var(--text-dim);
    line-height: 1.6;
}

/* final CTA */
.cta-wrap {
    max-width: var(--wrap);
    margin: 0 auto;
    padding: 0 var(--pad) 100px;
}

.cta {
    position: relative;
    overflow: hidden;
    padding: 72px 40px;
    text-align: center;
    background:
        radial-gradient(circle at 50% 0%, rgba(174, 232, 117, 0.14), transparent 60%),
        linear-gradient(180deg, var(--surface), var(--surface-2));
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-xl);
}

.cta::before,
.cta::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    pointer-events: none;
}

.cta::before {
    width: 260px;
    height: 260px;
    top: -80px;
    left: -60px;
    background: var(--primary);
    opacity: 0.28;
}

.cta::after {
    width: 220px;
    height: 220px;
    bottom: -60px;
    right: -40px;
    background: var(--purple);
    opacity: 0.22;
}

.cta h2 {
    position: relative;
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.cta h2 em {
    font-style: normal;
    color: var(--primary);
}

.cta p {
    position: relative;
    font-size: 16px;
    color: var(--text-dim);
    max-width: 520px;
    margin: 0 auto 30px;
}

.cta-actions {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* Pages with a <main> (everything except the homepage): the footer sits at the bottom of the
   window even when the page is short, instead of floating in the middle of the screen. */
body.has-site-footer {
    display: flex;
    flex-direction: column;
}

body.has-site-footer > main {
    width: 100%;
    flex: 1 0 auto;
}

body.has-site-footer > .footer {
    margin-top: auto;
}

/* footer */
.footer {
    position: relative;
    border-top: 1px solid var(--border);
    background:
        radial-gradient(circle at 50% 0%, rgba(174, 232, 117, 0.04), transparent 55%),
        linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.15));
    padding: 72px 0 0;
}

.footer::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 220px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0.6;
}

.footer-inner {
    max-width: var(--wrap);
    margin: 0 auto;
    padding: 0 var(--pad) 56px;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 48px;
}

.footer-brand {
    max-width: 340px;
}

.footer-logo {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 22px;
    letter-spacing: 0.02em;
    margin-bottom: 16px;
}

.footer-logo em {
    font-style: normal;
    color: var(--primary);
}

.footer-brand p {
    font-size: 13.5px;
    line-height: 1.65;
    color: var(--text-dim);
    margin-bottom: 20px;
}

@keyframes status-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(174, 232, 117, 0.55);
    }

    70% {
        box-shadow: 0 0 0 8px rgba(174, 232, 117, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(174, 232, 117, 0);
    }
}

.footer-col h4 {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 18px;
}

.footer-col a {
    display: block;
    padding: 6px 0;
    font-size: 13.5px;
    color: var(--text-dim);
    transition: color var(--fast) var(--ease), transform var(--fast) var(--ease);
}

.footer-col a:hover {
    color: var(--primary);
    transform: translateX(3px);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    background: rgba(0, 0, 0, 0.15);
}

.footer-bottom-inner {
    max-width: var(--wrap);
    margin: 0 auto;
    padding: 22px var(--pad);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-bottom-inner p {
    font-size: 12.5px;
    color: var(--text-muted);
}

.footer-bottom-inner strong {
    color: var(--primary);
    font-weight: 700;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    color: var(--text-dim);
    transition: color var(--fast) var(--ease),
        border-color var(--fast) var(--ease),
        background var(--fast) var(--ease),
        transform var(--fast) var(--ease);
}

.footer-social a:hover {
    color: var(--primary);
    border-color: rgba(174, 232, 117, 0.4);
    background: var(--primary-soft);
    transform: translateY(-2px);
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    font-size: 12.5px;
    color: var(--text-muted);
    transition: color var(--fast) var(--ease);
}

.footer-legal a:hover {
    color: var(--primary);
}

/* footer responsive */
@media (max-width: 980px) {
    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-brand {
        grid-column: 1 / -1;
        max-width: none;
    }
}

@media (max-width: 640px) {
    .footer {
        padding-top: 56px;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 32px;
        padding-bottom: 40px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
        gap: 18px;
    }

    .footer-social {
        order: -1;
    }
}

/* responsive */
@media (max-width: 980px) {
    .access-inner {
        grid-template-columns: 1fr;
    }

    .audience-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 900px) {
    .nav-links {
        display: none;
    }

    .menu-btn {
        display: inline-flex;
    }

    .hero {
        min-height: 680px;
        padding: 110px 0 140px;
    }

    .float--big {
        font-size: 110px;
    }

    .float--score {
        font-size: 24px;
    }
}

@media (max-width: 640px) {
    :root {
        --pad: 20px;
    }

    .hero {
        min-height: 600px;
        padding: 90px 0 120px;
    }

    .access {
        padding: 20px 0 70px;
    }

    .audience {
        padding-bottom: 70px;
    }

    .cta-wrap {
        padding-bottom: 70px;
    }

    .hero-bg .float--team {
        width: calc(var(--s, 64px) * 0.75);
        height: calc(var(--s, 64px) * 0.75);
    }

    .hero-bg .float--brawler {
        width: calc(var(--s, 52px) * 0.75);
        height: calc(var(--s, 52px) * 0.75);
    }

    .hero-bg .float--big {
        display: none;
    }

    .hero-bg .float--score:nth-of-type(n+2) {
        display: none;
    }

    .audience-grid {
        grid-template-columns: 1fr;
    }

    .access-card {
        padding: 26px 22px;
    }

    .cta {
        padding: 56px 24px;
    }
}

@media (max-width: 480px) {
    .nav-actions .btn-ghost {
        display: none;
    }

    /* Keeps the top bar from overflowing on small phones - the mobile menu
       (opened with the hamburger) still shows the full name and Log out. */
    .nav-inner .whoami {
        display: none;
    }

    .hero-actions .btn {
        flex: 1;
    }
}
