:root {
    --scanline-color: rgba(0, 255, 65, 0.06); /* Keep the user's specific scanline color */
    --primary-color: #00ff41; /* Bright PVS Green */
    --accent-color: #00ff41;
    --bg-overlay: rgba(0, 0, 0, 0.8);
    --grid-color: rgba(0, 255, 65, 0.1);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(0, 255, 65, 0.2);
    --text-color: #ffffff;
    --font-main: 'Tektur', sans-serif;
    --font-heading: 'Tektur', sans-serif;
    --font-brand: 'Furore', 'Tektur', sans-serif;
    --transition: all 0.42s cubic-bezier(0.22, 1, 0.36, 1);
    --card-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    --glow-color: rgba(0, 255, 65, 0.3);
    --content-width: 1500px;
    --section-gutter: 32px;
    --section-pad-block: clamp(72px, 8vw, 100px);
    --section-pad-inline: clamp(16px, 3vw, 36px);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #050505;
    color: var(--text-color);
    font-family: var(--font-main);
    overflow-x: hidden;
    width: 100%;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/assets/optimized/bg-900.jpg');
    background-size: cover;
    background-position: center;
    z-index: -2;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-overlay);
    z-index: -1;
}

.background-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(var(--grid-color) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: 1;
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 10px 12px;
    z-index: 100;
}

nav.glass {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 0;
    background: transparent;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    border: 0;
    border-radius: 0;
}

.nav-support-link {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 8px 18px;
    border-radius: 10px;
    border: 1px solid rgba(0, 255, 65, 0.5);
    background: linear-gradient(145deg, rgba(8, 20, 11, 0.9), rgba(5, 10, 7, 0.86));
    color: #dcffe6;
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 0.78rem;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    text-shadow: 0 0 8px rgba(0, 255, 65, 0.32);
    box-shadow:
        inset 0 0 0 1px rgba(0, 255, 65, 0.1),
        0 8px 18px rgba(0, 0, 0, 0.28),
        0 0 14px rgba(0, 255, 65, 0.16);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.nav-support-link:hover,
.nav-support-link:focus-visible {
    color: #031106;
    background: linear-gradient(145deg, #00ff41, #7dff9a);
    box-shadow:
        0 12px 22px rgba(0, 255, 65, 0.3),
        0 0 16px rgba(0, 255, 65, 0.28);
    transform: translateX(-50%) translateY(-2px);
    text-shadow: none;
}

.nav-support-link:focus-visible {
    outline: 2px solid rgba(125, 255, 154, 0.75);
    outline-offset: 2px;
}

.nav-logo {
    height: 40px;
    width: auto;
    filter: drop-shadow(0 0 5px var(--primary-color));
}

.btn.nav-join-btn {
    padding: 9px 14px;
    margin-top: 0;
    font-size: 0.7rem;
    letter-spacing: 1px;
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    align-self: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 255, 65, 0.52);
    color: #dcffe6;
    background: linear-gradient(165deg, rgba(8, 18, 10, 0.92), rgba(5, 10, 7, 0.88));
    box-shadow:
        inset 0 0 0 1px rgba(0, 255, 65, 0.08),
        0 8px 18px rgba(0, 0, 0, 0.28),
        0 0 12px rgba(0, 255, 65, 0.16);
    text-shadow: 0 0 8px rgba(0, 255, 65, 0.35);
    transition: transform 0.25s ease, box-shadow 0.28s ease, background 0.28s ease, color 0.28s ease, border-color 0.28s ease;
}

.btn.nav-join-btn::before {
    content: '';
    position: absolute;
    inset: -1px auto -1px -35%;
    width: 38%;
    transform: skewX(-22deg);
    background: linear-gradient(90deg, transparent, rgba(0, 255, 65, 0.28), transparent);
    opacity: 0.45;
    transition: left 0.45s ease;
    pointer-events: none;
}

.btn.nav-join-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(var(--primary-color), var(--primary-color)) 8px 8px / 10px 1px no-repeat,
        linear-gradient(var(--primary-color), var(--primary-color)) 8px 8px / 1px 10px no-repeat,
        linear-gradient(var(--primary-color), var(--primary-color)) calc(100% - 8px) calc(100% - 8px) / 10px 1px no-repeat,
        linear-gradient(var(--primary-color), var(--primary-color)) calc(100% - 8px) calc(100% - 8px) / 1px 10px no-repeat;
    opacity: 0.58;
    pointer-events: none;
}

.btn.nav-join-btn:hover,
.btn.nav-join-btn:focus-visible {
    color: #031106;
    border-color: rgba(0, 255, 65, 0.78);
    background: linear-gradient(145deg, #00ff41, #7dff9a);
    box-shadow:
        0 12px 24px rgba(0, 255, 65, 0.32),
        0 0 16px rgba(0, 255, 65, 0.28);
    transform: translateY(-2px);
    text-shadow: none;
}

.btn.nav-join-btn:hover::before,
.btn.nav-join-btn:focus-visible::before {
    left: 105%;
}

a.btn.btn-small.nav-join-btn {
    margin-top: 0;
}

.hero-logo-wrapper {
    margin-bottom: 20px;
    /*animation: float 6s ease-in-out infinite;*/
}

.hero-logo {
    display: block;
    width: clamp(170px, 16vw, 220px);
    max-width: 70vw;
    height: auto;
    margin: 0 auto;
    filter: drop-shadow(0 0 20px var(--primary-color));
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

nav ul {
    display: flex;
    flex-direction: column;
    list-style: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: min(400px, 100%);
    height: 100vh;
    background: rgba(5, 5, 5, 0.98);
    -webkit-backdrop-filter: blur(25px);
    backdrop-filter: blur(25px);
    justify-content: flex-start;
    align-items: center;
    transition: 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 100;
    padding: 86px 20px 20px;
    margin: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

nav ul.active {
    right: 0;
}

nav ul li {
    margin: 12px 0;
    opacity: 0;
    transform: translateX(40px);
    transition: 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

nav ul.active li {
    opacity: 1;
    transform: translateX(0);
}

nav ul.active li:nth-child(1) { transition-delay: 0.1s; }
nav ul.active li:nth-child(2) { transition-delay: 0.15s; }
nav ul.active li:nth-child(3) { transition-delay: 0.2s; }
nav ul.active li:nth-child(4) { transition-delay: 0.25s; }
nav ul.active li:nth-child(5) { transition-delay: 0.3s; }
nav ul.active li:nth-child(6) { transition-delay: 0.35s; }
nav ul.active li:nth-child(7) { transition-delay: 0.4s; }
nav ul.active li:nth-child(8) { transition-delay: 0.45s; }
nav ul.active li:nth-child(9) { transition-delay: 0.5s; }
nav ul.active li:nth-child(10) { transition-delay: 0.55s; }
nav ul.active li:nth-child(11) { transition-delay: 0.6s; }

nav ul li a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 1.4rem;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition);
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    box-shadow: 0 0 10px var(--primary-color);
    transition: var(--transition);
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--primary-color);
    text-shadow: 0 0 5px var(--primary-color);
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

.hero {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 20px 60px;
}

main > section:not(.hero) {
    content-visibility: auto;
    contain-intrinsic-size: auto 900px;
}

body.anchor-jump main > section {
    content-visibility: visible !important;
    contain-intrinsic-size: auto !important;
}

.hero .content.glass-card {
    width: min(var(--content-width), calc(100vw - (var(--section-gutter) * 2)));
    max-width: none;
    padding: clamp(28px, 4vw, 56px);
}

.glass-card {
    background: var(--glass-bg);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 50px;
    max-width: 800px;
    box-shadow: var(--card-shadow);
    position: relative;
    overflow: hidden;
    transition: var(--transition), border-color 0.3s ease;
}

.glass-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.glass-card:hover {
    border-color: rgba(0, 255, 65, 0.4);
    box-shadow: 0 0 30px var(--glow-color);
}

.glass-card:hover::after {
    transform: translateX(100%);
}

.hero h1 {
    font-family: var(--font-brand);
    font-size: 5rem;
    margin-bottom: 10px;
    letter-spacing: 10px;
    color: var(--text-color);
    position: relative;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--primary-color);
    letter-spacing: 5px;
    margin-bottom: 20px;
}

.divider {
    height: 2px;
    width: 60px;
    background: var(--primary-color);
    margin: 20px auto;
    box-shadow: 0 0 10px var(--primary-color);
}

.description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.8;
}

