* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    background: #f4f6fb;
    color: #111827;
    font-family: Inter, Arial, sans-serif;
}

.page {
    width: min(960px, calc(100% - 32px));
    margin: 0 auto;
    padding: 48px 0;
}

.page-narrow {
    width: min(720px, calc(100% - 32px));
    padding: 64px 0;
}

.topbar {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
}

.user-box {
    min-width: 180px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: #fff;
    padding: 10px 12px;
    color: #475467;
    font-size: 14px;
    line-height: 1.4;
    text-align: right;
}

.user-box strong {
    display: block;
    color: #111827;
    overflow-wrap: anywhere;
}

.user-actions {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    margin-top: 8px;
}

.user-action {
    border: 0;
    background: transparent;
    color: #0028a1;
    cursor: pointer;
    font: inherit;
    font-size: 13px;
    font-weight: 700;
    padding: 0;
}

.user-action:hover {
    color: #5369c4;
}

.user-action:active {
    color: #131a38;
}

.user-action:disabled,
.user-action.is-disabled {
    color: #9e9e9e;
    cursor: not-allowed;
}

.eyebrow {
    margin: 0 0 10px;
    color: #0028a1;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}

.title {
    margin: 0 0 8px;
    font-size: 38px;
    line-height: 1.15;
    font-weight: 750;
}

.subtitle,
.location {
    margin: 0;
    color: #667085;
    font-size: 17px;
    line-height: 1.45;
}

.card,
.notice {
    margin-top: 28px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 16px 40px rgba(17, 24, 39, 0.08);
}

.notice {
    border-color: #b9e6c9;
    background: #f0fdf4;
}

.field {
    display: grid;
    gap: 10px;
    margin-bottom: 22px;
}

.label {
    font-size: 15px;
    font-weight: 600;
}

input[type="email"],
input[type="password"],
input[type="text"],
input[type="file"] {
    width: 100%;
    border: 1px solid #d0d5dd;
    border-radius: 10px;
    background: #fff;
    color: #111827;
    font: inherit;
}

input[type="email"],
input[type="password"],
input[type="text"] {
    height: 46px;
    padding: 0 14px;
}

input[type="file"] {
    padding: 18px;
    background: #f9fafb;
}

.errors {
    color: #b42318;
    font-size: 14px;
    line-height: 1.4;
}

.errors ul {
    margin: 0;
    padding-left: 18px;
}

.actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.button,
.cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border: 0;
    border-radius: 10px;
    background: #0028a1;
    color: #fff;
    padding: 10px 18px;
    cursor: pointer;
    font: inherit;
    font-weight: 700;
    text-decoration: none;
}

.button:hover,
.cta:hover {
    background: #0b3cc6;
}

.section {
    padding: 22px 0;
    border-top: 1px solid #eaecf0;
}

.section:first-child {
    padding-top: 0;
    border-top: 0;
}

.section-title,
.state-title {
    margin: 0 0 10px;
    font-size: 17px;
    line-height: 1.35;
    font-weight: 700;
}

.state-title {
    font-size: 24px;
}

.section-text,
.state-text {
    margin: 0;
    color: #344054;
    font-size: 16px;
    line-height: 1.6;
}

.hidden-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 22px;
}

.hidden-box {
    border: 1px dashed #b8c2d6;
    border-radius: 10px;
    background: #f8fafc;
    color: #667085;
    padding: 14px 16px;
    font-size: 14px;
    font-weight: 600;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    border-radius: 999px;
    background: #edf3ff;
    color: #0028a1;
    padding: 5px 12px;
    font-size: 14px;
    font-weight: 600;
}

.job {
    padding: 16px 0;
    border-top: 1px solid #eaecf0;
}

.job:first-of-type {
    padding-top: 0;
    border-top: 0;
}

.job-title {
    color: #111827;
    font-size: 16px;
    font-weight: 700;
}

.job-company {
    margin-top: 4px;
    color: #667085;
    font-size: 14px;
}

.job-meta {
    margin-top: 4px;
    color: #667085;
    font-size: 14px;
}

.job-text {
    margin-top: 10px;
    color: #344054;
    font-size: 15px;
    line-height: 1.55;
}

.modal-backdrop {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(17, 24, 39, 0.5);
    padding: 24px;
    z-index: 20;
}

.modal-backdrop.is-open {
    display: flex;
}

