:root {
    color-scheme: light;
    --accent: #2f73e8;
    --accent-hover: #1f5fc7;
    --ink: #0b1220;
    --body: #475467;
    --body-strong: #344054;
    --muted: #667085;
    --placeholder: #98a2b3;
    --line: #d0d5dd;
    --line-soft: #e4e7ec;
    --page-blue: #f4f8ff;
    --icon-blue: #eaf2ff;
    --success: #22a06b;
    --success-bg: #ecfdf3;
    --error: #b42318;
    --error-bg: #fef3f2;
    --font: Arial, Helvetica, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body {
    background: #fff;
    color: var(--body);
    font-family: var(--font);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 2px;
}

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

button,
input {
    font: inherit;
}

.landing-page {
    min-height: 100dvh;
    background:
        radial-gradient(circle at 85% 12%, rgba(47, 115, 232, 0.12), transparent 34%),
        linear-gradient(135deg, var(--page-blue) 0%, #fff 62%);
}

.landing-main {
    display: flex;
    max-width: 1180px;
    flex-wrap: wrap;
    gap: clamp(32px, 5vw, 60px);
    align-items: flex-start;
    margin: 0 auto;
    padding: clamp(40px, 7vw, 88px) clamp(20px, 4vw, 40px);
}

.message-column {
    flex: 1 1 400px;
    min-width: min(100%, 380px);
    text-align: center;
}

.eyebrow {
    margin: 0 0 18px;
    color: var(--accent);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    line-height: 1.65;
    text-transform: uppercase;
}

h1 {
    margin: 0 0 20px;
    color: var(--ink);
    font-size: clamp(2.4rem, 5vw, 4.25rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 0.99;
    text-wrap: balance;
}

.hero-copy {
    max-width: 34ch;
    margin: 0 auto 34px;
    color: var(--body);
    font-size: 1.125rem;
    line-height: 1.6;
    text-wrap: pretty;
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
    align-items: center;
    margin: 0 0 32px;
    padding: 0;
    list-style: none;
}

.benefit-list li {
    display: flex;
    width: 100%;
    max-width: 510px;
    gap: 16px;
    align-items: flex-start;
    color: var(--body-strong);
    font-size: 1.0625rem;
    line-height: 1.5;
    text-align: left;
    text-wrap: pretty;
}

.benefit-icon,
.message-cta__icon,
.success-state__icon {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.benefit-icon {
    width: 44px;
    height: 44px;
    background: var(--icon-blue);
    color: var(--accent);
}

.accent-text {
    color: var(--accent);
    font-weight: 700;
}

.dark-text {
    color: var(--ink);
    font-weight: 800;
}

.message-cta {
    display: flex;
    gap: 14px;
    align-items: center;
    justify-content: center;
    color: var(--ink);
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 800;
    letter-spacing: -0.01em;
}

.message-cta__icon {
    width: 44px;
    height: 44px;
    background: var(--accent);
    box-shadow: 0 8px 20px rgba(47, 115, 232, 0.28);
    color: #fff;
}

.form-card {
    flex: 1 1 420px;
    min-width: min(100%, 340px);
    padding: clamp(26px, 3.5vw, 38px);
    border: 1px solid var(--line-soft);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 24px 60px rgba(16, 24, 40, 0.1);
}

.form-intro {
    text-align: center;
}

.form-intro > p {
    margin: 0 0 6px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.65;
}

.form-intro h2,
.success-state h2 {
    margin: 0;
    color: var(--ink);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.form-intro h2 {
    margin-bottom: 14px;
    font-size: clamp(1.5rem, 3vw, 1.9rem);
    line-height: 1.1;
}

.form-intro > span {
    display: block;
    margin: 0 0 26px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.55;
}

.notice {
    margin: -6px 0 18px;
    padding: 12px 14px;
    border: 1px solid;
    border-radius: 10px;
    font-size: 13px;
    line-height: 1.5;
}

.notice strong {
    display: block;
    color: var(--error);
}

.notice p {
    margin: 2px 0 0;
    color: var(--body-strong);
}

.notice--error {
    border-color: #fecdca;
    background: var(--error-bg);
}

.lead-form {
    display: block;
}

.name-fields {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 16px;
}

.name-fields .field {
    flex: 1 1 140px;
    min-width: 130px;
}

.field {
    display: block;
    margin-bottom: 16px;
}

.name-fields .field {
    margin-bottom: 0;
}

.field--email {
    margin-bottom: 18px;
}

.field label {
    display: block;
    margin-bottom: 7px;
    color: var(--body-strong);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.65;
}

.field input {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #fff;
    color: #101828;
    font-family: inherit;
    font-size: 15px;
    line-height: normal;
}

.field input::placeholder {
    color: var(--placeholder);
}

.field input:focus {
    border-color: var(--accent);
    outline: none;
    box-shadow: 0 0 0 3px rgba(47, 115, 232, 0.15);
}

.field input[aria-invalid="true"] {
    border-color: var(--error);
}

.field-error {
    display: block;
    margin-top: 5px;
    color: var(--error);
    font-size: 12px;
    line-height: 1.35;
}

.field-error:empty {
    display: none;
}

.consent {
    display: flex;
    gap: 11px;
    align-items: flex-start;
    margin-bottom: 20px;
    cursor: pointer;
}

.consent input {
    width: 17px;
    height: 17px;
    flex: 0 0 auto;
    margin: 3px 3px 3px 4px;
    accent-color: var(--accent);
}

.consent label {
    color: var(--muted);
    cursor: pointer;
    font-size: 13px;
    line-height: 1.5;
}

.consent-error {
    margin: -14px 0 16px 28px;
}

.submit-button {
    width: 100%;
    padding: 16px;
    border: 0;
    border-radius: 10px;
    background: var(--accent);
    box-shadow: 0 8px 20px rgba(47, 115, 232, 0.22);
    color: #fff;
    cursor: pointer;
    font-family: inherit;
    font-size: 17px;
    font-weight: 700;
    line-height: normal;
    transition: background-color 180ms ease, transform 180ms ease;
}

.submit-button:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
}

.submit-button:focus-visible,
:focus-visible {
    outline: 3px solid rgba(47, 115, 232, 0.35);
    outline-offset: 3px;
}

.submit-button[disabled] {
    cursor: wait;
    opacity: 0.72;
}

.privacy-note {
    margin: 16px 0 0;
    color: var(--muted);
    font-size: 12.5px;
    line-height: 1.5;
    text-align: center;
}

.honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.success-state {
    padding: 24px 6px;
    text-align: center;
}

.success-state__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 18px;
    background: var(--success-bg);
    color: var(--success);
}

.success-state h2 {
    margin-bottom: 10px;
    font-size: 1.5rem;
    line-height: 1.2;
}

.success-state p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.6;
}

.confirmation-page {
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    background:
        radial-gradient(circle at 85% 12%, rgba(47, 115, 232, 0.12), transparent 34%),
        linear-gradient(135deg, var(--page-blue) 0%, #fff 62%);
}

.confirmation-main {
    display: grid;
    min-height: 0;
    flex: 1 0 auto;
    place-items: center;
    padding: 24px 20px;
}

.confirmation-card {
    width: min(100%, 580px);
    padding: clamp(30px, 6vw, 48px);
    border: 1px solid var(--line-soft);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 24px 60px rgba(16, 24, 40, 0.1);
    text-align: center;
}

.confirmation-card__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 18px;
}

.confirmation-card__icon--success {
    background: var(--success-bg);
    color: var(--success);
}

.confirmation-card__icon--neutral {
    background: var(--icon-blue);
    color: var(--accent);
}

.confirmation-card h1 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(2rem, 7vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
}

.confirmation-card > p {
    max-width: 48ch;
    margin: 18px auto 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.6;
}

.confirmation-card .submit-button {
    display: inline-block;
    width: auto;
    min-width: 210px;
    margin-top: 26px;
    text-decoration: none;
}

.site-footer {
    border-top: 1px solid rgba(208, 213, 221, 0.78);
    background: rgba(255, 255, 255, 0.74);
    padding: 20px clamp(20px, 4vw, 40px);
}

.site-footer__nav {
    display: flex;
    max-width: 1180px;
    flex-wrap: wrap;
    gap: 10px 28px;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.site-footer__nav a {
    color: var(--muted);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.5;
    text-decoration: none;
}

.site-footer__nav a:hover {
    color: var(--accent);
    text-decoration: underline;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}
