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

html {
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #000000;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

/* ===== CUSTOM PROPERTIES ===== */
:root {
    --primary-black: #000000;
    --secondary-black: #0a0a0a;
    --tertiary-black: #1a1a1a;
    --primary-white: #ffffff;
    --secondary-white: #f5f5f5;
    --tertiary-white: #e5e5e5;
    --accent-gray: #666666;
    --light-gray: #999999;
    --border-color: rgba(255, 255, 255, 0.08);
    --gradient-primary: linear-gradient(135deg, #ffffff 0%, #999999 100%);
    --gradient-accent: linear-gradient(135deg, #333333 0%, #666666 100%);
    --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --transition-elastic: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 8px 40px rgba(0, 0, 0, 0.2);
    --shadow-strong: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* ===== LOADING SCREEN ===== */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-black);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 1s ease, visibility 1s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
}

.loading-text {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    margin-bottom: 2rem;
}

.loading-text span {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    animation: letterReveal 0.6s ease forwards;
}

.loading-text span:nth-child(1) { animation-delay: 0.1s; }
.loading-text span:nth-child(2) { animation-delay: 0.2s; }
.loading-text span:nth-child(3) { animation-delay: 0.3s; }
.loading-text span:nth-child(4) { animation-delay: 0.4s; }
.loading-text span:nth-child(5) { animation-delay: 0.5s; }
.loading-text span:nth-child(6) { animation-delay: 0.6s; }
.loading-text span:nth-child(7) { animation-delay: 0.7s; }

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

.loading-progress {
    width: 200px;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 auto;
    overflow: hidden;
}

.loading-bar {
    width: 0%;
    height: 100%;
    background: var(--primary-white);
    animation: progressBar 2s ease-in-out forwards;
}

@keyframes progressBar {
    to {
        width: 100%;
    }
}

/* ===== CUSTOM CURSOR ===== */
.cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
}

.cursor-dot {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-white);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease;
}

.cursor-outline {
    position: absolute;
    width: 24px;
    height: 24px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.cursor.hover .cursor-outline {
    width: 48px;
    height: 48px;
    border-color: rgba(255, 255, 255, 0.6);
}

/* ===== NAVIGATION ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: all 0.3s var(--transition-smooth);
}

.nav.scrolled {
    padding: 1rem 0;
    background: rgba(0, 0, 0, 0.95);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    position: relative;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    transition: all 0.3s var(--transition-smooth);
}

.logo-underline {
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-white);
    transition: width 0.3s var(--transition-smooth);
}

.nav-logo:hover .logo-underline {
    width: 100%;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-link {
    color: var(--light-gray);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    position: relative;
    transition: color 0.3s var(--transition-smooth);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--primary-white);
    transition: all 0.3s var(--transition-smooth);
    transform: translateX(-50%);
}

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

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.nav-toggle span {
    width: 20px;
    height: 1px;
    background: var(--primary-white);
    transition: all 0.3s var(--transition-smooth);
}

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

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
}

.hero-orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    top: 20%;
    left: 10%;
    animation: float 20s infinite ease-in-out;
}

.hero-orb-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    top: 60%;
    right: 15%;
    animation: float 25s infinite ease-in-out reverse;
}

.hero-orb-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
    bottom: 30%;
    left: 60%;
    animation: float 30s infinite ease-in-out;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

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

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(4rem, 12vw, 8rem);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.title-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(100px);
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    font-weight: 300;
    color: var(--light-gray);
    margin-bottom: 3rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.subtitle-line {
    display: inline-block;
    opacity: 0;
    transform: translateY(50px);
}

.hero-description {
    max-width: 600px;
    margin: 0 auto 4rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--accent-gray);
}

.description-line {
    display: block;
    opacity: 0;
    transform: translateY(30px);
    margin-bottom: 0.5rem;
}

.hero-cta {
    margin-bottom: 4rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    border: 1px solid var(--border-color);
    border-radius: 50px;
    color: var(--primary-white);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--transition-smooth);
    opacity: 0;
    transform: translateY(30px);
}

.cta-bg {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-white);
    transition: left 0.4s var(--transition-smooth);
    z-index: -1;
}

.cta-button:hover .cta-bg {
    left: 0;
}

.cta-button:hover {
    color: var(--primary-black);
    border-color: var(--primary-white);
    transform: translateY(-2px);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    opacity: 0;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--primary-white), transparent);
    animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.2); }
}

.scroll-text {
    font-size: 0.8rem;
    color: var(--accent-gray);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* ===== SECTIONS ===== */
.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 300;
    text-align: center;
    margin-bottom: 4rem;
    letter-spacing: -0.02em;
    opacity: 0;
    transform: translateY(50px);
}