.modal {
    width: min(460px, 100%);
    max-height: calc(100vh - 48px);
    overflow: auto;
    border-radius: 12px;
    background: #fff;
    padding: 24px;
    box-shadow: 0 24px 60px rgba(17, 24, 39, 0.25);
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.modal-title {
    margin: 0;
    font-size: 22px;
    line-height: 1.25;
}

.modal-close {
    border: 0;
    background: transparent;
    color: #667085;
    cursor: pointer;
    font-size: 26px;
    line-height: 1;
}

.tabs {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.tab-button {
    flex: 1;
    height: 40px;
    border: 0;
    border-radius: 10px 10px 0 0;
    background: #fff;
    color: #98a2b3;
    cursor: pointer;
    font: inherit;
    box-shadow: inset 0 -8px 5px rgba(0, 0, 0, 0.01), inset 0 -3px 3px rgba(0, 0, 0, 0.02), inset 0 -1px 2px rgba(0, 0, 0, 0.02);
}

.tab-button.is-active {
    color: #0028a1;
}

.auth-panel {
    display: none;
}

.auth-panel.is-active {
    display: block;
}

@media (max-width: 640px) {
    .page,
    .page-narrow {
        width: min(100% - 24px, 960px);
        padding: 32px 0;
    }

    .topbar {
        display: grid;
    }

    .user-box {
        text-align: left;
    }

    .user-actions {
        justify-content: flex-start;
    }

    .title {
        font-size: 30px;
    }

    .card,
    .notice {
        padding: 22px;
    }

    .hidden-row {
        grid-template-columns: 1fr;
    }

    .actions,
    .button,
    .cta {
        width: 100%;
    }
}

.share-layout {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-height: 100vh;
    background: #fff;
    color: #3e3e3e;
    font-family: Inter, Arial, sans-serif;
    padding-bottom: 80px;
}

.share-layout a {
    text-decoration: none;
}

.share-bg {
    position: absolute;
    z-index: -2;
    pointer-events: none;
    user-select: none;
    filter: blur(34px);
    opacity: 0.82;
    transform: scale(1.08);
    -webkit-mask-image: radial-gradient(circle, #000 0 54%, rgba(0, 0, 0, 0.75) 66%, transparent 84%);
    mask-image: radial-gradient(circle, #000 0 54%, rgba(0, 0, 0, 0.75) 66%, transparent 84%);
}

.share-bg-magenta {
    top: -170px;
    left: 0;
    width: 760px;
    height: 760px;
}

.share-bg-blue {
    top: -220px;
    right: 0;
    width: 780px;
    height: 780px;
}

.share-bg-lilac {
    top: 794px;
    left: calc(50% - 110px);
    width: 620px;
    height: 620px;
}

.share-header {
    width: min(1300px, calc(100% - 40px));
    margin: 0 auto;
    padding-top: 24px;
}

.share-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 76px;
    border: 1px solid rgba(37, 36, 59, 0.11);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 18px 54px rgba(37, 36, 59, 0.08);
    padding: 14px 24px;
}

.share-logo {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    width: 110px;
    height: 48px;
}

.share-logo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.share-nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    color: #868686;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

.share-nav-actions,
.share-upload-tabs {
    display: flex;
    align-items: center;
    gap: 18px;
}

.share-current-user {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    color: #868686;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.25;
    max-width: 220px;
}

.share-current-user strong {
    color: #3e3e3e;
    font-size: 14px;
    overflow-wrap: anywhere;
    text-align: right;
}

.share-btn,
.share-upload-tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    border-radius: 14px;
    text-decoration: none;
    border: 0;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
}

.share-btn {
    padding: 0 36px;
}

.share-btn:hover,
.share-btn:focus,
.share-upload-tab:hover,
.share-upload-tab:focus {
    line-height: 1.2;
    text-decoration: none;
}

.share-btn-light,
.share-upload-tab {
    border: 1px solid #e6e6e6;
    background: #fff;
    color: #3e3e3e;
}

.share-btn-light:not(:disabled):hover,
.share-upload-tab:not(:disabled):hover {
    border-color: #70b2e2;
    background: #edfaff;
    color: #15499f;
}

.share-btn-light:not(:disabled):active,
.share-btn-light.is-active,
.share-upload-tab:not(:disabled):active,
.share-upload-tab.is-active {
    border-color: #70b2e2;
    background: #edfaff;
    color: #15499f;
}

.share-btn-dark {
    background: #2d3e84;
    color: #fff;
    box-shadow: 0 28px 90px rgba(37, 36, 59, 0.13);
}

.share-btn-dark:not(:disabled):hover {
    background: #5369c4;
}

.share-btn-dark:not(:disabled):active,
.share-btn-dark.is-active {
    background: #131a38;
}

.share-btn-primary,
.share-upload-radio:checked + .share-upload-tab {
    background: linear-gradient(90deg, #6e5aff 0%, #ff00ff 100%);
    color: #fff;
    box-shadow: 0 28px 90px rgba(37, 36, 59, 0.13);
}

.share-btn-primary:not(:disabled):hover {
    background: linear-gradient(90deg, #a08cff 0%, #ff32ff 100%);
}

.share-btn-primary:not(:disabled):active,
.share-btn-primary.is-active {
    background: linear-gradient(90deg, #3c28cd 0%, #cd00cd 100%);
}

.share-btn:disabled,
.share-btn.is-disabled,
.share-upload-tab:disabled,
.share-upload-tab.is-disabled {
    border-color: transparent;
    background: #e2e2e2;
    color: #9e9e9e;
    box-shadow: none;
    cursor: not-allowed;
}

.share-upload-radio {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
    padding: 0;
}

.share-upload-radio:focus-visible + .share-upload-tab {
    outline: 2px solid #5656ac;
    outline-offset: 3px;
}

.share-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 32px 20px 14px;
    text-align: center;
}

.share-pill {
    margin: 0;
    border-radius: 17px;
    background: rgba(255, 255, 255, 0.8);
    color: #5656ac;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
}

.share-hero h1,
.share-hero h2,
.share-steps h2,
.share-section-title h2,
.share-cta-content h2 {
    margin: 0;
    color: #3e3e3e;
    font-weight: 600;
}

.share-hero h1,
.share-hero h2 {
    max-width: 720px;
    font-size: 52px;
    line-height: 1.1;
}

.share-hero p:not(.share-pill) {
    margin: 0;
    color: #868686;
    font-size: 20px;
    line-height: 1.2;
}

.share-hero-status {
    gap: 14px;
    padding-top: 24px;
}

.share-hero-status h1 {
    max-width: 900px;
    font-size: 40px;
    line-height: 1.16;
}

.share-hero-steps {
    display: grid;
    gap: 8px;
    width: min(860px, 100%);
    margin: 0;
    padding: 0;
    color: #6f6e80;
    font-size: 16px;
    line-height: 1.35;
    list-style: none;
    text-align: left;
}

.share-hero-steps li {
    display: grid;
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 10px;
    align-items: flex-start;
    min-width: 0;
}

.share-hero-step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 28px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.82);
    color: #5656ac;
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    box-shadow: 0 12px 32px rgba(37, 36, 59, 0.08);
}

.share-upload-section {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 500px;
    padding: 0 20px;
    margin-top: 22px;
}

.share-public-auth-section {
    scroll-margin-top: 104px;
    margin-top: 44px;
}

.share-public-auth-section .share-accepted-header {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    align-items: center;
    gap: 16px;
}

.share-public-auth-section .share-check-icon {
    align-self: center;
}

.share-public-auth-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    min-width: 0;
    transform: translateY(3px);
}

.share-public-auth-copy .share-accepted-text {
    margin: 10px 0 0;
    color: #868686;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    text-align: left;
}

.share-upload-section .share-upload-panel {
    display: none;
}

.share-upload-section .share-upload-panel.is-active {
    display: flex;
}

.share-upload-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: min(860px, 100%);
    height: 428px;
    margin: 0;
    border: 1px solid rgba(37, 36, 59, 0.11);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 28px 45px rgba(37, 36, 59, 0.13);
    padding: 28px 48px 20px;
}

