/* ═══════════════════════════════════════════════════════
   GET FEARCE — Landing Page Stylesheet
   Colour Palette from hero image:
     Deep Space    #06030f  /  #0a0520
     Aurora Purple #2d0a5a  /  #4a1080
     Cyan          #00d4ff  /  #00ffcc
     Aurora Green  #00ff88  /  #39ff14
     Gold          #ffd700  /  #ffaa00
     Orange        #ff6600  /  #ff4500
     Ice Blue      #90d0ff  /  #c0e8ff
     Purple Bright #bf5fff  /  #9933ff
═══════════════════════════════════════════════════════ */

/* ─── Custom Properties ─────────────────────────────── */
:root {
    /* Core colours */
    --space-deep:      #06030f;
    --space-mid:       #0a0520;
    --space-surface:   #10082a;
    --purple-dark:     #1a0840;
    --purple-mid:      #2d0a5a;
    --purple-bright:   #bf5fff;
    --cyan:            #00d4ff;
    --cyan-bright:     #00ffee;
    --aurora-green:    #00ff88;
    --gold:            #ffd700;
    --gold-bright:     #ffe44d;
    --orange:          #ff6600;
    --orange-bright:   #ff8c00;
    --ice-blue:        #90d0ff;
    --ice-white:       #e8f4ff;

    /* Glow colours (for box-shadow / text-shadow) */
    --glow-cyan:       0 0 20px rgba(0,212,255,0.7), 0 0 60px rgba(0,212,255,0.3);
    --glow-gold:       0 0 20px rgba(255,215,0,0.8), 0 0 60px rgba(255,170,0,0.4);
    --glow-orange:     0 0 20px rgba(255,102,0,0.8), 0 0 60px rgba(255,69,0,0.4);
    --glow-green:      0 0 20px rgba(0,255,136,0.7), 0 0 60px rgba(0,255,136,0.3);
    --glow-purple:     0 0 20px rgba(191,95,255,0.7), 0 0 60px rgba(191,95,255,0.3);
    --glow-blue:       0 0 20px rgba(144,208,255,0.7), 0 0 60px rgba(144,208,255,0.3);

    /* Typography */
    --font-display:  'Bebas Neue', 'Impact', sans-serif;
    --font-heading:  'Orbitron', 'Rajdhani', sans-serif;
    --font-ui:       'Rajdhani', sans-serif;
    --font-body:     'Inter', system-ui, sans-serif;

    /* Spacing */
    --section-pad-v: clamp(80px, 10vw, 140px);
    --container-max: 1240px;
    --container-pad: clamp(20px, 5vw, 60px);

    /* Transitions */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring:   cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    background: var(--space-deep);
    color: var(--ice-white);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font: inherit; }
.sr-only { position: absolute; width: 1px; height: 1px; clip: rect(0,0,0,0); overflow: hidden; }

/* ─── Particle Canvas ───────────────────────────────── */
#particle-canvas {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 0;
}

/* ─── Aurora Background ─────────────────────────────── */
.aurora-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.aurora {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    animation: aurora-drift 20s ease-in-out infinite alternate;
}

.aurora-1 {
    width: 100vw; height: 60vh;
    top: -20%; left: -10%;
    background: radial-gradient(ellipse, #00ff88 0%, #00d4ff 40%, transparent 70%);
    animation-duration: 18s;
    animation-delay: 0s;
}

.aurora-2 {
    width: 80vw; height: 70vh;
    top: 0; right: -20%;
    background: radial-gradient(ellipse, #bf5fff 0%, #2d0a5a 50%, transparent 70%);
    animation-duration: 22s;
    animation-delay: -8s;
    opacity: 0.2;
}

.aurora-3 {
    width: 60vw; height: 50vh;
    bottom: -10%; left: 20%;
    background: radial-gradient(ellipse, #ffd700 0%, #ff6600 40%, transparent 70%);
    animation-duration: 25s;
    animation-delay: -14s;
    opacity: 0.1;
}

@keyframes aurora-drift {
    0%   { transform: translate(0, 0) scale(1); }
    50%  { transform: translate(5%, 8%) scale(1.1); }
    100% { transform: translate(-5%, -5%) scale(0.95); }
}

/* ─── Section Container ─────────────────────────────── */
.section-container {
    position: relative;
    z-index: 2;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-pad);
}

/* ─── Section Headers ───────────────────────────────── */
.section-label {
    font-family: var(--font-ui);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.05;
    letter-spacing: 0.03em;
    color: var(--ice-white);
    margin-bottom: 20px;
}

.section-intro {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(232,244,255,0.7);
    max-width: 620px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: clamp(50px, 7vw, 90px);
}

.glow-text {
    background: linear-gradient(135deg, var(--gold) 0%, var(--orange) 40%, var(--cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(255,215,0,0.5));
}

/* ══════════════════════════════════════════════════════
   TOP BAR
══════════════════════════════════════════════════════ */
.topbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    transition: background 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease;
}

.topbar.scrolled {
    background: rgba(6, 3, 15, 0.88);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 1px 0 rgba(0, 212, 255, 0.2), 0 4px 40px rgba(0, 0, 0, 0.5);
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 18px var(--container-pad);
    gap: 20px;
}

/* Logo */
.topbar-logo {
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-shrink: 0;
}

.logo-get {
    font-family: var(--font-display);
    font-size: 1.4rem;
    letter-spacing: 0.15em;
    color: rgba(232,244,255,0.6);
}

.logo-fearce {
    font-family: var(--font-display);
    font-size: 1.8rem;
    letter-spacing: 0.06em;
    display: inline-flex;
    align-items: baseline;
    gap: 0;
}

.logo-letter {
    background: linear-gradient(180deg, var(--gold) 0%, var(--orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    transition: filter 0.2s ease;
    filter: drop-shadow(0 0 8px rgba(255,215,0,0.6));
}

.logo-fearce:hover .logo-letter {
    filter: drop-shadow(0 0 14px rgba(255,215,0,0.9));
}

.logo-dot {
    color: var(--cyan);
    font-size: 1.4rem;
    opacity: 0.7;
}

/* Desktop Nav */
.topbar-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    font-family: var(--font-ui);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(232,244,255,0.75);
    padding: 8px 14px;
    border-radius: 4px;
    transition: color 0.2s ease, background 0.2s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px; left: 14px; right: 14px;
    height: 1px;
    background: var(--cyan);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s var(--ease-out-expo);
}

.nav-link:hover { color: var(--cyan); }
.nav-link:hover::after { transform: scaleX(1); }

.nav-cta {
    color: var(--space-deep) !important;
    background: linear-gradient(135deg, var(--gold) 0%, var(--orange) 100%);
    padding: 10px 22px;
    border-radius: 4px;
    font-weight: 700;
    letter-spacing: 0.12em;
    box-shadow: 0 0 20px rgba(255,170,0,0.4);
    transition: box-shadow 0.3s ease, transform 0.2s ease !important;
}

.nav-cta::after { display: none; }
.nav-cta:hover { box-shadow: 0 0 40px rgba(255,170,0,0.7), 0 0 80px rgba(255,102,0,0.3); transform: translateY(-1px); }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 110;
}

.hamburger span {
    display: block;
    width: 24px; height: 2px;
    background: var(--ice-white);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); background: var(--gold); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: var(--gold); }

/* Mobile Nav */
.mobile-nav {
    display: none;
    flex-direction: column;
    background: rgba(6, 3, 15, 0.96);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(0, 212, 255, 0.2);
    padding: 20px var(--container-pad);
    gap: 4px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease-out-expo), padding 0.4s ease;
}

.mobile-nav.open {
    max-height: 400px;
    padding-bottom: 30px;
}

.mobile-nav-link {
    font-family: var(--font-ui);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(232,244,255,0.75);
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: color 0.2s ease;
}

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

