/**
 * Satsangi v2 - Creative Landing Page Styles
 * Modern, artistic, and immersive design
 */

/* ============================================
   CSS Variables
============================================ */
:root {
    /* Colors - Warm Gradient Palette */
    --color-primary: #FF6B35;
    --color-primary-light: #FF8F65;
    --color-primary-dark: #E54E1B;
    --color-secondary: #F7C59F;
    --color-accent: #FFE66D;
    --color-highlight: #FF9F1C;

    /* Dark Theme Base */
    --color-bg: #0A0A0F;
    --color-bg-elevated: #12121A;
    --color-bg-card: rgba(255, 255, 255, 0.03);
    --color-surface: rgba(255, 255, 255, 0.05);

    /* Text */
    --color-text: #FFFFFF;
    --color-text-secondary: rgba(255, 255, 255, 0.7);
    --color-text-muted: rgba(255, 255, 255, 0.4);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--color-primary) 0%, var(--color-highlight) 50%, var(--color-accent) 100%);
    --gradient-bg: radial-gradient(ellipse at 50% 0%, rgba(255, 107, 53, 0.15) 0%, transparent 50%);
    --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.02) 100%);

    /* Typography */
    --font-display: 'DM Serif Display', serif;
    --font-body: 'Space Grotesk', sans-serif;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 5rem;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
    --radius-full: 9999px;

    /* Transitions */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

    /* Shadows */
    --shadow-glow: 0 0 60px rgba(255, 107, 53, 0.3);
    --shadow-card: 0 4px 30px rgba(0, 0, 0, 0.3);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background: var(--color-primary);
    color: white;
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ============================================
   Cursor Glow Effect
============================================ */
.cursor-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
    opacity: 0;
}

body:hover .cursor-glow {
    opacity: 1;
}

/* ============================================
   Animated Background
============================================ */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: var(--color-primary);
    top: -200px;
    right: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: var(--color-highlight);
    bottom: -150px;
    left: -150px;
    animation-delay: -5s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: var(--color-accent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -10s;
    opacity: 0.3;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(50px, -50px) scale(1.1);
    }
    50% {
        transform: translate(-30px, 30px) scale(0.95);
    }
    75% {
        transform: translate(-50px, -30px) scale(1.05);
    }
}

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

/* ============================================
   Container
============================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* ============================================
   Navigation
============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-lg) 0;
    transition: all 0.4s var(--ease-out);
}

.nav.scrolled {
    padding: var(--space-md) 0;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 1.5rem;
    font-weight: 600;
}

.logo-symbol {
    font-size: 1.75rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.nav-link {
    position: relative;
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    transition: color 0.3s ease;
}

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

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

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

.nav-cta {
    position: relative;
    padding: var(--space-sm) var(--space-lg);
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 500;
    overflow: hidden;
    transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.cta-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 8px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-text);
    transition: all 0.3s ease;
}

.nav-toggle.active span:first-child {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:last-child {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ============================================
   Mobile Menu
============================================ */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 999;
    pointer-events: none;
}

.mobile-menu.active {
    pointer-events: auto;
}

.mobile-menu-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.mobile-menu.active .mobile-menu-bg {
    opacity: 1;
}

.mobile-menu-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: var(--space-xl);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s var(--ease-out) 0.1s;
}

.mobile-menu.active .mobile-menu-content {
    opacity: 1;
    transform: translateY(0);
}

.mobile-link {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    transition: color 0.3s ease;
}

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

.mobile-cta {
    margin-top: var(--space-lg);
    padding: var(--space-md) var(--space-2xl);
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    color: var(--color-text) !important;
}

