:root {
    --bg-color: #05050A;
    --surface-color: rgba(255, 255, 255, 0.03);
    --surface-border: rgba(255, 255, 255, 0.08);
    --text-primary: #FFFFFF;
    --text-secondary: #A0A0B0;
    --accent-1: #4F46E5;
    --accent-2: #EC4899;
    --accent-3: #8B5CF6;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    scroll-behavior: smooth;
}

/* Background Gradients */
.glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(150px);
    z-index: -1;
    opacity: 0.5;
    animation: float 10s infinite ease-in-out alternate;
}

.glow-1 {
    top: -200px;
    left: -200px;
    background: radial-gradient(circle, var(--accent-1), transparent 70%);
}

.glow-2 {
    bottom: 20%;
    right: -200px;
    background: radial-gradient(circle, var(--accent-2), transparent 70%);
    animation-delay: -5s;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, 50px) scale(1.1); }
}

/* Typography & Utilities */
h1, h2, h3 {
    font-family: var(--font-heading);
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, #fff, var(--accent-3), var(--accent-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-sm {
    max-width: 800px;
}

/* Navigation */
.navbar {
    padding: 1.5rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--surface-border);
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
}

/* Buttons */
.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    font-family: var(--font-body);
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-1), var(--accent-3));
    color: white;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.6);
}

.btn-secondary {
    background: var(--surface-color);
    color: white;
    border: 1px solid var(--surface-border);
    backdrop-filter: blur(10px);
}

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

.btn-outline {
    border: 1px solid var(--surface-border);
    color: white;
    background: transparent;
}

.btn-outline:hover {
    border-color: var(--accent-3);
    background: rgba(139, 92, 246, 0.1);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--surface-color);
    border: 1px solid var(--surface-border);
    border-radius: 50px;
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.pulse {
    width: 8px;
    height: 8px;
    background-color: #10B981;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    animation: pulsing 2s infinite;
}

@keyframes pulsing {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

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

/* Sections */
.section {
    padding: 6rem 0;
}

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

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.125rem;
}

/* About Profile */
.about-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
    background: var(--surface-color);
    border: 1px solid var(--surface-border);
    border-radius: 32px;
    padding: 3rem;
    backdrop-filter: blur(10px);
}

.profile-image-container {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    padding: 4px;
    background: linear-gradient(135deg, var(--accent-1), var(--accent-3), var(--accent-2));
}

.profile-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    background: var(--bg-color);
}

.profile-role {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 2.5rem;
    margin-top: 0.5rem;
    letter-spacing: 0.5px;
}

.profile-stats {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
}

.stat-box {
    flex: 1;
    min-width: 200px;
    background: rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-box:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.2);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.stat-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.stat-box h4 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.stat-box p {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* Editorial Section (Section 3) */
.editorial-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: #0D0D0D;
    padding: 8rem 0;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

.grain-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.3;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    mix-blend-mode: overlay;
}

.editorial-container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.editorial-header {
    text-align: center;
    margin-bottom: 5rem;
}

.editorial-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    color: #FFFFFF;
    margin-bottom: 2rem;
    letter-spacing: -2px;
}

.editorial-subtitle {
    font-size: 1.25rem;
    color: #A0A0B0;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    letter-spacing: -0.5px;
}

.editorial-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
    max-width: 700px;
    margin-bottom: 4rem;
}

.editorial-card {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-left: 4px solid #C8FF00;
    padding: 2rem;
    font-size: 1.125rem;
    color: #E2E2E2;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.editorial-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(10px);
    box-shadow: -10px 10px 30px rgba(200, 255, 0, 0.05);
}

.editorial-card .card-icon {
    color: #C8FF00;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(200, 255, 0, 0.1);
    border-radius: 50%;
}

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

.btn-editorial {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
    background: #C8FF00;
    color: #0D0D0D;
    padding: 1.25rem 3rem;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-editorial:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(200, 255, 0, 0.2);
    background: #e0ff66;
}

/* Origin Section (Section 5) */
.origin-section {
    position: relative;
    background-color: #0D0D0D;
    padding: 8rem 0;
    font-family: 'Inter', sans-serif;
    color: #E2E2E2;
}

.origin-hero {
    text-align: center;
    margin-bottom: 4rem;
}

.origin-headline {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    letter-spacing: -1.5px;
}