.mobile-cta {
    margin-top: 12px;
    text-align: center;
    background: linear-gradient(135deg, var(--gold) 0%, var(--orange) 100%);
    color: var(--space-deep) !important;
    padding: 14px;
    border-radius: 4px;
    border-bottom: none !important;
    font-weight: 700;
}

/* ══════════════════════════════════════════════════════
   HERO SECTION
══════════════════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Hero Background Image */
.hero-image-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-image {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 30%;
    transform: scale(1.05);
    animation: hero-ken-burns 20s ease-in-out infinite alternate;
}

@keyframes hero-ken-burns {
    from { transform: scale(1.05) translate(0, 0); }
    to   { transform: scale(1.12) translate(-2%, 1%); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom,
            rgba(6,3,15,0.5)  0%,
            rgba(6,3,15,0.1)  30%,
            rgba(6,3,15,0.3)  60%,
            rgba(6,3,15,0.95) 100%),
        linear-gradient(to right,
            rgba(6,3,15,0.7)  0%,
            transparent       60%);
}

/* Energy Rings */
.energy-rings {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.energy-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid;
    opacity: 0;
    animation: ring-expand 6s ease-out infinite;
}

.ring-1 {
    width: 300px; height: 300px;
    bottom: 10%; right: 15%;
    border-color: rgba(0, 212, 255, 0.6);
    animation-delay: 0s;
    box-shadow: 0 0 30px rgba(0,212,255,0.3) inset;
}

.ring-2 {
    width: 500px; height: 500px;
    bottom: 5%; right: 10%;
    border-color: rgba(255, 215, 0, 0.4);
    animation-delay: 1.5s;
    box-shadow: 0 0 30px rgba(255,215,0,0.2) inset;
}

.ring-3 {
    width: 700px; height: 700px;
    bottom: -5%; right: 5%;
    border-color: rgba(191, 95, 255, 0.3);
    animation-delay: 3s;
}

@keyframes ring-expand {
    0%   { transform: scale(0.6); opacity: 0.8; }
    100% { transform: scale(1.4); opacity: 0; }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: var(--container-max);
    width: 100%;
    margin: 0 auto;
    padding: 120px var(--container-pad) 80px;
    text-align: left;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    animation: fade-up 0.8s var(--ease-out-expo) 0.2s both;
}

.eyebrow-line {
    flex: 0 0 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--cyan));
}

.eyebrow-line:last-child {
    background: linear-gradient(90deg, var(--cyan), transparent);
}

.eyebrow-text {
    font-family: var(--font-ui);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--cyan);
    white-space: nowrap;
}

/* Hero Title */
.hero-title {
    display: flex;
    flex-direction: column;
    gap: 0;
    line-height: 0.9;
    margin-bottom: 20px;
}

.hero-title-get {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 6rem);
    letter-spacing: 0.08em;
    color: rgba(232,244,255,0.7);
    animation: fade-up 0.8s var(--ease-out-expo) 0.4s both;
}

.hero-title-fearce {
    font-family: var(--font-display);
    font-size: clamp(5rem, 16vw, 13rem);
    letter-spacing: 0.04em;
    display: inline-flex;
    flex-wrap: wrap;
    gap: 0;
    line-height: 0.85;
}

.ht-letter {
    background: linear-gradient(180deg, #fff5cc 0%, var(--gold) 40%, var(--orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    filter: drop-shadow(0 0 20px rgba(255,170,0,0.8)) drop-shadow(0 0 40px rgba(255,102,0,0.4));
    animation: letter-blaze 0.7s var(--ease-spring) var(--delay) both;
}

.ht-dot {
    color: var(--cyan);
    -webkit-text-fill-color: var(--cyan);
    font-size: 0.4em;
    vertical-align: middle;
    margin: 0 0.03em;
    opacity: 0.9;
    text-shadow: var(--glow-cyan);
    animation: fade-up 0.6s var(--ease-out-expo) 0.8s both;
}

@keyframes letter-blaze {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.8);
        filter: drop-shadow(0 0 60px rgba(255,215,0,1)) brightness(3);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero-tagline {
    font-family: var(--font-ui);
    font-size: clamp(1.1rem, 3vw, 1.8rem);
    font-weight: 700;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--cyan-bright);
    text-shadow: var(--glow-cyan);
    margin-bottom: 28px;
    animation: fade-up 0.8s var(--ease-out-expo) 0.9s both;
}

.hero-sub {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: rgba(232,244,255,0.75);
    max-width: 480px;
    line-height: 1.8;
    margin-bottom: 44px;
    animation: fade-up 0.8s var(--ease-out-expo) 1.1s both;
}

/* Hero Buttons */
.hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    animation: fade-up 0.8s var(--ease-out-expo) 1.3s both;
}

/* ─── Buttons ───────────────────────────────────────── */
.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-ui);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 16px 36px;
    border-radius: 4px;
    transition: transform 0.25s var(--ease-spring), box-shadow 0.3s ease;
    overflow: hidden;
}

.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(0); }

.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--orange-bright) 50%, var(--orange) 100%);
    color: var(--space-deep);
    box-shadow: 0 0 30px rgba(255,170,0,0.4), 0 4px 20px rgba(0,0,0,0.4);
}

.btn-primary:hover {
    box-shadow: 0 0 60px rgba(255,170,0,0.6), 0 0 120px rgba(255,102,0,0.3), 0 8px 30px rgba(0,0,0,0.4);
}

.btn-glow {
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: linear-gradient(135deg, var(--gold), var(--orange));
    z-index: -1;
    filter: blur(12px);
    opacity: 0.5;
    transition: opacity 0.3s ease, filter 0.3s ease;
}

.btn-primary:hover .btn-glow { opacity: 0.8; filter: blur(20px); }

.btn-secondary {
    background: transparent;
    color: var(--ice-white);
    border: 1px solid rgba(0, 212, 255, 0.5);
    box-shadow: 0 0 20px rgba(0,212,255,0.15) inset;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, color 0.3s ease, transform 0.25s var(--ease-spring);
}

.btn-secondary:hover {
    color: var(--cyan);
    border-color: var(--cyan);
    box-shadow: 0 0 30px rgba(0,212,255,0.3) inset, 0 0 30px rgba(0,212,255,0.2);
    transform: translateY(-3px);
}

.btn-donate {
    background: linear-gradient(135deg, var(--aurora-green) 0%, var(--cyan) 100%) !important;
    color: var(--space-deep);
    box-shadow: 0 0 30px rgba(0,255,136,0.4), 0 4px 20px rgba(0,0,0,0.4);
}

.btn-donate:hover {
    box-shadow: 0 0 60px rgba(0,255,136,0.6), 0 0 120px rgba(0,212,255,0.3), 0 8px 30px rgba(0,0,0,0.4);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: var(--container-pad);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-family: var(--font-ui);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(232,244,255,0.4);
    animation: fade-up 0.8s var(--ease-out-expo) 1.8s both;
}

.scroll-arrow {
    width: 20px; height: 30px;
    border: 1px solid rgba(0,212,255,0.4);
    border-radius: 10px;
    position: relative;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%; transform: translateX(-50%);
    width: 4px; height: 8px;
    background: var(--cyan);
    border-radius: 2px;
    animation: scroll-bounce 1.8s ease-in-out infinite;
}

@keyframes scroll-bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    80% { transform: translateX(-50%) translateY(10px); opacity: 0; }
}

/* ══════════════════════════════════════════════════════
   FEARCE ACRONYM SECTION
══════════════════════════════════════════════════════ */
.fearce-section {
    position: relative;
    z-index: 2;
    padding: var(--section-pad-v) 0;
    background: linear-gradient(180deg,
        transparent 0%,
        rgba(10, 5, 32, 0.7) 20%,
        rgba(10, 5, 32, 0.9) 50%,
        rgba(10, 5, 32, 0.7) 80%,
        transparent 100%);
}

