:root {
    --black: #050505;
    --black-2: #090909;
    --black-3: #0e0e0e;
    --panel: rgba(255, 255, 255, 0.035);
    --panel-strong: rgba(255, 255, 255, 0.065);
    --white: #f5f5f5;
    --muted: #9a9a9a;
    --muted-2: #656565;
    --line: rgba(255, 255, 255, 0.12);
    --line-strong: rgba(255, 255, 255, 0.22);
    --success: #d9ffd9;
    --danger: #ffb4b4;
    --shell: min(1280px, calc(100vw - 48px));
    --header-h: 84px;
    --radius: 2px;
    --ease: cubic-bezier(.2,.75,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--black); }
body {
    margin: 0;
    min-width: 320px;
    color: var(--white);
    background:
        radial-gradient(circle at 78% 8%, rgba(255,255,255,.055), transparent 26%),
        radial-gradient(circle at 15% 45%, rgba(255,255,255,.025), transparent 24%),
        var(--black);
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
}
body::before {
    position: fixed;
    inset: 0;
    z-index: -2;
    content: "";
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255,255,255,.024) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.024) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,.8), transparent 85%);
}
::selection { color: var(--black); background: var(--white); }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { color: inherit; font: inherit; }
button { cursor: pointer; }
.shell { width: var(--shell); margin-inline: auto; }
.section-pad { padding: 124px 0; }
.site-noise {
    position: fixed;
    inset: 0;
    z-index: 9998;
    opacity: .025;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
}
.cursor-glow {
    position: fixed;
    z-index: -1;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    opacity: .06;
    pointer-events: none;
    background: radial-gradient(circle, #fff, transparent 65%);
    translate: -50% -50%;
    transition: opacity .25s ease;
}
.skip-link { position: fixed; top: -100px; left: 16px; z-index: 10000; padding: 12px 18px; color: #000; background: #fff; }
.skip-link:focus { top: 16px; }

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    border-bottom: 1px solid transparent;
    transition: background .35s ease, border-color .35s ease, backdrop-filter .35s ease;
}
.site-header.is-scrolled { border-color: var(--line); background: rgba(5,5,5,.86); backdrop-filter: blur(18px); }
.nav-shell { display: flex; align-items: center; height: var(--header-h); gap: 28px; }
.brand { display: inline-flex; align-items: center; flex: none; gap: 12px; }
.brand-mark { position: relative; width: 46px; height: 46px; overflow: hidden; border: 1px solid var(--line-strong); border-radius: 50%; background: #111; }
.brand-mark::after { position: absolute; inset: 0; content: ""; border: 3px solid rgba(255,255,255,.08); border-radius: inherit; }
.brand-mark img { width: 100%; height: 100%; object-fit: cover; object-position: center 23%; }
.brand-copy { display: grid; line-height: 1; gap: 6px; }
.brand-copy strong { font-size: 14px; letter-spacing: .17em; }
.brand-copy small { color: var(--muted); font-size: 8px; font-weight: 700; letter-spacing: .2em; }
.main-nav { display: flex; align-items: center; justify-content: center; flex: 1; gap: 2px; }
.main-nav a { position: relative; display: inline-flex; align-items: center; gap: 8px; padding: 12px 13px; color: #9d9d9d; font-size: 12px; font-weight: 650; letter-spacing: .025em; transition: color .25s ease; }
.main-nav a::after { position: absolute; right: 13px; bottom: 4px; left: 13px; height: 1px; content: ""; background: #fff; transform: scaleX(0); transform-origin: right; transition: transform .28s var(--ease); }
.main-nav a:hover, .main-nav a.is-active { color: #fff; }
.main-nav a:hover::after, .main-nav a.is-active::after { transform: scaleX(1); transform-origin: left; }
.main-nav i { font-size: 11px; }
.nav-discord { display: inline-flex; align-items: center; gap: 9px; padding: 11px 16px; border: 1px solid var(--line); font-size: 12px; font-weight: 750; letter-spacing: .06em; transition: color .25s ease, background .25s ease, border-color .25s ease; }
.nav-discord:hover { color: #000; border-color: #fff; background: #fff; }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 0; border: 0; background: transparent; }
.menu-toggle span { display: block; width: 22px; height: 1px; margin: 7px auto; background: #fff; transition: transform .25s ease; }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }

/* Core typography */
.eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; color: #b6b6b6; font-size: 11px; font-weight: 800; letter-spacing: .22em; }
.eyebrow > span { width: 34px; height: 1px; background: currentColor; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { margin-bottom: 26px; font-weight: 730; line-height: .96; letter-spacing: -.055em; }
h1 { font-size: clamp(58px, 7.2vw, 110px); }
h2 { font-size: clamp(44px, 5.2vw, 76px); }
h3 { margin-bottom: 12px; font-size: 21px; line-height: 1.18; letter-spacing: -.025em; }
p { color: var(--muted); }
.button { position: relative; display: inline-flex; align-items: center; justify-content: center; min-height: 52px; gap: 11px; padding: 14px 22px; border: 1px solid var(--line-strong); border-radius: var(--radius); font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; overflow: hidden; transition: transform .25s var(--ease), color .25s ease, background .25s ease, border-color .25s ease; }
.button::before { position: absolute; inset: 0; content: ""; background: rgba(255,255,255,.1); transform: translateX(-105%) skewX(-15deg); transition: transform .45s var(--ease); }
.button:hover::before { transform: translateX(105%) skewX(-15deg); }
.button:hover { transform: translateY(-2px); }
.button-light { color: #050505; border-color: #fff; background: #fff; }
.button-dark { color: #fff; background: rgba(255,255,255,.035); }
.button-dark:hover { border-color: rgba(255,255,255,.55); background: rgba(255,255,255,.08); }
.button-danger { min-width: 52px; color: #fff; border-color: rgba(255,100,100,.25); background: rgba(255,100,100,.08); }
.button-full { width: 100%; }
.text-link { display: inline-flex; align-items: center; gap: 12px; padding-bottom: 8px; border-bottom: 1px solid var(--line-strong); font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.text-link i { transition: transform .25s ease; }
.text-link:hover i { transform: translateX(5px); }

/* Hero */
.hero { position: relative; display: flex; align-items: center; min-height: 100svh; padding-top: calc(var(--header-h) + 68px); overflow: hidden; }
.hero::after { position: absolute; right: -8%; bottom: -30%; width: 65vw; height: 65vw; content: ""; border: 1px solid rgba(255,255,255,.035); border-radius: 50%; box-shadow: 0 0 0 80px rgba(255,255,255,.008), 0 0 0 160px rgba(255,255,255,.006); pointer-events: none; }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.12fr .88fr; align-items: center; gap: clamp(50px, 8vw, 120px); }
.hero-copy h1 { max-width: 900px; }
.hero-lead { max-width: 690px; margin-bottom: 36px; font-size: clamp(17px, 1.35vw, 21px); line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-proof { display: grid; grid-template-columns: repeat(3, 1fr); max-width: 690px; margin-top: 58px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.hero-proof > div { position: relative; display: grid; gap: 3px; padding: 22px 24px 22px 0; }
.hero-proof > div + div { padding-left: 24px; border-left: 1px solid var(--line); }
.hero-proof strong { font-size: clamp(24px, 2.2vw, 34px); line-height: 1; letter-spacing: -.04em; }
.hero-proof span { color: var(--muted-2); font-size: 10px; font-weight: 750; letter-spacing: .13em; text-transform: uppercase; }
.hero-visual { position: relative; }
.hero-frame { position: relative; width: min(100%, 510px); margin-inline: auto; isolation: isolate; }
.hero-frame::before { position: absolute; top: 5%; right: -9%; z-index: -1; width: 100%; height: 96%; content: ""; border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.018); }
.hero-frame::after { position: absolute; inset: 10% -20% -10% 18%; z-index: -2; content: ""; background: radial-gradient(circle, rgba(255,255,255,.14), transparent 68%); filter: blur(35px); }
.hero-frame > img { width: 100%; aspect-ratio: .82; object-fit: cover; object-position: center 15%; border: 1px solid rgba(255,255,255,.18); filter: saturate(1.02) contrast(1.02); }
.hero-frame-lines { position: absolute; inset: 0; border: 1px solid rgba(255,255,255,.18); pointer-events: none; }
.hero-frame-lines::before, .hero-frame-lines::after { position: absolute; content: ""; background: #fff; }
.hero-frame-lines::before { top: -1px; left: 12%; width: 24%; height: 2px; }
.hero-frame-lines::after { right: -1px; bottom: 12%; width: 2px; height: 20%; }
.hero-tag { position: absolute; z-index: 3; display: flex; align-items: center; border: 1px solid rgba(255,255,255,.22); background: rgba(6,6,6,.82); backdrop-filter: blur(12px); }
.hero-tag-top { top: 8%; left: -12%; gap: 10px; padding: 11px 15px; font-size: 10px; font-weight: 800; letter-spacing: .16em; }
.hero-tag-bottom { right: -9%; bottom: 8%; display: grid; gap: 3px; min-width: 160px; padding: 15px 18px; }
.hero-tag-bottom span { color: var(--muted); font-size: 9px; font-weight: 800; letter-spacing: .18em; }
.hero-tag-bottom strong { font-size: 17px; letter-spacing: -.01em; }
.hero-scroll { position: absolute; right: 28px; bottom: 32px; z-index: 2; display: flex; align-items: center; gap: 14px; color: var(--muted-2); writing-mode: vertical-rl; font-size: 9px; font-weight: 800; letter-spacing: .22em; }
.hero-scroll i { animation: scroll-down 1.6s ease-in-out infinite; }
@keyframes scroll-down { 0%,100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

/* Marquee */
.platform-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow: hidden; background: rgba(255,255,255,.015); }
.marquee { overflow: hidden; }
.marquee-track { display: flex; width: max-content; animation: marquee 28s linear infinite; }
.marquee-track:hover { animation-play-state: paused; }
.marquee a { display: flex; align-items: center; gap: 13px; min-width: 270px; padding: 21px 36px; border-right: 1px solid var(--line); }
.marquee a > i { width: 24px; font-size: 18px; text-align: center; }
.marquee a span { font-size: 12px; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.marquee a b { margin-left: auto; color: var(--muted); font-size: 10px; font-weight: 650; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* Intro & Features */
.intro-section { position: relative; }
.split-heading { display: grid; grid-template-columns: 1.15fr .85fr; align-items: end; gap: 80px; margin-bottom: 64px; }
.split-heading h2 { margin-bottom: 0; }
.split-heading > p { max-width: 570px; margin: 0 0 8px; font-size: 17px; line-height: 1.8; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.feature-card { position: relative; min-height: 330px; padding: 44px 38px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow: hidden; transition: background .35s ease, transform .35s var(--ease); }
.feature-card::after { position: absolute; right: -70px; bottom: -70px; width: 180px; height: 180px; content: ""; border: 1px solid rgba(255,255,255,.07); border-radius: 50%; transition: transform .45s var(--ease); }
.feature-card:hover { z-index: 1; background: rgba(255,255,255,.045); transform: translateY(-8px); }
.feature-card:hover::after { transform: scale(1.25); }
.feature-card > i { display: grid; place-items: center; width: 52px; height: 52px; margin: 55px 0 34px; border: 1px solid var(--line-strong); font-size: 18px; }
.feature-card p { max-width: 340px; margin-bottom: 0; }
.feature-number { position: absolute; top: 24px; right: 28px; color: rgba(255,255,255,.12); font-size: 54px; font-weight: 800; letter-spacing: -.08em; }

/* Clip cards */
.clip-showcase { border-top: 1px solid var(--line); background: #070707; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 48px; margin-bottom: 56px; }
.section-head h2 { margin-bottom: 0; }
.clip-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.clip-card { min-width: 0; }
.clip-image { position: relative; display: block; aspect-ratio: 9 / 12; overflow: hidden; border: 1px solid var(--line); background: #0b0b0b; }
.clip-image::after { position: absolute; inset: 0; content: ""; background: linear-gradient(to bottom, transparent 45%, rgba(0,0,0,.7)); }
.clip-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s var(--ease), filter .65s ease; }
.clip-card:hover .clip-image img { transform: scale(1.045); filter: contrast(1.08); }
.clip-play { position: absolute; top: 50%; left: 50%; z-index: 2; display: grid; place-items: center; width: 64px; height: 64px; border: 1px solid rgba(255,255,255,.5); border-radius: 50%; background: rgba(0,0,0,.55); backdrop-filter: blur(8px); transform: translate(-50%, -50%); transition: color .3s ease, background .3s ease, transform .3s var(--ease); }
.clip-play i { margin-left: 3px; }
.clip-card:hover .clip-play { color: #000; background: #fff; transform: translate(-50%, -50%) scale(1.08); }
.clip-platform { position: absolute; top: 18px; left: 18px; z-index: 2; display: inline-flex; align-items: center; gap: 9px; padding: 9px 12px; border: 1px solid rgba(255,255,255,.25); background: rgba(0,0,0,.7); font-size: 10px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; backdrop-filter: blur(9px); }
.clip-meta { display: grid; grid-template-columns: 1fr auto; gap: 20px; padding: 24px 2px 0; }
.clip-meta > div > span { color: var(--muted-2); font-size: 9px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.clip-meta h3 { margin: 5px 0 0; }
.clip-meta > strong { display: grid; align-content: start; text-align: right; font-size: 22px; letter-spacing: -.04em; white-space: nowrap; }
.clip-meta > strong small { color: var(--muted-2); font-size: 9px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.clip-description { margin: 16px 0 0; padding-top: 16px; border-top: 1px solid var(--line); font-size: 14px; }
.clip-grid-large { grid-template-columns: repeat(3, 1fr); row-gap: 70px; }
.clip-filter { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 45px; }
.clip-filter button { padding: 10px 17px; color: var(--muted); border: 1px solid var(--line); background: transparent; font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; transition: .25s ease; }
.clip-filter button:hover, .clip-filter button.is-active { color: #000; border-color: #fff; background: #fff; }
.clip-card.is-hidden { display: none; }

/* Stats panel */
.stats-preview { background: linear-gradient(180deg, #050505, #090909); }
.stats-panel { display: grid; grid-template-columns: .9fr 1.1fr; border: 1px solid var(--line); }
.stats-panel-copy { display: flex; align-items: flex-start; flex-direction: column; justify-content: center; padding: clamp(44px, 6vw, 90px); border-right: 1px solid var(--line); }
.stats-panel-copy p { max-width: 480px; margin-bottom: 32px; }
.stats-list { display: grid; }
.stats-list a { display: grid; grid-template-columns: 46px 1fr auto 20px; align-items: center; gap: 18px; padding: 26px 34px; border-bottom: 1px solid var(--line); transition: background .25s ease; }
.stats-list a:last-child { border-bottom: 0; }
.stats-list a:hover { background: rgba(255,255,255,.04); }
.stats-list > a > i:first-child { display: grid; place-items: center; width: 42px; height: 42px; border: 1px solid var(--line); }
.stats-list span { display: grid; }
.stats-list span strong { font-size: 15px; }
.stats-list span small { color: var(--muted-2); font-size: 11px; }
.stats-list b { font-size: 20px; letter-spacing: -.04em; }
.stats-list > a > i:last-child { color: var(--muted-2); font-size: 11px; }

/* CTA */
.submit-cta { padding-top: 0; }
.cta-panel { position: relative; display: flex; align-items: end; justify-content: space-between; gap: 50px; padding: clamp(50px, 7vw, 95px); border: 1px solid var(--line-strong); overflow: hidden; background: rgba(255,255,255,.025); }
.cta-panel::before { position: absolute; top: -120px; right: -120px; width: 430px; height: 430px; content: ""; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; box-shadow: 0 0 0 60px rgba(255,255,255,.015), 0 0 0 120px rgba(255,255,255,.01); }
.cta-panel > div { position: relative; z-index: 1; }
.cta-panel h2 { margin-bottom: 20px; }
.cta-panel p { max-width: 580px; margin-bottom: 0; }
.cta-actions { display: flex; flex-wrap: wrap; justify-content: end; gap: 12px; }
.mini-cta { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 28px 34px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.mini-cta > div { display: flex; align-items: center; gap: 18px; }
.mini-cta > div > i { font-size: 24px; }
.mini-cta span { display: grid; }
.mini-cta small { color: var(--muted); }

/* Page headers */
.compact-hero { min-height: 620px; padding-top: calc(var(--header-h) + 125px); border-bottom: 1px solid var(--line); }
.page-hero { display: flex; align-items: end; position: relative; overflow: hidden; }
.page-hero::after { position: absolute; top: 20%; right: 8%; width: 440px; height: 440px; content: ""; border: 1px solid rgba(255,255,255,.05); border-radius: 50%; box-shadow: 0 0 0 60px rgba(255,255,255,.01), 0 0 0 120px rgba(255,255,255,.006); }
.page-hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 60px; }
.page-hero h1 { margin-bottom: 26px; font-size: clamp(54px, 7vw, 96px); }
.page-hero p { max-width: 660px; margin-bottom: 0; font-size: 18px; }
.page-hero-number { color: rgba(255,255,255,.07); font-size: clamp(120px, 20vw, 290px); font-weight: 850; line-height: .65; letter-spacing: -.09em; }

/* About */
.about-story { background: #080808; }
.about-grid { display: grid; grid-template-columns: .85fr 1.15fr; align-items: center; gap: clamp(60px, 9vw, 140px); }
.about-image { position: relative; }
.about-image::before { position: absolute; top: 7%; right: -7%; z-index: 0; width: 100%; height: 100%; content: ""; border: 1px solid var(--line); }
.about-image img { position: relative; z-index: 1; width: 100%; max-height: 750px; object-fit: cover; object-position: center 15%; border: 1px solid var(--line-strong); }
.about-image > span { position: absolute; right: -42px; bottom: 70px; z-index: 2; padding: 11px 18px; border: 1px solid var(--line-strong); background: rgba(5,5,5,.88); font-size: 10px; font-weight: 800; letter-spacing: .18em; transform: rotate(90deg); }
.about-copy p { max-width: 680px; font-size: 17px; line-height: 1.85; }
.signature { margin-top: 38px; color: rgba(255,255,255,.35); font-family: cursive; font-size: 36px; transform: rotate(-5deg); }
.process-section { border-top: 1px solid var(--line); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.process-card { min-height: 310px; padding: 35px 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.process-card > span { display: block; color: var(--muted-2); font-size: 11px; font-weight: 800; letter-spacing: .13em; }
.process-card > i { display: grid; place-items: center; width: 50px; height: 50px; margin: 60px 0 30px; border: 1px solid var(--line); }
.process-card p { margin: 0; font-size: 14px; }
.quote-section { padding-top: 0; }
.quote-card { position: relative; padding: clamp(50px, 8vw, 100px); border: 1px solid var(--line); text-align: center; overflow: hidden; }
.quote-card > i { margin-bottom: 35px; color: rgba(255,255,255,.2); font-size: 42px; }
.quote-card blockquote { max-width: 980px; margin: 0 auto 32px; font-size: clamp(28px, 3.6vw, 52px); font-weight: 650; line-height: 1.22; letter-spacing: -.04em; }
.quote-card > span { color: var(--muted); font-size: 11px; font-weight: 800; letter-spacing: .16em; }

/* Stats page */
.total-counter-section { padding-bottom: 60px; }
.total-counter-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.total-counter { display: grid; min-height: 280px; align-content: center; padding: 40px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); text-align: center; }
.total-counter i { margin-bottom: 28px; color: var(--muted); font-size: 20px; }
.total-counter strong { font-size: clamp(44px, 5vw, 72px); line-height: 1; letter-spacing: -.06em; }
.total-counter span { margin-top: 12px; color: var(--muted-2); font-size: 10px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.platform-stats-section { padding-top: 60px; background: #080808; }
.updated-label { display: inline-flex; align-items: center; gap: 9px; color: var(--muted); font-size: 10px; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; }
.platform-stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.platform-stat { display: block; padding: 30px; border: 1px solid var(--line); background: rgba(255,255,255,.014); transition: background .3s ease, border-color .3s ease, transform .3s var(--ease); }
.platform-stat:hover { border-color: var(--line-strong); background: rgba(255,255,255,.04); transform: translateY(-4px); }
.platform-stat-head { display: grid; grid-template-columns: 48px 1fr auto; align-items: center; gap: 16px; padding-bottom: 25px; border-bottom: 1px solid var(--line); }
.platform-stat-head > i:first-child { display: grid; place-items: center; width: 46px; height: 46px; border: 1px solid var(--line); font-size: 18px; }
.platform-stat-head > div { display: grid; }
.platform-stat-head strong { font-size: 17px; }
.platform-stat-head span { color: var(--muted-2); font-size: 11px; }
.platform-stat-head > i:last-child { color: var(--muted-2); font-size: 11px; }
.platform-stat-values { display: grid; grid-template-columns: repeat(3, 1fr); padding-top: 24px; }
.platform-stat-values > div { display: grid; gap: 4px; padding: 0 15px; border-left: 1px solid var(--line); }
.platform-stat-values > div:first-child { padding-left: 0; border-left: 0; }
.platform-stat-values strong { font-size: clamp(22px, 2.3vw, 32px); line-height: 1; letter-spacing: -.04em; }
.platform-stat-values span { color: var(--muted-2); font-size: 9px; font-weight: 750; letter-spacing: .12em; text-transform: uppercase; }
.stat-note { display: flex; align-items: flex-start; gap: 14px; margin-top: 28px; padding: 20px 24px; border-left: 2px solid rgba(255,255,255,.45); background: rgba(255,255,255,.025); }
.stat-note i { margin-top: 5px; color: var(--muted); }
.stat-note p { margin: 0; font-size: 13px; }

/* Forms */
.form-section { background: #080808; }
.form-layout { display: grid; grid-template-columns: .8fr 1.2fr; align-items: start; gap: clamp(50px, 9vw, 130px); }
.form-info { position: sticky; top: calc(var(--header-h) + 50px); }
.form-info > p { max-width: 460px; font-size: 17px; }
.info-steps { display: grid; margin: 44px 0; border-top: 1px solid var(--line); }
.info-steps > div { display: grid; grid-template-columns: 48px 1fr; gap: 18px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.info-steps > div > span { color: var(--muted-2); font-size: 11px; font-weight: 850; letter-spacing: .12em; }
.info-steps p { display: grid; margin: 0; font-size: 14px; }
.info-steps strong { color: #fff; font-size: 15px; }
.security-note { display: flex; align-items: flex-start; gap: 15px; padding: 20px; border: 1px solid var(--line); background: rgba(255,255,255,.025); }
.security-note > i { margin-top: 3px; font-size: 20px; }
.security-note > span { display: grid; }
.security-note strong { font-size: 13px; }
.security-note small { color: var(--muted); font-size: 11px; line-height: 1.6; }
.form-card { padding: clamp(28px, 4vw, 48px); border: 1px solid var(--line); background: rgba(255,255,255,.018); }
.field-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.field-grid-three { grid-template-columns: repeat(3, 1fr); }
.field { display: grid; gap: 9px; margin-bottom: 19px; }
.field > span { color: #c6c6c6; font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.field input, .field select, .field textarea { width: 100%; border: 1px solid var(--line); border-radius: 0; outline: none; background: rgba(0,0,0,.32); transition: border-color .2s ease, background .2s ease, box-shadow .2s ease; }
.field input, .field select { height: 52px; padding: 0 15px; }
.field textarea { min-height: 120px; padding: 14px 15px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: rgba(255,255,255,.52); background: rgba(255,255,255,.035); box-shadow: 0 0 0 3px rgba(255,255,255,.025); }
.field input::placeholder, .field textarea::placeholder { color: #525252; }
.field select option { color: #fff; background: #111; }
.field small { color: var(--muted-2); font-size: 10px; }
.compact-field { max-width: 350px; }
.check-field { display: flex; align-items: flex-start; gap: 12px; margin: 4px 0 24px; color: var(--muted); font-size: 12px; line-height: 1.6; }
.check-field input { flex: none; width: 17px; height: 17px; margin-top: 2px; accent-color: #fff; }
.check-field a { color: #fff; border-bottom: 1px solid var(--line-strong); }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.or-divider { display: flex; align-items: center; gap: 14px; margin: 8px 0 20px; color: var(--muted-2); font-size: 9px; font-weight: 800; letter-spacing: .15em; }
.or-divider::before, .or-divider::after { flex: 1; height: 1px; content: ""; background: var(--line); }
.upload-zone { position: relative; margin-bottom: 22px; padding: 28px; border: 1px dashed rgba(255,255,255,.24); background: rgba(0,0,0,.22); text-align: center; transition: border-color .25s ease, background .25s ease; }
.upload-zone.is-dragover { border-color: #fff; background: rgba(255,255,255,.045); }
.upload-zone > input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.upload-zone > label { display: grid; justify-items: center; cursor: pointer; }
.upload-zone > label i { display: grid; place-items: center; width: 58px; height: 58px; margin-bottom: 16px; border: 1px solid var(--line); border-radius: 50%; font-size: 20px; }
.upload-zone > label strong { font-size: 14px; }
.upload-zone > label span { color: var(--muted-2); font-size: 10px; }
.upload-selected { margin-top: 18px; color: #ddd; font-size: 12px; }
.upload-progress { height: 5px; margin-top: 18px; overflow: hidden; background: rgba(255,255,255,.08); }
.upload-progress > span { display: block; width: 0; height: 100%; background: #fff; transition: width .2s ease; }
.upload-status { margin: 10px 0 0; color: var(--muted); font-size: 11px; }
.form-errors { margin-bottom: 24px; padding: 16px 18px; color: #ffd0d0; border: 1px solid rgba(255,100,100,.22); background: rgba(255,100,100,.07); font-size: 13px; }
.form-errors ul { margin: 8px 0 0; padding-left: 18px; }
.form-fineprint { margin: 14px 0 0; color: var(--muted-2); font-size: 10px; line-height: 1.6; text-align: center; }
.contact-socials { display: grid; margin-top: 38px; border-top: 1px solid var(--line); }
.contact-socials a { display: grid; grid-template-columns: 30px 1fr auto; align-items: center; gap: 12px; padding: 17px 0; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 13px; transition: color .2s ease; }
.contact-socials a:hover { color: #fff; }
.contact-socials a > i:last-child { font-size: 10px; }
.flash-stack { position: fixed; top: 100px; right: 24px; z-index: 1100; display: grid; width: min(420px, calc(100vw - 32px)); gap: 10px; }
.flash { display: flex; align-items: flex-start; gap: 11px; padding: 15px 17px; border: 1px solid var(--line-strong); background: rgba(10,10,10,.96); box-shadow: 0 16px 50px rgba(0,0,0,.45); font-size: 13px; backdrop-filter: blur(12px); }
.flash-success i { color: #caffca; }
.flash-error i { color: #ffbaba; }

/* Legal */
.legal-section { background: #080808; }
.legal-layout { display: grid; grid-template-columns: 260px 1fr; align-items: start; gap: 90px; }
.legal-nav { position: sticky; top: calc(var(--header-h) + 40px); display: grid; border-top: 1px solid var(--line); }
.legal-nav a { padding: 16px 0; color: var(--muted); border-bottom: 1px solid var(--line); font-size: 12px; font-weight: 700; }
.legal-nav a:hover { color: #fff; }
.legal-content { display: grid; gap: 80px; }
.legal-content article { scroll-margin-top: 120px; }
.legal-content h2 { font-size: clamp(34px, 4vw, 54px); }
.legal-content h3 { margin-top: 30px; font-size: 17px; }
.legal-content p { max-width: 820px; }

/* Footer */
.site-footer { padding: 80px 0 28px; border-top: 1px solid var(--line); background: #030303; }
.footer-grid { display: grid; grid-template-columns: 1.7fr repeat(3, 1fr); gap: 55px; }
.footer-brand { margin-bottom: 24px; }
.footer-copy { max-width: 410px; font-size: 13px; }
.footer-grid > div:not(:first-child) { display: grid; align-content: start; gap: 11px; }
.footer-grid > div:not(:first-child) a { width: fit-content; color: var(--muted); font-size: 12px; transition: color .2s ease; }
.footer-grid > div:not(:first-child) a:hover { color: #fff; }
.footer-label { margin-bottom: 10px; color: #fff; font-size: 10px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 65px; padding-top: 22px; color: var(--muted-2); border-top: 1px solid var(--line); font-size: 10px; font-weight: 650; letter-spacing: .07em; }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .8s var(--ease), transform .8s var(--ease); transition-delay: var(--delay, 0ms); }
.reveal-delay { --delay: 130ms; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Admin */
.admin-body { min-height: 100vh; background: #050505; }
.login-page { display: grid; min-height: 100svh; place-items: center; padding: 30px; }
.login-card { width: min(470px, 100%); padding: 42px; border: 1px solid var(--line); background: #090909; box-shadow: 0 40px 120px rgba(0,0,0,.6); }
.login-brand, .admin-brand { display: flex; align-items: center; gap: 12px; }
.login-brand { margin-bottom: 55px; }
.login-brand img, .admin-brand img { width: 46px; height: 46px; border: 1px solid var(--line-strong); border-radius: 50%; object-fit: cover; object-position: center 23%; }
.login-brand span, .admin-brand span { display: grid; line-height: 1; gap: 6px; }
.login-brand strong, .admin-brand strong { letter-spacing: .14em; }
.login-brand small, .admin-brand small { color: var(--muted-2); font-size: 8px; font-weight: 800; letter-spacing: .15em; }
.login-card h1 { margin-bottom: 14px; font-size: 42px; }
.login-card > p { margin-bottom: 30px; font-size: 13px; }
.back-link { display: inline-flex; align-items: center; gap: 9px; margin-top: 22px; color: var(--muted); font-size: 11px; }
.admin-shell { display: grid; grid-template-columns: 270px 1fr; min-height: 100vh; }
.admin-sidebar { position: fixed; inset: 0 auto 0 0; z-index: 100; display: flex; flex-direction: column; width: 270px; padding: 28px 20px; border-right: 1px solid var(--line); background: #070707; }
.admin-brand { padding: 0 8px 34px; border-bottom: 1px solid var(--line); }
.admin-sidebar nav { display: grid; gap: 4px; margin-top: 28px; }
.admin-sidebar nav a, .admin-sidebar-foot a { display: flex; align-items: center; gap: 13px; min-height: 45px; padding: 0 13px; color: var(--muted); font-size: 12px; font-weight: 650; transition: color .2s ease, background .2s ease; }
.admin-sidebar nav a:hover, .admin-sidebar nav a.is-active { color: #fff; background: rgba(255,255,255,.055); }
.admin-sidebar nav a > i { width: 18px; text-align: center; }
.admin-sidebar nav a > span { margin-left: auto; min-width: 24px; padding: 2px 7px; border: 1px solid var(--line); border-radius: 20px; text-align: center; font-size: 9px; }
.admin-sidebar-foot { display: grid; margin-top: auto; padding-top: 18px; border-top: 1px solid var(--line); }
.admin-main { min-width: 0; margin-left: 270px; }
.admin-topbar { position: sticky; top: 0; z-index: 50; display: flex; align-items: center; height: 78px; gap: 16px; padding: 0 36px; border-bottom: 1px solid var(--line); background: rgba(5,5,5,.9); backdrop-filter: blur(14px); }
.admin-topbar button { display: none; width: 42px; height: 42px; color: #fff; border: 1px solid var(--line); background: transparent; }
.admin-topbar > div { display: grid; line-height: 1.2; }
.admin-topbar > div span { color: var(--muted-2); font-size: 8px; font-weight: 800; letter-spacing: .18em; }
.admin-topbar > div strong { font-size: 13px; }
.admin-status { display: inline-flex; align-items: center; gap: 7px; margin-left: auto; color: var(--muted); font-size: 10px; }
.admin-status i { color: #b9ffb9; font-size: 7px; }
.admin-content { width: min(1260px, calc(100% - 64px)); margin: 0 auto; padding: 55px 0 90px; }
.admin-flashes { position: fixed; top: 95px; right: 24px; z-index: 200; width: min(400px, calc(100vw - 40px)); }
.admin-heading { display: flex; align-items: end; justify-content: space-between; gap: 35px; margin-bottom: 35px; }
.admin-heading > div > span { color: var(--muted-2); font-size: 9px; font-weight: 800; letter-spacing: .19em; }
.admin-heading h1 { margin: 4px 0 0; font-size: clamp(38px, 4.5vw, 62px); }
.admin-heading p { max-width: 420px; margin: 0; font-size: 13px; text-align: right; }
.admin-stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 20px; }
.admin-stat-grid article { display: grid; min-height: 175px; align-content: center; padding: 27px; border: 1px solid var(--line); background: rgba(255,255,255,.018); }
.admin-stat-grid i { margin-bottom: 25px; color: var(--muted); }
.admin-stat-grid strong { font-size: 31px; line-height: 1; }
.admin-stat-grid span { margin-top: 8px; color: var(--muted-2); font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.admin-grid-two { display: grid; grid-template-columns: 1.25fr .75fr; gap: 20px; }
.admin-panel { margin-bottom: 20px; padding: 28px; border: 1px solid var(--line); background: rgba(255,255,255,.018); }
.panel-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 24px; }
.panel-head h2 { margin: 0; font-size: 20px; letter-spacing: -.02em; }
.panel-head a { color: var(--muted); font-size: 10px; font-weight: 750; }
.admin-list-row { display: grid; grid-template-columns: 38px 1fr auto; align-items: center; gap: 13px; padding: 14px 0; border-top: 1px solid var(--line); }
.admin-list-row > i { display: grid; place-items: center; width: 34px; height: 34px; border: 1px solid var(--line); }
.admin-list-row span { display: grid; }
.admin-list-row small { color: var(--muted-2); font-size: 10px; }
.admin-list-row a { color: var(--muted); font-size: 10px; }
.system-row { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 15px 0; border-top: 1px solid var(--line); color: var(--muted); font-size: 12px; }
.system-row b { color: #ddd; font-size: 11px; }
.system-row b.ok { color: #caffca; }
.system-row b.bad { color: #ffb7b7; }
.admin-empty { padding: 35px 0; color: var(--muted-2); text-align: center; }
.admin-form { max-width: 980px; }
.admin-form .button { margin-top: 8px; }
.admin-social-table { display: grid; gap: 16px; margin-bottom: 24px; }
.admin-social-table fieldset { margin: 0; padding: 24px; border: 1px solid var(--line); }
.admin-social-table legend { padding: 0 12px; font-size: 13px; font-weight: 750; }
.admin-social-table legend i { width: 25px; }
.admin-clip-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.admin-clip-preview { position: relative; height: 220px; margin: -28px -28px 28px; overflow: hidden; border-bottom: 1px solid var(--line); }
.admin-clip-preview img { width: 100%; height: 100%; object-fit: cover; }
.admin-clip-preview span { position: absolute; left: 16px; bottom: 16px; padding: 8px 11px; border: 1px solid var(--line-strong); background: rgba(0,0,0,.75); font-size: 10px; font-weight: 750; }
.admin-clip-preview span i { margin-right: 8px; }
.admin-form-actions { display: flex; justify-content: space-between; gap: 12px; }
.icon-button { display: grid; place-items: center; width: 38px; height: 38px; color: #ffbaba; border: 1px solid rgba(255,100,100,.2); background: rgba(255,100,100,.06); }
.inbox-list { display: grid; gap: 16px; }
.inbox-list article { padding: 22px; border: 1px solid var(--line); background: rgba(0,0,0,.2); }
.inbox-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-bottom: 17px; border-bottom: 1px solid var(--line); }
.inbox-head > span { display: grid; grid-template-columns: 26px 1fr; align-items: center; }
.inbox-head > span i { grid-row: 1 / 3; }
.inbox-head small { color: var(--muted-2); font-size: 10px; }
.inbox-list dl { display: grid; gap: 12px; margin: 20px 0; }
.inbox-list dl > div { display: grid; grid-template-columns: 110px 1fr; gap: 15px; }
.inbox-list dt { color: var(--muted-2); font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.inbox-list dd { min-width: 0; margin: 0; color: #c4c4c4; font-size: 12px; word-break: break-word; }
.inbox-list dd a { border-bottom: 1px solid var(--line); }

/* Responsive */
@media (max-width: 1180px) {
    :root { --shell: min(100% - 40px, 1100px); }
    .main-nav a { padding-inline: 9px; }
    .main-nav a span { display: none; }
    .main-nav a i { font-size: 13px; }
    .hero-grid { grid-template-columns: 1.05fr .95fr; gap: 60px; }
    .hero-tag-top { left: -5%; }
    .hero-tag-bottom { right: -4%; }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .admin-stat-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
    :root { --header-h: 72px; }
    .section-pad { padding: 90px 0; }
    .nav-shell { justify-content: space-between; }
    .menu-toggle { display: block; order: 3; }
    .main-nav { position: fixed; inset: var(--header-h) 0 auto 0; display: grid; padding: 14px 20px 24px; border-bottom: 1px solid var(--line); background: rgba(5,5,5,.98); transform: translateY(-130%); transition: transform .35s var(--ease); }
    .main-nav.is-open { transform: translateY(0); }
    .main-nav a { justify-content: flex-start; padding: 14px 8px; border-bottom: 1px solid var(--line); }
    .main-nav a span { display: inline; }
    .main-nav a::after { display: none; }
    .nav-discord { margin-left: auto; }
    .hero { min-height: auto; padding-top: calc(var(--header-h) + 100px); }
    .hero-grid, .split-heading, .stats-panel, .about-grid, .form-layout { grid-template-columns: 1fr; }
    .hero-copy { order: 1; }
    .hero-visual { order: 2; width: min(640px, 92%); margin: 20px auto 0; }
    .hero-proof { max-width: none; }
    .hero-scroll { display: none; }
    .split-heading { gap: 28px; }
    .feature-grid, .clip-grid, .clip-grid-large { grid-template-columns: repeat(2, 1fr); }
    .feature-card { min-height: 300px; }
    .stats-panel-copy { border-right: 0; border-bottom: 1px solid var(--line); }
    .cta-panel { align-items: flex-start; flex-direction: column; }
    .cta-actions { justify-content: flex-start; }
    .compact-hero { min-height: 540px; }
    .page-hero-number { position: absolute; right: 0; bottom: 0; z-index: -1; }
    .platform-stats-grid { grid-template-columns: 1fr; }
    .form-info { position: static; }
    .legal-layout { grid-template-columns: 1fr; gap: 55px; }
    .legal-nav { position: static; grid-template-columns: repeat(3, 1fr); }
    .legal-nav a { text-align: center; }
    .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
    .footer-grid > div:last-child { grid-column: 2 / 4; }
    .admin-shell { display: block; }
    .admin-sidebar { transform: translateX(-100%); transition: transform .3s var(--ease); }
    .admin-sidebar.is-open { transform: translateX(0); }
    .admin-main { margin-left: 0; }
    .admin-topbar button { display: grid; place-items: center; }
    .admin-content { width: min(100% - 40px, 1100px); }
    .admin-grid-two { grid-template-columns: 1fr; }
    .admin-clip-list { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
    :root { --shell: calc(100% - 28px); }
    body { font-size: 15px; }
    .section-pad { padding: 72px 0; }
    .brand-copy small { display: none; }
    .nav-discord { width: 42px; height: 42px; justify-content: center; padding: 0; }
    .nav-discord span { display: none; }
    h1 { font-size: clamp(45px, 14.2vw, 68px); }
    h2 { font-size: clamp(38px, 11.2vw, 56px); }
    .hero { padding-top: calc(var(--header-h) + 72px); }
    .hero-lead { font-size: 16px; }
    .hero-actions, .cta-actions { display: grid; width: 100%; }
    .hero-actions .button, .cta-actions .button { width: 100%; }
    .hero-proof { grid-template-columns: 1fr; }
    .hero-proof > div, .hero-proof > div + div { padding: 17px 0; border-left: 0; border-bottom: 1px solid var(--line); }
    .hero-proof > div:last-child { border-bottom: 0; }
    .hero-visual { width: 94%; }
    .hero-tag-top { left: -3%; }
    .hero-tag-bottom { right: -3%; }
    .platform-strip { margin-top: 30px; }
    .feature-grid, .clip-grid, .clip-grid-large, .process-grid, .total-counter-grid { grid-template-columns: 1fr; }
    .feature-card { min-height: 280px; }
    .clip-image { aspect-ratio: 4 / 5; }
    .section-head { align-items: flex-start; flex-direction: column; margin-bottom: 38px; }
    .stats-list a { grid-template-columns: 40px 1fr auto; padding: 20px; }
    .stats-list > a > i:last-child { display: none; }
    .stats-list b { font-size: 16px; }
    .cta-panel { padding: 36px 24px; }
    .compact-hero { min-height: 470px; padding-top: calc(var(--header-h) + 95px); }
    .page-hero p { font-size: 15px; }
    .page-hero-number { font-size: 150px; }
    .about-image > span { right: -35px; }
    .platform-stat { padding: 23px 18px; }
    .platform-stat-values > div { padding: 0 8px; }
    .platform-stat-values strong { font-size: 20px; }
    .field-grid, .field-grid-three { grid-template-columns: 1fr; gap: 0; }
    .form-card { padding: 24px 18px; }
    .upload-zone { padding: 24px 12px; }
    .mini-cta { align-items: flex-start; flex-direction: column; }
    .mini-cta .button { width: 100%; }
    .legal-nav { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid > div:first-child, .footer-grid > div:last-child { grid-column: 1 / 3; }
    .footer-bottom { align-items: flex-start; flex-direction: column; }
    .login-card { padding: 30px 22px; }
    .admin-content { width: calc(100% - 24px); padding-top: 35px; }
    .admin-topbar { padding: 0 14px; }
    .admin-heading { align-items: flex-start; flex-direction: column; }
    .admin-heading p { text-align: left; }
    .admin-stat-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
    .admin-stat-grid article { min-height: 140px; padding: 18px; }
    .admin-stat-grid strong { font-size: 24px; }
    .admin-panel { padding: 20px 16px; }
    .admin-clip-preview { margin: -20px -16px 22px; }
    .inbox-list dl > div { grid-template-columns: 1fr; gap: 3px; }
    .admin-form-actions { align-items: stretch; flex-direction: column; }
}

@media (hover: none) { .cursor-glow { display: none; } }
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
    .reveal { opacity: 1; transform: none; }
}
.admin-delete-form { margin-top: 12px; padding-top: 16px; border-top: 1px solid var(--line); }
.admin-delete-form .button { margin-top: 0; }

/* =========================================================
   P1ERRE5 PROFESSIONAL UI V2
   Clearer overview, softer monochrome panels, real embeds
   ========================================================= */
:root {
    --black: #030303;
    --black-2: #080808;
    --black-3: #0d0d0d;
    --panel: rgba(255, 255, 255, .028);
    --panel-strong: rgba(255, 255, 255, .055);
    --white: #f7f7f7;
    --muted: #a8a8a8;
    --muted-2: #727272;
    --line: rgba(255, 255, 255, .105);
    --line-strong: rgba(255, 255, 255, .20);
    --radius: 16px;
}

body {
    background:
        radial-gradient(circle at 86% 3%, rgba(255,255,255,.065), transparent 25%),
        radial-gradient(circle at 10% 38%, rgba(255,255,255,.025), transparent 29%),
        #030303;
}
body::before {
    background-size: 86px 86px;
    opacity: .72;
}
.site-noise { opacity: .017; }
.site-header.is-scrolled { background: rgba(3,3,3,.88); }
.brand-mark, .brand-mark::after { border-radius: 14px; }
.button, .nav-discord, .clip-filter button { border-radius: 11px; }
.button { min-height: 54px; }
.hero-frame, .hero-frame > img, .hero-frame-lines { border-radius: 22px; }
.hero-frame::before { border-radius: 22px; }
.hero-tag { border-radius: 10px; }
.page-hero::after { opacity: .55; }
.section-intro {
    max-width: 610px;
    margin: 0 0 6px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.78;
}

/* Overview */
.overview-section { position: relative; }
.overview-head { align-items: end; }
.overview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
.overview-card {
    position: relative;
    display: flex;
    min-height: 330px;
    flex-direction: column;
    padding: 32px;
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(255,255,255,.047), rgba(255,255,255,.012));
    transition: transform .35s var(--ease), border-color .35s ease, background .35s ease;
}
.overview-card::after {
    position: absolute;
    right: -65px;
    bottom: -80px;
    width: 190px;
    height: 190px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 50%;
    content: "";
    transition: transform .45s var(--ease);
}
.overview-card:hover {
    border-color: rgba(255,255,255,.28);
    background: linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.022));
    transform: translateY(-7px);
}
.overview-card:hover::after { transform: scale(1.16); }
.overview-card > i {
    display: grid;
    width: 50px;
    height: 50px;
    place-items: center;
    margin: 35px 0 28px;
    border: 1px solid var(--line-strong);
    border-radius: 13px;
    background: rgba(255,255,255,.035);
    font-size: 18px;
}
.overview-card h3 { font-size: 23px; }
.overview-card p { margin-bottom: 30px; font-size: 14px; line-height: 1.75; }
.overview-card > a {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: auto;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .10em;
    text-transform: uppercase;
}
.overview-card > a i { transition: transform .25s ease; }
.overview-card > a:hover i { transform: translateX(4px); }
.overview-index {
    position: absolute;
    top: 25px;
    right: 27px;
    color: rgba(255,255,255,.20);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: .12em;
}

/* Clear metric area */
.metric-section { padding-top: 0; }
.metric-panel {
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    border: 1px solid var(--line);
    border-radius: 22px;
    overflow: hidden;
    background: linear-gradient(125deg, rgba(255,255,255,.055), rgba(255,255,255,.012));
}
.metric-panel-copy {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: clamp(44px, 6vw, 82px);
    border-right: 1px solid var(--line);
}
.metric-panel-copy h2 { margin-bottom: 22px; }
.metric-panel-copy p { margin-bottom: 32px; }
.metric-grid { display: grid; grid-template-rows: repeat(3, 1fr); }
.metric-grid article {
    display: grid;
    grid-template-columns: 54px 1fr;
    grid-template-areas: "icon number" "icon label" "icon detail";
    align-content: center;
    column-gap: 24px;
    padding: 34px 42px;
    border-bottom: 1px solid var(--line);
    transition: background .25s ease;
}
.metric-grid article:last-child { border-bottom: 0; }
.metric-grid article:hover { background: rgba(255,255,255,.035); }
.metric-grid i {
    grid-area: icon;
    display: grid;
    width: 54px;
    height: 54px;
    place-items: center;
    align-self: center;
    border: 1px solid var(--line-strong);
    border-radius: 14px;
    background: rgba(255,255,255,.035);
}
.metric-grid strong {
    grid-area: number;
    font-size: clamp(30px, 3vw, 48px);
    line-height: 1;
    letter-spacing: -.055em;
}
.metric-grid span {
    grid-area: label;
    margin-top: 6px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .10em;
    text-transform: uppercase;
}
.metric-grid small { grid-area: detail; color: var(--muted-2); font-size: 12px; }

/* Platform cards */
.platforms-section { border-top: 1px solid var(--line); background: #060606; }
.platform-card-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}
.platform-card {
    display: flex;
    min-height: 295px;
    flex-direction: column;
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 17px;
    background: linear-gradient(150deg, rgba(255,255,255,.045), rgba(255,255,255,.012));
    transition: transform .32s var(--ease), border-color .32s ease, background .32s ease;
}
.platform-card:hover {
    border-color: rgba(255,255,255,.30);
    background: linear-gradient(150deg, rgba(255,255,255,.08), rgba(255,255,255,.018));
    transform: translateY(-7px);
}
.platform-card-top { display: flex; align-items: center; justify-content: space-between; }
.platform-card-top > i { color: var(--muted-2); font-size: 11px; }
.platform-icon {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border: 1px solid var(--line-strong);
    border-radius: 14px;
    background: rgba(255,255,255,.04);
    font-size: 18px;
}
.platform-card h3 { margin: 42px 0 5px; font-size: 23px; }
.platform-card > p { margin: 0; font-size: 13px; }
.platform-card-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid var(--line);
}
.platform-card-stats span { display: grid; gap: 2px; }
.platform-card-stats strong { font-size: 18px; line-height: 1; }
.platform-card-stats small { color: var(--muted-2); font-size: 9px; font-weight: 800; letter-spacing: .10em; text-transform: uppercase; }

/* Real platform previews */
.clip-showcase-v2 { background: #030303; }
.clip-grid-v2 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}
.clip-grid-v2-page { row-gap: 44px; }
.clip-card-v2 {
    min-width: 0;
    border: 1px solid var(--line);
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(255,255,255,.043), rgba(255,255,255,.012));
    box-shadow: 0 30px 90px rgba(0,0,0,.25);
    transition: transform .35s var(--ease), border-color .35s ease;
}
.clip-card-v2:hover { border-color: rgba(255,255,255,.25); transform: translateY(-7px); }
.clip-preview-v2 {
    position: relative;
    aspect-ratio: 9 / 16;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
    background: #0a0a0a;
}
.clip-preview-v2 iframe,
.clip-preview-v2 > a,
.clip-preview-v2 img {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}
.clip-preview-v2 img { object-fit: cover; }
.clip-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 11px;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 10px;
    background: rgba(2,2,2,.78);
    backdrop-filter: blur(10px);
    pointer-events: none;
    font-size: 9px;
    font-weight: 850;
    letter-spacing: .13em;
    text-transform: uppercase;
}
.clip-body-v2 { padding: 26px; }
.clip-body-v2 > span { color: var(--muted-2); font-size: 9px; font-weight: 850; letter-spacing: .16em; text-transform: uppercase; }
.clip-body-v2 h3,
.clip-body-v2 h2 { margin: 7px 0 11px; font-size: 24px; line-height: 1.12; letter-spacing: -.035em; }
.clip-body-v2 p { min-height: 48px; margin-bottom: 22px; font-size: 13px; line-height: 1.72; }
.clip-body-v2 > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding-top: 19px;
    border-top: 1px solid var(--line);
}
.clip-body-v2 > div strong { font-size: 16px; letter-spacing: -.02em; }
.clip-body-v2 > div a { display: inline-flex; align-items: center; gap: 7px; color: #d8d8d8; font-size: 10px; font-weight: 800; letter-spacing: .09em; text-align: right; text-transform: uppercase; }
.clip-body-v2 > div a:hover { color: #fff; }

.clips-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 44px;
    padding: 20px 22px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255,255,255,.024);
}
.clips-toolbar > div:first-child { display: grid; }
.clips-toolbar > div:first-child strong { font-size: 16px; }
.clips-toolbar > div:first-child span { color: var(--muted-2); font-size: 11px; }
.clips-toolbar .clip-filter { margin: 0; }
.clips-info-section { padding-top: 0; }
.clips-info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.clips-info-grid article {
    position: relative;
    padding: 32px;
    border: 1px solid var(--line);
    border-radius: 17px;
    background: rgba(255,255,255,.022);
}
.clips-info-grid article > span { position: absolute; top: 24px; right: 25px; color: rgba(255,255,255,.18); font-size: 11px; font-weight: 850; }
.clips-info-grid article > i { display: grid; width: 48px; height: 48px; place-items: center; margin-bottom: 27px; border: 1px solid var(--line-strong); border-radius: 13px; }
.clips-info-grid article p { margin-bottom: 0; font-size: 14px; }

/* Stats clearer */
.stats-summary-head {
    display: grid;
    grid-template-columns: 1fr .7fr;
    align-items: end;
    gap: 70px;
    margin-bottom: 48px;
}
.stats-summary-head h2 { margin-bottom: 0; }
.stats-summary-head > p { margin: 0 0 8px; font-size: 17px; }
.total-counter-grid { gap: 14px; }
.total-counter {
    border-radius: 18px;
    background: linear-gradient(145deg, rgba(255,255,255,.052), rgba(255,255,255,.012));
}
.total-counter small { display: block; max-width: 260px; margin-top: 11px; color: var(--muted-2); font-size: 11px; line-height: 1.55; }
.stat-explainer-section { padding-top: 0; }
.stat-explainer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.stat-explainer-grid article {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 25px;
    border: 1px solid var(--line);
    border-radius: 15px;
    background: rgba(255,255,255,.02);
}
.stat-explainer-grid article > i { display: grid; width: 42px; height: 42px; flex: none; place-items: center; border: 1px solid var(--line-strong); border-radius: 12px; }
.stat-explainer-grid strong { display: block; margin-bottom: 4px; }
.stat-explainer-grid p { margin: 0; font-size: 12px; line-height: 1.65; }
.platform-stat { border-radius: 17px; overflow: hidden; }
.platform-stat-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 25px; padding-top: 16px; border-top: 1px solid var(--line); color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .10em; text-transform: uppercase; }
.updated-label { border-radius: 10px; }

/* Forms: less confusing, more reassuring */
.form-card, .security-note, .upload-zone { border-radius: 18px; }
.form-card { background: linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.015)); }
.field input, .field textarea, .field select { border-radius: 10px; }
.form-fineprint { display: flex; align-items: center; justify-content: center; gap: 8px; margin: 16px 0 0; color: var(--muted-2); font-size: 11px; text-align: center; }
.submission-hints { display: grid; gap: 10px; margin-top: 24px; }
.submission-hints span { display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: 12px; }
.submission-hints i { width: 18px; color: #fff; text-align: center; }
.or-divider span { min-width: 100px; }

/* Existing sections softened */
.feature-grid { gap: 14px; border: 0; }
.feature-card { border: 1px solid var(--line); border-radius: 18px; }
.stats-panel, .cta-panel, .quote-card, .about-image img, .about-image::before, .process-card, .mini-cta { border-radius: 18px; }
.process-grid { gap: 14px; }
.process-card { border: 1px solid var(--line); background: rgba(255,255,255,.02); }
.mini-cta { padding-inline: 30px; border: 1px solid var(--line); background: rgba(255,255,255,.02); }
.cta-panel { background: linear-gradient(130deg, rgba(255,255,255,.06), rgba(255,255,255,.015)); }

@media (max-width: 1180px) {
    .overview-grid { grid-template-columns: repeat(2, 1fr); }
    .platform-card-grid { grid-template-columns: repeat(3, 1fr); }
    .metric-panel { grid-template-columns: 1fr; }
    .metric-panel-copy { border-right: 0; border-bottom: 1px solid var(--line); }
}

@media (max-width: 900px) {
    .section-intro { max-width: none; }
    .overview-head, .section-head, .stats-summary-head { display: grid; grid-template-columns: 1fr; align-items: start; gap: 24px; }
    .platform-card-grid { grid-template-columns: repeat(2, 1fr); }
    .clip-grid-v2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .clip-grid-v2 > :last-child:nth-child(odd) { grid-column: 1 / -1; max-width: calc(50% - 10px); width: 100%; margin-inline: auto; }
    .clips-toolbar { align-items: flex-start; flex-direction: column; }
    .clips-info-grid, .stat-explainer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
    :root { --shell: min(100% - 28px, 1280px); }
    .section-pad { padding: 82px 0; }
    .overview-grid, .platform-card-grid, .clip-grid-v2 { grid-template-columns: 1fr; }
    .clip-grid-v2 > :last-child:nth-child(odd) { grid-column: auto; max-width: none; }
    .overview-card { min-height: 285px; padding: 27px; }
    .platform-card { min-height: 245px; }
    .metric-grid article { grid-template-columns: 46px 1fr; column-gap: 17px; padding: 27px 24px; }
    .metric-grid i { width: 46px; height: 46px; }
    .clip-card-v2 { border-radius: 16px; }
    .clip-body-v2 { padding: 22px; }
    .clip-body-v2 > div { align-items: flex-start; flex-direction: column; }
    .clip-body-v2 > div a { text-align: left; }
    .clips-toolbar { padding: 17px; }
    .clips-toolbar .clip-filter { width: 100%; }
    .clips-toolbar .clip-filter button { flex: 1; }
    .stats-summary-head { gap: 15px; }
    .mini-cta { align-items: flex-start; flex-direction: column; }
}

/* =========================================================
   P1ERRE5 PROFESSIONAL UI V3
   Premium dashboard + expanded About page
   ========================================================= */

/* Public About page V3 */
.about-hero-v3 {
    position: relative;
    min-height: 860px;
    display: flex;
    align-items: center;
    padding-top: calc(var(--header-h) + 90px);
    overflow: hidden;
    border-bottom: 1px solid var(--line);
}
.about-hero-v3::before {
    position: absolute;
    inset: 0;
    content: "";
    pointer-events: none;
    background:
        linear-gradient(90deg, transparent 49.9%, rgba(255,255,255,.035) 50%, transparent 50.1%),
        radial-gradient(circle at 75% 38%, rgba(255,255,255,.08), transparent 28%),
        linear-gradient(180deg, rgba(255,255,255,.012), transparent 35%);
}
.about-hero-grid-v3 {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(380px, .75fr);
    align-items: center;
    gap: clamp(70px, 9vw, 145px);
}
.about-hero-copy-v3 h1 {
    max-width: 820px;
    margin: 23px 0 27px;
    font-size: clamp(54px, 6.4vw, 102px);
    line-height: .94;
    letter-spacing: -.065em;
}
.about-hero-copy-v3 > p {
    max-width: 720px;
    margin: 0;
    color: #b7b7b7;
    font-size: 18px;
    line-height: 1.8;
}
.about-hero-facts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 760px;
    margin-top: 58px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.about-hero-facts div {
    display: grid;
    gap: 8px;
    padding: 23px 22px 23px 0;
}
.about-hero-facts div + div {
    padding-left: 25px;
    border-left: 1px solid var(--line);
}
.about-hero-facts strong {
    color: #fff;
    font-size: clamp(25px, 3vw, 39px);
    line-height: 1;
    letter-spacing: -.04em;
}
.about-hero-facts span {
    color: var(--muted-2);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
}
.about-portrait-v3 {
    position: relative;
    width: min(100%, 520px);
    margin-left: auto;
}
.about-portrait-frame {
    position: relative;
    aspect-ratio: .82;
    padding: 12px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 30px;
    background: rgba(255,255,255,.025);
    box-shadow: 0 45px 100px rgba(0,0,0,.55);
}
.about-portrait-frame::before,
.about-portrait-frame::after {
    position: absolute;
    content: "";
    pointer-events: none;
}
.about-portrait-frame::before {
    inset: -25px;
    z-index: -1;
    border: 1px solid rgba(255,255,255,.045);
    border-radius: 42px;
}
.about-portrait-frame::after {
    width: 76%;
    height: 76%;
    right: -14%;
    bottom: -11%;
    z-index: -2;
    border: 1px solid rgba(255,255,255,.045);
    border-radius: 50%;
}
.about-portrait-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 15%;
    border-radius: 21px;
    filter: saturate(.93) contrast(1.03);
}
.portrait-grid {
    position: absolute;
    inset: 12px;
    border-radius: 21px;
    background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(to bottom, transparent, #000 60%);
    pointer-events: none;
}
.about-floating-tag {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 13px;
    min-width: 178px;
    padding: 14px 16px;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 13px;
    background: rgba(8,8,8,.88);
    box-shadow: 0 18px 50px rgba(0,0,0,.42);
    backdrop-filter: blur(14px);
}
.about-floating-tag > i {
    display: grid;
    width: 39px;
    height: 39px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 10px;
    color: #fff;
}
.about-floating-tag span { display: grid; gap: 4px; }
.about-floating-tag b { font-size: 11px; letter-spacing: .14em; }
.about-floating-tag small { color: var(--muted-2); font-size: 9px; }
.about-floating-tag.tag-one { left: -58px; top: 16%; }
.about-floating-tag.tag-two { right: -52px; bottom: 14%; }

.about-story-v3 { background: #070707; border-bottom: 1px solid var(--line); }
.about-story-layout-v3 {
    display: grid;
    grid-template-columns: minmax(280px, .65fr) minmax(0, 1.35fr);
    gap: clamp(70px, 9vw, 150px);
    align-items: start;
}
.about-story-aside { position: sticky; top: calc(var(--header-h) + 60px); }
.about-story-aside h2 { margin: 25px 0 42px; font-size: clamp(43px, 5vw, 70px); }
.about-mini-profile { display: flex; align-items: center; gap: 15px; padding-top: 27px; border-top: 1px solid var(--line); }
.about-mini-profile img { width: 54px; height: 54px; border-radius: 16px; object-fit: cover; }
.about-mini-profile span { display: grid; gap: 4px; }
.about-mini-profile b { letter-spacing: .08em; }
.about-mini-profile small { color: var(--muted-2); font-size: 10px; }
.about-story-copy-v3 { display: grid; }
.story-paragraph {
    display: grid;
    grid-template-columns: 60px minmax(0, 1fr);
    gap: 28px;
    padding: 33px 0;
    border-top: 1px solid var(--line);
}
.story-paragraph:last-child { border-bottom: 1px solid var(--line); }
.story-paragraph > span { color: var(--muted-2); font-size: 10px; font-weight: 850; letter-spacing: .13em; }
.story-paragraph p { margin: 0; color: #c1c1c1; font-size: 18px; line-height: 1.88; }

.about-values-v3 { position: relative; }
.about-value-grid-v3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}
.about-value-grid-v3 article {
    position: relative;
    min-height: 380px;
    padding: 34px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 19px;
    background: linear-gradient(150deg, rgba(255,255,255,.05), rgba(255,255,255,.012));
    transition: transform .35s var(--ease), border-color .35s ease;
}
.about-value-grid-v3 article:hover { transform: translateY(-7px); border-color: var(--line-strong); }
.about-value-grid-v3 article::after {
    position: absolute;
    right: -65px;
    bottom: -65px;
    width: 190px;
    height: 190px;
    content: "";
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 50%;
}
.about-value-grid-v3 article > span { color: var(--muted-2); font-size: 10px; font-weight: 850; letter-spacing: .13em; }
.about-value-grid-v3 article > i { display: grid; width: 58px; height: 58px; margin: 80px 0 35px; place-items: center; border: 1px solid var(--line-strong); border-radius: 15px; font-size: 18px; }
.about-value-grid-v3 h3 { margin: 0 0 15px; font-size: 27px; }
.about-value-grid-v3 p { max-width: 340px; margin: 0; font-size: 15px; line-height: 1.75; }

.about-numbers-v3 { background: #080808; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.about-numbers-grid-v3 { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(65px, 8vw, 130px); align-items: center; }
.about-number-intro h2 { margin: 25px 0; font-size: clamp(43px, 5.2vw, 75px); }
.about-number-intro p { max-width: 600px; font-size: 17px; line-height: 1.8; }
.about-number-intro > a { display: inline-flex; align-items: center; gap: 10px; margin-top: 18px; padding-bottom: 7px; border-bottom: 1px solid var(--line-strong); font-size: 12px; font-weight: 750; }
.about-number-cards-v3 { display: grid; gap: 12px; }
.about-number-cards-v3 > a {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto 40px;
    grid-template-rows: auto auto;
    align-items: center;
    gap: 5px 18px;
    padding: 28px 30px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255,255,255,.022);
    transition: background .25s ease, border-color .25s ease, transform .25s ease;
}
.about-number-cards-v3 > a:hover { transform: translateX(7px); border-color: var(--line-strong); background: rgba(255,255,255,.045); }
.about-number-cards-v3 > a > span { color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.about-number-cards-v3 > a > span i { width: 26px; }
.about-number-cards-v3 > a > strong { grid-row: 1 / 3; grid-column: 2; color: #fff; font-size: clamp(28px, 3vw, 46px); letter-spacing: -.04em; }
.about-number-cards-v3 > a > small { color: var(--muted-2); font-size: 11px; }
.about-number-cards-v3 > a > i { grid-row: 1 / 3; grid-column: 3; color: var(--muted-2); text-align: right; }
.process-grid-v3 { gap: 14px; border: 0; }
.process-grid-v3 .process-card { border: 1px solid var(--line); border-radius: 17px; background: rgba(255,255,255,.02); }
.process-grid-v3 .process-card > i { border-radius: 13px; }
.about-platforms-v3 { background: #070707; border-top: 1px solid var(--line); }
.about-platform-layout-v3 { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(65px, 9vw, 145px); align-items: start; }
.about-platform-copy { position: sticky; top: calc(var(--header-h) + 60px); }
.about-platform-copy h2 { margin: 25px 0; font-size: clamp(45px, 5.2vw, 75px); }
.about-platform-copy p { max-width: 500px; font-size: 17px; line-height: 1.8; }
.about-platform-list-v3 { display: grid; border-top: 1px solid var(--line); }
.about-platform-list-v3 > a {
    display: grid;
    grid-template-columns: 52px 1fr auto 25px;
    align-items: center;
    gap: 18px;
    min-height: 95px;
    padding: 15px 10px;
    border-bottom: 1px solid var(--line);
    transition: padding .25s ease, background .25s ease;
}
.about-platform-list-v3 > a:hover { padding-left: 20px; background: rgba(255,255,255,.025); }
.platform-list-icon { display: grid; width: 48px; height: 48px; place-items: center; border: 1px solid var(--line); border-radius: 13px; }
.about-platform-list-v3 > a > span:nth-child(2) { display: grid; gap: 4px; }
.about-platform-list-v3 b { font-size: 16px; }
.about-platform-list-v3 small { color: var(--muted-2); font-size: 10px; }
.about-platform-list-v3 strong { color: var(--muted); font-size: 12px; }
.about-platform-list-v3 > a > i { color: var(--muted-2); }
.quote-v3 .quote-card { border-radius: 22px; background: linear-gradient(145deg, rgba(255,255,255,.052), rgba(255,255,255,.012)); }
.about-cta-v3 { padding-top: 0; }

/* Admin V3 */
.admin-v3 {
    --admin-sidebar: 286px;
    --admin-accent: #d6a26d;
    min-height: 100vh;
    color: #f5f5f5;
    background:
        radial-gradient(circle at 82% 2%, rgba(255,255,255,.07), transparent 25%),
        radial-gradient(circle at 34% 120%, rgba(255,255,255,.035), transparent 28%),
        #050505;
}
.admin-v3::before {
    position: fixed;
    inset: 0;
    z-index: -1;
    content: "";
    opacity: .22;
    background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: linear-gradient(to bottom, #000, transparent 75%);
}
.admin-v3 .admin-shell { display: block; }
.admin-v3 .admin-sidebar {
    width: var(--admin-sidebar);
    padding: 24px 18px 20px;
    border-right: 1px solid rgba(255,255,255,.085);
    background: rgba(6,6,6,.96);
    box-shadow: 25px 0 80px rgba(0,0,0,.22);
}
.admin-v3 .admin-brand {
    gap: 14px;
    padding: 4px 8px 24px;
    border-bottom: 0;
}
.admin-v3 .admin-brand img { width: 48px; height: 48px; border-radius: 14px; border-color: rgba(255,255,255,.18); }
.admin-v3 .admin-brand strong { font-size: 14px; letter-spacing: .18em; }
.admin-v3 .admin-brand small { color: #777; font-size: 8px; letter-spacing: .19em; }
.admin-profile-card {
    display: grid;
    grid-template-columns: 38px 1fr auto;
    align-items: center;
    gap: 11px;
    margin: 12px 4px 26px;
    padding: 12px;
    border: 1px solid rgba(255,255,255,.075);
    border-radius: 14px;
    background: rgba(255,255,255,.025);
}
.admin-profile-avatar img { width: 38px; height: 38px; border-radius: 10px; object-fit: cover; }
.admin-profile-card > span:nth-child(2) { display: grid; gap: 3px; }
.admin-profile-card b { font-size: 11px; }
.admin-profile-card small { color: #737373; font-size: 9px; }
.admin-profile-card > i { color: #a8e8ac; font-size: 11px; }
.admin-nav-label { margin: 19px 12px 8px; color: #5e5e5e; font-size: 8px; font-weight: 850; letter-spacing: .19em; text-transform: uppercase; }
.admin-v3 .admin-sidebar nav { gap: 5px; margin: 0; }
.admin-v3 .admin-sidebar nav a,
.admin-v3 .admin-sidebar-foot a {
    position: relative;
    min-height: 47px;
    padding: 0 13px;
    border: 1px solid transparent;
    border-radius: 11px;
    color: #929292;
    font-size: 11px;
    font-weight: 680;
}
.admin-v3 .admin-sidebar nav a::before {
    position: absolute;
    left: -18px;
    width: 3px;
    height: 20px;
    border-radius: 0 4px 4px 0;
    background: #fff;
    content: "";
    opacity: 0;
    transform: scaleY(.35);
    transition: opacity .2s ease, transform .2s ease;
}
.admin-v3 .admin-sidebar nav a:hover,
.admin-v3 .admin-sidebar nav a.is-active {
    color: #fff;
    border-color: rgba(255,255,255,.075);
    background: linear-gradient(90deg, rgba(255,255,255,.085), rgba(255,255,255,.025));
}
.admin-v3 .admin-sidebar nav a.is-active::before { opacity: 1; transform: scaleY(1); }
.admin-v3 .admin-sidebar nav a > i { width: 20px; color: #a8a8a8; font-size: 12px; }
.admin-v3 .admin-sidebar nav a.is-active > i { color: #fff; }
.admin-v3 .admin-sidebar nav a > span { margin: 0; padding: 0; border: 0; border-radius: 0; text-align: left; font-size: inherit; }
.admin-v3 .admin-sidebar nav a > em {
    margin-left: auto;
    min-width: 23px;
    padding: 3px 7px;
    border-radius: 20px;
    color: #090909;
    background: #fff;
    font-size: 9px;
    font-style: normal;
    text-align: center;
}
.admin-v3 .admin-sidebar-foot { gap: 4px; padding-top: 16px; border-color: rgba(255,255,255,.075); }
.admin-v3 .admin-sidebar-foot a:hover { color: #fff; background: rgba(255,255,255,.04); }
.admin-v3 .admin-main { min-height: 100vh; margin-left: var(--admin-sidebar); }
.admin-v3 .admin-topbar {
    height: 82px;
    padding: 0 clamp(22px, 3vw, 46px);
    border-color: rgba(255,255,255,.08);
    background: rgba(5,5,5,.78);
    backdrop-filter: blur(22px);
}
.admin-menu-button { display: none; }
.admin-breadcrumb { display: grid; gap: 4px; line-height: 1; }
.admin-v3 .admin-breadcrumb span { color: #666; font-size: 8px; font-weight: 850; letter-spacing: .19em; }
.admin-v3 .admin-breadcrumb strong { font-size: 13px; }
.admin-top-actions { display: flex; align-items: center; gap: 12px; margin-left: auto; }
.admin-top-actions > a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 39px;
    padding: 0 13px;
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 10px;
    color: #aaa;
    font-size: 10px;
    transition: color .2s ease, border-color .2s ease, background .2s ease;
}
.admin-top-actions > a:hover { color: #fff; border-color: rgba(255,255,255,.18); background: rgba(255,255,255,.04); }
.admin-v3 .admin-status {
    margin: 0;
    min-height: 39px;
    padding: 0 13px;
    border: 1px solid rgba(152,231,158,.12);
    border-radius: 10px;
    color: #8b8b8b;
    background: rgba(129,213,137,.035);
}
.admin-v3 .admin-status i { color: #91dc98; box-shadow: 0 0 14px rgba(145,220,152,.75); }
.admin-v3 .admin-content {
    width: min(1480px, calc(100% - clamp(44px, 6vw, 96px)));
    padding: clamp(40px, 5vw, 72px) 0 100px;
}
.admin-welcome-card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(270px, .55fr);
    min-height: 420px;
    margin-bottom: 58px;
    padding: clamp(36px, 5vw, 68px);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.11);
    border-radius: 26px;
    background:
        linear-gradient(120deg, rgba(255,255,255,.065), rgba(255,255,255,.012) 56%),
        #090909;
    box-shadow: 0 38px 100px rgba(0,0,0,.28);
}
.admin-welcome-card::before {
    position: absolute;
    inset: 0;
    content: "";
    pointer-events: none;
    background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 45px 45px;
    mask-image: linear-gradient(90deg, transparent 5%, #000 75%);
}
.admin-welcome-copy { position: relative; z-index: 1; align-self: center; }
.admin-kicker { display: flex; align-items: center; gap: 9px; color: #8c8c8c; font-size: 9px; font-weight: 850; letter-spacing: .17em; }
.admin-kicker i { color: #fff; }
.admin-welcome-copy h1 {
    max-width: 770px;
    margin: 21px 0 23px;
    font-size: clamp(53px, 6.1vw, 92px);
    line-height: .92;
    letter-spacing: -.065em;
}
.admin-welcome-copy h1 span { color: #777; }
.admin-welcome-copy > p { max-width: 680px; margin: 0; color: #a7a7a7; font-size: 16px; line-height: 1.75; }
.admin-welcome-actions { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 34px; }
.admin-welcome-actions .button { min-height: 49px; border-radius: 11px; }
.admin-welcome-visual { position: relative; display: grid; place-items: center; min-height: 280px; }
.admin-welcome-visual img {
    position: relative;
    z-index: 2;
    width: clamp(145px, 14vw, 210px);
    aspect-ratio: 1;
    object-fit: cover;
    border: 10px solid rgba(255,255,255,.045);
    border-radius: 36px;
    box-shadow: 0 30px 70px rgba(0,0,0,.52), 0 0 0 1px rgba(255,255,255,.16);
    transform: rotate(3deg);
}
.admin-welcome-visual > span {
    position: absolute;
    z-index: 3;
    right: 4%;
    bottom: 9%;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 11px 14px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 10px;
    background: rgba(5,5,5,.82);
    color: #d0d0d0;
    font-size: 10px;
    font-weight: 750;
    backdrop-filter: blur(10px);
}
.admin-orbit { position: absolute; border: 1px solid rgba(255,255,255,.075); border-radius: 50%; }
.admin-orbit-one { width: 270px; height: 270px; }
.admin-orbit-two { width: 360px; height: 360px; border-style: dashed; opacity: .5; }
.admin-section-title {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 25px;
    margin: 0 0 22px;
}
.admin-section-title > div > span,
.admin-page-heading > div > span,
.admin-v3 .panel-head > div > span {
    color: #626262;
    font-size: 8px;
    font-weight: 850;
    letter-spacing: .19em;
}
.admin-section-title h2 { margin: 5px 0 0; font-size: clamp(27px, 2.4vw, 38px); }
.admin-section-title > a { display: inline-flex; align-items: center; gap: 9px; color: #909090; font-size: 10px; }
.admin-section-title > a:hover { color: #fff; }
.admin-stat-grid-v3 { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 13px; margin-bottom: 57px; }
.admin-stat-grid-v3 article {
    position: relative;
    min-height: 215px;
    align-content: start;
    padding: 26px;
    overflow: hidden;
    border-color: rgba(255,255,255,.09);
    border-radius: 18px;
    background: linear-gradient(145deg, rgba(255,255,255,.047), rgba(255,255,255,.012));
    transition: transform .25s ease, border-color .25s ease;
}
.admin-stat-grid-v3 article:hover { transform: translateY(-4px); border-color: rgba(255,255,255,.18); }
.admin-stat-grid-v3 article::after {
    position: absolute;
    right: -48px;
    bottom: -55px;
    width: 140px;
    height: 140px;
    content: "";
    border: 1px solid rgba(255,255,255,.05);
    border-radius: 50%;
}
.admin-stat-icon { display: grid; width: 44px; height: 44px; margin-bottom: 31px; place-items: center; border: 1px solid rgba(255,255,255,.12); border-radius: 12px; background: rgba(255,255,255,.025); }
.admin-stat-grid-v3 i { margin: 0; color: #bbb; }
.admin-stat-grid-v3 span { order: 2; margin: 0 0 8px; color: #6f6f6f; }
.admin-stat-grid-v3 strong { order: 3; font-size: clamp(27px, 2.5vw, 39px); letter-spacing: -.04em; }
.admin-stat-grid-v3 small { order: 4; margin-top: 10px; color: #777; font-size: 10px; line-height: 1.5; }
.admin-quick-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 57px;
}
.admin-quick-grid > a {
    position: relative;
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 17px;
    min-height: 174px;
    align-content: center;
    padding: 25px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.085);
    border-radius: 17px;
    background: rgba(255,255,255,.018);
    transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.admin-quick-grid > a:hover { transform: translateY(-5px); border-color: rgba(255,255,255,.2); background: rgba(255,255,255,.04); }
.admin-quick-grid > a > i { display: grid; width: 48px; height: 48px; place-items: center; border: 1px solid rgba(255,255,255,.12); border-radius: 13px; color: #bcbcbc; }
.admin-quick-grid > a > span { display: grid; gap: 8px; }
.admin-quick-grid b { font-size: 14px; }
.admin-quick-grid small { color: #777; font-size: 10px; line-height: 1.55; }
.admin-quick-grid em { position: absolute; right: 17px; bottom: 13px; color: rgba(255,255,255,.055); font-size: 45px; font-style: normal; font-weight: 850; letter-spacing: -.05em; }
.admin-dashboard-grid { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(330px, .65fr); gap: 15px; }
.admin-v3 .admin-panel {
    margin-bottom: 18px;
    padding: 28px;
    border-color: rgba(255,255,255,.09);
    border-radius: 18px;
    background: rgba(255,255,255,.019);
    box-shadow: 0 24px 65px rgba(0,0,0,.12);
}
.admin-v3 .panel-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 22px; }
.admin-v3 .panel-head h2 { margin: 4px 0 0; font-size: 22px; }
.admin-v3 .panel-head > a { color: #8b8b8b; font-size: 10px; }
.admin-v3 .panel-head > a:hover { color: #fff; }
.health-badge { display: inline-flex; align-items: center; gap: 7px; color: #91dc98; font-size: 9px; }
.health-badge i { font-size: 6px; box-shadow: 0 0 12px rgba(145,220,152,.75); }
.admin-empty-state { display: grid; min-height: 260px; place-items: center; align-content: center; text-align: center; }
.admin-empty-state > i { display: grid; width: 58px; height: 58px; margin-bottom: 18px; place-items: center; border: 1px solid rgba(255,255,255,.09); border-radius: 16px; color: #696969; font-size: 18px; }
.admin-empty-state strong { font-size: 15px; }
.admin-empty-state p { max-width: 320px; margin: 8px 0 0; color: #6e6e6e; font-size: 11px; }
.admin-activity-list { display: grid; }
.admin-activity-list > a { display: grid; grid-template-columns: 44px 1fr auto; align-items: center; gap: 14px; min-height: 72px; padding: 10px 0; border-top: 1px solid rgba(255,255,255,.07); }
.admin-activity-list > a:hover b { color: #fff; }
.activity-icon { display: grid; width: 42px; height: 42px; place-items: center; border: 1px solid rgba(255,255,255,.09); border-radius: 12px; color: #aaa; background: rgba(255,255,255,.02); }
.admin-activity-list > a > span:nth-child(2) { display: grid; gap: 5px; }
.admin-activity-list b { color: #ccc; font-size: 12px; }
.admin-activity-list small { color: #696969; font-size: 9px; }
.admin-activity-list time { color: #686868; font-size: 9px; }
.admin-health-list { display: grid; }
.admin-health-list > div { display: flex; align-items: center; justify-content: space-between; gap: 18px; min-height: 53px; border-top: 1px solid rgba(255,255,255,.07); }
.admin-health-list span { display: inline-flex; align-items: center; gap: 10px; color: #929292; font-size: 10px; }
.admin-health-list span i { width: 17px; color: #666; }
.admin-health-list b { color: #c8c8c8; font-size: 10px; }
.admin-health-list b.ok { color: #91dc98; }
.admin-health-list b.bad { color: #ff9999; }
.admin-health-link { display: flex; align-items: center; gap: 10px; margin-top: 20px; padding: 16px 0 0; border-top: 1px solid rgba(255,255,255,.07); color: #949494; font-size: 10px; }
.admin-health-link i:last-child { margin-left: auto; }
.admin-health-link:hover { color: #fff; }
.admin-page-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 35px;
    margin-bottom: 42px;
}
.admin-page-heading h1 { margin: 8px 0 18px; font-size: clamp(48px, 5.5vw, 78px); line-height: .92; letter-spacing: -.06em; }
.admin-page-heading p { max-width: 690px; margin: 0; color: #8e8e8e; font-size: 14px; line-height: 1.7; }
.admin-page-heading > .button { flex: 0 0 auto; }
.admin-form-layout { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(330px, .65fr); gap: 18px; align-items: start; }
.admin-side-stack { display: grid; gap: 18px; }
.admin-tip-card > i { display: grid; width: 50px; height: 50px; margin-bottom: 25px; place-items: center; border: 1px solid rgba(255,255,255,.12); border-radius: 14px; }
.admin-tip-card h3 { margin: 0 0 12px; font-size: 21px; }
.admin-tip-card p { margin: 0; color: #838383; font-size: 12px; line-height: 1.7; }
.admin-v3 .admin-form { max-width: none; }
.admin-form-wide { width: 100%; }
.admin-form-divider { display: flex; align-items: center; gap: 14px; margin: 35px 0 23px; color: #666; font-size: 8px; font-weight: 850; letter-spacing: .18em; }
.admin-form-divider::after { flex: 1; height: 1px; content: ""; background: rgba(255,255,255,.08); }
.admin-v3 .field { margin-bottom: 17px; }
.admin-v3 .field > span { margin-bottom: 8px; color: #969696; font-size: 9px; font-weight: 750; letter-spacing: .06em; }
.admin-v3 .field input,
.admin-v3 .field textarea,
.admin-v3 .field select {
    min-height: 49px;
    padding: 13px 14px;
    border-color: rgba(255,255,255,.1);
    border-radius: 10px;
    color: #eee;
    background: rgba(0,0,0,.27);
    font-size: 12px;
    transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.admin-v3 .field textarea { min-height: 108px; resize: vertical; }
.admin-v3 .field input:focus,
.admin-v3 .field textarea:focus,
.admin-v3 .field select:focus { border-color: rgba(255,255,255,.3); background: rgba(255,255,255,.025); box-shadow: 0 0 0 3px rgba(255,255,255,.035); outline: none; }
.admin-v3 .field small { display: block; margin-top: 8px; color: #666; font-size: 9px; line-height: 1.55; }
.admin-social-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.admin-social-cards fieldset { padding: 25px; border-color: rgba(255,255,255,.09); border-radius: 16px; background: rgba(255,255,255,.015); }
.admin-social-cards legend { display: flex; align-items: center; gap: 12px; padding: 0 12px; }
.admin-social-cards legend > span:nth-child(2) { display: grid; gap: 4px; }
.admin-social-cards legend small { color: #666; font-size: 8px; font-weight: 500; }
.social-form-icon { display: grid; width: 40px; height: 40px; place-items: center; border: 1px solid rgba(255,255,255,.1); border-radius: 11px; background: #0a0a0a; }
.admin-sticky-save { position: sticky; bottom: 18px; z-index: 8; display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 25px; padding: 15px 16px; border: 1px solid rgba(255,255,255,.12); border-radius: 14px; background: rgba(10,10,10,.92); box-shadow: 0 20px 60px rgba(0,0,0,.45); backdrop-filter: blur(16px); }
.admin-sticky-save > span { display: inline-flex; align-items: center; gap: 9px; color: #777; font-size: 9px; }
.admin-clip-list { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.admin-clip-card { overflow: hidden; }
.admin-v3 .admin-clip-preview { height: 260px; margin: -28px -28px 27px; border-color: rgba(255,255,255,.09); }
.admin-v3 .admin-clip-preview::after { position: absolute; inset: 0; content: ""; background: linear-gradient(to top, rgba(0,0,0,.72), transparent 60%); }
.admin-v3 .admin-clip-preview img { filter: saturate(.9) contrast(1.04); }
.admin-v3 .admin-clip-preview span { z-index: 2; border-radius: 8px; }
.admin-v3 .admin-clip-preview > b { position: absolute; right: 17px; bottom: 17px; z-index: 2; font-size: 21px; letter-spacing: -.04em; }
.admin-add-panel { margin-top: 18px; }
.admin-inbox-total { display: grid; min-width: 145px; padding: 18px 22px; border: 1px solid rgba(255,255,255,.1); border-radius: 15px; background: rgba(255,255,255,.02); }
.admin-inbox-total b { font-size: 30px; }
.admin-inbox-total small { color: #6f6f6f; font-size: 9px; }
.admin-inbox-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; align-items: start; }
.panel-count { display: grid; min-width: 32px; height: 32px; place-items: center; border: 1px solid rgba(255,255,255,.1); border-radius: 10px; font-size: 11px; }
.admin-v3 .inbox-list article { border-color: rgba(255,255,255,.08); border-radius: 13px; background: rgba(0,0,0,.18); }
.admin-v3 .inbox-list dd { font-size: 11px; }
.admin-settings-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; align-items: start; }
.admin-settings-grid .panel-head > i { display: grid; width: 43px; height: 43px; place-items: center; border: 1px solid rgba(255,255,255,.1); border-radius: 12px; color: #888; }
.admin-v3 .check-field { align-items: flex-start; gap: 12px; margin: 22px 0; padding: 17px; border: 1px solid rgba(255,255,255,.08); border-radius: 12px; background: rgba(255,255,255,.018); }
.admin-v3 .check-field > span { display: grid; gap: 5px; }
.admin-v3 .check-field b { font-size: 11px; }
.admin-v3 .check-field small { color: #6c6c6c; font-size: 9px; line-height: 1.5; }
.password-hint { display: flex; gap: 12px; margin: 19px 0; padding: 15px; border: 1px solid rgba(255,255,255,.075); border-radius: 11px; color: #777; font-size: 9px; line-height: 1.55; }
.password-hint i { color: #aaa; }
.admin-security-mark { display: grid; width: 88px; height: 88px; place-items: center; border: 1px solid rgba(255,255,255,.11); border-radius: 23px; color: #888; background: rgba(255,255,255,.02); font-size: 24px; }
.admin-sidebar-overlay { display: none; }

@media (max-width: 1250px) {
    .about-hero-grid-v3 { grid-template-columns: 1fr .72fr; gap: 70px; }
    .about-floating-tag.tag-one { left: -28px; }
    .about-floating-tag.tag-two { right: -22px; }
    .admin-stat-grid-v3, .admin-quick-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .admin-social-cards { grid-template-columns: 1fr; }
}

@media (max-width: 1020px) {
    .about-hero-v3 { min-height: auto; }
    .about-hero-grid-v3, .about-story-layout-v3, .about-numbers-grid-v3, .about-platform-layout-v3 { grid-template-columns: 1fr; }
    .about-hero-copy-v3 { order: 1; }
    .about-portrait-v3 { order: 2; width: min(590px, 88%); margin: 35px auto 0; }
    .about-story-aside, .about-platform-copy { position: static; }
    .about-value-grid-v3 { grid-template-columns: 1fr 1fr; }
    .about-value-grid-v3 article:last-child { grid-column: 1 / 3; }

    .admin-v3 .admin-sidebar { transform: translateX(-100%); }
    .admin-v3 .admin-sidebar.is-open { transform: translateX(0); }
    .admin-v3 .admin-main { margin-left: 0; }
    .admin-menu-button { display: grid !important; width: 42px !important; height: 42px !important; place-items: center; border: 1px solid rgba(255,255,255,.1) !important; border-radius: 10px; background: rgba(255,255,255,.02) !important; }
    .admin-sidebar-overlay { position: fixed; inset: 0; z-index: 90; border: 0; background: rgba(0,0,0,.65); backdrop-filter: blur(3px); }
    .admin-v3 .admin-sidebar.is-open + .admin-sidebar-overlay { display: block; }
    .admin-welcome-card { grid-template-columns: 1fr .55fr; }
    .admin-form-layout, .admin-dashboard-grid { grid-template-columns: 1fr; }
    .admin-side-stack { grid-template-columns: 1fr 1fr; }
    .admin-inbox-grid, .admin-settings-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
    .about-hero-v3 { padding-top: calc(var(--header-h) + 65px); }
    .about-hero-copy-v3 h1 { font-size: clamp(47px, 13vw, 72px); }
    .about-hero-copy-v3 > p { font-size: 16px; }
    .about-hero-facts { grid-template-columns: 1fr; }
    .about-hero-facts div, .about-hero-facts div + div { padding: 18px 0; border-left: 0; border-bottom: 1px solid var(--line); }
    .about-hero-facts div:last-child { border-bottom: 0; }
    .about-portrait-v3 { width: 90%; }
    .about-floating-tag { min-width: 155px; padding: 10px; }
    .about-floating-tag.tag-one { left: -6%; }
    .about-floating-tag.tag-two { right: -6%; }
    .story-paragraph { grid-template-columns: 36px 1fr; gap: 15px; }
    .story-paragraph p { font-size: 16px; }
    .about-value-grid-v3 { grid-template-columns: 1fr; }
    .about-value-grid-v3 article:last-child { grid-column: auto; }
    .about-value-grid-v3 article { min-height: 310px; }
    .about-value-grid-v3 article > i { margin-top: 52px; }
    .about-number-cards-v3 > a { grid-template-columns: 1fr 30px; }
    .about-number-cards-v3 > a > strong { grid-row: auto; grid-column: 1; margin-top: 12px; }
    .about-number-cards-v3 > a > i { grid-row: 1 / 4; grid-column: 2; }
    .about-platform-list-v3 > a { grid-template-columns: 45px 1fr 22px; gap: 13px; }
    .about-platform-list-v3 strong { display: none; }
    .about-platform-list-v3 > a > i { grid-column: 3; }

    .admin-v3 .admin-content { width: calc(100% - 26px); padding-top: 28px; }
    .admin-v3 .admin-topbar { height: 70px; padding: 0 13px; }
    .admin-top-actions > a span, .admin-v3 .admin-status { display: none; }
    .admin-welcome-card { grid-template-columns: 1fr; min-height: 0; padding: 30px 22px; border-radius: 19px; }
    .admin-welcome-copy h1 { font-size: clamp(48px, 13vw, 70px); }
    .admin-welcome-copy > p { font-size: 14px; }
    .admin-welcome-visual { min-height: 245px; margin-top: 15px; }
    .admin-welcome-visual img { width: 150px; }
    .admin-orbit-one { width: 210px; height: 210px; }
    .admin-orbit-two { width: 270px; height: 270px; }
    .admin-welcome-visual > span { right: 8%; bottom: 6%; }
    .admin-section-title, .admin-page-heading { align-items: flex-start; flex-direction: column; }
    .admin-section-title > a { margin-top: 5px; }
    .admin-stat-grid-v3, .admin-quick-grid { grid-template-columns: 1fr; }
    .admin-stat-grid-v3 article { min-height: 180px; }
    .admin-quick-grid > a { min-height: 145px; }
    .admin-page-heading h1 { font-size: clamp(46px, 13vw, 68px); }
    .admin-page-heading > .button { width: 100%; }
    .admin-v3 .admin-panel { padding: 21px 16px; border-radius: 15px; }
    .admin-side-stack { grid-template-columns: 1fr; }
    .admin-social-cards fieldset { padding: 18px 13px; }
    .admin-sticky-save { align-items: stretch; flex-direction: column; bottom: 8px; }
    .admin-sticky-save .button { width: 100%; }
    .admin-clip-list { grid-template-columns: 1fr; }
    .admin-v3 .admin-clip-preview { height: 220px; margin: -21px -16px 23px; }
    .admin-inbox-total { width: 100%; }
    .admin-security-mark { width: 70px; height: 70px; }
}

/* Admin login polish V3 */
.admin-v3 .login-page,
.admin-body .login-page {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 76% 20%, rgba(255,255,255,.08), transparent 25%),
        radial-gradient(circle at 18% 90%, rgba(255,255,255,.035), transparent 26%),
        #050505;
}
.admin-v3 .login-page::before,
.admin-body .login-page::before {
    position: absolute;
    inset: 0;
    content: "";
    opacity: .35;
    background-image: linear-gradient(rgba(255,255,255,.027) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.027) 1px, transparent 1px);
    background-size: 58px 58px;
    mask-image: radial-gradient(circle at center, #000, transparent 72%);
}
.admin-body .login-card {
    position: relative;
    z-index: 1;
    width: min(470px, calc(100% - 28px));
    padding: 42px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 23px;
    background: rgba(10,10,10,.84);
    box-shadow: 0 45px 120px rgba(0,0,0,.58);
    backdrop-filter: blur(20px);
}
.admin-body .login-card h1 { margin-top: 23px; font-size: clamp(40px, 7vw, 58px); }
.admin-body .login-card > p { color: #838383; }
.admin-body .login-card .field input { border-radius: 10px; background: rgba(0,0,0,.25); }
@media (max-width: 640px) {
    .admin-body .login-card { padding: 30px 21px; border-radius: 18px; }
}


/* V4 Creator & Moderation directories */
.overview-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.network-preview-section { padding-top: 0; }
.network-preview-panel { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(45px, 7vw, 110px); padding: clamp(38px, 5vw, 72px); border: 1px solid var(--line); border-radius: 24px; background: linear-gradient(135deg, rgba(255,255,255,.055), rgba(255,255,255,.012)); }
.network-preview-copy h2 { margin-bottom: 24px; }
.network-preview-copy p { max-width: 640px; font-size: 16px; line-height: 1.8; }
.network-preview-links { display: grid; border-top: 1px solid var(--line); }
.network-preview-links > a { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 20px; padding: 28px 8px; border-bottom: 1px solid var(--line); transition: padding .25s ease, background .25s ease; }
.network-preview-links > a:hover { padding-inline: 18px; background: rgba(255,255,255,.025); }
.network-preview-links > a > span { display: grid; grid-template-columns: 46px 1fr; align-items: center; gap: 3px 16px; }
.network-preview-links > a > span > i { grid-row: 1 / 4; display: grid; width: 46px; height: 46px; place-items: center; border: 1px solid var(--line-strong); border-radius: 12px; }
.network-preview-links b { font-size: 17px; }
.network-preview-links small { color: var(--muted-2); font-size: 10px; }
.network-preview-links > a > i { color: var(--muted-2); }
.about-network-v4 { background: #070707; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.about-network-grid-v4 { display: grid; grid-template-columns: .85fr 1.15fr; align-items: center; gap: clamp(55px, 8vw, 130px); }
.about-network-grid-v4 h2 { margin-bottom: 25px; }
.about-network-grid-v4 p { max-width: 620px; font-size: 17px; line-height: 1.8; }
.about-network-actions-v4 { display: grid; gap: 12px; }
.about-network-actions-v4 > a { display: grid; grid-template-columns: 54px 1fr auto; align-items: center; gap: 18px; padding: 24px; border: 1px solid var(--line); border-radius: 16px; background: rgba(255,255,255,.02); transition: transform .25s ease, border-color .25s ease, background .25s ease; }
.about-network-actions-v4 > a:hover { transform: translateX(7px); border-color: var(--line-strong); background: rgba(255,255,255,.045); }
.about-network-actions-v4 > a > i:first-child { display: grid; width: 54px; height: 54px; place-items: center; border: 1px solid var(--line-strong); border-radius: 14px; }
.about-network-actions-v4 span { display: grid; gap: 5px; }
.about-network-actions-v4 b { font-size: 18px; }
.about-network-actions-v4 small { color: var(--muted-2); font-size: 11px; }
.directory-hero { position: relative; min-height: 76svh; padding-top: calc(var(--header-h) + 105px); overflow: hidden; background: radial-gradient(circle at 78% 28%, rgba(255,255,255,.08), transparent 26%), #050505; border-bottom: 1px solid var(--line); }
.directory-hero::after { position: absolute; right: -13vw; bottom: -28vw; width: 65vw; height: 65vw; border: 1px solid rgba(255,255,255,.055); border-radius: 50%; content: ''; box-shadow: 0 0 0 75px rgba(255,255,255,.008), 0 0 0 150px rgba(255,255,255,.005); }
.directory-hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: clamp(55px, 8vw, 130px); }
.directory-hero h1 { max-width: 950px; font-size: clamp(58px, 6.7vw, 104px); }
.directory-hero p { max-width: 720px; font-size: clamp(16px, 1.3vw, 20px); line-height: 1.8; }
.directory-hero-metrics { display: grid; gap: 11px; }
.directory-hero-metrics article { display: grid; grid-template-columns: 52px 1fr; align-items: center; gap: 3px 18px; padding: 23px; border: 1px solid var(--line); border-radius: 17px; background: rgba(255,255,255,.025); backdrop-filter: blur(12px); }
.directory-hero-metrics article > i { grid-row: 1 / 3; display: grid; width: 52px; height: 52px; place-items: center; border: 1px solid var(--line-strong); border-radius: 14px; }
.directory-hero-metrics strong { font-size: clamp(27px, 3vw, 43px); letter-spacing: -.045em; }
.directory-hero-metrics span { color: var(--muted-2); font-size: 10px; font-weight: 750; letter-spacing: .13em; text-transform: uppercase; }
.directory-section { background: #070707; }
.directory-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.directory-card { min-width: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 21px; background: linear-gradient(155deg, rgba(255,255,255,.04), rgba(255,255,255,.01)); transition: transform .35s var(--ease), border-color .35s ease, box-shadow .35s ease; }
.directory-card:hover { transform: translateY(-8px); border-color: var(--line-strong); box-shadow: 0 28px 70px rgba(0,0,0,.35); }
.directory-image { position: relative; aspect-ratio: 1.18 / 1; overflow: hidden; background: #0c0c0c; }
.directory-image::after { position: absolute; inset: 0; content: ''; background: linear-gradient(to top, rgba(0,0,0,.72), transparent 55%); }
.directory-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.directory-card:hover .directory-image img { transform: scale(1.045); }
.directory-role { position: absolute; z-index: 2; left: 18px; bottom: 17px; display: inline-flex; align-items: center; gap: 8px; padding: 9px 11px; border: 1px solid rgba(255,255,255,.22); border-radius: 9px; background: rgba(0,0,0,.7); font-size: 9px; font-weight: 800; letter-spacing: .14em; backdrop-filter: blur(10px); }
.directory-body { padding: 26px; }
.directory-heading { display: grid; grid-template-columns: 1fr auto; gap: 18px; align-items: start; padding-bottom: 21px; border-bottom: 1px solid var(--line); }
.directory-heading > div > span { color: var(--muted-2); font-size: 9px; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.directory-heading h3 { margin: 6px 0 4px; font-size: clamp(24px, 2.2vw, 32px); }
.directory-heading > div > small { color: #8a8a8a; }
.directory-heading > strong { display: grid; gap: 4px; font-size: 24px; text-align: right; letter-spacing: -.04em; }
.directory-heading > strong small { color: var(--muted-2); font-size: 8px; letter-spacing: .13em; text-transform: uppercase; }
.directory-body > p { min-height: 66px; margin: 20px 0; font-size: 14px; line-height: 1.65; }
.directory-badges { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 18px; }
.directory-badges span { display: inline-flex; align-items: center; gap: 7px; padding: 8px 10px; border: 1px solid var(--line); border-radius: 30px; color: #c1c1c1; font-size: 9px; font-weight: 700; }
.directory-buttons { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.directory-buttons a { display: inline-flex; flex: 1 1 125px; align-items: center; justify-content: center; gap: 8px; min-height: 44px; padding: 10px 12px; border: 1px solid var(--line); border-radius: 10px; color: #c7c7c7; font-size: 10px; font-weight: 750; transition: color .2s ease, background .2s ease, border-color .2s ease; }
.directory-buttons a i:last-child { margin-left: auto; font-size: 8px; }
.directory-buttons a:hover { color: #050505; border-color: #fff; background: #fff; }
.directory-empty { grid-column: 1 / -1; padding: clamp(55px, 8vw, 105px); border: 1px dashed var(--line-strong); border-radius: 22px; text-align: center; background: rgba(255,255,255,.015); }
.directory-empty > i { display: grid; width: 70px; height: 70px; margin: 0 auto 25px; place-items: center; border: 1px solid var(--line-strong); border-radius: 20px; font-size: 22px; }
.directory-empty h3 { font-size: 30px; }
.directory-empty p { max-width: 600px; margin: auto; }
.directory-cta { padding-top: 0; background: #070707; }
.moderation-values { border-top: 1px solid var(--line); }
.moderation-value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.moderation-value-grid article { min-height: 280px; padding: 36px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.018); }
.moderation-value-grid article > i { display: grid; width: 54px; height: 54px; margin-bottom: 65px; place-items: center; border: 1px solid var(--line-strong); border-radius: 14px; }
.moderation-value-grid p { margin-bottom: 0; line-height: 1.7; }

/* V4 dashboard directory manager */
.admin-v3 .admin-content { width: min(1760px, calc(100% - clamp(42px, 5vw, 86px))); }
.admin-quick-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.admin-network-summary { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 13px; margin: -30px 0 57px; }
.admin-network-summary > a { display: grid; grid-template-columns: 58px 1fr auto; align-items: center; gap: 18px; padding: 22px; border: 1px solid rgba(255,255,255,.09); border-radius: 17px; background: rgba(255,255,255,.022); transition: transform .25s ease, border-color .25s ease, background .25s ease; }
.admin-network-summary > a:hover { transform: translateY(-4px); border-color: rgba(255,255,255,.2); background: rgba(255,255,255,.045); }
.admin-network-icon { display: grid; width: 58px; height: 58px; place-items: center; border: 1px solid rgba(255,255,255,.14); border-radius: 15px; }
.admin-network-summary > a > span:nth-child(2) { display: grid; gap: 5px; }
.admin-network-summary small { color: #666; font-size: 8px; font-weight: 850; letter-spacing: .15em; }
.admin-network-summary b { font-size: 22px; }
.admin-network-summary em { color: #818181; font-size: 10px; font-style: normal; }
.admin-network-summary > a > i { color: #777; }
.admin-directory-heading h1 { white-space: pre-line; }
.admin-directory-heading { margin-bottom: 38px; }
.admin-directory-add { margin-bottom: 52px; padding: clamp(25px, 3vw, 42px); border-radius: 22px; }
.admin-directory-add .panel-head > i { color: #888; font-size: 22px; }
.admin-profile-form-grid { display: grid; grid-template-columns: 250px 1fr; gap: 34px; }
.admin-image-upload { display: grid; align-content: start; gap: 12px; }
.admin-image-placeholder { display: grid; aspect-ratio: 1; place-items: center; border: 1px dashed rgba(255,255,255,.16); border-radius: 18px; background: linear-gradient(145deg, rgba(255,255,255,.04), rgba(255,255,255,.01)); color: #666; font-size: 30px; }
.admin-image-upload label, .admin-change-image { position: relative; display: flex; align-items: center; gap: 13px; padding: 15px; border: 1px solid rgba(255,255,255,.09); border-radius: 12px; color: #aaa; background: rgba(255,255,255,.02); cursor: pointer; transition: border-color .2s ease, background .2s ease; }
.admin-image-upload label:hover, .admin-change-image:hover { border-color: rgba(255,255,255,.2); background: rgba(255,255,255,.045); }
.admin-image-upload label > i, .admin-change-image > i { display: grid; width: 34px; height: 34px; place-items: center; border: 1px solid rgba(255,255,255,.11); border-radius: 9px; }
.admin-image-upload label span, .admin-change-image span { display: grid; gap: 3px; font-size: 10px; font-weight: 750; }
.admin-image-upload label small, .admin-change-image small { color: #666; font-size: 8px; font-weight: 500; }
.admin-image-upload input, .admin-change-image input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.admin-profile-fields { min-width: 0; }
.admin-form-bottom { display: grid; grid-template-columns: 130px 1fr auto; align-items: end; gap: 16px; margin-top: 10px; }
.field-small { margin: 0; }
.check-field-inline { min-height: 53px; margin: 0; }
.admin-directory-title { margin-top: 0; }
.admin-directory-title > small { color: #747474; font-size: 9px; }
.admin-directory-list { display: grid; gap: 18px; }
.admin-directory-editor { overflow: hidden; border: 1px solid rgba(255,255,255,.1); border-radius: 22px; background: linear-gradient(145deg, rgba(255,255,255,.035), rgba(255,255,255,.012)); }
.admin-directory-preview { position: relative; display: grid; grid-template-columns: 120px 1fr auto; align-items: center; gap: 25px; min-height: 120px; padding: 18px 25px 18px 18px; border-bottom: 1px solid rgba(255,255,255,.08); }
.admin-directory-preview > img { width: 120px; height: 120px; object-fit: cover; border-radius: 15px; }
.admin-directory-preview > div:nth-child(2) > span { color: #6f6f6f; font-size: 8px; font-weight: 850; letter-spacing: .15em; text-transform: uppercase; }
.admin-directory-preview h2 { margin: 7px 0 4px; font-size: 31px; }
.admin-directory-preview p { margin: 0; color: #858585; font-size: 11px; }
.admin-directory-metric { display: grid; gap: 4px; min-width: 120px; text-align: right; }
.admin-directory-metric strong { font-size: 29px; letter-spacing: -.04em; }
.admin-directory-metric small { color: #686868; font-size: 8px; letter-spacing: .13em; text-transform: uppercase; }
.admin-visibility { position: absolute; top: 16px; right: 18px; display: inline-flex; align-items: center; gap: 6px; color: #777; font-size: 8px; }
.admin-visibility i { font-size: 6px; }
.admin-visibility.is-visible { color: #9bdba0; }
.admin-directory-edit { padding: 28px; }
.admin-change-image { margin: 10px 0 18px; }
.admin-directory-footer { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 15px 22px; border-top: 1px solid rgba(255,255,255,.075); background: rgba(0,0,0,.18); }
.admin-directory-footer > div { display: flex; gap: 8px; }
.admin-directory-footer > div a { display: grid; width: 36px; height: 36px; place-items: center; border: 1px solid rgba(255,255,255,.1); border-radius: 9px; color: #999; }
.admin-directory-footer > div a:hover { color: #050505; background: #fff; }
.admin-directory-footer form { margin: 0; }
.admin-directory-footer .button { min-height: 38px; padding: 8px 13px; }
.admin-directory-empty { padding: 70px; text-align: center; }
.admin-directory-empty > i { display: grid; width: 64px; height: 64px; margin: 0 auto 22px; place-items: center; border: 1px solid rgba(255,255,255,.14); border-radius: 17px; color: #888; font-size: 20px; }
.admin-directory-empty h2 { margin-bottom: 12px; font-size: 33px; }

@media (max-width: 1250px) {
    .directory-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .admin-profile-form-grid { grid-template-columns: 200px 1fr; }
}
@media (max-width: 1050px) {
    .network-preview-panel, .about-network-grid-v4, .directory-hero-grid { grid-template-columns: 1fr; }
    .directory-hero { min-height: auto; }
    .directory-hero-metrics { grid-template-columns: repeat(3, 1fr); }
    .directory-hero-metrics article { grid-template-columns: 1fr; text-align: center; }
    .directory-hero-metrics article > i { grid-row: auto; margin: auto; }
    .admin-network-summary { grid-template-columns: 1fr; }
    .admin-profile-form-grid { grid-template-columns: 1fr; }
    .admin-image-upload { grid-template-columns: 170px 1fr; align-items: center; }
}
@media (max-width: 760px) {
    .overview-grid, .directory-grid, .moderation-value-grid { grid-template-columns: 1fr; }
    .directory-hero { padding-top: calc(var(--header-h) + 70px); }
    .directory-hero-metrics { grid-template-columns: 1fr; }
    .directory-heading { grid-template-columns: 1fr; }
    .directory-heading > strong { text-align: left; }
    .directory-body > p { min-height: 0; }
    .admin-quick-grid { grid-template-columns: 1fr; }
    .admin-network-summary > a { grid-template-columns: 50px 1fr auto; }
    .admin-profile-form-grid { display: block; }
    .admin-image-upload { display: grid; grid-template-columns: 1fr; margin-bottom: 24px; }
    .admin-image-placeholder { max-width: 180px; }
    .admin-form-bottom { grid-template-columns: 1fr; align-items: stretch; }
    .admin-directory-preview { grid-template-columns: 78px 1fr; gap: 16px; padding: 16px; }
    .admin-directory-preview > img { width: 78px; height: 78px; }
    .admin-directory-metric { grid-column: 1 / -1; text-align: left; }
    .admin-visibility { top: 10px; right: 12px; }
    .admin-directory-edit { padding: 20px 16px; }
    .admin-directory-footer { align-items: stretch; flex-direction: column; }
    .admin-directory-footer .button { width: 100%; }
}


/* ============================================================
   V5 · CREATOR SHOWCASE, EVENTS & CONTROL CENTER REFINEMENT
   ============================================================ */
.creator-hero-v5 { padding-bottom: clamp(65px, 8vw, 110px); }
.creator-hero-board { align-self: center; overflow: hidden; border: 1px solid rgba(255,255,255,.13); border-radius: 26px; background: linear-gradient(145deg, rgba(255,255,255,.065), rgba(255,255,255,.012)); box-shadow: 0 35px 90px rgba(0,0,0,.36); }
.creator-hero-board-head { display:flex; align-items:center; justify-content:space-between; padding:20px 24px; border-bottom:1px solid var(--line); color:#777; font-size:9px; font-weight:850; letter-spacing:.18em; }
.creator-hero-board-head i { color:#fff; }
.creator-hero-board-grid { display:grid; grid-template-columns:repeat(2,1fr); }
.creator-hero-board-grid article { min-height:150px; display:grid; align-content:center; gap:7px; padding:27px; border-right:1px solid var(--line); border-bottom:1px solid var(--line); }
.creator-hero-board-grid article:nth-child(2n) { border-right:0; }
.creator-hero-board-grid article:nth-last-child(-n+2) { border-bottom:0; }
.creator-hero-board-grid strong { font-size:clamp(30px,4vw,50px); letter-spacing:-.055em; }
.creator-hero-board-grid span { color:#777; font-size:9px; font-weight:750; letter-spacing:.12em; text-transform:uppercase; }
.creator-hero-board-foot { display:flex; align-items:center; gap:11px; padding:18px 24px; border-top:1px solid var(--line); color:#9a9a9a; font-size:10px; }
.creator-explainer { border-block:1px solid var(--line); background:rgba(255,255,255,.012); }
.creator-explainer-grid { display:grid; grid-template-columns:repeat(3,1fr); }
.creator-explainer article { display:grid; grid-template-columns:45px 1fr; align-items:center; gap:15px; min-height:110px; padding:22px 30px; border-right:1px solid var(--line); }
.creator-explainer article:last-child { border-right:0; }
.creator-explainer article>span { color:#555; font-size:10px; font-weight:850; }
.creator-explainer article>div { display:grid; gap:6px; }
.creator-explainer b { font-size:13px; }
.creator-explainer small { color:#777; font-size:10px; line-height:1.5; }
.creator-showcase { background:linear-gradient(180deg,#050505,#080808); }
.creator-showcase-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:20px; }
.creator-profile-card { min-width:0; overflow:hidden; border:1px solid rgba(255,255,255,.105); border-radius:24px; background:linear-gradient(150deg,rgba(255,255,255,.04),rgba(255,255,255,.012)); transition:transform .35s var(--ease),border-color .35s ease,box-shadow .35s ease; }
.creator-profile-card:hover { transform:translateY(-7px); border-color:rgba(255,255,255,.22); box-shadow:0 30px 80px rgba(0,0,0,.34); }
.creator-profile-card.is-featured { border-color:rgba(214,162,109,.42); box-shadow:inset 0 0 50px rgba(214,162,109,.035); }
.creator-profile-media { position:relative; min-height:340px; overflow:hidden; }
.creator-profile-media>img { width:100%; height:100%; position:absolute; inset:0; object-fit:cover; transition:transform .6s var(--ease); }
.creator-profile-card:hover .creator-profile-media>img { transform:scale(1.04); }
.creator-profile-shade { position:absolute; inset:0; background:linear-gradient(180deg,rgba(0,0,0,.05) 25%,rgba(0,0,0,.88) 100%); }
.creator-profile-number { position:absolute; top:20px; right:22px; color:rgba(255,255,255,.65); font-size:10px; font-weight:850; letter-spacing:.15em; }
.creator-featured { position:absolute; top:18px; left:18px; display:inline-flex; align-items:center; gap:8px; padding:9px 11px; border:1px solid rgba(255,255,255,.23); border-radius:50px; color:#fff; background:rgba(5,5,5,.72); backdrop-filter:blur(12px); font-size:8px; font-weight:850; letter-spacing:.12em; }
.creator-profile-overlay { position:absolute; inset:auto 25px 24px; }
.creator-profile-overlay>span { color:#aaa; font-size:8px; font-weight:850; letter-spacing:.17em; }
.creator-profile-overlay h3 { margin:7px 0 4px; font-size:clamp(31px,4vw,49px); line-height:.95; }
.creator-profile-overlay small { color:#aaa; font-size:11px; }
.creator-profile-content { padding:25px; }
.creator-profile-topline { display:flex; align-items:flex-start; justify-content:space-between; gap:20px; padding-bottom:20px; border-bottom:1px solid var(--line); }
.creator-profile-topline>span { display:inline-flex; align-items:center; gap:8px; color:#777; font-size:8px; font-weight:850; letter-spacing:.14em; }
.creator-profile-topline>strong { display:grid; gap:2px; text-align:right; font-size:28px; letter-spacing:-.04em; }
.creator-profile-topline strong small { color:#666; font-size:7px; letter-spacing:.14em; text-transform:uppercase; }
.creator-profile-content>p { min-height:70px; margin:22px 0; color:#aaa; line-height:1.7; }
.creator-format-line { display:flex; align-items:center; gap:10px; padding:13px 14px; border:1px solid var(--line); border-radius:11px; color:#aaa; background:rgba(255,255,255,.018); font-size:10px; }
.creator-format-line i { color:#fff; }
.creator-social-row { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:8px; margin-top:13px; }
.creator-social-row a { display:grid; grid-template-columns:18px 1fr auto; align-items:center; gap:9px; min-height:44px; padding:0 12px; border:1px solid var(--line); border-radius:10px; color:#aaa; font-size:10px; font-weight:720; transition:.2s ease; }
.creator-social-row a:hover { color:#050505; border-color:#fff; background:#fff; }
.creator-social-row a i:last-child { font-size:8px; }
.creator-no-links { grid-column:1/-1; padding:14px; color:#666; border:1px dashed var(--line); border-radius:10px; text-align:center; font-size:9px; }

.event-hero { min-height:720px; display:grid; align-items:center; padding-top:calc(var(--header-h) + 75px); background:radial-gradient(circle at 80% 25%,rgba(255,255,255,.075),transparent 25%),#050505; }
.event-hero-grid { display:grid; grid-template-columns:minmax(0,1.1fr) minmax(330px,.65fr); align-items:center; gap:clamp(45px,8vw,130px); }
.event-hero h1 { max-width:900px; font-size:clamp(58px,7.2vw,118px); line-height:.88; letter-spacing:-.07em; }
.event-hero p { max-width:730px; font-size:16px; line-height:1.75; }
.event-hero-calendar { position:relative; display:grid; align-content:center; min-height:430px; padding:42px; overflow:hidden; border:1px solid rgba(255,255,255,.16); border-radius:28px; background:linear-gradient(145deg,rgba(255,255,255,.065),rgba(255,255,255,.012)); box-shadow:0 35px 100px rgba(0,0,0,.4); }
.event-hero-calendar::before { position:absolute; inset:0; content:""; opacity:.45; background-image:linear-gradient(rgba(255,255,255,.04) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.04) 1px,transparent 1px); background-size:36px 36px; mask-image:linear-gradient(135deg,#000,transparent 75%); }
.event-hero-calendar>* { position:relative; z-index:1; }
.event-calendar-label { color:#777; font-size:9px; font-weight:850; letter-spacing:.2em; }
.event-hero-calendar>strong { margin-top:36px; font-size:clamp(100px,12vw,180px); line-height:.75; letter-spacing:-.08em; }
.event-hero-calendar>b { margin-top:18px; font-size:18px; }
.event-hero-calendar>div { display:flex; align-items:center; gap:10px; margin-top:70px; color:#888; font-size:10px; }
.event-info-strip { border-block:1px solid var(--line); background:#080808; }
.event-info-strip>.shell { display:flex; justify-content:space-between; gap:25px; padding-block:20px; color:#777; font-size:9px; }
.event-info-strip span { display:flex; align-items:center; gap:9px; }
.event-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:18px; }
.event-card { overflow:hidden; border:1px solid rgba(255,255,255,.105); border-radius:23px; background:linear-gradient(155deg,rgba(255,255,255,.04),rgba(255,255,255,.012)); transition:transform .35s var(--ease),border-color .35s ease,box-shadow .35s ease; }
.event-card:hover { transform:translateY(-7px); border-color:rgba(255,255,255,.22); box-shadow:0 30px 80px rgba(0,0,0,.36); }
.event-state-past { opacity:.72; }
.event-card-top { position:relative; display:grid; grid-template-columns:1fr auto; align-items:end; min-height:240px; padding:22px; overflow:hidden; border-bottom:1px solid var(--line); }
.event-logo { position:absolute; inset:0; display:grid; place-items:center; background:radial-gradient(circle at center,rgba(255,255,255,.09),transparent 55%),#090909; }
.event-logo::after { position:absolute; inset:0; content:""; background:linear-gradient(180deg,transparent 35%,rgba(0,0,0,.85)); }
.event-logo img { position:relative; z-index:1; width:55%; max-width:180px; aspect-ratio:1; object-fit:cover; border:1px solid rgba(255,255,255,.16); border-radius:24px; box-shadow:0 24px 60px rgba(0,0,0,.45); }
.event-date-block { position:relative; z-index:2; display:grid; width:68px; height:77px; place-items:center; align-content:center; border:1px solid rgba(255,255,255,.23); border-radius:14px; background:rgba(5,5,5,.78); backdrop-filter:blur(14px); }
.event-date-block span { font-size:28px; font-weight:850; line-height:1; }
.event-date-block b { margin-top:4px; color:#888; font-size:8px; letter-spacing:.13em; }
.event-state { position:relative; z-index:2; justify-self:end; display:flex; align-items:center; gap:7px; padding:8px 10px; border:1px solid rgba(255,255,255,.18); border-radius:40px; color:#ddd; background:rgba(5,5,5,.72); backdrop-filter:blur(12px); font-size:8px; font-weight:750; }
.event-state i { color:#9be2a0; font-size:6px; }
.event-state-past .event-state i { color:#777; }
.event-card-body { padding:26px; }
.event-type { display:inline-flex; align-items:center; gap:8px; color:#777; font-size:8px; font-weight:850; letter-spacing:.14em; text-transform:uppercase; }
.event-card h3 { margin:12px 0 18px; font-size:31px; line-height:1.05; }
.event-organizer { display:grid; gap:5px; padding:14px 0; border-block:1px solid var(--line); }
.event-organizer small { color:#666; font-size:7px; letter-spacing:.15em; }
.event-organizer strong { font-size:13px; }
.event-card-body>p { min-height:74px; margin:20px 0; color:#9a9a9a; line-height:1.68; }
.event-details { display:grid; gap:0; margin:0; }
.event-details>div { display:flex; align-items:center; justify-content:space-between; gap:16px; padding:11px 0; border-bottom:1px solid var(--line); }
.event-details dt { color:#707070; font-size:9px; }
.event-details dt i { width:18px; }
.event-details dd { margin:0; color:#c5c5c5; font-size:9px; text-align:right; }
.event-link { display:flex; align-items:center; justify-content:space-between; gap:15px; min-height:50px; margin-top:21px; padding:0 15px; border:1px solid var(--line); border-radius:11px; color:#ddd; font-size:10px; font-weight:750; transition:.2s ease; }
.event-link span { display:flex; align-items:center; gap:9px; }
.event-link:hover { color:#050505; border-color:#fff; background:#fff; }
.event-link.is-disabled { color:#666; pointer-events:none; }
.event-cta { padding-top:0; }
.home-event-preview { background:#070707; border-top:1px solid var(--line); }
.home-event-row { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:13px; }
.home-event-card { position:relative; display:grid; grid-template-columns:78px 1fr auto; align-items:center; gap:16px; min-height:120px; padding:16px; overflow:hidden; border:1px solid var(--line); border-radius:17px; background:rgba(255,255,255,.018); transition:.25s ease; }
.home-event-card:hover { transform:translateY(-4px); border-color:var(--line-strong); background:rgba(255,255,255,.04); }
.home-event-card>img { width:78px; height:78px; object-fit:cover; border-radius:13px; }
.home-event-card>div { min-width:0; }
.home-event-card small { color:#777; font-size:8px; }
.home-event-card h3 { margin:7px 0 4px; overflow:hidden; font-size:17px; text-overflow:ellipsis; white-space:nowrap; }
.home-event-card p { margin:0; color:#858585; font-size:9px; }
.home-event-card>i { color:#777; }
.home-event-state { position:absolute; top:8px; right:9px; padding:4px 7px; border-radius:20px; color:#aaa; background:#111; font-size:7px; }
.home-event-more { display:flex; justify-content:center; margin-top:27px; }

/* Dashboard V5 */
.admin-v5 { --admin-accent:#d6a26d; }
.admin-v5 .admin-content { width:min(1500px,calc(100% - clamp(38px,5vw,82px))); }
.admin-v5 .admin-page-heading { padding:32px 0 12px; border-bottom:1px solid rgba(255,255,255,.08); }
.admin-v5 .admin-page-heading h1 { font-size:clamp(52px,5.1vw,82px); }
.admin-v5 .admin-network-summary { grid-template-columns:repeat(3,minmax(0,1fr)); margin-top:-28px; }
.admin-directory-kpis { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:12px; margin:0 0 34px; }
.admin-directory-kpis article { display:flex; align-items:center; gap:15px; min-height:105px; padding:20px; border:1px solid rgba(255,255,255,.09); border-radius:17px; background:rgba(255,255,255,.02); }
.admin-directory-kpis article>i { display:grid; width:48px; height:48px; place-items:center; border:1px solid rgba(255,255,255,.12); border-radius:13px; color:#aaa; }
.admin-directory-kpis article>span { display:grid; gap:6px; }
.admin-directory-kpis small { color:#626262; font-size:7px; font-weight:850; letter-spacing:.14em; }
.admin-directory-kpis strong { font-size:23px; }
.admin-v5 .admin-directory-add { border-color:rgba(255,255,255,.12); background:linear-gradient(145deg,rgba(255,255,255,.045),rgba(255,255,255,.013)); }
.admin-v5 .panel-head p { max-width:600px; margin:8px 0 0; color:#6f6f6f; font-size:9px; line-height:1.55; }
.admin-image-placeholder { align-content:center; gap:10px; }
.admin-image-placeholder small { color:#606060; font-size:8px; }
.admin-event-placeholder { aspect-ratio:1; }
.admin-form-bottom-v5 { grid-template-columns:120px repeat(2,minmax(180px,1fr)) auto; }
.admin-event-add .admin-form-bottom-v5 { grid-template-columns:120px 1fr auto; }
.field-grid-three { grid-template-columns:repeat(3,minmax(0,1fr)); }
details.admin-directory-editor>summary { list-style:none; cursor:pointer; }
details.admin-directory-editor>summary::-webkit-details-marker { display:none; }
.admin-directory-editor[open] { border-color:rgba(255,255,255,.18); box-shadow:0 24px 70px rgba(0,0,0,.22); }
.admin-directory-editor[open] .admin-directory-preview { background:rgba(255,255,255,.025); }
.admin-edit-hint { position:absolute; right:22px; bottom:16px; display:inline-flex; align-items:center; gap:7px; color:#777; font-size:8px; }
.admin-directory-editor[open] .admin-edit-hint { color:#fff; }
.admin-directory-editor[open] .admin-edit-hint i::before { content:"\f00d"; }
.admin-event-preview>img { object-fit:contain; padding:10px; background:#111; }
.admin-event-editor .admin-directory-metric strong { font-size:24px; }

@media (max-width:1250px){
    .event-grid{grid-template-columns:repeat(2,minmax(0,1fr));}
    .home-event-row{grid-template-columns:1fr;}
    .admin-v5 .admin-network-summary{grid-template-columns:1fr;}
    .admin-form-bottom-v5{grid-template-columns:1fr 1fr;}
    .admin-form-bottom-v5 .button{width:100%;}
}
@media (max-width:1000px){
    .creator-showcase-grid,.event-hero-grid{grid-template-columns:1fr;}
    .creator-hero-board{max-width:680px;}
    .event-hero{min-height:auto;}
    .event-hero-calendar{max-width:620px;min-height:360px;}
    .creator-explainer-grid{grid-template-columns:1fr;}
    .creator-explainer article{border-right:0;border-bottom:1px solid var(--line);}
    .creator-explainer article:last-child{border-bottom:0;}
    .admin-directory-kpis{grid-template-columns:1fr;}
}
@media (max-width:760px){
    .creator-hero-board-grid{grid-template-columns:1fr 1fr;}
    .creator-hero-board-grid article{min-height:115px;padding:20px;}
    .creator-profile-media{min-height:300px;}
    .creator-social-row{grid-template-columns:1fr;}
    .event-grid{grid-template-columns:1fr;}
    .event-hero-calendar{min-height:310px;padding:28px;}
    .event-hero-calendar>div{margin-top:45px;}
    .event-info-strip>.shell{align-items:flex-start;flex-direction:column;}
    .home-event-card{grid-template-columns:64px 1fr auto;}
    .home-event-card>img{width:64px;height:64px;}
    .field-grid-three{grid-template-columns:1fr;}
    .admin-form-bottom-v5,.admin-event-add .admin-form-bottom-v5{grid-template-columns:1fr;}
    .admin-v5 .admin-page-heading{padding-top:10px;}
    .admin-edit-hint{position:static;grid-column:1/-1;margin-top:4px;}
}

/* ============================================================
   V6 · ROUND IDENTITY SYSTEM
   Compact circular logos for creators, moderation and events
   ============================================================ */
.creator-showcase-v6,
.moderation-directory-v6,
.event-section-v6 {
    position: relative;
    overflow: hidden;
}
.creator-showcase-v6::before,
.moderation-directory-v6::before,
.event-section-v6::before {
    position: absolute;
    top: 90px;
    left: 50%;
    width: min(1050px, 86vw);
    height: 430px;
    content: "";
    transform: translateX(-50%);
    border: 1px solid rgba(255,255,255,.025);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,.028), transparent 66%);
    filter: blur(.2px);
    pointer-events: none;
}
.creator-showcase-v6 > .shell,
.moderation-directory-v6 > .shell,
.event-section-v6 > .shell { position: relative; z-index: 1; }

/* Creator cards */
.creator-orbit-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}
.orbit-card {
    position: relative;
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.105);
    border-radius: 28px;
    background:
        radial-gradient(circle at 15% 5%, rgba(255,255,255,.07), transparent 27%),
        linear-gradient(145deg, rgba(255,255,255,.035), rgba(255,255,255,.009));
    box-shadow: 0 24px 65px rgba(0,0,0,.22);
    transition: transform .35s var(--ease), border-color .35s ease, box-shadow .35s ease;
}
.orbit-card::after {
    position: absolute;
    right: -120px;
    bottom: -170px;
    width: 360px;
    height: 360px;
    content: "";
    border: 1px solid rgba(255,255,255,.035);
    border-radius: 50%;
    box-shadow: 0 0 0 42px rgba(255,255,255,.006), 0 0 0 84px rgba(255,255,255,.004);
    pointer-events: none;
}
.orbit-card:hover {
    transform: translateY(-7px);
    border-color: rgba(255,255,255,.23);
    box-shadow: 0 35px 90px rgba(0,0,0,.42);
}
.orbit-card.is-featured { border-color: rgba(214,162,109,.38); }
.orbit-card-rail {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    padding: 22px 0;
    border-right: 1px solid rgba(255,255,255,.075);
    color: #5f5f5f;
    background: rgba(0,0,0,.2);
}
.orbit-card-rail span {
    font-size: 9px;
    font-weight: 850;
    letter-spacing: .16em;
    writing-mode: vertical-rl;
}
.orbit-card-rail i { font-size: 11px; }
.orbit-card-main { position: relative; z-index: 2; min-width: 0; padding: 28px; }
.orbit-identity {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr) auto;
    align-items: center;
    gap: 22px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255,255,255,.075);
}
.orbit-avatar-wrap {
    position: relative;
    width: 112px;
    height: 112px;
    display: grid;
    place-items: center;
}
.orbit-avatar-ring {
    position: absolute;
    inset: -7px;
    border: 1px solid rgba(255,255,255,.17);
    border-radius: 50%;
    background: conic-gradient(from 130deg, transparent, rgba(255,255,255,.22), transparent 30%, transparent 72%, rgba(255,255,255,.12));
    transition: transform .7s var(--ease), border-color .3s ease;
}
.orbit-card:hover .orbit-avatar-ring { transform: rotate(25deg); border-color: rgba(255,255,255,.3); }
.orbit-card.is-featured .orbit-avatar-ring { border-color: rgba(214,162,109,.5); }
.orbit-avatar {
    position: relative;
    z-index: 1;
    width: 98px;
    height: 98px;
    object-fit: cover;
    border: 4px solid #090909;
    border-radius: 50%;
    background: #111;
    box-shadow: 0 14px 40px rgba(0,0,0,.45);
}
.orbit-avatar-status {
    position: absolute;
    z-index: 3;
    right: 3px;
    bottom: 7px;
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    border: 4px solid #090909;
    border-radius: 50%;
    color: #060606;
    background: #f2f2f2;
    font-size: 8px;
}
.orbit-name { min-width: 0; }
.orbit-name > span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #777;
    font-size: 8px;
    font-weight: 850;
    letter-spacing: .16em;
    text-transform: uppercase;
}
.orbit-name h3 {
    margin: 7px 0 5px;
    overflow: hidden;
    font-size: clamp(29px, 3vw, 46px);
    line-height: .95;
    letter-spacing: -.055em;
    text-overflow: ellipsis;
}
.orbit-name small { color: #8c8c8c; font-size: 10px; }
.orbit-featured {
    align-self: start;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 10px;
    border: 1px solid rgba(214,162,109,.38);
    border-radius: 30px;
    color: #d6a26d;
    background: rgba(214,162,109,.06);
    font-size: 7px;
    font-weight: 850;
    letter-spacing: .13em;
}
.orbit-stats {
    display: grid;
    grid-template-columns: 1.25fr .75fr 1fr;
    margin-top: 18px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.075);
    border-radius: 15px;
    background: rgba(255,255,255,.012);
}
.orbit-stats > div {
    display: grid;
    align-content: center;
    min-height: 92px;
    padding: 15px 18px;
    border-right: 1px solid rgba(255,255,255,.07);
}
.orbit-stats > div:last-child { border-right: 0; }
.orbit-stats small { color: #5f5f5f; font-size: 7px; font-weight: 850; letter-spacing: .14em; }
.orbit-stats strong { margin: 7px 0 3px; font-size: 22px; letter-spacing: -.035em; }
.orbit-stats strong i { color: #9bdd9f; font-size: 6px; vertical-align: middle; }
.orbit-stats span { color: #808080; font-size: 8px; }
.orbit-description { min-height: 67px; margin: 22px 0 18px; color: #aaa; line-height: 1.72; }
.orbit-format {
    display: flex;
    align-items: center;
    gap: 11px;
    min-height: 44px;
    padding: 0 14px;
    border: 1px solid rgba(255,255,255,.075);
    border-radius: 11px;
    color: #9b9b9b;
    background: rgba(255,255,255,.014);
    font-size: 9px;
}
.orbit-format i { color: #eee; }
.orbit-socials { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; margin-top: 10px; }
.orbit-socials a {
    display: grid;
    grid-template-columns: 18px 1fr auto;
    align-items: center;
    gap: 9px;
    min-height: 46px;
    padding: 0 13px;
    border: 1px solid rgba(255,255,255,.085);
    border-radius: 11px;
    color: #aaa;
    background: rgba(255,255,255,.012);
    font-size: 10px;
    font-weight: 720;
    transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
}
.orbit-socials a:hover { transform: translateY(-2px); color: #050505; border-color: #fff; background: #fff; }
.orbit-socials a i:last-child { color: #666; font-size: 7px; }
.orbit-socials a:hover i:last-child { color: #050505; }

/* Moderation cards */
.moderation-orbit-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.moderation-orbit-card {
    position: relative;
    min-width: 0;
    padding: 25px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 26px;
    background:
        radial-gradient(circle at 50% 0%, rgba(255,255,255,.065), transparent 36%),
        linear-gradient(160deg, rgba(255,255,255,.032), rgba(255,255,255,.008));
    box-shadow: 0 22px 60px rgba(0,0,0,.22);
    transition: transform .35s var(--ease), border-color .35s ease, box-shadow .35s ease;
}
.moderation-orbit-card::after {
    position: absolute;
    right: -80px;
    bottom: -100px;
    width: 230px;
    height: 230px;
    content: "";
    border: 1px solid rgba(255,255,255,.03);
    border-radius: 50%;
    pointer-events: none;
}
.moderation-orbit-card:hover { transform: translateY(-7px); border-color: rgba(255,255,255,.22); box-shadow: 0 32px 80px rgba(0,0,0,.38); }
.moderation-orbit-top { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; }
.moderation-index { color: #555; font-size: 8px; font-weight: 850; letter-spacing: .16em; }
.moderation-live { display: inline-flex; align-items: center; gap: 7px; color: #777; font-size: 7px; font-weight: 850; letter-spacing: .13em; }
.moderation-live i { color: #9bdd9f; font-size: 6px; }
.moderation-orbit-avatar {
    position: relative;
    z-index: 2;
    display: grid;
    width: 116px;
    height: 116px;
    margin: 24px auto 22px;
    place-items: center;
}
.moderation-orbit-avatar > span {
    position: absolute;
    inset: -7px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 50%;
    background: conic-gradient(from 90deg, transparent, rgba(255,255,255,.19), transparent 38%, transparent);
    transition: transform .7s var(--ease);
}
.moderation-orbit-card:hover .moderation-orbit-avatar > span { transform: rotate(30deg); }
.moderation-orbit-avatar img {
    position: relative;
    z-index: 1;
    width: 102px;
    height: 102px;
    object-fit: cover;
    border: 4px solid #090909;
    border-radius: 50%;
    background: #111;
    box-shadow: 0 16px 40px rgba(0,0,0,.45);
}
.moderation-orbit-avatar > i {
    position: absolute;
    z-index: 3;
    right: 0;
    bottom: 4px;
    display: grid;
    width: 31px;
    height: 31px;
    place-items: center;
    border: 4px solid #090909;
    border-radius: 50%;
    color: #070707;
    background: #f1f1f1;
    font-size: 9px;
}
.moderation-orbit-name { position: relative; z-index: 2; text-align: center; }
.moderation-orbit-name > span { color: #6d6d6d; font-size: 7px; font-weight: 850; letter-spacing: .16em; text-transform: uppercase; }
.moderation-orbit-name h3 { margin: 8px 0 4px; font-size: clamp(28px, 2.4vw, 38px); line-height: 1; letter-spacing: -.05em; }
.moderation-orbit-name small { color: #888; font-size: 10px; }
.moderation-orbit-metrics {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.3fr .7fr;
    margin-top: 23px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.075);
    border-radius: 14px;
}
.moderation-orbit-metrics > div { display: grid; gap: 3px; min-height: 78px; align-content: center; padding: 14px 16px; border-right: 1px solid rgba(255,255,255,.07); }
.moderation-orbit-metrics > div:last-child { border-right: 0; }
.moderation-orbit-metrics strong { font-size: 21px; letter-spacing: -.04em; }
.moderation-orbit-metrics span { color: #666; font-size: 7px; letter-spacing: .13em; text-transform: uppercase; }
.moderation-orbit-badges { position: relative; z-index: 2; display: flex; flex-wrap: wrap; justify-content: center; gap: 7px; margin-top: 15px; }
.moderation-orbit-badges span { display: inline-flex; align-items: center; gap: 7px; padding: 8px 10px; border: 1px solid rgba(255,255,255,.08); border-radius: 30px; color: #aaa; background: rgba(255,255,255,.012); font-size: 8px; font-weight: 720; }
.moderation-orbit-card > p { position: relative; z-index: 2; min-height: 66px; margin: 19px 0; color: #999; text-align: center; line-height: 1.65; }
.moderation-orbit-links { position: relative; z-index: 2; display: grid; gap: 8px; }
.moderation-orbit-links a { display: grid; grid-template-columns: 18px 1fr auto; align-items: center; gap: 9px; min-height: 45px; padding: 0 13px; border: 1px solid rgba(255,255,255,.085); border-radius: 11px; color: #aaa; font-size: 9px; font-weight: 750; transition: .2s ease; }
.moderation-orbit-links a:hover { color: #050505; border-color: #fff; background: #fff; }
.moderation-orbit-links a i:last-child { font-size: 7px; }

/* Event cards */
.event-orbit-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.event-orbit-card {
    position: relative;
    min-width: 0;
    padding: 25px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 26px;
    background:
        radial-gradient(circle at 12% 0%, rgba(255,255,255,.065), transparent 30%),
        linear-gradient(150deg, rgba(255,255,255,.035), rgba(255,255,255,.009));
    box-shadow: 0 24px 65px rgba(0,0,0,.22);
    transition: transform .35s var(--ease), border-color .35s ease, box-shadow .35s ease;
}
.event-orbit-card::after {
    position: absolute;
    right: -130px;
    bottom: -160px;
    width: 340px;
    height: 340px;
    content: "";
    border: 1px solid rgba(255,255,255,.035);
    border-radius: 50%;
    box-shadow: 0 0 0 45px rgba(255,255,255,.005);
    pointer-events: none;
}
.event-orbit-card:hover { transform: translateY(-7px); border-color: rgba(255,255,255,.22); box-shadow: 0 34px 86px rgba(0,0,0,.4); }
.event-orbit-head { position: relative; z-index: 2; display: grid; grid-template-columns: 104px minmax(0, 1fr) 70px; align-items: center; gap: 20px; padding-bottom: 23px; border-bottom: 1px solid rgba(255,255,255,.075); }
.event-orbit-logo { position: relative; display: grid; width: 104px; height: 104px; place-items: center; }
.event-orbit-logo > span { position: absolute; inset: -7px; border: 1px solid rgba(255,255,255,.16); border-radius: 50%; background: conic-gradient(from 120deg, transparent, rgba(255,255,255,.18), transparent 38%, transparent); transition: transform .7s var(--ease); }
.event-orbit-card:hover .event-orbit-logo > span { transform: rotate(28deg); }
.event-orbit-logo img { position: relative; z-index: 1; width: 92px; height: 92px; padding: 9px; object-fit: contain; border: 4px solid #090909; border-radius: 50%; background: #111; box-shadow: 0 16px 40px rgba(0,0,0,.45); }
.event-orbit-title { min-width: 0; }
.event-orbit-title .event-type { max-width: 100%; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.event-orbit-title h3 { margin: 8px 0 5px; overflow-wrap: anywhere; font-size: clamp(26px, 2.6vw, 40px); line-height: .98; letter-spacing: -.05em; }
.event-orbit-title small { color: #8b8b8b; font-size: 9px; }
.event-orbit-date { display: grid; width: 70px; height: 78px; place-items: center; align-content: center; border: 1px solid rgba(255,255,255,.14); border-radius: 15px; background: rgba(255,255,255,.025); }
.event-orbit-date span { font-size: 29px; font-weight: 850; line-height: 1; }
.event-orbit-date b { margin-top: 5px; color: #777; font-size: 8px; letter-spacing: .14em; }
.event-orbit-state { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; padding: 13px 0 0; }
.event-orbit-state span { display: inline-flex; align-items: center; gap: 7px; color: #8a8a8a; font-size: 8px; font-weight: 780; letter-spacing: .11em; text-transform: uppercase; }
.event-orbit-state span i { color: #9bdd9f; font-size: 6px; }
.event-state-past .event-orbit-state span i { color: #777; }
.event-orbit-state em { color: #4f4f4f; font-size: 8px; font-style: normal; font-weight: 850; letter-spacing: .17em; }
.event-orbit-description { position: relative; z-index: 2; min-height: 64px; margin: 19px 0; color: #9d9d9d; line-height: 1.7; }
.event-orbit-details { position: relative; z-index: 2; display: grid; margin: 0; overflow: hidden; border: 1px solid rgba(255,255,255,.075); border-radius: 14px; background: rgba(255,255,255,.01); }
.event-orbit-details > div { display: grid; grid-template-columns: 120px minmax(0, 1fr); align-items: center; gap: 15px; min-height: 46px; padding: 9px 14px; border-bottom: 1px solid rgba(255,255,255,.07); }
.event-orbit-details > div:last-child { border-bottom: 0; }
.event-orbit-details dt { color: #6f6f6f; font-size: 8px; }
.event-orbit-details dt i { width: 18px; }
.event-orbit-details dd { margin: 0; color: #c2c2c2; font-size: 9px; text-align: right; overflow-wrap: anywhere; }
.event-orbit-link { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 15px; min-height: 49px; margin-top: 13px; padding: 0 15px; border: 1px solid rgba(255,255,255,.09); border-radius: 11px; color: #ddd; font-size: 9px; font-weight: 750; transition: .2s ease; }
.event-orbit-link span { display: flex; align-items: center; gap: 9px; }
.event-orbit-link:hover { color: #050505; border-color: #fff; background: #fff; }
.event-orbit-link.is-disabled { color: #666; pointer-events: none; }

/* Smaller circular event logos on the home page */
.home-event-card > img {
    padding: 6px;
    object-fit: contain;
    border: 1px solid rgba(255,255,255,.11);
    border-radius: 50%;
    background: #111;
}

/* Dashboard: the uploaded assets are logos/profile images, not cover photos. */
.admin-v5 .admin-image-placeholder {
    justify-self: center;
    width: min(100%, 210px);
    border-radius: 50%;
    background: radial-gradient(circle at 35% 25%, rgba(255,255,255,.07), rgba(255,255,255,.012));
    box-shadow: inset 0 0 0 9px rgba(0,0,0,.2);
}
.admin-v5 .admin-image-placeholder::after {
    position: absolute;
    inset: 10px;
    content: "";
    border: 1px solid rgba(255,255,255,.05);
    border-radius: 50%;
    pointer-events: none;
}
.admin-v5 .admin-image-placeholder { position: relative; }
.admin-v5 .admin-directory-preview { grid-template-columns: 94px minmax(0,1fr) auto; min-height: 118px; }
.admin-v5 .admin-directory-preview > img {
    width: 94px;
    height: 94px;
    padding: 4px;
    object-fit: cover;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 50%;
    background: #111;
    box-shadow: 0 12px 32px rgba(0,0,0,.35);
}
.admin-v5 .admin-event-preview > img { padding: 10px; object-fit: contain; }
.admin-v5 .admin-directory-editor {
    border-radius: 24px;
    background: radial-gradient(circle at 4% 15%, rgba(255,255,255,.035), transparent 24%), linear-gradient(145deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
}
.admin-v5 .admin-directory-preview h2 { font-size: clamp(24px, 2.2vw, 33px); }
.admin-v5 .admin-directory-add { overflow: hidden; }

@media (max-width: 1250px) {
    .moderation-orbit-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 1000px) {
    .creator-orbit-grid,
    .event-orbit-grid { grid-template-columns: 1fr; }
    .orbit-description,
    .event-orbit-description { min-height: 0; }
}
@media (max-width: 760px) {
    .creator-orbit-grid,
    .moderation-orbit-grid,
    .event-orbit-grid { grid-template-columns: 1fr; }
    .orbit-card { grid-template-columns: 39px minmax(0, 1fr); border-radius: 22px; }
    .orbit-card-rail { padding-block: 18px; }
    .orbit-card-main { padding: 20px 16px; }
    .orbit-identity { grid-template-columns: 84px minmax(0, 1fr); gap: 15px; }
    .orbit-avatar-wrap { width: 84px; height: 84px; }
    .orbit-avatar { width: 74px; height: 74px; }
    .orbit-avatar-status { right: -1px; bottom: 2px; width: 25px; height: 25px; }
    .orbit-featured { grid-column: 1 / -1; justify-self: start; margin-top: -4px; }
    .orbit-name h3 { font-size: 28px; }
    .orbit-stats { grid-template-columns: 1fr 1fr; }
    .orbit-stats > div { min-height: 76px; padding: 12px; }
    .orbit-stats > div:nth-child(2) { border-right: 0; }
    .orbit-stats > div:last-child { grid-column: 1 / -1; border-top: 1px solid rgba(255,255,255,.07); }
    .orbit-socials { grid-template-columns: 1fr; }
    .moderation-orbit-card { padding: 21px 17px; border-radius: 22px; }
    .event-orbit-card { padding: 21px 17px; border-radius: 22px; }
    .event-orbit-head { grid-template-columns: 78px minmax(0, 1fr); gap: 14px; }
    .event-orbit-logo { width: 78px; height: 78px; }
    .event-orbit-logo img { width: 68px; height: 68px; padding: 7px; }
    .event-orbit-date { grid-column: 1 / -1; grid-row: 2; width: 100%; height: auto; min-height: 48px; display: flex; align-items: center; justify-content: center; gap: 8px; }
    .event-orbit-date b { margin: 0; }
    .event-orbit-details > div { grid-template-columns: 92px minmax(0, 1fr); padding-inline: 11px; }
    .admin-v5 .admin-directory-preview { grid-template-columns: 68px minmax(0,1fr); gap: 14px; }
    .admin-v5 .admin-directory-preview > img { width: 68px; height: 68px; }
    .admin-v5 .admin-directory-metric { grid-column: 1 / -1; }
}

/* =========================================================
   P1ERRE5 PROFESSIONAL UI V7
   Compact, horizontal page headers and cleaner reading flow
   ========================================================= */

/* Headings on content pages should read from left to right and wrap naturally. */
body:not(.page-home) h1,
body:not(.page-home) h2 {
    text-wrap: balance;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
}
body:not(.page-home) h1 {
    font-size: clamp(42px, 5vw, 72px);
    line-height: 1.02;
    letter-spacing: -.05em;
}
body:not(.page-home) h2 {
    font-size: clamp(38px, 4.2vw, 62px);
    line-height: 1.02;
    letter-spacing: -.045em;
}
body:not(.page-home) .section-pad { padding-block: clamp(78px, 8vw, 108px); }
body:not(.page-home) .section-head { align-items: end; gap: 44px; }
body:not(.page-home) .section-head > div:first-child { max-width: 760px; }
body:not(.page-home) .section-intro { max-width: 600px; }

/* Compact standard headers (Clips, Stats, Submit, Contact, Legal). */
.page-hero.compact-hero {
    min-height: 500px;
    padding-top: calc(var(--header-h) + 72px);
    padding-bottom: 72px;
    background:
        radial-gradient(circle at 76% 32%, rgba(255,255,255,.07), transparent 25%),
        linear-gradient(180deg, rgba(255,255,255,.018), transparent 70%),
        #050505;
}
.page-hero.compact-hero::after {
    top: auto;
    right: -90px;
    bottom: -220px;
    width: 480px;
    height: 480px;
    opacity: .55;
}
.compact-hero .page-hero-grid {
    grid-template-columns: minmax(0, 1fr) 118px;
    align-items: center;
    gap: clamp(32px, 6vw, 90px);
}
.compact-hero .page-hero-grid > div:first-child { max-width: 960px; }
.compact-hero h1 { max-width: 980px; margin-bottom: 22px; }
.compact-hero p { max-width: 700px; font-size: 16px; line-height: 1.75; }
.compact-hero .page-hero-number {
    position: static;
    display: grid;
    width: 118px;
    height: 118px;
    place-items: center;
    color: #f5f5f5;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 24px;
    background: linear-gradient(145deg, rgba(255,255,255,.06), rgba(255,255,255,.015));
    box-shadow: inset 0 1px rgba(255,255,255,.05), 0 24px 70px rgba(0,0,0,.35);
    font-size: 42px;
    font-weight: 820;
    line-height: 1;
    letter-spacing: -.06em;
}

/* Creator and moderation headers: readable split layout instead of oversized stacked words. */
.directory-hero {
    min-height: 600px;
    padding-top: calc(var(--header-h) + 78px);
    padding-bottom: 78px;
}
.directory-hero-grid {
    grid-template-columns: minmax(0, 1.42fr) minmax(300px, .58fr);
    align-items: center;
    gap: clamp(38px, 6vw, 82px);
}
.directory-hero h1 {
    max-width: 960px;
    margin-bottom: 22px;
    font-size: clamp(44px, 5vw, 72px);
    line-height: 1.01;
    letter-spacing: -.052em;
}
.directory-hero p { max-width: 760px; font-size: 16px; line-height: 1.75; }
.directory-hero .hero-actions { margin-top: 28px; }
.directory-hero-metrics { gap: 10px; }
.directory-hero-metrics article {
    grid-template-columns: 46px minmax(0,1fr);
    gap: 2px 15px;
    min-height: 96px;
    padding: 17px 18px;
    border-radius: 16px;
    background: linear-gradient(145deg, rgba(255,255,255,.04), rgba(255,255,255,.012));
}
.directory-hero-metrics article > i { width: 46px; height: 46px; border-radius: 13px; }
.directory-hero-metrics strong { font-size: clamp(25px, 2.4vw, 36px); }
.directory-hero-metrics span { font-size: 8px; }
.creator-hero-board { min-height: 0; }
.creator-hero-board-grid article { min-height: 104px; }

/* Events receive the same compact horizontal rhythm. */
.event-hero {
    min-height: 600px;
    padding-top: calc(var(--header-h) + 78px);
    padding-bottom: 78px;
}
.event-hero-grid {
    grid-template-columns: minmax(0, 1.42fr) minmax(300px, .58fr);
    gap: clamp(38px, 6vw, 82px);
}
.event-hero h1 {
    max-width: 1000px;
    margin-bottom: 22px;
    font-size: clamp(44px, 5vw, 72px);
    line-height: 1.01;
    letter-spacing: -.052em;
}
.event-hero p { max-width: 760px; font-size: 16px; }
.event-hero-calendar {
    min-height: 300px;
    padding: 30px;
    border-radius: 22px;
}
.event-hero-calendar > strong { margin-top: 24px; font-size: clamp(72px, 8vw, 106px); }
.event-hero-calendar > b { margin-top: 12px; font-size: 15px; }
.event-hero-calendar > div { margin-top: 42px; }

/* About page: keep the portrait, but reduce the wall-sized headline. */
.about-hero-v3 {
    min-height: 690px;
    padding-top: calc(var(--header-h) + 70px);
    padding-bottom: 70px;
}
.about-hero-grid-v3 {
    grid-template-columns: minmax(0, 1.15fr) minmax(330px, .72fr);
    gap: clamp(48px, 7vw, 100px);
}
.about-hero-copy-v3 h1 {
    max-width: 900px;
    margin: 20px 0 24px;
    font-size: clamp(44px, 5vw, 72px);
    line-height: 1.01;
    letter-spacing: -.052em;
}
.about-hero-copy-v3 > p { max-width: 760px; font-size: 16px; }
.about-hero-facts { margin-top: 38px; }
.about-portrait-v3 { max-width: 430px; justify-self: end; }

/* CTA and section titles should stay readable rather than forming vertical word stacks. */
.cta-panel h2,
.section-head h2,
.about-story-aside h2,
.about-platform-copy h2,
.form-info h2 {
    max-width: 820px;
}

@media (max-width: 1080px) {
    .directory-hero-grid,
    .event-hero-grid,
    .about-hero-grid-v3 {
        grid-template-columns: 1fr;
    }
    .directory-hero,
    .event-hero,
    .about-hero-v3 { min-height: auto; }
    .directory-hero-metrics { grid-template-columns: repeat(3, minmax(0,1fr)); }
    .directory-hero-metrics article { grid-template-columns: 1fr; align-content: center; text-align: center; }
    .directory-hero-metrics article > i { grid-row: auto; margin-inline: auto; }
    .creator-hero-board,
    .event-hero-calendar { max-width: 720px; }
    .about-portrait-v3 { width: min(520px, 88%); justify-self: center; }
}

@media (max-width: 760px) {
    body:not(.page-home) .section-pad { padding-block: 70px; }
    body:not(.page-home) h1 { font-size: clamp(38px, 11vw, 56px); }
    body:not(.page-home) h2 { font-size: clamp(34px, 9.5vw, 48px); }
    .page-hero.compact-hero,
    .directory-hero,
    .event-hero,
    .about-hero-v3 {
        padding-top: calc(var(--header-h) + 54px);
        padding-bottom: 58px;
    }
    .compact-hero .page-hero-grid { grid-template-columns: 1fr; gap: 30px; }
    .compact-hero .page-hero-number { width: 78px; height: 78px; border-radius: 18px; font-size: 28px; }
    .directory-hero-metrics { grid-template-columns: 1fr; }
    .directory-hero-metrics article {
        grid-template-columns: 44px minmax(0,1fr);
        min-height: 82px;
        text-align: left;
    }
    .directory-hero-metrics article > i { grid-row: 1 / 3; margin: 0; }
    .event-hero-calendar { min-height: 245px; padding: 24px; }
    .event-hero-calendar > strong { font-size: 72px; }
    .event-hero-calendar > div { margin-top: 28px; }
    .about-portrait-v3 { width: 86%; }
}

/* Final V7 scale pass: strong, but never wall-sized. */
@media (min-width: 1081px) {
    body:not(.page-home) h1,
    .directory-hero h1,
    .event-hero h1,
    .about-hero-copy-v3 h1 { font-size: clamp(44px, 4.6vw, 66px); }
}

/* =========================================================
   P1ERRE5 PROFESSIONAL UI V8
   Unified horizontal subpages, 3-column directories, live status
   ========================================================= */

body:not(.page-home) .section-pad { padding-block: clamp(72px, 7vw, 96px); }
body:not(.page-home) h1 { font-size: clamp(44px, 4.7vw, 68px); line-height: 1.01; letter-spacing: -.052em; }
body:not(.page-home) h2 { font-size: clamp(36px, 3.7vw, 54px); line-height: 1.04; letter-spacing: -.045em; }
body:not(.page-home) h1,
body:not(.page-home) h2 { max-width: 900px; text-wrap: balance; word-break: normal; overflow-wrap: normal; hyphens: none; }

.subpage-hero {
    position: relative;
    min-height: 560px;
    padding-top: calc(var(--header-h) + 72px) !important;
    overflow: hidden;
    border-bottom: 1px solid rgba(255,255,255,.075);
    background:
        radial-gradient(circle at 84% 18%, rgba(255,255,255,.075), transparent 25%),
        radial-gradient(circle at 10% 100%, rgba(255,255,255,.025), transparent 35%),
        linear-gradient(180deg, #050505, #070707);
}
.subpage-hero::before {
    position: absolute;
    right: -160px;
    bottom: -430px;
    width: 760px;
    height: 760px;
    content: "";
    border: 1px solid rgba(255,255,255,.055);
    border-radius: 50%;
    box-shadow: 0 0 0 100px rgba(255,255,255,.008), 0 0 0 210px rgba(255,255,255,.004);
    pointer-events: none;
}
.subpage-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(330px, .62fr);
    align-items: center;
    gap: clamp(50px, 7vw, 105px);
}
.subpage-hero-copy { max-width: 890px; }
.subpage-hero-copy h1 { margin: 24px 0 23px; }
.subpage-hero-copy > p { max-width: 760px; margin: 0; color: #aaa; font-size: 16px; line-height: 1.78; }
.subpage-hero-copy .hero-actions { margin-top: 30px; }

.hero-insight-card,
.hero-profile-card {
    width: 100%;
    max-width: 390px;
    justify-self: end;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 24px;
    background: linear-gradient(145deg, rgba(255,255,255,.06), rgba(255,255,255,.012));
    box-shadow: inset 0 1px rgba(255,255,255,.035), 0 30px 90px rgba(0,0,0,.4);
    backdrop-filter: blur(18px);
}
.hero-insight-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 58px;
    padding: 0 22px;
    border-bottom: 1px solid rgba(255,255,255,.09);
    color: #858585;
    font-size: 8px;
    font-weight: 850;
    letter-spacing: .18em;
}
.hero-insight-head i { color: #f4f4f4; font-size: 12px; }
.hero-insight-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); }
.hero-insight-grid article {
    display: grid;
    min-height: 128px;
    align-content: center;
    gap: 8px;
    padding: 24px;
    border-right: 1px solid rgba(255,255,255,.08);
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.hero-insight-grid article:nth-child(2n) { border-right: 0; }
.hero-insight-grid article:nth-last-child(-n+2) { border-bottom: 0; }
.hero-insight-grid strong { color: #f7f7f7; font-size: clamp(28px, 3vw, 42px); line-height: 1; letter-spacing: -.05em; overflow-wrap: anywhere; }
.hero-insight-grid span { color: #777; font-size: 8px; font-weight: 800; letter-spacing: .12em; line-height: 1.45; text-transform: uppercase; }
.hero-insight-foot,
.hero-profile-foot { display: flex; align-items: center; gap: 10px; min-height: 52px; padding: 0 22px; border-top: 1px solid rgba(255,255,255,.08); color: #858585; font-size: 9px; }
.hero-insight-foot i,
.hero-profile-foot i { color: #eee; }
.hero-live-number { color: #fff !important; }

.hero-profile-top { display: grid; grid-template-columns: 70px minmax(0,1fr); align-items: center; gap: 16px; padding: 22px; border-bottom: 1px solid rgba(255,255,255,.09); }
.hero-profile-top img { width: 70px; height: 70px; border-radius: 50%; object-fit: cover; }
.hero-profile-top span { display: grid; gap: 4px; min-width: 0; }
.hero-profile-top small { color: #777; font-size: 7px; font-weight: 850; letter-spacing: .15em; }
.hero-profile-top strong { font-size: 25px; letter-spacing: -.035em; }
.hero-profile-top em { color: #999; font-size: 10px; font-style: normal; }
.hero-profile-stats { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); }
.hero-profile-stats article { display: grid; min-height: 105px; align-content: center; gap: 7px; padding: 20px 22px; border-right: 1px solid rgba(255,255,255,.08); border-bottom: 1px solid rgba(255,255,255,.08); }
.hero-profile-stats article:nth-child(2n) { border-right: 0; }
.hero-profile-stats article:nth-last-child(-n+2) { border-bottom: 0; }
.hero-profile-stats strong { font-size: 28px; letter-spacing: -.045em; }
.hero-profile-stats span { color: #747474; font-size: 8px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }

.creator-explainer-v8 { background: #070707; }
.creator-showcase-v8,
.moderation-directory-v8,
.event-section-v8 { background: linear-gradient(180deg,#050505,#080808); }

.creator-grid-v8,
.moderation-grid-v8,
.event-grid-v8 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}
.creator-grid-v8 .directory-empty,
.moderation-grid-v8 .directory-empty,
.event-grid-v8 .directory-empty { grid-column: 1 / -1; }

.creator-card-v8,
.moderation-card-v8,
.event-card-v8 {
    position: relative;
    min-width: 0;
    overflow: hidden;
    padding: 23px;
    border: 1px solid rgba(255,255,255,.105);
    border-radius: 22px;
    background:
        radial-gradient(circle at 95% 0%, rgba(255,255,255,.055), transparent 27%),
        linear-gradient(150deg, rgba(255,255,255,.034), rgba(255,255,255,.008));
    box-shadow: 0 20px 55px rgba(0,0,0,.22);
    transition: transform .32s var(--ease), border-color .32s ease, box-shadow .32s ease;
}
.creator-card-v8::after,
.moderation-card-v8::after,
.event-card-v8::after {
    position: absolute;
    right: -95px;
    bottom: -120px;
    width: 230px;
    height: 230px;
    content: "";
    border: 1px solid rgba(255,255,255,.025);
    border-radius: 50%;
    pointer-events: none;
}
.creator-card-v8:hover,
.moderation-card-v8:hover,
.event-card-v8:hover { transform: translateY(-6px); border-color: rgba(255,255,255,.22); box-shadow: 0 30px 80px rgba(0,0,0,.38); }
.creator-card-v8.is-featured { border-color: rgba(214,162,109,.34); box-shadow: inset 0 1px rgba(214,162,109,.14), 0 24px 70px rgba(0,0,0,.28); }
.creator-card-v8.is-featured::before { position:absolute; top:0; left:22px; right:22px; height:2px; content:""; background:linear-gradient(90deg,transparent,#d6a26d,transparent); }

.creator-card-header,
.moderation-card-v8 > header,
.event-card-v8 > header {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 68px minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
    padding-bottom: 19px;
    border-bottom: 1px solid rgba(255,255,255,.075);
}
.creator-logo-v8,
.directory-logo-v8 {
    width: 68px;
    height: 68px;
    display: block;
    object-fit: cover;
    border: 0;
    border-radius: 50%;
    background: #111;
    box-shadow: 0 12px 30px rgba(0,0,0,.38);
}
.event-logo-v8 { padding: 5px; object-fit: contain; }
.creator-card-identity,
.moderation-card-v8 > header > div,
.event-card-v8 > header > div { min-width: 0; }
.creator-card-identity > span,
.moderation-card-v8 > header > div > span,
.event-card-v8 > header > div > span { display: block; max-width: 100%; overflow: hidden; color: #696969; font-size: 7px; font-weight: 850; letter-spacing: .15em; text-overflow: ellipsis; text-transform: uppercase; white-space: nowrap; }
.creator-card-identity h3,
.moderation-card-v8 h3,
.event-card-v8 h3 { margin: 7px 0 4px; overflow: hidden; font-size: clamp(23px, 2vw, 31px); line-height: 1; letter-spacing: -.047em; text-overflow: ellipsis; white-space: nowrap; }
.creator-card-identity small,
.moderation-card-v8 header small,
.event-card-v8 header small { display:block; max-width:100%; overflow:hidden; color:#858585; font-size:9px; text-overflow:ellipsis; white-space:nowrap; }

.stream-status,
.event-status-v8,
.admin-live-preview {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 27px;
    padding: 0 9px;
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 30px;
    color: #777;
    background: rgba(255,255,255,.018);
    font-size: 7px;
    font-weight: 850;
    letter-spacing: .11em;
    text-transform: uppercase;
    white-space: nowrap;
}
.stream-status i,
.event-status-v8 i,
.admin-live-preview i { font-size: 5px; }
.stream-status-live,
.admin-live-preview.is-live { color: #ff6d6d; border-color: rgba(255,81,81,.3); background: rgba(255,67,67,.07); }
.stream-status-live i,
.admin-live-preview.is-live i { color: #ff4e4e; box-shadow: 0 0 10px rgba(255,60,60,.9); animation: livePulse 1.6s ease-in-out infinite; }
.stream-status-offline i { color: #606060; }
@keyframes livePulse { 50% { opacity: .35; transform: scale(.7); } }

.creator-card-metrics,
.directory-compact-metrics {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    margin-top: 17px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 13px;
    background: rgba(255,255,255,.012);
}
.creator-card-metrics > div,
.directory-compact-metrics > div { display:grid; min-height:76px; align-content:center; gap:4px; padding:13px 15px; border-right:1px solid rgba(255,255,255,.07); }
.creator-card-metrics > div:last-child,
.directory-compact-metrics > div:last-child { border-right:0; }
.creator-card-metrics small { color:#5d5d5d; font-size:7px; font-weight:850; letter-spacing:.14em; }
.creator-card-metrics strong,
.directory-compact-metrics strong { font-size:21px; letter-spacing:-.04em; }
.creator-card-metrics span,
.directory-compact-metrics span { color:#727272; font-size:8px; }

.creator-card-description,
.moderation-card-v8 > p,
.event-card-v8 > p { position:relative; z-index:1; display:-webkit-box; min-height:66px; margin:18px 0; overflow:hidden; color:#9b9b9b; font-size:12px; line-height:1.7; -webkit-box-orient:vertical; -webkit-line-clamp:3; }
.creator-card-format { position:relative; z-index:1; display:flex; align-items:center; gap:9px; min-height:40px; padding:0 12px; border:1px solid rgba(255,255,255,.07); border-radius:10px; color:#8d8d8d; background:rgba(255,255,255,.012); font-size:8px; }
.creator-card-format i { color:#eaeaea; }
.creator-card-socials,
.directory-links-v8 { position:relative; z-index:1; display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:7px; margin-top:9px; }
.creator-card-socials a,
.directory-links-v8 a,
.event-link-v8 { display:grid; grid-template-columns:16px 1fr auto; align-items:center; gap:8px; min-height:42px; padding:0 11px; border:1px solid rgba(255,255,255,.08); border-radius:10px; color:#aaa; background:rgba(255,255,255,.01); font-size:9px; font-weight:720; transition:.2s ease; }
.creator-card-socials a:hover,
.directory-links-v8 a:hover,
.event-link-v8:hover { color:#050505; border-color:#fff; background:#fff; transform:translateY(-1px); }
.creator-card-socials a i:last-child,
.directory-links-v8 a i:last-child { color:#606060; font-size:6px; }

.moderation-badges-v8 { position:relative; z-index:1; display:flex; flex-wrap:wrap; gap:7px; margin-top:14px; }
.moderation-badges-v8 span { display:inline-flex; align-items:center; gap:7px; min-height:29px; padding:0 10px; border:1px solid rgba(255,255,255,.075); border-radius:30px; color:#999; font-size:8px; }

.event-status-upcoming,
.event-status-today { color:#b3e7b6; border-color:rgba(140,222,146,.22); background:rgba(103,209,112,.045); }
.event-status-past { color:#727272; }
.event-date-v8 { position:relative; z-index:1; display:flex; align-items:center; gap:10px; min-height:46px; margin-top:16px; padding:0 13px; border:1px solid rgba(255,255,255,.075); border-radius:11px; color:#aaa; background:rgba(255,255,255,.012); font-size:10px; }
.event-date-v8 i { color:#eee; }
.event-details-v8 { position:relative; z-index:1; display:grid; margin:0; overflow:hidden; border:1px solid rgba(255,255,255,.07); border-radius:12px; }
.event-details-v8 > div { display:grid; grid-template-columns:105px minmax(0,1fr); align-items:center; min-height:42px; gap:12px; padding:8px 12px; border-bottom:1px solid rgba(255,255,255,.065); }
.event-details-v8 > div:last-child { border-bottom:0; }
.event-details-v8 dt { color:#727272; font-size:8px; }
.event-details-v8 dt i { width:17px; }
.event-details-v8 dd { margin:0; overflow-wrap:anywhere; color:#bbb; font-size:9px; text-align:right; }
.event-twitch-v13 { position:relative; z-index:1; display:grid; gap:8px; margin-top:10px; padding:11px 12px; border:1px solid rgba(145,70,255,.18); border-radius:12px; background:rgba(145,70,255,.035); }
.event-twitch-v13 > span { display:flex; align-items:center; gap:8px; color:#8c8c8c; font-size:8px; font-weight:820; letter-spacing:.08em; text-transform:uppercase; }
.event-twitch-v13 > span i { color:#b892ff; }
.event-twitch-v13 > div { display:flex; flex-wrap:wrap; gap:7px; }
.event-twitch-v13 a { display:inline-flex; min-width:0; max-width:100%; align-items:center; gap:7px; min-height:32px; padding:0 10px; border:1px solid rgba(255,255,255,.085); border-radius:9px; color:#aaa; background:rgba(255,255,255,.018); font-size:8px; transition:.2s ease; }
.event-twitch-v13 a b { min-width:0; overflow:hidden; font-weight:760; text-overflow:ellipsis; white-space:nowrap; }
.event-twitch-v13 a i:first-child { color:#b892ff; }
.event-twitch-v13 a i:last-child { color:#616161; font-size:6px; }
.event-twitch-v13 a:hover { color:#fff; border-color:rgba(184,146,255,.45); background:rgba(145,70,255,.11); transform:translateY(-1px); }
.event-link-v8 { position:relative; z-index:1; display:flex; justify-content:space-between; margin-top:10px; }
.event-link-v8.is-disabled { color:#666; pointer-events:none; }

/* Dashboard V8: compact headings and clear live-status controls. */
.admin-v3 .admin-page-heading { align-items:center; padding:28px 30px; border:1px solid rgba(255,255,255,.085); border-radius:20px; background:linear-gradient(135deg,rgba(255,255,255,.038),rgba(255,255,255,.01)); }
.admin-v3 .admin-page-heading h1 { margin:7px 0 10px; font-size:clamp(36px,3.6vw,54px); line-height:1.02; }
.admin-v3 .admin-page-heading h1 br { display:none; }
.admin-v3 .admin-page-heading p { max-width:670px; font-size:12px; text-align:left; }
.admin-v3 .admin-directory-kpis { margin-top:18px; }
.admin-v3 .admin-directory-add { border-radius:22px; }
.admin-v3 .admin-directory-list { gap:12px; }
.admin-v5 .admin-directory-preview { grid-template-columns:76px minmax(0,1fr) auto auto auto; min-height:100px; }
.admin-v5 .admin-directory-preview > img { width:76px; height:76px; padding:0; border:0; box-shadow:0 10px 28px rgba(0,0,0,.35); }
.admin-live-preview { justify-self:end; }
.admin-live-fields { margin-top:2px; }
.check-field-standalone { margin:0 0 16px; }
.admin-integration-form .admin-form-divider { margin-top:24px; }

@media (max-width: 1240px) {
    .creator-grid-v8,
    .moderation-grid-v8,
    .event-grid-v8 { grid-template-columns: repeat(2,minmax(0,1fr)); }
    .admin-v5 .admin-directory-preview { grid-template-columns:76px minmax(0,1fr) auto auto; }
    .admin-live-preview { grid-column:3; }
}
@media (max-width: 1020px) {
    .subpage-hero { min-height:auto; }
    .subpage-hero-grid { grid-template-columns:1fr; }
    .hero-insight-card,
    .hero-profile-card { max-width:720px; justify-self:start; }
    .hero-insight-grid article { min-height:105px; }
}
@media (max-width: 760px) {
    body:not(.page-home) h1 { font-size:clamp(39px,11vw,54px); }
    body:not(.page-home) h2 { font-size:clamp(32px,9vw,44px); }
    .subpage-hero { padding-top:calc(var(--header-h) + 48px) !important; padding-bottom:58px !important; }
    .subpage-hero-grid { gap:34px; }
    .subpage-hero-copy > p { font-size:14px; }
    .hero-insight-card,
    .hero-profile-card { max-width:none; border-radius:19px; }
    .hero-insight-grid article { min-height:94px; padding:18px; }
    .hero-insight-grid strong { font-size:27px; }
    .creator-explainer-grid { grid-template-columns:1fr; }
    .creator-explainer article { border-right:0; border-bottom:1px solid var(--line); }
    .creator-explainer article:last-child { border-bottom:0; }
    .creator-grid-v8,
    .moderation-grid-v8,
    .event-grid-v8 { grid-template-columns:1fr; }
    .creator-card-v8,
    .moderation-card-v8,
    .event-card-v8 { padding:19px 16px; border-radius:19px; }
    .creator-card-header,
    .moderation-card-v8 > header,
    .event-card-v8 > header { grid-template-columns:58px minmax(0,1fr); gap:12px; }
    .creator-logo-v8,
    .directory-logo-v8 { width:58px; height:58px; }
    .stream-status,
    .event-status-v8 { grid-column:1 / -1; justify-self:start; margin-top:-3px; }
    .creator-card-description,
    .moderation-card-v8 > p,
    .event-card-v8 > p { min-height:0; }
    .creator-card-socials,
    .directory-links-v8 { grid-template-columns:1fr; }
    .admin-v3 .admin-page-heading { align-items:flex-start; padding:23px 18px; }
    .admin-v5 .admin-directory-preview { grid-template-columns:58px minmax(0,1fr); gap:12px; }
    .admin-v5 .admin-directory-preview > img { width:58px; height:58px; }
    .admin-v5 .admin-directory-metric,
    .admin-live-preview,
    .admin-v5 .admin-visibility,
    .admin-v5 .admin-edit-hint { grid-column:1 / -1; justify-self:start; }
}

/* Dashboard V8.1 overview and four-column network KPIs */
.admin-v3 .admin-directory-kpis { grid-template-columns: repeat(4, minmax(0,1fr)); }
.admin-v3 .admin-welcome-card { min-height: 370px; }
.admin-v3 .admin-welcome-copy h1 { font-size: clamp(44px,4.6vw,68px); }
.admin-v3 .admin-network-summary a { border-radius: 18px; }
@media (max-width: 1280px) {
    .admin-v3 .admin-directory-kpis { grid-template-columns: repeat(2,minmax(0,1fr)); }
}
@media (max-width: 700px) {
    .admin-v3 .admin-directory-kpis { grid-template-columns: 1fr; }
}


/* ================================================================
   V9 – dashboard polish + background live updates
   ================================================================ */
.admin-v3 .admin-topbar {
    height: 76px;
    padding: 0 clamp(18px, 3vw, 46px);
}
.admin-topbar-inner {
    width: min(1500px, 100%);
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 16px;
}
.admin-v3 .admin-topbar > div.admin-topbar-inner { display:flex; line-height:normal; }
.admin-v3 .admin-topbar > div.admin-topbar-inner > .admin-breadcrumb { display:grid; line-height:1.2; }
.admin-v3 .admin-top-actions { gap: 9px; }
.admin-v3 .admin-top-actions > a,
.admin-v3 .admin-status {
    min-height: 38px;
    padding: 0 14px;
    border-radius: 11px;
}
.admin-v3 .admin-status { order: 0; }
.admin-v3 .admin-top-actions > a { order: 1; }

.admin-form-bottom-v9 {
    grid-template-columns: 116px repeat(2, minmax(0, 1fr));
    align-items: stretch;
    gap: 12px;
    padding-top: 17px;
    border-top: 1px solid rgba(255,255,255,.07);
}
.admin-form-bottom-v9 > .field,
.admin-form-bottom-v9 > .check-field { min-width: 0; margin: 0; }
.admin-form-bottom-v9 > .check-field {
    min-height: 72px;
    border-radius: 13px;
}
.admin-form-bottom-v9 > .button {
    grid-column: 1 / -1;
    width: 100%;
    min-height: 50px;
    margin-top: 2px;
    justify-content: center;
    border-radius: 13px;
}
.admin-event-add .admin-form-bottom-v9 { grid-template-columns: 116px minmax(0,1fr); }

.admin-integration-status-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 10px;
    margin: 2px 0 16px;
}
.admin-integration-status-grid article {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 72px;
    padding: 14px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 14px;
    background: rgba(255,255,255,.015);
}
.admin-integration-status-grid article > i {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    flex: 0 0 36px;
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 10px;
    color: #777;
}
.admin-integration-status-grid article.is-ready > i { color:#aef8b3; border-color:rgba(120,235,130,.2); background:rgba(80,220,95,.04); }
.admin-integration-status-grid span { display:grid; gap:3px; min-width:0; }
.admin-integration-status-grid b { font-size:10px; }
.admin-integration-status-grid small { color:#6f6f6f; font-size:8px; line-height:1.5; }
.admin-oauth-help {
    display: grid;
    grid-template-columns: 42px minmax(0,1fr);
    gap: 14px;
    margin: 0 0 18px;
    padding: 17px;
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 15px;
    background: linear-gradient(135deg,rgba(145,70,255,.06),rgba(255,255,255,.012));
}
.admin-oauth-help > i {
    width: 42px;
    height: 42px;
    display:grid;
    place-items:center;
    border-radius:12px;
    color:#fff;
    background:rgba(145,70,255,.13);
    font-size:18px;
}
.admin-oauth-help b { display:block; margin-bottom:6px; font-size:11px; }
.admin-oauth-help p { margin:0 0 10px; color:#898989; font-size:10px; line-height:1.65; }
.admin-oauth-help code {
    display:block;
    width:100%;
    padding:11px 12px;
    overflow:auto;
    border:1px solid rgba(255,255,255,.08);
    border-radius:9px;
    color:#e5e5e5;
    background:#070707;
    font-size:10px;
    white-space:nowrap;
}

.stream-status { transition: color .25s ease, border-color .25s ease, background .25s ease; }
.stream-status-live { box-shadow: 0 0 0 1px rgba(255,74,74,.02), 0 0 24px rgba(255,55,55,.05); }

@media (max-width: 1050px) {
    .admin-integration-status-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
    .admin-v3 .admin-topbar { height:68px; padding:0 13px; }
    .admin-topbar-inner { gap:10px; }
    .admin-v3 .admin-top-actions { margin-left:auto; }
    .admin-v3 .admin-top-actions > a { width:40px; padding:0; justify-content:center; }
    .admin-v3 .admin-top-actions > a span,
    .admin-v3 .admin-status { display:none; }
    .admin-form-bottom-v9,
    .admin-event-add .admin-form-bottom-v9 { grid-template-columns:1fr; }
    .admin-form-bottom-v9 > .button { grid-column:auto; }
}

.admin-v3 .admin-topbar-inner .admin-status span,
.admin-v3 .admin-topbar-inner .admin-top-actions a span {
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
    letter-spacing: normal;
}


/* =========================================================
   V10 — moderation platform selector + single-line metrics
   Only presentation and moderator-selection refinements.
   ========================================================= */
.moderation-platform-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 9px;
}
.moderation-platform-option {
    position: relative;
    display: block;
    min-width: 0;
    cursor: pointer;
}
.moderation-platform-option > input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}
.moderation-platform-option > span {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    grid-template-rows: auto auto;
    align-items: center;
    column-gap: 10px;
    min-height: 66px;
    padding: 11px 12px;
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 12px;
    color: #8e8e8e;
    background: rgba(255,255,255,.012);
    transition: border-color .2s ease, background .2s ease, color .2s ease, transform .2s ease;
}
.moderation-platform-option i {
    grid-row: 1 / 3;
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 10px;
    color: #bdbdbd;
    background: #080808;
}
.moderation-platform-option b { color: #d4d4d4; font-size: 10px; }
.moderation-platform-option small { color: #666; font-size: 8px; line-height: 1.35; }
.moderation-platform-option:hover > span { transform: translateY(-1px); border-color: rgba(255,255,255,.18); }
.moderation-platform-option > input:checked + span {
    color: #fff;
    border-color: rgba(255,255,255,.34);
    background: linear-gradient(145deg, rgba(255,255,255,.085), rgba(255,255,255,.025));
    box-shadow: inset 0 1px rgba(255,255,255,.06);
}
.moderation-platform-option > input:checked + span i { color: #fff; border-color: rgba(255,255,255,.25); }
.moderation-platform-option > input:focus-visible + span { outline: 2px solid #fff; outline-offset: 3px; }

/* Formatted reach, follower, view and upload values must stay on one line. */
.hero-insight-grid strong,
.hero-profile-stats strong,
.metric-grid strong,
.directory-hero-metrics strong,
.creator-card-metrics strong,
.directory-compact-metrics strong,
.admin-directory-kpis strong,
.admin-directory-metric strong,
.admin-stat-grid strong,
[data-counter],
.platform-stat-row strong,
.stats-total-card strong,
.stat-card strong,
.about-viral-list strong,
.platform-list-v3 strong {
    white-space: nowrap;
    word-break: keep-all;
    overflow-wrap: normal;
    font-variant-numeric: tabular-nums;
}
.hero-insight-grid strong {
    max-width: 100%;
    font-size: clamp(25px, 2.25vw, 38px);
    letter-spacing: -.055em;
}
.hero-insight-grid article { min-width: 0; }
.creator-card-metrics strong,
.directory-compact-metrics strong { font-size: clamp(18px, 1.55vw, 21px); }
.admin-directory-kpis strong { font-size: clamp(18px, 1.7vw, 23px); }

@media (max-width: 620px) {
    .moderation-platform-options { grid-template-columns: 1fr; }
    .hero-insight-grid strong { font-size: clamp(23px, 8vw, 32px); }
}


/* V12 — Event year / yearly controls */
.event-year-grid { align-items: stretch; }
.event-yearly-field {
    min-height: 100%;
    padding: 13px 14px;
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 12px;
    background: rgba(255,255,255,.018);
}
.event-yearly-field > span { align-self: center; }
.field.is-disabled { opacity: .48; }
.field.is-disabled input { cursor: not-allowed; }
.event-state-yearly .event-status-v8,
.event-status-yearly {
    color: #fff;
    border-color: rgba(255,255,255,.2);
    background: rgba(255,255,255,.07);
}
@media (max-width: 760px) {
    .event-year-grid { grid-template-columns: 1fr; }
}

/* ========================================================================== 
   V14 — Polished layout, clean header and annual performance archive
   ========================================================================== */

:root { --header-h: 76px; }

/* Cleaner, calmer header */
.site-header { background: linear-gradient(180deg, rgba(5,5,5,.9), rgba(5,5,5,.68)); }
.site-header.is-scrolled { background: rgba(5,5,5,.93); }
.nav-shell { gap: 20px; }
.brand-mark { width: 42px; height: 42px; }
.brand-copy small { display: none; }
.main-nav { gap: 3px; }
.main-nav > a,
.nav-more > summary {
    min-height: 38px;
    padding: 9px 11px;
    border: 1px solid transparent;
    border-radius: 11px;
    color: #929292;
    font-size: 11px;
    font-weight: 720;
    letter-spacing: .02em;
}
.main-nav > a::after { display: none; }
.main-nav > a:hover,
.main-nav > a.is-active,
.nav-more:hover > summary,
.nav-more.is-active > summary,
.nav-more[open] > summary {
    color: #fff;
    border-color: rgba(255,255,255,.09);
    background: rgba(255,255,255,.045);
}
.nav-discord { min-height: 40px; padding: 9px 14px; border-radius: 11px; }
.nav-more { position: relative; flex: none; }
.nav-more > summary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    cursor: pointer;
    user-select: none;
}
.nav-more > summary::-webkit-details-marker { display: none; }
.nav-more > summary > i:last-child { margin-left: 2px; color: #5f5f5f; font-size: 8px; transition: transform .25s ease; }
.nav-more[open] > summary > i:last-child { transform: rotate(180deg); }
.nav-more-menu {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    z-index: 20;
    display: grid;
    width: 272px;
    padding: 9px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 16px;
    background: rgba(8,8,8,.98);
    box-shadow: 0 28px 80px rgba(0,0,0,.6);
    backdrop-filter: blur(22px);
}
.nav-more-menu::before {
    position: absolute;
    top: -7px;
    right: 24px;
    width: 12px;
    height: 12px;
    content: "";
    border-top: 1px solid rgba(255,255,255,.12);
    border-left: 1px solid rgba(255,255,255,.12);
    background: #080808;
    transform: rotate(45deg);
}
.main-nav .nav-more-menu a {
    display: grid;
    grid-template-columns: 32px 1fr;
    align-items: center;
    gap: 10px;
    min-height: 56px;
    padding: 9px 11px;
    border-radius: 11px;
    color: #aaa;
}
.main-nav .nav-more-menu a::after { display: none; }
.main-nav .nav-more-menu a > i { display: grid; width: 32px; height: 32px; place-items: center; border: 1px solid rgba(255,255,255,.08); border-radius: 9px; }
.main-nav .nav-more-menu a span { display: grid; gap: 2px; }
.main-nav .nav-more-menu a b { color: #e8e8e8; font-size: 11px; }
.main-nav .nav-more-menu a small { color: #666; font-size: 8px; }
.main-nav .nav-more-menu a:hover,
.main-nav .nav-more-menu a.is-active { color: #fff; background: rgba(255,255,255,.055); }

/* About values: less dead space, clearer rhythm */
.about-value-grid-v3 article {
    min-height: 292px;
    padding: 28px 30px 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.about-value-grid-v3 article::after { display: none; }
.about-value-grid-v3 article > i { margin: 30px 0 24px; }
.about-value-grid-v3 h3 { margin-bottom: 11px; line-height: 1.12; }
.about-value-grid-v3 p { margin-top: auto; }

/* Process cards: remove connected border artifacts and excess top spacing */
.process-grid,
.process-grid-v3 {
    gap: 14px;
    border: 0;
}
.process-card,
.process-grid-v3 .process-card {
    min-height: 250px;
    padding: 27px 28px 29px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 18px;
    background: linear-gradient(150deg, rgba(255,255,255,.035), rgba(255,255,255,.009));
    overflow: hidden;
}
.process-card::before,
.process-card::after { display: none !important; }
.process-card > i,
.process-grid-v3 .process-card > i { margin: 30px 0 24px; }
.process-card h3 { line-height: 1.14; }
.process-card p { line-height: 1.65; }

/* All 2x2 hero snapshots use separated cells instead of dividing lines. */
.hero-insight-card,
.hero-profile-card { max-width: 430px; }
.hero-insight-grid,
.hero-profile-stats {
    gap: 8px;
    padding: 11px;
}
.hero-insight-grid article,
.hero-profile-stats article {
    min-width: 0;
    min-height: 112px;
    padding: 17px 18px;
    border: 1px solid rgba(255,255,255,.075) !important;
    border-radius: 14px;
    background: rgba(0,0,0,.16);
    overflow: hidden;
}
.hero-insight-grid strong,
.hero-profile-stats strong {
    display: block;
    max-width: 100%;
    font-size: clamp(22px, 2vw, 34px);
    line-height: 1.03;
    letter-spacing: -.05em;
    white-space: nowrap;
}
.hero-insight-grid span,
.hero-profile-stats span { overflow-wrap: anywhere; }

/* The big total cards remain roomy but numbers can never collide. */
.total-counter-grid {
    gap: 14px;
    border: 0;
}
.total-counter {
    min-width: 0;
    min-height: 254px;
    padding: 34px 24px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 18px;
    overflow: hidden;
}
.total-counter strong {
    display: block;
    width: 100%;
    font-size: clamp(38px, 4.2vw, 64px);
    line-height: 1;
    white-space: nowrap;
}

/* Long creator, moderation and event names: two clean lines, equal-height cards. */
.creator-card-header,
.moderation-card-v8 > header,
.event-card-v8 > header { align-items: start; min-height: 112px; }
.creator-card-identity h3,
.moderation-card-v8 h3,
.event-card-v8 h3 {
    display: -webkit-box;
    min-height: 2.28em;
    margin: 6px 0 4px;
    padding-bottom: .08em;
    overflow: hidden;
    font-size: clamp(20px, 1.55vw, 27px);
    line-height: 1.14;
    letter-spacing: -.038em;
    overflow-wrap: anywhere;
    text-overflow: clip;
    white-space: normal;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
.creator-card-identity small,
.moderation-card-v8 header small,
.event-card-v8 header small { line-height: 1.35; padding-bottom: 2px; }
.creator-card-v8,
.moderation-card-v8,
.event-card-v8 { display: flex; min-height: 100%; flex-direction: column; }
.creator-card-v8 > footer,
.moderation-card-v8 > footer,
.event-card-v8 > footer { margin-top: auto; }

/* Annual stats on homepage and stats page */
.home-year-stats { position: relative; padding: 28px 0 0; }
.home-year-stats-shell,
.yearly-archive {
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.11);
    border-radius: 24px;
    background:
        radial-gradient(circle at 90% 0, rgba(255,255,255,.055), transparent 28%),
        linear-gradient(145deg, rgba(255,255,255,.035), rgba(255,255,255,.008));
    box-shadow: 0 28px 80px rgba(0,0,0,.25);
}
.home-year-stats-head,
.yearly-archive-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    padding: 28px 30px 24px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.home-year-stats-head .eyebrow,
.yearly-archive-head .eyebrow { margin-bottom: 10px; }
.home-year-stats-head h2,
.yearly-archive-head h2 { margin: 0 0 8px; font-size: clamp(31px, 3vw, 48px); }
.home-year-stats-head p,
.yearly-archive-head p { max-width: 680px; margin: 0; font-size: 13px; }
.year-stat-tabs { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px; }
.year-stat-tab {
    min-width: 74px;
    min-height: 42px;
    padding: 8px 15px;
    border: 1px solid rgba(255,255,255,.11);
    border-radius: 12px;
    color: #999;
    background: rgba(0,0,0,.22);
    font-size: 12px;
    font-weight: 820;
    letter-spacing: .08em;
    transition: .25s ease;
}
.year-stat-tab:hover { color: #fff; border-color: rgba(255,255,255,.24); }
.year-stat-tab.is-active { color: #050505; border-color: #fff; background: #fff; }
.year-stat-panels { padding: 14px; }
.year-stat-panel[hidden] { display: none; }
.year-stat-panel { animation: yearPanelIn .32s var(--ease); }
@keyframes yearPanelIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.year-stat-panel-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 5px 7px 13px;
}
.year-stat-panel-top > span { display: inline-flex; align-items: center; gap: 9px; color: #eee; font-size: 12px; font-weight: 780; }
.year-stat-panel-top small { color: #696969; font-size: 9px; letter-spacing: .04em; text-align: right; }
.year-stat-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 9px; }
.year-stat-grid article {
    display: grid;
    grid-template-columns: 34px minmax(0,1fr);
    grid-template-rows: auto auto;
    align-items: center;
    min-width: 0;
    min-height: 105px;
    gap: 1px 13px;
    padding: 17px 18px;
    border: 1px solid rgba(255,255,255,.075);
    border-radius: 15px;
    background: rgba(0,0,0,.18);
}
.year-stat-grid article > i { grid-row: 1 / 3; display: grid; width: 34px; height: 34px; place-items: center; border: 1px solid rgba(255,255,255,.09); border-radius: 10px; color: #bcbcbc; font-size: 12px; }
.year-stat-grid strong { min-width: 0; overflow: hidden; font-size: clamp(25px, 2.4vw, 38px); line-height: 1.04; letter-spacing: -.045em; text-overflow: ellipsis; white-space: nowrap; }
.year-stat-grid span { color: #6d6d6d; font-size: 8px; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.year-stat-empty { display: flex; align-items: center; gap: 9px; margin: 12px 5px 0; color: #777; font-size: 11px; }
.year-stat-more { display: flex; align-items: center; justify-content: space-between; min-height: 52px; padding: 0 30px; border-top: 1px solid rgba(255,255,255,.08); color: #9b9b9b; font-size: 10px; font-weight: 780; letter-spacing: .08em; text-transform: uppercase; }
.year-stat-more:hover { color: #fff; background: rgba(255,255,255,.025); }
.yearly-archive-section { padding-top: 34px; }

/* Admin annual stats */
.admin-year-stats-panel { margin-top: 18px; }
.admin-year-stats-heading > i { display: grid; width: 46px; height: 46px; place-items: center; border: 1px solid rgba(255,255,255,.09); border-radius: 13px; }
.admin-year-stats-heading p { max-width: 780px; margin: 7px 0 0; }
.admin-year-stats-form { padding-top: 0; }
.admin-year-stats-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 13px; }
.admin-year-stat-card { overflow: hidden; border: 1px solid rgba(255,255,255,.09); border-radius: 16px; background: rgba(255,255,255,.015); }
.admin-year-stat-head { display: flex; align-items: center; justify-content: space-between; min-height: 72px; padding: 13px 16px; border-bottom: 1px solid rgba(255,255,255,.075); }
.admin-year-stat-head > div { display: grid; gap: 2px; }
.admin-year-stat-head span { color: #676767; font-size: 7px; font-weight: 850; letter-spacing: .15em; }
.admin-year-stat-head strong { font-size: 25px; letter-spacing: -.035em; }
.admin-year-stat-head em { display: inline-flex; align-items: center; gap: 6px; padding: 6px 9px; border: 1px solid rgba(159,255,169,.18); border-radius: 30px; color: #a7ffb0; background: rgba(112,255,126,.045); font-size: 7px; font-style: normal; font-weight: 850; letter-spacing: .12em; }
.admin-year-stat-fields { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 10px; padding: 14px 14px 4px; }
.admin-year-stat-preview { display: grid; gap: 3px; margin: 8px 14px 0; padding: 11px 12px; border: 1px solid rgba(255,255,255,.07); border-radius: 11px; background: rgba(0,0,0,.18); }
.admin-year-stat-preview span { color: #666; font-size: 7px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.admin-year-stat-preview strong { color: #ccc; font-size: 10px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.admin-year-stat-actions { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 8px; padding: 12px 14px 14px; }
.admin-add-year-form { display: flex; align-items: end; gap: 10px; padding: 15px 0 0; }
.admin-add-year-form .field { width: min(260px,100%); }

@media (max-width: 1120px) {
    .brand-copy { display: none; }
    .nav-shell { gap: 12px; }
    .main-nav > a, .nav-more > summary { padding-inline: 9px; }
    .nav-discord span { display: none; }
    .year-stat-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
}

@media (max-width: 860px) {
    .main-nav {
        position: fixed;
        inset: var(--header-h) 0 auto 0;
        display: grid;
        max-height: calc(100dvh - var(--header-h));
        justify-content: stretch;
        gap: 4px;
        padding: 14px 20px 24px;
        overflow-y: auto;
        border-bottom: 1px solid var(--line);
        background: rgba(5,5,5,.985);
        transform: translateY(-130%);
        transition: transform .35s var(--ease);
    }
    .main-nav.is-open { transform: translateY(0); }
    .main-nav > a { justify-content: flex-start; min-height: 48px; padding: 12px 13px; border: 0; border-bottom: 1px solid rgba(255,255,255,.06); border-radius: 0; }
    .main-nav > a span { display: inline; }
    .nav-more { width: 100%; }
    .nav-more > summary { width: 100%; min-height: 48px; justify-content: flex-start; padding: 12px 13px; border: 0; border-bottom: 1px solid rgba(255,255,255,.06); border-radius: 0; }
    .nav-more > summary > i:last-child { margin-left: auto; }
    .nav-more-menu { position: static; width: 100%; padding: 6px 0 6px 18px; border: 0; border-radius: 0; background: transparent; box-shadow: none; }
    .nav-more-menu::before { display: none; }
    .main-nav .nav-more-menu a { min-height: 50px; }
    .menu-toggle { display: block; order: 3; }
    .nav-discord { margin-left: auto; }
    .about-value-grid-v3 article { min-height: 270px; }
    .admin-year-stats-grid { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
    .home-year-stats { padding-top: 16px; }
    .home-year-stats-head,
    .yearly-archive-head { align-items: flex-start; flex-direction: column; padding: 22px 20px 18px; }
    .year-stat-tabs { justify-content: flex-start; }
    .year-stat-panels { padding: 9px; }
    .year-stat-panel-top { align-items: flex-start; flex-direction: column; gap: 4px; padding: 6px 5px 11px; }
    .year-stat-panel-top small { text-align: left; }
    .year-stat-grid { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 7px; }
    .year-stat-grid article { min-height: 92px; grid-template-columns: 28px minmax(0,1fr); gap: 1px 9px; padding: 13px 12px; }
    .year-stat-grid article > i { width: 28px; height: 28px; font-size: 10px; }
    .year-stat-grid strong { font-size: clamp(21px, 7.2vw, 29px); }
    .year-stat-more { padding-inline: 20px; }
    .hero-insight-grid article,
    .hero-profile-stats article { min-height: 99px; padding: 14px; }
    .hero-insight-grid strong,
    .hero-profile-stats strong { font-size: clamp(21px, 7.5vw, 29px); }
    .creator-card-header,
    .moderation-card-v8 > header,
    .event-card-v8 > header { min-height: 104px; }
    .admin-year-stat-fields { grid-template-columns: repeat(2,minmax(0,1fr)); }
    .admin-year-stat-actions { grid-template-columns: 1fr; }
    .admin-add-year-form { align-items: stretch; flex-direction: column; }
}

@media (max-width: 460px) {
    .nav-discord { width: 40px; padding: 0; justify-content: center; }
    .year-stat-grid { grid-template-columns: 1fr; }
    .year-stat-grid article { min-height: 82px; }
    .about-value-grid-v3 article { min-height: 250px; padding: 24px; }
    .about-value-grid-v3 article > i { margin: 24px 0 21px; }
    .process-card,
    .process-grid-v3 .process-card { min-height: 226px; padding: 23px; }
    .process-card > i,
    .process-grid-v3 .process-card > i { margin: 24px 0 20px; }
}

/* Contact list and protection note should read as two separate blocks. */
.contact-socials { margin-bottom: 18px; }
.contact-socials a:last-child { border-bottom: 0; }
.contact-socials + .security-note { margin-top: 0; border-color: rgba(255,255,255,.1); background: linear-gradient(145deg, rgba(255,255,255,.035), rgba(255,255,255,.012)); }

/* ========================================================================== 
   V15 — Separate annual pages, sharper UI and tighter creator cards
   ========================================================================== */

:root { --radius: 5px; --radius-sm: 4px; }

/* A calmer header with fewer visible actions. */
.nav-shell { gap: 14px; }
.brand { margin-right: 8px; }
.main-nav { margin-left: auto; gap: 2px; }
.main-nav > a,
.nav-more > summary { min-height: 38px; padding: 8px 10px; border-radius: 4px; }
.nav-discord { width: 42px; min-width: 42px; min-height: 40px; padding: 0; border-radius: 4px; }
.nav-discord span { display: none; }
.nav-more-menu { border-radius: 5px; }
.main-nav .nav-more-menu a,
.main-nav .nav-more-menu a > i { border-radius: 4px; }

/* Sharper buttons, fields and main containers. Logos and status dots stay round. */
.button,
.clip-filter button,
.year-stat-tab,
.home-year-button,
.year-navigation-card,
.yearly-page-card,
.event-link-v8,
.creator-card-socials a,
.directory-links-v8 a,
.event-twitch-v13 a,
.field input,
.field select,
.field textarea,
.check-field,
.admin-add-year-form,
.admin-year-auto-badge { border-radius: 4px !important; }

.hero-insight-card,
.hero-profile-card,
.home-year-links-shell,
.year-page-summary,
.year-page-metric,
.year-tracking-cards article,
.creator-card-v8,
.moderation-card-v8,
.event-card-v8,
.overview-card,
.feature-card,
.process-card,
.total-counter,
.platform-stat,
.clip-card-v2,
.cta-panel,
.mini-cta,
.form-card,
.security-note,
.upload-zone,
.admin-panel,
.admin-year-stat-card,
.admin-social-table fieldset,
.admin-directory-edit,
.admin-directory-add,
.admin-directory-kpis article { border-radius: 6px !important; }

/* Keep all identity images circular. */
.creator-logo-v8,
.directory-logo-v8,
.event-logo-v8,
.brand-mark,
.login-brand img,
.admin-brand img { border-radius: 50% !important; }

/* More breathing room in every right-side 2x2 status card. */
.hero-insight-card,
.hero-profile-card { width: min(100%, 460px); max-width: 460px; }
.hero-insight-grid,
.hero-profile-stats { gap: 10px; padding: 13px; }
.hero-insight-grid article,
.hero-profile-stats article {
    min-height: 118px;
    padding: 21px 24px;
    border-radius: 5px !important;
}
.hero-insight-grid strong,
.hero-profile-stats strong {
    font-size: clamp(22px, 1.8vw, 31px);
    letter-spacing: -.045em;
    line-height: 1.04;
    text-overflow: ellipsis;
    overflow: hidden;
}
.hero-insight-grid span,
.hero-profile-stats span { padding-right: 4px; }

/* Creator, moderation and event identity blocks: name and @handle stay together. */
.creator-card-header,
.moderation-card-v8 > header,
.event-card-v8 > header {
    min-height: 92px;
    align-items: start;
    gap: 13px;
}
.creator-card-identity,
.moderation-card-v8 > header > div,
.event-card-v8 > header > div { align-self: start; padding-top: 1px; }
.creator-card-identity h3,
.moderation-card-v8 h3,
.event-card-v8 h3 {
    min-height: 0;
    margin: 3px 0 0;
    padding: 0 0 .13em;
    font-size: clamp(19px, 1.32vw, 24px);
    line-height: 1.08;
    -webkit-line-clamp: 2;
}
.creator-card-identity small,
.moderation-card-v8 header small,
.event-card-v8 header small {
    margin-top: 0;
    padding: 0 0 2px;
    line-height: 1.25;
}
.creator-card-v8,
.moderation-card-v8,
.event-card-v8 { padding-inline: 22px; }
.creator-card-metrics,
.directory-compact-metrics { border-radius: 4px !important; }

/* Homepage: dedicated year buttons instead of a large embedded archive. */
.home-year-links { padding: 28px 0 4px; }
.home-year-links-shell {
    display: grid;
    grid-template-columns: minmax(260px, .8fr) minmax(0, 1.35fr);
    align-items: center;
    gap: 28px;
    padding: 26px;
    border: 1px solid rgba(255,255,255,.1);
    background: linear-gradient(145deg, rgba(255,255,255,.028), rgba(255,255,255,.008));
}
.home-year-links-copy h2 { margin: 8px 0 9px; font-size: clamp(28px, 3vw, 46px); }
.home-year-links-copy p { max-width: 560px; margin: 0; font-size: 12px; line-height: 1.7; }
.home-year-button-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 10px; }
.home-year-button {
    display: grid;
    grid-template-columns: auto minmax(0,1fr) minmax(0,1fr) 22px;
    align-items: center;
    gap: 14px;
    min-height: 102px;
    padding: 18px 19px;
    border: 1px solid rgba(255,255,255,.1);
    color: #fff;
    background: rgba(0,0,0,.22);
    transition: border-color .25s ease, background .25s ease, transform .25s var(--ease);
}
.home-year-button:hover { transform: translateY(-3px); border-color: rgba(255,255,255,.28); background: rgba(255,255,255,.035); }
.home-year-button-year { font-size: 27px; font-weight: 900; letter-spacing: -.045em; }
.home-year-button-stats { display: grid; gap: 4px; min-width: 0; }
.home-year-button-stats b { overflow: hidden; font-size: 17px; line-height: 1; text-overflow: ellipsis; white-space: nowrap; }
.home-year-button-stats small { color: #666; font-size: 7px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.home-year-button > i { color: #777; font-size: 11px; }

/* Statistics overview: every year leads to its own public page. */
.yearly-page-directory { padding-top: 34px; }
.yearly-page-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px; }
.yearly-page-card {
    display: flex;
    min-width: 0;
    min-height: 330px;
    padding: 25px;
    flex-direction: column;
    border: 1px solid rgba(255,255,255,.1);
    color: #fff;
    background: linear-gradient(150deg, rgba(255,255,255,.032), rgba(255,255,255,.007));
    transition: transform .28s var(--ease), border-color .28s ease, background .28s ease;
}
.yearly-page-card:hover { transform: translateY(-5px); border-color: rgba(255,255,255,.25); background: rgba(255,255,255,.035); }
.yearly-page-card-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.yearly-page-card-head span { font-size: 38px; font-weight: 900; letter-spacing: -.055em; }
.yearly-page-card-head i { color: #777; }
.yearly-page-card > strong { font-size: 19px; }
.yearly-page-card > p { margin: 9px 0 24px; font-size: 11px; line-height: 1.7; }
.yearly-page-card-values { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 8px; margin-top: auto; }
.yearly-page-card-values > span { min-width: 0; padding: 13px 12px; border: 1px solid rgba(255,255,255,.075); background: rgba(0,0,0,.18); }
.yearly-page-card-values b { display: block; overflow: hidden; font-size: 17px; text-overflow: ellipsis; white-space: nowrap; }
.yearly-page-card-values small { display: block; margin-top: 5px; color: #666; font-size: 7px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.yearly-page-card-foot { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin: 18px -25px -25px; padding: 15px 25px; border-top: 1px solid rgba(255,255,255,.075); color: #777; font-size: 8px; }
.yearly-page-card-foot span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* Separate public annual pages. */
.year-page-hero { padding-top: calc(var(--header-h) + 70px); padding-bottom: 62px; border-bottom: 1px solid rgba(255,255,255,.08); }
.year-page-hero-grid { display: grid; grid-template-columns: minmax(0,1.2fr) minmax(300px,.65fr); align-items: center; gap: 70px; }
.year-page-copy h1 { max-width: 860px; margin: 17px 0 18px; font-size: clamp(48px, 6.4vw, 96px); line-height: .96; letter-spacing: -.07em; }
.year-page-copy p { max-width: 720px; margin: 0; font-size: 15px; line-height: 1.75; }
.year-page-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.year-page-summary { overflow: hidden; border: 1px solid rgba(255,255,255,.13); background: linear-gradient(150deg, rgba(255,255,255,.05), rgba(255,255,255,.008)); }
.year-page-number { display: block; padding: 24px 26px 17px; border-bottom: 1px solid rgba(255,255,255,.09); font-size: clamp(60px, 6vw, 92px); font-weight: 950; line-height: 1; letter-spacing: -.08em; }
.year-page-summary > div:not(.year-page-summary-meta) { display: grid; gap: 8px; min-height: 118px; align-content: center; padding: 23px 26px; }
.year-page-summary small { color: #666; font-size: 8px; font-weight: 850; letter-spacing: .14em; }
.year-page-summary strong { font-size: 13px; line-height: 1.55; }
.year-page-summary-meta { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); border-top: 1px solid rgba(255,255,255,.09); }
.year-page-summary-meta span { display: flex; align-items: center; gap: 8px; min-height: 54px; padding: 12px 15px; color: #777; font-size: 8px; }
.year-page-summary-meta span + span { border-left: 1px solid rgba(255,255,255,.09); }
.year-page-metric-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 13px; }
.year-page-metric { min-width: 0; min-height: 285px; padding: 24px; border: 1px solid rgba(255,255,255,.1); background: linear-gradient(150deg, rgba(255,255,255,.03), rgba(255,255,255,.006)); }
.year-page-metric-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 42px; }
.year-page-metric-top > i { display: grid; width: 39px; height: 39px; place-items: center; border: 1px solid rgba(255,255,255,.1); color: #ddd; }
.year-page-metric-top > span { display: inline-flex; align-items: center; gap: 6px; color: #696969; font-size: 7px; font-weight: 850; letter-spacing: .13em; }
.year-page-metric > strong { display: block; overflow: hidden; margin-bottom: 6px; font-size: clamp(35px, 3.4vw, 57px); line-height: 1; letter-spacing: -.06em; text-overflow: ellipsis; white-space: nowrap; }
.year-page-metric h3 { margin: 0 0 14px; font-size: 13px; text-transform: uppercase; letter-spacing: .08em; }
.year-page-metric p { margin: 0; font-size: 10px; line-height: 1.65; }
.year-tracking-grid { display: grid; grid-template-columns: minmax(0,.9fr) minmax(0,1.1fr); align-items: start; gap: 70px; }
.year-tracking-explain h2 { margin: 13px 0 17px; font-size: clamp(34px,4vw,60px); }
.year-tracking-explain p { max-width: 620px; margin: 0; line-height: 1.8; }
.year-tracking-cards { display: grid; gap: 9px; }
.year-tracking-cards article { display: grid; grid-template-columns: 42px 1fr; align-items: center; gap: 14px; min-height: 88px; padding: 17px; border: 1px solid rgba(255,255,255,.09); background: rgba(255,255,255,.012); }
.year-tracking-cards article > i { display: grid; width: 42px; height: 42px; place-items: center; border: 1px solid rgba(255,255,255,.1); }
.year-tracking-cards article div { display: grid; gap: 5px; }
.year-tracking-cards strong { font-size: 13px; }
.year-tracking-cards span { color: #777; font-size: 10px; line-height: 1.5; }
.year-navigation-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 10px; }
.year-navigation-card { position: relative; display: grid; min-height: 150px; align-content: center; gap: 5px; padding: 22px; border: 1px solid rgba(255,255,255,.09); color: #fff; background: rgba(255,255,255,.012); }
.year-navigation-card.is-current { border-color: rgba(255,255,255,.3); background: rgba(255,255,255,.04); }
.year-navigation-card > span { color: #777; font-size: 11px; font-weight: 850; letter-spacing: .12em; }
.year-navigation-card > strong { font-size: 25px; }
.year-navigation-card > small { color: #666; font-size: 8px; }
.year-navigation-card > i { position: absolute; top: 22px; right: 22px; color: #777; }
.year-not-found { padding-top: calc(var(--header-h) + 90px); }

/* Dashboard year management. */
.admin-tracking-readiness { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 9px; margin-bottom: 15px; }
.admin-tracking-readiness article { display: grid; grid-template-columns: 37px 1fr; align-items: center; gap: 11px; min-height: 78px; padding: 13px; border: 1px solid rgba(255,255,255,.08); background: rgba(255,255,255,.012); }
.admin-tracking-readiness article > i { display: grid; width: 37px; height: 37px; place-items: center; border: 1px solid rgba(255,255,255,.09); }
.admin-tracking-readiness article div { display: grid; gap: 4px; }
.admin-tracking-readiness strong { font-size: 10px; }
.admin-tracking-readiness span { color: #666; font-size: 8px; line-height: 1.45; }
.admin-year-stat-head > a { display: inline-flex; align-items: center; gap: 7px; min-height: 34px; padding: 0 10px; border: 1px solid rgba(255,255,255,.09); color: #aaa; font-size: 8px; }
.admin-year-copy-fields { display: grid; gap: 10px; padding: 14px 14px 0; }
.admin-tracking-mode-field { margin: 10px 14px 0; }
.admin-tracking-mode-field small { display: block; margin-top: 7px; color: #6d6d6d; font-size: 8px; line-height: 1.45; }
.admin-year-auto-badge { display: grid; grid-template-columns: 28px 1fr; align-items: center; gap: 9px; min-height: 64px; padding: 10px; border: 1px solid rgba(255,255,255,.08); background: rgba(0,0,0,.16); }
.admin-year-auto-badge > i { display: grid; width: 28px; height: 28px; place-items: center; color: #9dffa8; }
.admin-year-auto-badge span { display: grid; gap: 3px; }
.admin-year-auto-badge b { font-size: 9px; }
.admin-year-auto-badge small { color: #646464; font-size: 7px; line-height: 1.35; }

@media (max-width: 1180px) {
    .home-year-links-shell { grid-template-columns: 1fr; }
    .year-page-hero-grid { gap: 40px; }
    .year-page-metric-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
    .admin-tracking-readiness { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
    .year-page-hero-grid,
    .year-tracking-grid { grid-template-columns: 1fr; }
    .year-page-summary { width: 100%; max-width: none; }
    .yearly-page-grid { grid-template-columns: 1fr; }
    .year-navigation-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
    .home-year-button-grid { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
    .home-year-links-shell { padding: 19px; }
    .home-year-button { grid-template-columns: auto minmax(0,1fr) 20px; min-height: 90px; }
    .home-year-button-stats:nth-of-type(3) { display: none; }
    .year-page-hero { padding-top: calc(var(--header-h) + 46px); }
    .year-page-copy h1 { font-size: clamp(44px, 15vw, 70px); }
    .year-page-metric-grid,
    .year-navigation-grid { grid-template-columns: 1fr; }
    .year-page-metric { min-height: 230px; }
    .year-page-summary-meta { grid-template-columns: 1fr; }
    .year-page-summary-meta span + span { border-top: 1px solid rgba(255,255,255,.09); border-left: 0; }
    .hero-insight-grid article,
    .hero-profile-stats article { padding: 18px 19px; }
    .creator-card-v8,
    .moderation-card-v8,
    .event-card-v8 { padding-inline: 17px; }
}

/* Status labels stay compact, but match the sharper visual language. */
.stream-status,
.event-status-v8,
.moderation-badges-v8 span,
.updated-label,
.hero-tag,
.overview-index { border-radius: 4px !important; }

/* ========================================================================== 
   V16 — Final polish: roomy snapshot cards, annual-link spacing and icon alignment
   ========================================================================== */

/* The compact Discord action remains icon-only, but is now a true centred square. */
.nav-discord {
    position: relative;
    display: grid !important;
    width: 44px;
    min-width: 44px;
    height: 44px;
    min-height: 44px;
    padding: 0 !important;
    place-items: center;
    align-self: center;
    overflow: hidden;
    line-height: 1;
}
.nav-discord > i {
    display: grid;
    width: 20px;
    height: 20px;
    place-items: center;
    margin: 0;
    line-height: 1;
    text-align: center;
}
.nav-discord > i::before { display: block; line-height: 20px; }

/* Give the About-page performance card enough room for complete values such as 196,9 Mio. */
@media (min-width: 1181px) {
    .page-about .subpage-hero-grid {
        grid-template-columns: minmax(0, 1.08fr) minmax(500px, .82fr);
        gap: clamp(42px, 5vw, 76px);
    }
    .page-about .hero-profile-card {
        width: 100%;
        max-width: 540px;
    }
}
.page-about .hero-profile-stats {
    gap: 12px;
    padding: 14px;
}
.page-about .hero-profile-stats article {
    min-height: 118px;
    padding: 21px 22px;
}
.page-about .hero-profile-stats strong {
    overflow: visible;
    max-width: none;
    font-size: clamp(26px, 2.15vw, 34px);
    line-height: 1;
    text-overflow: clip;
    white-space: nowrap;
}

/* Annual shortcuts: clearer spacing between year, metrics and action. */
.home-year-links-shell {
    grid-template-columns: minmax(330px, .82fr) minmax(0, 1.48fr);
    gap: clamp(34px, 4vw, 56px);
    padding: 31px 32px;
}
.home-year-button-grid { gap: 18px; }
.home-year-button {
    grid-template-columns: 70px minmax(108px, 1fr) minmax(92px, .9fr) 24px;
    gap: 18px;
    min-height: 108px;
    padding: 20px 23px;
}
.home-year-button-year {
    align-self: stretch;
    display: flex;
    align-items: center;
    padding-right: 18px;
    border-right: 1px solid rgba(255,255,255,.09);
}
.home-year-button-stats {
    min-width: 0;
    padding-left: 2px;
}
.home-year-button-stats + .home-year-button-stats {
    padding-left: 18px;
    border-left: 1px solid rgba(255,255,255,.075);
}
.home-year-button-stats b {
    overflow: visible;
    font-size: clamp(16px, 1.25vw, 19px);
    line-height: 1.08;
    text-overflow: clip;
    white-space: nowrap;
}
.home-year-button > i { justify-self: end; }

/* Dashboard icon boxes: centre the Font Awesome glyph, not only its wrapper. */
.admin-v3 .social-form-icon,
.admin-v3 .admin-stat-icon,
.admin-v3 .admin-network-icon,
.admin-v3 .admin-security-mark,
.admin-v3 .admin-settings-grid .panel-head > i,
.admin-v3 .admin-year-stats-heading > i,
.admin-v3 .admin-tracking-readiness article > i,
.admin-v3 .admin-tip-card > i {
    box-sizing: border-box;
    display: inline-grid;
    place-items: center;
    padding: 0;
    line-height: 1;
    text-align: center;
}
.admin-v3 .social-form-icon > i,
.admin-v3 .admin-stat-icon::before,
.admin-v3 .admin-network-icon::before,
.admin-v3 .admin-security-mark::before,
.admin-v3 .admin-settings-grid .panel-head > i::before,
.admin-v3 .admin-year-stats-heading > i::before,
.admin-v3 .admin-tracking-readiness article > i::before,
.admin-v3 .admin-tip-card > i::before {
    display: block;
    width: 1em;
    height: 1em;
    margin: 0;
    line-height: 1;
    text-align: center;
}
.admin-v3 .social-form-icon > i {
    display: grid;
    width: 100%;
    height: 100%;
    place-items: center;
}
.admin-v3 .social-form-icon > i::before {
    display: block;
    width: 1em;
    height: 1em;
    line-height: 1;
}

@media (max-width: 1180px) {
    .home-year-links-shell { grid-template-columns: 1fr; gap: 24px; }
    .home-year-button-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 760px) {
    .home-year-links-shell { padding: 22px; }
    .home-year-button-grid { grid-template-columns: 1fr; gap: 12px; }
    .home-year-button {
        grid-template-columns: 62px minmax(0, 1fr) minmax(0, .85fr) 20px;
        gap: 13px;
        padding: 18px;
    }
    .home-year-button-year { padding-right: 12px; }
    .home-year-button-stats + .home-year-button-stats { display: grid; padding-left: 12px; }
    .page-about .hero-profile-stats strong { font-size: clamp(24px, 7.4vw, 31px); }
}
@media (max-width: 520px) {
    .home-year-button { grid-template-columns: 58px minmax(0, 1fr) 18px; }
    .home-year-button-stats + .home-year-button-stats { display: none; }
    .page-about .hero-profile-stats article { padding: 18px 16px; }
    .page-about .hero-profile-stats strong { font-size: clamp(21px, 6.7vw, 28px); }
}

/* Small alignment corrections after final cross-browser review. */
.home-year-button { grid-template-columns: 62px minmax(0, 1.08fr) minmax(0, .92fr) 20px; }
.admin-v3 .admin-stat-icon > i,
.admin-v3 .admin-network-icon > i,
.admin-v3 .admin-security-mark > i,
.admin-v3 .social-form-icon > i,
.admin-v3 .panel-head > i {
    margin: 0;
    line-height: 1;
    vertical-align: 0;
}
.admin-v3 .admin-stat-icon > i,
.admin-v3 .admin-network-icon > i,
.admin-v3 .admin-security-mark > i {
    display: grid;
    width: 100%;
    height: 100%;
    place-items: center;
}
.admin-v3 .admin-stat-icon > i::before,
.admin-v3 .admin-network-icon > i::before,
.admin-v3 .admin-security-mark > i::before {
    display: block;
    width: 1em;
    height: 1em;
    line-height: 1;
}

/* Final annual-card proportions: enough room for values like 196,9 Mio. and 52,1 Tsd. */
@media (min-width: 1181px) {
    .home-year-links-shell { grid-template-columns: minmax(320px, .72fr) minmax(0, 1.65fr); }
}
.home-year-button {
    grid-template-columns: 50px minmax(0, 1.25fr) minmax(0, 1fr) 16px;
    gap: 12px;
    padding-inline: 18px;
}
.home-year-button-year { padding-right: 11px; }
.home-year-button-stats + .home-year-button-stats { padding-left: 11px; }
.home-year-button > i { font-size: 10px; }
.home-year-button {
    grid-template-columns: 68px minmax(0, 1.25fr) minmax(0, 1fr) 16px;
    gap: 14px;
}

/* ========================================================================== 
   V17 — cache-safe final layout and clean, roomy metric presentation
   ========================================================================== */

/* About snapshot: allocate enough actual width for long formatted values. */
@media (min-width: 1021px) {
    .page-about .subpage-hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(590px, 680px) !important;
        gap: clamp(52px, 6vw, 92px) !important;
    }
    .page-about .hero-profile-card {
        width: 100% !important;
        max-width: 680px !important;
        justify-self: end !important;
    }
}
.page-about .hero-profile-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 14px !important;
    padding: 16px !important;
}
.page-about .hero-profile-stats article {
    min-width: 0 !important;
    min-height: 128px !important;
    padding: 24px 27px !important;
    border: 1px solid rgba(255,255,255,.09) !important;
}
.page-about .hero-profile-stats strong {
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    overflow: visible !important;
    font-size: clamp(28px, 2.3vw, 38px) !important;
    line-height: 1.05 !important;
    letter-spacing: -.055em !important;
    text-overflow: clip !important;
    white-space: nowrap !important;
}

/* Annual shortcuts: metrics have their own columns and no value is ellipsized. */
.home-year-links-shell {
    grid-template-columns: minmax(360px, .8fr) minmax(720px, 1.55fr) !important;
    gap: clamp(44px, 5vw, 76px) !important;
    padding: 38px 40px !important;
}
.home-year-button-grid {
    gap: 20px !important;
}
.home-year-button {
    grid-template-columns: 76px minmax(130px, 1.25fr) minmax(110px, 1fr) 22px !important;
    gap: 22px !important;
    min-height: 116px !important;
    padding: 22px 24px !important;
}
.home-year-button-year {
    padding-right: 20px !important;
}
.home-year-button-stats {
    min-width: 0 !important;
    padding-left: 0 !important;
}
.home-year-button-stats + .home-year-button-stats {
    padding-left: 22px !important;
}
.home-year-button-stats b {
    display: block !important;
    overflow: visible !important;
    max-width: none !important;
    font-size: clamp(17px, 1.3vw, 21px) !important;
    line-height: 1.08 !important;
    text-overflow: clip !important;
    white-space: nowrap !important;
}

/* Header Discord action: a centred icon with a reliable clickable square. */
.nav-discord {
    display: inline-grid !important;
    width: 44px !important;
    min-width: 44px !important;
    height: 44px !important;
    min-height: 44px !important;
    padding: 0 !important;
    place-items: center !important;
    line-height: 1 !important;
}
.nav-discord > i,
.nav-discord > i::before {
    display: block !important;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    line-height: 1 !important;
    text-align: center !important;
}
.nav-discord > span { display: none !important; }

/* Dashboard icon frames: centre both wrapper and Font Awesome glyph. */
.admin-v3 .social-form-icon,
.admin-v3 .admin-stat-icon,
.admin-v3 .admin-network-icon,
.admin-v3 .admin-security-mark,
.admin-v3 .panel-head > i,
.admin-v3 .admin-year-stats-heading > i,
.admin-v3 .admin-tracking-readiness article > i,
.admin-v3 .admin-tip-card > i {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    line-height: 1 !important;
    text-align: center !important;
}
.admin-v3 .social-form-icon > i,
.admin-v3 .admin-stat-icon > i,
.admin-v3 .admin-network-icon > i,
.admin-v3 .admin-security-mark > i,
.admin-v3 .panel-head > i::before,
.admin-v3 .admin-year-stats-heading > i::before,
.admin-v3 .admin-tracking-readiness article > i::before,
.admin-v3 .admin-tip-card > i::before {
    display: block !important;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    line-height: 1 !important;
    transform: none !important;
}
.admin-v3 .social-form-icon > i {
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

@media (max-width: 1420px) {
    .home-year-links-shell {
        grid-template-columns: 1fr !important;
        gap: 28px !important;
    }
}
@media (max-width: 820px) {
    .home-year-button-grid { grid-template-columns: 1fr !important; }
    .home-year-button {
        grid-template-columns: 70px minmax(0, 1.25fr) minmax(0, 1fr) 20px !important;
        gap: 16px !important;
    }
}
@media (max-width: 560px) {
    .home-year-links-shell { padding: 24px 20px !important; }
    .home-year-button {
        grid-template-columns: 62px minmax(0, 1fr) 18px !important;
        min-height: 98px !important;
        padding: 18px !important;
    }
    .home-year-button-stats + .home-year-button-stats { display: none !important; }
    .page-about .hero-profile-stats article { padding: 19px 17px !important; }
    .page-about .hero-profile-stats strong { font-size: clamp(22px, 7vw, 29px) !important; }
}

/* ========================================================================== 
   V18 — definitive metric layout fix
   Keeps every formatted number readable, prevents clipped values and keeps
   all status / year cards inside their parent container at every breakpoint.
   ========================================================================== */

/* The right-hand snapshot must have real space, not only a larger outer grid. */
.hero-insight-card,
.hero-profile-card {
    width: 100% !important;
    max-width: 560px !important;
}

@media (min-width: 1021px) {
    body:not(.page-home) .subpage-hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(520px, 560px) !important;
        gap: clamp(46px, 5vw, 82px) !important;
    }
}

.hero-insight-grid,
.hero-profile-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
    padding: 14px !important;
}

.hero-insight-grid article,
.hero-profile-stats article {
    min-width: 0 !important;
    min-height: 122px !important;
    padding: 22px 24px !important;
    overflow: visible !important;
}

.hero-insight-grid strong,
.hero-profile-stats strong {
    display: block !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    overflow: visible !important;
    font-size: clamp(22px, 1.72vw, 32px) !important;
    line-height: 1.04 !important;
    letter-spacing: -.052em !important;
    text-overflow: clip !important;
    white-space: nowrap !important;
}

.hero-insight-grid span,
.hero-profile-stats span {
    max-width: 100% !important;
    padding-right: 0 !important;
}

/* Homepage annual shortcuts: fixed-width intro + fluid cards, never overflow. */
.home-year-links-shell {
    grid-template-columns: minmax(285px, 345px) minmax(0, 1fr) !important;
    align-items: center !important;
    gap: clamp(30px, 3.4vw, 48px) !important;
    padding: 34px 36px !important;
    overflow: hidden !important;
}

.home-year-button-grid {
    min-width: 0 !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 14px !important;
}

.home-year-button {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    grid-template-columns: 82px minmax(0, 1.12fr) minmax(0, .88fr) 16px !important;
    gap: 12px !important;
    min-height: 108px !important;
    padding: 18px 18px !important;
    overflow: hidden !important;
}

.home-year-button-year {
    min-width: 0 !important;
    padding-right: 16px !important;
    font-size: clamp(22px, 1.65vw, 27px) !important;
}

.home-year-button-stats,
.home-year-button-stats + .home-year-button-stats {
    min-width: 0 !important;
    padding-left: 0 !important;
}

.home-year-button-stats + .home-year-button-stats {
    padding-left: 12px !important;
}

.home-year-button-stats b {
    display: block !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    overflow: visible !important;
    font-size: clamp(14px, 1.05vw, 18px) !important;
    line-height: 1.08 !important;
    letter-spacing: -.035em !important;
    text-overflow: clip !important;
    white-space: nowrap !important;
}

.home-year-button > i {
    justify-self: end !important;
    align-self: center !important;
}

/* No statistic is ever shortened with three dots. JS only scales if needed. */
.year-stat-grid strong,
.yearly-page-card-values b,
.year-page-metric > strong,
.total-counter strong,
.stats-total-card strong,
.stat-card strong,
.clip-library-grid strong,
.directory-hero-metrics strong,
.admin-stat-grid strong {
    max-width: none !important;
    overflow: visible !important;
    text-overflow: clip !important;
    white-space: nowrap !important;
}

/* Better tablet behaviour: stack the copy before cards become cramped. */
@media (max-width: 1320px) {
    .home-year-links-shell {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }
    .home-year-links-copy { max-width: 720px; }
}

@media (max-width: 820px) {
    .hero-insight-card,
    .hero-profile-card { max-width: 100% !important; }
    .hero-insight-grid article,
    .hero-profile-stats article {
        min-height: 108px !important;
        padding: 18px 19px !important;
    }
    .hero-insight-grid strong,
    .hero-profile-stats strong {
        font-size: clamp(21px, 6vw, 30px) !important;
    }
    .home-year-button-grid { grid-template-columns: 1fr !important; }
    .home-year-button {
        grid-template-columns: 78px minmax(0, 1.15fr) minmax(0, .85fr) 18px !important;
    }
}

@media (max-width: 560px) {
    .home-year-links-shell { padding: 22px 18px !important; }
    .home-year-button {
        grid-template-columns: 64px minmax(0, 1fr) 18px !important;
        gap: 12px !important;
        padding: 17px !important;
    }
    .home-year-button-stats + .home-year-button-stats { display: none !important; }
    .hero-insight-grid,
    .hero-profile-stats { gap: 8px !important; padding: 9px !important; }
    .hero-insight-grid article,
    .hero-profile-stats article {
        min-height: 98px !important;
        padding: 15px 14px !important;
    }
    .hero-insight-grid strong,
    .hero-profile-stats strong {
        font-size: clamp(19px, 6.4vw, 27px) !important;
    }
}


/* ===== V19 ADMIN UX + EVENT DETAIL POLISH ===== */
.admin-image-placeholder {
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: cover !important;
    overflow: hidden;
}
.admin-image-placeholder.has-preview > * { opacity: 0; }

/* Compact action row: no oversized empty checkbox blocks. */
.admin-form-bottom-v9 {
    grid-template-columns: 120px auto auto max-content !important;
    align-items: end !important;
    gap: 12px !important;
    padding-top: 18px !important;
}
.admin-form-bottom-v9 .check-field-inline {
    min-height: 58px !important;
    width: auto !important;
    padding: 12px 14px !important;
    border-radius: 9px !important;
}
.admin-form-bottom-v9 .check-field-inline span { min-width: 150px; }
.admin-form-bottom-v9 .button { min-height: 52px; align-self: end; white-space: nowrap; }
.admin-event-add .admin-form-bottom-v9 { grid-template-columns: 120px minmax(220px, 310px) max-content !important; }

/* Preserve a balanced amount of air between annual cards and ticker. */
.home-year-links { padding-bottom: 46px !important; }
.home-year-links + .platform-ticker,
.home-year-links + section .platform-ticker { margin-top: 24px !important; }

/* Event list gets a dedicated detail action and full readable copy. */
.event-card-v8 > p {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    min-height: 88px;
    overflow: hidden;
}
.event-detail-button-v19 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 48px;
    margin: 2px 0 14px;
    padding: 0 15px;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 8px;
    color: #fff;
    background: rgba(255,255,255,.025);
    font-size: 12px;
    font-weight: 750;
    transition: .2s ease;
}
.event-detail-button-v19:hover { background: #fff; color: #080808; transform: translateY(-1px); }
.event-detail-button-v19 span { display:flex; align-items:center; gap:10px; }

.event-detail-page-v19 { overflow: hidden; }
.event-detail-hero-v19 { padding-top: clamp(76px, 9vw, 132px); }
.event-detail-hero-grid-v19 { display:grid; grid-template-columns:minmax(0,1.35fr) minmax(320px,.65fr); gap:clamp(38px,7vw,110px); align-items:center; }
.event-detail-copy-v19 h1 { max-width: 920px; margin: 20px 0 12px; font-size:clamp(48px,7vw,104px); line-height:.92; letter-spacing:-.065em; }
.event-detail-back-v19 { display:inline-flex; align-items:center; gap:9px; color:#9d9d9d; font-size:12px; margin-bottom:28px; }
.event-detail-organizer-v19 { color:#9b9b9b; font-size:clamp(15px,1.4vw,20px); }
.event-detail-organizer-v19 strong { color:#fff; }
.event-detail-description-v19 { max-width:840px; margin-top:28px; color:#b7b7b7; font-size:clamp(16px,1.25vw,19px); line-height:1.8; }
.event-detail-actions-v19 { display:flex; flex-wrap:wrap; gap:12px; margin-top:34px; }
.event-detail-card-v19 { position:relative; padding:28px; border:1px solid rgba(255,255,255,.16); border-radius:16px; background:linear-gradient(145deg,rgba(255,255,255,.06),rgba(255,255,255,.015)); }
.event-detail-logo-wrap-v19 { width:126px; height:126px; margin-bottom:26px; border-radius:50%; overflow:hidden; background:#151515; }
.event-detail-logo-wrap-v19 img { width:100%; height:100%; object-fit:cover; }
.event-detail-card-v19 .event-status-v8 { position:absolute; top:28px; right:28px; }
.event-detail-card-v19 dl { display:grid; margin:0; }
.event-detail-card-v19 dl div { display:grid; grid-template-columns:1fr auto; gap:18px; padding:17px 0; border-top:1px solid rgba(255,255,255,.09); }
.event-detail-card-v19 dt { color:#777; font-size:11px; }
.event-detail-card-v19 dt i { width:19px; color:#aaa; }
.event-detail-card-v19 dd { margin:0; color:#fff; font-size:13px; font-weight:700; text-align:right; }
.event-stream-section-v19 { border-top:1px solid rgba(255,255,255,.08); }
.event-stream-grid-v19 { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:12px; }
.event-stream-grid-v19 a { display:grid; grid-template-columns:42px 1fr auto; align-items:center; gap:14px; min-height:84px; padding:17px; border:1px solid rgba(145,70,255,.3); border-radius:10px; background:rgba(145,70,255,.055); }
.event-stream-grid-v19 a > i:first-child { display:grid; place-items:center; width:42px; height:42px; background:#9146ff; border-radius:8px; color:#fff; }
.event-stream-grid-v19 span { display:grid; gap:4px; }
.event-stream-grid-v19 small { color:#8c8c8c; font-size:9px; letter-spacing:.16em; }
.event-stream-grid-v19 strong { color:#fff; font-size:15px; }
.event-detail-cta-v19 .shell { display:flex; justify-content:space-between; align-items:center; gap:28px; padding:34px; border:1px solid rgba(255,255,255,.12); border-radius:14px; background:rgba(255,255,255,.025); }
.event-detail-cta-v19 span { color:#777; font-size:10px; letter-spacing:.2em; }
.event-detail-cta-v19 h2 { max-width:760px; margin:8px 0 0; font-size:clamp(28px,3vw,48px); }
.event-detail-not-found { text-align:center; padding-block:100px; }
.event-detail-not-found > span { color:#555; font-size:12px; letter-spacing:.3em; }
.event-detail-not-found h1 { font-size:clamp(42px,7vw,90px); margin:14px 0; }

@media (max-width: 1050px) {
  .admin-form-bottom-v9, .admin-event-add .admin-form-bottom-v9 { grid-template-columns:repeat(2,minmax(0,1fr)) !important; }
  .admin-form-bottom-v9 .button { width:100%; }
  .event-detail-hero-grid-v19 { grid-template-columns:1fr; }
  .event-detail-card-v19 { max-width:640px; }
  .event-stream-grid-v19 { grid-template-columns:repeat(2,minmax(0,1fr)); }
}
@media (max-width: 650px) {
  .admin-form-bottom-v9, .admin-event-add .admin-form-bottom-v9 { grid-template-columns:1fr !important; }
  .admin-form-bottom-v9 .check-field-inline span { min-width:0; }
  .home-year-links { padding-bottom:30px !important; }
  .event-detail-hero-v19 { padding-top:54px; }
  .event-detail-card-v19 { padding:21px; }
  .event-detail-card-v19 .event-status-v8 { top:21px; right:21px; }
  .event-detail-logo-wrap-v19 { width:96px; height:96px; }
  .event-stream-grid-v19 { grid-template-columns:1fr; }
  .event-detail-cta-v19 .shell { display:grid; padding:24px; }
}
