/* ============================================
   CZ VOICE HUB - LANDING PAGE
   Yellow & Black Bold Design
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=DM+Sans:wght@400;500;600;700&display=swap');

/* ========== CSS Variables ========== */
:root {
    --gold: #F5C518;
    --gold-light: #FFD84D;
    --gold-dark: #D4A800;
    --gold-dim: rgba(245, 197, 24, 0.15);
    --gold-glow: rgba(245, 197, 24, 0.4);

    --black: #0a0a0a;
    --black-light: #111111;
    --black-card: #161616;
    --black-glass: rgba(22, 22, 22, 0.85);

    --white: #ffffff;
    --white-70: rgba(255, 255, 255, 0.7);
    --white-50: rgba(255, 255, 255, 0.5);
    --white-20: rgba(255, 255, 255, 0.2);
    --white-10: rgba(255, 255, 255, 0.1);
    --white-05: rgba(255, 255, 255, 0.05);

    --font-display: 'Space Grotesk', sans-serif;
    --font-body: 'DM Sans', sans-serif;

    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    --duration-fast: 150ms;
    --duration-normal: 300ms;
    --duration-slow: 600ms;

    --container-width: 1200px;
    --header-height: 72px;
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

body::-webkit-scrollbar,
html::-webkit-scrollbar,
*::-webkit-scrollbar {
    display: none;
}

html {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

/* Scroll progress bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
    z-index: 10001;
    transition: width 0.05s linear;
    box-shadow: 0 0 10px var(--gold-glow);
}

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    line-height: 1.15;
}

/* ========== Particles ========== */
#particlesCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* ========== Container ========== */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ========== Reveal Animations ========== */
.section, .hero-center, .hero-visual {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.section.revealed, .hero-center.revealed, .hero-visual.revealed {
    opacity: 1;
    transform: translateY(0);
}

.hero-visual {
    transition-delay: 200ms;
}

@media (prefers-reduced-motion: reduce) {
    .section, .hero-center, .hero-visual {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ============================================
   HEADER
   ============================================ */
.landing-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
    transition: background var(--duration-normal) var(--ease),
                box-shadow var(--duration-normal) var(--ease),
                backdrop-filter var(--duration-normal) var(--ease);
}

.landing-header.scrolled {
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(20px) saturate(1.2);
    -webkit-backdrop-filter: blur(20px) saturate(1.2);
    box-shadow: 0 1px 0 var(--white-10), 0 4px 20px rgba(0, 0, 0, 0.5);
}

.header-inner {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.logo-icon {
    display: flex;
    align-items: center;
    transition: transform var(--duration-normal) var(--ease);
}

.header-logo:hover .logo-icon {
    transform: rotate(-8deg) scale(1.05);
}

.logo-text {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.02em;
}

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

.logo-img {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    object-fit: cover;
}

.footer-logo-img {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    object-fit: cover;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--white-70);
    padding: 8px 14px;
    border-radius: 8px;
    transition: color var(--duration-fast) var(--ease),
                background var(--duration-fast) var(--ease);
}

.nav-link:hover {
    color: var(--white);
    background: var(--white-05);
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    color: var(--black);
    background: var(--gold);
    padding: 10px 20px;
    border-radius: 10px;
    transition: all var(--duration-normal) var(--ease);
    flex-shrink: 0;
}

.header-cta:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px var(--gold-glow);
}

.header-cta svg {
    stroke: var(--black);
}

/* Mobile menu button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--duration-normal) var(--ease);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile nav overlay */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--duration-normal) var(--ease);
}

.mobile-nav-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 16px;
}

.mobile-nav-link {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    color: var(--white-70);
    padding: 12px 24px;
    transition: color var(--duration-fast) var(--ease);
}

.mobile-nav-link:hover {
    color: var(--gold);
}

.mobile-nav-cta {
    margin-top: 16px;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--black);
    background: var(--gold);
    padding: 16px 40px;
    border-radius: 12px;
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: calc(var(--header-height) + 40px) 0 80px;
    overflow: hidden;
}

.hero-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 80px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    transition: transform 0.3s ease-out;
}

.hero-glow-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
    top: -200px;
    left: -100px;
    opacity: 0.5;
}