.fearce-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 24px;
}

/* FEARCE Cards */
.fearce-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.4s var(--ease-spring);
    cursor: default;
}

.fearce-card:hover { transform: translateY(-8px) scale(1.01); }

.card-border-glow {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid var(--card-color);
    opacity: 0.4;
    transition: opacity 0.3s ease;
    box-shadow: 0 0 20px var(--card-color) inset, 0 0 20px var(--card-color);
    z-index: 0;
}

.fearce-card:hover .card-border-glow { opacity: 0.8; }

.card-inner {
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg,
        rgba(26, 8, 64, 0.8) 0%,
        rgba(6, 3, 15, 0.9) 100%);
    backdrop-filter: blur(10px);
    padding: 36px 30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: 100%;
}

.card-letter-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

.card-letter {
    font-family: var(--font-display);
    font-size: 5rem;
    line-height: 1;
    color: var(--card-color);
    text-shadow: 0 0 30px var(--card-color), 0 0 60px var(--card-color);
    transition: text-shadow 0.3s ease, transform 0.3s var(--ease-spring);
}

.fearce-card:hover .card-letter {
    text-shadow: 0 0 40px var(--card-color), 0 0 80px var(--card-color), 0 0 120px var(--card-color);
    transform: scale(1.1);
}

.card-icon {
    font-size: 1.8rem;
    opacity: 0.6;
    color: var(--card-color);
    animation: icon-pulse 3s ease-in-out infinite;
}

@keyframes icon-pulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50%       { opacity: 1;   transform: scale(1.2); }
}

.card-word {
    font-family: var(--font-display);
    font-size: 1.8rem;
    letter-spacing: 0.08em;
    color: var(--card-color);
}

.card-tagline {
    font-family: var(--font-ui);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(232,244,255,0.5);
}

.card-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(232,244,255,0.6);
    font-style: italic;
}

.card-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.03) 50%, transparent 60%);
    transform: rotate(30deg) translateY(-100%);
    transition: transform 0.8s ease;
    pointer-events: none;
}

.fearce-card:hover .card-shine { transform: rotate(30deg) translateY(100%); }

/* ══════════════════════════════════════════════════════
   STATS BAND
══════════════════════════════════════════════════════ */
.stats-band {
    position: relative;
    z-index: 2;
    padding: 80px 0;
    overflow: hidden;
}

.stats-band-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(0, 212, 255, 0.06) 0%,
        rgba(45, 10, 90, 0.4) 50%,
        rgba(255, 102, 0, 0.06) 100%);
    border-top: 1px solid rgba(0, 212, 255, 0.15);
    border-bottom: 1px solid rgba(255, 215, 0, 0.15);
}

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

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.stat-icon {
    font-size: 1.5rem;
    color: var(--gold);
    text-shadow: var(--glow-gold);
    animation: icon-pulse 2.5s ease-in-out infinite;
}

.stat-value {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    background: linear-gradient(180deg, var(--gold) 0%, var(--orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 15px rgba(255,170,0,0.5));
    line-height: 1;
}

.stat-label {
    font-family: var(--font-ui);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(232,244,255,0.5);
}

/* ══════════════════════════════════════════════════════
   ABOUT SECTION
══════════════════════════════════════════════════════ */
.about-section {
    position: relative;
    z-index: 2;
    padding: var(--section-pad-v) 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 7vw, 100px);
    align-items: center;
}

.about-image-frame {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.frame-corner {
    position: absolute;
    width: 30px; height: 30px;
    z-index: 2;
}

.fc-tl { top: -1px; left: -1px; border-top: 2px solid var(--gold); border-left: 2px solid var(--gold); }
.fc-tr { top: -1px; right: -1px; border-top: 2px solid var(--cyan); border-right: 2px solid var(--cyan); }
.fc-bl { bottom: -1px; left: -1px; border-bottom: 2px solid var(--cyan); border-left: 2px solid var(--cyan); }
.fc-br { bottom: -1px; right: -1px; border-bottom: 2px solid var(--gold); border-right: 2px solid var(--gold); }

.about-image {
    width: 100%;
    border-radius: 8px;
    transition: transform 0.6s var(--ease-out-expo), filter 0.4s ease;
}

.about-image:hover { transform: scale(1.02); }

.about-image-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(6,3,15,0.6) 100%);
    pointer-events: none;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-body {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(232,244,255,0.7);
}

.about-body strong { color: var(--cyan); }

/* ══════════════════════════════════════════════════════
   PROGRAM SECTION
══════════════════════════════════════════════════════ */
.program-section {
    position: relative;
    z-index: 2;
    padding: var(--section-pad-v) 0;
    overflow: hidden;
}

.program-bg-accent {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 100%, rgba(45,10,90,0.5) 0%, transparent 70%);
    pointer-events: none;
}

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

.program-card {
    background: linear-gradient(135deg, rgba(26,8,64,0.6) 0%, rgba(6,3,15,0.8) 100%);
    border: 1px solid rgba(0, 212, 255, 0.12);
    border-radius: 8px;
    padding: 36px 28px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s ease, transform 0.4s var(--ease-spring), box-shadow 0.3s ease;
}

.program-card:hover {
    border-color: rgba(0,212,255,0.4);
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 30px rgba(0,212,255,0.1);
}

.pc-icon {
    font-size: 2.2rem;
    margin-bottom: 16px;
    color: var(--cyan);
    text-shadow: var(--glow-cyan);
}

.pc-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    letter-spacing: 0.06em;
    color: var(--ice-white);
    margin-bottom: 12px;
}

.pc-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(232,244,255,0.55);
    font-style: italic;
}

.pc-line {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--cyan), transparent);
    transform: scaleX(0);
    transition: transform 0.4s var(--ease-out-expo);
}

.program-card:hover .pc-line { transform: scaleX(1); }

/* ══════════════════════════════════════════════════════
   COMMUNITY / TESTIMONIALS
══════════════════════════════════════════════════════ */
.community-section {
    position: relative;
    z-index: 2;
    padding: var(--section-pad-v) 0;
}

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

.testimonial-card {
    position: relative;
    background: linear-gradient(135deg, rgba(26,8,64,0.5) 0%, rgba(10,5,32,0.8) 100%);
    border: 1px solid rgba(191,95,255,0.2);
    border-radius: 8px;
    padding: 40px 32px;
    overflow: hidden;
    transition: transform 0.4s var(--ease-spring), border-color 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    border-color: rgba(191,95,255,0.5);
}

.testimonial-glow {
    position: absolute;
    top: -50px; right: -50px;
    width: 150px; height: 150px;
    background: radial-gradient(circle, rgba(191,95,255,0.2) 0%, transparent 70%);
    pointer-events: none;
}

.quote-mark {
    font-size: 5rem;
    line-height: 1;
    color: var(--purple-bright);
    opacity: 0.4;
    font-family: Georgia, serif;
    margin-bottom: -20px;
}

.testimonial-quote {
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(232,244,255,0.65);
    font-style: italic;
    margin-bottom: 28px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 46px; height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--purple-bright), var(--cyan));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--space-deep);
    flex-shrink: 0;
    box-shadow: 0 0 20px rgba(191,95,255,0.4);
}

.author-info { display: flex; flex-direction: column; gap: 2px; }

.author-name {
    font-family: var(--font-ui);
    font-size: 1rem;
    font-weight: 700;
    color: var(--ice-white);
}

.author-role {
    font-family: var(--font-ui);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    color: var(--purple-bright);
    text-transform: uppercase;
}

/* ══════════════════════════════════════════════════════
   JOIN / CTA SECTION
══════════════════════════════════════════════════════ */
.join-section {
    position: relative;
    z-index: 2;
    padding: var(--section-pad-v) 0;
    text-align: center;
    overflow: hidden;
}

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

