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

:root {
    --bg: #0a0a0f;
    --surface: #12121a;
    --surface-hover: #16161f;
    --border: rgba(255,255,255,0.06);
    --text: #e4e4e7;
    --text-dim: #71717a;
    --accent: #818cf8;
    --accent-soft: #a78bfa;
    --accent-glow: rgba(129,140,248,0.15);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Noise texture overlay */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
}

.container {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Nav ── */
nav {
    padding: 32px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
}
.logo span { color: var(--accent); }

/* ── Hero ── */
.hero {
    padding: 100px 0 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
.hero-content { max-width: 520px; }
.hero-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    background: var(--accent-glow);
    padding: 8px 16px;
    border-radius: 100px;
    margin-bottom: 32px;
}
.hero h1 {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}
.hero h1 em {
    font-style: normal;
    background: linear-gradient(135deg, var(--accent), var(--accent-soft));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-dim);
}
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-visual img {
    width: 100%;
    max-width: 460px;
    height: auto;
    opacity: 0.85;
}

/* ── Showcase ── */
.showcase {
    padding: 40px 0 80px;
}
.showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.showcase-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
    border: 1px solid var(--border);
}
.showcase-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, opacity 0.3s;
    opacity: 0.8;
}
.showcase-item:hover img {
    transform: scale(1.05);
    opacity: 1;
}
.showcase-item .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,10,15,0.8) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
}
.showcase-item .overlay span {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text);
    opacity: 0.9;
}

/* ── Services ── */
.services { padding: 80px 0; }
.section-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 48px;
}
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
}
.card {
    background: var(--surface);
    padding: 40px 32px;
    transition: background 0.3s;
}
.card:hover { background: var(--surface-hover); }
.card-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--accent-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.card-icon img {
    width: 20px;
    height: 20px;
    opacity: 0.9;
}
.card h3 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 10px;
}
.card p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-dim);
}

/* ── Stats ── */
.stats {
    padding: 80px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 48px;
}
.stat-number {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, var(--text), var(--text-dim));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.stat-label {
    font-size: 14px;
    color: var(--text-dim);
    margin-top: 4px;
}

/* ── Divider ── */
.divider { height: 1px; background: var(--border); }

/* ── Footer ── */
footer {
    padding: 60px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}
.footer-left { display: flex; flex-direction: column; gap: 8px; }
.footer-email a {
    font-size: 16px;
    color: var(--text);
    text-decoration: none;
    border-bottom: 1px solid var(--border);
    padding-bottom: 2px;
    transition: border-color 0.3s;
}
.footer-email a:hover { border-color: var(--accent); }
.footer-copy { font-size: 13px; color: var(--text-dim); }

/* ── Animations ── */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 860px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 80px 0 60px;
    }
    .hero-visual { order: -1; }
    .hero-visual img { max-width: 320px; }
    .showcase-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
    .grid { grid-template-columns: 1fr; }
    .stats { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    nav { padding: 24px 0; }
    footer { padding: 40px 0; }
}