.hero-glow-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(245, 197, 24, 0.2) 0%, transparent 70%);
    bottom: -100px;
    right: -50px;
    opacity: 0.4;
}

.hero-glow-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 216, 77, 0.15) 0%, transparent 70%);
    top: 40%;
    left: 50%;
    opacity: 0.3;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(var(--white-05) 1px, transparent 1px),
        linear-gradient(90deg, var(--white-05) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-center {
    text-align: left;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.hero-center.revealed {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Title */
.hero-title {
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 0.95;
    margin-bottom: 24px;
}

.title-line {
    display: block;
    animation: fadeInUp 0.6s var(--ease) both;
}

.title-line-1 {
    background: linear-gradient(90deg, var(--white), var(--gold), var(--gold-dark), var(--gold-light), var(--white));
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.6s var(--ease) 100ms both, titleShimmer 6s ease-in-out infinite 1s;
    text-shadow: none;
}

@keyframes titleShimmer {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-subtitle {
    font-size: 18px;
    color: var(--white-70);
    max-width: 500px;
    line-height: 1.7;
    margin-bottom: 36px;
    animation: fadeInUp 0.6s var(--ease) 300ms both;
}

/* Hero actions */
.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s var(--ease) 400ms both;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--black);
    background: var(--gold);
    padding: 16px 32px;
    border-radius: 14px;
    transition: all var(--duration-normal) var(--ease);
    position: relative;
    overflow: hidden;
}

.btn-hero-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.2) 50%, transparent 100%);
    transform: translateX(-100%);
    transition: transform 0.5s var(--ease);
}

.btn-hero-primary:hover::before {
    transform: translateX(100%);
}

.btn-hero-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px var(--gold-glow), 0 2px 8px rgba(0,0,0,0.3);
}

.btn-hero-primary svg {
    stroke: var(--black);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    color: var(--white-70);
    background: var(--white-05);
    border: 1px solid var(--white-10);
    padding: 16px 28px;
    border-radius: 14px;
    transition: all var(--duration-normal) var(--ease);
}

.btn-hero-secondary:hover {
    color: var(--white);
    background: var(--white-10);
    border-color: var(--white-20);
    transform: translateY(-2px);
}

/* Hero visual - video */
.hero-visual {
    position: relative;
}

.hero-video-wrapper {
    position: relative;
}

.video-frame {
    background: var(--black-card);
    border: 1px solid var(--white-10);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(245, 197, 24, 0.08);
    transition: transform 0.15s ease-out, box-shadow var(--duration-normal) var(--ease);
    will-change: transform;
}

.video-frame-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid var(--white-05);
}

.frame-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--white-10);
}

.frame-dot:first-child { background: #ef4444; }
.frame-dot:nth-child(2) { background: var(--gold); }
.frame-dot:nth-child(3) { background: #10b981; }

.frame-title {
    margin-left: 8px;
    font-size: 12px;
    color: var(--white-50);
    font-family: var(--font-body);
}

.video-container {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--black);
    position: relative;
    cursor: pointer;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-click-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: rgba(0, 0, 0, 0.15);
    opacity: 0;
    transition: opacity var(--duration-normal) var(--ease);
    z-index: 2;
}

.video-container:hover .video-click-overlay {
    opacity: 1;
}

.video-play-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(245, 197, 24, 0.5);
    border-radius: 50%;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all var(--duration-normal) var(--ease);
}

.video-play-icon svg {
    margin-left: 4px;
}