.join-aurora-1 {
    position: absolute;
    width: 120vw; height: 120vh;
    top: -60vh; left: -10vw;
    background: radial-gradient(ellipse, rgba(0,255,136,0.12) 0%, rgba(0,212,255,0.08) 30%, transparent 65%);
    animation: aurora-drift 16s ease-in-out infinite alternate;
}

.join-aurora-2 {
    position: absolute;
    width: 100vw; height: 80vh;
    bottom: -40vh; right: -10vw;
    background: radial-gradient(ellipse, rgba(255,215,0,0.1) 0%, rgba(255,102,0,0.06) 40%, transparent 65%);
    animation: aurora-drift 20s ease-in-out infinite alternate-reverse;
}

.join-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.join-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 7vw, 5.5rem);
    line-height: 1;
    letter-spacing: 0.04em;
    color: var(--ice-white);
}

.join-title-fearce {
    background: linear-gradient(135deg, var(--gold) 0%, var(--orange-bright) 40%, var(--cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(255,170,0,0.6));
    display: block;
    font-size: 1.2em;
}

.join-sub {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(232,244,255,0.65);
    max-width: 560px;
    font-style: italic;
}

/* Join Form */
.join-form { width: 100%; max-width: 700px; }

.form-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.form-group { flex: 1; min-width: 180px; }

.form-input {
    width: 100%;
    background: rgba(10,5,32,0.8);
    border: 1px solid rgba(0, 212, 255, 0.3);
    color: var(--ice-white);
    font-family: var(--font-body);
    font-size: 1rem;
    padding: 16px 20px;
    border-radius: 4px;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-input::placeholder { color: rgba(232,244,255,0.35); }
.form-input:focus {
    border-color: var(--cyan);
    box-shadow: 0 0 20px rgba(0,212,255,0.2), 0 0 0 1px rgba(0,212,255,0.2);
}

.btn-submit { flex-shrink: 0; white-space: nowrap; }

.form-note {
    margin-top: 14px;
    font-size: 0.8rem;
    color: rgba(232,244,255,0.35);
    letter-spacing: 0.05em;
}

.form-success {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(0,255,136,0.1);
    border: 1px solid rgba(0,255,136,0.4);
    border-radius: 8px;
    padding: 24px 32px;
    font-size: 1.1rem;
    color: var(--aurora-green);
    text-shadow: 0 0 20px rgba(0,255,136,0.5);
}

.success-icon {
    font-size: 1.8rem;
    animation: icon-pulse 2s ease-in-out infinite;
}

/* ══════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════ */
.footer {
    position: relative;
    z-index: 2;
    background: rgba(6, 3, 15, 0.95);
    padding: 60px 0 30px;
}

.footer-glow-line {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold) 30%, var(--orange) 50%, var(--cyan) 70%, transparent);
}

.footer-inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-brand { display: flex; flex-direction: column; gap: 12px; }

.footer-logo {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.logo-fearce-sm {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 0.06em;
    background: linear-gradient(135deg, var(--gold), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 10px rgba(255,170,0,0.5));
}

.footer-tagline {
    font-family: var(--font-ui);
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(232,244,255,0.35);
    line-height: 1.6;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
    align-items: center;
}

.footer-link {
    font-family: var(--font-ui);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(232,244,255,0.45);
    transition: color 0.2s ease;
}

.footer-link:hover { color: var(--cyan); }

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

.social-link {
    width: 42px; height: 42px;
    border: 1px solid rgba(0,212,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(232,244,255,0.5);
    font-size: 1rem;
    transition: border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, transform 0.3s var(--ease-spring);
}

.social-link:hover {
    border-color: var(--gold);
    color: var(--gold);
    box-shadow: 0 0 20px rgba(255,215,0,0.3);
    transform: translateY(-3px) scale(1.1);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 24px;
    text-align: center;
    font-size: 0.8rem;
    color: rgba(232,244,255,0.25);
    letter-spacing: 0.05em;
}

/* ══════════════════════════════════════════════════════
   REVEAL ANIMATIONS
══════════════════════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition:
        opacity 0.8s var(--ease-out-expo) var(--delay, 0s),
        transform 0.8s var(--ease-out-expo) var(--delay, 0s);
}

.reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fade-up {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════ */
@media (max-width: 960px) {
    .topbar-nav { display: none; }
    .hamburger  { display: flex; }
    .mobile-nav { display: flex; }

    .about-grid { grid-template-columns: 1fr; }
    .about-visual { order: -1; }
    .about-image-frame { max-width: 500px; margin: 0 auto; }

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

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

    .testimonials-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
}

@media (max-width: 600px) {
    .fearce-grid { grid-template-columns: 1fr; }
    .program-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }

    .hero-content { text-align: center; }
    .hero-eyebrow { justify-content: center; }
    .hero-sub { margin: 0 auto 44px; }
    .hero-actions { justify-content: center; }
    .scroll-indicator { left: 50%; transform: translateX(-50%); }

    .form-row { flex-direction: column; }
    .btn-submit { width: 100%; }

    .footer-inner { flex-direction: column; align-items: center; text-align: center; }
    .footer-nav { justify-content: center; }
    .footer-social { justify-content: center; }
}

/* ─── Utility ────────────────────────────────────────── */
::selection { background: rgba(0,212,255,0.3); color: var(--ice-white); }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--space-deep); }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, var(--gold), var(--orange)); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: linear-gradient(180deg, var(--cyan), var(--purple-bright)); }


/* ══════════════════════════════════════════════════════
   SHARED FOOTER ADDITIONS
══════════════════════════════════════════════════════ */
.footer-links-group { display: flex; flex-direction: column; gap: 12px; }
.footer-group-label {
    font-family: var(--font-ui);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 4px;
}
.footer-nav { flex-direction: column; gap: 6px; }
.footer-email {
    font-family: var(--font-ui);
    font-size: 0.9rem;
    color: var(--cyan);
    transition: color 0.2s ease, text-shadow 0.2s ease;
}
.footer-email:hover { color: var(--cyan-bright); text-shadow: var(--glow-cyan); }
.footer-charity {
    font-family: var(--font-ui);
    font-size: 0.8rem;
    color: rgba(232,244,255,0.4);
    line-height: 1.5;
}
.footer-charity strong { color: rgba(232,244,255,0.7); }
.footer-charity-sub { font-size: 0.7rem; letter-spacing: 0.1em; }
.footer-social { display: flex; gap: 10px; margin-top: 12px; }
.footer-mission-line {
    margin-top: 8px;
    font-family: var(--font-ui);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    color: rgba(232,244,255,0.2);
    text-transform: uppercase;
}

/* ══════════════════════════════════════════════════════
   PAGE HERO (inner pages)
══════════════════════════════════════════════════════ */
.page-hero {
    position: relative;
    min-height: 55vh;
    display: flex;
    align-items: flex-end;
    padding-bottom: 80px;
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
}

.page-hero-image {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 25%;
    filter: saturate(1.1);
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom,
            rgba(6,3,15,0.6) 0%,
            rgba(6,3,15,0.2) 30%,
            rgba(6,3,15,0.7) 70%,
            rgba(6,3,15,0.97) 100%),
        linear-gradient(to right,
            rgba(6,3,15,0.8) 0%,
            transparent 60%);
}

.page-hero-content {
    position: relative;
    z-index: 2;
    padding-top: 120px;
}

.page-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    line-height: 1.05;
    letter-spacing: 0.03em;
    color: var(--ice-white);
    margin-bottom: 20px;
    animation: fade-up 0.8s var(--ease-out-expo) 0.3s both;
}

.page-hero-sub {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(232,244,255,0.7);
    max-width: 560px;
    line-height: 1.7;
    animation: fade-up 0.8s var(--ease-out-expo) 0.5s both;
}

/* ══════════════════════════════════════════════════════
   CONTENT SECTION (shared padding)
══════════════════════════════════════════════════════ */
.content-section {
    position: relative;
    z-index: 2;
    padding: var(--section-pad-v) 0;
}

