body {
    margin: 0;
    font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background: radial-gradient(circle at top, #ffffff, #f6f4f1 60%, #f2f6f9);
    color: #1f2937;
    line-height: 1.6;
}

:root {
    --ink: #111827;
    --muted: #4b5563;
    --line: #e5e7eb;
    --surface: #ffffff;
    --surface-2: #f8fafc;
    --accent: #1d4ed8;
    --accent-strong: #1e40af;
    --shadow-soft: 0 18px 40px rgba(15, 23, 42, 0.12);
}

.page {
    max-width: 880px;
    margin: 0 auto;
    padding: 0 24px 64px;
}

.site-header {
    display: flex;
    align-items: center;
    padding: 40px 0 24px;
}

.site-logo {
    height: 37px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 6px 16px rgba(15, 23, 42, 0.15));
}

.hero {
    padding: 14px 0 10px;
    text-align: left;
}

h1 {
    font-family: "Fraunces", "Times New Roman", serif;
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 16px;
    color: var(--ink);
}

h2 {
    font-family: "Fraunces", "Times New Roman", serif;
    font-size: 28px;
    margin-top: 0;
    color: var(--ink);
}

p {
    margin-bottom: 16px;
    color: var(--muted);
    font-size: 17px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 24px;
    padding: 14px 27px;
    background: var(--accent);
    color: white;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.01em;
    box-shadow: 0 12px 24px rgba(29, 78, 216, 0.24);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.cta-button:hover {
    background: var(--accent-strong);
    transform: translateY(-1px);
    box-shadow: 0 16px 30px rgba(30, 64, 175, 0.28);
}

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

.section:last-of-type {
    border-bottom: none;
}

.section + .section {
    margin-top: 24px;
}

.section--panel {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow-soft);
}

.section--cta {
    background: linear-gradient(135deg, #eef2ff, #ffffff 55%, #eff6ff);
    border: 1px solid #e0e7ff;
    border-radius: 24px;
    padding: 44px;
    text-align: center;
}

ul,
ol {
    padding-left: 22px;
    margin: 16px 0 0;
    color: var(--muted);
}

ol li + li,
ul li + li {
    margin-top: 10px;
}

footer {
    text-align: center;
    padding: 40px 24px 48px;
    color: #6b7280;
    font-size: 14px;
}

.email-form {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.email-form.is-submitting input[type="email"],
.email-form.is-submitting input[type="submit"] {
    opacity: 0.6;
    cursor: not-allowed;
    box-shadow: none;
}

.email-form.is-submitting input[type="email"] {
    color: #6b7280;
}

.email-form.is-submitting input[type="submit"] {
    background: #9ca3af;
}

.signup-message {
    margin-top: 12px;
    font-weight: 600;
    color: var(--ink);
}

.honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

input[type="email"] {
    padding: 10px 14px;
    flex: 1 1 260px;
    border: 1px solid #d1d5db;
    border-radius: 999px;
    background: var(--surface);
    font-size: 16px;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
}

input[type="email"]:focus-visible {
    outline: 3px solid rgba(37, 99, 235, 0.25);
    outline-offset: 2px;
}

input[type="submit"] {
    padding: 12px 24px;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 700;
    letter-spacing: 0.01em;
    box-shadow: 0 12px 24px rgba(29, 78, 216, 0.24);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

input[type="submit"]:hover {
    background: var(--accent-strong);
    transform: translateY(-1px);
    box-shadow: 0 16px 30px rgba(30, 64, 175, 0.28);
}

input[type="submit"]:focus-visible {
    outline: 3px solid rgba(37, 99, 235, 0.25);
    outline-offset: 2px;
}

@media (max-width: 600px) {
    .site-header {
        padding-top: 32px;
    }

    .site-logo {
        height: 30px;
    }

    h1 {
        font-size: 38px;
    }

    .section--panel,
    .section--cta {
        padding: 32px 24px;
    }

    input[type="email"] {
        width: 100%;
    }

    input[type="submit"] {
        width: 100%;
    }
}