:root {
    --bg: #f7f8fc;
    --surface: #ffffff;
    --ink: #111827;
    --muted: #4b5563;
    --line: #d9deea;
    --primary: #ff6a3d;
    --accent: #f5b700;
    --deep: #0f172a;
    --ok: #0f9d84;
}

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

body {
    font-family: "Manrope", sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at 12% 14%, #ffe5cc 0%, #ffe5cc 12%, rgba(255, 229, 204, 0) 38%),
        radial-gradient(circle at 88% 18%, #ffe8a3 0%, #ffe8a3 10%, rgba(255, 232, 163, 0) 33%),
        linear-gradient(180deg, #ffffff 0%, var(--bg, #f7f8fc) 100%);
    min-height: 100vh;
    line-height: 1.6;
}

.shell {
    width: min(1120px, 92vw);
    margin: 0 auto;
    padding: 28px 0 84px;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 36px;
}

.nav img {
    width: min(320px, 56vw);
    height: auto;
    display: block;
}

.nav a,
.cta-main,
.cta-alt {
    text-decoration: none;
    border-radius: 999px;
    font-weight: 800;
    letter-spacing: 0.2px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav a {
    padding: 10px 18px;
    background: var(--surface);
    border: 1px solid var(--line);
    color: var(--deep);
    font-size: 14px;
}

.hero {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 24px;
    align-items: stretch;
    margin-bottom: 26px;
}

.hero-main,
.hero-side,
.panel {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: 0 24px 46px -34px rgba(15, 23, 42, 0.42);
}

.hero-main {
    padding: 44px;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 999px;
    background: #fff2eb;
    color: #c13d18;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 18px;
}

h1 {
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(32px, 4.3vw, 54px);
    line-height: 1.08;
    margin-bottom: 16px;
    max-width: 14ch;
}

.hero-main p {
    color: var(--muted);
    max-width: 58ch;
    font-size: 17px;
    margin-bottom: 26px;
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.cta-main {
    padding: 12px 22px;
    background: var(--primary);
    color: #fff;
}

.cta-alt {
    padding: 12px 22px;
    background: #fff6d7;
    color: #6a4a00;
    border: 1px solid #f2da8d;
}

.stats {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 13px;
    color: var(--muted);
}

.stats span {
    background: #f8fafc;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 6px 12px;
}

.hero-side {
    padding: 24px;
    display: grid;
    gap: 12px;
    align-content: center;
    background: linear-gradient(160deg, #0f172a 0%, #1d3557 100%);
    color: #eef2ff;
}

.hero-side h2 {
    font-family: "Space Grotesk", sans-serif;
    font-size: 26px;
    line-height: 1.15;
}

.hero-side p {
    color: #dbe4ff;
    font-size: 15px;
    margin-bottom: 8px;
}

.check {
    display: grid;
    gap: 8px;
    list-style: none;
    font-size: 14px;
}

.check li::before {
    content: "✓";
    color: #f5b700;
    margin-right: 8px;
    font-weight: 800;
}

.grid {
    margin-top: 22px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.panel {
    padding: 22px;
}

.panel h3 {
    font-family: "Space Grotesk", sans-serif;
    font-size: 20px;
    margin-bottom: 10px;
}

.panel p,
.panel li {
    color: var(--muted);
    font-size: 15px;
}

.panel ul {
    padding-left: 18px;
    display: grid;
    gap: 6px;
}

.flow {
    list-style: none;
    display: grid;
    gap: 10px;
    counter-reset: step;
    margin-top: 2px;
}

.flow li {
    background: #f8fafc;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 12px 14px;
    position: relative;
    padding-left: 48px;
}

.flow li::before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 12px;
    font-weight: 800;
    color: #fff;
    background: var(--ok);
}

.footer-cta {
    margin-top: 24px;
    padding: 30px;
    border-radius: 24px;
    border: 1px solid #f0d6c9;
    background: linear-gradient(90deg, #fff0e8 0%, #fffbe8 100%);
    text-align: center;
}

.footer-cta h4 {
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(26px, 3.2vw, 36px);
    margin-bottom: 8px;
    color: #1f2937;
}

.footer-cta p {
    color: #4b5563;
    margin-bottom: 14px;
}

.legal {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    font-size: 14px;
}

.legal a {
    color: #334155;
    text-decoration: none;
    border-bottom: 1px solid rgba(51, 65, 85, 0.35);
}

.legal a:hover {
    color: #0f172a;
    border-bottom-color: #0f172a;
}

.cta-main:hover,
.cta-alt:hover,
.nav a:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 18px -12px rgba(15, 23, 42, 0.7);
}

@media (max-width: 980px) {
    .hero {
        grid-template-columns: 1fr;
    }

    .grid {
        grid-template-columns: 1fr;
    }

    .hero-main {
        padding: 34px 24px;
    }

    .nav {
        flex-direction: column;
        align-items: flex-start;
    }
}
