:root {
    --primary-maroon: #8B0000;
    --saffron: #FF9933;
    --gold: #FFD700;
    --text-primary: #e8e8e8;
    --text-secondary: #b8b8b8;

    /* Responsive sizing variables */
    --sun-size: clamp(280px, 35vw, 500px);
    --moon-size: calc(var(--sun-size) * 0.997);
    --eclipse-offset: 50px;
    --eclipse-center-top: calc(var(--eclipse-offset) - (var(--sun-size) / 2));
}

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

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    background: #000000;
    color: var(--text-primary);
    position: relative;
    min-height: 100vh;
}

html {
    scroll-behavior: smooth;
    max-width: 100%;
    overflow-x: hidden;
}

/* ==================== NIGHT SKY ==================== */
.night-sky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: radial-gradient(ellipse at top, #0a1128 0%, #000000 100%);
}

.stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    display: block;
    will-change: transform;
}

.stars-layer1 {
    animation: twinkle1 5s ease-in-out infinite;
}

.stars-layer2 {
    animation: twinkle2 7s ease-in-out infinite 1s;
}

.stars-layer3 {
    animation: twinkle3 9s ease-in-out infinite 2s;
}

@keyframes twinkle1 {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

@keyframes twinkle2 {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 0.9; }
}

@keyframes twinkle3 {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.7; }
}

/* ==================== ECLIPSE ANIMATION ==================== */
.eclipse-container {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: var(--sun-size);
    height: calc(var(--sun-size) * 0.6);
    z-index: 1;
    pointer-events: none;
    overflow: visible;
}

.sun {
    position: absolute;
    left: 50%;
    top: var(--eclipse-center-top);
    transform: translateX(-50%);
    width: var(--sun-size);
    height: var(--sun-size);
    border-radius: 50%;
    background: radial-gradient(circle at 50% 35%,
    #fffae6 0%,
    #ffe680 15%,
    #ffdb4d 30%,
    #ffa500 60%,
    #ff8c00 80%,
    #ff6b00 100%
    );
    box-shadow:
            0 0 60px rgba(255, 220, 100, 0.9),
            0 0 120px rgba(255, 180, 50, 0.6),
            inset 0 0 40px rgba(255, 240, 200, 0.3);
    z-index: 4;
    animation: sunPulse 8s ease-in-out infinite;
}

@keyframes sunPulse {
    0%, 100% {
        box-shadow:
                0 0 60px rgba(255, 220, 100, 0.9),
                0 0 120px rgba(255, 180, 50, 0.6),
                inset 0 0 40px rgba(255, 240, 200, 0.3);
    }
    50% {
        box-shadow:
                0 0 80px rgba(255, 220, 100, 1),
                0 0 160px rgba(255, 180, 50, 0.8),
                inset 0 0 50px rgba(255, 240, 200, 0.4);
    }
}

.moon {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: var(--eclipse-center-top);
    width: var(--moon-size);
    height: var(--moon-size);
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #1a1a1a 0%, #000000 70%);
    z-index: 60;
    box-shadow: inset -10px -10px 30px rgba(0, 0, 0, 0.8);
}

.corona {
    position: absolute;
    left: 50%;
    top: var(--eclipse-center-top);
    transform: translateX(-50%);
    width: calc(var(--sun-size) * 1.8);
    height: calc(var(--sun-size) * 1.8);
    border-radius: 50%;
    background: radial-gradient(
            circle at 50% 50%,
            rgba(255,240,200,0.2) 0%,
            rgba(255,200,120,0.1) 40%,
            rgba(255,180,80,0.05) 60%,
            transparent 80%
    );
    filter: blur(calc(var(--sun-size) * 0.04));
    z-index: 3;
    animation: coronaPulse 6s ease-in-out infinite;
}

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

