:root {
    color-scheme: light;
    --bg: #f7f4ef;
    --panel: #ffffff;
    --text: #1b2430;
    --muted: #6c7482;
    --line: #ddd7cd;
    --accent: #d97706;
    --accent-strong: #b45309;
    --accent-soft: #fff1dd;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, #fff4e4 0, transparent 34%),
        linear-gradient(180deg, #fbfaf7 0%, var(--bg) 100%);
    line-height: 1.65;
}

a {
    color: var(--accent-strong);
}

.wrap {
    max-width: 980px;
    margin: 0 auto;
    padding: 56px 20px 72px;
}

.hero,
.card {
    background: var(--panel);
    border: 1px solid var(--line);
    box-shadow: 0 18px 50px rgba(27, 36, 48, 0.08);
}

.hero {
    border-radius: 28px;
    padding: 36px;
}

.card {
    border-radius: 24px;
    padding: 32px;
}

.hero-copy {
    max-width: 760px;
}

.eyebrow {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 999px;
    background: var(--accent-soft);
    color: var(--accent-strong);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
}

h1,
h2,
h3 {
    line-height: 1.15;
    margin: 0 0 16px;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
}

h2 {
    font-size: 1.2rem;
}

h3 {
    font-size: 1.05rem;
    margin-top: 24px;
}

.stacked h2 {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
}

p,
ul {
    margin: 0 0 16px;
}

ul {
    padding-left: 20px;
}

.muted,
.meta,
.micro-note,
footer {
    color: var(--muted);
}

.meta {
    margin-bottom: 24px;
}

.actions,
.grid {
    display: grid;
    gap: 16px;
    margin-top: 28px;
}

.actions {
    gap: 18px;
}

.primary-action {
    display: flex;
    justify-content: center;
}

.primary-action .button {
    min-width: min(100%, 320px);
}

.secondary-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
}

.grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.feature-list {
    display: grid;
    gap: 12px;
    margin-top: 24px;
}

.feature-row {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 12px;
    align-items: start;
}

.feature-dot {
    width: 18px;
    height: 18px;
    border-radius: 999px;
    background: var(--accent-soft);
    border: 1px solid rgba(217, 119, 6, 0.18);
    position: relative;
    top: 4px;
}

.legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 16px;
}

.legal-links a,
.secondary-link {
    color: var(--accent-strong);
    text-decoration: none;
    font-weight: 600;
}

.secondary-link {
    display: inline-block;
    margin-bottom: 24px;
}

.button,
.cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 18px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 600;
}

.button {
    border: 1px solid var(--line);
    color: var(--text);
    background: #fff;
}

.button.primary,
.cta {
    background: var(--accent);
    border: 1px solid var(--accent);
    color: #fff;
}

.micro-note {
    margin-top: 18px;
    font-size: 0.95rem;
}

footer {
    margin-top: 28px;
    font-size: 0.95rem;
}

@media (max-width: 720px) {
    .secondary-actions {
        grid-template-columns: 1fr;
    }

    .hero,
    .card {
        padding: 24px;
    }
}
