:root {
    --ink: #0b0b0b;
    --orange: #f97316;
    --orange-dark: #ea580c;
    --orange-light: #fff4ec;
    --sky-light: #e0f2fe;
    --slate-200: #e2e8f0;
}

@keyframes fade-up {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    animation: fade-up 0.6s ease both;
}

.reveal-delay-1 {
    animation-delay: 0.08s;
}

.reveal-delay-2 {
    animation-delay: 0.16s;
}

.reveal-delay-3 {
    animation-delay: 0.24s;
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        animation: none;
    }
}

.bg-page {
    background:
        radial-gradient(900px circle at 12% 0%, rgba(249, 115, 22, 0.12), transparent 45%),
        radial-gradient(800px circle at 85% 5%, rgba(56, 189, 248, 0.14), transparent 45%),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

body {
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    color: var(--ink);
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.75rem 0.9rem;
    border-radius: 0.75rem;
    border: 1px solid var(--slate-200);
    background: #f8fafc;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.25);
    background: #fff;
}

.form-label {
    display: block;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 0.35rem;
}

.form-error {
    color: #be123c;
    font-size: 0.85rem;
    margin-top: 0.25rem;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    padding: 0.75rem 1.1rem;
    border-radius: 9999px;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    border: none;
    transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.35);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.1rem;
    border-radius: 9999px;
    border: 1px solid var(--ink);
    color: var(--ink);
    font-weight: 700;
    background: #fff;
    text-decoration: none;
    transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.btn-secondary:hover {
    transform: translateY(-1px);
    background: var(--sky-light);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.15);
}

.btn-accent {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.1rem;
    border-radius: 9999px;
    background: linear-gradient(135deg, var(--ink), #1f2937);
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid var(--ink);
    transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.btn-accent:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.35);
}

.badge {
    padding: 0.2rem 0.6rem;
    border-radius: 9999px;
    background: var(--orange-light);
    color: var(--orange-dark);
    font-weight: 700;
    font-size: 0.75rem;
}

.section-kicker {
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--orange);
}

.section-title {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 800;
    color: #0f172a;
    margin-top: 0.35rem;
}

.section-body {
    color: #475569;
    margin-top: 0.5rem;
}

.glass {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.honeypot-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