/* ===== VISION SECTION ===== */
.vision-section {
    padding: 10rem 0;
    background: var(--secondary-black);
}

.vision-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    align-items: center;
}

.vision-text {
    opacity: 0;
    transform: translateX(-50px);
}

.vision-paragraphs {
    max-width: 500px;
}

.vision-paragraph {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--light-gray);
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(30px);
}

.vision-visual {
    display: flex;
    justify-content: center;
    opacity: 0;
    transform: translateX(50px);
}

.vision-card {
    width: 300px;
    height: 400px;
    background: var(--tertiary-black);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--transition-smooth);
}

.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transition: left 0.6s var(--transition-smooth);
}

.vision-card:hover::before {
    left: 100%;
}

.vision-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.2);
}

.card-content {
    text-align: center;
    padding: 2rem;
}

.card-quote {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-style: italic;
    color: var(--secondary-white);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.card-decoration {
    width: 60px;
    height: 1px;
    background: var(--primary-white);
    margin: 0 auto;
}

/* ===== OFFERINGS SECTION ===== */
.offerings-section {
    padding: 10rem 0;
    background: var(--primary-black);
}

.offerings-title {
    margin-bottom: 6rem;
}

.offerings-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

.offering-item {
    display: grid;
    grid-template-columns: 100px 1fr 100px;
    align-items: center;
    padding: 4rem 0;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    transition: all 0.4s var(--transition-smooth);
    opacity: 0;
    transform: translateY(50px);
}

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

.offering-item:hover {
    background: rgba(255, 255, 255, 0.02);
}

.offering-number {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--accent-gray);
    letter-spacing: 0.1em;
}

.offering-content {
    padding: 0 3rem;
}

.offering-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--primary-white);
    letter-spacing: -0.01em;
}

.offering-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--light-gray);
    max-width: 500px;
}

.offering-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.offering-symbol {
    font-size: 2rem;
    color: var(--accent-gray);
    transition: all 0.3s var(--transition-smooth);
}

.offering-item:hover .offering-symbol {
    color: var(--primary-white);
    transform: scale(1.2);
}

/* ===== TRANSMISSIONS SECTION ===== */
.transmissions-section {
    padding: 10rem 0;
    background: var(--secondary-black);
    position: relative;
    overflow: hidden;
}

.transmissions-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.02) 0%, transparent 70%);
    z-index: 0;
}

.transmissions-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--accent-gray);
    font-weight: 300;
    letter-spacing: 0.15em;
    margin-bottom: 6rem;
    opacity: 0;
    transform: translateY(30px);
}

.transmissions-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8rem;
    position: relative;
    z-index: 2;
}

.transmission-item {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 6rem;
    align-items: center;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s var(--transition-smooth);
}

.transmission-item:nth-child(even) {
    grid-template-columns: 1fr 300px;
    direction: rtl;
}

.transmission-item:nth-child(even) .transmission-content {
    direction: ltr;
    text-align: right;
}

.transmission-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 300px;
    position: relative;
}

.transmission-geometry {
    width: 200px;
    height: 200px;
    position: relative;
    cursor: pointer;
}

.geometry-core {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    background: var(--primary-white);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    animation: pulse 3s ease-in-out infinite;
}

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

