/* ==========================================================================
   DBCGAMES — Ashfall Dark Gaming Theme
   ==========================================================================
   Full dark mode, cyan accents, glow effects, grunge dividers.
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS CUSTOM PROPERTIES
   -------------------------------------------------------------------------- */
:root {
    --primary: #00E5FF;
    --primary-rgb: 0, 229, 255;
    --dark: #0a0a0a;
    --light: #111111;
    --accent2: #FF3D00;
    --accent2-rgb: 255, 61, 0;
    --text: #e0e0e0;
    --text-light: #ffffff;
    --border: #1a1a1a;

    --font-heading: 'Schibsted Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;

    --border-w: 1px;
    --container: 1200px;
    --container-wide: 1400px;
    --radius: 4px;

    --glow: 0 0 20px rgba(var(--primary-rgb), 0.3);
    --glow-strong: 0 0 30px rgba(var(--primary-rgb), 0.5);
    --glow-accent: 0 0 20px rgba(var(--accent2-rgb), 0.3);

    --header-height: 70px;
}

/* --------------------------------------------------------------------------
   RESET & BASE
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--dark);
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.skip-link {
    position: absolute;
    top: -100%;
    left: 0;
    background: var(--primary);
    color: var(--dark);
    padding: 0.5rem 1rem;
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    z-index: 99999;
}
.skip-link:focus { top: 0; }

/* --------------------------------------------------------------------------
   LAYOUT UTILITIES
   -------------------------------------------------------------------------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }
.container-wide { max-width: var(--container-wide); margin: 0 auto; padding: 0 1.5rem; }

.section { padding: 5rem 0; }
.section-dark { background: var(--dark); color: var(--text); }
.section-alt { background: var(--light); color: var(--text); }
.section-primary { background: var(--primary); color: var(--dark); }
.section-darker { background: #050505; color: var(--text); }

/* --------------------------------------------------------------------------
   TYPOGRAPHY
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: var(--text-light);
}

h1 { font-size: clamp(2.5rem, 8vw, 5rem); }
h2 { font-size: clamp(2rem, 5vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.25rem; }

.section-label {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}
.section-label::before {
    content: '//';
    font-weight: 900;
}

/* --------------------------------------------------------------------------
   BUTTONS
   -------------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: var(--border-w) solid transparent;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--primary);
    color: var(--dark);
    border-color: var(--primary);
    box-shadow: var(--glow);
}
.btn-primary:hover {
    background: transparent;
    color: var(--primary);
    box-shadow: var(--glow-strong);
}

.btn-accent {
    background: var(--accent2);
    color: var(--text-light);
    border-color: var(--accent2);
    box-shadow: var(--glow-accent);
}
.btn-accent:hover {
    background: transparent;
    color: var(--accent2);
    box-shadow: 0 0 30px rgba(var(--accent2-rgb), 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--text-light);
    border-color: rgba(255,255,255,0.3);
}
.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: var(--glow);
}

.btn-ghost {
    background: transparent;
    color: var(--primary);
    border-color: transparent;
    padding: 0.75rem 1.5rem;
}
.btn-ghost:hover {
    background: rgba(var(--primary-rgb), 0.1);
}

/* --------------------------------------------------------------------------
   HEADER — Minimal Dark Sticky
   -------------------------------------------------------------------------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: var(--border-w) solid var(--border);
}

.header-inner {
    max-width: var(--container-wide);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.5rem;
    height: var(--header-height);
}

/* Brand */
.header-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: opacity 0.3s ease;
}
.header-brand:hover { opacity: 0.8; }

.header-logo-img {
    height: 40px;
    width: auto;
}

.header-brand-name {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: -0.03em;
    color: var(--text-light);
}

/* Desktop Nav */
.header-nav {
    display: none;
}

.header-nav-list {
    display: flex;
    align-items: center;
    gap: 0;
}

.header-nav-link {
    display: block;
    padding: 0.5rem 1.25rem;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.7);
    transition: all 0.3s ease;
    position: relative;
}
.header-nav-link:hover,
.header-nav-link.active {
    color: var(--primary);
}
.header-nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--primary);
    box-shadow: 0 0 8px rgba(var(--primary-rgb), 0.5);
}

/* Header Social */
.header-social {
    display: none;
    align-items: center;
    gap: 1rem;
}
.header-social a {
    color: rgba(255,255,255,0.5);
    transition: all 0.3s ease;
    display: flex;
}
.header-social a:hover {
    color: var(--primary);
    filter: drop-shadow(0 0 6px rgba(var(--primary-rgb), 0.5));
}

