:root {
    --bg:            #0b0f17;
    --bg-elev:       #111725;
    --surface:       #151d2e;
    --border:        rgba(255, 255, 255, 0.08);
    --text:          #e8ecf4;
    --text-muted:    #97a3b8;
    --accent:        #ff6a3d;
    --accent-hover:  #ff855f;
    --accent-soft:   rgba(255, 106, 61, 0.14);
    --radius:        14px;
    --maxw:          1080px;
    --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
            Arial, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
}

.page {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header */
.site-header {
    display: flex;
    align-items: center;
    padding: 28px 0;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text);
}

.logo-mark {
    width: 26px;
    height: 26px;
    border-radius: 7px;
    background: linear-gradient(135deg, var(--accent), #ffb347);
    box-shadow: 0 0 0 1px var(--border), 0 6px 18px var(--accent-soft);
}

.logo-text {
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

/* Hero */
.hero {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 72px 0 56px;
}

.hero-inner {
    max-width: 720px;
}

.eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    background: var(--accent-soft);
    padding: 6px 12px;
    border-radius: 999px;
    margin-bottom: 22px;
}

.headline {
    font-size: clamp(2.1rem, 5vw, 3.4rem);
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.subhead {
    font-size: clamp(1.05rem, 2vw, 1.28rem);
    color: var(--text-muted);
    max-width: 620px;
    margin-bottom: 36px;
}

/* Buttons */
.actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    padding: 14px 24px;
    border-radius: var(--radius);
    transition: transform 0.15s ease, background 0.15s ease;
}

.btn-primary {
    background: var(--accent);
    color: #1a1005;
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.arrow {
    transition: transform 0.15s ease;
}

.btn-primary:hover .arrow {
    transform: translateX(3px);
}

/* Pillars */
.pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    padding: 24px 0 72px;
}

.pillar {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 26px 24px;
}

.pillar h2 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.pillar p {
    color: var(--text-muted);
    font-size: 0.96rem;
}

/* Footer */
.site-footer {
    margin-top: auto;
    padding: 28px 0 40px;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.9rem;
}

.site-footer a {
    color: var(--text);
    text-decoration: none;
    border-bottom: 1px solid var(--accent);
    padding-bottom: 1px;
}

.site-footer a:hover {
    color: var(--accent);
}

/* Responsive */
@media (max-width: 720px) {
    .pillars {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 48px 0 40px;
    }
}