/* Ring Geometry */
.geometry-rings .ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.ring-1 {
    width: 80px;
    height: 80px;
    border: 2px solid rgba(138, 43, 226, 0.8);
    box-shadow: 0 0 15px rgba(138, 43, 226, 0.4);
    animation: rotate 20s linear infinite;
}

.ring-2 {
    width: 120px;
    height: 120px;
    border: 2px solid rgba(65, 105, 225, 0.8);
    box-shadow: 0 0 15px rgba(65, 105, 225, 0.4);
    animation: rotate 30s linear infinite reverse;
}

.ring-3 {
    width: 160px;
    height: 160px;
    border: 2px solid rgba(75, 0, 130, 0.8);
    box-shadow: 0 0 15px rgba(75, 0, 130, 0.4);
    animation: rotate 40s linear infinite;
}

@keyframes rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Spiral Geometry */
.geometry-spirals .spiral {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 3px;
    height: 60px;
    transform-origin: bottom center;
    transform: translate(-50%, -100%);
}

.spiral-1 {
    background: linear-gradient(to bottom, rgba(255, 20, 147, 0.9), rgba(255, 20, 147, 0.3));
    box-shadow: 0 0 10px rgba(255, 20, 147, 0.5);
    animation: spiral 8s ease-in-out infinite;
}

.spiral-2 {
    background: linear-gradient(to bottom, rgba(0, 255, 255, 0.9), rgba(0, 255, 255, 0.3));
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
    animation: spiral 8s ease-in-out infinite;
    animation-delay: -2.67s;
}

.spiral-3 {
    background: linear-gradient(to bottom, rgba(255, 215, 0, 0.9), rgba(255, 215, 0, 0.3));
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    animation: spiral 8s ease-in-out infinite;
    animation-delay: -5.33s;
}

@keyframes spiral {
    0%, 100% { 
        transform: translate(-50%, -100%) rotate(0deg) scale(1);
        opacity: 1;
    }
    50% { 
        transform: translate(-50%, -100%) rotate(180deg) scale(1.5);
        opacity: 0.5;
    }
}

/* Wave Geometry */
.geometry-waves .wave {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.wave-1 {
    border: 2px solid rgba(50, 205, 50, 0.8);
    box-shadow: 0 0 20px rgba(50, 205, 50, 0.4);
    animation: wave 4s ease-in-out infinite;
}

.wave-2 {
    border: 2px solid rgba(255, 69, 0, 0.8);
    box-shadow: 0 0 20px rgba(255, 69, 0, 0.4);
    animation: wave 4s ease-in-out infinite;
    animation-delay: -1.33s;
}

.wave-3 {
    border: 2px solid rgba(148, 0, 211, 0.8);
    box-shadow: 0 0 20px rgba(148, 0, 211, 0.4);
    animation: wave 4s ease-in-out infinite;
    animation-delay: -2.67s;
}

@keyframes wave {
    0% { 
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 1;
    }
    100% { 
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

.transmission-content {
    max-width: 500px;
}

.transmission-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: var(--primary-white);
    letter-spacing: -0.02em;
}

.transmission-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--light-gray);
    margin-bottom: 2rem;
}

.transmission-frequency {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--accent-gray);
    font-style: italic;
    letter-spacing: 0.05em;
}

.transmissions-footer {
    text-align: center;
    margin-top: 8rem;
    opacity: 0;
    transform: translateY(30px);
}

.transmissions-note {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-style: italic;
    color: var(--accent-gray);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

/* Hover Effects */
.transmission-item:hover .geometry-core {
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.8);
    transform: translate(-50%, -50%) scale(1.5);
}

.transmission-item:hover .ring-1 {
    border-color: rgba(138, 43, 226, 1);
    box-shadow: 0 0 25px rgba(138, 43, 226, 0.7);
}

.transmission-item:hover .ring-2 {
    border-color: rgba(65, 105, 225, 1);
    box-shadow: 0 0 25px rgba(65, 105, 225, 0.7);
}

.transmission-item:hover .ring-3 {
    border-color: rgba(75, 0, 130, 1);
    box-shadow: 0 0 25px rgba(75, 0, 130, 0.7);
}