.share-upload-tab {
    height: 48px;
    padding: 0 36px 0 28px;
    color: #3e3e3e;
}

.share-upload-tab img,
.share-upload-tab svg {
    width: 16px;
    height: 16px;
    flex: 0 0 auto;
}

.share-upload-tab svg path[stroke] {
    stroke: currentColor;
}

.share-upload-tab svg path[fill]:not([fill="none"]) {
    fill: currentColor;
}

.share-dropzone {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 0;
    border: 1px solid rgba(37, 36, 59, 0.11);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.32);
    padding: 20px 20px 30px;
}

.share-dropzone.is-dragover {
    border-color: #3a3ac7;
    background: rgba(242, 234, 255, 0.48);
}

.share-dropzone-top {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 210px;
    cursor: pointer;
}

.share-file-input {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    border: 0;
    padding: 0;
}

.share-upload-errors {
    width: 100%;
    text-align: center;
}

.share-cloud {
    width: 96px;
    height: 96px;
    object-fit: contain;
}

.share-dropzone p {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
    color: #868686;
    font-size: 16px;
    line-height: 1.4;
    text-align: center;
}

.share-dropzone-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #868686;
    font-size: 16px;
    line-height: 1.4;
    text-align: center;
}

.share-upload-note {
    margin: 0;
    color: #9a99aa;
    font-size: 12px;
    font-weight: 500;
    text-align: center;
}

.share-upload-card-form {
    align-items: stretch;
    gap: 4px;
    height: auto;
    min-height: 428px;
    padding: 20px 48px;
}

.share-upload-card-status {
    justify-content: center;
    gap: 20px;
    min-height: 210px;
    padding-top: 28px;
    padding-bottom: 28px;
}

.share-upload-card-status .share-upload-processing-status {
    align-self: center;
}

.share-accepted-header {
    display: flex;
    align-items: flex-end;
    gap: 16px;
    width: 100%;
}

.share-check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, #3a3ac7 0%, #ff00ff 100%);
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    line-height: 1;
    box-shadow: 0 18px 54px rgba(37, 36, 59, 0.12);
}

.share-accepted-header p {
    margin: 0 0 4px;
    color: #3a3ac7;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
}

.share-accepted-header h2,
.share-mail-copy h2 {
    margin: 0;
    color: #3e3e3e;
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
}

.share-accepted-text {
    margin: 12px 0 0;
    color: #868686;
    font-size: 16px;
    line-height: 1.4;
}

.share-details-fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding-top: 20px;
}

.share-confirm-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: stretch;
    gap: 16px;
    padding-top: 24px;
}

.share-upload-processing-status[hidden],
.share-accepted-header[hidden],
.share-upload-error-state[hidden],
.share-confirm-actions[hidden] {
    display: none;
}

.share-upload-processing-status {
    margin-top: 6px;
}

.share-upload-error-state {
    display: grid;
    gap: 8px;
    margin-top: 10px;
    padding: 16px 18px;
    border: 1px solid #f2b8b5;
    border-radius: 14px;
    background: #fff7f7;
    color: #9f1c16;
    box-shadow: 0 18px 54px rgba(37, 36, 59, 0.08);
}

.share-upload-error-state p {
    margin: 0;
    color: #9f1c16;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.2;
}

.share-upload-error-state strong {
    color: #3e3e3e;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
}

.share-confirm-secondary-actions {
    display: flex;
    justify-content: center;
    padding-top: 20px;
}

.share-confirm-secondary-actions .share-btn {
    min-width: 220px;
}

.share-confirm-secondary-actions[hidden] {
    display: none;
}

.share-confirm-actions > .share-btn {
    min-height: 58px;
    width: 100%;
    padding: 0 24px;
    text-align: center;
    white-space: nowrap;
}

.share-confirm-link-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    min-width: 0;
    min-height: 58px;
    padding: 12px 14px;
    border: 1px solid #e6e6e6;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 18px 54px rgba(37, 36, 59, 0.08);
}

.share-confirm-link-card span {
    color: #868686;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
}

.share-confirm-link-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.share-confirm-link-row a {
    min-width: 0;
    overflow: hidden;
    color: #3a3ac7;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
    text-decoration: none;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.share-confirm-copy {
    box-sizing: border-box;
    min-height: 36px;
    max-width: 100%;
    padding: 0 14px;
    border: 0;
    border-radius: 10px;
    background: #f2f2ff;
    color: #3a3ac7;
    cursor: pointer;
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
}

.share-auth-switch {
    display: flex;
    justify-content: center;
    padding-top: 18px;
}

.share-details-registration-form {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.share-details-registration-form .share-form-actions {
    padding-top: 8px;
}

.share-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
    color: #3e3e3e;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
}

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

.share-field input {
    height: 48px;
    border: 1px solid #e6e6e6;
    border-radius: 14px;
    background: #fff;
    color: #3e3e3e;
    padding: 0 16px;
    font-size: 14px;
    font-weight: 500;
    outline: none;
}

.share-field input::placeholder {
    color: #868686;
}

.share-field input:focus {
    border-color: #3a3ac7;
    box-shadow: 0 0 0 3px rgba(58, 58, 199, 0.1);
}

.share-form-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding-top: 20px;
}

.share-nav-actions form,
.share-form-actions form {
    margin: 0;
}

.share-link-button {
    border: 0;
    background: transparent;
    color: #3a3ac7;
    cursor: pointer;
    font: inherit;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    padding: 0;
}

.share-link-button:hover,
.share-link-button:focus {
    line-height: 1.2;
    text-decoration: none;
}

.share-mail-card {
    align-items: stretch;
    gap: 24px;
    height: auto;
    min-height: 428px;
    padding: 28px 48px 36px;
    overflow: hidden;
    box-shadow: 0 28px 90px rgba(37, 36, 59, 0.13);
}

.share-mail-pill {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    border: 1px solid rgba(37, 36, 59, 0.11);
    border-radius: 17px;
    background: rgba(255, 255, 255, 0.82);
    color: #3a3ac7;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
}

.share-mail-copy {
    padding-top: 0;
}

.share-mail-copy p {
    max-width: 653px;
    margin: 12px 0 0;
    color: #868686;
    font-size: 16px;
    line-height: 1.4;
}