/* ============================================
   Hero Section
============================================ */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: var(--space-3xl);
    padding: calc(80px + var(--space-3xl)) var(--space-lg) var(--space-3xl);
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.hero-content {
    max-width: 600px;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
    font-size: 0.8rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.eyebrow-line {
    width: 40px;
    height: 1px;
    background: var(--color-text-muted);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: var(--space-xl);
}

.title-line {
    display: block;
}

.word {
    display: inline-block;
    margin-right: 0.3em;
    opacity: 0;
    transform: translateY(40px);
    animation: wordReveal 0.8s var(--ease-out) forwards;
}

.word:nth-child(1) { animation-delay: 0.1s; }
.word:nth-child(2) { animation-delay: 0.2s; }
.word:nth-child(3) { animation-delay: 0.3s; }

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

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

.hero-description {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: var(--space-2xl);
    max-width: 480px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

/* Primary Button */
.btn-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    font-size: 1rem;
    font-weight: 500;
    overflow: hidden;
    transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.btn-icon svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.btn-primary:hover .btn-icon svg {
    transform: translateX(4px);
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: shine 3s infinite;
}

/* Ghost Button */
.btn-ghost {
    display: inline-flex;
    align-items: center;
    padding: var(--space-md) var(--space-lg);
    color: var(--color-text-secondary);
    font-size: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    transition: all 0.3s ease;
}

.btn-ghost:hover {
    color: var(--color-text);
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

/* Social Proof */
.hero-proof {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.proof-avatars {
    display: flex;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 600;
    border: 2px solid var(--color-bg);
    margin-left: calc(var(--i, 0) * -12px);
    animation: avatarPop 0.5s var(--ease-out) forwards;
    animation-delay: calc(var(--i) * 0.1s + 0.5s);
    opacity: 0;
    transform: scale(0.5);
}

.avatar:nth-child(1) { background: #FF6B35; }
.avatar:nth-child(2) { background: #FF9F1C; }
.avatar:nth-child(3) { background: #FFE66D; color: #333; }
.avatar:nth-child(4) { background: #F7C59F; color: #333; }
.avatar-more { background: var(--color-surface) !important; }

@keyframes avatarPop {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

.proof-text strong {
    color: var(--color-text);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-container {
    position: relative;
    width: 100%;
    max-width: 400px;
}

/* 3D Phone */
.phone-3d {
    position: relative;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform 0.5s var(--ease-out);
}

.phone-3d:hover {
    transform: perspective(1000px) rotateY(0) rotateX(0);
}

.phone-frame {
    background: #1a1a25;
    border-radius: 40px;
    padding: 12px;
    box-shadow:
        0 50px 100px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

.phone-notch {
    width: 120px;
    height: 30px;
    background: var(--color-bg);
    border-radius: 20px;
    margin: 0 auto 12px;
}

.phone-screen {
    background: var(--color-bg);
    border-radius: 28px;
    overflow: hidden;
    aspect-ratio: 9/16;
    min-height: 400px;
}

.screen-content {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.app-header-v2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-md);
    background: rgba(255, 255, 255, 0.03);
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    background: #FF4444;
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 600;
}

.live-dot {
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.stream-title {
    font-size: 0.85rem;
    font-weight: 500;
}

.viewer-count {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
    color: var(--color-text-secondary);
}

.stream-visual {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(180deg, rgba(255,107,53,0.1) 0%, transparent 100%);
}

.stream-wave {
    width: 4px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 4px;
    animation: wave 1s ease-in-out infinite;
}

.stream-wave:nth-child(1) { animation-delay: 0s; height: 30px; }
.stream-wave:nth-child(2) { animation-delay: 0.1s; height: 50px; }
.stream-wave:nth-child(3) { animation-delay: 0.2s; height: 40px; }

@keyframes wave {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(0.6); }
}

.chat-preview {
    padding: var(--space-md);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.chat-message {
    font-size: 0.75rem;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    animation: chatSlide 0.5s var(--ease-out) forwards;
}

.chat-message.highlight-msg {
    background: rgba(255, 107, 53, 0.2);
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.chat-user {
    color: var(--color-primary);
    font-weight: 500;
    margin-right: 6px;
}

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

/* Floating Cards */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    background: var(--gradient-glass);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    font-size: 0.8rem;
    font-weight: 500;
    animation: floatCard 6s ease-in-out infinite;
    box-shadow: var(--shadow-card);
}

.card-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-sm);
}

.card-icon svg {
    width: 16px;
    height: 16px;
}

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

.card-2 {
    top: 40%;
    right: -25%;
    animation-delay: -2s;
}

.card-3 {
    bottom: 15%;
    left: -15%;
    animation-delay: -4s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(2deg); }
}

/* Scroll Hint */
.scroll-hint {
    position: absolute;
    bottom: var(--space-2xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

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

@keyframes scrollLine {
    0%, 100% { transform: scaleY(1); opacity: 1; }
    50% { transform: scaleY(0.5); opacity: 0.5; }
}

/* ============================================
   Section Styles
============================================ */
.section-intro {
    margin-bottom: var(--space-3xl);
}

.section-intro.center {
    text-align: center;
}

.section-number {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--color-primary);
    letter-spacing: 0.2em;
    margin-bottom: var(--space-md);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: var(--space-md);
}

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

.section-desc {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    max-width: 500px;
}

.section-intro.center .section-desc {
    margin: 0 auto;
}

/* ============================================
   Features Section
============================================ */
.features {
    padding: var(--space-3xl) 0;
}

.features-showcase {
    display: flex;
    flex-direction: column;
    gap: calc(var(--space-3xl) * 1.5);
}

.feature-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.feature-item.reverse {
    direction: rtl;
}

.feature-item.reverse > * {
    direction: ltr;
}

.feature-visual {
    position: relative;
}

.feature-mockup {
    background: var(--gradient-glass);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    min-height: 300px;
}

.mockup-content {
    height: 100%;
}

/* Groups Mockup */
.groups-mockup {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.group-card {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    transition: transform 0.3s ease, background 0.3s ease;
}

.group-card:hover {
    transform: translateX(8px);
    background: rgba(255, 255, 255, 0.08);
}

.group-avatar {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
}

.group-info h4 {
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 2px;
}

.group-info p {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

/* Livestream Mockup */
.livestream-mockup {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.stream-preview {
    text-align: center;
}

.stream-waves {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-bottom: var(--space-lg);
}

.stream-waves span {
    width: 6px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 6px;
    animation: streamWave 0.8s ease-in-out infinite;
}

.stream-waves span:nth-child(1) { animation-delay: 0s; }
.stream-waves span:nth-child(2) { animation-delay: 0.1s; }
.stream-waves span:nth-child(3) { animation-delay: 0.2s; }
.stream-waves span:nth-child(4) { animation-delay: 0.3s; }
.stream-waves span:nth-child(5) { animation-delay: 0.4s; }

@keyframes streamWave {
    0%, 100% { transform: scaleY(0.5); }
    50% { transform: scaleY(1); }
}

.live-badge {
    display: inline-block;
    padding: 4px 12px;
    background: #FF4444;
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.stream-info h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.stream-info p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* Messaging Mockup */
.messaging-mockup {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.message-bubble {
    max-width: 80%;
    padding: var(--space-md);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
}

.message-bubble.received {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md) var(--radius-md) var(--radius-md) 4px;
}

.message-bubble.sent {
    background: var(--color-primary);
    margin-left: auto;
    border-radius: var(--radius-md) var(--radius-md) 4px var(--radius-md);
}

.message-bubble.scripture {
    background: rgba(255, 159, 28, 0.1);
    border-left: 3px solid var(--color-highlight);
    font-style: italic;
}

.message-bubble .time {
    display: block;
    font-size: 0.7rem;
    color: var(--color-text-muted);
    margin-top: 4px;
}

.scripture-ref {
    display: block;
    font-size: 0.75rem;
    color: var(--color-highlight);
    margin-top: 8px;
    font-style: normal;
}

/* Daily Feed Mockup (Hero Phone) */
.greeting-text {
    font-size: 0.9rem;
    font-weight: 500;
}

.date-text {
    font-size: 0.75rem;
    color: var(--color-highlight);
}

.daily-feed-preview {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    padding: var(--space-md);
    overflow: hidden;
}

.feed-card {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    animation: feedSlide 0.5s var(--ease-out) forwards;
}

.feed-card:nth-child(1) { animation-delay: 0.1s; }
.feed-card:nth-child(2) { animation-delay: 0.2s; }
.feed-card:nth-child(3) { animation-delay: 0.3s; }

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

.card-emoji {
    font-size: 1.25rem;
    line-height: 1;
}

.card-content {
    flex: 1;
    min-width: 0;
}

.card-label {
    display: block;
    font-size: 0.65rem;
    color: var(--color-primary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2px;
}

.card-content p {
    font-size: 0.75rem;
    color: var(--color-text-secondary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.live-stream-bar {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    background: rgba(255, 68, 68, 0.1);
    border-top: 1px solid rgba(255, 68, 68, 0.2);
}

.live-stream-bar .live-indicator {
    padding: 2px 8px;
    font-size: 0.6rem;
}

.live-stream-bar .stream-title {
    flex: 1;
    font-size: 0.75rem;
}

.live-stream-bar .viewer-count {
    font-size: 0.7rem;
    color: var(--color-text-muted);
}

/* Daily Inspiration Mockup */
.daily-mockup {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.daily-card {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-md);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    transition: transform 0.3s ease, background 0.3s ease;
}

.daily-card:hover {
    transform: translateX(8px);
    background: rgba(255, 255, 255, 0.08);
}

.daily-icon {
    font-size: 1.5rem;
    line-height: 1;
}

.daily-info h5 {
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 4px;
    color: var(--color-text);
}

.daily-info p {
    font-size: 0.8rem;
    color: var(--color-text-secondary);
    line-height: 1.4;
}

.daily-card.wisdom .daily-info h5 { color: var(--color-accent); }
.daily-card.mantra .daily-info h5 { color: var(--color-primary); }
.daily-card.horoscope .daily-info h5 { color: var(--color-highlight); }

/* Wellness Mockup */
.wellness-mockup {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.wellness-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    width: 100%;
}

.wellness-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-lg);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    cursor: pointer;
}

.wellness-tile:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.1);
}

.tile-icon {
    font-size: 2rem;
}

.wellness-tile span:last-child {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text-secondary);
}

.wellness-tile.yoga:hover { background: rgba(255, 107, 53, 0.2); }
.wellness-tile.meditation:hover { background: rgba(255, 159, 28, 0.2); }
.wellness-tile.ayurveda:hover { background: rgba(76, 175, 80, 0.2); }
.wellness-tile.fitness:hover { background: rgba(255, 230, 109, 0.2); }

/* Culture Mockup */
.culture-mockup {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.culture-carousel {
    flex: 1;
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.culture-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.culture-slide.active {
    opacity: 1;
}

.slide-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.slide-image.temple {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.3), rgba(255, 159, 28, 0.3)),
                linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.8) 100%);
    background-color: var(--color-bg-elevated);
}

.slide-image.festival {
    background: linear-gradient(135deg, rgba(255, 230, 109, 0.3), rgba(255, 107, 53, 0.3)),
                linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.8) 100%);
    background-color: var(--color-bg-elevated);
}

.slide-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-md);
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

.slide-category {
    display: inline-block;
    padding: 2px 8px;
    background: var(--color-primary);
    border-radius: var(--radius-sm);
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-xs);
}

.slide-info h5 {
    font-size: 1rem;
    font-weight: 500;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md) 0 0;
}

.dot {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--color-primary);
    width: 24px;
    border-radius: 4px;
}

/* Feature Content */
.feature-content {
    max-width: 450px;
}

.feature-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-lg);
}

.feature-icon svg {
    width: 28px;
    height: 28px;
}

.feature-content h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    margin-bottom: var(--space-md);
}