.origin-subheadline {
    font-size: 1.25rem;
    color: #A0A0B0;
    line-height: 1.6;
}

.origin-intro {
    text-align: center;
    font-size: 1.25rem;
    font-weight: 500;
    color: #FFB347; /* Warm amber */
    margin-bottom: 3rem;
}

/* 3 Origin Cards */
.origin-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 6rem;
}

.origin-card {
    background: #111108; /* Warm dark gray */
    border-left: 4px solid #FFB347;
    padding: 2.5rem 1.5rem;
    border-radius: 0 16px 16px 0;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.origin-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 179, 71, 0.05);
}

.origin-num {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    color: rgba(255, 179, 71, 0.1);
    line-height: 1;
}

.origin-icon {
    color: #FFB347;
    margin-bottom: 1.5rem;
    display: inline-flex;
    padding: 1rem;
    background: rgba(255, 179, 71, 0.1);
    border-radius: 12px;
}

.origin-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    color: #FFFFFF;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.origin-card p {
    color: #A0A0B0;
    line-height: 1.6;
    font-size: 1rem;
}

/* Narrative Bridge */
.narrative-bridge {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 6rem auto;
    font-size: clamp(1.25rem, 3vw, 2rem);
    line-height: 1.5;
    font-weight: 500;
    color: #D1D1D1;
}

.highlight-amber {
    display: block;
    color: #FFB347;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    margin-top: 1rem;
}

/* Community Expansion */
.community-expansion {
    margin-bottom: 6rem;
}

.community-intro {
    text-align: center;
    font-size: 1.25rem;
    color: #A0A0B0;
    margin-bottom: 4rem;
    max-width: 600px;
    margin: 0 auto 4rem auto;
}

.community-flow {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.community-stop {
    background: #0F0E0A;
    border: 1px solid rgba(255, 179, 71, 0.2);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    width: 280px;
    position: relative;
    transition: transform 0.3s ease;
}

.community-stop:hover {
    transform: translateY(-5px);
    border-color: #FFB347;
}

.stop-marker {
    width: 16px;
    height: 16px;
    background-color: #C8FF00;
    border-radius: 50%;
    margin: 0 auto 1rem auto;
    box-shadow: 0 0 10px rgba(200, 255, 0, 0.4);
}

.community-stop h4 {
    font-family: 'Space Grotesk', sans-serif;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.community-stop p {
    color: #A0A0B0;
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0;
}

.flow-connector {
    width: 40px;
    border-top: 2px dashed rgba(200, 255, 0, 0.3);
}

@media (max-width: 992px) {
    .community-flow {
        flex-direction: column;
    }
    .flow-connector {
        width: 0;
        height: 30px;
        border-top: none;
        border-left: 2px dashed rgba(200, 255, 0, 0.3);
    }
}

/* Geographic Arc */
.geographic-arc {
    text-align: left;
    max-width: 600px;
    margin: 0 auto 6rem auto;
    padding-left: 2rem;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.geo-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-style: italic;
    color: #A0A0B0;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.geo-text:hover {
    color: #FFFFFF;
}

.geo-1 { margin-left: 0; }
.geo-2 { margin-left: 2rem; }
.geo-3 { margin-left: 4rem; }
.geo-4 { 
    margin-left: 6rem; 
    color: #C8FF00;
    font-style: normal;
    font-weight: 700;
}

@media (max-width: 768px) {
    .geographic-arc {
        padding-left: 1rem;
        margin-bottom: 4rem;
    }
    .geo-text { font-size: 1.1rem; }
    .geo-2 { margin-left: 1rem; }
    .geo-3 { margin-left: 2rem; }
    .geo-4 { margin-left: 3rem; }
}

/* Key Takeaways Alt */
.origin-takeaways {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 6rem;
}

.takeaway-card-alt {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: border-color 0.3s ease;
}

.takeaway-card-alt:hover {
    border-color: #C8FF00;
}

.takeaway-card-alt p {
    color: #E2E2E2;
    font-size: 1.125rem;
    line-height: 1.6;
    margin: 0;
}

/* Section 5 CTA */
.origin-cta {
    background: #0F0E0A;
    border: 1px solid rgba(255, 179, 71, 0.2);
    border-radius: 24px;
    padding: 5rem 2rem;
    text-align: center;
}

.origin-cta-headline {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.origin-cta-sub {
    font-size: 1.25rem;
    color: #A0A0B0;
    margin-bottom: 3rem;
}

.btn-editorial-amber {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
    background: #FFB347;
    color: #0D0D0D;
    padding: 1.25rem 3rem;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
}

.btn-editorial-amber:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(255, 179, 71, 0.3);
    background: #ffc46b;
}

/* Action Section (Section 6) */
.action-section {
    position: relative;
    background-color: #0D0D0D;
    padding: 8rem 0;
    font-family: 'Inter', sans-serif;
    color: #E2E2E2;
}

.action-hero {
    text-align: center;
    margin-bottom: 6rem;
}

.action-headline {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.action-subheadline {
    font-size: 1.25rem;
    color: #A0A0B0;
    line-height: 1.6;
}

/* Reframe Section */
.reframe-box {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 6rem auto;
    transform: rotate(-1.5deg);
    background: #C8FF00;
    padding: 3rem 2rem;
    border-radius: 4px;
    color: #0D0D0D;
    box-shadow: 10px 10px 0px rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.reframe-box:hover {
    transform: rotate(0deg);
}

.reframe-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.75rem, 4vw, 3rem);
    font-weight: 800;
    font-style: italic;
    margin-bottom: 1rem;
    letter-spacing: -1px;
    line-height: 1.1;
}

.reframe-desc {
    font-size: 1.25rem;
    font-weight: 600;
}

.action-intro {
    text-align: center;
    font-size: 1.25rem;
    color: #A0A0B0;
    margin-bottom: 3rem;
}

/* Action Cards */
.action-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 6rem;
    justify-content: center;
}

.action-card {
    flex: 1;
    min-width: 280px;
    background: #1A1A1A;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 12px;
    position: relative;
    transition: transform 0.4s ease, border-color 0.4s ease;
}

.action-card:hover {
    transform: translateY(-8px);
    border-color: rgba(200, 255, 0, 0.3);
}

.action-card-header {
    margin-bottom: 2rem;
}

.action-label {
    display: inline-block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: #C8FF00;
}

.action-card-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    color: #FFFFFF;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.action-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.action-card-text {
    color: #A0A0B0;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.action-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: auto;
}