.video-overlay-text {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

.video-container:hover .video-play-icon {
    transform: scale(1.1);
    border-color: var(--gold);
    box-shadow: 0 0 30px rgba(245, 197, 24, 0.3);
}

/* Custom fullscreen overlay */
.video-fs-backdrop {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    opacity: 0;
    transition: background 0.5s var(--ease), opacity 0.5s var(--ease);
}

.video-fs-backdrop.active {
    background: rgba(0, 0, 0, 0.95);
    pointer-events: auto;
    opacity: 1;
}

.video-fs-wrapper {
    position: relative;
    width: 90vw;
    max-width: 1200px;
    transform: scale(0.7);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s var(--ease);
}

.video-fs-backdrop.active .video-fs-wrapper {
    transform: scale(1);
    opacity: 1;
}

.video-fs-player {
    width: 100%;
    border-radius: 16px;
    display: block;
    box-shadow: 0 0 80px rgba(245, 197, 24, 0.1);
}

.video-fs-close {
    position: absolute;
    top: -48px;
    right: 0;
    background: none;
    border: none;
    color: var(--white-50);
    font-size: 36px;
    cursor: pointer;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all var(--duration-normal) var(--ease);
}

.video-fs-close:hover {
    color: var(--white);
    background: var(--white-10);
}

.video-fs-controls {
    position: absolute;
    bottom: 16px;
    right: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 10px 16px;
    border-radius: 12px;
    opacity: 0;
    transition: opacity var(--duration-normal) var(--ease);
}

.video-fs-wrapper:hover .video-fs-controls {
    opacity: 1;
}

.video-fs-controls svg {
    flex-shrink: 0;
    color: var(--white-70);
}

.video-fs-volume {
    width: 100px;
    height: 4px;
    -webkit-appearance: none;
    appearance: none;
    background: var(--white-20);
    border-radius: 2px;
    outline: none;
    cursor: pointer;
}

.video-fs-volume::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--gold);
    cursor: pointer;
    box-shadow: 0 0 6px rgba(245, 197, 24, 0.4);
}

.video-fs-volume::-moz-range-thumb {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--gold);
    border: none;
    cursor: pointer;
    box-shadow: 0 0 6px rgba(245, 197, 24, 0.4);
}


/* ============================================
   SECTIONS COMMON
   ============================================ */
.section {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
    background: var(--gold-dim);
    border: 1px solid rgba(245, 197, 24, 0.2);
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 17px;
    color: var(--white-50);
    max-width: 540px;
    margin: 0 auto;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.section-about {
    background: linear-gradient(180deg, var(--black) 0%, var(--black-light) 100%);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.about-lead {
    font-size: 20px;
    color: var(--white-70);
    line-height: 1.7;
    margin-bottom: 40px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.about-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-dim);
    border: 1px solid rgba(245, 197, 24, 0.15);
    border-radius: 12px;
}

.about-feature h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.about-feature p {
    font-size: 14px;
    color: var(--white-50);
    line-height: 1.6;
}

/* About visual - stacked cards */
.about-visual {
    display: flex;
    justify-content: center;
}

.about-card-stack {
    position: relative;
    width: 280px;
    height: 340px;
}

.about-card {
    position: absolute;
    width: 220px;
    padding: 32px 24px;
    background: var(--black-card);
    border: 1px solid var(--white-10);
    border-radius: 20px;
    text-align: center;
    transition: all var(--duration-slow) var(--ease);
    cursor: default;
}

.about-card:hover {
    border-color: rgba(245, 197, 24, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 20px rgba(245, 197, 24, 0.08);
}

.about-card-1 {
    top: 0;
    left: 0;
    z-index: 3;
    transform: rotate(-4deg);
}

.about-card-1:hover {
    transform: rotate(-4deg) translateY(-8px);
}

.about-card-2 {
    top: 40px;
    left: 50px;
    z-index: 2;
    transform: rotate(2deg);
}

.about-card-2:hover {
    transform: rotate(2deg) translateY(-8px);
}

.about-card-3 {
    top: 80px;
    left: 20px;
    z-index: 1;
    transform: rotate(-1deg);
}

.about-card-3:hover {
    transform: rotate(-1deg) translateY(-8px);
}

.card-icon-big {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-dim);
    border-radius: 16px;
    margin: 0 auto 16px;
}

.about-card span {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
}

/* ============================================
   STATS SECTION
   ============================================ */
.section-stats {
    background: var(--black-light);
    border-top: 1px solid var(--white-05);
    border-bottom: 1px solid var(--white-05);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stat-card {
    text-align: center;
    padding: 40px 24px;
    background: var(--black-card);
    border: 1px solid var(--white-10);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transition: all var(--duration-normal) var(--ease);
}

.stat-card:hover {
    border-color: rgba(245, 197, 24, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(245, 197, 24, 0.08);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 8px;
    text-shadow: 0 0 40px var(--gold-glow);
}

.stat-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--white-50);
}

.stat-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity var(--duration-normal) var(--ease);
}