/* Mobile Toggle */
.header-mobile-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-light);
    transition: all 0.3s ease;
}
.header-mobile-toggle.open .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.header-mobile-toggle.open .hamburger-line:nth-child(2) {
    opacity: 0;
}
.header-mobile-toggle.open .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav Overlay */
.header-nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    padding: 2rem 0;
    z-index: 9998;
}
.header-nav.open .header-nav-list {
    flex-direction: column;
    gap: 0;
}
.header-nav.open .header-nav-link {
    display: block;
    padding: 1.25rem 2rem;
    font-size: 1.25rem;
    font-weight: 600;
    text-align: center;
    border-bottom: var(--border-w) solid var(--border);
}

/* --------------------------------------------------------------------------
   HERO SECTION
   -------------------------------------------------------------------------- */
.hero {
    position: relative;
    background: var(--dark);
    color: var(--text-light);
    padding: 10rem 1.5rem 4rem;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-canvas {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
    opacity: 0.6;
    pointer-events: none;
}

.hero-spotlight {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: radial-gradient(circle at 50% 50%, rgba(var(--primary-rgb), 0.08) 0%, transparent 70%);
}

.hero-content {
    position: relative;
    z-index: 20;
    max-width: var(--container);
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.hero-logo {
    width: 150px;
    height: auto;
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 20px rgba(var(--primary-rgb), 0.4));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-tagline {
    font-family: var(--font-mono);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.hero h1 {
    margin-bottom: 1.5rem;
}

.hero-headline-main {
    display: block;
    font-size: clamp(3rem, 14vw, 8rem);
    font-weight: 900;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    line-height: 0.9;
    color: white;
}

.hero-headline-glow {
    text-shadow: 0 0 40px rgba(var(--primary-rgb), 0.3);
}

.hero-subtitle {
    max-width: 36rem;
    margin: 0 auto 2.5rem;
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.6);
}

.hero-ctas {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

/* --------------------------------------------------------------------------
   GRUNGE DIVIDERS
   -------------------------------------------------------------------------- */
.grunge-divider {
    width: 100%;
    line-height: 0;
    overflow: hidden;
}
.grunge-divider svg {
    width: 100%;
    height: 40px;
    display: block;
}
.grunge-divider-flip svg {
    transform: scaleY(-1);
}

/* --------------------------------------------------------------------------
   CARDS (Feature / Service)
   -------------------------------------------------------------------------- */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.card {
    background: rgba(255,255,255,0.03);
    border: var(--border-w) solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.card:hover {
    border-color: rgba(var(--primary-rgb), 0.3);
    box-shadow: var(--glow);
    transform: translateY(-4px);
}
.card:hover::before {
    opacity: 1;
}

.card-icon {
    width: 3rem;
    height: 3rem;
    margin-bottom: 1.25rem;
    color: var(--primary);
}

.card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.card p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.6);
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    margin-top: 1.5rem;
    transition: gap 0.3s ease;
}
.card-link::after { content: '\2192'; }
.card-link:hover { gap: 1rem; }

/* --------------------------------------------------------------------------
   GALLERY GRID
   -------------------------------------------------------------------------- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    aspect-ratio: 4/3;
    background: var(--light);
    border: var(--border-w) solid var(--border);
    cursor: pointer;
}

.gallery-item-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
    color: rgba(255,255,255,0.15);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.8) 100%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item:hover {
    border-color: rgba(var(--primary-rgb), 0.3);
    box-shadow: var(--glow);
}

.gallery-item-caption {
    font-size: 0.875rem;
    font-weight: 600;
    color: white;
}

/* --------------------------------------------------------------------------
   VIDEO CARDS
   -------------------------------------------------------------------------- */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1.5rem;
}

.video-card {
    background: rgba(255,255,255,0.03);
    border: var(--border-w) solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.3s ease;
}
.video-card:hover {
    border-color: rgba(var(--primary-rgb), 0.3);
    box-shadow: var(--glow);
}

.video-card-thumb {
    position: relative;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-play-btn {
    width: 60px;
    height: 60px;
    background: rgba(var(--primary-rgb), 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    transition: all 0.3s ease;
    box-shadow: 0 0 30px rgba(var(--primary-rgb), 0.4);
}
.video-card:hover .video-play-btn {
    transform: scale(1.1);
    box-shadow: 0 0 40px rgba(var(--primary-rgb), 0.6);
}

.video-card-info {
    padding: 1.25rem;
}

.video-card-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-light);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.video-card-meta {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
}

/* --------------------------------------------------------------------------
   BLOG CARDS
   -------------------------------------------------------------------------- */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1.5rem;
}

.blog-card {
    background: rgba(255,255,255,0.03);
    border: var(--border-w) solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}
.blog-card:hover {
    border-color: rgba(var(--primary-rgb), 0.3);
    box-shadow: var(--glow);
    transform: translateY(-4px);
}

.blog-card-date {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.blog-card-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--text-light);
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.blog-card-excerpt {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.5);
    flex: 1;
    margin-bottom: 1.5rem;
}

