.ksfa-register {
    --ksfa-navy: #102a43;
    --ksfa-blue: #1769aa;
    --ksfa-sky: #eaf4fb;
    --ksfa-green: #1f8a70;
    --ksfa-line: #d9e2ec;
    --ksfa-text: #243b53;
    --ksfa-muted: #627d98;
    width: min(100% - 32px, 920px);
    margin: 0 auto;
    padding: 64px 0 96px;
    color: var(--ksfa-text);
}

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

.ksfa-register [hidden] {
    display: none !important;
}

.ksfa-register__hero {
    padding: 44px;
    border-radius: 28px;
    color: #fff;
    background:
        radial-gradient(circle at 90% 12%, rgba(255,255,255,.16), transparent 28%),
        linear-gradient(135deg, #102a43 0%, #1769aa 68%, #1f8a70 130%);
    box-shadow: 0 18px 44px rgba(16, 42, 67, .18);
}

.ksfa-register__eyebrow {
    margin: 0 0 10px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .12em;
}

.ksfa-register__hero h1,
.ksfa-complete h1 {
    margin: 0;
    font-size: clamp(30px, 5vw, 48px);
    line-height: 1.16;
    letter-spacing: -.04em;
}

.ksfa-register__hero > p:not(.ksfa-register__eyebrow) {
    max-width: 690px;
    margin: 18px 0 0;
    color: rgba(255,255,255,.86);
    font-size: 17px;
    line-height: 1.75;
}

.ksfa-register__notice {
    display: flex;
    gap: 10px 18px;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 26px;
    padding: 16px 18px;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 14px;
    background: rgba(255,255,255,.1);
}

.ksfa-register__notice strong { color: #fff; }
.ksfa-register__notice span { color: rgba(255,255,255,.8); }

.ksfa-register__steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 28px 0;
    padding: 0;
    list-style: none;
}

.ksfa-register__steps li {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 54px;
    padding: 12px 16px;
    border: 1px solid var(--ksfa-line);
    border-radius: 14px;
    color: var(--ksfa-muted);
    background: #fff;
    font-weight: 700;
}

.ksfa-register__steps span {
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    border-radius: 50%;
    background: #edf2f7;
}

.ksfa-register__steps .is-current {
    border-color: #9cc8e8;
    color: var(--ksfa-blue);
    background: var(--ksfa-sky);
}

.ksfa-register__steps .is-current span {
    color: #fff;
    background: var(--ksfa-blue);
}

.ksfa-register__form {
    display: grid;
    gap: 20px;
}

.ksfa-owner-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 24px;
}

.ksfa-owner-card {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    min-height: 112px;
    padding: 20px;
    border: 2px solid #dbe5ee;
    border-radius: 16px;
    background: #fff;
    cursor: pointer;
    transition: border-color .18s ease, background .18s ease, box-shadow .18s ease;
}

.ksfa-owner-card:has(input:checked) {
    border-color: var(--ksfa-blue);
    background: var(--ksfa-sky);
    box-shadow: 0 0 0 3px rgba(23, 105, 170, .1);
}

.ksfa-owner-card input {
    flex: 0 0 auto;
    width: 21px;
    height: 21px;
    margin: 2px 0 0;
    accent-color: var(--ksfa-blue);
}

.ksfa-owner-card strong {
    display: block;
    color: var(--ksfa-navy);
    font-size: 18px;
}

.ksfa-owner-card small {
    display: block;
    margin-top: 8px;
    color: var(--ksfa-muted);
    line-height: 1.55;
}

.ksfa-form-section {
    padding: 30px;
    border: 1px solid var(--ksfa-line);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(16, 42, 67, .055);
}

.ksfa-form-section__heading {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding-bottom: 22px;
    border-bottom: 1px solid #e9eff5;
}

.ksfa-form-section__heading > span {
    display: grid;
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 11px;
    color: #fff;
    background: var(--ksfa-navy);
    font-size: 13px;
    font-weight: 800;
}

.ksfa-form-section__heading h2 {
    margin: 0;
    color: var(--ksfa-navy);
    font-size: 22px;
    line-height: 1.3;
}

.ksfa-form-section__heading p {
    margin: 5px 0 0;
    color: var(--ksfa-muted);
    line-height: 1.55;
}