/* HUD elements */
.hud-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.4;
}

.hud-line {
    position: absolute;
    background: var(--primary-color);
    box-shadow: 0 0 10px var(--primary-color);
}

.hud-line.top {
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
}

.hud-line.top::before {
    content: 'HDG 342В°';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-heading);
    font-size: 0.6rem;
    color: var(--primary-color);
}

.hud-line.bottom {
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
}

.hud-bracket {
    position: absolute;
    width: 0;
    height: 100px;
    border: 1px solid var(--primary-color);
    box-shadow: 0 0 10px var(--glow-color);
}

.hud-bracket.left {
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    border-right: none;
}

.hud-bracket.right {
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    border-left: none;
}

.hud-data {
    position: absolute;
    font-family: var(--font-heading);
    font-size: 0.7rem;
    color: var(--primary-color);
    text-align: left;
    line-height: 1.4;
    text-shadow: 0 0 5px var(--primary-color);
}

.hud-data.top-right {
    top: 60px;
    right: 60px;
    text-align: right;
}

.hud-data.bottom-left {
    bottom: 60px;
    left: 60px;
}

.btn {
    display: inline-block;
    padding: 12px 35px;
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 5px;
    transition: var(--transition);
}

.btn:hover {
    background: var(--primary-color);
    color: #000;
    box-shadow: 0 0 20px var(--primary-color);
    transform: translateY(-3px);
}

.btn-small {
    padding: 8px 20px;
    font-size: 0.7rem;
    margin-top: 15px;
}

.details {
    padding: var(--section-pad-block) var(--section-pad-inline);
}

.about-modern {
    width: min(calc(var(--content-width) + 220px), calc(100vw - 24px));
    max-width: none;
    margin: 0 auto;
    padding: clamp(26px, 4vw, 48px);
    background:
        radial-gradient(circle at 10% 10%, rgba(0, 255, 65, 0.14), transparent 28%),
        radial-gradient(circle at 88% 88%, rgba(0, 255, 65, 0.11), transparent 32%),
        linear-gradient(145deg, rgba(0, 255, 65, 0.05), rgba(255, 255, 255, 0.015)),
        var(--glass-bg);
}

.about-modern-head {
    max-width: 900px;
    margin: 0 auto 24px;
    text-align: center;
}

.about-kicker {
    display: inline-block;
    font-family: var(--font-heading);
    letter-spacing: 2px;
    font-size: 0.72rem;
    color: var(--primary-color);
    border: 1px solid var(--glass-border);
    border-radius: 999px;
    padding: 6px 12px;
    margin-bottom: 14px;
}

.about-lead {
    font-size: clamp(1rem, 2.2vw, 1.28rem);
    line-height: 1.65;
    opacity: 0.9;
}

.about-modern-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.about-modern-badges span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(0, 255, 65, 0.25);
    background: rgba(0, 255, 65, 0.07);
    border-radius: 999px;
    padding: 8px 12px;
    font-size: 0.8rem;
    color: #dcffe5;
}

.about-modern-grid {
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 14px;
    margin-bottom: 18px;
}

.about-modern-panel {
    border: 1px solid rgba(0, 255, 65, 0.22);
    border-radius: 14px;
    background: rgba(0, 255, 65, 0.05);
    padding: 18px;
}

.about-modern-panel h3 {
    margin: 0 0 10px;
    color: var(--primary-color);
    letter-spacing: 0.6px;
    font-size: 1.03rem;
}

.about-modern-panel p {
    margin: 0 0 12px;
    line-height: 1.65;
    opacity: 0.88;
}

.about-modern-list {
    list-style: none;
    display: grid;
    gap: 8px;
}

.about-modern-list li {
    border: 1px solid rgba(0, 255, 65, 0.18);
    border-radius: 9px;
    background: rgba(0, 255, 65, 0.04);
    padding: 9px 11px;
    font-size: 0.88rem;
}

.about-modern-metrics {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.about-metric {
    border: 1px solid rgba(0, 255, 65, 0.24);
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(0, 255, 65, 0.1), rgba(255, 255, 255, 0.015));
    padding: 15px 14px;
    display: grid;
    gap: 4px;
}

.about-metric-value {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    line-height: 1;
    color: #e9ffef;
    text-shadow: 0 0 14px rgba(0, 255, 65, 0.35);
}

.about-metric-label {
    font-size: 0.8rem;
    opacity: 0.84;
}

.about-gallery-slider {
    width: 100%;
    border-radius: 14px;
    border: 1px solid rgba(0, 255, 65, 0.2);
    background: rgba(0, 255, 65, 0.04);
    padding: 14px;
    position: relative;
}

.about-gallery-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

.about-gallery-head h3 {
    font-size: 0.95rem;
    letter-spacing: 0.8px;
    color: #ddffe7;
}

.about-gallery-controls {
    display: flex;
    gap: 8px;
    position: absolute;
    left: 8px;
    right: 8px;
    top: 50%;
    transform: translateY(-8%);
    justify-content: space-between;
    pointer-events: none;
    z-index: 4;
}

.about-gallery-btn {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    line-height: 1;
    border-radius: 50%;
    border: 1px solid rgba(0, 255, 65, 0.5);
    background: linear-gradient(160deg, rgba(5, 12, 7, 0.95), rgba(3, 7, 5, 0.9));
    color: var(--primary-color);
    cursor: pointer;
    pointer-events: auto;
    transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35), 0 0 14px rgba(0, 255, 65, 0.2);
}

.about-gallery-btn:hover {
    transform: scale(1.05);
    border-color: rgba(0, 255, 65, 0.65);
    background: linear-gradient(145deg, #00ff41, #86ffa7);
    color: #041507;
    box-shadow: 0 10px 24px rgba(0, 255, 65, 0.32);
}

.about-gallery-viewport {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 255, 65, 0.75) rgba(3, 12, 6, 0.75);
    padding-bottom: 4px;
}

.about-gallery-viewport::-webkit-scrollbar {
    height: 10px;
}

.about-gallery-viewport::-webkit-scrollbar-track {
    background: linear-gradient(180deg, rgba(3, 12, 6, 0.8), rgba(1, 6, 3, 0.85));
    border: 1px solid rgba(0, 255, 65, 0.2);
    border-radius: 999px;
}

.about-gallery-viewport::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, rgba(0, 255, 65, 0.75), rgba(134, 255, 167, 0.9));
    border-radius: 999px;
    border: 1px solid rgba(0, 255, 65, 0.45);
    box-shadow: 0 0 10px rgba(0, 255, 65, 0.35);
}

.about-gallery-viewport::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(90deg, rgba(0, 255, 65, 0.9), rgba(182, 255, 200, 0.95));
}

.about-gallery-track {
    display: flex;
    align-items: center;
    gap: 12px;
    width: max-content;
}

.about-slide {
    flex: 0 0 clamp(250px, 30vw, 380px);
    height: clamp(180px, 21vw, 280px);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(0, 255, 65, 0.28);
    background: rgba(255, 255, 255, 0.02);
    scroll-snap-align: start;
    position: relative;
}

.about-slide-btn {
    width: 100%;
    height: 100%;
    border: 0;
    background: transparent;
    padding: 0;
    cursor: zoom-in;
}

.about-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 58%, rgba(0, 0, 0, 0.45));
    pointer-events: none;
}

.about-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease, filter 0.45s ease;
    filter: saturate(1.05) contrast(1.05);
}

.about-slide:hover img {
    transform: scale(1.08);
    filter: saturate(1.2) contrast(1.1);
}

.about-media-block,
.impact-media-block {
    width: 100%;
    margin-top: 18px;
    border-radius: 14px;
    border: 1px solid rgba(0, 255, 65, 0.2);
    background: rgba(0, 255, 65, 0.04);
    padding: 16px;
}

.about-media-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 12px;
}