/* ══════════════════════════════════════════════════════
   HOMEPAGE — FEARCE INTRO / ACRONYM
══════════════════════════════════════════════════════ */
.fearce-intro-section {
    position: relative;
    z-index: 2;
    padding: var(--section-pad-v) 0;
}

.fearce-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 7vw, 100px);
    align-items: center;
}

.intro-body {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(232,244,255,0.75);
    margin-bottom: 12px;
}
.intro-body strong { color: var(--cyan); }

.intro-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 8px; }

/* Acronym Stack */
.fearce-acronym-stack {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.acronym-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 20px;
    background: linear-gradient(90deg, rgba(26,8,64,0.6) 0%, rgba(6,3,15,0.4) 100%);
    border-left: 3px solid var(--ac);
    border-radius: 0 6px 6px 0;
    transition: background 0.3s ease, transform 0.3s var(--ease-spring);
    animation: fade-up 0.6s var(--ease-out-expo) calc(var(--delay) + 0.2s) both;
}

.acronym-row:hover {
    background: linear-gradient(90deg, rgba(26,8,64,0.9) 0%, rgba(10,5,32,0.7) 100%);
    transform: translateX(6px);
}

.ac-letter {
    font-family: var(--font-display);
    font-size: 2.2rem;
    color: var(--ac);
    text-shadow: 0 0 20px var(--ac);
    width: 36px;
    flex-shrink: 0;
    line-height: 1;
}

.ac-prefix {
    font-family: var(--font-ui);
    font-size: 0.75rem;
    color: rgba(232,244,255,0.4);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    width: 24px;
    flex-shrink: 0;
}

.ac-word {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 0.06em;
    color: var(--ice-white);
}

/* ══════════════════════════════════════════════════════
   HOMEPAGE — WHY IT MATTERS
══════════════════════════════════════════════════════ */
.why-matters-section {
    position: relative;
    z-index: 2;
    padding: var(--section-pad-v) 0;
}

.wm-bg-accent {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(45,10,90,0.4) 0%, transparent 70%);
    pointer-events: none;
}

.matters-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.matter-item {
    background: linear-gradient(135deg, rgba(26,8,64,0.6) 0%, rgba(6,3,15,0.8) 100%);
    border: 1px solid rgba(0,212,255,0.15);
    border-radius: 8px;
    padding: 36px 28px;
    text-align: center;
    transition: border-color 0.3s ease, transform 0.4s var(--ease-spring);
}

.matter-item:hover {
    border-color: rgba(0,212,255,0.4);
    transform: translateY(-6px);
}

.matter-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.matter-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 0.06em;
    color: var(--gold);
    margin-bottom: 12px;
}

.matter-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(232,244,255,0.65);
}

.matters-conclusion {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 30px 0;
}

.conclusion-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.conclusion-text {
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(232,244,255,0.8);
    flex: 0 0 auto;
    max-width: 500px;
}
.conclusion-text strong { color: var(--gold); }

/* ══════════════════════════════════════════════════════
   HOMEPAGE — IMPACT CARDS
══════════════════════════════════════════════════════ */
.impact-section {
    position: relative;
    z-index: 2;
    padding: var(--section-pad-v) 0;
}

.impact-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}

.impact-card {
    position: relative;
    background: linear-gradient(135deg, rgba(26,8,64,0.6) 0%, rgba(6,3,15,0.85) 100%);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    padding: 36px 30px 40px;
    overflow: hidden;
    transition: border-color 0.3s ease, transform 0.4s var(--ease-spring);
}

.impact-card:hover { transform: translateY(-6px); border-color: var(--ic); }

.impact-card-icon { font-size: 2.5rem; margin-bottom: 16px; }

.impact-card-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 0.05em;
    color: var(--ic);
    margin-bottom: 12px;
    text-shadow: 0 0 20px var(--ic);
}

.impact-card-desc {
    font-size: 0.95rem;
    line-height: 1.75;
    color: rgba(232,244,255,0.65);
}

.impact-card-bar {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--ic), transparent);
    transform: scaleX(0);
    transition: transform 0.4s var(--ease-out-expo);
}

.impact-card:hover .impact-card-bar { transform: scaleX(1); }

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

/* ══════════════════════════════════════════════════════
   HOMEPAGE — PROMISE SECTION
══════════════════════════════════════════════════════ */
.promise-section {
    position: relative;
    z-index: 2;
    padding: var(--section-pad-v) 0;
}

.promise-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 7vw, 100px);
    align-items: center;
}

.promise-body {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(232,244,255,0.7);
    margin-bottom: 30px;
}

.promise-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 24px;
}

.promise-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.promise-item:first-child { border-top: 1px solid rgba(255,255,255,0.06); }

.pi-icon {
    color: var(--gold);
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 2px;
    text-shadow: var(--glow-gold);
}

.promise-item strong { color: var(--ice-white); display: block; margin-bottom: 4px; }
.promise-item p { font-size: 0.9rem; color: rgba(232,244,255,0.55); line-height: 1.6; margin: 0; }

.promise-tagline {
    font-family: var(--font-ui);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--cyan);
    text-shadow: var(--glow-cyan);
}

.promise-image-frame {
    position: relative;
    border-radius: 8px;
    overflow: visible;
}

.promise-image {
    width: 100%;
    border-radius: 8px;
    display: block;
}

.promise-badge {
    position: absolute;
    bottom: -20px; right: -20px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--orange) 100%);
    color: var(--space-deep);
    padding: 18px 24px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    box-shadow: 0 0 30px rgba(255,170,0,0.4);
    z-index: 2;
}

.pb-top { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; opacity: 0.7; }
.pb-main { font-family: var(--font-display); font-size: 1.3rem; letter-spacing: 0.05em; line-height: 1.1; }
.pb-sub { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.65; }

/* Join links */
.join-links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 8px;
}

.join-link {
    font-family: var(--font-ui);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(232,244,255,0.45);
    transition: color 0.2s ease;
}
.join-link:hover { color: var(--cyan); }
.join-link-sep { color: rgba(232,244,255,0.2); }

.join-email-note {
    margin-top: 16px;
    font-size: 0.9rem;
    color: rgba(232,244,255,0.45);
}

.inline-email-link {
    color: var(--cyan);
    transition: color 0.2s ease, text-shadow 0.2s ease;
}
.inline-email-link:hover { color: var(--cyan-bright); text-shadow: var(--glow-cyan); }

/* ══════════════════════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════════════════════ */
.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 7vw, 100px);
    align-items: center;
}

.about-intro-text { display: flex; flex-direction: column; gap: 16px; }
.about-body {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(232,244,255,0.7);
}
.about-body strong { color: var(--cyan); }

.big-ear-badge {
    position: absolute;
    bottom: -16px; right: -16px;
    background: linear-gradient(135deg, rgba(10,5,32,0.95), rgba(26,8,64,0.95));
    border: 1px solid var(--gold);
    color: var(--ice-white);
    padding: 16px 20px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    z-index: 2;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(255,215,0,0.2);
}
.beb-label { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(232,244,255,0.5); }
.beb-name { font-family: var(--font-display); font-size: 1.2rem; color: var(--gold); text-shadow: var(--glow-gold); }
.beb-sub { font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(232,244,255,0.4); }

/* Mission / Vision */
.mv-section {
    position: relative;
    z-index: 2;
    padding: var(--section-pad-v) 0;
}

.mv-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,212,255,0.04) 0%, rgba(45,10,90,0.5) 50%, rgba(255,215,0,0.04) 100%);
    pointer-events: none;
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.mv-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.4s var(--ease-spring);
}

.mv-card:hover { transform: translateY(-6px); }