.transmission-item:hover .spiral-1 {
    background: linear-gradient(to bottom, rgba(255, 20, 147, 1), rgba(255, 20, 147, 0.6));
    box-shadow: 0 0 15px rgba(255, 20, 147, 0.8);
}

.transmission-item:hover .spiral-2 {
    background: linear-gradient(to bottom, rgba(0, 255, 255, 1), rgba(0, 255, 255, 0.6));
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.8);
}

.transmission-item:hover .spiral-3 {
    background: linear-gradient(to bottom, rgba(255, 215, 0, 1), rgba(255, 215, 0, 0.6));
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
}

.transmission-item:hover .wave-1 {
    border-color: rgba(50, 205, 50, 1);
    box-shadow: 0 0 30px rgba(50, 205, 50, 0.7);
}

.transmission-item:hover .wave-2 {
    border-color: rgba(255, 69, 0, 1);
    box-shadow: 0 0 30px rgba(255, 69, 0, 0.7);
}

.transmission-item:hover .wave-3 {
    border-color: rgba(148, 0, 211, 1);
    box-shadow: 0 0 30px rgba(148, 0, 211, 0.7);
}

/* ===== EMERGENCE SECTION ===== */
.emergence-section {
    padding: 0;
    background: radial-gradient(ellipse at center, #0a0a0a 0%, #000000 100%);
    position: relative;
    overflow: hidden;
    min-height: 200vh;
    display: flex;
    align-items: center;
}

/* Cosmic Background Layers */
.cosmic-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.cosmic-layer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.8;
}

.cosmic-layer-1 {
    background: 
        radial-gradient(circle at 20% 30%, rgba(75, 0, 130, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(138, 43, 226, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(72, 61, 139, 0.08) 0%, transparent 70%);
    animation: cosmicDrift 120s linear infinite;
}

.cosmic-layer-2 {
    background: 
        radial-gradient(circle at 60% 20%, rgba(25, 25, 112, 0.12) 0%, transparent 60%),
        radial-gradient(circle at 30% 80%, rgba(65, 105, 225, 0.08) 0%, transparent 50%);
    animation: cosmicDrift 80s linear infinite reverse;
}

.cosmic-layer-3 {
    background: 
        radial-gradient(circle at 40% 60%, rgba(148, 0, 211, 0.06) 0%, transparent 80%),
        radial-gradient(circle at 90% 10%, rgba(75, 0, 130, 0.05) 0%, transparent 60%);
    animation: cosmicDrift 100s linear infinite;
}

@keyframes cosmicDrift {
    0% { transform: translateX(0) translateY(0) rotate(0deg); }
    25% { transform: translateX(-20px) translateY(-10px) rotate(90deg); }
    50% { transform: translateX(10px) translateY(-20px) rotate(180deg); }
    75% { transform: translateX(-10px) translateY(10px) rotate(270deg); }
    100% { transform: translateX(0) translateY(0) rotate(360deg); }
}

/* Particle Systems */
.particle-field {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
}

.particle-stream {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.stream-1 {
    top: 20%;
    left: 10%;
    animation: particleFloat 15s linear infinite;
}

.stream-2 {
    top: 40%;
    right: 15%;
    animation: particleFloat 20s linear infinite reverse;
}

.stream-3 {
    top: 60%;
    left: 20%;
    animation: particleFloat 18s linear infinite;
}

.stream-4 {
    top: 80%;
    right: 25%;
    animation: particleFloat 22s linear infinite reverse;
}

.stream-5 {
    top: 30%;
    left: 50%;
    animation: particleFloat 16s linear infinite;
}

@keyframes particleFloat {
    0% { 
        transform: translateY(0) translateX(0) scale(0.5);
        opacity: 0;
    }
    10% { 
        opacity: 1;
    }
    90% { 
        opacity: 1;
    }
    100% { 
        transform: translateY(-100px) translateX(50px) scale(1.5);
        opacity: 0;
    }
}

/* Sacred Geometry Core */
.sacred-geometry {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    width: 600px;
    height: 600px;
}

.geometry-core {
    position: relative;
    width: 100%;
    height: 100%;
    opacity: 0.7;
}

.core-center {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.6) 30%, rgba(138, 43, 226, 0.4) 60%, transparent 100%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 
        0 0 40px rgba(255, 255, 255, 0.7),
        0 0 80px rgba(138, 43, 226, 0.5),
        0 0 120px rgba(75, 0, 130, 0.3);
    animation: coreHeartbeat 6s ease-in-out infinite;
    z-index: 4;
}

@keyframes coreHeartbeat {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 
            0 0 40px rgba(255, 255, 255, 0.9),
            0 0 80px rgba(138, 43, 226, 0.5),
            0 0 120px rgba(75, 0, 130, 0.3);
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.2);
        box-shadow: 
            0 0 60px rgba(255, 255, 255, 1),
            0 0 120px rgba(138, 43, 226, 0.7),
            0 0 180px rgba(75, 0, 130, 0.5);
    }
}