.blog-card-link {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}
.blog-card-link::after { content: '\2192'; }
.blog-card-link:hover { gap: 1rem; }

/* --------------------------------------------------------------------------
   COMMUNITY / SOCIAL CARDS
   -------------------------------------------------------------------------- */
.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.social-card {
    background: rgba(255,255,255,0.03);
    border: var(--border-w) solid var(--border);
    border-radius: var(--radius);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
}
.social-card:hover {
    border-color: rgba(var(--primary-rgb), 0.3);
    box-shadow: var(--glow);
    transform: translateY(-4px);
}

.social-card-icon {
    width: 3.5rem;
    height: 3.5rem;
    margin: 0 auto 1.25rem;
    color: var(--primary);
}

.social-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.social-card p {
    color: rgba(255,255,255,0.5);
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
}

/* --------------------------------------------------------------------------
   CTA BAND
   -------------------------------------------------------------------------- */
.cta-band {
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.1) 0%, rgba(var(--primary-rgb), 0.05) 100%);
    border-top: var(--border-w) solid rgba(var(--primary-rgb), 0.2);
    border-bottom: var(--border-w) solid rgba(var(--primary-rgb), 0.2);
    padding: 4rem 1.5rem;
    text-align: center;
}
.cta-band h2 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: 0.75rem;
    color: var(--text-light);
}
.cta-band p {
    font-family: var(--font-mono);
    font-size: 0.875rem;
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.6);
}

.cta-band-accent {
    background: linear-gradient(135deg, rgba(var(--accent2-rgb), 0.1) 0%, rgba(var(--accent2-rgb), 0.05) 100%);
    border-color: rgba(var(--accent2-rgb), 0.2);
}

/* --------------------------------------------------------------------------
   CONTACT FORM
   -------------------------------------------------------------------------- */
.form-container {
    max-width: 40rem;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}
.form-group label {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    color: rgba(255,255,255,0.7);
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    font-family: var(--font-body);
    font-size: 1rem;
    border: var(--border-w) solid var(--border);
    background: rgba(255,255,255,0.05);
    color: var(--text-light);
    border-radius: var(--radius);
    transition: all 0.3s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.15);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.3);
}
.form-group textarea { min-height: 8rem; resize: vertical; }

.form-submit {
    width: 100%;
    padding: 1.25rem;
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: var(--primary);
    color: var(--dark);
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--glow);
}
.form-submit:hover {
    box-shadow: var(--glow-strong);
    transform: translateY(-2px);
}

.form-status {
    padding: 1rem 1.5rem;
    margin-top: 1rem;
    font-family: var(--font-mono);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: var(--radius);
    display: none;
}
.form-status.success { background: rgba(34, 197, 94, 0.1); color: #22c55e; border: 1px solid rgba(34, 197, 94, 0.3); display: block; }
.form-status.error { background: rgba(239, 68, 68, 0.1); color: #ef4444; border: 1px solid rgba(239, 68, 68, 0.3); display: block; }

.hp-field { position: absolute; left: -9999px; }

/* --------------------------------------------------------------------------
   FAQ ACCORDION
   -------------------------------------------------------------------------- */
.faq-list { max-width: 48rem; margin: 0 auto; }

.faq-item {
    border: var(--border-w) solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 0.5rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    text-align: left;
    background: rgba(255,255,255,0.03);
    border: none;
    cursor: pointer;
    color: var(--text);
    transition: all 0.3s ease;
}
.faq-question:hover {
    background: rgba(var(--primary-rgb), 0.05);
    color: var(--text-light);
}
.faq-question[aria-expanded="true"] {
    background: rgba(var(--primary-rgb), 0.1);
    color: var(--primary);
}
.faq-question-icon {
    font-family: var(--font-mono);
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--primary);
    transition: transform 0.3s ease;
}
.faq-question[aria-expanded="true"] .faq-question-icon { transform: rotate(45deg); }

.faq-answer {
    display: none;
    padding: 1.5rem;
    background: rgba(255,255,255,0.02);
    border-top: var(--border-w) solid var(--border);
    line-height: 1.7;
    color: rgba(255,255,255,0.7);
}
.faq-answer.open { display: block; }

/* --------------------------------------------------------------------------
   TRUST SIGNALS
   -------------------------------------------------------------------------- */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}
