/* ============================================
   HOME PAGE — Ektai.org
   ============================================ */

/* ---------- Hero Section ---------- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 0 2rem;
    padding-top: var(--nav-height);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(155, 93, 229, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(46, 196, 182, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(244, 162, 97, 0.06) 0%, transparent 50%),
        var(--gradient-hero);
    z-index: -1;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    animation: fadeIn 1.2s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius-pill);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 2rem;
    border: 1px solid rgba(244, 162, 97, 0.3);
    background: rgba(244, 162, 97, 0.08);
    color: var(--gold);
    animation: slideUp 1s ease-out 0.2s both;
}

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

.hero h1 {
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    animation: slideUp 1s ease-out 0.4s both;
}

.hero h1 .line {
    display: block;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: var(--text-secondary);
    max-width: 680px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
    animation: slideUp 1s ease-out 0.6s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: slideUp 1s ease-out 0.8s both;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: slideUp 1s ease-out 1.2s both;
}

.hero-scroll-indicator span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-muted);
}

.scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid var(--border-glass);
    border-radius: 12px;
    position: relative;
}

.scroll-mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 8px;
    background: var(--gold);
    border-radius: 2px;
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
    0% {
        opacity: 1;
        top: 8px;
    }

    100% {
        opacity: 0;
        top: 22px;
    }
}

/* Floating orbs in hero */
.hero-orbs {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.hero-orb:nth-child(1) {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--violet-glow), transparent 70%);
    top: 10%;
    left: -5%;
    animation-delay: 0s;
}

.hero-orb:nth-child(2) {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--teal-glow), transparent 70%);
    top: 60%;
    right: -3%;
    animation-delay: -3s;
}

.hero-orb:nth-child(3) {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, var(--gold-glow), transparent 70%);
    bottom: 5%;
    left: 30%;
    animation-delay: -5s;
}

/* ---------- Story Section ---------- */
.story-section {
    position: relative;
}

.story-section .story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-quote {
    font-family: var(--font-heading);
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    font-weight: 600;
    line-height: 1.5;
    color: var(--text-primary);
    position: relative;
    padding-left: 2rem;
    border-left: 3px solid;
    border-image: var(--gradient-gold) 1;
}

.story-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.story-highlights .highlight-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.2rem;
    border-radius: var(--radius-md);
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    transition: all var(--transition-smooth);
}

.story-highlights .highlight-item:hover {
    border-color: var(--violet);
    background: rgba(155, 93, 229, 0.05);
    transform: translateX(8px);
}

.highlight-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.highlight-item h4 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

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

/* ---------- Timeline ---------- */
.timeline-visual {
    margin-top: 4rem;
    position: relative;
    padding: 2rem 0;
}

.timeline-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, var(--violet), var(--teal), var(--gold));
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
    text-align: right;
    padding-right: calc(50% + 2rem);
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
    text-align: left;
    padding-left: calc(50% + 2rem);
}

.timeline-item .timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--bg-void);
    border: 3px solid var(--violet);
    z-index: 1;
}

.timeline-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

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

/* ---------- Philosophy/Ethos ---------- */
.ethos-section {
    background: linear-gradient(to bottom, var(--bg-void), var(--bg-deep), var(--bg-void));
}

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

.ethos-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.ethos-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    opacity: 0;
    transition: opacity var(--transition-smooth);
}

.ethos-card:nth-child(1)::after {
    background: var(--gradient-gold);
}

.ethos-card:nth-child(2)::after {
    background: var(--gradient-teal);
}

.ethos-card:nth-child(3)::after {
    background: var(--gradient-violet);
}

.ethos-card:nth-child(4)::after {
    background: linear-gradient(135deg, var(--coral), var(--rose));
}

.ethos-card:nth-child(5)::after {
    background: var(--gradient-aurora);
}

.ethos-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow-card);
}

.ethos-card:hover::after {
    opacity: 1;
}

.ethos-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    opacity: 0.1;
    margin-bottom: 0.5rem;
}

.ethos-card .ethos-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.ethos-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.ethos-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ---------- Programs Preview ---------- */
.programs-preview .programs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.program-card {
    padding: 2.5rem;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-xl);
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.program-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0;
    transition: opacity var(--transition-smooth);
    pointer-events: none;
}

.program-card:nth-child(1)::before {
    background: var(--gold);
}

.program-card:nth-child(2)::before {
    background: var(--teal);
}

.program-card:nth-child(3)::before {
    background: var(--violet);
}