.core-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.sacred-ring {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.sacred-ring.ring-1 {
    width: 120px;
    height: 120px;
    animation: sacredRotate 30s linear infinite;
    border-color: rgba(138, 43, 226, 0.4);
}

.sacred-ring.ring-2 {
    width: 240px;
    height: 240px;
    animation: sacredRotate 45s linear infinite reverse;
    border-color: rgba(75, 0, 130, 0.3);
}

.sacred-ring.ring-3 {
    width: 360px;
    height: 360px;
    animation: sacredRotate 60s linear infinite;
    border-color: rgba(65, 105, 225, 0.2);
}

.sacred-ring.ring-4 {
    width: 480px;
    height: 480px;
    animation: sacredRotate 90s linear infinite reverse;
    border-color: rgba(148, 0, 211, 0.15);
}

@keyframes sacredRotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.core-symbols {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
}

.sacred-symbol {
    position: absolute;
    font-size: 24px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    animation: symbolFloat 20s ease-in-out infinite;
}

.symbol-1 {
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.symbol-2 {
    top: 30%;
    right: 15%;
    animation-delay: -3s;
}

.symbol-3 {
    top: 70%;
    right: 15%;
    animation-delay: -6s;
}

.symbol-4 {
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: -9s;
}

.symbol-5 {
    top: 70%;
    left: 15%;
    animation-delay: -12s;
}

.symbol-6 {
    top: 30%;
    left: 15%;
    animation-delay: -15s;
}

@keyframes symbolFloat {
    0%, 100% { 
        transform: translateY(0) scale(1);
        opacity: 0.7;
    }
    50% { 
        transform: translateY(-20px) scale(1.1);
        opacity: 1;
    }
}

/* Main Content */
.emergence-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 5;
}

.emergence-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8rem;
    padding: 8rem 0;
}

/* Title with Mystical Effects */
.emergence-header {
    position: relative;
    margin-bottom: 4rem;
}

.emergence-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: 300;
    color: var(--primary-white);
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
    text-shadow: 
        0 0 20px rgba(255, 255, 255, 0.5),
        0 0 40px rgba(138, 43, 226, 0.3),
        0 0 60px rgba(75, 0, 130, 0.2);
    opacity: 0;
    transform: translateY(100px);
}

.title-word {
    display: inline-block;
    margin: 0 1rem;
    animation: titleReveal 2s ease-out forwards;
}

.title-word:nth-child(1) { animation-delay: 0.5s; }
.title-word:nth-child(2) { animation-delay: 1s; }

@keyframes titleReveal {
    0% {
        opacity: 0;
        transform: translateY(100px) rotateX(90deg);
        filter: blur(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotateX(0deg);
        filter: blur(0px);
    }
}

.title-runes {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    opacity: 0;
    animation: runesReveal 1s ease-out 2s forwards;
}

.rune {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.6);
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
    animation: runeGlow 4s ease-in-out infinite;
}

