:root {
    --bg: #0a0a0a;
    --bg-alt: #131313;
    --surface: #1a1a1a;
    --text: #f0f0f0;
    --muted: #8a8a8a;
    --accent: #ffa500;
    --accent-soft: rgba(255, 165, 0, 0.12);
    --gold: #ffd700;
    --border: #232323;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
    font-size: 17px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.15s ease;
}

a:hover {
    color: var(--gold);
}

code {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 1px 6px;
    font-family: "SF Mono", Menlo, Consolas, monospace;
    font-size: 0.9em;
    color: var(--gold);
}

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

/* HERO */

.hero {
    background: radial-gradient(ellipse at top, #1a1410 0%, var(--bg) 60%);
    padding: 96px 0 80px;
    border-bottom: 1px solid var(--border);
}

.hero-inner {
    text-align: center;
}

.hero-logo {
    width: 140px;
    height: 140px;
    margin-bottom: 32px;
    border-radius: 24px;
    box-shadow: 0 12px 40px rgba(255, 165, 0, 0.15), 0 2px 8px rgba(0, 0, 0, 0.4);
}

.hero h1 {
    font-family: "Oswald", sans-serif;
    font-weight: 700;
    font-size: clamp(40px, 6vw, 72px);
    line-height: 1.05;
    margin: 0 0 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.tagline {
    font-size: clamp(17px, 2vw, 21px);
    color: var(--muted);
    max-width: 640px;
    margin: 0 auto 36px;
    line-height: 1.5;
}

.cta-row {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    font-family: "Oswald", sans-serif;
    font-weight: 500;
    font-size: 17px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: transform 0.12s ease, background 0.15s ease, color 0.15s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

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

.btn-primary:hover {
    background: var(--gold);
    color: #1a1006;
}

.btn-ghost {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-ghost:hover {
    color: var(--gold);
    border-color: var(--accent);
}

.hero-meta {
    color: var(--muted);
    font-size: 14px;
    letter-spacing: 0.5px;
    margin: 0;
}

/* SECTIONS */

.section {
    padding: 80px 0;
    border-bottom: 1px solid var(--border);
}

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

.section h2 {
    font-family: "Oswald", sans-serif;
    font-weight: 700;
    font-size: clamp(28px, 4vw, 42px);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 24px;
}

.lead {
    font-size: 19px;
    color: var(--text);
    margin: 0 0 24px;
    max-width: 760px;
}

.why-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: grid;
    gap: 16px;
}

.why-list li {
    background: var(--surface);
    border: 1px solid var(--border);
    border-left: 3px solid var(--accent);
    border-radius: 6px;
    padding: 16px 20px;
    color: var(--muted);
}

.why-list strong {
    color: var(--text);
}

/* FEATURES */

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 32px;
}

.feature {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 24px;
    transition: border-color 0.15s ease, transform 0.15s ease;
}

.feature:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
}

.feature h3 {
    font-family: "Oswald", sans-serif;
    font-weight: 500;
    font-size: 19px;
    letter-spacing: 0.3px;
    color: var(--gold);
    margin: 0 0 10px;
    text-transform: uppercase;
}

.feature p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.55;
}

/* STEPS */

.steps {
    list-style: none;
    counter-reset: step;
    padding: 0;
    margin: 32px 0 0;
    display: grid;
    gap: 20px;
}

.steps li {
    counter-increment: step;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 22px 24px 22px 76px;
    position: relative;
}

.steps li::before {
    content: counter(step);
    position: absolute;
    left: 20px;
    top: 22px;
    width: 40px;
    height: 40px;
    background: var(--accent-soft);
    color: var(--accent);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-family: "Oswald", sans-serif;
    font-weight: 700;
    font-size: 18px;
}

.steps li strong {
    display: block;
    font-family: "Oswald", sans-serif;
    font-weight: 500;
    font-size: 18px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 6px;
}

.steps li span {
    display: block;
    color: var(--muted);
    font-size: 15.5px;
    line-height: 1.6;
}

/* FOOTER */

footer {
    padding: 40px 0;
    background: var(--bg-alt);
}

.footer-inner {
    text-align: center;
}

.footer-inner p {
    margin: 0 0 8px;
}

.muted {
    color: var(--muted);
    font-size: 14px;
}

@media (max-width: 640px) {
    .hero {
        padding: 64px 0 56px;
    }

    .hero-logo {
        width: 110px;
        height: 110px;
        margin-bottom: 24px;
    }

    .section {
        padding: 56px 0;
    }

    .steps li {
        padding: 60px 22px 22px 22px;
    }

    .steps li::before {
        position: static;
        margin-bottom: 12px;
    }
}
