body.site-page {
    min-height: 100vh;
    color: #172033;
    background:
        radial-gradient(circle at 12% 4%, rgba(101, 115, 232, .11), transparent 26rem),
        radial-gradient(circle at 88% 16%, rgba(83, 170, 139, .1), transparent 24rem),
        #f7f9fc;
}

.simple-header {
    padding: 20px 0;
    background: rgba(255, 255, 255, .8);
    border-bottom: 1px solid #e5eaf2;
    backdrop-filter: blur(15px);
}

.simple-header .header-inner { justify-content: space-between; }

.back-home {
    color: #5b6680;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.back-home:hover { color: #4f5bd5; }

.page-hero {
    max-width: 810px;
    padding: 86px 0 42px;
    text-align: center;
}

.page-hero h1 {
    margin-bottom: 20px;
    font-size: clamp(44px, 6vw, 68px);
}

.page-hero p {
    max-width: 670px;
    margin: 0 auto;
    color: #657088;
    font-size: 17px;
}

.page-card {
    width: min(calc(100% - 34px), 900px);
    margin: 0 auto 100px;
    padding: clamp(30px, 6vw, 70px);
    background: rgba(255, 255, 255, .93);
    border: 1px solid #e4e8f1;
    border-radius: 30px;
    box-shadow: 0 24px 70px rgba(36, 49, 82, .09);
}

.legal-copy h2,
.legal-copy h3 {
    color: #202b43;
    letter-spacing: -.025em;
    line-height: 1.25;
}

.legal-copy h2 {
    margin: 42px 0 13px;
    font-size: 23px;
}

.legal-copy h2:first-child { margin-top: 0; }

.legal-copy h3 {
    margin: 32px 0 10px;
    font-size: 18px;
}

.legal-copy p,
.legal-copy li {
    color: #5f6a80;
    font-size: 15px;
    line-height: 1.8;
}

.legal-copy p { margin: 0 0 17px; }
.legal-copy strong { color: #334059; }

.updated {
    display: inline-flex;
    margin-bottom: 28px;
    padding: 7px 12px;
    color: #4f5bd5;
    background: #f0f2ff;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.faq-list {
    display: grid;
    gap: 13px;
}

.faq-list details {
    overflow: hidden;
    background: #fbfcfe;
    border: 1px solid #e3e7f0;
    border-radius: 17px;
}

.faq-list summary {
    position: relative;
    padding: 21px 54px 21px 22px;
    color: #29354e;
    cursor: pointer;
    font-size: 15px;
    font-weight: 750;
    list-style: none;
}

.faq-list summary::-webkit-details-marker { display: none; }

.faq-list summary::after {
    position: absolute;
    top: 18px;
    right: 20px;
    display: grid;
    place-items: center;
    width: 27px;
    height: 27px;
    color: #4f5bd5;
    background: #eef0ff;
    border-radius: 9px;
    content: "+";
    font-size: 19px;
    line-height: 1;
}

.faq-list details[open] summary::after { content: "−"; }

.faq-list details p {
    margin: 0;
    padding: 0 22px 22px;
    color: #657088;
    font-size: 14px;
    line-height: 1.75;
}

.form-intro {
    max-width: 620px;
    margin: 0 auto 30px;
    color: #657088;
    text-align: center;
}

.quiet-form {
    display: grid;
    gap: 14px;
    max-width: 520px;
    margin: 0 auto;
}

.quiet-form label {
    color: #3f4b63;
    font-size: 13px;
    font-weight: 750;
}

.quiet-form input,
.quiet-form textarea {
    width: 100%;
    padding: 13px 16px;
    color: #202b43;
    background: #fbfcfe;
    border: 1px solid #dce2ed;
    border-radius: 14px;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.quiet-form input { min-height: 54px; }

.quiet-form textarea {
    min-height: 170px;
    line-height: 1.65;
    resize: vertical;
}

.quiet-form input:focus,
.quiet-form textarea:focus {
    border-color: #7280e2;
    box-shadow: 0 0 0 4px rgba(79, 91, 213, .12);
}

.quiet-form [aria-invalid="true"] {
    border-color: #d94a59;
    box-shadow: 0 0 0 4px rgba(217, 74, 89, .1);
}

.primary-button {
    min-height: 54px;
    padding: 13px 20px;
    color: white;
    background: linear-gradient(135deg, #5967dc, #7658cf);
    border: 0;
    border-radius: 14px;
    box-shadow: 0 13px 30px rgba(79, 91, 213, .24);
    cursor: pointer;
    font-weight: 750;
    transition: transform .2s ease, box-shadow .2s ease;
}

.primary-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 35px rgba(79, 91, 213, .31);
}

.primary-button:disabled {
    opacity: .72;
    cursor: wait;
    transform: none;
    box-shadow: 0 9px 22px rgba(79, 91, 213, .18);
}

.primary-button:focus-visible {
    outline: 3px solid rgba(79, 91, 213, .3);
    outline-offset: 4px;
}

.form-note {
    min-height: 20px;
    margin: 2px 0 0;
    color: #657088;
    font-size: 12px;
    text-align: center;
}

.form-note.is-error,
.field-error,
.form-alert {
    color: #c93648;
}

.field-error {
    margin: 1px 2px 0;
    font-size: 12px;
    font-weight: 650;
}

.field-error[hidden] { display: none; }

.form-alert {
    margin: 0 auto 24px;
    padding: 13px 15px;
    background: #fff1f3;
    border: 1px solid #f4cbd1;
    border-radius: 13px;
    font-size: 13px;
    text-align: center;
}

.support-notes {
    max-width: 620px;
    margin: 34px auto 0;
    padding-top: 26px;
    border-top: 1px solid #e7eaf1;
}

.support-notes p {
    margin: 0 0 12px;
    color: #68738a;
    font-size: 13px;
    line-height: 1.7;
}

.login-wrap {
    display: grid;
    place-items: center;
    min-height: calc(100vh - 80px);
    padding: 50px 17px;
}

.login-card {
    width: min(100%, 460px);
    padding: 48px;
    background: rgba(255, 255, 255, .94);
    border: 1px solid #e1e6ef;
    border-radius: 28px;
    box-shadow: 0 26px 75px rgba(37, 50, 83, .13);
}

.login-card .brand {
    justify-content: center;
    margin-bottom: 36px;
}

.login-card h1 {
    margin-bottom: 11px;
    font-size: 35px;
    text-align: center;
}

.login-card > p {
    margin: 0 0 31px;
    color: #69748a;
    font-size: 14px;
    text-align: center;
}

.login-card .quiet-form { gap: 13px; }

.login-card .field { display: grid; gap: 7px; }

.contact-card { max-width: 760px; }
.contact-form { max-width: 590px; }

.contact-form .field {
    display: grid;
    gap: 7px;
}

.contact-privacy {
    margin: 3px 0 0;
    color: #788399;
    font-size: 11px;
    text-align: center;
}

.contact-privacy a {
    color: #5360ce;
    font-weight: 700;
}

.success-message {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    max-width: 590px;
    margin: 0 auto 28px;
    padding: 17px 19px;
    color: #276b57;
    background: #ecf8f3;
    border: 1px solid #c9eadf;
    border-radius: 16px;
}

.success-message > span {
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    width: 28px;
    height: 28px;
    color: white;
    background: #48a283;
    border-radius: 50%;
    font-size: 13px;
    font-weight: 800;
}

.success-message strong {
    display: block;
    color: #245f4d;
    font-size: 14px;
}

.success-message p {
    margin: 2px 0 0;
    color: #4d7a6b;
    font-size: 12px;
}

.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.simple-footer {
    padding: 30px 0;
    color: #7e899e;
    border-top: 1px solid #e2e7ef;
    font-size: 11px;
    text-align: center;
}

@media (max-width: 560px) {
    .page-hero { padding: 60px 0 30px; text-align: left; }
    .page-hero h1 { font-size: 43px; }
    .page-card { padding: 28px 22px; border-radius: 23px; }
    .login-card { padding: 37px 24px; border-radius: 23px; }
}