.eclipse-glow {
    position: absolute;
    left: 50%;
    top: var(--eclipse-center-top);
    transform: translateX(-50%);
    width: calc(var(--sun-size) * 2.2);
    height: calc(var(--sun-size) * 2.2);
    border-radius: 50%;
    background: radial-gradient(
            circle,
            rgba(255,240,200,0.08) 0%,
            rgba(255,200,120,0.04) 50%,
            transparent 70%
    );
    filter: blur(calc(var(--sun-size) * 0.08));
    z-index: 2;
    animation: glowPulse 10s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        transform: translateX(-50%) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translateX(-50%) scale(1.15);
        opacity: 0.9;
    }
}

.solar-prominence {
    position: absolute;
    left: 50%;
    top: var(--eclipse-center-top);
    width: calc(var(--sun-size) * 1.3);
    height: calc(var(--sun-size) * 1.3);
    border-radius: 50%;
    z-index: 5;
    pointer-events: none;
}

.prominence-1 {
    background: radial-gradient(
            ellipse 80% 30% at 50% 0%,
            rgba(255, 150, 50, 0.6) 0%,
            rgba(255, 100, 30, 0.3) 50%,
            transparent 100%
    );
    transform: translateX(-50%) rotate(20deg);
    animation: prominence1 12s ease-in-out infinite;
    filter: blur(3px);
}

.prominence-2 {
    background: radial-gradient(
            ellipse 70% 25% at 30% 10%,
            rgba(255, 140, 40, 0.5) 0%,
            rgba(255, 90, 20, 0.25) 50%,
            transparent 100%
    );
    transform: translateX(-50%) rotate(-35deg);
    animation: prominence2 15s ease-in-out infinite 2s;
    filter: blur(4px);
}

.prominence-3 {
    background: radial-gradient(
            ellipse 60% 20% at 70% 15%,
            rgba(255, 130, 35, 0.55) 0%,
            rgba(255, 85, 25, 0.28) 50%,
            transparent 100%
    );
    transform: translateX(-50%) rotate(45deg);
    animation: prominence3 18s ease-in-out infinite 4s;
    filter: blur(3.5px);
}

@keyframes prominence1 {
    0%, 100% {
        transform: translateX(-50%) rotate(20deg) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translateX(-50%) rotate(25deg) scale(1.2);
        opacity: 0.9;
    }
}

@keyframes prominence2 {
    0%, 100% {
        transform: translateX(-50%) rotate(-35deg) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translateX(-50%) rotate(-30deg) scale(1.15);
        opacity: 0.8;
    }
}

@keyframes prominence3 {
    0%, 100% {
        transform: translateX(-50%) rotate(45deg) scale(1);
        opacity: 0.55;
    }
    50% {
        transform: translateX(-50%) rotate(50deg) scale(1.18);
        opacity: 0.85;
    }
}

/* ==================== MAIN CONTENT ==================== */
.landing-container {
    position: relative;
    z-index: 10;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.landing-content {
    max-width: 1000px;
    width: 100%;
    text-align: center;
    animation: fadeInUp 1.2s ease-out forwards;
    opacity: 0;
    animation-delay: 0.3s;
    margin: clamp(6rem, 15vw, 12rem) auto 2rem;
    padding: 2rem 1rem;
}

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

.landing-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--gold) 0%, var(--saffron) 50%, var(--primary-maroon) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    white-space: normal;
    overflow-wrap: anywhere;
}

.name-highlight {
    display: inline-block;
}

.landing-subtitle {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 1.5rem auto 2.5rem;
    color: var(--text-secondary);
    font-size: clamp(0.95rem, 2vw, 1.2rem);
    line-height: 1.6;
}

.subtitle-line {
    white-space: nowrap;
}

.separator {
    color: var(--gold);
    opacity: 0.7;
}

.intro-snippet {
    width: 100%;
    max-width: 1100px;
    margin: 2rem auto 3rem;
    padding: 2rem;
    background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.06);
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 2rem;
    align-items: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    backdrop-filter: blur(10px);
    position: relative;
}

