/* ============================================
   BROCKMAN LABS — Swiss Brutalist (Official Brand)
   ============================================ */

:root {
    --bg: #FFFFFF;
    --fg: #000000;
    --accent: #FFE600;
    --accent-light: #FFF9CC;
    --red: #FF2D00;
    --blue: #0028FF;
    --muted: #888888;
    --card-bg: #EEEEEE;
    --border: #DDDDDD;
    --radius: 0px;
    --font-mono: 'Space Mono', monospace;
    --font-sans: 'Space Grotesk', 'Inter', -apple-system, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background: var(--bg);
    color: var(--fg);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Grain overlay — disabled for brutalist style */
.grain {
    display: none;
}

/* ---- NAV ---- */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    padding: 1.5rem 3rem;
    background: var(--bg);
    border-bottom: 3px solid var(--fg);
}

header .accent {
    color: var(--fg);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.nav-logo-svg {
    width: 30px;
    height: auto;
    color: var(--fg);
}

.logo {
    font-family: var(--font-mono);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--fg);
}

.accent {
    color: var(--accent);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    text-decoration: none;
    color: var(--fg);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--muted);
}

/* ---- HERO ---- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8rem 3rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
    gap: 4rem;
}

.hero-content {
    flex: 1;
    max-width: 640px;
}

.hero-eyebrow {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.hero-eyebrow .tag {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: var(--fg);
    color: var(--accent);
    padding: 0.3rem 0.8rem;
    border-radius: 0;
    display: inline-block;
}

h1 {
    font-family: var(--font-mono);
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.subtitle {
    font-size: 1.1rem;
    color: var(--muted);
    max-width: 520px;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    border-left: 4px solid var(--accent);
    padding-left: 1rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
}

.hero-decoration {
    flex-shrink: 0;
}

.hero-logo-block {
    width: 320px;
    height: 320px;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
}

.hero-logo-block svg {
    width: 100%;
    height: auto;
}

/* ---- BUTTONS ---- */
.btn {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    padding: 0.85rem 2rem;
    text-decoration: none;
    border-radius: var(--radius);
    letter-spacing: 0.03em;
    transition: all 0.2s;
    display: inline-block;
    border: 2px solid var(--fg);
}

.btn-primary {
    background: var(--accent);
    color: var(--fg);
    border-color: var(--accent);
}

.btn-primary:hover {
    background: var(--fg);
    color: var(--accent);
    border-color: var(--fg);
}

.btn-outline {
    background: transparent;
    color: var(--fg);
}

.btn-outline:hover {
    background: var(--fg);
    color: var(--bg);
}

/* ---- SECTIONS ---- */
.section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 3rem;
    border-top: 1px solid var(--border);
}

.section-label {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    color: var(--muted);
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.section-content {
    max-width: 700px;
}

h2 {
    font-family: var(--font-mono);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    line-height: 1.3;
}

.section-content p {
    color: var(--muted);
    margin-bottom: 1rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

.section-content .btn {
    margin-top: 1rem;
}

/* ---- CARDS (pillars) ---- */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.card {
    background: var(--card-bg);
    border: 2px solid var(--fg);
    border-radius: var(--radius);
    padding: 2rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 4px 4px 0 var(--fg);
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.card h3 {
    font-family: var(--font-mono);
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
}

.card p {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ---- PRODUCT CARDS ---- */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.product-card {
    background: var(--card-bg);
    border: 2px solid var(--fg);
    border-radius: var(--radius);
    padding: 2.5rem 2rem;
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
}

.product-card:hover {
    transform: translateY(-2px);
    box-shadow: 4px 4px 0 var(--accent);
}

.product-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.product-badge {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--bg);
    background: var(--fg);
    padding: 0.25rem 0.6rem;
    border-radius: var(--radius);
    display: inline-block;
    margin-bottom: 1rem;
}

.product-card h3 {
    font-family: var(--font-mono);
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.product-card p {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ---- SPOTLIGHT ---- */
.spotlight-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.spotlight-text h2 {
    font-size: 2rem;
}

.spotlight-tagline {
    font-family: var(--font-mono);
    font-size: 1rem;
    color: var(--fg);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.spotlight-text p {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.spotlight-text .btn {
    margin-top: 1.5rem;
}

.spotlight-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat {
    padding: 1.5rem;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.stat-value {
    font-family: var(--font-mono);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--fg);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.stat-desc {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.5;
}

/* ---- VALUES ---- */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.value-item {
    padding: 2rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--card-bg);
}

.value-num {
    font-family: var(--font-mono);
    font-size: 2rem;
    font-weight: 700;
    color: var(--fg);
    margin-bottom: 0.75rem;
}

.value-item h3 {
    font-family: var(--font-mono);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.value-item p {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ---- CTA ---- */
.cta-section {
    text-align: center;
    padding: 8rem 3rem;
}

.cta-content h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
}

.cta-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* ---- FOOTER ---- */
footer {
    border-top: 1px solid var(--border);
    padding: 2rem 3rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-content .accent {
    color: var(--fg);
}

.footer-right {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--muted);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
    header {
        padding: 1rem 1.5rem;
    }

    nav {
        flex-direction: column;
        gap: 0.75rem;
    }

    .nav-links {
        gap: 1rem;
        width: 100%;
        justify-content: flex-start;
    }

    .hero {
        flex-direction: column;
        padding: 9rem 1.5rem 3rem;
        min-height: auto;
    }

    .hero-decoration {
        display: none;
    }

    .hero-cta {
        flex-direction: column;
    }

    .section {
        padding: 4rem 1.5rem;
    }

    .cards,
    .product-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }

    .spotlight-content {
        grid-template-columns: 1fr;
    }

    .cta-links {
        flex-direction: column;
        align-items: center;
    }

    .cta-section {
        padding: 5rem 1.5rem;
    }
}