.share-preview-link {
    display: flex;
    align-items: center;
    min-height: 48px;
    border: 1px solid #ebe1fb;
    border-radius: 14px;
    background: #f4effe;
    color: #423ec3;
    padding: 0 16px;
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
}

.share-mail-button {
    width: 100%;
}

.share-steps {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 120px 20px 0;
}

.share-steps h2,
.share-section-title h2 {
    color: #25243b;
    font-size: 28px;
    line-height: 1.2;
    text-align: center;
}

.share-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    width: min(1080px, 100%);
}

.share-step-card {
    min-height: 216px;
    border: 1px solid #e6e6e6;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 18px 27px rgba(37, 36, 59, 0.08);
    padding: 24px 30px 36px;
    text-align: center;
}

.share-step-head {
    display: grid;
    grid-template-columns: 24px 1fr 24px;
    align-items: start;
    margin-bottom: 10px;
}

.share-step-head > span:first-child {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 12px;
    background: #f2eaff;
    color: #3a3ac7;
    font-size: 10px;
    font-weight: 700;
}

.share-step-head > img,
.share-step-icon {
    grid-column: 2;
    justify-self: center;
    width: 48px;
    height: 48px;
}

.share-step-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient(135deg, #fbf3fa 0%, #f0e9fd 100%);
}

.share-step-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.share-step-card h3 {
    margin: 0 0 12px;
    color: #3e3e3e;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.6;
}

.share-step-card p {
    margin: 0;
    color: #868686;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
}

.share-features {
    width: min(1300px, calc(100% - 40px));
    margin: 0 auto;
    padding-top: 120px;
}

.share-section-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 11px;
    margin-bottom: 16px;
    text-align: center;
}

.share-section-title p {
    margin: 0;
    color: #868686;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.3;
}

.share-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.share-feature-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    min-height: 156px;
    border: 1px solid #e6e6e6;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.8);
    padding: 30px 24px 30px 30px;
}

.share-feature-card > img {
    flex: 0 0 auto;
    width: 96px;
    height: 96px;
    object-fit: contain;
}

.share-feature-card h3 {
    margin: 0 0 8px;
    color: #000;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
}

.share-feature-card p {
    margin: 0;
    color: #868686;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
}

.share-preview {
    width: min(1300px, calc(100% - 40px));
    margin: 0 auto;
    padding-top: 24px;
}

.share-listing {
    border: 1px solid rgba(37, 36, 59, 0.11);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.86);
    padding: 24px 32px 36px;
}

.share-listing h2 {
    margin: 0 0 16px;
    color: #25243b;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
}

.share-listing-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.share-listing-item {
    min-width: 0;
    border-right: 1px solid #e6e6e6;
    padding-right: 24px;
}

.share-listing-item:last-child {
    border-right: 0;
}

.share-listing-item div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 8px;
}

.share-listing-item span {
    display: inline-flex;
    align-items: center;
    min-height: 20px;
    border-radius: 17px;
    background: #ebecff;
    color: #5656ac;
    padding: 2px 12px;
    font-size: 12px;
    font-weight: 600;
}

.share-listing-item time {
    color: #868686;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.share-listing-item h3 {
    margin: 0 0 4px 10px;
    color: #3e3e3e;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.2;
}

.share-listing-item p {
    margin: 0 0 0 10px;
    color: #868686;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.2;
}

.share-cta {
    width: min(1080px, calc(100% - 40px));
    margin: 0 auto;
    padding-top: 100px;
}

.share-cta-card {
    display: flex;
    align-items: center;
    gap: 80px;
    border-radius: 18px;
    background: linear-gradient(90deg, #fae8ff 0%, #ebddff 100%);
    box-shadow: 0 18px 54px rgba(37, 36, 59, 0.08);
    padding: 50px 50px 30px 130px;
}

.share-sparkle {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 100px;
    height: 100px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.72);
    color: #ff00ff;
    font-size: 46px;
    font-weight: 900;
    line-height: 1;
}

.share-cta-content {
    min-width: 0;
}

.share-cta-content h2 {
    margin-bottom: 20px;
    font-size: 28px;
    line-height: 1.2;
}

.share-cta-content p {
    margin: 0 0 20px;
    color: #868686;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
}

.share-cta-btn {
    width: 330px;
    min-height: 54px;
    margin-bottom: 20px;
    font-size: 15px;
}

.share-cta-btn span {
    color: #fff;
}