.rune:nth-child(1) { animation-delay: 0s; }
.rune:nth-child(2) { animation-delay: 1s; }
.rune:nth-child(3) { animation-delay: 2s; }
.rune:nth-child(4) { animation-delay: 3s; }

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

@keyframes runeGlow {
    0%, 100% { 
        opacity: 0.6;
        text-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
    }
    50% { 
        opacity: 1;
        text-shadow: 0 0 25px rgba(255, 255, 255, 0.8);
    }
}

/* Verses with Cinematic Reveals */
.emergence-verses {
    width: 100%;
    max-width: 1000px;
    margin: 8rem 0;
}

.verse-container {
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

.verse {
    position: relative;
    padding: 4rem 6rem;
    border-radius: 20px;
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.6s ease;
}

.verse-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(138, 43, 226, 0.1) 0%, transparent 70%);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.verse:hover .verse-background {
    opacity: 1;
}

.verse-content {
    position: relative;
    z-index: 2;
}

.verse-line {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-style: italic;
    color: var(--primary-white);
    line-height: 1.4;
    display: block;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    opacity: 0;
    transform: translateX(-50px);
    animation: lineReveal 1s ease-out forwards;
}

.verse-line:nth-child(1) { animation-delay: 0.3s; }
.verse-line:nth-child(2) { animation-delay: 0.6s; }

@keyframes lineReveal {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.verse-aura {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, 
        rgba(138, 43, 226, 0.3) 0%, 
        rgba(75, 0, 130, 0.2) 50%, 
        rgba(65, 105, 225, 0.1) 100%);
    border-radius: 25px;
    opacity: 0;
    filter: blur(15px);
    transition: opacity 0.6s ease;
    z-index: -1;
}

.verse:hover .verse-aura {
    opacity: 1;
}

/* Mystical Epilogue */
.emergence-epilogue {
    position: relative;
    margin-top: 8rem;
}

.epilogue-container {
    position: relative;
    padding: 4rem;
    opacity: 0;
    transform: translateY(50px);
}

.epilogue-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: epilogueGlow 8s ease-in-out infinite;
}

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

.epilogue-text {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: var(--primary-white);
    margin-bottom: 3rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
    position: relative;
    z-index: 2;
}

.epilogue-symbol-container {
    position: relative;
    display: block;
    margin: 0 auto;
    text-align: center;
}

.symbol-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.symbol-ring {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.symbol-ring.ring-1 {
    width: 80px;
    height: 80px;
    animation: ringRotate 20s linear infinite;
}

.symbol-ring.ring-2 {
    width: 120px;
    height: 120px;
    animation: ringRotate 30s linear infinite reverse;
}

.symbol-ring.ring-3 {
    width: 160px;
    height: 160px;
    animation: ringRotate 40s linear infinite;
}

@keyframes ringRotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.epilogue-symbol {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: var(--primary-white);
    font-weight: 300;
    text-shadow: 
        0 0 20px rgba(255, 255, 255, 0.8),
        0 0 40px rgba(138, 43, 226, 0.4),
        0 0 60px rgba(75, 0, 130, 0.2);
    animation: infinityPulse 6s ease-in-out infinite;
    position: static;
    display: inline-block;
    line-height: 1;
    margin: 0 auto;
}

@keyframes infinityPulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 0.8;
    }
    50% { 
        transform: scale(1.1);
        opacity: 1;
    }
}

/* Floating Orbs */
.mystical-orbs {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 4;
    pointer-events: none;
}

.orb {
    position: absolute;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, rgba(138, 43, 226, 0.4) 50%, transparent 100%);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
    animation: orbFloat 25s ease-in-out infinite;
}

.orb-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 20s;
}

.orb-2 {
    top: 25%;
    right: 20%;
    animation-delay: -5s;
    animation-duration: 30s;
}

.orb-3 {
    top: 60%;
    left: 15%;
    animation-delay: -10s;
    animation-duration: 25s;
}

.orb-4 {
    top: 70%;
    right: 10%;
    animation-delay: -15s;
    animation-duration: 35s;
}