.feature-content p {
    color: var(--color-text-secondary);
    margin-bottom: var(--space-lg);
    line-height: 1.8;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--color-text-secondary);
    font-size: 0.9rem;
}

.feature-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--color-primary);
    border-radius: 50%;
}

/* ============================================
   Journey Section
============================================ */
.journey {
    padding: var(--space-3xl) 0;
    background: var(--gradient-bg);
}

.journey-path {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: var(--space-3xl);
    max-width: 600px;
    margin: 0 auto;
    padding-left: 60px;
}

.path-line {
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(255, 255, 255, 0.1);
}

.path-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: var(--gradient-primary);
    transition: height 0.3s ease;
}

.journey-step {
    position: relative;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.6s var(--ease-out);
}

.journey-step.visible {
    opacity: 1;
    transform: translateX(0);
}

.step-marker {
    position: absolute;
    left: -60px;
    top: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-number {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 1;
    transition: all 0.3s ease;
}

.journey-step.visible .step-number {
    background: var(--gradient-primary);
    border-color: transparent;
}

.marker-ring {
    position: absolute;
    width: 48px;
    height: 48px;
    border: 1px solid var(--color-primary);
    border-radius: 50%;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.journey-step.visible .marker-ring {
    opacity: 0.5;
    transform: scale(1);
    animation: ringPulse 2s ease-in-out infinite;
}

@keyframes ringPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0; }
}