.mvc-glow {
    position: absolute;
    inset: 0;
    border: 1px solid var(--mvc);
    border-radius: inherit;
    opacity: 0.3;
    box-shadow: 0 0 20px var(--mvc) inset;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mv-card:hover .mvc-glow { opacity: 0.6; }

.mvc-inner {
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, rgba(26,8,64,0.8) 0%, rgba(6,3,15,0.9) 100%);
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mvc-icon {
    font-size: 2rem;
    color: var(--mvc);
    text-shadow: 0 0 20px var(--mvc);
}

.mvc-title {
    font-family: var(--font-display);
    font-size: 2rem;
    letter-spacing: 0.06em;
    color: var(--mvc);
}

.mvc-body {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(232,244,255,0.75);
}
.mvc-body strong { color: var(--ice-white); }

.mvc-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mvc-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: rgba(232,244,255,0.75);
}

.mvl-icon { color: var(--gold); text-shadow: var(--glow-gold); }

/* Different section */
.different-section { }

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

.diff-card {
    background: linear-gradient(135deg, rgba(26,8,64,0.5) 0%, rgba(6,3,15,0.8) 100%);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    padding: 36px 28px 40px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s ease, transform 0.4s var(--ease-spring);
}

.diff-card:hover { border-color: var(--dc); transform: translateY(-6px); }

.diff-icon { font-size: 2.5rem; margin-bottom: 16px; }

.diff-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 0.06em;
    color: var(--dc);
    margin-bottom: 12px;
}

.diff-desc {
    font-size: 0.95rem;
    line-height: 1.75;
    color: rgba(232,244,255,0.65);
}

.diff-line {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--dc), transparent);
    transform: scaleX(0);
    transition: transform 0.4s var(--ease-out-expo);
}
.diff-card:hover .diff-line { transform: scaleX(1); }

/* Big Ear Radio section */
.ber-section {
    position: relative;
    z-index: 2;
    padding: var(--section-pad-v) 0;
    text-align: center;
}

.ber-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(0,212,255,0.06) 0%, rgba(45,10,90,0.4) 40%, transparent 70%);
    pointer-events: none;
}

.ber-content { max-width: 740px; margin: 0 auto; display: flex; flex-direction: column; gap: 20px; align-items: center; }

.ber-icon { font-size: 3rem; }

.ber-body {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(232,244,255,0.7);
}

/* ══════════════════════════════════════════════════════
   IMPACT PAGE — PILLARS
══════════════════════════════════════════════════════ */
.impact-intro {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding-bottom: 20px;
}

.impact-intro-text {
    font-size: 1.15rem;
    line-height: 1.85;
    color: rgba(232,244,255,0.75);
    font-style: italic;
}

.pillar-section {
    position: relative;
    z-index: 2;
    padding: 80px 0;
    overflow: hidden;
}

.pillar-bg-accent {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, var(--pg) 0%, transparent 60%);
    pointer-events: none;
}

.pillar-reverse .pillar-bg-accent {
    background: radial-gradient(ellipse at 70% 50%, var(--pg) 0%, transparent 60%);
}

.pillar-grid {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: clamp(40px, 6vw, 90px);
    align-items: center;
}

.pillar-reverse .pillar-grid {
    grid-template-columns: 1fr 220px;
}

.pillar-reverse .pillar-visual { order: 2; }
.pillar-reverse .pillar-content { order: 1; }

.pillar-number-frame {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, rgba(26,8,64,0.6) 0%, rgba(6,3,15,0.8) 100%);
    border: 1px solid var(--pc);
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 0 30px var(--pc) inset, 0 0 20px rgba(0,0,0,0.4);
    text-align: center;
    transition: box-shadow 0.4s ease;
}

.pillar-number-frame:hover {
    box-shadow: 0 0 50px var(--pc) inset, 0 0 40px rgba(0,0,0,0.4);
}

.pillar-number {
    font-family: var(--font-display);
    font-size: 5rem;
    line-height: 1;
    color: var(--pc);
    text-shadow: 0 0 30px var(--pc);
    opacity: 0.4;
}

.pillar-icon { font-size: 3rem; }

.pillar-headline {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3.5vw, 2.5rem);
    line-height: 1.15;
    color: var(--ice-white);
    margin-bottom: 20px;
}

.pillar-body {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(232,244,255,0.7);
    margin-bottom: 24px;
}

.pillar-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}

.pillar-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: rgba(232,244,255,0.8);
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.pillar-list li::before {
    content: '✦';
    color: var(--pc);
    font-size: 0.8rem;
    flex-shrink: 0;
    text-shadow: 0 0 10px var(--pc);
}

.pillar-close {
    font-size: 1rem;
    color: var(--pc);
    font-style: italic;
    text-shadow: 0 0 20px var(--pc);
}

/* ══════════════════════════════════════════════════════
   MEMBERSHIP PAGE
══════════════════════════════════════════════════════ */
.membership-section { }

.membership-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

.membership-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.4s var(--ease-spring);
}

.membership-card:hover { transform: translateY(-10px); }

.mc-featured { transform: scale(1.03); z-index: 1; }
.mc-featured:hover { transform: scale(1.03) translateY(-10px); }

.mc-featured-label {
    position: absolute;
    top: 0; left: 0; right: 0;
    text-align: center;
    background: linear-gradient(90deg, var(--gold), var(--orange));
    color: var(--space-deep);
    font-family: var(--font-ui);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 8px;
    z-index: 2;
}

.mc-glow {
    position: absolute;
    inset: 0;
    border: 1px solid var(--mc);
    border-radius: inherit;
    opacity: 0.4;
    box-shadow: 0 0 30px var(--mg) inset, 0 0 20px var(--mg);
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.membership-card:hover .mc-glow { opacity: 0.8; }

.mc-inner {
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, rgba(26,8,64,0.85) 0%, rgba(6,3,15,0.95) 100%);
    padding: 48px 32px 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mc-featured .mc-inner { padding-top: 56px; }

.mc-badge {
    font-family: var(--font-ui);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--mc);
}

.mc-icon { font-size: 2.5rem; }

.mc-title {
    font-family: var(--font-display);
    font-size: 2rem;
    line-height: 1.1;
    letter-spacing: 0.05em;
    color: var(--mc);
}

.mc-tagline {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(232,244,255,0.6);
    font-style: italic;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding-bottom: 16px;
}

.mc-benefits {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.mc-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(232,244,255,0.75);
}

.mcb-icon {
    color: var(--mc);
    font-size: 0.75rem;
    flex-shrink: 0;
    margin-top: 3px;
    text-shadow: 0 0 10px var(--mc);
}

.mc-btn { width: 100%; margin-top: 8px; }

/* How It Works */
.hiw-section {
    position: relative;
    z-index: 2;
    padding: var(--section-pad-v) 0;
}

.hiw-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 100%, rgba(45,10,90,0.4) 0%, transparent 65%);
    pointer-events: none;
}

.hiw-steps {
    display: flex;
    gap: 0;
    position: relative;
}

.hiw-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    position: relative;
}

.hiw-step-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    line-height: 1;
    color: var(--sc);
    opacity: 0.25;
    text-shadow: 0 0 20px var(--sc);
    margin-bottom: -10px;
}

.hiw-step-icon {
    font-size: 2rem;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}

.hiw-step-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    letter-spacing: 0.06em;
    color: var(--sc);
    margin-bottom: 10px;
}

.hiw-step-desc {
    font-size: 0.88rem;
    line-height: 1.65;
    color: rgba(232,244,255,0.6);
}

.hiw-connector {
    position: absolute;
    top: 60px;
    right: -2px;
    width: 4px;
    height: 4px;
    background: var(--sc);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--sc);
}

/* ══════════════════════════════════════════════════════
   GET INVOLVED PAGE
══════════════════════════════════════════════════════ */
.roles-section {
    position: relative;
    z-index: 2;
    padding: 0 0 var(--section-pad-v);
}