.about-media-head h3 {
    font-size: 0.95rem;
    letter-spacing: 0.8px;
    color: #ddffe7;
}

.about-media-head p {
    font-size: 0.76rem;
    opacity: 0.75;
}

.about-media-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

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

.about-media-card,
.impact-video-card {
    border: 1px solid rgba(0, 255, 65, 0.22);
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.28);
    overflow: hidden;
}

.about-media-player-wrap,
.impact-video-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #020402;
}

.about-media-player-wrap iframe,
.impact-video-frame video {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.about-media-card h4,
.impact-video-card h4 {
    font-size: 0.9rem;
    line-height: 1.45;
    padding: 10px 12px 6px;
    color: #deffe8;
}

.about-media-card p,
.impact-video-card p {
    font-size: 0.82rem;
    line-height: 1.55;
    opacity: 0.82;
    padding: 0 12px 12px;
}

.about-media-empty {
    border: 1px dashed rgba(0, 255, 65, 0.3);
    border-radius: 10px;
    background: rgba(0, 255, 65, 0.04);
    font-size: 0.86rem;
    line-height: 1.6;
    opacity: 0.88;
    padding: 12px 14px;
}

.impact-media-block {
    position: relative;
}

.impact-media-block-legacy {
    display: none;
}

.impact-age-gate {
    margin-bottom: 12px;
}

.impact-age-gate.is-hidden {
    display: none;
}

.impact-age-gate-body {
    display: grid;
    justify-items: center;
    gap: 10px;
    text-align: center;
    border: 1px solid rgba(0, 255, 65, 0.28);
    border-radius: 12px;
    background: linear-gradient(160deg, rgba(4, 10, 6, 0.94), rgba(4, 10, 6, 0.82));
    padding: 16px 14px;
}

.impact-age-gate-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 255, 65, 0.45);
    color: #d8ffe4;
    box-shadow: 0 0 16px rgba(0, 255, 65, 0.22);
}

.impact-age-gate-body p {
    max-width: 680px;
    line-height: 1.55;
    font-size: 0.9rem;
    opacity: 0.9;
}

.impact-age-confirm-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 40px;
    padding: 9px 18px;
    border-radius: 10px;
    border: 1px solid rgba(0, 255, 65, 0.5);
    background: linear-gradient(145deg, rgba(8, 20, 11, 0.9), rgba(5, 10, 7, 0.86));
    color: #dcffe6;
    font-family: var(--font-heading);
    font-size: 0.78rem;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease;
}

.impact-age-confirm-btn:hover,
.impact-age-confirm-btn:focus-visible {
    color: #031106;
    background: linear-gradient(145deg, #00ff41, #7dff9a);
    box-shadow: 0 10px 22px rgba(0, 255, 65, 0.28);
    transform: translateY(-1px);
}

.impact-video-grid.is-locked .impact-video-frame video {
    filter: blur(16px) saturate(0.75);
    pointer-events: none;
    user-select: none;
}

.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 210;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.88);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    padding: 20px;
}

.gallery-lightbox.open {
    display: flex;
}

.gallery-lightbox-figure {
    margin: 0;
    width: min(1200px, 92vw);
    max-height: 88vh;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(0, 255, 65, 0.4);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.45), 0 0 24px rgba(0, 255, 65, 0.2);
}

.gallery-lightbox-figure img {
    width: 100%;
    height: 100%;
    max-height: 88vh;
    object-fit: contain;
    display: block;
    background: #020302;
}