.orb-5 {
    top: 40%;
    left: 50%;
    animation-delay: -20s;
    animation-duration: 28s;
}

@keyframes orbFloat {
    0%, 100% { 
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0.6;
    }
    25% { 
        transform: translateY(-30px) translateX(20px) scale(1.2);
        opacity: 1;
    }
    50% { 
        transform: translateY(-10px) translateX(-15px) scale(0.8);
        opacity: 0.8;
    }
    75% { 
        transform: translateY(-40px) translateX(10px) scale(1.1);
        opacity: 0.9;
    }
}

/* ===== FOOTER ===== */
.footer {
    padding: 4rem 0;
    background: var(--secondary-black);
    border-top: 1px solid var(--border-color);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.footer-content p {
    color: var(--accent-gray);
    font-size: 0.9rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    body {
        cursor: auto;
    }
    
    .cursor {
        display: none;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s var(--transition-smooth);
        z-index: 1000;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        margin: 2rem 0;
    }
    
    .nav-menu .nav-link {
        font-size: 2rem;
        font-weight: 300;
    }
    
    .nav-toggle {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        z-index: 1001;
        position: relative;
    }
    
    .nav-toggle span {
        width: 25px;
        height: 2px;
        background: var(--primary-white);
        margin: 3px 0;
        transition: 0.3s;
        transform-origin: center;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    .hero-title {
        font-size: clamp(3rem, 10vw, 5rem);
    }
    
    .hero-description {
        padding: 0 2rem;
    }
    
    .section-container {
        padding: 0 1rem;
    }
    
    .vision-content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .offering-item {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding: 3rem 0;
    }
    
    .transmissions-grid {
        gap: 4rem;
    }
    
    .transmission-item {
        grid-template-columns: 1fr !important;
        gap: 3rem;
        text-align: center;
    }
    
    .transmission-item:nth-child(even) {
        direction: ltr;
    }
    
    .transmission-item:nth-child(even) .transmission-content {
        text-align: center;
    }
    
    .transmission-visual {
        height: 200px;
    }
    
    .transmission-geometry {
        width: 150px;
        height: 150px;
    }
    
    /* Emergence Section Mobile */
    .emergence-section {
        min-height: 150vh;
    }
    
    .sacred-geometry {
        width: 300px;
        height: 300px;
    }
    
    .core-center {
        width: 20px;
        height: 20px;
    }
    
    .sacred-ring.ring-1 {
        width: 60px;
        height: 60px;
    }
    
    .sacred-ring.ring-2 {
        width: 120px;
        height: 120px;
    }
    
    .sacred-ring.ring-3 {
        width: 180px;
        height: 180px;
    }
    
    .sacred-ring.ring-4 {
        width: 240px;
        height: 240px;
    }
    
    .core-symbols {
        width: 200px;
        height: 200px;
    }
    
    .sacred-symbol {
        font-size: 16px;
    }
    
    .emergence-content {
        gap: 4rem;
        padding: 4rem 0;
    }
    
    .emergence-title {
        font-size: clamp(2.5rem, 8vw, 4rem);
    }
    
    .title-runes {
        gap: 1rem;
    }
    
    .rune {
        font-size: 1rem;
    }
    
    .verse {
        padding: 2rem 3rem;
        margin: 0 1rem;
    }
    
    .verse-line {
        font-size: clamp(1.2rem, 5vw, 1.8rem);
    }
    
    .epilogue-glow {
        width: 200px;
        height: 200px;
    }
    
    .epilogue-symbol {
        font-size: 2.5rem;
    }
    
    .symbol-ring.ring-1 {
        width: 50px;
        height: 50px;
    }
    
    .symbol-ring.ring-2 {
        width: 80px;
        height: 80px;
    }
    
    .symbol-ring.ring-3 {
        width: 110px;
        height: 110px;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===== UTILITY CLASSES ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s var(--transition-smooth);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s var(--transition-smooth);
}

.slide-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s var(--transition-smooth);
}

.slide-right.visible {
    opacity: 1;
    transform: translateX(0);
} 