.role-card {
    position: relative;
    border-radius: 12px;
    margin-bottom: 30px;
    overflow: hidden;
    transition: transform 0.4s var(--ease-spring);
}

.role-card-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,8,64,0.7) 0%, rgba(6,3,15,0.9) 100%);
    border: 1px solid var(--rc);
    border-radius: inherit;
    opacity: 0.5;
    box-shadow: 0 0 40px var(--rg) inset;
    transition: opacity 0.3s ease;
}

.role-card:hover { transform: translateY(-6px); }
.role-card:hover .role-card-bg { opacity: 0.9; }

.role-card-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 50px;
    padding: 50px 50px;
    align-items: center;
}

.role-card-reverse .role-card-content { grid-template-columns: 1fr 200px; }
.role-card-reverse .role-visual { order: 2; }
.role-card-reverse .role-text { order: 1; }

.role-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.role-icon-frame {
    position: relative;
    width: 100px; height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.role-icon {
    font-size: 4rem;
    position: relative;
    z-index: 1;
}

.role-icon-ring {
    position: absolute;
    inset: -8px;
    border: 1px solid var(--rc);
    border-radius: 50%;
    animation: ring-spin 8s linear infinite;
    opacity: 0.6;
}

@keyframes ring-spin { to { transform: rotate(360deg); } }

.role-badge {
    font-family: var(--font-display);
    font-size: 1.4rem;
    letter-spacing: 0.1em;
    color: var(--rc);
    text-shadow: 0 0 20px var(--rc);
    text-align: center;
}

.role-title {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    line-height: 1.2;
    color: var(--ice-white);
    margin-bottom: 16px;
}

.role-body {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(232,244,255,0.7);
    margin-bottom: 20px;
}

.role-actions-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.role-actions-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: rgba(232,244,255,0.75);
}

.role-actions-list li::before {
    content: '→';
    color: var(--rc);
    font-weight: bold;
    flex-shrink: 0;
}

/* Ripple section */
.ripple-section {
    position: relative;
    z-index: 2;
    padding: var(--section-pad-v) 0;
}

.ripple-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(0,212,255,0.06) 0%, rgba(45,10,90,0.4) 40%, transparent 70%);
    pointer-events: none;
}

.ripple-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.ripple-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 16px;
    background: linear-gradient(135deg, rgba(26,8,64,0.5) 0%, rgba(6,3,15,0.7) 100%);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.3s ease, transform 0.4s var(--ease-spring);
}

.ripple-item:hover { border-color: var(--rrc); transform: translateY(-6px); }

.ripple-rings {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.rr {
    position: absolute;
    border-radius: 50%;
    border: 1px solid var(--rrc);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    animation: rr-pulse 3s ease-out infinite;
}

.rr-1 { width: 80px; height: 80px; animation-delay: 0s; }
.rr-2 { width: 140px; height: 140px; animation-delay: 0.8s; }

@keyframes rr-pulse {
    0%   { opacity: 0.5; transform: translate(-50%, -50%) scale(0.5); }
    100% { opacity: 0; transform: translate(-50%, -50%) scale(1.5); }
}

.ripple-icon { font-size: 2rem; margin-bottom: 12px; position: relative; z-index: 1; }
.ripple-outcome {
    font-family: var(--font-display);
    font-size: 1.2rem;
    letter-spacing: 0.08em;
    color: var(--rrc);
    margin-bottom: 10px;
    position: relative; z-index: 1;
}
.ripple-desc {
    font-size: 0.82rem;
    line-height: 1.65;
    color: rgba(232,244,255,0.6);
    position: relative; z-index: 1;
}

.ripple-conclusion {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.ripple-conclusion-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(232,244,255,0.8);
}
.ripple-conclusion-text strong { color: var(--gold); }

/* Btn Ghost */
.btn-ghost {
    background: transparent;
    color: rgba(232,244,255,0.6);
    border: 1px solid rgba(255,255,255,0.15);
    font-family: var(--font-ui);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 14px 28px;
    border-radius: 4px;
    transition: color 0.2s ease, border-color 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.btn-ghost:hover { color: var(--ice-white); border-color: rgba(255,255,255,0.4); }

/* ══════════════════════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════════════════════ */
.contact-section { }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: clamp(40px, 7vw, 90px);
    align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 28px; }

.contact-body {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(232,244,255,0.7);
}

.contact-email-block {
    padding: 24px;
    background: rgba(0,212,255,0.06);
    border: 1px solid rgba(0,212,255,0.2);
    border-radius: 8px;
}

.contact-email-label {
    font-family: var(--font-ui);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(232,244,255,0.4);
    margin-bottom: 8px;
}

.contact-email-link {
    font-family: var(--font-ui);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--cyan);
    letter-spacing: 0.03em;
    transition: color 0.2s ease, text-shadow 0.2s ease;
    display: block;
    word-break: break-all;
}
.contact-email-link:hover { color: var(--cyan-bright); text-shadow: var(--glow-cyan); }

.contact-include { }
.ci-title {
    font-family: var(--font-ui);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}

.ci-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ci-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: rgba(232,244,255,0.7);
}

.ci-icon { color: var(--gold); text-shadow: var(--glow-gold); font-size: 0.8rem; flex-shrink: 0; }