.gallery-lightbox-close,
.gallery-lightbox-nav {
    position: absolute;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(0, 255, 65, 0.5);
    background: linear-gradient(160deg, rgba(5, 12, 7, 0.95), rgba(3, 7, 5, 0.9));
    color: var(--primary-color);
    cursor: pointer;
    z-index: 3;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.gallery-lightbox-close:hover,
.gallery-lightbox-nav:hover {
    transform: scale(1.05);
    background: linear-gradient(145deg, #00ff41, #86ffa7);
    color: #041507;
    box-shadow: 0 10px 24px rgba(0, 255, 65, 0.32);
}

.gallery-lightbox-close {
    top: 20px;
    right: 20px;
}

.gallery-lightbox-nav.prev {
    left: 20px;
}

.gallery-lightbox-nav.next {
    right: 20px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    padding: 40px;
    text-align: center;
    transition: opacity 1.5s cubic-bezier(0.22, 1, 0.36, 1),
                transform 1.5s cubic-bezier(0.22, 1, 0.36, 1);
    opacity: 0;
    transform: translateY(20px);
}

.card.active {
    opacity: 1;
    transform: translateY(0);
}

.card:hover {
    transform: translateY(-10px) scale(1.02);
}

.card-corner {
    position: absolute;
    width: 15px;
    height: 15px;
    border: 2px solid var(--primary-color);
    opacity: 0.5;
    transition: var(--transition);
}

.card-corner.top-left {
    top: 15px;
    left: 15px;
    border-right: none;
    border-bottom: none;
}

.card-corner.bottom-right {
    bottom: 15px;
    right: 15px;
    border-left: none;
    border-top: none;
}

.card:hover .card-corner {
    opacity: 1;
    width: 25px;
    height: 25px;
}

.card h3 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 15px;
    letter-spacing: 2px;
}

footer {
    text-align: center;
    padding: clamp(28px, 3.4vw, 50px);
    opacity: 0.5;
    font-size: 0.8rem;
}

.footer-policies {
    margin-top: 10px;
    display: inline-flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-policies a {
    color: var(--text-color);
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 255, 65, 0.45);
    padding-bottom: 2px;
    opacity: 0.9;
}

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

.legal-page {
    min-height: 100vh;
    padding: 120px 20px 60px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.legal-card {
    width: min(980px, calc(100vw - 40px));
    text-align: left;
    padding: clamp(24px, 4vw, 42px);
}

.legal-kicker {
    display: inline-block;
    border: 1px solid rgba(0, 255, 65, 0.35);
    border-radius: 999px;
    color: var(--primary-color);
    font-size: 0.72rem;
    letter-spacing: 1.4px;
    padding: 6px 12px;
    margin-bottom: 14px;
}

.legal-updated {
    margin: -10px 0 20px;
    opacity: 0.75;
    font-size: 0.84rem;
}

.legal-card h2 {
    margin: 20px 0 10px;
    color: var(--primary-color);
    font-size: 1.06rem;
    letter-spacing: 0.4px;
}

.legal-card p,
.legal-card li {
    opacity: 0.9;
    line-height: 1.65;
    font-size: 0.95rem;
}

.legal-card ul {
    padding-left: 18px;
}

.legal-back {
    margin-top: 24px;
}

/* NRK Section */
.nrk-section {
    padding: var(--section-pad-block) var(--section-pad-inline);
    max-width: 1200px;
    margin: 0 auto;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(22px);
    filter: blur(6px);
    transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
                filter 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.hero .reveal {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
}

/* Glitch Effect */
.glitch {
    position: relative;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    left: 2px;
    text-shadow: -2px 0 #ff00c1;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim 8s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: -2px 0 #00fff9;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim2 8s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
    0% { clip: rect(31px, 9999px, 94px, 0); }
    20% { clip: rect(62px, 9999px, 42px, 0); }
    40% { clip: rect(16px, 9999px, 78px, 0); }
    60% { clip: rect(58px, 9999px, 13px, 0); }
    80% { clip: rect(85px, 9999px, 33px, 0); }
    100% { clip: rect(23px, 9999px, 61px, 0); }
}

@keyframes glitch-anim2 {
    0% { clip: rect(65px, 9999px, 100px, 0); }
    20% { clip: rect(45px, 9999px, 56px, 0); }
    40% { clip: rect(82px, 9999px, 14px, 0); }
    60% { clip: rect(12px, 9999px, 89px, 0); }
    80% { clip: rect(34px, 9999px, 70px, 0); }
    100% { clip: rect(91px, 9999px, 40px, 0); }
}

/* Scanline effect */
.scanline {
    width: 100%;
    height: 100px;
    z-index: 99;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, var(--scanline-color) 50%, rgba(0, 0, 0, 0) 100%);
    opacity: 1; /* Variable already has transparency */
    position: fixed;
    bottom: 100%;
    animation: scanline 12s linear infinite;
    pointer-events: none;
}

@keyframes scanline {
    0% { bottom: 100%; }
    100% { bottom: -100px; }
}

.tech-section {
    padding: var(--section-pad-block) var(--section-pad-inline);
    display: flex;
    justify-content: center;
}

.full-width {
    width: min(var(--content-width), calc(100vw - (var(--section-gutter) * 2)));
    max-width: var(--content-width);
    margin: 0 auto;
}

.section-title {
    font-family: var(--font-heading);
    margin-bottom: 40px;
    color: var(--primary-color);
    text-align: center;
}

.tech-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tech-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.tech-label {
    width: 150px;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 20px;
}

.tech-value {
    color: var(--primary-color);
    font-size: 0.7rem;
    opacity: 0.8;
}

.tech-bar {
    flex-grow: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}

.tech-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
    box-shadow: 0 0 15px var(--primary-color);
    border-radius: 3px;
    transition: width 1.5s cubic-bezier(0.1, 0, 0.2, 1);
}

/* Roadmap Styles */
.roadmap-section {
    padding: var(--section-pad-block) var(--section-pad-inline);
    display: flex;
    justify-content: center;
}

.roadmap-card {
    width: 100%;
    max-width: none;
    background:
        radial-gradient(circle at 8% 12%, rgba(0, 255, 65, 0.15), transparent 30%),
        radial-gradient(circle at 90% 85%, rgba(0, 255, 65, 0.12), transparent 32%),
        linear-gradient(150deg, rgba(0, 255, 65, 0.05), rgba(255, 255, 255, 0.01)),
        var(--glass-bg);
}

.roadmap-head {
    text-align: center;
    margin-bottom: 24px;
}

.roadmap-kicker {
    display: inline-block;
    border: 1px solid rgba(0, 255, 65, 0.3);
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 0.72rem;
    letter-spacing: 1.8px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.roadmap-lead {
    max-width: 760px;
    margin: -10px auto 18px;
    opacity: 0.86;
    line-height: 1.65;
}

.roadmap-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.roadmap-meta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(0, 255, 65, 0.26);
    background: rgba(0, 255, 65, 0.08);
    font-size: 0.8rem;
}

.roadmap-container {
    display: grid;
    grid-template-columns: repeat(2, minmax(260px, 1fr));
    gap: 14px;
}

.roadmap-item {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 12px;
    align-items: stretch;
}

.roadmap-dot {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(0, 255, 65, 0.32);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-color);
    background: rgba(0, 255, 65, 0.08);
    box-shadow: inset 0 0 0 1px rgba(0, 255, 65, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.roadmap-item:hover .roadmap-dot {
    transform: translateY(-4px);
    background: var(--primary-color);
    color: #031106;
    box-shadow: 0 8px 18px rgba(0, 255, 65, 0.35);
}

.roadmap-content {
    background: rgba(0, 255, 65, 0.03);
    padding: 16px 16px 14px;
    border-radius: 12px;
    border: 1px solid rgba(0, 255, 65, 0.2);
    transition: transform 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}

.roadmap-item:hover .roadmap-content {
    border-color: rgba(0, 255, 65, 0.4);
    background: rgba(0, 255, 65, 0.08);
    transform: translateY(-3px);
}

.step-num {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    color: var(--primary-color);
    opacity: 0.6;
    display: block;
    margin-bottom: 5px;
}

.roadmap-content h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.roadmap-content p {
    font-size: 0.9rem;
    opacity: 0.82;
    line-height: 1.55;
    margin-bottom: 12px;
}

.roadmap-tags {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.roadmap-tags li {
    font-size: 0.7rem;
    letter-spacing: 0.8px;
    border: 1px solid rgba(0, 255, 65, 0.28);
    border-radius: 999px;
    padding: 5px 9px;
    color: #d8ffe2;
    background: rgba(0, 255, 65, 0.07);
}

.roadmap-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
}

.roadmap-footer span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.76rem;
    opacity: 0.9;
}

.vacancies-section {
    padding: var(--section-pad-block) var(--section-pad-inline);
    display: flex;
    justify-content: center;
}

.vacancies-card {
    width: 100%;
    max-width: none;
    text-align: left;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 6% 10%, rgba(0, 255, 65, 0.2), transparent 32%),
        radial-gradient(circle at 92% 88%, rgba(0, 255, 65, 0.18), transparent 34%),
        linear-gradient(145deg, rgba(0, 255, 65, 0.06), rgba(255, 255, 255, 0.02)),
        var(--glass-bg);
    box-shadow:
        0 22px 50px rgba(0, 0, 0, 0.6),
        inset 0 0 0 1px rgba(0, 255, 65, 0.12);
}

.vacancies-card::before {
    content: '';
    position: absolute;
    width: 420px;
    height: 420px;
    top: -190px;
    right: -150px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 255, 65, 0.16), transparent 68%);
    filter: blur(2px);
    pointer-events: none;
}

.vacancies-card::after {
    content: '';
    position: absolute;
    width: 360px;
    height: 360px;
    bottom: -180px;
    left: -120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 255, 65, 0.1), transparent 68%);
    pointer-events: none;
}

.vacancies-head {
    text-align: center;
    position: relative;
    z-index: 1;
}

.vacancies-kicker {
    display: inline-block;
    font-family: var(--font-heading);
    letter-spacing: 2px;
    font-size: 0.72rem;
    color: var(--primary-color);
    border: 1px solid var(--glass-border);
    border-radius: 999px;
    padding: 6px 12px;
    margin-bottom: 14px;
}

.vacancies-intro {
    max-width: 760px;
    margin: -8px auto 30px;
    opacity: 0.9;
    line-height: 1.72;
    font-size: 1.05rem;
}

.vacancies-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 auto 28px;
}

.vacancies-badges span {
    border: 1px solid rgba(0, 255, 65, 0.28);
    background: rgba(0, 255, 65, 0.08);
    color: #d5ffdf;
    border-radius: 999px;
    padding: 8px 12px;
    font-size: 0.82rem;
    letter-spacing: 0.4px;
}

.vacancies-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(240px, 1fr));
    gap: 18px;
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}

.vacancy-item {
    text-align: left;
    padding: 20px 18px 18px;
    border-radius: 14px;
    border: 1px solid rgba(0, 255, 65, 0.24);
    background:
        linear-gradient(180deg, rgba(0, 255, 65, 0.1), rgba(255, 255, 255, 0.018)),
        rgba(0, 0, 0, 0.22);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(4px);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.vacancy-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.09), transparent 72%);
    transform: translateX(-130%);
    transition: transform 0.55s ease;
    pointer-events: none;
}

.vacancy-item:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 255, 65, 0.55);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.5), 0 0 26px rgba(0, 255, 65, 0.2);
}

.vacancy-item:hover::after {
    transform: translateX(130%);
}

.vacancy-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.vacancy-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    filter: drop-shadow(0 0 14px rgba(0, 255, 65, 0.5));
}

.vacancy-code {
    display: inline-flex;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    border: 1px solid rgba(0, 255, 65, 0.35);
    color: #d0ffe0;
    background: rgba(0, 255, 65, 0.1);
}

.vacancy-item h3 {
    margin: 0 0 10px;
    font-family: var(--font-heading);
    letter-spacing: 0.8px;
    font-size: 1.02rem;
    color: #f3fff8;
}

.vacancy-item p {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.55;
    color: rgba(233, 245, 238, 0.85);
}

.vacancies-cta {
    min-width: 240px;
    display: table;
    margin: 0 auto;
    box-shadow: 0 0 18px rgba(0, 255, 65, 0.28);
}

.stats-section {
    padding: var(--section-pad-block) var(--section-pad-inline);
    display: flex;
    justify-content: center;
}

.stats-card {
    width: 100%;
    max-width: none;
    text-align: center;
    background:
        radial-gradient(circle at 20% 0%, rgba(0, 255, 65, 0.15), transparent 35%),
        radial-gradient(circle at 85% 100%, rgba(0, 255, 65, 0.12), transparent 38%),
        linear-gradient(180deg, rgba(0, 255, 65, 0.05), rgba(255, 255, 255, 0.015)),
        var(--glass-bg);
}

