/* ========================================
   CEIFF — Design System & Styles
   ======================================== */

:root {
    /* Colors */
    --bg-primary: #080c14;
    --bg-secondary: #0d1220;
    --bg-card: #111827;
    --bg-glass: rgba(17, 24, 39, 0.6);
    --border-glass: rgba(255, 255, 255, 0.06);

    --gold: #d4a843;
    --gold-light: #e8c97a;
    --gold-dark: #b8860b;
    --emerald: #0fa968;
    --emerald-dark: #059669;
    --blue-accent: #3b82f6;

    --text-main: #f1f5f9;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;

    --gradient-gold: linear-gradient(135deg, #d4a843 0%, #f0d78c 50%, #b8860b 100%);
    --gradient-emerald: linear-gradient(135deg, #0fa968 0%, #059669 100%);

    /* Typography */
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Transitions */
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-fast: all 0.2s ease;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-main);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-main);
    line-height: 1.2;
}

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

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-gradient {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ======== CURSOR GLOW ======== */
.cursor-glow {
    position: fixed;
    width: 500px;
    height: 500px;
    pointer-events: none;
    z-index: 9999;
    background: radial-gradient(circle, rgba(212, 168, 67, 0.04) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: opacity 0.3s;
}

/* ======== NAVIGATION ======== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(8, 12, 20, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-glass);
    padding: 0.75rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
}

.logo-icon {
    color: var(--gold);
    font-size: 1.25rem;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.85rem;
    transition: var(--transition-fast);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--text-main);
}

.nav-links a:hover::after {
    width: 100%;
}

.btn-nav {
    background: rgba(212, 168, 67, 0.1) !important;
    padding: 0.5rem 1.25rem !important;
    border-radius: 50px;
    color: var(--gold) !important;
    border: 1px solid rgba(212, 168, 67, 0.25);
    font-weight: 600 !important;
}

.btn-nav::after {
    display: none !important;
}

.btn-nav:hover {
    background: var(--gold) !important;
    color: #000 !important;
    border-color: var(--gold) !important;
}

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

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-main);
    transition: var(--transition);
}

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

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

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

/* ======== BUTTONS ======== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    font-family: var(--font-body);
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-sm {
    padding: 0.65rem 1.5rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-primary {
    background: var(--gradient-gold);
    color: #0a0a0a;
    box-shadow: 0 8px 32px -8px rgba(212, 168, 67, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px -8px rgba(212, 168, 67, 0.55);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

/* ======== HERO ======== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    inset: 0;
    background: url('images/hero-bg.png') center/cover no-repeat;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 12, 20, 0.55) 0%, rgba(8, 12, 20, 0.7) 40%, rgba(8, 12, 20, 0.92) 100%);
    z-index: 1;
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(212, 168, 67, 0.1);
    color: var(--gold);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(212, 168, 67, 0.2);
    letter-spacing: 0.5px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -1px;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: float-indicator 3s ease-in-out infinite;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scroll-line-anim 2s ease-in-out infinite;
}

@keyframes float-indicator {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-8px);
    }
}

@keyframes scroll-line-anim {
    0% {
        opacity: 0;
        transform: scaleY(0);
        transform-origin: top;
    }

    50% {
        opacity: 1;
        transform: scaleY(1);
        transform-origin: top;
    }

    100% {
        opacity: 0;
    }
}

/* ======== MANIFESTO SECTION ======== */
.manifesto-section {
    padding: 5rem 0;
    background: var(--bg-secondary);
}

.manifesto-block {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    padding: 3rem;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    position: relative;
}

.manifesto-icon {
    width: 56px;
    height: 56px;
    background: rgba(212, 168, 67, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.25rem;
    color: var(--gold);
}

.manifesto-block h2 {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}

.manifesto-text {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.manifesto-text.highlight {
    color: var(--text-main);
    font-weight: 500;
    border-left: 3px solid var(--gold);
    padding-left: 1.25rem;
    text-align: left;
    margin-top: 1.5rem;
}

.manifesto-text strong {
    color: var(--gold-light);
}

.pillars-quick {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.pillar-link {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 2rem;
    transition: var(--transition);
    position: relative;
    display: block;
}

.pillar-link:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 168, 67, 0.2);
    box-shadow: 0 16px 48px -12px rgba(0, 0, 0, 0.4);
}

.pillar-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: rgba(212, 168, 67, 0.1);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.pillar-link h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.pillar-link p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

.pillar-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(212, 168, 67, 0.1);
    color: var(--gold);
    font-size: 0.8rem;
    margin-top: 1rem;
    transition: var(--transition);
}

.pillar-link:hover .pillar-arrow {
    background: var(--gold);
    color: #0a0a0a;
}

/* ======== SECTION COMMON ======== */
section {
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 1rem;
    position: relative;
    padding: 0 1rem;
}

.section-tag::before,
.section-tag::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 1px;
    background: var(--gold);
    opacity: 0.4;
}

.section-tag::before {
    right: 100%;
}

.section-tag::after {
    left: 100%;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.05rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.subsection-title {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

/* ======== ABOUT SECTION (EL CENTRO) ======== */
.about-section {
    padding: 7rem 0;
    position: relative;
    overflow: hidden;
}

.about-bg-image {
    position: absolute;
    inset: 0;
    background: url('images/academy-bg.png') center/cover no-repeat;
    opacity: 0.12;
    z-index: 0;
}

.about-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, var(--bg-primary) 0%, rgba(8, 12, 20, 0.85) 50%, var(--bg-primary) 100%);
    z-index: 1;
}

.about-section .container,
.experts-section .container {
    position: relative;
    z-index: 2;
}

.about-statement {
    text-align: center;
    max-width: 700px;
    margin: -1.5rem auto 0;
    font-size: 1.15rem;
    color: var(--gold-light);
    font-style: italic;
    font-weight: 500;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.glass-card {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
}

.about-card {
    padding: 2.25rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.about-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 168, 67, 0.15);
    box-shadow: 0 20px 60px -20px rgba(212, 168, 67, 0.15);
}

.about-card:hover::before {
    opacity: 1;
}

.card-icon-wrapper {
    margin-bottom: 1.25rem;
}

.card-icon {
    width: 52px;
    height: 52px;
    background: rgba(212, 168, 67, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--gold);
    transition: var(--transition);
}

.about-card:hover .card-icon {
    background: var(--gradient-gold);
    color: #0a0a0a;
}

.about-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.about-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* Commitment box */
.commitment-box {
    display: flex;
    gap: 2rem;
    padding: 2.5rem;
    align-items: flex-start;
    border-color: rgba(212, 168, 67, 0.15);
}

.commitment-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: rgba(212, 168, 67, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--gold);
}

