:root {
    --orange: #ff6b00;
    --bg: #0a0a0a;
    --bg-alt: #111;
    --text: #e8e8e8;
    --text-dim: #888;
    --mono:
        "SF Mono", "Fira Code", "Fira Mono", "Roboto Mono", "Courier New",
        monospace;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 72px;
}

body {
    font-family:
        -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial,
        sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

a {
    color: inherit;
}

/* ── Navbar ───────────────────────────── */

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    height: 56px;
    z-index: 100;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    font-family: var(--mono);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-decoration: none;
}

.logo span {
    color: var(--orange);
}

.nav-links {
    display: flex;
    gap: 28px;
}

.nav-link {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.85rem;
    font-family: var(--mono);
    letter-spacing: 0.5px;
    transition: color 0.15s;
}

.nav-link:hover {
    color: var(--text);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-toggle span {
    width: 20px;
    height: 2px;
    background: var(--text);
    border-radius: 1px;
    transition: all 0.3s;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
}

/* ── Hero ─────────────────────────────── */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 56px;
}

.hero-eyebrow {
    font-family: var(--mono);
    font-size: 0.8rem;
    color: var(--orange);
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.hero-title {
    font-size: clamp(2.4rem, 5.5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 48px;
}

.hero-title em {
    color: var(--orange);
    font-style: normal;
}

.hero-bottom {
    display: flex;
    align-items: baseline;
    gap: 32px;
    flex-wrap: wrap;
}

.hero-sub {
    color: var(--text-dim);
    font-size: 1rem;
    max-width: 360px;
}

.cta-link {
    font-family: var(--mono);
    font-size: 0.9rem;
    color: var(--orange);
    text-decoration: none;
    transition: opacity 0.15s;
}

.cta-link:hover {
    opacity: 0.7;
}

/* ── Sections ─────────────────────────── */

.section {
    padding: 96px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.section-alt {
    background: var(--bg-alt);
}

.section-title {
    font-family: var(--mono);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 48px;
}

.subsection-title {
    font-family: var(--mono);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 24px;
    margin-bottom: 16px;
}

/* ── Services ─────────────────────────── */

.services-list {
    display: flex;
    flex-direction: column;
}

.service-item {
    padding: 28px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.service-item:first-child {
    padding-top: 0;
}

.service-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.service-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.service-item h3 {
    font-size: 1.2rem;
    font-weight: 700;
}

.tag {
    font-family: var(--mono);
    font-size: 0.7rem;
    color: var(--orange);
    background: rgba(255, 107, 0, 0.1);
    padding: 2px 8px;
    border-radius: 3px;
    letter-spacing: 0.5px;
}

.service-item p {
    color: var(--text-dim);
    font-size: 0.95rem;
    max-width: 560px;
    line-height: 1.7;
}

/* ── Work ─────────────────────────────── */

.work-list {
    display: flex;
    flex-direction: column;
}

.work-item {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 28px 0;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: opacity 0.15s;
}

.work-item:first-child {
    padding-top: 0;
}

.work-item:last-child {
    border-bottom: none;
}

.work-item:hover {
    opacity: 0.75;
}

.work-left {
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 200px;
}

.work-left img {
    opacity: 0.8;
}

.work-left h3 {
    font-size: 1rem;
    font-weight: 700;
}

.work-type {
    display: block;
    font-family: var(--mono);
    font-size: 0.7rem;
    color: var(--text-dim);
    letter-spacing: 0.5px;
}

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

/* ── Team ─────────────────────────────── */

.team-member {
    display: block;
    padding: 28px 0;
    text-decoration: none;
    transition: opacity 0.15s;
}

.team-member:hover {
    opacity: 0.75;
}

.team-head {
    margin-bottom: 8px;
}

.team-head h3 {
    font-size: 1.2rem;
    font-weight: 700;
    display: inline;
}

.team-role {
    font-family: var(--mono);
    font-size: 0.8rem;
    color: var(--text-dim);
    margin-left: 8px;
}

.team-member > p {
    color: var(--text-dim);
    font-size: 0.95rem;
    max-width: 480px;
    line-height: 1.7;
    margin-bottom: 12px;
}

.team-links {
    display: flex;
    gap: 6px;
    margin-top: 4px;
    font-family: var(--mono);
    font-size: 0.85rem;
}

.team-links a {
    color: var(--orange);
    text-decoration: none;
    transition: opacity 0.15s;
}

.team-links a:hover {
    opacity: 0.7;
}

.team-links span {
    color: var(--text-dim);
    user-select: none;
}

/* ── Contact ──────────────────────────── */

.contact-block p {
    color: var(--text-dim);
    font-size: 1rem;
    margin-bottom: 16px;
}

.email {
    display: inline-block;
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: none;
    margin-bottom: 16px;
    transition: color 0.15s;
}

.email:hover {
    color: var(--orange);
}

.location {
    display: block;
    font-family: var(--mono);
    font-size: 0.8rem;
    color: var(--text-dim);
}

/* ── Footer ───────────────────────────── */

.footer {
    padding: 32px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    font-family: var(--mono);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.footer-logo span {
    color: var(--orange);
}

.footer-copy {
    font-family: var(--mono);
    font-size: 0.7rem;
    color: var(--text-dim);
}

/* ── Responsive ───────────────────────── */

@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 56px;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.97);
        flex-direction: column;
        padding: 20px 24px;
        gap: 16px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .nav-links.open {
        display: flex;
    }

    .hero-title {
        margin-bottom: 36px;
    }

    .work-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .work-left {
        min-width: unset;
    }

    .footer .container {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 64px 0;
    }

    .hero-bottom {
        flex-direction: column;
        gap: 16px;
    }

    .team-role {
        display: block;
        margin-left: 0;
        margin-top: 4px;
    }
}