.step-content h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
}

.step-content p {
    color: var(--color-text-secondary);
    line-height: 1.7;
}

/* ============================================
   Community Section
============================================ */
.community {
    padding: var(--space-3xl) 0;
}

.community-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.community-content .section-number {
    display: block;
}

.community-desc {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: var(--space-xl);
}

.tradition-pills {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.pill {
    padding: var(--space-sm) var(--space-md);
    background: var(--gradient-glass);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.pill:hover {
    background: rgba(255, 107, 53, 0.2);
    border-color: var(--color-primary);
}

/* Mandala */
.community-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mandala-container {
    position: relative;
    width: 300px;
    height: 300px;
}

.mandala {
    position: relative;
    width: 100%;
    height: 100%;
}

.mandala-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 50%;
    animation: mandalaRotate 30s linear infinite;
}

.ring-1 {
    width: 100%;
    height: 100%;
    animation-direction: normal;
}

.ring-2 {
    width: 70%;
    height: 70%;
    border-color: rgba(255, 159, 28, 0.3);
    animation-direction: reverse;
    animation-duration: 25s;
}

.ring-3 {
    width: 40%;
    height: 40%;
    border-color: rgba(255, 230, 109, 0.4);
    animation-duration: 20s;
}

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

.mandala-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-glow);
}

.om-symbol {
    font-size: 2.5rem;
    color: white;
}