.share-cta-btn img {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

.share-cta-content ul {
    display: flex;
    gap: 40px;
    margin: 0;
    padding: 0;
    color: #868686;
    font-size: 14px;
    line-height: 1.4;
    list-style: none;
}

@media (max-width: 1100px) {
    .share-nav {
        flex-wrap: wrap;
    }

    .share-nav-links {
        order: 3;
        width: 100%;
    }

    .share-feature-grid,
    .share-listing-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .share-listing-item:nth-child(2n) {
        border-right: 0;
    }

    .share-cta-card {
        gap: 40px;
        padding-left: 60px;
    }
}

@media (max-width: 760px) {
    .share-layout {
        padding-bottom: 48px;
    }

    .share-header,
    .share-features,
    .share-preview,
    .share-cta {
        width: min(100% - 24px, 1300px);
    }

    .share-nav,
    .share-nav-links,
    .share-nav-actions,
    .share-upload-tabs {
        align-items: stretch;
        flex-direction: column;
    }

    .share-logo {
        align-self: center;
    }

    .share-nav-links {
        gap: 14px;
        text-align: center;
        white-space: normal;
    }

    .share-btn,
    .share-upload-tab,
    .share-cta-btn {
        width: 100%;
    }

    .share-hero h1,
    .share-hero h2 {
        font-size: 36px;
    }

    .share-hero-status h1 {
        font-size: 28px;
        line-height: 1.18;
    }

    .share-hero-steps {
        font-size: 14px;
        line-height: 1.35;
    }

    .share-hero-steps li {
        grid-template-columns: 30px minmax(0, 1fr);
    }

    .share-hero-step-number {
        width: 30px;
        height: 28px;
    }

    .share-hero p:not(.share-pill),
    .share-section-title p {
        font-size: 16px;
    }

    .share-upload-section {
        min-height: auto;
    }

    .share-public-auth-section {
        scroll-margin-top: 88px;
        margin-top: 32px;
    }

    .share-public-auth-section .share-accepted-header {
        display: grid;
        grid-template-columns: 48px minmax(0, 1fr);
        align-items: center;
        gap: 14px;
    }

    .share-upload-card {
        height: auto;
        padding: 24px 18px 20px;
    }

    .share-upload-card-form,
    .share-mail-card {
        padding: 24px 18px;
    }

    .share-upload-card-status {
        min-height: 180px;
    }

    .share-dropzone {
        min-height: 280px;
    }

    .share-accepted-header {
        align-items: flex-start;
    }

    .share-accepted-header h2,
    .share-mail-copy h2 {
        font-size: 26px;
        line-height: 1.1;
        overflow-wrap: anywhere;
    }

    .share-details-fields {
        grid-template-columns: 1fr;
    }

    .share-confirm-actions,
    .share-confirm-link-row {
        grid-template-columns: 1fr;
    }

    .share-confirm-link-row a {
        white-space: normal;
        overflow-wrap: anywhere;
    }

    .share-form-actions .share-btn {
        width: 100%;
    }

    .share-steps,
    .share-features {
        padding-top: 72px;
    }

    .share-steps-grid,
    .share-feature-grid,
    .share-listing-grid {
        grid-template-columns: 1fr;
    }

    .share-listing {
        padding: 22px;
    }

    .share-listing-item,
    .share-listing-item:nth-child(2n) {
        border-right: 0;
        border-bottom: 1px solid #e6e6e6;
        padding: 0 0 16px;
    }

    .share-listing-item:last-child {
        border-bottom: 0;
        padding-bottom: 0;
    }

    .share-feature-card {
        padding: 22px;
    }

    .share-feature-card > img {
        width: 72px;
        height: 72px;
    }

    .share-cta {
        padding-top: 72px;
    }

    .share-cta-card {
        flex-direction: column;
        align-items: stretch;
        gap: 24px;
        padding: 28px 22px;
    }

    .share-sparkle {
        width: 76px;
        height: 76px;
        border-radius: 22px;
        font-size: 36px;
    }

    .share-cta-content h2 {
        font-size: 24px;
    }

    .share-cta-content ul {
        flex-direction: column;
        gap: 8px;
    }
}

.share-public-layout {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-height: 100vh;
    background: #fff;
    color: #3e3e3e;
    font-family: Inter, Arial, sans-serif;
    padding-bottom: 80px;
    --share-public-width: min(1300px, calc(100% - 40px));
}

.share-public-layout h1,
.share-public-layout h2,
.share-public-layout h3,
.share-public-layout p {
    margin: 0;
}

.share-public-hero,
.share-public-card,
.share-public-cta,
.share-public-other,
.share-public-safe-strip {
    width: var(--share-public-width);
    margin: 0 auto;
}

.share-public-layout .share-header {
    width: var(--share-public-width);
}

.share-public-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 590px);
    align-items: end;
    gap: 52px;
    padding-top: 36px;
    justify-content: center;
}

.share-public-summary {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding-bottom: 24px;
    min-width: 0;
}

.share-public-heading {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.share-public-heading p {
    color: #3e3e3e;
    font-size: 32px;
    font-weight: 800;
    line-height: 1.1;
}

.share-public-heading h1 {
    max-width: 760px;
    background: linear-gradient(270deg, #968cff 0%, #6e5aff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 52px;
    font-weight: 900;
    line-height: 1.05;
    overflow-wrap: anywhere;
}

.share-public-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 24px;
}

.share-public-meta-item,
.share-public-fact,
.share-public-safe-info {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.share-public-meta-item {
    min-width: 180px;
}

.share-public-meta-item strong {
    color: #3e3e3e;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.25;
}

.share-public-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 36px;
    height: 36px;
    border-radius: 11px;
    background: linear-gradient(135deg, #fbf3fa 0%, #f0e9fd 100%);
    color: #c23be7;
    font-size: 18px;
    font-weight: 800;
    line-height: 1;
}

.share-public-quick-facts {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0;
    color: #3e3e3e;
    font-size: 14px;
    line-height: 1.35;
}

.share-public-quick-facts div {
    display: grid;
    grid-template-columns: 200px minmax(0, 1fr);
    gap: 20px;
    align-items: baseline;
}

.share-public-quick-facts dt {
    font-weight: 400;
}

.share-public-quick-facts dd {
    margin: 0;
    font-weight: 400;
}

.share-public-contact-card,
.share-public-card,
.share-public-other article,
.share-public-safe-strip {
    border: 1px solid #e6e6e6;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 18px 54px rgba(37, 36, 59, 0.08);
}

.share-public-contact-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 28px;
    min-height: 260px;
    border-radius: 18px;
    padding: 36px 40px;
}

.share-public-contact-card h2 {
    color: #3e3e3e;
    font-size: 28px;
    font-weight: 800;
    line-height: 1.12;
}

.share-public-contact-card p {
    max-width: 470px;
    margin-top: 8px;
    color: #868686;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.25;
}

.share-public-contact-card .share-btn {
    width: fit-content;
}

.share-public-contact-card div:last-child p {
    margin-top: 14px;
    color: #9a99aa;
    font-size: 13px;
}

.share-public-card {
    border-radius: 18px;
}

.share-public-details {
    display: grid;
    grid-template-columns: minmax(0, 660px) minmax(240px, 290px);
    justify-content: center;
    gap: 52px;
    margin-top: 0;
    padding: 36px 40px 44px;
}

.share-public-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    min-width: 0;
}

.share-public-content > h2,
.share-public-offers > h2,
.share-public-cta h2,
.share-public-other > h2 {
    color: #3e3e3e;
    font-size: 28px;
    font-weight: 800;
    line-height: 1.2;
}

