:root {
    --accent: #EF5350;
    --bg: #f2f2f2;
    --text: #222222;
    --muted: #666;
    --partials-bg: #EF5350;
    --partials-border: #c32825;
}

* {
    box-sizing: border-box
}

/* make the page use full viewport and push footer to bottom */
html,
body {
    height: 100%;
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial;
}

/* new: layout that keeps footer at bottom without fixed positioning */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1 0 auto;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.site-header {
    border-bottom: 1px solid var(--partials-border);
    background: var(--partials-bg);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
}

.brand {
    font-weight: 700;
    color: #b70300;
    text-decoration: none;
    font-size: 1.25rem;
}

.main-nav a {
    margin-left: 16px;
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
}

.main-nav a:hover {
    color: #b70300;
}

/* Hero */
.hero {
    padding: 48px 0;
}

.hero-inner {
    display: flex;
    gap: 32px;
    align-items: stretch;
    flex-wrap: wrap;
}

.hero-copy {
    flex: 1;
    min-width: 300px;
}

.hero-copy h1 {
    font-size: 2rem;
    margin: 0 0 12px;
    color: var(--text);
}

.lead {
    font-size: 1.05rem;
    line-height: 1.5;
    color: var(--muted);
    margin-bottom: 16px;
}

.features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.features li {
    padding: 6px 0;
    border-left: 3px solid transparent
}

.features li::before {
    content: "•";
    color: var(--accent);
    margin-right: 10px
}

/* Visual card */
.hero-visual {
    width: 320px;
    min-width: 260px;
}

.card {
    background: #fff;
    border: 1px solid #f2f2f2;
    padding: 18px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
    text-align: center;
    cursor: default;
}

.wheel-placeholder {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: linear-gradient(135deg, #fff0, #fff);
    font-size: 1.25rem;
    color: var(--muted);
    cursor: pointer;
}

/* CTA */
.cta-row {
    display: flex;
    gap: 12px;
    margin-top: 18px;
    flex-wrap: wrap
}

.btn {
    display: inline-block;
    padding: 10px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    border: 2px solid transparent
}

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

.btn.ghost {
    background: transparent;
    color: var(--accent);
    border-color: var(--accent)
}

/* Footer - reduced padding and no extra margin so it doesn't take big space */
.site-footer {
    border-top: 1px solid var(--partials-border);
    padding: 12px 0;
    margin-top: 0;
    text-align: center;
    background: var(--partials-bg);
}

/* Responsive */
@media (max-width:880px) {
    .hero-inner {
        flex-direction: column-reverse
    }

    .hero-visual {
        width: 100%
    }
}