.stats-kicker {
    display: inline-block;
    font-family: var(--font-heading);
    letter-spacing: 2px;
    font-size: 0.72rem;
    color: var(--primary-color);
    border: 1px solid rgba(0, 255, 65, 0.25);
    border-radius: 999px;
    padding: 6px 12px;
    margin-bottom: 14px;
}

.stats-intro {
    max-width: 760px;
    margin: -8px auto 28px;
    opacity: 0.9;
    line-height: 1.68;
}

.stat-value {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 2.8rem);
    line-height: 1;
    color: #eaffef;
    text-shadow: 0 0 18px rgba(0, 255, 65, 0.35);
    margin-bottom: 8px;
}

.stat-label {
    display: block;
    font-size: 0.82rem;
    color: rgba(234, 246, 238, 0.88);
    letter-spacing: 0.4px;
}

.metrics-report {
    text-align: center;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 14% 12%, rgba(0, 255, 65, 0.16), transparent 34%),
        radial-gradient(circle at 86% 86%, rgba(0, 255, 65, 0.12), transparent 36%),
        linear-gradient(180deg, rgba(0, 255, 65, 0.055), rgba(255, 255, 255, 0.012)),
        var(--glass-bg);
}

.metrics-report::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(0, 255, 65, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 65, 0.035) 1px, transparent 1px);
    background-size: 42px 42px;
    opacity: 0.25;
    pointer-events: none;
}

.metrics-report-head,
.metrics-grid {
    position: relative;
    z-index: 1;
}

.metrics-date {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    padding: 7px 13px;
    margin: 0 auto 28px;
    border: 1px solid rgba(0, 255, 65, 0.34);
    border-radius: 999px;
    color: #caffd4;
    background: rgba(0, 255, 65, 0.08);
    font-family: var(--font-heading);
    font-size: 0.78rem;
    letter-spacing: 1.2px;
}

.stats-months-nav {
    margin: 20px auto 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.stats-month-btn {
    min-height: 34px;
    padding: 6px 14px;
    border: 1px solid rgba(0, 255, 65, 0.35);
    border-radius: 8px;
    background: rgba(0, 255, 65, 0.06);
    color: #d5fce0;
    font-family: var(--font-heading);
    font-size: 0.78rem;
    cursor: pointer;
    transition: var(--transition);
}

.stats-month-btn.active,
.stats-month-btn:hover,
.stats-month-btn:focus-visible {
    background: rgba(0, 255, 65, 0.24);
    color: #041105;
    outline: none;
}

.stats-tabs-nav {
    margin: 6px auto 20px;
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
}

.stats-tab-btn {
    width: 112px;
    min-height: 92px;
    border: 1px solid rgba(0, 255, 65, 0.28);
    border-radius: 10px;
    background: rgba(0, 255, 65, 0.05);
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: rgba(224, 249, 233, 0.92);
    cursor: pointer;
    transition: var(--transition);
}

.stats-tab-btn i {
    font-size: 1.45rem;
}

.stats-tab-btn span {
    font-size: 0.8rem;
    line-height: 1.2;
}

.stats-tab-btn.active,
.stats-tab-btn:hover,
.stats-tab-btn:focus-visible {
    border-color: rgba(0, 255, 65, 0.6);
    background: rgba(0, 255, 65, 0.2);
    transform: translateY(-2px);
    color: #031106;
    outline: none;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(230px, 1fr));
    gap: 18px;
    text-align: left;
}

.metric-card {
    position: relative;
    min-height: 238px;
    padding: 22px 18px 18px;
    overflow: hidden;
    border: 1px solid rgba(0, 255, 65, 0.28);
    border-radius: 14px;
    background:
        linear-gradient(145deg, rgba(0, 255, 65, 0.11), rgba(255, 255, 255, 0.015)),
        rgba(0, 0, 0, 0.24);
    box-shadow:
        inset 0 0 0 1px rgba(0, 255, 65, 0.08),
        0 14px 28px rgba(0, 0, 0, 0.34);
    transition: transform 0.32s ease, border-color 0.32s ease, box-shadow 0.32s ease;
}

.metric-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 255, 65, 0.58);
    box-shadow:
        inset 0 0 0 1px rgba(0, 255, 65, 0.14),
        0 18px 34px rgba(0, 0, 0, 0.46),
        0 0 24px rgba(0, 255, 65, 0.16);
}

.metric-scanline {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent, rgba(0, 255, 65, 0.12), transparent);
    height: 45%;
    transform: translateY(-110%);
    animation: metric-scan 8s ease-in-out infinite;
    animation-delay: calc(var(--order, 1) * 0.18s);
    pointer-events: none;
}

.metric-data-bits {
    position: absolute;
    top: 12px;
    right: 14px;
    font-family: var(--font-heading);
    font-size: 0.62rem;
    letter-spacing: 1px;
    color: rgba(0, 255, 65, 0.42);
}

.metric-corner {
    position: absolute;
    width: 14px;
    height: 14px;
    border-color: rgba(0, 255, 65, 0.52);
    border-style: solid;
    pointer-events: none;
}

.metric-corner.top-left-c {
    top: 10px;
    left: 10px;
    border-width: 1px 0 0 1px;
}

.metric-corner.top-right-c {
    top: 10px;
    right: 10px;
    border-width: 1px 1px 0 0;
}

.metric-corner.bottom-left-c {
    bottom: 10px;
    left: 10px;
    border-width: 0 0 1px 1px;
}

.metric-corner.bottom-right-c {
    right: 10px;
    bottom: 10px;
    border-width: 0 1px 1px 0;
}

.metric-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 16px;
    border-radius: 10px;
    border: 1px solid rgba(0, 255, 65, 0.28);
    color: var(--primary-color);
    background: rgba(0, 255, 65, 0.08);
    filter: drop-shadow(0 0 12px rgba(0, 255, 65, 0.28));
}

.metric-icon i {
    font-size: 1.25rem;
}

.metric-card h3 {
    margin: 0 0 14px;
    padding-right: 72px;
    color: var(--text-color);
    font-family: var(--font-heading);
    font-size: 1rem;
    letter-spacing: 1.2px;
    line-height: 1.25;
}

.metric-card .stat-value {
    font-size: clamp(2.1rem, 5vw, 3.15rem);
    margin-bottom: 9px;
}

.metric-card .stat-label,
.metric-card .stat-total {
    display: block;
    line-height: 1.45;
}

.metric-card .stat-label {
    color: rgba(234, 246, 238, 0.9);
}

.metric-card .stat-total {
    margin-top: 10px;
    color: rgba(0, 255, 65, 0.78);
    font-size: 0.78rem;
    letter-spacing: 0.35px;
}

@keyframes metric-scan {
    0%, 56%, 100% { transform: translateY(-110%); opacity: 0; }
    64% { opacity: 1; }
    82% { transform: translateY(230%); opacity: 0; }
}

/* Training Section */
.training-section {
    padding: var(--section-pad-block) var(--section-pad-inline);
}

.training-section .section-title,
.training-section .grid {
    width: min(var(--content-width), calc(100vw - (var(--section-gutter) * 2)));
    margin-left: auto;
    margin-right: auto;
}

.training-section .grid {
    max-width: none;
}

.training-modern-card {
    width: 100%;
    max-width: none;
    background:
        radial-gradient(circle at 88% 8%, rgba(0, 255, 65, 0.13), transparent 28%),
        radial-gradient(circle at 7% 90%, rgba(0, 255, 65, 0.11), transparent 30%),
        linear-gradient(145deg, rgba(0, 255, 65, 0.045), rgba(255, 255, 255, 0.02)),
        var(--glass-bg);
}

.training-head {
    text-align: center;
    margin-bottom: 26px;
}