.final-cta-block {
    background: linear-gradient(135deg, rgba(45,10,90,0.5) 0%, rgba(6,3,15,0.6) 100%);
    border: 1px solid rgba(255,215,0,0.2);
    border-radius: 8px;
    padding: 28px 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.fca-headline {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 0.05em;
    color: var(--ice-white);
    line-height: 1.2;
}

.fca-questions { display: flex; flex-direction: column; gap: 10px; }

.fca-q {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: rgba(232,244,255,0.7);
}

.fca-icon { font-size: 1.1rem; }

.fca-tagline {
    font-family: var(--font-ui);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--gold);
    text-shadow: var(--glow-gold);
    border-top: 1px solid rgba(255,215,0,0.15);
    padding-top: 14px;
    margin-top: 4px;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-page-link {
    font-family: var(--font-ui);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(232,244,255,0.4);
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-page-link::before { content: '→'; color: var(--cyan); }
.contact-page-link:hover { color: var(--cyan); }

/* Form */
.contact-form-wrap {
    background: linear-gradient(135deg, rgba(26,8,64,0.6) 0%, rgba(6,3,15,0.85) 100%);
    border: 1px solid rgba(0,212,255,0.15);
    border-radius: 10px;
    padding: 40px 36px;
}

.form-heading {
    font-family: var(--font-display);
    font-size: 1.8rem;
    letter-spacing: 0.06em;
    color: var(--gold);
    margin-bottom: 28px;
}

.form-row-single { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }

.form-label {
    font-family: var(--font-ui);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(232,244,255,0.5);
}

.req { color: var(--orange); }

.form-textarea {
    resize: vertical;
    min-height: 100px;
    line-height: 1.6;
}

.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2300d4ff' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-select option { background: var(--space-deep); color: var(--ice-white); }

.input-error {
    border-color: rgba(255,102,0,0.7) !important;
    box-shadow: 0 0 15px rgba(255,102,0,0.2) !important;
}

.btn-full { width: 100%; }

.form-errors {
    background: rgba(255,102,0,0.1);
    border: 1px solid rgba(255,102,0,0.4);
    border-radius: 6px;
    padding: 16px 20px;
    margin-bottom: 20px;
}

.fe-title {
    font-family: var(--font-ui);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 10px;
}

.form-errors ul {
    list-style: disc;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-errors li { font-size: 0.9rem; color: rgba(232,244,255,0.75); }

/* Large success state */
.form-success-large {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
    padding: 50px 30px;
    background: rgba(0,255,136,0.06);
    border: 1px solid rgba(0,255,136,0.3);
    border-radius: 10px;
}

.fsl-icon {
    font-size: 3rem;
    color: var(--aurora-green);
    text-shadow: var(--glow-green);
    animation: icon-pulse 2s ease-in-out infinite;
}

.fsl-title {
    font-family: var(--font-display);
    font-size: 2rem;
    letter-spacing: 0.06em;
    color: var(--aurora-green);
}

.fsl-body {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(232,244,255,0.7);
}
.fsl-body strong { color: var(--ice-white); }

/* ══════════════════════════════════════════════════════
   HERO TITLE ADDITIONS (homepage)
══════════════════════════════════════════════════════ */
.hero-title-into {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 7rem);
    letter-spacing: 0.06em;
    color: rgba(232,244,255,0.85);
    animation: fade-up 0.8s var(--ease-out-expo) 0.9s both;
    line-height: 0.9;
}

.glow-word {
    background: linear-gradient(135deg, var(--gold) 0%, var(--orange) 60%, var(--cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(255,170,0,0.6));
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE — NEW SECTIONS
══════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
    .ripple-grid { grid-template-columns: repeat(3, 1fr); }
    .hiw-steps { flex-wrap: wrap; gap: 30px; }
    .hiw-step { flex: 0 0 calc(33% - 20px); }
}

@media (max-width: 960px) {
    .fearce-intro-grid { grid-template-columns: 1fr; }
    .about-intro-grid  { grid-template-columns: 1fr; }
    .about-intro-visual { order: -1; max-width: 500px; margin: 0 auto; }
    .promise-grid      { grid-template-columns: 1fr; }
    .mv-grid           { grid-template-columns: 1fr; }
    .different-grid    { grid-template-columns: 1fr; }
    .matters-grid      { grid-template-columns: 1fr; }
    .impact-cards-grid { grid-template-columns: 1fr; }
    .membership-grid   { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .mc-featured       { transform: none; }
    .mc-featured:hover { transform: translateY(-10px); }
    .contact-grid      { grid-template-columns: 1fr; }

    .pillar-grid {
        grid-template-columns: 1fr !important;
    }
    .pillar-reverse .pillar-visual { order: -1; }
    .pillar-reverse .pillar-content { order: 1; }
    .pillar-number-frame { flex-direction: row; justify-content: center; max-width: 200px; margin: 0 auto; }

    .role-card-content { grid-template-columns: 1fr !important; gap: 30px; padding: 36px 28px; }
    .role-card-reverse .role-visual { order: -1; }
    .role-visual { flex-direction: row; align-items: center; gap: 20px; }
    .role-badge { text-align: left; }

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

    .matters-conclusion { flex-direction: column; gap: 16px; }
    .conclusion-line { width: 80%; height: 1px; }

    .promise-badge { position: static; margin-top: 16px; align-self: flex-start; }
    .big-ear-badge { position: static; margin-top: 16px; }

    .pricing-table thead { display: none; }
    .pricing-row {
        display: grid;
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 24px;
        margin-bottom: 16px;
    }
    .pricing-table tbody td { padding: 0; }
    .cell-tier { border-bottom: 1px solid rgba(255, 255, 255, 0.1); padding-bottom: 12px !important; }
    .cell-rate { text-align: left; }
    .cell-action { text-align: left; }
    .btn-sm { width: 100%; }
}

@media (max-width: 600px) {
    .page-hero { min-height: 45vh; }
    .page-hero-title { font-size: clamp(2rem, 10vw, 3rem); }
    .fearce-acronym-stack { max-width: 100%; }
    .hiw-steps { flex-direction: column; }
    .hiw-step { flex: none; }
    .ripple-grid { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto 60px; }
    .contact-form-wrap { padding: 28px 20px; }
    .footer-inner { flex-direction: column; align-items: flex-start; }
}

/* ═══════════════════════════════════════════ */
/*  PRICING TABLE                             */
/* ═══════════════════════════════════════════ */
.pricing-section {
    padding: var(--section-pad-v) 0;
    position: relative;
}

.pricing-table-wrap {
    max-width: 1100px;
    margin: 0 auto;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.pricing-table {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
    background: transparent;
}

.pricing-table thead th {
    padding: 16px 24px;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--cyan);
    border-bottom: 2px solid rgba(0, 212, 255, 0.3);
}

.col-tier { width: 25%; }
.col-rate { width: 18%; }
.col-suitable { width: 42%; }
.col-action { width: 15%; text-align: center; }

.pricing-row {
    background: rgba(10, 5, 32, 0.6);
    backdrop-filter: blur(10px);
    transition: all 0.4s var(--ease-out-expo);
    position: relative;
}

.pricing-row + .pricing-row {
    border-top: 12px solid transparent;
}

.pricing-row::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    padding: 2px;
    background: linear-gradient(135deg, var(--prc, var(--cyan)) 0%, transparent 60%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.4;
    transition: opacity 0.4s ease;
}

.pricing-row:hover {
    transform: translateY(-4px);
    background: rgba(16, 8, 42, 0.8);
}

.pricing-row:hover::before {
    opacity: 1;
}

.pricing-row-featured {
    background: rgba(255, 215, 0, 0.08);
}

.pricing-row-featured::before {
    background: linear-gradient(135deg, var(--gold) 0%, rgba(255, 215, 0, 0.3) 60%);
    opacity: 0.7;
}

.pricing-row-premium {
    background: rgba(255, 215, 0, 0.12);
}

.pricing-row-premium::before {
    background: linear-gradient(135deg, var(--gold) 0%, var(--orange) 100%);
    opacity: 0.8;
}

.pricing-table tbody td {
    padding: 24px;
    vertical-align: middle;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-row:first-child td {
    border-top: none;
}

.pricing-row:last-child td {
    border-bottom: none;
}

.cell-tier {
    position: relative;
}

.tier-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--ice-white);
    margin-bottom: 4px;
}

.tier-type {
    font-size: 0.85rem;
    color: rgba(232, 244, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.featured-badge,
.premium-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 8px;
}

.featured-badge {
    background: rgba(255, 215, 0, 0.2);
    color: var(--gold);
    border: 1px solid rgba(255, 215, 0, 0.4);
}

.premium-badge {
    background: rgba(255, 102, 0, 0.2);
    color: var(--orange);
    border: 1px solid rgba(255, 102, 0, 0.4);
}

.cell-rate {
    text-align: center;
}

.rate-amount {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--ice-white);
    line-height: 1;
}

.rate-period {
    display: block;
    font-size: 0.85rem;
    color: rgba(232, 244, 255, 0.5);
    margin-top: 4px;
}

.cell-suitable {
    font-size: 0.95rem;
    color: rgba(232, 244, 255, 0.7);
    line-height: 1.5;
}

.cell-action {
    text-align: center;
}

.btn-sm {
    padding: 10px 24px;
    font-size: 0.9rem;
}

.pricing-note {
    text-align: center;
    margin-top: 40px;
    padding: 24px;
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 12px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-note p {
    font-size: 1rem;
    color: rgba(232, 244, 255, 0.8);
}

.inline-link {
    color: var(--cyan);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.3s ease;
}

.inline-link:hover {
    color: var(--cyan-bright);
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 60px;
}

.benefit-item {
    padding: 32px 28px;
    background: rgba(10, 5, 32, 0.5);
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s var(--ease-out-expo);
}

.benefit-item:hover {
    transform: translateY(-6px);
    background: rgba(16, 8, 42, 0.7);
    border-color: var(--bc, rgba(0, 212, 255, 0.3));
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 30px var(--bc, rgba(0, 212, 255, 0.15));
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    filter: drop-shadow(0 0 10px var(--bc, rgba(0, 212, 255, 0.5)));
}

.benefit-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--ice-white);
    margin-bottom: 8px;
}

.benefit-desc {
    font-size: 0.95rem;
    color: rgba(232, 244, 255, 0.65);
    line-height: 1.5;
}

/* Active nav link */
.nav-link.active {
    color: var(--cyan);
}
.nav-link.active::after { transform: scaleX(1); }
