* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --beige: #d4c5b0;
    --dark-gray: #4a4a4a;
    --charcoal: #2d2d2d;
    --light-beige: #e8dfd0;
    --white: #ffffff;
    --cream: #f5f0e8;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--beige);
    min-height: 100vh;
    overflow-x: hidden;
    color: var(--charcoal);
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: var(--beige);
    z-index: 0;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: var(--dark-gray);
    z-index: 0;
}

.container {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    z-index: 1;
}

.header {
    margin-bottom: 80px;
    animation: fadeInDown 1s ease-out;
}

.logo-container {
    background: var(--cream);
    padding: 40px 80px;
    border: 2px solid var(--charcoal);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.logo-container::before {
    content: '';
    position: absolute;
    inset: -2px;
    border: 2px solid var(--charcoal);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.logo-container:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.logo-container:hover::before {
    opacity: 0.3;
}

.logo {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--charcoal);
    text-align: center;
    margin: 0;
}

.tagline {
    text-align: center;
    margin-top: 15px;
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    color: var(--dark-gray);
    border-top: 2px solid var(--charcoal);
    padding-top: 15px;
    font-weight: 500;
}

.main-content {
    animation: fadeInUp 1s ease-out 0.3s both;
    text-align: center;
    z-index: 10;
    max-width: 900px;
    width: 100%;
}

.content-wrapper {
    background: rgba(255, 255, 255, 0.98);
    padding: 70px 90px;
    box-shadow: 
        0 30px 90px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--charcoal);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 50px;
    margin-bottom: 40px;
    animation: slideIn 0.8s ease-out 0.5s both;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.pulse {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

.status-text {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.main-title {
    font-size: 4rem;
    font-weight: 300;
    letter-spacing: 0.08em;
    margin-bottom: 25px;
    color: var(--charcoal);
    text-transform: uppercase;
}

.description {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--dark-gray);
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.feature-item {
    padding: 35px 25px;
    background: var(--cream);
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeIn 0.8s ease-out calc(0.7s + var(--delay)) both;
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--charcoal);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-item:nth-child(1) { --delay: 0s; }
.feature-item:nth-child(2) { --delay: 0.15s; }
.feature-item:nth-child(3) { --delay: 0.3s; }

.feature-item:hover {
    transform: translateY(-12px);
    background: var(--white);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    border-color: rgba(0, 0, 0, 0.15);
}

.feature-item:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.feature-item p {
    font-size: 0.95rem;
    color: var(--charcoal);
    font-weight: 500;
    letter-spacing: 0.03em;
}

.contact-info {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.contact-info p {
    font-size: 0.85rem;
    color: var(--dark-gray);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

.email-link {
    color: var(--charcoal);
    text-decoration: none;
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.email-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--charcoal);
    transition: width 0.4s ease;
}

.email-link:hover {
    transform: translateY(-2px);
}

.email-link:hover::after {
    width: 100%;
}

.background-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.shape {
    position: absolute;
    opacity: 0.05;
    animation: float 25s infinite ease-in-out;
    filter: blur(40px);
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--charcoal) 0%, transparent 70%);
    top: -10%;
    left: -5%;
    animation-delay: 0s;
}

.shape-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, var(--white) 0%, transparent 70%);
    bottom: -10%;
    right: -5%;
    animation-delay: -8s;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--dark-gray) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -16s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(50px, -50px);
    }
    50% {
        transform: translate(-30px, 30px);
    }
    75% {
        transform: translate(40px, 20px);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .logo {
        font-size: 2.2rem;
    }
    
    .logo-container {
        padding: 30px 50px;
    }
    
    .content-wrapper {
        padding: 50px 35px;
    }
    
    .main-title {
        font-size: 2.5rem;
    }
    
    .description {
        font-size: 1rem;
    }
    
    .features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .header {
        margin-bottom: 60px;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.8rem;
    }
    
    .logo-container {
        padding: 25px 35px;
    }
    
    .content-wrapper {
        padding: 40px 25px;
    }
    
    .main-title {
        font-size: 2rem;
    }
}