.training-kicker {
    display: inline-block;
    border: 1px solid rgba(0, 255, 65, 0.3);
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 0.72rem;
    letter-spacing: 1.8px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.training-lead {
    max-width: 760px;
    margin: -10px auto 18px;
    opacity: 0.86;
    line-height: 1.65;
}

.training-strip {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.training-strip span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(0, 255, 65, 0.26);
    background: rgba(0, 255, 65, 0.08);
    font-size: 0.8rem;
}

.training-grid {
    grid-template-columns: repeat(2, minmax(260px, 1fr));
    gap: 16px;
}

.training-card {
    text-align: left;
    padding: 18px 16px 16px;
    border-radius: 14px;
    border: 1px solid rgba(0, 255, 65, 0.22);
    background: linear-gradient(180deg, rgba(0, 255, 65, 0.08), rgba(255, 255, 255, 0.015));
}

.training-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
}

.training-level {
    font-size: 0.68rem;
    letter-spacing: 1px;
    border: 1px solid rgba(0, 255, 65, 0.3);
    padding: 5px 8px;
    border-radius: 999px;
    color: #d8ffe4;
}

.training-card .card-icon {
    font-size: 1.35rem;
    margin-bottom: 0;
}

.training-card h3 {
    margin: 0 0 10px;
}

.training-card p {
    opacity: 0.82;
    margin-bottom: 12px;
}

.training-points {
    list-style: none;
    display: grid;
    gap: 7px;
}

.training-points li {
    font-size: 0.82rem;
    opacity: 0.95;
    border: 1px solid rgba(0, 255, 65, 0.18);
    background: rgba(0, 255, 65, 0.06);
    border-radius: 8px;
    padding: 8px 10px;
}

.training-bottom-note {
    margin-top: 14px;
    border: 1px solid rgba(0, 255, 65, 0.22);
    border-radius: 10px;
    padding: 12px 14px;
    background: rgba(0, 255, 65, 0.05);
    font-size: 0.88rem;
    opacity: 0.95;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.seo-content-section,
.faq-section {
    padding: var(--section-pad-block) var(--section-pad-inline);
    display: flex;
    justify-content: center;
}

.seo-content-card,
.faq-card {
    width: 100%;
    max-width: none;
}

.seo-content-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.seo-content-grid p {
    margin: 0;
    line-height: 1.7;
    opacity: 0.9;
    background: rgba(0, 255, 65, 0.03);
    border: 1px solid rgba(0, 255, 65, 0.18);
    border-radius: 12px;
    padding: 18px 16px;
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-item {
    border: 1px solid rgba(0, 255, 65, 0.2);
    border-radius: 10px;
    background: rgba(0, 255, 65, 0.04);
    padding: 0 14px;
    transition: border-color 0.25s ease, background 0.25s ease;
}

.faq-item:hover {
    border-color: rgba(0, 255, 65, 0.4);
    background: rgba(0, 255, 65, 0.08);
}

.faq-item summary {
    cursor: pointer;
    list-style: none;
    font-family: var(--font-heading);
    font-size: 0.98rem;
    padding: 14px 28px 14px 0;
    position: relative;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
}

.faq-item[open] summary::after {
    content: '−';
}

.faq-item p {
    margin: 0;
    padding: 0 0 14px;
    line-height: 1.6;
    opacity: 0.85;
}

/* Gallery Slider */
.gallery-section {
    padding: 100px 0;
    overflow: hidden;
}

.slider-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 40px 0;
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.slider-track {
    display: flex;
    gap: 30px;
    width: calc(350px * 8 + 30px * 8); /* 8 slides * width + gaps */
    animation: scroll-left 30s linear infinite;
}

.slider-track:hover {
    animation-play-state: paused;
}

.slide {
    flex: 0 0 350px;
    height: 250px;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
    transition: var(--transition);
}

.slide:hover {
    transform: scale(1.1);
    z-index: 10;
    border-color: var(--primary-color);
}

.slide-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    color: var(--glass-border);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.01);
}

.slide-img-placeholder i {
    font-size: 3rem;
    opacity: 0.3;
}

@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-350px * 5 - 30px * 5)); } /* scroll 5 unique slides */
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    filter: drop-shadow(0 0 10px var(--glow-color));
}

/* Contact Section */
.contact-section {
    padding: var(--section-pad-block) var(--section-pad-inline);
    display: flex;
    justify-content: center;
}

.join-section {
    padding: var(--section-pad-block) var(--section-pad-inline);
    display: flex;
    justify-content: center;
}

.join-card {
    width: 100%;
    max-width: none;
}

.section-indicator {
    position: fixed;
    right: 26px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 95;
    display: none;
    flex-direction: column;
    gap: 10px;
    padding: 12px 10px;
    border-radius: 999px;
    border: 1px solid rgba(0, 255, 65, 0.25);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.78));
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.45), 0 0 24px rgba(0, 255, 65, 0.15);
}

.section-indicator a {
    position: relative;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: rgba(230, 255, 237, 0.86);
    background: rgba(0, 255, 65, 0.06);
    border: 1px solid rgba(0, 255, 65, 0.25);
    transition: transform 0.26s ease, color 0.26s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.section-indicator a::before {
    content: '';
    position: absolute;
    inset: -7px;
    border-radius: 50%;
    border: 1px solid rgba(0, 255, 65, 0.14);
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.28s ease, transform 0.28s ease;
}

.section-indicator a::after {
    content: attr(data-label);
    position: absolute;
    right: calc(100% + 14px);
    top: 50%;
    transform: translateY(-50%) translateX(8px);
    padding: 8px 10px;
    border-radius: 8px;
    border: 1px solid rgba(0, 255, 65, 0.32);
    background: rgba(2, 8, 3, 0.95);
    color: #ddffe4;
    font-size: 0.7rem;
    font-family: var(--font-heading);
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.24s ease, transform 0.24s ease;
}

.section-indicator a i {
    font-size: 0.95rem;
}

.section-indicator a:hover,
.section-indicator a:focus-visible,
.section-indicator a.active {
    transform: translateX(-4px) scale(1.05);
    color: #041507;
    border-color: rgba(0, 255, 65, 0.65);
    background: linear-gradient(145deg, #00ff41, #7dff9a);
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.4);
}

.section-indicator a:hover::before,
.section-indicator a:focus-visible::before,
.section-indicator a.active::before {
    opacity: 1;
    transform: scale(1);
}

.section-indicator a:hover::after,
.section-indicator a:focus-visible::after,
.section-indicator a.active::after {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

.join-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 30px;
    align-items: stretch;
}

.join-content {
    padding: 10px 10px 10px 0;
}

.join-kicker {
    display: inline-block;
    font-family: var(--font-heading);
    letter-spacing: 2px;
    font-size: 0.72rem;
    color: var(--primary-color);
    border: 1px solid var(--glass-border);
    border-radius: 999px;
    padding: 6px 12px;
    margin-bottom: 15px;
}

.join-title {
    text-align: left;
    margin-bottom: 15px;
    font-size: 2rem;
}

.join-text {
    opacity: 0.85;
    line-height: 1.6;
    max-width: 520px;
    margin-bottom: 22px;
}

.join-points {
    display: grid;
    gap: 10px;
}

.join-points span {
    display: block;
    border: 1px solid rgba(0, 255, 65, 0.2);
    background: rgba(0, 255, 65, 0.06);
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 0.92rem;
}

.join-form-panel {
    border: 1px solid rgba(0, 255, 65, 0.28);
    background: linear-gradient(160deg, rgba(0, 255, 65, 0.08), rgba(255, 255, 255, 0.02));
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 0 35px rgba(0, 255, 65, 0.12);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.donation-analytics {
    margin-top: 34px;
    padding: 22px;
    border: 1px solid rgba(0, 255, 65, 0.22);
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(0, 255, 65, 0.08), rgba(0, 0, 0, 0.25));
}

.donation-analytics-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
}

.donation-analytics-head h3 {
    font-size: 1.15rem;
    margin-bottom: 6px;
    color: var(--primary-color);
}

.donation-analytics-head p {
    opacity: 0.82;
    font-size: 0.9rem;
}

.donation-updated {
    font-size: 0.78rem;
    opacity: 0.75;
    border: 1px solid rgba(0, 255, 65, 0.25);
    border-radius: 999px;
    padding: 6px 10px;
    white-space: nowrap;
}

