:root {
    --bg-color: #0b0514;
    /* Deep Purple/Black */
    --card-bg: #130a20;
    --text-main: #ffffff;
    --text-muted: #a090b0;
    --accent-cyan: #00f0ff;
    --accent-magenta: #ff00ff;
    --border-color: #2a1f3d;
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --spacing-container: 1200px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-color);
    background-image:
        radial-gradient(circle at 0% 0%, rgba(30, 20, 60, 0.4), transparent 50%),
        radial-gradient(circle at 100% 0%, rgba(0, 240, 255, 0.05), transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(255, 0, 255, 0.05), transparent 50%),
        radial-gradient(circle at 0% 100%, rgba(10, 5, 20, 0.8), transparent 50%);
    background-attachment: fixed;
    color: var(--text-main);
    font-family: var(--font-main);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    line-height: 1.5;
}

/* Noise Texture Overlay - Removed for high quality look */
.noise-overlay {
    display: none;
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    z-index: 100;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo {
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    /* Split glitch effect attempt */
    text-shadow: 2px 0 var(--accent-magenta), -2px 0 var(--accent-cyan);
}

/* Layout */
main {
    max-width: var(--spacing-container);
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 100px 0;
}

/* Typography */
h1 {
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.1;
    text-align: center;
    color: #fff;
    text-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
}

.big-text {
    font-size: 2.5rem;
    font-weight: 500;
    text-align: center;
    color: var(--text-muted);
    letter-spacing: -0.03em;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.3;
}

.highlight {
    color: var(--text-main);
    text-shadow: 0 0 10px var(--accent-magenta);
}

/* Sections */
.hero-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 100px;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.glow-sphere {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, var(--accent-cyan), transparent 60%),
        radial-gradient(circle at 70% 70%, var(--accent-magenta), transparent 60%);
    box-shadow: 0 0 80px rgba(0, 240, 255, 0.2), 0 0 80px rgba(255, 0, 255, 0.2);
    filter: blur(30px);
    margin-bottom: 20px;
    opacity: 0.9;
    animation: pulse 4s infinite alternate;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.05);
        opacity: 1;
    }
}

.pill-container {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.pill-label {
    border: 1px solid var(--border-color);
    padding: 10px 20px;
    border-radius: 999px;
    font-size: 0.9rem;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.1);
}

/* Projects */
.projects-section {
    display: grid;
    gap: 60px;
}

.project-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 20px;
    transition: transform 0.4s ease, border-color 0.4s ease;
    cursor: pointer;
}

.project-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.card-image.placeholder-dark {
    width: 100%;
    height: 400px;
    background: linear-gradient(180deg, #111 0%, #050505 100%);
    border-radius: 16px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.card-image.placeholder-dark::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.05), transparent 40%);
}

.card-info h3 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 8px;
}

.card-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Services */
.services-section .section-title {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.service-card {
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
    background: linear-gradient(145deg, #0a0a0a, #050505);
    transition: 0.3s;
}

.service-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.service-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Contact / CTA */
.contact-section {
    text-align: center;
}

.cta-card {
    background: #080808;
    border: 1px solid var(--border-color);
    border-radius: 30px;
    padding: 80px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(0, 200, 255, 0.05), transparent 70%);
    pointer-events: none;
}

.cta-card h2 {
    font-size: 3rem;
    line-height: 1.2;
    letter-spacing: -0.03em;
}

.primary-button {
    background: #ffffff;
    color: #000000;
    padding: 16px 32px;
    border-radius: 999px;
    font-weight: 500;
    text-decoration: none;
    font-size: 1.1rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.primary-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

/* Footer */
.site-footer {
    border-top: 1px solid var(--border-color);
    padding: 80px 20px 40px;
    margin-top: 40px;
    background: #050505;
}

.footer-content {
    max-width: var(--spacing-container);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.avatar-circle {
    width: 50px;
    height: 50px;
    background: #222;
    border-radius: 50%;
}

.founder-info .name {
    font-weight: 600;
}

.founder-info .role {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--text-main);
}

.footer-bottom {
    max-width: var(--spacing-container);
    margin: 0 auto;
    text-align: center;
    color: #444;
    font-size: 0.8rem;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    .big-text {
        font-size: 1.5rem;
    }

    .cta-card h2 {
        font-size: 2rem;
    }

    .site-header {
        padding: 20px;
    }
}