.action-tag {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    color: #C8FF00;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Rhythm Section */
.rhythm-section {
    text-align: center;
    margin-bottom: 6rem;
    padding: 4rem 2rem;
    background: #111111;
    border-radius: 24px;
}

.rhythm-headline {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.rhythm-text {
    font-size: 1.25rem;
    color: #E2E2E2;
    line-height: 1.7;
    margin-bottom: 3rem;
}

.rhythm-visual {
    max-width: 500px;
    margin: 0 auto;
}

.rhythm-waves {
    width: 100%;
    height: auto;
}

.rhythm-waves rect {
    transition: transform 0.2s ease;
    transform-origin: center;
}

.rhythm-waves:hover rect[fill="#C8FF00"] {
    transform: scaleY(1.2);
}
.rhythm-waves:hover rect[fill="#333333"] {
    transform: scaleY(0.8);
}

/* Reality Check Box */
.reality-check {
    background: #1A1A1A;
    border-left: 6px solid #C8FF00;
    padding: 2.5rem;
    max-width: 800px;
    margin: 0 auto 6rem auto;
    border-radius: 0 12px 12px 0;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.reality-check::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 6rem;
    font-weight: 800;
    color: rgba(200, 255, 0, 0.1);
    line-height: 1;
}

.reality-check p {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #E2E2E2;
    font-style: italic;
    position: relative;
    z-index: 2;
    margin: 0;
}

/* Action CTA */
.action-cta {
    margin-bottom: 2rem;
}

.action-cta-headline {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.action-cta-sub {
    font-size: 1.25rem;
    color: #C8FF00;
    font-weight: 500;
}

/* Crisis Section (Section 7) */
.crisis-section {
    position: relative;
    background-color: #080808; /* Deepest dark */
    padding: 8rem 0;
    font-family: 'Inter', sans-serif;
    color: #E2E2E2;
}

.grain-overlay-heavy {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)"/%3E%3C/svg%3E');
    opacity: 0.1;
    mix-blend-mode: overlay;
    pointer-events: none;
    z-index: 1;
}

.crisis-hero {
    text-align: center;
    margin-bottom: 4rem;
    z-index: 2;
    position: relative;
}

.crisis-headline {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    letter-spacing: -1.5px;
}

.crisis-subheadline {
    font-size: 1.25rem;
    color: #A0A0B0;
    line-height: 1.6;
}

.crisis-intro {
    text-align: center;
    font-size: 1.125rem;
    color: #FF4D4D; /* Rust Red */
    font-family: 'Space Grotesk', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 4rem;
    z-index: 2;
    position: relative;
}

/* Crisis Timeline Beats */
.crisis-timeline {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-bottom: 6rem;
    position: relative;
    z-index: 2;
}

.crisis-beat {
    position: relative;
    background: #0D0D0D;
    padding: 3rem 2rem;
    border-radius: 8px;
    border-left: 2px solid transparent;
    transition: border-color 0.5s ease;
    overflow: hidden;
}

.crisis-beat:hover {
    border-left-color: #FF4D4D;
}

.beat-bg-num {
    position: absolute;
    top: -2rem;
    right: -1rem;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 12rem;
    font-weight: 800;
    color: rgba(255, 77, 77, 0.03); /* Faded red */
    line-height: 1;
    pointer-events: none;
    z-index: 0;
}

.beat-content {
    position: relative;
    z-index: 1;
}

.beat-label {
    display: inline-block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: #FF4D4D;
    background: rgba(255, 77, 77, 0.1);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.beat-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.beat-text {
    font-size: 1.125rem;
    color: #A0A0B0;
    line-height: 1.7;
    max-width: 600px;
}

/* Philosophical Pivot */
.philosophical-pivot {
    background: #111111;
    padding: 8rem 2rem;
    margin: 6rem 0;
    text-align: center;
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.pivot-quote {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.75rem, 4vw, 3rem);
    font-weight: 400;
    font-style: italic;
    color: #FFFFFF;
    line-height: 1.4;
    max-width: 900px;
    margin: 0 auto;
}

/* Shift to Lime (Resolution) */
.transition-to-lime {
    position: relative;
    z-index: 2;
}

.resolution-section {
    text-align: left;
    margin-bottom: 4rem;
}

.resolution-headline {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: #C8FF00; /* Shift to lime here */
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -1px;
}

.resolution-text {
    font-size: 1.25rem;
    color: #D1D1D1;
    line-height: 1.7;
    max-width: 700px;
}

/* Resolution Takeaway Cards */
.resolution-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 6rem;
}

.res-card {
    flex: 1;
    min-width: 250px;
    background: #0D0D0D;
    border-left: 2px solid #C8FF00;
    padding: 2rem;
    border-radius: 0 8px 8px 0;
}

.res-card p {
    font-size: 1.125rem;
    color: #E2E2E2;
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

/* Final Closing CTA inside Section 7 */
.crisis-closing-cta {
    margin-bottom: 2rem;
}

.closing-cta-headline {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.75rem, 3.5vw, 3rem);
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.closing-cta-sub {
    font-size: 1.25rem;
    color: #C8FF00;
}

/* Animations specific to Section 7 */
.reveal-drift {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.25, 1, 0.5, 1); /* Smooth ease-out, no bouncing */
}
.reveal-drift.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-fade {
    opacity: 0;
    transition: opacity 1.5s ease;
}
.reveal-fade.active {
    opacity: 1;
}

/* SECTION 8: Key Learnings & Closing */
.closing-section {
    position: relative;
    background-color: #0D0D0D;
    padding: 8rem 0;
    font-family: 'Inter', sans-serif;
    color: #E2E2E2;
}

.closing-hero {
    text-align: center;
    margin-bottom: 5rem;
}

.closing-headline {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    letter-spacing: -1.5px;
}

.closing-intro {
    font-size: 1.25rem;
    color: #C8FF00;
}

/* Key Learnings Listicle */
.key-learnings {
    max-width: 800px;
    margin: 0 auto 6rem auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.learning-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.learning-item:last-child {
    border-bottom: none;
}

.learning-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #666666;
    min-width: 40px;
    padding-top: 2px;
}

.learning-item p {
    font-size: clamp(1.125rem, 2vw, 1.35rem);
    line-height: 1.5;
    margin: 0;
    color: #FFFFFF; /* Odd items default */
    font-weight: 500;
}

.learning-item.alt p {
    color: #C8FF00; /* Even items lime */
}

/* Personal Note */
.personal-note {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 6rem auto;
}

.note-headline {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
}

.note-text {
    font-size: 1.125rem;
    color: #A0A0B0;
    line-height: 1.8;
    font-style: italic;
}

/* Social Links */
.social-links-section {
    text-align: center;
    margin-bottom: 4rem;
}

.social-intro {
    font-size: 1.125rem;
    color: #A0A0B0;
    margin-bottom: 2rem;
}

.social-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.social-pill {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: #1A1A1A;
    color: #FFFFFF;
    text-decoration: none;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    border-radius: 50px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.social-pill:hover {
    border-color: #C8FF00;
    color: #C8FF00;
    transform: translateY(-3px);
}

@media (max-width: 640px) {
    .social-pills {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    .social-pill {
        width: 100%;
    }
}

/* Final Full-Width Banner */
.final-banner {
    background: #C8FF00;
    padding: 6rem 1rem;
    text-align: center;
    color: #0D0D0D;
}

.banner-headline {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -2px;
}

.banner-sub {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

/* CTA Section */
.glass-panel {
    background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 32px;
    padding: 5rem 3rem;
    text-align: center;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.1);
}

/* Story Section (Section 4) */
.story-section {
    position: relative;
    background-color: #0D0D0D;
    padding: 8rem 0 0 0;
    font-family: 'Inter', sans-serif;
    color: #E2E2E2;
}

.story-hero {
    text-align: center;
    margin-bottom: 6rem;
}

.story-headline {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    letter-spacing: -1.5px;
}

.story-subheadline {
    font-size: 1.25rem;
    color: #A0A0B0;
    line-height: 1.6;
}

.story-timeline {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    padding-left: 2rem;
    margin-bottom: 8rem;
}

/* The vertical connecting line */
.story-timeline::before {
    content: '';
    position: absolute;
    top: 10px;
    bottom: 0;
    left: 8px; /* Offset to center the line under the dot */
    width: 2px;
    background: rgba(200, 255, 0, 0.2);
}

.story-beat {
    position: relative;
    padding-left: 3rem;
    margin-bottom: 5rem;
}

.story-beat:last-child {
    margin-bottom: 0;
}

.beat-marker {
    position: absolute;
    left: -13px; /* Align with the vertical line */
    top: 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #C8FF00;
    box-shadow: 0 0 15px rgba(200, 255, 0, 0.5);
    z-index: 2;
}

.beat-label {
    display: inline-block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #C8FF00;
    margin-bottom: 1rem;
    background: rgba(200, 255, 0, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
}

.beat-content p {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #D1D1D1;
    margin: 0;
}

.story-cta-section {
    background-color: #C8FF00;
    padding: 6rem 0;
    color: #0D0D0D;
    margin-top: 4rem;
}

.cta-headline {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -1px;
    color: #0D0D0D;
}

.cta-subheadline {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 4rem;
}

.takeaways-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
    text-align: left;
}

.takeaway-card {
    background: #0D0D0D;
    color: #E2E2E2;
    padding: 2rem;
    border-radius: 16px;
    transition: transform 0.3s ease;
}

.takeaway-card:hover {
    transform: translateY(-5px);
}

.takeaway-num {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #C8FF00;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.takeaway-card p {
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

.btn-editorial-dark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
    background: #0D0D0D;
    color: #C8FF00;
    padding: 1.25rem 3rem;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-editorial-dark:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    background: #1a1a1a;
}

.glass-panel h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.glass-panel p {
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    font-size: 1.125rem;
}

.register-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.form-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    background: rgba(0,0,0,0.3);
    border: 1px solid var(--surface-border);
    color: white;
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.form-input::placeholder {
    color: var(--text-secondary);
}

.form-input:focus {
    border-color: var(--accent-3);
    background: rgba(0,0,0,0.5);
    box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.1);
}

/* Footer */
.footer {
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid var(--surface-border);
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-top: 2rem;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.delay-1 { animation-delay: 0.2s; transition-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; transition-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; transition-delay: 0.6s; }

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

/* Responsive */
@media (max-width: 768px) {
    .register-form {
        flex-direction: column;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .glass-panel {
        padding: 3rem 1.5rem;
    }
    
    .glow {
        width: 400px;
        height: 400px;
    }
}
