:root{
    --bg: #0f172a;
    --panel: #020617;
    --muted: #94a3b8;
    --accent: #1c9dff;
    --font: Consolas, 'Courier New', monospace;
}

.logo {
    height: 60px;
    width: auto;
    border-radius: 5px;
}

body {
    margin: 0;
    font-family: var(--font);
    background: var(--bg);
    color: #e2e8f0;
    line-height: 1.6;
    -webkit-font-smoothing:antialiased;
    font-size:16px;
}

header {
    background: var(--panel);
    padding: 22px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(30,41,59,0.6);
}

header h1 {
    margin: 0;
    font-size: 26px;
    color: var(--accent);
    font-family: var(--font);
    letter-spacing: 0.8px;
    font-weight: 700;
}

nav a {
    color: var(--accent);
    margin-left: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    opacity: 0.95;
    transition: color .18s ease, transform .18s ease;
}

nav a:hover {
    color: #fff;
    transform: translateY(-1px);
}

.hero {
    padding: 100px 20px;
    text-align: center;
    background: linear-gradient(rgba(2,6,23,0.55), rgba(15,23,42,0.55)),
                url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
    background-color: var(--panel);
}

.hero .container{max-width:820px;margin:auto}

.hero h2 {
    font-size: 44px;
    margin-bottom: 18px;
    font-family: var(--font);
    font-weight: 700;
}

.hero p + .cta-wrap { margin-top:22px }

.btn-accent{
    display:inline-block;
    padding:12px 20px;
    background:linear-gradient(90deg,var(--accent),#67c9ff);
    color:#041227;
    border-radius:10px;
    text-decoration:none;
    font-weight:700;
    box-shadow:0 12px 30px rgba(28,157,255,0.12), inset 0 -2px 0 rgba(255,255,255,0.02);
    transition:transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.btn-accent:hover{ transform:translateY(-4px); box-shadow:0 20px 50px rgba(28,157,255,0.18); filter:brightness(1.03)}

@keyframes accent-glow{ 0%{box-shadow:0 6px 18px rgba(28,157,255,0.08)}50%{box-shadow:0 18px 60px rgba(28,157,255,0.14)}100%{box-shadow:0 6px 18px rgba(28,157,255,0.08)} }

.btn-accent.pulse{ animation: accent-glow 2.6s ease-in-out infinite }

.hero {
    padding: 100px 20px;
    text-align: center;
    background:
        linear-gradient(rgba(28,157,255,0.48), rgba(28,157,255,0.48)),
        linear-gradient(rgba(2,6,23,0.70), rgba(15,23,42,0.80)),
        url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
    background-color: var(--panel);
}
.container{max-width:820px;margin:0 auto;padding:0 20px}

.services {
    padding: 60px 0;
    background:
        linear-gradient(rgba(28,157,255,0.42), rgba(28,157,255,0.42)),
        linear-gradient(rgba(2,6,23,0.68), rgba(2,6,23,0.78)),
        url('https://images.unsplash.com/photo-1498050108023-c5249f4df085?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
    background-color: transparent;
}

.services h3 {
    text-align: center;
    margin-bottom: 32px;
    font-size: 30px;
    font-family: var(--font);
}

.service-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 22px;
}

.service-card {
    background: rgba(2,6,23,0.65);
    padding: 24px;
    border-radius: 14px;
    border: 1px solid rgba(28,157,255,0.18);
    min-height:120px;
    box-shadow: 0 10px 30px rgba(3,10,30,0.6), 0 2px 8px rgba(28,157,255,0.04);
    transition: transform .18s ease, box-shadow .18s ease;
}

.service-card:hover{ transform: translateY(-6px); box-shadow: 0 18px 40px rgba(3,10,30,0.7), 0 6px 18px rgba(28,157,255,0.08)}

.service-card h4 {
    margin-top: 0;
    color: var(--accent);
    font-family: var(--font);
    text-shadow: 0 1px 0 rgba(0,0,0,0.35);
}

.section {
    padding: 60px 0;
    background:
        linear-gradient(rgba(28,157,255,0.40), rgba(28,157,255,0.40)),
        linear-gradient(rgba(2,6,23,0.60), rgba(2,6,23,0.70)),
        url('https://images.unsplash.com/photo-1542744173-8e7e53415bb0?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
    text-align: center;
}

.section a { color: var(--accent); text-decoration: none; font-weight:600 }

ul.staff-list { list-style: none; padding: 0; margin-top: 20px }

ul.staff-list li { margin: 10px 0; font-size: 18px }

footer { text-align: center; padding: 28px 20px; border-top: 1px solid rgba(28,157,255,0.12); color: var(--muted) }

.section-divider{height:1px;background:rgba(255,255,255,0.03);margin:36px 0;border-radius:2px}

.portfolio-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:18px}

figure.portfolio-item{margin:0;border-radius:12px;overflow:hidden;background:var(--panel);border:1px solid rgba(28,157,255,0.14);box-shadow:0 8px 30px rgba(3,10,30,0.45)}

figure.portfolio-item img{width:100%;height:160px;object-fit:cover;display:block}

figure.portfolio-item figcaption{padding:12px 14px;color:var(--muted);font-size:14px}

@media (min-width:900px){ .hero h2{font-size:52px} figure.portfolio-item img{height:200px} }