.stat-card:hover .stat-bar {
    opacity: 1;
}

/* ============================================
   MEMBERS SECTION
   ============================================ */
.section-members {
    background: linear-gradient(180deg, var(--black-light) 0%, var(--black) 100%);
}

.members-filters {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.filter-btn {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    color: var(--white-50);
    background: var(--white-05);
    border: 1px solid var(--white-10);
    padding: 8px 18px;
    border-radius: 100px;
    cursor: pointer;
    transition: all var(--duration-normal) var(--ease);
}

.filter-btn:hover {
    color: var(--white);
    background: var(--white-10);
    border-color: var(--white-20);
}

.filter-btn.active {
    color: var(--black);
    background: var(--gold);
    border-color: var(--gold);
}

.members-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.member-avatar-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(245, 197, 24, 0.2);
    margin: 0 auto;
    display: block;
    transition: border-color var(--duration-normal) var(--ease);
}

.member-card:hover .member-avatar-img {
    border-color: var(--gold);
}

.member-card {
    background: var(--black-card);
    border: 1px solid var(--white-10);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    transition: all var(--duration-normal) var(--ease);
    position: relative;
    overflow: hidden;
}

.member-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform var(--duration-normal) var(--ease);
}

.member-card:hover::before {
    transform: scaleX(1);
}

.member-card:hover {
    border-color: rgba(245, 197, 24, 0.2);
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.member-avatar {
    margin-bottom: 20px;
}

.avatar-placeholder {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-dim);
    border: 2px solid rgba(245, 197, 24, 0.2);
    border-radius: 50%;
    margin: 0 auto;
    transition: border-color var(--duration-normal) var(--ease);
}

.member-card:hover .avatar-placeholder {
    border-color: var(--gold);
}

.member-info {
    margin-bottom: 12px;
}

.member-info h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.member-role {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 12px;
    border-radius: 100px;
    background: var(--gold-dim);
    color: var(--gold);
    border: 1px solid rgba(245, 197, 24, 0.2);
}

.member-desc {
    font-size: 14px;
    color: var(--white-50);
    line-height: 1.6;
}

.member-desc-truncated {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.member-desc-truncated.expanded {
    -webkit-line-clamp: unset;
    overflow: visible;
}

.btn-expand-desc {
    background: none;
    border: none;
    color: var(--gold);
    font-size: 13px;
    cursor: pointer;
    padding: 4px 0 0;
    font-weight: 600;
}

.btn-expand-desc:hover {
    text-decoration: underline;
}

.members-cta {
    text-align: center;
}

.btn-secondary-lg {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    color: var(--gold);
    background: var(--gold-dim);
    border: 1px solid rgba(245, 197, 24, 0.25);
    padding: 16px 32px;
    border-radius: 14px;
    cursor: pointer;
    transition: all var(--duration-normal) var(--ease);
}

.btn-secondary-lg svg {
    transition: transform var(--duration-normal) var(--ease);
}

.btn-secondary-lg:hover {
    background: rgba(245, 197, 24, 0.2);
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(245, 197, 24, 0.15);
    color: var(--gold-light);
}

/* ============================================
   SOCIAL SECTION
   ============================================ */
.section-social {
    background: var(--black);
    border-top: 1px solid var(--white-05);
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.social-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--black-card);
    border: 1px solid var(--white-10);
    border-radius: 16px;
    padding: 24px;
    transition: all var(--duration-normal) var(--ease);
    position: relative;
    overflow: hidden;
}

.social-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    opacity: 0;
    transition: opacity var(--duration-normal) var(--ease);
}

.social-card:hover::after {
    opacity: 0.06;
}