.intro-snippet::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(180deg, var(--saffron), var(--gold));
    border-radius: 20px 0 0 20px;
}

.landing-intro {
    padding: 0 0.5rem 0 1.5rem;
}

.intro-lead {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 700;
    letter-spacing: -0.01em;
    margin: 0 0 1rem 0;
    line-height: 1.3;
    background: linear-gradient(90deg, #fff, #ffd680 60%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.intro-rich {
    font-size: clamp(0.95rem, 1.5vw, 1.05rem);
    color: var(--text-secondary);
    margin: 0 0 1rem 0;
    line-height: 1.7;
}

.intro-philosophy {
    font-size: 0.95rem;
    color: rgba(232,232,232,0.85);
    font-style: italic;
    margin: 0 0 1.5rem 0;
    line-height: 1.6;
}

.accent {
    color: var(--gold);
    font-weight: 500;
}

.cta-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.landing-intro-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}

.cta-button {
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
}

.cta-primary {
    background: linear-gradient(135deg, var(--gold), var(--saffron));
    color: #1b1200;
    border: none;
}

.cta-secondary {
    background: transparent;
    color: var(--gold);
    border: 2px solid rgba(255,215,0,0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

.cta-primary:hover {
    background: linear-gradient(135deg, #ffd700, #ff8c00);
}

.cta-secondary:hover {
    border-color: var(--gold);
    background: rgba(255,215,0,0.1);
}

.hero-preview {
    width: 100%;
    height: 280px;
    border-radius: 16px;
    background:
            radial-gradient(circle at 30% 20%, rgba(255,200,120,0.08), transparent 50%),
            radial-gradient(circle at 70% 80%, rgba(255,150,50,0.06), transparent 50%),
            linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.00));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 1px solid rgba(255,215,0,0.1);
}

.scroll-down {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--gold);
    opacity: 0.85;
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

.scroll-down span {
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.arrow-down {
    width: 24px;
    height: 24px;
    border-right: 2px solid var(--gold);
    border-bottom: 2px solid var(--gold);
    transform: rotate(45deg);
    animation: arrowBounce 2s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes arrowBounce {
    0%, 100% { transform: rotate(45deg) translateY(0); }
    50% { transform: rotate(45deg) translateY(8px); }
}

.scroll-down:hover {
    opacity: 1;
}

/* ==================== ABOUT ME SECTION ==================== */
.about-me-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
    overflow: visible;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--gold);
    text-align: center;
    margin: 4rem 0 3rem;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: clamp(0.95rem, 1.5vw, 1.05rem);
}

.intro-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.intro-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.15);
    transition: all 0.3s ease;
}

.intro-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 215, 0, 0.3);
}

.intro-card h3 {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: clamp(1.3rem, 2vw, 1.6rem);
    font-family: 'Playfair Display', serif;
}

.intro-card p {
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.intro-card p:last-child {
    margin-bottom: 0;
}

.values-section, .passions-section, .seeking-section, .not-seeking-section {
    margin: 5rem 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.value-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.15);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 215, 0, 0.3);
}

.value-card h4 {
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-family: 'Playfair Display', serif;
    text-align: center;
}

.value-card ul {
    list-style: none;
    padding: 0;
}

.value-card li {
    position: relative;
    padding-left: 1.8rem;
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.value-card li:before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 0.9rem;
}

.passion-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.passion-item {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 1.75rem;
    border-radius: 14px;
    border: 1px solid rgba(255, 215, 0, 0.15);
    transition: all 0.3s ease;
}

.passion-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 215, 0, 0.25);
}

.passion-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.passion-item i {
    font-size: 1.75rem;
    color: var(--gold);
    flex-shrink: 0;
}

.passion-content h4 {
    margin: 0;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
}

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