.commitment-content h3 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
}

.commitment-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

.commitment-content strong {
    color: var(--gold-light);
}

/* ======== MODEL SECTION ======== */
.model-section {
    padding: 7rem 0;
    background: var(--bg-secondary);
}

.model-intro {
    text-align: center;
    max-width: 700px;
    margin: -1.5rem auto 4rem;
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.model-intro strong {
    color: var(--gold-light);
}

.dimensions-header {
    text-align: center;
    margin-bottom: 3rem;
}

.dimensions-header p {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1rem;
}

.dimensions-header strong {
    color: var(--gold-light);
}

.dimensions-pyramid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.dimension-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 2.25rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.dimension-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    transition: height 0.4s ease;
}

.dim-1::before {
    background: var(--gradient-gold);
}

.dim-2::before {
    background: var(--gradient-emerald);
}

.dim-3::before {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.dimension-card:hover {
    transform: translateY(-8px);
}

.dimension-card:hover::before {
    height: 6px;
}

.dim-level {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-weight: 600;
}

.dim-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.4rem;
}

.dim-1 .dim-icon {
    background: rgba(212, 168, 67, 0.1);
    color: var(--gold);
}

.dim-2 .dim-icon {
    background: rgba(15, 169, 104, 0.1);
    color: var(--emerald);
}

.dim-3 .dim-icon {
    background: rgba(59, 130, 246, 0.1);
    color: var(--blue-accent);
}

.dimension-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.dimension-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Thinking section */
.thinking-section {
    max-width: 800px;
    margin: 0 auto;
}

.thinking-card {
    padding: 2.5rem;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    border-color: rgba(212, 168, 67, 0.12);
}