.donation-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 14px;
}

.donation-metric {
    border: 1px solid rgba(0, 255, 65, 0.2);
    border-radius: 10px;
    padding: 12px;
    background: rgba(0, 0, 0, 0.28);
}

.metric-label {
    display: block;
    font-size: 0.76rem;
    letter-spacing: 0.6px;
    opacity: 0.82;
    margin-bottom: 6px;
}

.metric-value {
    display: block;
    font-size: 1.15rem;
    color: #ddffe7;
}

.donation-progress {
    width: 100%;
    height: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    overflow: hidden;
    margin-bottom: 16px;
}

.donation-progress > span {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, #00ff41, #9bffbe);
}

.donation-chart-wrap {
    width: 100%;
    min-height: 220px;
    border: 1px solid rgba(0, 255, 65, 0.2);
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.25);
    padding: 12px;
}

.donation-chart-wrap canvas {
    width: 100%;
    height: 240px;
    display: block;
}

.donation-note {
    margin-top: 10px;
    font-size: 0.82rem;
    opacity: 0.85;
    color: #ffd1d1;
}

@media (max-width: 980px) {
    .donation-metrics {
        grid-template-columns: 1fr;
    }

    .donation-analytics-head {
        flex-direction: column;
        gap: 8px;
    }

    .donation-updated {
        white-space: normal;
    }
}

.contact-item h3 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.contact-item p {
    font-size: 0.9rem;
    opacity: 0.7;
    margin: 15px 0;
}

.qr-placeholder {
    width: 150px;
    height: 150px;
    margin: 0 auto 15px;
    border: 2px solid var(--glass-border);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
    position: relative;
    overflow: hidden;
}

.qr-placeholder::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 65, 0.1), transparent);
    animation: qr-scan 5s infinite;
}

@keyframes qr-scan {
    0% { left: -100%; }
    100% { left: 100%; }
}

.qr-inner {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    color: var(--glass-border);
    border: 1px dashed var(--glass-border);
    padding: 10px;
}

.qr-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    z-index: 2;
    position: relative;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
}

.social-link {
    text-decoration: none;
    color: var(--text-color);
    padding: 10px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 5px;
    transition: var(--transition);
    font-size: 0.9rem;
}

.social-link:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: rgba(0, 255, 65, 0.05);
}

.social-link i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.secure-contact-form {
    max-width: 100%;
    margin: 0;
    display: grid;
    gap: 12px;
}

.secure-contact-form label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.secure-contact-form input {
    width: 100%;
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-color);
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.secure-contact-form input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 255, 65, 0.15);
}

.secure-contact-form .btn {
    margin-top: 10px;
    justify-self: stretch;
    text-align: center;
}

.form-policy-note {
    margin-top: 8px;
    font-size: 0.8rem;
    line-height: 1.5;
    opacity: 0.82;
}

.form-policy-note a {
    color: var(--primary-color);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.form-alert {
    max-width: 600px;
    margin: 0 auto 16px;
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid;
    font-size: 0.9rem;
}

.form-alert.success {
    border-color: rgba(0, 255, 65, 0.55);
    background: rgba(0, 255, 65, 0.12);
    color: #d7ffe6;
}

.form-alert.error {
    border-color: rgba(255, 94, 94, 0.6);
    background: rgba(255, 94, 94, 0.12);
    color: #ffd8d8;
}

.hp-field {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
}

/* Noise Overlay */
.noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 98;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.12) 0 0.6px, transparent 0.8px),
        radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.1) 0 0.5px, transparent 0.8px),
        radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.08) 0 0.6px, transparent 0.9px);
    background-size: 3px 3px, 4px 4px, 5px 5px;
    opacity: 0.035;
    pointer-events: none;
}

/* Card Improvements */
.card {
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 255, 65, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
}

.card:hover::before {
    opacity: 1;
}

.burger-menu {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex-direction: column;
    cursor: pointer;
    z-index: 101;
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    background: rgba(0, 255, 65, 0.06);
    padding: 8px 10px;
    color: var(--primary-color);
    min-width: 42px;
    min-height: 38px;
    justify-content: center;
}

.burger-menu span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--primary-color);
    box-shadow: 0 0 5px var(--primary-color);
    transition: var(--transition);
}

.burger-menu.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 1200px) {
    :root {
        --content-width: 1380px;
        --section-gutter: 24px;
    }

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

    .section-indicator {
        display: none;
    }
}

@media (max-width: 1024px) {
    :root {
        --content-width: 1240px;
    }
}

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

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

    .scanline,
    .noise,
    .metric-scanline,
    .glitch::before,
    .glitch::after,
    .qr-placeholder::after {
        animation: none !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
        filter: none;
    }
}

@media (max-width: 900px) {
    :root {
        --section-gutter: 20px;
        --section-pad-block: 80px;
        --section-pad-inline: 20px;
    }

    header {
        padding: 10px 12px;
    }

    nav.glass {
        padding: 10px 12px;
        border-radius: 14px;
        border: 1px solid rgba(0, 255, 65, 0.26);
        background: linear-gradient(180deg, rgba(5, 12, 7, 0.9), rgba(5, 8, 6, 0.72));
        -webkit-backdrop-filter: blur(14px);
        backdrop-filter: blur(14px);
        box-shadow: 0 10px 26px rgba(0, 0, 0, 0.35), 0 0 16px rgba(0, 255, 65, 0.12);
    }

    .nav-support-link {
        display: none;
    }

    .btn.nav-join-btn {
        padding: 9px 12px;
        font-size: 0.62rem;
        min-height: 40px;
        margin-top: 0;
        border-radius: 10px;
        letter-spacing: 1.3px;
        border-color: rgba(0, 255, 65, 0.45);
        background: rgba(0, 255, 65, 0.08);
    }

    .burger-menu {
        min-width: 42px;
        min-height: 40px;
        border-radius: 10px;
        border-color: rgba(0, 255, 65, 0.4);
        background: rgba(0, 255, 65, 0.08);
    }

    nav ul {
        width: min(430px, 100%);
        padding: calc(84px + env(safe-area-inset-top)) 14px 16px;
        align-items: stretch;
        background: linear-gradient(180deg, rgba(5, 8, 6, 0.98), rgba(2, 5, 3, 0.98));
    }

    nav ul li {
        width: 100%;
        margin: 6px 0;
        transform: translateX(24px);
    }

    nav ul li a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        font-size: 0.98rem;
        letter-spacing: 1.1px;
        padding: 12px 14px;
        border-radius: 10px;
        border: 1px solid rgba(0, 255, 65, 0.22);
        background: rgba(0, 255, 65, 0.05);
    }

    nav ul li a::after {
        display: none;
    }

    nav ul li a.active,
    nav ul li a:hover {
        background: rgba(0, 255, 65, 0.16);
        border-color: rgba(0, 255, 65, 0.48);
        text-shadow: none;
    }

    .contact-section {
        padding: 80px 20px;
    }

    .vacancies-section {
        padding: 80px 20px;
    }

    .stats-section {
        padding: 80px 20px;
    }

    .metrics-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .stats-tab-btn {
        width: 104px;
        min-height: 86px;
    }

    .seo-content-section,
    .faq-section {
        padding: 80px 20px;
    }

    .seo-content-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .vacancies-intro {
        font-size: 0.98rem;
        margin-bottom: 22px;
    }

    .vacancies-badges {
        gap: 8px;
        margin-bottom: 18px;
    }

    .vacancies-badges span {
        font-size: 0.74rem;
        padding: 7px 10px;
    }

    .vacancies-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .vacancy-item {
        padding: 20px 12px;
    }

    .vacancy-item h3 {
        font-size: 0.9rem;
    }

    .vacancy-item p {
        font-size: 0.82rem;
    }

    .join-section {
        padding: 80px 20px;
    }

    .join-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .join-content {
        padding: 0;
    }

    .join-title {
        text-align: center;
        font-size: 1.6rem;
    }

    .join-kicker {
        display: table;
        margin: 0 auto 15px;
    }

    .join-text {
        margin: 0 auto 18px;
        text-align: center;
    }

    .join-form-panel {
        padding: 18px 14px;
    }

    .details {
        padding: 80px 20px;
    }

    .roadmap-container,
    .training-grid {
        grid-template-columns: 1fr;
    }

    .roadmap-item {
        grid-template-columns: 42px 1fr;
        gap: 10px;
    }

    .roadmap-meta,
    .training-strip {
        gap: 8px;
    }

    .roadmap-meta span,
    .training-strip span {
        font-size: 0.75rem;
    }

    .about-modern-head {
        margin-bottom: 20px;
    }

    .about-modern-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .about-modern-panel {
        padding: 14px;
    }

    .about-modern-list li {
        font-size: 0.84rem;
    }

    .about-gallery-slider {
        padding: 12px;
    }

    .about-gallery-head {
        align-items: center;
    }

    .about-gallery-controls {
        position: static;
        transform: none;
        justify-content: flex-end;
        pointer-events: auto;
        z-index: 1;
    }

    .about-gallery-track {
        gap: 10px;
    }

    .about-slide {
        flex-basis: min(70vw, 330px);
        height: min(50vw, 230px);
    }

    .about-gallery-btn {
        width: 32px;
        height: 32px;
        box-shadow: none;
    }

    .about-media-grid,
    .impact-video-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .about-media-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-item {
        margin: 0 auto;
        max-width: 400px;
    }

    .secure-contact-form .btn {
        justify-self: stretch;
        text-align: center;
    }

    .glass-card {
        padding: 30px 15px;
        width: 100%;
    }

    .hero h1 { font-size: 2.55rem; letter-spacing: 4px; }
    .subtitle { font-size: 0.92rem; letter-spacing: 2.8px; }
    .description { font-size: 0.98rem; }

    /* Button adjustments for mobile */
    .btn {
        background: rgba(0, 255, 65, 0.85);
        -webkit-backdrop-filter: blur(5px);
        backdrop-filter: blur(5px);
        border-color: rgba(0, 255, 65, 0.5);
        color: #000;
        font-weight: bold;
    }

    /* Gallery Mobile Optimizations */
    .slider-container {
        -webkit-mask-image: none;
        mask-image: none;
        overflow-x: auto;
        padding: 20px 0;
        cursor: grab;
    }

    .slider-track {
        animation: none;
        width: max-content;
        padding: 0 20px;
    }

    /* Hide GPS and SIG data on small screens */
    .hud-data.bottom-left,
    .hud-data.top-right,
    .hud-bracket,
    .hud-line.top,
    .hud-line.bottom {
        display: none;
    }
}