.interests-note {
    text-align: center;
    font-style: italic;
    color: var(--text-secondary);
    margin-top: 2.5rem;
    font-size: 1rem;
    line-height: 1.7;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.life-philosophy {
    max-width: 900px;
    margin: 5rem auto;
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(255, 215, 0, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.life-philosophy blockquote {
    font-style: italic;
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    line-height: 1.6;
    color: var(--gold);
    position: relative;
    padding: 0 2rem;
    margin: 0;
}

.life-philosophy blockquote:before,
.life-philosophy blockquote:after {
    content: '"';
    font-size: 4rem;
    color: rgba(255, 215, 0, 0.3);
    position: absolute;
    font-family: 'Playfair Display', serif;
}

.life-philosophy blockquote:before {
    top: -1.5rem;
    left: 0;
}

.life-philosophy blockquote:after {
    bottom: -2.5rem;
    right: 0;
}

.not-seeking-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.not-seeking-item {
    background: rgba(0, 128, 0, 0.08);
    border: 1px solid rgba(0, 128, 0, 0.25);
    border-radius: 14px;
    padding: 1.75rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: all 0.3s ease;
}

.not-seeking-item:hover {
    transform: translateY(-3px);
    background: rgba(0, 128, 0, 0.12);
    border-color: rgba(0, 128, 0, 0.4);
}

.not-seeking-item i {
    color: #28a745;
    margin-top: 0.25rem;
    flex-shrink: 0;
    font-size: 1.1rem;
}

.not-seeking-item p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

.summary-section {
    margin: 5rem 0;
}

.summary-card {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-top: 4px solid var(--gold);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.summary-card h3 {
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    margin: 0 0 2rem 0;
    text-align: center;
}

.summary-points {
    list-style: none;
    padding: 0;
    margin: 0;
}

.summary-points li {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
    position: relative;
    color: var(--text-secondary);
    line-height: 1.8;
}

.summary-points li:before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 1rem;
}

.summary-points li strong {
    color: var(--gold);
    margin-right: 0.5rem;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    :root {
        --eclipse-offset: 45px;
    }

    .intro-snippet {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }

    .hero-preview {
        height: 200px;
    }

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

@media (max-width: 768px) {
    :root {
        --eclipse-offset: 40px;
    }

    .landing-content {
        margin: 5rem auto 2rem;
        overflow: visible;
        position: relative;
        z-index: 2;
    }

    .intro-snippet {
        padding: 1.5rem;
    }

    .landing-intro {
        padding: 0 0.5rem;
    }

    .cta-container {
        align-items: center;
        margin-top: 1.5rem;
    }
    
    .landing-intro-ctas {
        width: 100%;
        flex-wrap: wrap;
        justify-content: center;
    }

    /* Make grids horizontally scrollable on mobile with hidden scrollbar */
    .intro-grid,
    .values-grid,
    .passion-grid,
    .not-seeking-grid {
        display: flex;
        overflow-x: auto;
        overflow-y: visible;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 1rem 0 2rem 0;
        margin: 0 -1rem;
        scroll-padding: 0 1rem;
        grid-template-columns: unset;
        scrollbar-width: none;
        -ms-overflow-style: none;
        position: relative;
        width: 100vw;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
        padding-left: 1rem;
        padding-right: 1rem;
        transform: translateZ(0); /* Force hardware acceleration */
        will-change: transform; /* Optimize for animations */
        contain: content; /* Improve performance */
    }
    
    /* Hide scrollbar for WebKit browsers */
    .intro-grid::-webkit-scrollbar,
    .values-grid::-webkit-scrollbar,
    .passion-grid::-webkit-scrollbar,
    .not-seeking-grid::-webkit-scrollbar {
        display: none;
    }
    
    /* Add gradient fade effect to indicate more content */
    .intro-grid,
    .values-grid,
    .passion-grid,
    .not-seeking-grid {
        position: relative;
    }
    
    /* Scroll indicator styles */
    .intro-grid.scrollable::after,
    .values-grid.scrollable::after,
    .passion-grid.scrollable::after,
    .not-seeking-grid.scrollable::after {
        content: '';
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        width: 60px;
        background: linear-gradient(90deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.6) 100%);
        pointer-events: none;
        opacity: 0;
        transition: opacity 0.3s ease;
        z-index: 5;
    }
    
    /* Pulsing arrow indicator */
    .intro-grid.scrollable::before,
    .values-grid.scrollable::before,
    .passion-grid.scrollable::before,
    .not-seeking-grid.scrollable::before {
        content: '→';
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        color: var(--gold);
        font-size: 28px;
        font-weight: 900;
        text-shadow: 0 2px 8px rgba(0,0,0,0.5);
        opacity: 0;
        animation: pulse 2s infinite;
        z-index: 10;
        pointer-events: none;
        transition: opacity 0.3s ease;
    }
    
    @keyframes pulse {
        0% { transform: translateY(-50%) scale(1); opacity: 0.7; }
        50% { transform: translateY(-50%) scale(1.2); opacity: 1; }
        100% { transform: translateY(-50%) scale(1); opacity: 0.7; }
    }
    
    /* Show indicators when scrollable */
    .intro-grid.scrollable.scroll-start::after,
    .values-grid.scrollable.scroll-start::after,
    .passion-grid.scrollable.scroll-start::after,
    .not-seeking-grid.scrollable.scroll-start::after,
    .intro-grid.scrollable.scroll-start::before,
    .values-grid.scrollable.scroll-start::before,
    .passion-grid.scrollable.scroll-start::before,
    .not-seeking-grid.scrollable.scroll-start::before {
        opacity: 1;
    }
    
    /* Hide indicators when scrolled to end */
    .intro-grid.scroll-end::after,
    .values-grid.scroll-end::after,
    .passion-grid.scroll-end::after,
    .not-seeking-grid.scroll-end::after,
    .intro-grid.scroll-end::before,
    .values-grid.scroll-end::before,
    .passion-grid.scroll-end::before,
    .not-seeking-grid.scroll-end::before {
        opacity: 0 !important;
    }
    
    .intro-card,
    .value-card,
    .passion-item,
    .not-seeking-item {
        flex: 0 0 85%;
        scroll-snap-align: start;
        margin: 0 0.5rem;
        min-height: 0;
        height: auto;
        overflow: visible;
        position: relative;
        z-index: 5;
        transform: translateZ(0);
        will-change: transform;
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
    }
    
    .intro-card:first-child,
    .value-card:first-child,
    .passion-item:first-child,
    .not-seeking-item:first-child {
        margin-left: 1rem;
    }
    
    .intro-card:last-child,
    .value-card:last-child,
    .passion-item:last-child,
    .not-seeking-item:last-child {
        margin-right: 1rem;
    }

    .summary-card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    :root {
        --eclipse-offset: 35px;
    }

    .landing-content {
        padding: 1rem;
        margin: 4rem auto 2rem;
    }

    .landing-title {
        font-size: 1.8rem;
    }

    .landing-subtitle {
        font-size: 0.9rem;
        gap: 0.5rem;
    }

    .separator {
        display: none;
    }

    .intro-snippet {
        padding: 1.25rem;
    }

    .intro-snippet::before {
        width: 4px;
    }

    .cta-container {
        margin-top: 1.25rem;
        gap: 1.25rem;
    }
    
    .landing-intro-ctas {
        flex-direction: row;
        flex-wrap: wrap;
        width: 100%;
        justify-content: center;
    }

    .cta-button {
        width: 100%;
        text-align: center;
    }

    .hero-preview {
        height: 160px;
    }

    .life-philosophy {
        padding: 2rem 1rem;
    }

    .life-philosophy blockquote {
        padding: 0 1rem;
    }

    .summary-card {
        padding: 1.5rem;
    }

    .about-me-container {
        padding: 1rem;
    }
}

@media (max-width: 360px) {
    .landing-title {
        font-size: 1.5rem;
    }

    .intro-snippet {
        padding: 1rem;
    }
}