.thinking-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 50%;
    background: rgba(212, 168, 67, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--gold);
}

.thinking-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.thinking-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

.thinking-card strong {
    color: var(--gold-light);
}

.thinking-highlight {
    margin-top: 1rem;
    color: var(--gold) !important;
    font-weight: 600;
    font-style: italic;
}

/* ======== RESEARCH SECTION ======== */
.research-section {
    padding: 7rem 0;
    position: relative;
    overflow: hidden;
}

.tactics-bg-image {
    position: absolute;
    inset: 0;
    background: url('images/tactics-bg.png') center/cover no-repeat;
    opacity: 0.06;
    z-index: 0;
}

.tactics-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, var(--bg-primary) 0%, rgba(8, 12, 20, 0.95) 15%, rgba(8, 12, 20, 0.95) 85%, var(--bg-secondary) 100%);
    z-index: 1;
}

.research-section .container {
    position: relative;
    z-index: 2;
}

.research-paths {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.research-path {
    padding: 2.25rem;
    transition: var(--transition);
}

.research-path:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 168, 67, 0.15);
}

.path-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(212, 168, 67, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--gold);
    margin-bottom: 1.25rem;
}

.research-path h3 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
}

.research-path p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
}

.research-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.research-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.research-card-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(212, 168, 67, 0.04), transparent 60%);
    transition: var(--transition);
}

.research-card:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 168, 67, 0.2);
    box-shadow: 0 16px 48px -12px rgba(0, 0, 0, 0.4);
}

.research-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: rgba(212, 168, 67, 0.08);
    position: absolute;
    top: 0.75rem;
    right: 1.25rem;
    line-height: 1;
}

.research-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(212, 168, 67, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    color: var(--gold);
    margin-bottom: 1.1rem;
    transition: var(--transition);
    position: relative;
}

.research-card:hover .research-icon {
    background: var(--gradient-gold);
    color: #0a0a0a;
}

.research-card h3 {
    font-size: 1.05rem;
    margin-bottom: 0.6rem;
    font-weight: 600;
    position: relative;
}

.research-card p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    position: relative;
}

.research-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    position: relative;
}

.research-tags span {
    padding: 0.2rem 0.65rem;
    background: rgba(212, 168, 67, 0.08);
    color: var(--gold-light);
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 500;
    border: 1px solid rgba(212, 168, 67, 0.12);
}

/* ======== TRAINING SECTION ======== */
.training-section {
    padding: 7rem 0;
    background: var(--bg-secondary);
}

.training-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.training-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 2.25rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.training-card-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.training-card:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 168, 67, 0.2);
    box-shadow: 0 16px 48px -12px rgba(0, 0, 0, 0.4);
}

.training-card:hover .training-card-accent {
    opacity: 1;
}

.training-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(212, 168, 67, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--gold);
    margin-bottom: 1.25rem;
}

.training-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
    font-weight: 600;
}

.training-card>p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.training-features {
    list-style: none;
}

.training-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    padding: 0.45rem 0;
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.5;
}

.training-features li i {
    color: var(--emerald);
    font-size: 0.7rem;
    margin-top: 0.35rem;
}

/* ======== EXPERTS SECTION ======== */
.experts-section {
    padding: 7rem 0;
    position: relative;
    overflow: hidden;
}

.experts-note {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    background: rgba(212, 168, 67, 0.06);
    border: 1px solid rgba(212, 168, 67, 0.12);
    border-radius: 50px;
    margin: -1.5rem auto 3rem;
    max-width: fit-content;
    font-size: 0.85rem;
    color: var(--gold-light);
}

.experts-note i {
    color: var(--gold);
}

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

.expert-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    transition: var(--transition);
}

.expert-card:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 168, 67, 0.15);
    box-shadow: 0 16px 48px -12px rgba(0, 0, 0, 0.4);
}

.expert-avatar {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #fff;
}

.expert-info h3 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
    font-weight: 600;
}

.expert-role {
    display: inline-block;
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.expert-info p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.6;
}

/* ======== RESOURCES SECTION ======== */
.resources-section {
    padding: 7rem 0;
    background: var(--bg-secondary);
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.resource-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 2.25rem;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.resource-card:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 168, 67, 0.15);
    box-shadow: 0 16px 48px -12px rgba(0, 0, 0, 0.4);
}

