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

:root {
    --bg-void: #0a0a12;
    --bg-surface: #10101e;
    --text-primary: #e8e8f0;
    --neon-cyan: #00ffcc;
    --neon-magenta: #ff2d78;
    --neon-yellow: #ffe600;
    --border-indigo: #1a1a3e;
    --overlay-cyan: rgba(0, 255, 204, 0.08);
}

body {
    background-color: var(--bg-void);
    color: var(--text-primary);
    font-family: 'Libre Baskerville', serif;
    line-height: 1.7;
    overflow-x: hidden;
}

/* Hero Section */
#hero {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--bg-void);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

.hero-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--neon-cyan);
    margin-bottom: 1.5rem;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 900;
    font-size: clamp(3.5rem, 10vw, 8rem);
    letter-spacing: 0.05em;
    color: var(--text-primary);
    text-shadow: 0 0 40px rgba(0, 255, 204, 0.15);
}

.hero-subtitle {
    font-family: 'Libre Baskerville', serif;
    font-style: italic;
    font-size: 1.1rem;
    color: rgba(232, 232, 240, 0.6);
    margin-top: 1rem;
}

/* Bubbles */
.bubble {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(0, 255, 204, 0.15), rgba(0, 255, 204, 0.03) 60%, transparent 70%);
    box-shadow: 0 0 30px rgba(0, 255, 204, 0.1), inset 0 0 20px rgba(0, 255, 204, 0.05);
    border: 1px solid rgba(0, 255, 204, 0.1);
    animation: float-up linear infinite;
    z-index: 2;
}

.bubble-1 {
    width: 120px;
    height: 120px;
    left: 10%;
    bottom: -150px;
    animation-duration: 12s;
    animation-delay: 0s;
}

.bubble-2 {
    width: 80px;
    height: 80px;
    left: 30%;
    bottom: -100px;
    animation-duration: 15s;
    animation-delay: 2s;
}

.bubble-3 {
    width: 150px;
    height: 150px;
    right: 15%;
    bottom: -180px;
    animation-duration: 18s;
    animation-delay: 1s;
}

.bubble-4 {
    width: 60px;
    height: 60px;
    right: 35%;
    bottom: -80px;
    animation-duration: 10s;
    animation-delay: 4s;
}

.bubble-5 {
    width: 100px;
    height: 100px;
    left: 55%;
    bottom: -120px;
    animation-duration: 14s;
    animation-delay: 3s;
}

@keyframes float-up {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-110vh) scale(1.1);
        opacity: 0;
    }
}

/* Neon Lines */
.neon-line {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
    background-size: 200% 100%;
    animation: neon-shift 4s ease-in-out infinite;
    z-index: 5;
}

.neon-line-top {
    top: 0;
}

.neon-line-bottom {
    bottom: 0;
}

@keyframes neon-shift {
    0%, 100% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 100% 0%;
    }
}

/* About Section */
#about {
    padding: 8rem 5vw;
    background-color: var(--bg-surface);
    border-top: 1px solid var(--border-indigo);
}

.about-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 70% 30%;
    gap: 2rem;
}

.section-heading {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 900;
    font-size: clamp(2rem, 5vw, 3.5rem);
    letter-spacing: 0.03em;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.body-text {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(232, 232, 240, 0.8);
    margin-bottom: 1.5rem;
}

.about-accent {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
    padding-left: 2rem;
}

.accent-strip {
    width: 4px;
    height: 60px;
    background: var(--neon-cyan);
    box-shadow: 0 0 10px var(--neon-cyan);
    border-radius: 2px;
}

.accent-strip-magenta {
    background: var(--neon-magenta);
    box-shadow: 0 0 10px var(--neon-magenta);
}

.accent-strip-yellow {
    background: var(--neon-yellow);
    box-shadow: 0 0 10px var(--neon-yellow);
}

/* Services Section */
#services {
    padding: 8rem 5vw;
    background-color: var(--bg-void);
    border-top: 1px solid var(--border-indigo);
}

#services .section-heading {
    text-align: center;
    margin-bottom: 4rem;
}

.cards-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card {
    background: var(--bg-surface);
    border: 1px solid var(--border-indigo);
    padding: 3rem 2rem;
    border-radius: 2px;
    transition: transform 300ms ease, box-shadow 300ms ease;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-magenta));
    opacity: 0;
    transition: opacity 300ms ease;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 30px rgba(0, 255, 204, 0.15), 0 8px 32px rgba(0, 0, 0, 0.4);
}

.card:hover::before {
    opacity: 1;
}

.card-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.75rem;
    color: var(--neon-cyan);
    letter-spacing: 0.1em;
}

.card-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 1.8rem;
    margin: 1rem 0;
    color: var(--text-primary);
}

.card-text {
    font-size: 0.95rem;
    color: rgba(232, 232, 240, 0.7);
    line-height: 1.7;
}

/* Contact Section */
#contact {
    padding: 8rem 5vw;
    background: var(--bg-surface);
    border-top: 1px solid var(--border-indigo);
    text-align: center;
}

.contact-inner {
    max-width: 600px;
    margin: 0 auto;
}

.cta-button {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2.5rem;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.9rem;
    color: var(--bg-void);
    background: var(--neon-cyan);
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: box-shadow 300ms ease, transform 300ms ease;
}

.cta-button:hover {
    box-shadow: 0 0 25px var(--neon-cyan), 0 0 50px rgba(0, 255, 204, 0.3);
    transform: translateY(-2px);
}

/* Footer */
#footer {
    padding: 2rem 5vw;
    background: var(--bg-void);
    border-top: 1px solid var(--border-indigo);
    text-align: center;
}

.footer-text {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.75rem;
    color: rgba(232, 232, 240, 0.4);
    letter-spacing: 0.05em;
}

/* Responsive */
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    .about-accent {
        flex-direction: row;
        padding-left: 0;
        padding-top: 2rem;
    }
    .accent-strip {
        width: 60px;
        height: 4px;
    }
}