.share-public-text-block {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.share-public-text-block h3,
.share-public-fact h3 {
    color: #3e3e3e;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.25;
}

.share-public-text-block p {
    color: #3e3e3e;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.65;
}

.share-processing-status {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    width: fit-content;
    min-height: 46px;
    padding: 0 18px;
    border: 1px solid #e6e6e6;
    border-radius: 14px;
    background: #fff;
    color: #3a3ac7;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.2;
    box-shadow: 0 18px 54px rgba(37, 36, 59, 0.08);
}

.share-processing-status.is-ready .share-processing-spinner {
    display: none;
}

.share-processing-spinner {
    width: 18px;
    height: 18px;
    border: 3px solid #e6e6ff;
    border-top-color: #3a3ac7;
    border-radius: 50%;
    animation: share-processing-spin 0.85s linear infinite;
}

.share-processing-actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, auto));
    gap: 12px;
    align-items: center;
    width: fit-content;
    max-width: 100%;
}

.share-processing-actions[hidden] {
    display: none;
}

.share-processing-actions .share-btn {
    min-height: 52px;
    padding: 0 24px;
    text-align: center;
    white-space: nowrap;
}

@keyframes share-processing-spin {
    to {
        transform: rotate(360deg);
    }
}

.share-public-facts {
    display: flex;
    flex-direction: column;
    gap: 36px;
    padding-top: 42px;
}

.share-public-fact .share-public-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
}

.share-public-fact p {
    margin-top: 4px;
    color: #3e3e3e;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.3;
}

.share-public-offers {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-top: 24px;
    padding: 36px 40px 44px;
}

.share-public-offers-row {
    display: grid;
    grid-template-columns: repeat(5, minmax(120px, 1fr));
    gap: 24px;
}

.share-public-offers-row span {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 42px;
    color: #25243b;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.15;
    padding-left: 0;
}

.share-public-offers-row img {
    flex: 0 0 auto;
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.share-public-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    min-height: 240px;
    margin-top: 80px;
    border-radius: 18px;
    background: linear-gradient(90deg, #fae8ff 0%, #ebddff 100%);
    box-shadow: 0 18px 54px rgba(37, 36, 59, 0.08);
    padding: 44px 60px 44px 40px;
}

.share-public-cta > div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    min-width: 0;
}

.share-public-cta p {
    max-width: 605px;
    color: #868686;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.25;
}

.share-public-cta img {
    width: 344px;
    max-width: 35%;
    height: 150px;
    object-fit: contain;
}

.share-public-other {
    padding-top: 80px;
}

.share-public-other-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    margin-top: 26px;
}

.share-public-other-grid > a {
    display: block;
    color: inherit;
    text-decoration: none;
}

.share-public-other-grid > a:hover,
.share-public-other-grid > a:focus,
.share-public-other-grid > a:visited {
    color: inherit;
    text-decoration: none;
}

.share-public-other article {
    min-height: 120px;
    border-radius: 14px;
    padding: 22px;
}

.share-public-other h3 {
    min-height: 28px;
    color: #3e3e3e;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
}

.share-public-other p {
    position: relative;
    margin-top: 8px;
    color: #868686;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
}

.share-public-safe-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-top: 80px;
    border: 0;
    border-radius: 14px;
    padding: 24px 30px;
}

.share-public-safe-info .share-public-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
}

.share-public-safe-info h2 {
    color: #3e3e3e;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.6;
}

.share-public-safe-info p {
    color: #aaa;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.2;
}

.share-public-metrics {
    display: flex;
    gap: 40px;
    text-align: center;
}

.share-public-metrics div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    width: 110px;
}

.share-public-metrics strong {
    color: #3e3e3e;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.2;
}

.share-public-metrics span {
    color: #868686;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.2;
}

@media (max-width: 1100px) {
    .share-public-hero,
    .share-public-details {
        grid-template-columns: 1fr;
    }

    .share-public-contact-card {
        min-height: auto;
    }

    .share-public-offers-row,
    .share-public-other-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .share-public-safe-strip {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 760px) {
    .share-public-layout {
        padding-bottom: 48px;
        --share-public-width: min(100% - 24px, 1300px);
    }

    .share-public-hero,
    .share-public-card,
    .share-public-cta,
    .share-public-other,
    .share-public-safe-strip {
        width: var(--share-public-width);
    }

    .share-public-heading p {
        font-size: 26px;
    }

    .share-public-heading h1 {
        font-size: 38px;
    }

    .share-public-quick-facts div {
        grid-template-columns: 1fr;
        gap: 3px;
    }

    .share-public-contact-card,
    .share-public-details,
    .share-public-offers,
    .share-public-cta,
    .share-public-safe-strip {
        padding: 24px 22px;
    }

    .share-public-contact-card .share-btn,
    .share-public-cta .share-btn {
        width: 100%;
    }

    .share-processing-status,
    .share-processing-actions {
        width: 100%;
    }

    .share-processing-actions {
        grid-template-columns: 1fr;
    }

    .share-processing-actions .share-btn {
        width: 100%;
    }

    .share-public-facts {
        padding-top: 0;
    }

    .share-public-offers-row,
    .share-public-other-grid {
        grid-template-columns: 1fr;
    }

    .share-public-cta {
        align-items: flex-start;
        flex-direction: column;
        margin-top: 56px;
    }

    .share-public-cta img {
        max-width: 220px;
        width: 100%;
        height: auto;
    }

    .share-public-other {
        padding-top: 56px;
    }

    .share-public-metrics {
        width: 100%;
        justify-content: space-between;
        gap: 12px;
    }

    .share-public-metrics div {
        width: auto;
        min-width: 0;
    }
}

/* Figma node 93:1648: first public hero section */
.share-public-layout .share-public-hero {
    display: flex;
    align-items: flex-end;
    gap: 52px;
    width: min(1440px, 100%);
    margin: 0 auto;
    padding: 36px 70px;
    box-sizing: border-box;
    overflow: hidden;
}

.share-public-layout .share-public-summary {
    flex: 1 1 0;
    gap: 24px;
    min-width: 0;
    padding-bottom: 24px;
    overflow: hidden;
}

.share-public-layout .share-pill {
    border-radius: 17px;
    background: #f4effe;
    color: #5656ac;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    line-height: normal;
    white-space: nowrap;
}

.share-public-layout .share-public-heading {
    gap: 0;
    line-height: normal;
    max-width: 100%;
    white-space: normal;
}

.share-public-layout .share-public-heading p {
    font-size: 32px;
    font-weight: 800;
    line-height: normal;
}

.share-public-layout .share-public-heading h1 {
    max-width: 100%;
    min-width: 0;
    font-size: 52px;
    font-weight: 900;
    overflow-wrap: anywhere;
    word-break: break-word;
    line-height: 1;
}

.share-public-layout .share-public-heading h1.share-public-title-long {
    font-size: clamp(36px, 3.35vw, 46px);
    line-height: 1.06;
}

.share-public-layout .share-public-heading h1.share-public-title-xlong {
    font-size: clamp(31px, 2.95vw, 42px);
    line-height: 1.08;
}

.share-public-layout .share-public-heading h1.share-public-title-xxlong {
    font-size: clamp(28px, 2.6vw, 38px);
    line-height: 1.08;
}

.share-public-layout .share-public-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 24px;
    max-width: 100%;
}

