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

:root {
    --primary-black: #000000;
    --primary-white: #ffffff;
    --bright-white: #ffffff;
    --medium-gray: #666666;
    --light-gray: #f0f0f0;
    --accent-gray: #333333;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--primary-white);
    color: var(--primary-black);
    overflow-x: hidden;
    line-height: 1.6;
    scroll-behavior: smooth;
}

.container {
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
}

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

.shape {
    position: absolute;
    background: linear-gradient(135deg, rgba(0,0,0,0.01) 0%, rgba(0,0,0,0.03) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0,0,0,0.02);
    animation: modernFloat 25s ease-in-out infinite;
}

.shape-1 {
    width: 400px;
    height: 200px;
    top: 15%;
    right: -200px;
    border-radius: 200px 50px 200px 50px;
    animation-delay: 0s;
}

.shape-2 {
    width: 300px;
    height: 300px;
    bottom: 10%;
    left: -150px;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation-delay: 8s;
}

.shape-3 {
    width: 180px;
    height: 120px;
    top: 50%;
    right: 15%;
    border-radius: 90px 30px 90px 30px;
    animation-delay: 16s;
    background: linear-gradient(45deg, rgba(0,0,0,0.01) 0%, rgba(0,0,0,0.04) 100%);
}

@keyframes modernFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }
    25% {
        transform: translateY(-40px) rotate(2deg) scale(1.05);
    }
    50% {
        transform: translateY(20px) rotate(-1deg) scale(0.95);
    }
    75% {
        transform: translateY(-20px) rotate(1deg) scale(1.02);
    }
}

/* Header */
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 3rem;
    z-index: 10;
}

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--primary-black);
}

/* Main Content */
.main-content {
    flex: 1;
}

.hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 3rem;
    min-height: 100vh;
    position: relative;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 300;
    line-height: 0.9;
    margin-bottom: 2rem;
    overflow: hidden;
}

.title-line {
    display: block;
    transform: translateY(100%);
    animation: slideUp 0.8s ease-out forwards;
}

.title-line:nth-child(2) {
    animation-delay: 0.2s;
    font-weight: 600;
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--medium-gray);
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeIn 0.8s ease-out 0.6s forwards;
}

/* Modern Interactive Elements */
.floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
}

.dot {
    position: absolute;
    width: 2px;
    height: 20px;
    background: linear-gradient(180deg, transparent 0%, var(--primary-black) 50%, transparent 100%);
    opacity: 0.1;
    animation: modernDrift 20s ease-in-out infinite;
}

.dot-1 {
    top: 25%;
    left: 8%;
    animation-delay: 0s;
    transform: rotate(15deg);
}

.dot-2 {
    top: 60%;
    right: 12%;
    animation-delay: 7s;
    transform: rotate(-20deg);
}

.dot-3 {
    bottom: 35%;
    left: 15%;
    animation-delay: 14s;
    transform: rotate(45deg);
}

@keyframes modernDrift {
    0%, 100% {
        transform: translateY(0) rotate(var(--rotation, 0deg));
        opacity: 0.1;
    }
    50% {
        transform: translateY(-30px) rotate(calc(var(--rotation, 0deg) + 10deg));
        opacity: 0.3;
    }
}

/* Modern Cursor Effects */
.hero-section {
    cursor: none;
}

.custom-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease;
    mix-blend-mode: difference;
}

.custom-cursor.hover {
    transform: scale(2);
    background: rgba(0, 0, 0, 0.2);
}

/* Philosophy Section */
.philosophy-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 3rem;
    background: var(--bright-white);
    position: relative;
}

.philosophy-content {
    max-width: 900px;
    text-align: center;
}

.philosophy-quote {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 300;
    line-height: 1.3;
    color: var(--primary-black);
    font-style: italic;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1s ease-out forwards;
    animation-play-state: paused;
}

.philosophy-quote::before {
    content: '"';
    position: absolute;
    top: -0.5em;
    left: -0.3em;
    font-size: 1.5em;
    color: var(--medium-gray);
    opacity: 0.3;
}

.philosophy-quote::after {
    content: '"';
    position: absolute;
    bottom: -0.3em;
    right: -0.3em;
    font-size: 1.5em;
    color: var(--medium-gray);
    opacity: 0.3;
}

/* Mission Section */
.mission-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 3rem;
    background: var(--bright-white);
    position: relative;
}

.mission-content {
    max-width: 800px;
    text-align: center;
}

.mission-text {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 400;
    color: var(--primary-black);
    line-height: 1.6;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1s ease-out forwards;
    animation-play-state: paused;
}

/* About Section */
.about-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 3rem;
    background: var(--bright-white);
    position: relative;
}

.about-content {
    max-width: 600px;
    text-align: center;
}

.about-title {
    font-size: 1rem;
    font-weight: 400;
    color: var(--medium-gray);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
    animation-play-state: paused;
}

.about-name {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 300;
    color: var(--primary-black);
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
    animation-play-state: paused;
}

.about-description {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--medium-gray);
    line-height: 1.8;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
    animation-play-state: paused;
}

/* Contact Section */
.contact-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 3rem;
    background: var(--primary-black);
    position: relative;
}

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

.contact-title {
    font-size: 1rem;
    font-weight: 400;
    color: var(--bright-white);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
    animation-play-state: paused;
}

.contact-button {
    display: inline-block;
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--bright-white);
    text-decoration: none;
    padding: 1.5rem 3rem;
    border: 2px solid var(--bright-white);
    background: transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
    animation-play-state: paused;
}

.contact-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--bright-white);
    transition: left 0.3s ease;
    z-index: 1;
}

.contact-button:hover::before {
    left: 0;
}

.contact-button:hover {
    color: var(--primary-black);
}

.contact-button span {
    position: relative;
    z-index: 2;
}

/* Animation classes for intersection observer */
.philosophy-quote.animate,
.mission-text.animate,
.about-title.animate,
.about-name.animate,
.about-description.animate,
.contact-title.animate,
.contact-button.animate {
    animation-play-state: running;
}

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

@keyframes slideUp {
    to {
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Subtle text selection */
::selection {
    background: rgba(0, 0, 0, 0.1);
    color: var(--primary-black);
}

/* Modern scrollbar */
::-webkit-scrollbar {
    width: 2px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 1px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        padding: 1.5rem 2rem;
    }
    
    .logo {
        font-size: 1.3rem;
    }
    
    .hero-section {
        padding: 0 2rem;
    }
    
    .philosophy-section,
    .mission-section,
    .about-section,
    .contact-section {
        padding: 0 2rem;
    }
    
    .hero-title {
        margin-bottom: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .shape-1 {
        width: 200px;
        height: 200px;
    }
    
    .shape-2 {
        width: 150px;
        height: 150px;
    }
    
    .shape-3 {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 1rem 1.5rem;
    }
    
    .hero-section {
        padding: 0 1.5rem;
    }
    
    .philosophy-section,
    .mission-section,
    .about-section,
    .contact-section {
        padding: 0 1.5rem;
    }
    
    .about-description {
        font-size: 1rem;
    }
    
    .contact-button {
        font-size: 1rem;
        padding: 1.2rem 2rem;
    }
}