/* ============================================
   Testimonial Section
============================================ */
.testimonial {
    padding: var(--space-3xl) 0;
    background: var(--gradient-bg);
}

.testimonial-card-v2 {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: var(--space-3xl);
    background: var(--gradient-glass);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
}

.quote-mark {
    font-family: var(--font-display);
    font-size: 6rem;
    line-height: 1;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.5;
}

.testimonial-card-v2 blockquote {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-xl);
}

.testimonial-author-v2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
}

.author-avatar-v2 {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.author-details {
    text-align: left;
}

.author-details strong {
    display: block;
    font-size: 1rem;
}

.author-details span {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* ============================================
   CTA Section
============================================ */
.cta-section {
    position: relative;
    padding: calc(var(--space-3xl) * 2) 0;
    overflow: hidden;
}

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

.cta-gradient {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.2) 0%, transparent 50%);
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: var(--space-md);
}

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

.cta-desc {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-2xl);
}

.cta-form {
    margin-bottom: var(--space-2xl);
}

.form-wrapper {
    display: flex;
    gap: var(--space-sm);
    max-width: 450px;
    margin: 0 auto var(--space-md);
    padding: 6px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
}

.form-wrapper input {
    flex: 1;
    padding: var(--space-md) var(--space-lg);
    background: transparent;
    border: none;
    color: var(--color-text);
    font-size: 1rem;
    outline: none;
}

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

.form-submit {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-text);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.form-submit:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-glow);
}

.form-submit svg {
    width: 18px;
    height: 18px;
}

.form-privacy {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.app-coming {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.platform-icons {
    display: flex;
    gap: var(--space-sm);
}

.platform {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    transition: background 0.3s ease;
}

.platform:hover {
    background: rgba(255, 255, 255, 0.1);
}

.platform svg {
    width: 20px;
    height: 20px;
}

/* ============================================
   Footer
============================================ */
.footer {
    padding: var(--space-3xl) 0 var(--space-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-main {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--space-3xl);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.footer-brand p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.footer-nav {
    display: flex;
    gap: var(--space-3xl);
}

.footer-col h4 {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text-muted);
    margin-bottom: var(--space-md);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-col a {
    display: block;
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-sm);
    transition: color 0.3s ease;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.social-links {
    display: flex;
    gap: var(--space-md);
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--color-text-secondary);
    transition: all 0.3s ease;
}

.social-links a:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.social-links svg {
    width: 18px;
    height: 18px;
}

/* ============================================
   Modal
============================================ */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.active {
    pointer-events: auto;
    opacity: 1;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.modal-content-v2 {
    position: relative;
    max-width: 400px;
    padding: var(--space-2xl);
    background: var(--color-bg-elevated);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.3s var(--ease-out);
}

.modal.active .modal-content-v2 {
    transform: translateY(0);
}

.modal-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--space-lg);
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-icon svg {
    width: 32px;
    height: 32px;
}

.modal-content-v2 h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
}

.modal-content-v2 p {
    color: var(--color-text-secondary);
    margin-bottom: var(--space-xl);
}

.modal-close-btn {
    padding: var(--space-md) var(--space-xl);
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-text);
    transition: transform 0.3s ease;
}

.modal-close-btn:hover {
    transform: scale(1.05);
}

/* ============================================
   Responsive Design
============================================ */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-2xl);
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-eyebrow {
        justify-content: center;
    }

    .hero-description {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-proof {
        justify-content: center;
    }

    .hero-visual {
        order: -1;
    }

    .visual-container {
        max-width: 300px;
    }

    .floating-card {
        display: none;
    }

    .scroll-hint {
        display: none;
    }

    .feature-item,
    .feature-item.reverse {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .feature-item.reverse {
        direction: ltr;
    }

    .community-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
        text-align: center;
    }

    .tradition-pills {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn-primary,
    .btn-ghost {
        width: 100%;
        justify-content: center;
    }

    .footer-main {
        flex-direction: column;
        gap: var(--space-2xl);
    }

    .footer-nav {
        flex-wrap: wrap;
        gap: var(--space-xl);
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }

    .journey-path {
        padding-left: 50px;
    }

    .step-marker {
        left: -50px;
    }

    .path-line {
        left: 18px;
    }
}

@media (max-width: 480px) {
    :root {
        font-size: 14px;
    }

    .form-wrapper {
        flex-direction: column;
        border-radius: var(--radius-lg);
        padding: var(--space-sm);
    }

    .form-wrapper input {
        text-align: center;
    }

    .form-submit {
        width: 100%;
        justify-content: center;
    }

    .mandala-container {
        width: 200px;
        height: 200px;
    }
}

/* ============================================
   Utility Classes
============================================ */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