.share-public-layout .share-public-meta-item {
    flex: 0 0 200px;
    width: 200px;
    gap: 14px;
}

.share-public-layout .share-public-meta-item strong {
    font-size: 14px;
    font-weight: 700;
    line-height: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.share-public-layout .share-public-icon {
    width: 36px;
    height: 36px;
    border-radius: 10.5px;
    color: #c23be7;
}

.share-public-layout .share-public-icon::before,
.share-public-layout .share-public-icon::after {
    content: "";
    display: none;
}

.share-public-layout .share-public-icon img {
    display: block;
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.share-public-layout .share-public-icon-full {
    background: transparent;
}

.share-public-layout .share-public-icon-full img {
    width: 36px;
    height: 36px;
}

.share-public-layout .share-public-quick-facts {
    gap: 8px;
    font-size: 14px;
    line-height: normal;
}

.share-public-layout .share-public-quick-facts div {
    display: flex;
    align-items: center;
    gap: 20px;
    min-height: 17px;
    flex-wrap: wrap;
}

.share-public-layout .share-public-quick-facts dt {
    flex: 0 0 200px;
    width: 200px;
}

.share-public-layout .share-public-contact-card {
    flex: 1 1 360px;
    align-items: flex-start;
    justify-content: space-between;
    gap: 28px;
    min-width: 0;
    height: 260px;
    min-height: 0;
    overflow: hidden;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.62);
    padding: 36px 40px;
}

.share-public-layout .share-public-contact-card-owner {
    height: auto;
    min-height: 260px;
}

.share-public-layout .share-public-contact-card > div:first-child {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    min-width: 0;
}

.share-public-layout .share-public-contact-card > div:last-child {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
    min-width: 0;
}

.share-public-layout .share-public-contact-card h2 {
    font-size: 28px;
    font-weight: 800;
    line-height: 1.2;
    white-space: nowrap;

}


.share-public-layout .share-public-contact-card p {
    max-width: 470px;
    margin-top: 0;
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
}

.share-public-layout .share-public-contact-card .share-btn {
    width: fit-content;
    min-height: 48px;
    height: 48px;
}

.share-public-layout .share-public-contact-card div:last-child p {
    margin-top: 0;
    color: #9a99aa;
    font-size: 13px;
    line-height: normal;
    white-space: nowrap;
}

.share-public-layout .share-public-owner-share {
    gap: 10px;
}

.share-public-layout .share-public-owner-share p {
    color: #3e3e3e;
    font-size: 13px;
    font-weight: 700;
    white-space: normal;
}

.share-public-layout .share-public-owner-link-row {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    min-width: 0;
    border: 1px solid #e5e3ef;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.78);
    padding: 8px 8px 8px 12px;
}

.share-public-layout .share-public-owner-link {
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
    color: #5b4bb7;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.share-public-layout .share-public-owner-copy {
    flex: 0 0 auto;
    min-height: 34px;
    border: 0;
    border-radius: 10px;
    background: #3e3e3e;
    color: #fff;
    cursor: pointer;
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    padding: 0 12px;
}

@media (max-width: 1360px) and (min-width: 1101px) {
    .share-public-layout .share-public-hero-adaptive-title {
        flex-wrap: wrap;
        align-items: stretch;
    }

    .share-public-layout .share-public-hero-adaptive-title .share-public-summary {
        flex: 1 0 100%;
        padding-bottom: 0;
        overflow: visible;
    }

    .share-public-layout .share-public-hero-adaptive-title .share-public-contact-card {
        flex: 0 1 590px;
        max-width: 100%;
    }
}

@media (max-width: 1100px) {
    .share-public-layout .share-public-hero {
        flex-direction: column;
        align-items: stretch;
        width: min(100% - 40px, 760px);
        padding: 36px 0;
    }

    .share-public-layout .share-public-hero-adaptive-title .share-public-summary {
        overflow: visible;
    }

    .share-public-layout .share-public-contact-card {
        height: auto;
        min-height: 260px;
    }
}

@media (max-width: 760px) {
    .share-public-layout .share-public-hero {
        width: min(100% - 24px, 760px);
        padding: 32px 0;
        overflow: visible;
    }

    .share-public-layout .share-public-heading {
        white-space: normal;
    }

    .share-public-layout .share-public-heading p {
        font-size: 26px;
    }

    .share-public-layout .share-public-heading h1 {
        font-size: 38px;
    }

    .share-public-layout .share-public-heading h1.share-public-title-long {
        font-size: clamp(31px, 8.8vw, 36px);
        line-height: 1.06;
    }

    .share-public-layout .share-public-heading h1.share-public-title-xlong {
        font-size: clamp(28px, 8vw, 33px);
        line-height: 1.08;
    }

    .share-public-layout .share-public-heading h1.share-public-title-xxlong {
        font-size: clamp(27px, 8vw, 34px);
        line-height: 1.08;
    }

    .share-public-layout .share-public-meta {
        flex-direction: column;
        gap: 12px;
    }

    .share-public-layout .share-public-meta-item,
    .share-public-layout .share-public-quick-facts dt {
        flex-basis: auto;
        width: auto;
    }

    .share-public-layout .share-public-quick-facts div {
        align-items: flex-start;
        flex-direction: column;
        gap: 3px;
        white-space: normal;
    }

    .share-public-layout .share-public-contact-card {
        padding: 24px 22px;
        flex: auto;
    }

    .share-public-layout .share-public-contact-card h2,
    .share-public-layout .share-public-contact-card div:last-child p {
        white-space: normal;
    }

    .share-public-layout .share-public-contact-card .share-btn {
        width: 100%;
    }

    .share-public-layout .share-public-owner-link-row {
        flex-direction: column;
        align-items: stretch;
    }

    .share-public-layout .share-public-owner-copy {
        width: 100%;
    }
}

/* Figma node 93:1672: details section */
.share-public-layout .share-public-details {
    display: flex;
    align-items: flex-end;
    gap: 52px;
    width: min(1300px, calc(100% - 140px));
    margin: 0 auto;
    overflow: hidden;
    border: 1px solid #e6e6e6;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 18px 54px rgba(37, 36, 59, 0.08);
    padding: 36px 40px 44px;
    justify-content: space-between;
}

.share-public-layout .share-public-content {
    display: flex;
    flex: 0 0 660px;
    flex-direction: column;
    align-items: flex-start;
    width: 660px;
    gap: 30px;
    overflow: hidden;
    color: #3e3e3e;
    line-height: normal;
    word-break: break-word;
}

.share-public-layout .share-public-content > h2 {
    flex: 0 0 auto;
    font-size: 28px;
    font-weight: 800;
    line-height: 1.2;
    white-space: nowrap;
}

.share-public-layout .share-public-text-block {
    display: flex;
    flex: 0 0 auto;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    overflow: hidden;
    width: 100%;
}

.share-public-layout .share-public-text-block h3 {
    flex: 0 0 auto;
    font-size: 16px;
    font-weight: 800;
    line-height: normal;
    white-space: nowrap;
}

.share-public-layout .share-public-text-block p {
    position: relative;
    flex: 0 0 auto;
    min-width: 100%;
    width: min-content;
    color: #3e3e3e;
    font-size: 15px;
    font-weight: 500;
    line-height: normal;
    white-space: normal;
    word-break: break-word;
}

.share-public-layout .share-public-facts {
    flex: 0 0 500px;
    width: 500px;
    gap: 36px;
    overflow: hidden;
    padding-top: 42px;
}

.share-public-layout .share-public-fact {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 290px;
}

.share-public-layout .share-public-fact > div {
    display: flex;
    flex: 1 0 0;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
    overflow: hidden;
    color: #3e3e3e;
    line-height: normal;
}

.share-public-layout .share-public-fact h3 {
    width: 100%;
    font-size: 16px;
    font-weight: 800;
    line-height: normal;
}

.share-public-layout .share-public-fact p {
    width: 100%;
    margin: 0;
    color: #3e3e3e;
    font-size: 14px;
    font-weight: 500;
    line-height: normal;
}

.share-public-layout .share-public-fact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    overflow: hidden;
    border-radius: 14px;
    background: linear-gradient(135deg, #fbf3fa 0%, #f0e9fd 100%);
}

.share-public-layout .share-public-fact-icon img {
    display: block;
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.share-public-layout .share-public-fact-icon-full {
    background: transparent;
}

.share-public-layout .share-public-fact-icon-full img {
    width: 48px;
    height: 48px;
}

.share-public-layout .share-public-safe-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    overflow: hidden;
    border-radius: 14px;
    background: linear-gradient(135deg, #fbf3fa 0%, #f0e9fd 100%);
}

.share-public-layout .share-public-safe-icon img {
    display: block;
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.form-check-m-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    grid-column: 1 / -1;
}

.form-check-m {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 100%;
}

.form-check-m input[type="checkbox"] {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
    white-space: nowrap;
}

.form-check-m label {
    display: flex !important;
    align-items: flex-start;
    gap: 8px;
    margin: 0 !important;
    cursor: pointer;
}

.form-check-m-icon {
    position: relative;
    display: block;
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    margin-top: -4px;
}

.form-check-m-icon:before {
    content: '';
    position: absolute;
    left: 3px;
    top: 3px;
    width: 18px;
    height: 18px;
    border: 1px solid #2D3E84;
    border-radius: 3px;
    background: #fff;
    transition: background-color .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.form-check-m-icon:after {
    content: '';
    position: absolute;
    left: 8.5px;
    top: 10px;
    width: 11px;
    height: 8px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='8' viewBox='0 0 11 8' fill='none'%3E%3Cpath d='M9.56565 0.0986644C9.79846 -0.0550559 10.1145 -0.0290127 10.3196 0.175813C10.5246 0.380844 10.5505 0.696834 10.3967 0.929719L10.3196 1.02347L3.76682 7.57718L0.175998 3.98734C-0.0580742 3.75314 -0.0589304 3.37302 0.175021 3.1387C0.409115 2.9045 0.789244 2.90494 1.02365 3.1387L3.76584 5.87991L9.4719 0.175813L9.56565 0.0986644Z' fill='white'/%3E%3C/svg%3E") center / contain no-repeat;
    opacity: 0;
    transition: opacity .2s ease;
}

.form-check-m input[type="checkbox"]:checked + label .form-check-m-icon:before {
    background: #2D3E84;
}

.form-check-m input[type="checkbox"]:checked + label .form-check-m-icon:after {
    opacity: 1;
}

.form-check-m input[type="checkbox"]:focus-visible + label .form-check-m-icon:before {
    box-shadow: 0 0 0 3px rgba(45, 62, 132, .18);
}

.form-check-m input[type="checkbox"].error + label .form-check-m-icon:before {
    border-color: #E5372A;
    box-shadow: 0 0 0 3px rgba(229, 55, 42, .12);
}

.form-check-label {
    color: #5C5C5C;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
}

.form-check-label a {
    color: #6E5AFF;
    text-decoration: none;
}

.form-check-label a:hover {
    text-decoration: underline;
}

.form-check-error {
    margin-top: 6px;
    margin-left: 32px;
}

@media (max-width: 1100px) {
    .share-public-layout .share-public-details {
        align-items: flex-start;
        flex-direction: column;
        width: min(100% - 40px, 760px);
    }

    .share-public-layout .share-public-content,
    .share-public-layout .share-public-facts,
    .share-public-layout .share-public-fact {
        flex-basis: auto;
        width: 100%;
    }
}

@media (max-width: 760px) {
    .share-public-layout .share-public-details {
        width: min(100% - 24px, 760px);
        padding: 24px 22px;
    }

    .share-public-layout .share-public-text-block p {
        width: 100%;
    }
}