.ksfa-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-top: 24px;
}

.ksfa-form-grid--nested {
    margin-top: 0;
}

.ksfa-profile-placeholder {
    padding: 22px;
    border: 1px dashed #9fb3c8;
    border-radius: 12px;
    color: var(--ksfa-muted);
    background: #f7f9fb;
    text-align: center;
}

.ksfa-inline-choice {
    display: flex;
    box-sizing: border-box;
    width: 100%;
    min-width: 0;
    min-inline-size: 0;
    gap: 12px 22px;
    align-items: center;
    flex-wrap: wrap;
    margin: 0;
    padding: 18px;
    border: 1px solid #dbe5ee;
    border-radius: 12px;
}

.ksfa-inline-choice__title {
    flex-basis: 100%;
    margin: 0;
    color: var(--ksfa-navy);
    font-weight: 750;
    line-height: 1.45;
    white-space: normal;
    word-break: keep-all;
}

.ksfa-inline-choice__title em {
    color: #d64545;
    font-size: 12px;
    font-style: normal;
}

.ksfa-inline-choice label {
    display: inline-flex;
    gap: 7px;
    align-items: center;
    font-weight: 700;
    cursor: pointer;
}

.ksfa-inline-choice input {
    width: 18px;
    height: 18px;
    accent-color: var(--ksfa-blue);
}

.ksfa-inline-choice small {
    flex-basis: 100%;
    color: var(--ksfa-muted);
    line-height: 1.55;
}

.ksfa-field--full { grid-column: 1 / -1; }

.ksfa-field label {
    display: block;
    margin-bottom: 8px;
    color: var(--ksfa-navy);
    font-size: 15px;
    font-weight: 750;
}

.ksfa-field label em {
    margin-left: 4px;
    color: #d64545;
    font-size: 12px;
    font-style: normal;
}

.ksfa-field label > span {
    margin-left: 5px;
    color: var(--ksfa-muted);
    font-size: 12px;
    font-weight: 500;
}

.ksfa-field input:not([type="hidden"]),
.ksfa-field select,
.ksfa-field textarea {
    width: 100%;
    min-height: 50px;
    padding: 0 14px;
    border: 1px solid #bcccdc;
    border-radius: 10px;
    color: var(--ksfa-text);
    background: #fff;
    font: inherit;
    transition: border-color .18s ease, box-shadow .18s ease;
}

.ksfa-field textarea {
    min-height: 120px;
    padding: 13px 14px;
    line-height: 1.65;
    resize: vertical;
}

.ksfa-field input[type="file"] {
    padding: 10px 12px;
}

.ksfa-field input:focus,
.ksfa-field select:focus,
.ksfa-field textarea:focus {
    outline: none;
    border-color: var(--ksfa-blue);
    box-shadow: 0 0 0 3px rgba(23, 105, 170, .13);
}

.ksfa-team-fields-heading {
    margin-bottom: 20px;
    padding: 18px 20px;
    border-radius: 14px;
    background: var(--ksfa-sky);
}

.ksfa-team-fields-heading h3 {
    margin: 0;
    color: var(--ksfa-navy);
    font-size: 20px;
}

.ksfa-team-fields-heading p {
    margin: 7px 0 0;
    color: var(--ksfa-muted);
    line-height: 1.6;
}

