
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #fafafa;
    color: #1a1a1a;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none;
}

/* Minimal Hero Container */
.minimal-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: linear-gradient(to bottom, #ffffff, #f8f8f8);
}

/* Morphing Background */
.morph-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.15;
}

.morph-svg {
    position: absolute;
    width: 100%;
    height: 100%;
}

.morph-path {
    mix-blend-mode: multiply;
    animation: morphAnimation 20s ease-in-out infinite;
}

.morph-1 {
    animation-delay: 0s;
}

.morph-2 {
    animation-delay: 5s;
}

.morph-3 {
    animation-delay: 10s;
}

@keyframes morphAnimation {
    0%, 100% {
        d: path('M0,100 C200,50 400,150 600,100 L600,0 L0,0 Z');
    }
    25% {
        d: path('M0,150 C150,100 350,200 600,150 L600,0 L0,0 Z');
    }
    50% {
        d: path('M0,120 C250,80 450,180 600,120 L600,0 L0,0 Z');
    }
    75% {
        d: path('M0,180 C180,120 380,220 600,180 L600,0 L0,0 Z');
    }
}

/* Floating Orbs */
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: floatOrb 15s ease-in-out infinite;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #ff6b6b, transparent);
    top: 10%;
    left: -10%;
    animation-duration: 18s;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #4ecdc4, transparent);
    top: 50%;
    right: -5%;
    animation-duration: 20s;
    animation-delay: 5s;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, #667eea, transparent);
    bottom: 10%;
    left: 30%;
    animation-duration: 22s;
    animation-delay: 10s;
}

.orb-4 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, #f093fb, transparent);
    top: 30%;
    right: 20%;
    animation-duration: 16s;
    animation-delay: 3s;
}

@keyframes floatOrb {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

/* Noise Overlay */
.noise-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.02;
    z-index: 2;
    pointer-events: none;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(0,0,0,.05) 2px, rgba(0,0,0,.05) 4px);
}

/* Hero Container */
.hero-container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
.hero-header {
    padding: 40px 0;
    animation: fadeInDown 0.8s ease-out;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Minimal Logo */
.minimal-logo {
    display: flex;
    gap: 6px;
}

.logo-dot {
    width: 8px;
    height: 8px;
    background: #1a1a1a;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.logo-dot:nth-child(2) {
    background: #667eea;
    animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.3); }
}

.minimal-logo:hover .logo-dot {
    background: #667eea;
}

/* Minimal Navigation */
.minimal-nav {
    display: flex;
    gap: 40px;
}

.nav-link {
    position: relative;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.nav-link::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    overflow: hidden;
    color: #667eea;
    white-space: nowrap;
    transition: width 0.3s ease;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #667eea;
    transition: width 0.3s ease;
}

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

/* Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    position: relative;
    z-index: 1001;
}

.menu-line {
    display: block;
    width: 28px;
    height: 2px;
    background: #1a1a1a;
    margin: 6px 0;
    transition: all 0.3s ease;
}

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

.menu-toggle.active .menu-line:last-child {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Hero Body */
.hero-body {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 40px 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
    width: 100%;
    align-items: center;
}

/* Left Column */
.left-column {
    max-width: 700px;
}

/* Status Indicator */
.status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 40px;
    animation: fadeInUp 0.9s ease-out;
}

.status-dot {
    width: 10px;
    height: 10px;
    background: #10b981;
    border-radius: 50%;
    position: relative;
    animation: statusPulse 2s ease-in-out infinite;
}

.status-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: #10b981;
    border-radius: 50%;
    opacity: 0;
    animation: statusRing 2s ease-in-out infinite;
}

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

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

.status-text {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #666;
    font-weight: 500;
}

/* Hero Title */
.hero-title {
    font-size: clamp(3rem, 7vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -3px;
}

.title-word {
    display: inline-block;
    margin-right: 20px;
}

.letter {
    display: inline-block;
    transition: all 0.3s ease;
    animation: letterFadeIn 0.6s ease-out forwards;
    opacity: 0;
}

.title-word:nth-child(1) .letter { animation-delay: 0.1s; }
.title-word:nth-child(2) .letter { animation-delay: 0.2s; }
.title-word:nth-child(3) .letter { animation-delay: 0.3s; }
.title-word:nth-child(4) .letter { animation-delay: 0.4s; }
.title-word:nth-child(5) .letter { animation-delay: 0.5s; }

@keyframes letterFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px) rotate(-5deg);
    }
    to {
        opacity: 1;
        transform: translateY(0) rotate(0);
    }
}

.accent-word {
    color: #667eea;
    font-style: italic;
}

.outline-word .letter {
    color: transparent;
    -webkit-text-stroke: 2px #1a1a1a;
    text-stroke: 2px #1a1a1a;
}

.hero-title:hover .letter {
    animation: letterHover 0.5s ease;
}

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

/* Hero Subtitle */
.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 40px;
    animation: fadeInUp 1.1s ease-out;
}