@media (min-width: 1024px) {
    .btn.nav-join-btn {
        margin-top: 0;
        min-height: 40px;
        padding: 10px 18px;
        border-radius: 10px;
        letter-spacing: 1.4px;
        font-size: 0.66rem;
        font-weight: 700;
        border-color: rgba(0, 255, 65, 0.56);
    }

    .burger-menu {
        min-width: 44px;
        min-height: 40px;
        border-radius: 10px;
        border-color: rgba(0, 255, 65, 0.42);
        background: linear-gradient(145deg, rgba(0, 255, 65, 0.12), rgba(0, 255, 65, 0.05));
        box-shadow: 0 8px 18px rgba(0, 255, 65, 0.14);
    }

    .burger-menu:hover {
        border-color: rgba(0, 255, 65, 0.72);
        background: linear-gradient(145deg, rgba(0, 255, 65, 0.2), rgba(0, 255, 65, 0.08));
        box-shadow: 0 12px 24px rgba(0, 255, 65, 0.24), 0 0 14px rgba(0, 255, 65, 0.2);
        transform: translateY(-1px);
    }

    .burger-menu span {
        width: 20px;
        height: 2px;
        box-shadow: 0 0 8px rgba(0, 255, 65, 0.8);
    }

    .section-indicator {
        display: flex;
    }
}

@media (max-width: 560px) {
    :root {
        --section-gutter: 14px;
        --section-pad-block: 68px;
        --section-pad-inline: 14px;
    }

    .hero {
        padding-top: 118px;
    }

    header {
        padding: 8px 10px;
    }

    nav.glass {
        padding: 8px 10px;
        border-radius: 12px;
    }

    .btn.nav-join-btn {
        min-height: 38px;
        padding: 8px 10px;
        font-size: 0.58rem;
        margin-top: 0;
    }

    .hero .content.glass-card {
        padding: 24px 14px;
    }

    .legal-page {
        padding: 104px 14px 40px;
    }

    .legal-card {
        width: 100%;
        padding: 18px 14px;
    }

    .roadmap-section,
    .training-section,
    .vacancies-section,
    .stats-section,
    .seo-content-section,
    .faq-section,
    .join-section,
    .contact-section {
        padding: 68px 14px;
    }

    .roadmap-container {
        gap: 12px;
    }

    .about-modern-badges {
        gap: 7px;
    }

    .about-modern-badges span {
        font-size: 0.72rem;
        padding: 7px 9px;
    }

    .about-gallery-head {
        margin-bottom: 8px;
    }

    .about-gallery-head h3 {
        font-size: 0.84rem;
    }

    .about-gallery-btn {
        width: 30px;
        height: 30px;
        border-radius: 8px;
    }

    .about-slide {
        flex-basis: min(80vw, 300px);
        height: min(56vw, 200px);
    }

    .about-media-block,
    .impact-media-block {
        padding: 12px;
    }

    .impact-age-gate-body {
        padding: 12px 10px;
    }

    .gallery-lightbox {
        padding: 12px;
    }

    .gallery-lightbox-close,
    .gallery-lightbox-nav {
        width: 38px;
        height: 38px;
    }

    .gallery-lightbox-close {
        top: 10px;
        right: 10px;
    }

    .gallery-lightbox-nav.prev {
        left: 8px;
    }

    .gallery-lightbox-nav.next {
        right: 8px;
    }

    .roadmap-item {
        grid-template-columns: 38px 1fr;
        gap: 8px;
    }

    .roadmap-dot {
        width: 36px;
        height: 36px;
        font-size: 0.82rem;
        border-radius: 10px;
    }

    .roadmap-content {
        padding: 12px;
    }

    .roadmap-footer span {
        font-size: 0.72rem;
    }

    .training-section .grid {
        gap: 12px;
    }

    .training-card {
        padding: 14px 12px;
    }

    .training-points li {
        font-size: 0.78rem;
        padding: 7px 8px;
    }

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

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

    .stats-months-nav {
        gap: 8px;
    }

    .stats-month-btn {
        font-size: 0.72rem;
        padding: 6px 10px;
    }

    .stats-tabs-nav {
        gap: 10px;
    }

    .stats-tab-btn {
        width: 92px;
        min-height: 80px;
        gap: 8px;
    }

    .stats-tab-btn i {
        font-size: 1.15rem;
    }

    .stats-tab-btn span {
        font-size: 0.72rem;
    }

    .metric-card {
        min-height: 218px;
        padding: 20px 14px 16px;
    }

    .metric-card h3 {
        padding-right: 58px;
        font-size: 0.92rem;
    }

    .vacancy-item {
        padding: 16px 10px;
    }

    .vacancies-kicker {
        font-size: 0.65rem;
    }

    .vacancies-intro {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .bottom-logos {
        display: none;
    }
}

/* Bottom Logos */
.bottom-logos {
    position: fixed;
    bottom: 30px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
    pointer-events: none;
    z-index: 90;
}

.bottom-logo-left, .bottom-logo-right {
    opacity: 0.6;
    transition: var(--transition);
}

.side-logo {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 0 10px var(--primary-color)) grayscale(0.5);
    transition: var(--transition);
}


.bottom-logos div:hover {
    opacity: 1;
    transform: scale(1.1);
}

.bottom-logos div:hover .side-logo {
    filter: drop-shadow(0 0 15px var(--primary-color)) grayscale(0);
}

@media (max-width: 768px) {
    .bottom-logos {
        position: relative;
        bottom: 0;
        padding: 20px;
        justify-content: space-around;
        pointer-events: auto;
    }
    
    .side-logo {
        height: 50px;
    }
}