.ksfa-team-fields-heading strong { color: #d64545; }

.ksfa-field select {
    appearance: auto;
}

.ksfa-field label > span {
    margin-left: 4px;
    color: var(--ksfa-muted);
    font-size: 12px;
    font-weight: 600;
}

.ksfa-field input[readonly] { background: #f7f9fb; }
.ksfa-field input + input { margin-top: 10px; }
.ksfa-field__message { display: block; margin-top: 6px; color: #c0392b; font-size: 13px; }

.ksfa-address-search {
    display: grid;
    grid-template-columns: minmax(120px, 180px) auto;
    gap: 8px;
    margin-bottom: 10px;
}

.ksfa-address-search button {
    min-height: 50px;
    padding: 0 18px;
    border: 0;
    border-radius: 10px;
    color: #fff;
    background: var(--ksfa-navy);
    font-weight: 750;
    cursor: pointer;
}

.ksfa-consents {
    display: grid;
    gap: 12px;
    margin-top: 24px;
}

.ksfa-check {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 16px;
    border: 1px solid #dbe5ee;
    border-radius: 12px;
    line-height: 1.55;
    cursor: pointer;
}

.ksfa-check input {
    width: 20px;
    height: 20px;
    margin: 2px 0 0;
    accent-color: var(--ksfa-blue);
}

.ksfa-check strong { color: var(--ksfa-blue); }
.ksfa-check small { display: block; margin-top: 5px; color: var(--ksfa-muted); }
.ksfa-check small a,
.ksfa-policy-link {
    color: var(--ksfa-blue);
    text-decoration: underline;
}

.ksfa-policy-link {
    display: inline;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    font: inherit;
    cursor: pointer;
}
.ksfa-consents__policy { margin: 3px 0 0; color: var(--ksfa-muted); font-size: 13px; }
.ksfa-consents__policy a { color: var(--ksfa-blue); text-decoration: underline; }

.ksfa-check--all {
    border-width: 2px;
    border-color: #9cc8e8;
    background: var(--ksfa-sky);
}

.ksfa-check--all span { color: var(--ksfa-navy); font-weight: 700; }

.ksfa-captcha { margin-top: 24px; }

.ksfa-register__actions,
.ksfa-complete__actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 6px;
}

.ksfa-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border: 1px solid transparent;
    border-radius: 11px;
    font: inherit;
    font-weight: 800;
    text-decoration: none !important;
    cursor: pointer;
}

.ksfa-button--primary { color: #fff !important; background: var(--ksfa-blue); }
.ksfa-button--secondary { border-color: #c7d3df; color: var(--ksfa-text) !important; background: #fff; }
.ksfa-button:disabled { opacity: .55; cursor: wait; }

.ksfa-complete { min-height: 65vh; display: grid; place-items: center; }
.ksfa-complete__card {
    width: min(100%, 680px);
    padding: 54px;
    border: 1px solid var(--ksfa-line);
    border-radius: 26px;
    background: #fff;
    text-align: center;
    box-shadow: 0 20px 55px rgba(16, 42, 67, .12);
}
.ksfa-complete__mark {
    display: grid;
    width: 68px;
    height: 68px;
    margin: 0 auto 22px;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--ksfa-green);
    font-size: 34px;
    font-weight: 800;
}
.ksfa-complete .ksfa-register__eyebrow { color: var(--ksfa-blue); }
.ksfa-complete__card > p:not(.ksfa-register__eyebrow) { margin: 18px 0 0; color: var(--ksfa-muted); line-height: 1.75; }
.ksfa-complete__card .ksfa-complete__account { padding: 12px 16px; border-radius: 10px; color: var(--ksfa-navy); background: var(--ksfa-sky); }
.ksfa-complete__card .ksfa-complete__name { margin-bottom: -8px; color: var(--ksfa-navy); }
.ksfa-complete__actions { justify-content: center; margin-top: 28px; }

.ksfa-account-page { min-height: 65vh; }

.ksfa-account-card {
    padding: 34px;
    border: 1px solid var(--ksfa-line);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 16px 45px rgba(16, 42, 67, .08);
}

.ksfa-account-card + .ksfa-account-card { margin-top: 22px; }
.ksfa-login-card { width: min(100%, 520px); margin: 50px auto; padding: 46px; }
.ksfa-login-card h1 { margin: 8px 0 0; color: var(--ksfa-navy); font-size: clamp(30px, 5vw, 42px); }
.ksfa-account-card__intro { margin: 16px 0 0; color: var(--ksfa-muted); line-height: 1.7; }
.ksfa-login-form { display: grid; gap: 18px; margin-top: 30px; }
.ksfa-login-auto { display: inline-flex; gap: 8px; align-items: center; color: var(--ksfa-muted); font-size: 14px; cursor: pointer; }
.ksfa-login-auto input { width: 18px; height: 18px; accent-color: var(--ksfa-blue); }
.ksfa-login-submit { width: 100%; border: 0; }
.ksfa-account-links { display: flex; justify-content: space-between; gap: 16px; margin-top: 22px; font-size: 14px; }
.ksfa-account-links a { color: var(--ksfa-blue); text-decoration: underline; }

.ksfa-mypage__hero {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: flex-end;
    margin-bottom: 24px;
    padding: 34px;
    border-radius: 22px;
    color: #fff;
    background: linear-gradient(135deg, var(--ksfa-navy), var(--ksfa-blue));
}

.ksfa-mypage__hero .ksfa-register__eyebrow { color: #b9e3ff; }
.ksfa-mypage__hero h1 { margin: 8px 0 0; font-size: clamp(30px, 5vw, 46px); }
.ksfa-mypage__hero p:last-child { margin: 12px 0 0; color: rgba(255,255,255,.82); }
.ksfa-account-card__heading { display: flex; justify-content: space-between; gap: 20px; align-items: flex-start; }
.ksfa-account-card__heading h2 { margin: 10px 0 0; color: var(--ksfa-navy); font-size: clamp(24px, 4vw, 32px); }
.ksfa-account-card__tools { display: flex; flex-direction: column; gap: 10px; align-items: flex-end; }
.ksfa-account-card__tools .ksfa-button { min-height: 40px; padding: 9px 14px; font-size: 13px; }
.ksfa-status-badge { display: inline-flex; padding: 7px 11px; border-radius: 999px; color: #087f5b; background: #e6fcf5; font-size: 13px; font-weight: 800; }
.ksfa-account-id { padding: 8px 11px; border-radius: 8px; color: var(--ksfa-muted); background: #f4f7fa; font-size: 13px; }

.ksfa-account-summary {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    margin: 26px 0 0;
    overflow: hidden;
    border: 1px solid var(--ksfa-line);
    border-radius: 14px;
    background: var(--ksfa-line);
}

.ksfa-account-summary div { min-width: 0; padding: 18px; background: #fff; }
.ksfa-account-summary dt { color: var(--ksfa-muted); font-size: 13px; font-weight: 700; }
.ksfa-account-summary dd { margin: 7px 0 0; overflow-wrap: anywhere; color: var(--ksfa-navy); font-weight: 750; }

.ksfa-application-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 24px;
}

.ksfa-application-grid article { padding: 20px; border: 1px solid var(--ksfa-line); border-radius: 14px; background: #f9fbfd; }
.ksfa-application-grid article > span { display: block; color: var(--ksfa-muted); font-size: 13px; font-weight: 700; }
.ksfa-application-grid strong { display: block; margin-top: 8px; color: #7b8794; font-size: 20px; }
.ksfa-application-grid strong.is-complete { color: #087f5b; }
.ksfa-application-grid strong.is-not-applicable { color: #9aa5b1; }
.ksfa-application-grid p { margin: 10px 0 0; color: var(--ksfa-muted); font-size: 14px; line-height: 1.55; }
.ksfa-application-action {
    display: inline-flex;
    margin-top: 14px;
    padding: 9px 13px;
    border-radius: 9px;
    color: #fff !important;
    background: var(--ksfa-blue);
    font-size: 13px;
    font-weight: 800;
    text-decoration: none !important;
}
.ksfa-application-note {
    padding: 11px 12px;
    border-left: 3px solid var(--ksfa-blue);
    border-radius: 6px;
    background: #edf6ff;
}
.ksfa-application-note b { display: block; margin-bottom: 4px; color: var(--ksfa-navy); }
.ksfa-account-alert { text-align: center; }
.ksfa-account-alert h2 { margin: 0; color: var(--ksfa-navy); }
.ksfa-account-alert p { margin: 14px 0 22px; color: var(--ksfa-muted); }
.ksfa-success-notice { margin: 0 0 22px; padding: 15px 18px; border: 1px solid #96e0c2; border-radius: 12px; color: #087f5b; background: #e6fcf5; font-weight: 750; }
.ksfa-error-notice { margin: 22px 0; padding: 15px 18px; border: 1px solid #f1aeb5; border-radius: 12px; color: #9d2933; background: #fff1f2; font-weight: 750; line-height: 1.6; }
.ksfa-profile-edit-card { width: min(100%, 700px); margin: 34px auto; }
.ksfa-profile-edit-card h1 { margin: 8px 0 0; color: var(--ksfa-navy); font-size: clamp(30px, 5vw, 42px); }
.ksfa-profile-edit-note { margin-top: 22px; padding: 14px 16px; border-radius: 10px; color: #52677a; background: #f1f5f8; font-size: 14px; line-height: 1.6; }
.ksfa-profile-edit-form { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; margin-top: 26px; }
.ksfa-field-help { display: block; margin-top: 7px; color: var(--ksfa-muted); font-size: 12px; line-height: 1.5; }
.ksfa-profile-edit-actions { grid-column: 1 / -1; margin-top: 8px; }
.ksfa-team-edit-card { width: min(100%, 820px); margin: 34px auto; }
.ksfa-team-edit-card h1 { margin: 8px 0 0; color: var(--ksfa-navy); font-size: clamp(30px, 5vw, 42px); }
.ksfa-team-edit-form { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; margin-top: 26px; }
.ksfa-team-empty { margin-top: 24px; padding: 22px; border: 1px dashed #9fb3c8; border-radius: 14px; background: #f7f9fb; }
.ksfa-team-empty p { margin: 0; color: var(--ksfa-navy); font-weight: 700; line-height: 1.65; }
.ksfa-team-empty small { display: block; margin-top: 6px; color: var(--ksfa-muted); }
.ksfa-current-logo { display: flex; gap: 14px; align-items: center; margin-bottom: 12px; padding: 12px; border: 1px solid var(--ksfa-line); border-radius: 12px; }
.ksfa-current-logo img { width: 72px; height: 72px; border-radius: 12px; object-fit: contain; background: #fff; }
.ksfa-current-logo span { color: var(--ksfa-muted); font-size: 13px; line-height: 1.55; }

.ksfa-founding-card { width: min(100%, 980px); margin: 34px auto; }
.ksfa-founding-card > h1 { margin: 8px 0 0; color: var(--ksfa-navy); font-size: clamp(30px, 5vw, 44px); }
.ksfa-founding-current-status {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: 22px;
    padding: 14px 16px;
    border: 1px solid #b8dfd2;
    border-radius: 12px;
    background: #edfbf6;
}
.ksfa-founding-current-status span { color: var(--ksfa-muted); font-size: 13px; font-weight: 700; }
.ksfa-founding-current-status strong { color: #087f5b; font-size: 17px; }
.ksfa-founding-current-status small { margin-left: auto; color: var(--ksfa-muted); }
.ksfa-sensitive-note {
    margin-top: 22px;
    padding: 17px 18px;
    border: 1px solid #f2cf8b;
    border-radius: 12px;
    color: #6b4c12;
    background: #fff8e8;
}
.ksfa-sensitive-note strong { display: block; }
.ksfa-sensitive-note p { margin: 5px 0 0; font-size: 14px; line-height: 1.65; }
.ksfa-founding-form { margin-top: 26px; }
.ksfa-founding-section {
    padding: 28px;
    border: 1px solid var(--ksfa-line);
    border-radius: 18px;
    background: #fff;
}
.ksfa-founding-section + .ksfa-founding-section { margin-top: 18px; }
.ksfa-founding-section__heading {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 22px;
}
.ksfa-founding-section__heading > span {
    display: grid;
    flex: 0 0 38px;
    height: 38px;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--ksfa-blue);
    font-weight: 800;
}
.ksfa-founding-section__heading h2 { margin: 2px 0 0; color: var(--ksfa-navy); font-size: 23px; }
.ksfa-founding-section__heading p { margin: 6px 0 0; color: var(--ksfa-muted); font-size: 14px; line-height: 1.55; }
.ksfa-founding-section .ksfa-form-grid { padding: 0; border: 0; background: transparent; }
.ksfa-support-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 20px;
}
.ksfa-support-grid label {
    display: flex;
    gap: 10px;
    align-items: center;
    min-height: 52px;
    padding: 12px 14px;
    border: 1px solid var(--ksfa-line);
    border-radius: 11px;
    color: var(--ksfa-text);
    background: #f9fbfd;
    cursor: pointer;
}
.ksfa-support-grid input { width: 19px; height: 19px; flex: 0 0 auto; accent-color: var(--ksfa-blue); }
.ksfa-support-grid label:has(input:checked) { border-color: #7cb8df; background: #edf7ff; }
.ksfa-support-grid span { font-size: 14px; font-weight: 700; }
.ksfa-founding-section .ksfa-field--full + .ksfa-field--full { margin-top: 18px; }
.ksfa-account-contact-summary {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    margin-bottom: 20px;
    overflow: hidden;
    border: 1px solid var(--ksfa-line);
    border-radius: 12px;
    background: var(--ksfa-line);
}
.ksfa-account-contact-summary div { min-width: 0; padding: 14px; background: #f9fbfd; }
.ksfa-account-contact-summary span { display: block; color: var(--ksfa-muted); font-size: 12px; font-weight: 700; }
.ksfa-account-contact-summary strong { display: block; margin-top: 5px; overflow-wrap: anywhere; color: var(--ksfa-navy); font-size: 14px; }
.ksfa-founding-consent { align-items: flex-start; }
.ksfa-founding-consent span { display: block; }
.ksfa-founding-consent strong { display: block; color: var(--ksfa-navy); }
.ksfa-founding-consent small { display: block; margin-top: 7px; color: var(--ksfa-muted); font-weight: 400; line-height: 1.65; }
.ksfa-founding-actions { margin-top: 22px; }

.ksfa-membership-card { width: min(100%, 980px); margin: 34px auto; }
.ksfa-membership-card > h1 { margin: 8px 0 0; color: var(--ksfa-navy); font-size: clamp(30px, 5vw, 44px); }
.ksfa-membership-form { margin-top: 26px; }
.ksfa-dues-pending-note {
    margin-top: 22px;
    padding: 17px 18px;
    border: 1px solid #a9d4ee;
    border-radius: 12px;
    color: #164b6b;
    background: #eef8fe;
}
.ksfa-dues-pending-note strong { display: block; }
.ksfa-dues-pending-note p { margin: 5px 0 0; font-size: 14px; line-height: 1.65; }
.ksfa-membership-account-summary {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    margin-bottom: 22px;
    overflow: hidden;
    border: 1px solid var(--ksfa-line);
    border-radius: 12px;
    background: var(--ksfa-line);
}
.ksfa-membership-account-summary div { min-width: 0; padding: 15px; background: #f9fbfd; }
.ksfa-membership-account-summary span { display: block; color: var(--ksfa-muted); font-size: 12px; font-weight: 700; }
.ksfa-membership-account-summary strong { display: block; margin-top: 5px; overflow-wrap: anywhere; color: var(--ksfa-navy); font-size: 14px; }
.ksfa-membership-prefill-note { margin: -8px 0 20px; color: var(--ksfa-muted); font-size: 13px; line-height: 1.7; }
.ksfa-membership-choice-heading { margin: 22px 0 10px; color: var(--ksfa-navy); font-size: 14px; font-weight: 800; }
.ksfa-membership-choice-heading em { color: var(--ksfa-blue); font-style: normal; font-size: 12px; }
.ksfa-membership-agreements { display: grid; gap: 10px; }
.ksfa-membership-agreements .ksfa-check { align-items: flex-start; margin: 0; }
.ksfa-membership-agreements .ksfa-check span { display: block; }
.ksfa-membership-agreements .ksfa-check strong { display: block; color: var(--ksfa-navy); }
.ksfa-membership-agreements .ksfa-check small { line-height: 1.65; font-weight: 400; }
.ksfa-membership-agreements .ksfa-check--all { padding: 16px; border: 2px solid #0f766e; background: #f0fdfa; }
.ksfa-membership-doc-links,
.ksfa-membership-evidence { margin: 0 0 16px; padding: 16px 18px; border: 1px solid #cbd5e1; border-radius: 10px; background: #f8fafc; color: #334155; line-height: 1.7; }
.ksfa-membership-doc-links strong,
.ksfa-membership-evidence strong { display: block; margin-bottom: 5px; color: var(--ksfa-navy); }
.ksfa-membership-doc-links p,
.ksfa-membership-evidence p { margin: 0 0 8px; }
.ksfa-membership-doc-links a,
.ksfa-membership-evidence a { color: #075985; font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }
.ksfa-membership-evidence { margin: 16px 0 0; border-color: #f0c36a; background: #fffaf0; }
.ksfa-membership-evidence .ksfa-document-download { display: inline-block; margin-top: 3px; }

.ksfa-register__next-note {
    margin-top: 18px !important;
    padding: 13px 15px;
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 10px;
    color: #fff !important;
    background: rgba(255, 255, 255, .12);
    font-weight: 800;
}
.ksfa-application-start { width: min(100% - 32px, 980px); }
.ksfa-application-choice,
.ksfa-start-guide {
    margin-top: 26px;
    padding: 30px;
    border: 1px solid var(--ksfa-line);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 12px 32px rgba(14, 42, 70, .07);
}
.ksfa-application-choice > h2,
.ksfa-start-guide > h2 { margin: 0; color: var(--ksfa-navy); font-size: 26px; }
.ksfa-application-choice__grid,
.ksfa-start-guide__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; margin-top: 22px; }
.ksfa-application-choice__grid article,
.ksfa-start-guide__grid article { display: flex; min-height: 250px; flex-direction: column; padding: 24px; border: 1px solid var(--ksfa-line); border-radius: 14px; background: #f8fafc; }
.ksfa-application-choice__grid h3,
.ksfa-start-guide__grid h3 { margin: 10px 0 0; color: var(--ksfa-navy); font-size: 21px; }
.ksfa-application-choice__grid p,
.ksfa-start-guide__grid p { color: var(--ksfa-muted); line-height: 1.7; }
.ksfa-application-choice__grid .ksfa-button,
.ksfa-start-guide__grid .ksfa-button { margin-top: auto; }
.ksfa-start-guide__description { margin: 10px 0 0; color: var(--ksfa-muted); line-height: 1.7; }
.ksfa-start-guide__grid article > span { color: var(--ksfa-blue); font-size: 13px; font-weight: 800; }
.ksfa-start-guide__note { margin: 18px 0 0; padding: 14px 16px; border-radius: 10px; color: #334155; background: #fff8e8; line-height: 1.7; }

@media (max-width: 680px) {
    .ksfa-register { width: min(100% - 20px, 920px); padding: 28px 0 64px; }
    .ksfa-register__hero { padding: 30px 24px; border-radius: 20px; }
    .ksfa-register__steps { gap: 6px; }
    .ksfa-register__steps li { justify-content: center; min-height: 46px; padding: 8px; font-size: 12px; }
    .ksfa-register__steps span { width: 24px; height: 24px; }
    .ksfa-form-section { padding: 24px 18px; border-radius: 16px; }
    .ksfa-form-grid { grid-template-columns: 1fr; gap: 16px; }
    .ksfa-owner-options { grid-template-columns: 1fr; }
    .ksfa-owner-card { min-height: 0; }
    .ksfa-field--full { grid-column: auto; }
    .ksfa-address-search { grid-template-columns: 1fr auto; }
    .ksfa-register__actions, .ksfa-complete__actions { flex-direction: column-reverse; }
    .ksfa-button { width: 100%; }
    .ksfa-complete__card { padding: 38px 22px; }
    .ksfa-login-card { margin: 24px auto; padding: 30px 22px; }
    .ksfa-account-links { flex-direction: column; align-items: flex-start; }
    .ksfa-mypage__hero { flex-direction: column; align-items: stretch; padding: 26px 22px; }
    .ksfa-account-card { padding: 24px 18px; border-radius: 16px; }
    .ksfa-account-card__heading { flex-direction: column; }
    .ksfa-account-card__tools { width: 100%; align-items: stretch; }
    .ksfa-account-summary, .ksfa-application-grid { grid-template-columns: 1fr; }
    .ksfa-profile-edit-card { margin: 24px auto; }
    .ksfa-profile-edit-form { grid-template-columns: 1fr; }
    .ksfa-team-edit-form { grid-template-columns: 1fr; }
    .ksfa-profile-edit-actions { grid-column: auto; }
    .ksfa-founding-card { margin: 24px auto; }
    .ksfa-founding-section { padding: 22px 16px; }
    .ksfa-support-grid, .ksfa-account-contact-summary { grid-template-columns: 1fr; }
    .ksfa-founding-current-status { align-items: flex-start; flex-direction: column; }
    .ksfa-founding-current-status small { margin-left: 0; }
    .ksfa-membership-card { margin: 24px auto; }
    .ksfa-membership-account-summary { grid-template-columns: 1fr; }
    .ksfa-application-choice,
    .ksfa-start-guide { padding: 22px 16px; }
    .ksfa-application-choice__grid,
    .ksfa-start-guide__grid { grid-template-columns: 1fr; }
    .ksfa-application-choice__grid article,
    .ksfa-start-guide__grid article { min-height: 0; }
}