.highlight-text {
    position: relative;
    color: #1a1a1a;
    font-weight: 500;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(120deg, #667eea, #764ba2);
    opacity: 0.2;
    z-index: -1;
    transition: all 0.3s ease;
}

.highlight-text:hover::after {
    height: 100%;
    bottom: 0;
    opacity: 0.15;
}

/* CTA Buttons */
.minimal-cta-group {
    display: flex;
    gap: 20px;
    animation: fadeInUp 1.2s ease-out;
}

.minimal-btn {
    position: relative;
    padding: 16px 40px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: none;
    border-radius: 0;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s ease;
}

.primary-btn {
    background: #1a1a1a;
    color: white;
}

.secondary-btn {
    background: transparent;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
}

.btn-text,
.btn-hover-text {
    display: block;
    transition: transform 0.4s ease;
}

.btn-hover-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 150%);
}

.minimal-btn:hover .btn-text {
    transform: translateY(-150%);
}

.minimal-btn:hover .btn-hover-text {
    transform: translate(-50%, -50%);
}

.primary-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.primary-btn:hover::before {
    left: 100%;
}

.secondary-btn:hover {
    background: #1a1a1a;
    color: white;
}

/* Right Column - Info Cards */
.right-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card {
    padding: 30px;
    background: white;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: linear-gradient(to bottom, #667eea, #764ba2);
    transition: height 0.3s ease;
}

.info-card:hover::before {
    height: 100%;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.card-featured {
    animation: slideInRight 1s ease-out;
}

.card-stats {
    animation: slideInRight 1.1s ease-out;
}

.card-quote {
    animation: slideInRight 1.2s ease-out;
}

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

.card-label {
    display: inline-block;
    padding: 4px 12px;
    background: linear-gradient(120deg, #667eea, #764ba2);
    color: white;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 15px;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.card-description {
    color: #666;
    font-size: 15px;
    margin-bottom: 15px;
}

.card-tags {
    display: flex;
    gap: 10px;
}

.tag {
    padding: 6px 14px;
    background: #f5f5f5;
    color: #666;
    font-size: 12px;
    font-weight: 500;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.tag:hover {
    background: #667eea;
    color: white;
}

.stat-row {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.stat-row:last-child {
    margin-bottom: 0;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #667eea;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-text {
    font-size: 13px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.quote-text {
    font-size: 1.125rem;
    font-style: italic;
    color: #1a1a1a;
    line-height: 1.6;
    margin-bottom: 15px;
}

.quote-author {
    font-size: 13px;
    color: #666;
    font-style: normal;
}

/* Hero Footer */
.hero-footer {
    padding: 40px 0;
    animation: fadeInUp 1.3s ease-out;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Scroll Indicator */
.scroll-indicator {
    width: 26px;
    height: 40px;
    border: 2px solid #1a1a1a;
    border-radius: 13px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: #1a1a1a;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 1.5s ease-in-out infinite;
}

@keyframes scrollWheel {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(12px); }
}

.scroll-indicator:hover {
    border-color: #667eea;
}

.scroll-indicator:hover .scroll-wheel {
    background: #667eea;
}

/* Quick Links */
.quick-links {
    display: flex;
    gap: 30px;
}

.quick-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.link-icon {
    transition: transform 0.3s ease;
}

.quick-link:hover {
    color: #667eea;
}

.quick-link:hover .link-icon {
    transform: translateX(4px);
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 50%;
    color: #1a1a1a;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #1a1a1a;
    color: white;
    transform: translateY(-3px);
}

/* Custom Cursor */
.custom-cursor {
    pointer-events: none;
    position: fixed;
    z-index: 9999;
}

.cursor-dot {
    position: fixed;
    width: 8px;
    height: 8px;
    background: #667eea;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease;
}

.cursor-outline {
    position: fixed;
    width: 30px;
    height: 30px;
    border: 2px solid #667eea;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.15s ease;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: white;
    z-index: 1000;
    transition: right 0.4s ease;
}

.mobile-menu.active {
    right: 0;
}

.menu-content {
    padding: 100px 40px 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 20px;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 2rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.nav-number {
    font-size: 14px;
    color: #667eea;
    font-weight: 500;
}

.mobile-nav-link:hover {
    color: #667eea;
    transform: translateX(10px);
}

.menu-footer {
    color: #666;
    font-size: 14px;
}

.menu-email,
.menu-phone {
    margin-bottom: 10px;
}

/* Content Section */
.content-section {
    min-height: 100vh;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
}

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

.section-wrapper h2 {
    font-size: 3rem;
    color: white;
    margin-bottom: 20px;
}

.section-wrapper p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .right-column {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .info-card {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    body {
        cursor: auto;
    }
    
    .custom-cursor {
        display: none;
    }
    
    .minimal-nav {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .hero-title {
        font-size: 2.5rem;
        letter-spacing: -1px;
    }
    
    .minimal-cta-group {
        flex-direction: column;
    }
    
    .minimal-btn {
        width: 100%;
    }
    
    .right-column {
        display: flex;
        flex-direction: column;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .quick-links {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
}