.social-youtube:hover { border-color: #ef4444; }
.social-youtube::after { background: #ef4444; }
.social-youtube .social-icon { color: #ef4444; }

.social-instagram:hover { border-color: #e4405f; }
.social-instagram::after { background: #e4405f; }
.social-instagram .social-icon { color: #e4405f; }

.social-tiktok:hover { border-color: #ffffff; }
.social-tiktok::after { background: #ffffff; }
.social-tiktok .social-icon { color: #ffffff; }

.social-discord:hover { border-color: #5865f2; }
.social-discord::after { background: #5865f2; }
.social-discord .social-icon { color: #5865f2; }

.social-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.social-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white-05);
    border-radius: 14px;
    position: relative;
    z-index: 1;
}

.social-info {
    flex: 1;
    position: relative;
    z-index: 1;
}

.social-info h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2px;
}

.social-info p {
    font-size: 13px;
    color: var(--white-50);
}

.social-arrow {
    color: var(--white-20);
    transition: color var(--duration-fast) var(--ease),
                transform var(--duration-fast) var(--ease);
    position: relative;
    z-index: 1;
}

.social-card:hover .social-arrow {
    color: var(--white-50);
    transform: translate(2px, -2px);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.section-contact {
    background: var(--black-light);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-desc {
    font-size: 17px;
    color: var(--white-50);
    line-height: 1.7;
    margin-top: 16px;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--black-card);
    border: 1px solid var(--white-10);
    border-radius: 16px;
    padding: 24px;
    transition: all var(--duration-normal) var(--ease);
}

.contact-card:hover {
    border-color: rgba(245, 197, 24, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.contact-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-dim);
    border-radius: 14px;
    color: var(--gold);
}

.contact-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2px;
}

.contact-card p {
    font-size: 14px;
    color: var(--white-50);
}

/* ============================================
   FINAL CTA SECTION
   ============================================ */
.section-cta {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background: var(--black);
    border-top: 1px solid var(--white-05);
}

.cta-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse at center, var(--gold-glow) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(80px);
    opacity: 0.3;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}

.cta-desc {
    font-size: 18px;
    color: var(--white-50);
    max-width: 520px;
    margin: 0 auto 36px;
}

.btn-cta-final {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--black);
    background: var(--gold);
    padding: 20px 44px;
    border-radius: 16px;
    transition: all var(--duration-normal) var(--ease);
    position: relative;
    overflow: hidden;
}

.btn-cta-final::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.2) 50%, transparent 100%);
    transform: translateX(-100%);
    transition: transform 0.6s var(--ease);
}

.btn-cta-final:hover::before {
    transform: translateX(100%);
}

.btn-cta-final:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 12px 48px var(--gold-glow), 0 4px 12px rgba(0, 0, 0, 0.3);
}

.btn-cta-final svg {
    stroke: var(--black);
}

/* ============================================
   FOOTER
   ============================================ */
.landing-footer {
    background: var(--black);
    border-top: 1px solid var(--white-10);
    padding: 48px 0 32px;
    position: relative;
    z-index: 1;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo span {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
}

.footer-tagline {
    font-size: 14px;
    color: var(--white-50);
    margin-top: 8px;
}

.footer-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 14px;
    color: var(--white-50);
    transition: color var(--duration-fast) var(--ease);
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid var(--white-05);
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--white-20);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .members-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
}

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

    .header-cta {
        display: none;
    }

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

    .mobile-nav-overlay {
        display: block;
    }

    .hero {
        min-height: auto;
        padding: calc(var(--header-height) + 40px) 0 40px;
    }

    .hero-layout {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .hero-center {
        text-align: center;
    }

    .hero-subtitle {
        font-size: 15px;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 28px;
    }

    .hero-actions {
        justify-content: center;
    }

    .video-frame {
        border-radius: 12px;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 14px 24px;
        font-size: 15px;
    }

    .section {
        padding: 72px 0;
    }

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

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-card {
        padding: 28px 16px;
    }

    .members-grid {
        grid-template-columns: 1fr;
        max-width: 380px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 48px;
    }

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

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

    .footer-links {
        justify-content: center;
    }

    .section-cta {
        padding: 80px 0;
    }

    .btn-cta-final {
        padding: 16px 32px;
        font-size: 16px;
    }

    .about-card-stack {
        width: 240px;
        height: 300px;
    }

    .about-card {
        width: 190px;
        padding: 24px 20px;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        justify-content: center;
    }

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

    .stat-number {
        font-size: 2rem;
    }
}
