/* ===================================================
   HANDSHAKE CLUB — Skeleton Styles
   
   Minimal CSS for the static HTML skeleton.
   The full design system is loaded dynamically via
   the content API. This file only prevents FOUC.
   =================================================== */

/* ── Fonts ── */
@import url('https://api.fontshare.com/v2/css?f[]=clash-grotesk@300,400,500,600,700&display=swap');

/* ── CSS Custom Properties ── */
:root {
    /* Colors */
    --bg-primary: #050a14;
    --bg-secondary: #0b1224;
    --text-primary: #f0f2f8;
    --text-secondary: #8892a8;
    --accent: #d4a853;

    /* Typography */
    --font-primary: 'Clash Grotesk', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

    /* Spacing */
    --nav-height: 80px;
}

/* ── Reset & Base ── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

ul,
ol {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    color: inherit;
}

/* ── Prevent hamburger menu flash on mobile ── */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
}

/* ── What We Offer — critical skeleton ──
   Prevents layout FOUC during the dynamic CSS injection window.
   home.css applies the same rules — zero visual change on injection. ── */
.offer-name {
    padding-left: 0;
    margin-top: 2.5rem;
    margin-bottom: 0.5rem;
}

.what-we-do-content .offer-name:first-child {
    margin-top: 0;
}

/* ── Container centering — critical skeleton ──
   Without this, all sections pop from full-width left to centered on injection. ── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}