:root {
    --brand-bg: #221e1f;    /* Your logo color */
    --accent-light: #ffffff; 
    --text-dim: #a19d9e;    
    --glow-color: rgba(255, 255, 255, 0.03); /* Subtle center glow */
    --fade-speed: 1.2s;
}

body {
    margin: 0;
    padding: 0;
    /* Subtle radial gradient for depth */
    background: radial-gradient(circle at center, #2e2a2b 0%, var(--brand-bg) 100%);
    color: var(--accent-light);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    overflow: hidden;
}

.container { width: 90%; max-width: 700px; z-index: 2; }

.logo {
    max-width: 140px;
    margin-bottom: 2.5rem;
    /* Soft glow behind the logo */
    filter: drop-shadow(0 0 15px rgba(255,255,255,0.1));
}

h1 { 
    font-weight: 300; 
    letter-spacing: 5px; 
    text-transform: uppercase; 
    font-size: 1.2rem;
    color: var(--accent-light);
    margin-bottom: 1.5rem;
}

.subtitle { 
    color: var(--text-dim); 
    font-size: 0.9rem;
    font-weight: 300;
    margin: 0 auto 3rem auto;
    max-width: 450px;
    line-height: 1.8;
    letter-spacing: 0.5px;
}

.services-grid {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 4rem;
    text-align: left;
}

.service-item {
    flex: 1;
    border-left: 1px solid rgba(255,255,255,0.1);
    padding-left: 25px;
}

.service-item h3 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    color: var(--accent-light);
}

.service-item p {
    font-size: 0.8rem;
    color: var(--text-dim);
    line-height: 1.6;
}

@media (max-width: 600px) {
    .services-grid { flex-direction: column; text-align: center; }
    .service-item { border-left: none; border-top: 1px solid rgba(255,255,255,0.1); padding: 25px 0 0 0; }
}

.cta-button {
    display: inline-block;
    padding: 18px 40px;
    border: 1px solid var(--accent-light);
    text-decoration: none;
    color: var(--accent-light);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.cta-button:hover { 
    background: var(--accent-light); 
    color: var(--brand-bg); 
    box-shadow: 0 0 20px rgba(255,255,255,0.2);
}

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

.fade-in { opacity: 0; animation: fadeInUp var(--fade-speed) ease-out forwards; }
.delay-1 { animation-delay: 0.4s; }
.delay-2 { animation-delay: 0.8s; }

footer {
    margin-top: 6rem;
    font-size: 0.6rem;
    color: #444;
    text-transform: uppercase;
    letter-spacing: 3px;
}