.program-card:nth-child(4)::before {
    background: var(--coral);
}

.program-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-elevated);
}

.program-card:hover::before {
    opacity: 0.08;
}

.program-card .program-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.program-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

.program-card p {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.program-card .program-features {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.program-card .program-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.88rem;
    color: var(--text-secondary);
}

.program-card .program-features li .check {
    color: var(--teal);
    font-weight: 700;
}

/* ---------- Ripple System ---------- */
.ripple-section {
    background: linear-gradient(to bottom, var(--bg-void), var(--bg-deep));
    position: relative;
}

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

.ripple-tier {
    text-align: center;
    padding: 3rem 2rem;
    border-radius: var(--radius-xl);
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    transition: all var(--transition-smooth);
    position: relative;
}

.ripple-tier:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-elevated);
}

.ripple-tier.featured {
    border-color: var(--gold);
    background: rgba(244, 162, 97, 0.05);
}

.ripple-tier.featured::before {
    content: 'MOST POPULAR';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.3rem 1rem;
    background: var(--gradient-gold);
    border-radius: var(--radius-pill);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #1a0a0a;
}

.ripple-amount {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.ripple-period {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.ripple-impact {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    padding: 0 1rem;
}

.ripple-cta {
    margin-top: auto;
}

/* ---------- Testimonials ---------- */
.testimonials-section {
    position: relative;
}

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

.testimonial-card {
    padding: 2.5rem;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-xl);
    transition: all var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-card);
}

.testimonial-quote {
    font-size: 2.5rem;
    line-height: 1;
    margin-bottom: 1rem;
    opacity: 0.2;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    flex: 1;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid var(--border-glass);
    padding-top: 1.5rem;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-cosmic);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: white;
    flex-shrink: 0;
}

.testimonial-name {
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
}

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

/* ---------- Transparency ---------- */
.transparency-section {
    background: linear-gradient(to bottom, var(--bg-deep), var(--bg-void));
}

.transparency-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.transparency-card {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-xl);
    transition: all var(--transition-smooth);
}

.transparency-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card);
    border-color: rgba(255, 255, 255, 0.1);
}

.transparency-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

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

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

/* ---------- Get Involved CTA ---------- */
.involved-section {
    position: relative;
    overflow: hidden;
}

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

.involved-card {
    padding: 2.5rem 1.5rem;
    text-align: center;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-xl);
    transition: all var(--transition-smooth);
}

.involved-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card);
}

.involved-card .involved-icon {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
}

.involved-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
}

.involved-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

/* ---------- Manifesto Banner ---------- */
.manifesto-banner {
    background: var(--bg-deep);
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.manifesto-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, var(--violet-glow), transparent 60%),
        radial-gradient(ellipse at 70% 50%, var(--teal-glow), transparent 60%);
    opacity: 0.3;
}

.manifesto-text {
    font-family: var(--font-heading);
    font-size: clamp(1.3rem, 3vw, 2rem);
    font-weight: 600;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto 2.5rem;
    position: relative;
}

/* ---------- News Section ---------- */
.news-section .news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.news-card {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-smooth);
}

.news-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

.news-card .news-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.news-card .news-image .news-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.news-card .news-image:nth-child(1) .news-img-placeholder {
    background: linear-gradient(135deg, rgba(155, 93, 229, 0.3), rgba(46, 196, 182, 0.2));
}

.news-card .news-body {
    padding: 1.5rem;
}

.news-card .news-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(155, 93, 229, 0.15);
    border-radius: var(--radius-pill);
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--violet);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.news-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.news-card .news-date {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ---------- Responsive Overrides ---------- */
@media (max-width: 1024px) {
    .ethos-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

@media (max-width: 768px) {
    .hero {
        min-height: 90vh;
        padding: 6rem 1.5rem 3rem;
    }

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

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

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

    .programs-preview .programs-grid {
        grid-template-columns: 1fr;
    }

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

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

    .transparency-features {
        grid-template-columns: 1fr;
    }

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

    .news-section .news-grid {
        grid-template-columns: 1fr;
    }

    .timeline-visual::before {
        left: 20px;
    }

    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        flex-direction: row;
        text-align: left;
        padding-left: 50px;
        padding-right: 0;
    }

    .timeline-item .timeline-dot {
        left: 20px;
    }

    .hero-scroll-indicator {
        display: none;
    }
}

@media (max-width: 480px) {
    .ethos-grid {
        grid-template-columns: 1fr;
    }
}