.trust-card {
    background: rgba(255,255,255,0.03);
    border: var(--border-w) solid var(--border);
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}
.trust-card:hover {
    border-color: rgba(var(--primary-rgb), 0.3);
    box-shadow: var(--glow);
}
.trust-card-icon {
    width: 2.5rem; height: 2.5rem;
    margin: 0 auto 0.75rem;
    color: var(--primary);
}
.trust-card h4 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}
.trust-card p {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
}

/* --------------------------------------------------------------------------
   CONTENT SECTIONS
   -------------------------------------------------------------------------- */
.content-intro {
    max-width: 48rem;
    margin: 0 auto;
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.7);
}
.content-intro p { margin-bottom: 1.5rem; }

/* Stats row */
.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}
.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255,255,255,0.03);
    border: var(--border-w) solid var(--border);
    border-radius: var(--radius);
}
.stat-number {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 2.5rem;
    color: var(--primary);
    line-height: 1;
}
.stat-label {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.5);
    margin-top: 0.5rem;
}

/* --------------------------------------------------------------------------
   FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
    background: #050505;
    color: var(--text);
    padding: 0 0 2rem;
    position: relative;
}

.site-footer .container {
    padding-top: 3rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

.footer-brand-link {
    display: inline-block;
    margin-bottom: 1rem;
}
.footer-logo-img {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(var(--primary-rgb), 0.3));
}

.footer-brand {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: -0.03em;
    color: var(--text-light);
    display: block;
    margin-bottom: 0.75rem;
}

.footer-about {
    font-size: 0.875rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.5);
}

.footer-title {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary);
    margin-bottom: 1rem;
}

.footer-links li { margin-bottom: 0.5rem; }
.footer-links a,
.footer-links li {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.5);
    transition: all 0.3s ease;
}
.footer-links a:hover { color: var(--primary); }

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.footer-social a {
    font-family: var(--font-mono);
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    transition: all 0.3s ease;
}
.footer-social a:hover { color: var(--primary); }

.footer-bottom {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: var(--border-w) solid var(--border);
    text-align: center;
    font-family: var(--font-mono);
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.3);
}

/* --------------------------------------------------------------------------
   MOBILE CTA BAR
   -------------------------------------------------------------------------- */
.mobile-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    z-index: 9998;
    border-top: var(--border-w) solid var(--border);
}
.mobile-cta-join,
.mobile-cta-contact {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem;
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.mobile-cta-join {
    background: var(--primary);
    color: var(--dark);
}
.mobile-cta-contact {
    background: #111;
    color: var(--text-light);
}

/* --------------------------------------------------------------------------
   SCROLL ANIMATIONS
   -------------------------------------------------------------------------- */
.reveal {
    opacity: 0;
    transform: translateY(1.25rem);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --------------------------------------------------------------------------
   RESPONSIVE
   -------------------------------------------------------------------------- */

/* Tablet+ */
@media (min-width: 768px) {
    .header-nav {
        display: flex;
        align-items: center;
    }
    .header-social {
        display: flex;
    }
    .header-mobile-toggle {
        display: none;
    }

    .hero { padding: 8rem 1.5rem 6rem; }
    .hero-logo { width: 180px; }
    .hero-ctas { flex-direction: row; gap: 1.5rem; }

    .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }

    .mobile-cta-bar { display: none; }
    body { padding-bottom: 0; }

    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Desktop */
@media (min-width: 1024px) {
    .hero-logo { width: 200px; }
}

/* Mobile bottom padding */
@media (max-width: 767px) {
    body { padding-bottom: 3.5rem; }
    .site-footer { padding-bottom: 5rem; }

    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .video-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
}

/* Focus styles */
:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}