.resource-card.featured-resource {
    border-color: rgba(212, 168, 67, 0.2);
    background: linear-gradient(135deg, rgba(212, 168, 67, 0.06), rgba(15, 169, 104, 0.04));
    position: relative;
}

.featured-badge {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    padding: 0.25rem 0.75rem;
    background: var(--gradient-gold);
    color: #0a0a0a;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.resource-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(212, 168, 67, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--gold);
    margin-bottom: 1.25rem;
}

.resource-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.6rem;
    font-weight: 600;
}

.resource-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
    flex-grow: 1;
}

.resource-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.resource-link:hover {
    color: var(--gold-light);
    gap: 0.75rem;
}

/* ======== JOIN / CONTACT SECTION ======== */
.join-section {
    padding: 7rem 0;
}

.join-manifesto {
    text-align: center;
    max-width: 750px;
    margin: -1.5rem auto 4rem;
}

.join-manifesto p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

.join-manifesto strong {
    color: var(--text-main);
}

.join-manifesto em {
    color: var(--gold-light);
}

.join-option {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.join-option-header {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.join-emoji {
    font-size: 2rem;
    line-height: 1;
}

.join-option-header h3,
.patron-header h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.join-option-header p,
.patron-header p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

.join-option-header strong,
.patron-header strong {
    color: var(--gold-light);
}

.patron-section {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    padding: 3rem;
    margin-bottom: 4rem;
}

.patron-header {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    margin-bottom: 2.5rem;
}

.tiers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.tier-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 1.75rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.tier-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 168, 67, 0.2);
}

.tier-card.featured-tier {
    border-color: rgba(212, 168, 67, 0.3);
    background: rgba(212, 168, 67, 0.05);
}

.tier-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.2rem 0.75rem;
    background: var(--gradient-gold);
    color: #0a0a0a;
    font-size: 0.65rem;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tier-emoji {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}

.tier-card h4 {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.tier-price {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.75rem;
    line-height: 1;
}

.tier-price span {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-muted);
}

.tier-card p {
    color: var(--text-secondary);
    font-size: 0.8rem;
    line-height: 1.6;
}

.patron-cta {
    text-align: center;
    margin-top: 1.5rem;
}

/* Contact Block */
.contact-block {
    margin-top: 2rem;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    padding: 3rem;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.contact-info>p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.contact-item i {
    color: var(--gold);
    width: 20px;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1.2rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-fast);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748b' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-group select option {
    background: var(--bg-card);
    color: var(--text-main);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    background: rgba(212, 168, 67, 0.05);
}

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

/* ======== FOOTER ======== */
.footer {
    padding: 4rem 0 2rem;
    background: var(--bg-primary);
    border-top: 1px solid var(--border-glass);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    max-width: 320px;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.footer-social a:hover {
    background: var(--gold);
    color: #0a0a0a;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-col h5 {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* ======== SCROLL ANIMATIONS ======== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

/* ======== RESPONSIVE ======== */
@media (max-width: 1024px) {

    .about-grid,
    .research-grid,
    .training-grid,
    .resources-grid,
    .dimensions-pyramid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pillars-quick {
        grid-template-columns: 1fr;
    }

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

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

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

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(8, 12, 20, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        padding: 2rem;
        gap: 1.5rem;
        transition: right 0.4s ease;
        border-left: 1px solid var(--border-glass);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a::after {
        display: none;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-btns {
        flex-direction: column;
        align-items: center;
    }

    .about-grid,
    .research-grid,
    .training-grid,
    .resources-grid,
    .dimensions-pyramid,
    .pillars-quick,
    .research-paths {
        grid-template-columns: 1fr;
    }

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

    .contact-wrapper {
        grid-template-columns: 1fr;
        padding: 2rem;
        gap: 2rem;
    }

    .join-option {
        flex-direction: column;
        text-align: center;
    }

    .join-option-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .patron-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .thinking-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .commitment-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .manifesto-block {
        padding: 2rem;
    }

    .patron-section {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.75rem;
    }

    .contact-wrapper {
        padding: 1.5rem;
    }

    .patron-section {
        padding: 1.5rem;
    }
}