.scroll-indicator[data-scroll-target] {
    cursor: pointer;
}

.registration {
    scroll-margin-top: 110px;
}

.registration .reg-card {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0;
    text-align: left;
    background: transparent;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
    overflow: visible;
}

.registration .reg-card::before {
    display: none;
}

.registration-shell {
    margin-top: 36px;
    color: rgba(255, 255, 255, 0.92);
}

.registration-panel,
.registration-sidebar,
.sidebar-card,
.form-block,
.participant-card,
.success-block,
.success-summary-grid .success-detail,
.info-note {
    position: relative;
    isolation: isolate;
}

.registration-panel::after,
.registration-sidebar::after,
.sidebar-card::after,
.form-block::after,
.participant-card::after,
.success-block::after,
.success-summary-grid .success-detail::after,
.info-note::after {
    content: '';
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: inherit;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.18),
        rgba(247, 168, 27, 0.3) 42%,
        rgba(255, 255, 255, 0.06) 72%,
        rgba(255, 255, 255, 0.16)
    );
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.9;
    z-index: 1;
}

.registration-panel > *,
.registration-sidebar > *,
.sidebar-card > *,
.form-block > *,
.participant-card > *,
.success-block > *,
.success-summary-grid .success-detail > *,
.info-note > * {
    position: relative;
    z-index: 2;
}

.registration-shell-success {
    margin-top: 24px;
}

.registration-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.72fr);
    gap: 26px;
    align-items: start;
}

.registration-panel,
.registration-sidebar {
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    background: linear-gradient(180deg, rgba(6, 43, 78, 0.9), rgba(4, 28, 52, 0.94));
    backdrop-filter: blur(18px);
    box-shadow: 0 22px 46px rgba(0, 12, 24, 0.28);
}

.registration-panel {
    padding: 28px;
}

.registration-sidebar {
    padding: 18px;
    display: grid;
    gap: 14px;
    position: sticky;
    top: 108px;
}

.success-layout {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.5fr);
}

.success-panel {
    padding: 26px;
}

.success-sidebar {
    align-self: start;
}

.registration-head {
    display: grid;
    gap: 16px;
    margin-bottom: 18px;
}

.registration-intro {
    max-width: 58ch;
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.7;
    font-size: 0.99rem;
}

.registration-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.meta-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(247, 168, 27, 0.2);
    background: rgba(247, 168, 27, 0.12);
    color: #ffd76e;
    font-size: 0.83rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.form-block {
    margin-top: 18px;
    padding: 20px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
}

.form-block-header {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 16px;
}

.step-pill {
    flex: 0 0 auto;
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(247, 168, 27, 0.18);
    color: #ffd76e;
    font-size: 0.84rem;
    font-weight: 800;
}

.reg-section-title,
.participant-card-title,
.sidebar-card-title,
.sidebar-section-title,
.reg-field label {
    color: #ffffff;
    font-weight: 700;
}

.reg-section-title {
    font-size: 1.02rem;
    line-height: 1.3;
}

.reg-section-copy,
.sidebar-card-copy,
.summary-note,
.payment-note,
.success-copy,
.small-note {
    color: rgba(226, 232, 240, 0.72);
    font-size: 0.92rem;
    line-height: 1.55;
}

.reg-grid,
.participant-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.honeypot-wrap {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

.reg-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

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

.reg-field label {
    font-size: 0.92rem;
}

.required-indicator {
    margin-left: 4px;
    color: #ffd76e;
    font-weight: 800;
}

.reg-field input,
.reg-field select,
.reg-field textarea {
    width: 100%;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    padding: 14px 16px;
    font: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.reg-field textarea {
    min-height: 110px;
    resize: vertical;
}

.reg-field input:focus,
.reg-field select:focus,
.reg-field textarea:focus {
    outline: none;
    border-color: rgba(247, 168, 27, 0.5);
    box-shadow: 0 0 0 4px rgba(247, 168, 27, 0.12);
    background: rgba(255, 255, 255, 0.12);
}

.reg-field input::placeholder,
.reg-field textarea::placeholder {
    color: rgba(226, 232, 240, 0.46);
}

.reg-field.has-error input,
.reg-field.has-error select,
.reg-field.has-error textarea,
.consent-row.has-error {
    border-color: rgba(248, 113, 113, 0.55);
    box-shadow: 0 0 0 4px rgba(248, 113, 113, 0.1);
}

.reg-field.has-error input,
.reg-field.has-error select,
.reg-field.has-error textarea {
    background: rgba(127, 29, 29, 0.12);
}

.reg-field.has-error label,
.consent-row.has-error span {
    color: #fee2e2;
}

.field-error {
    color: #fecaca;
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.45;
}

.consent-error {
    margin-top: -8px;
}

.reg-field select option {
    color: #0f172a;
}

.participants-stack {
    display: grid;
    gap: 14px;
    margin-top: 14px;
}

.participant-card {
    padding: 18px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.05);
}

.participant-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.participant-tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(247, 168, 27, 0.14);
    color: #ffd76e;
    font-size: 0.8rem;
    font-weight: 700;
}

.consent-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 18px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
}

.consent-row input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 3px;
    accent-color: var(--gold-primary);
}

.consent-row span {
    color: rgba(241, 245, 249, 0.84);
}

.form-block-footer {
    display: grid;
    gap: 16px;
}

.form-block-note {
    padding: 0;
    background: transparent;
    border: 0;
}

.info-note {
    padding: 20px 22px;
    border-radius: 18px;
    border: 1px solid rgba(247, 168, 27, 0.28);
    background: linear-gradient(180deg, rgba(247, 168, 27, 0.16), rgba(247, 168, 27, 0.08));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.info-note .sidebar-section-title {
    color: #ffd76e;
    margin-bottom: 10px;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

.info-note .sidebar-card-copy {
    color: rgba(255, 248, 235, 0.9);
    font-size: 0.96rem;
    line-height: 1.65;
}

.action-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.primary-button,
.secondary-button,
.ghost-button {
    appearance: none;
    border: 0;
    border-radius: 999px;
    padding: 14px 24px;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.primary-button {
    color: #082544;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
    box-shadow: 0 14px 28px rgba(247, 168, 27, 0.24);
}

.secondary-button {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.ghost-button {
    color: #ffd76e;
    background: rgba(247, 168, 27, 0.1);
}

.primary-button:hover,
.secondary-button:hover,
.ghost-button:hover {
    transform: translateY(-1px);
}

.primary-button:disabled,
.secondary-button:disabled,
.ghost-button:disabled {
    cursor: not-allowed;
    opacity: 0.65;
    transform: none;
}

.form-message {
    padding: 10px 14px;
    border-radius: 14px;
    font-size: 0.88rem;
    font-weight: 600;
}

.form-message.error {
    background: rgba(220, 38, 38, 0.12);
    border: 1px solid rgba(220, 38, 38, 0.22);
    color: #fecaca;
}

.form-message-title {
    font-weight: 700;
}

.form-message-list {
    margin: 8px 0 0 18px;
    padding: 0;
    display: grid;
    gap: 4px;
}

.form-message.info {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(226, 232, 240, 0.78);
}

.sidebar-card {
    padding: 18px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
}

.sidebar-card-overview {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.035));
}

.sidebar-card-title {
    margin-bottom: 12px;
    font-size: 1.02rem;
}

.overview-head {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 16px;
}

.overview-kicker {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(247, 168, 27, 0.14);
    color: #ffd76e;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.overview-capacity {
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.82rem;
    font-weight: 700;
}

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

.overview-stat {
    padding: 16px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
}

.overview-stat span {
    display: block;
    color: rgba(226, 232, 240, 0.72);
    font-size: 0.82rem;
    margin-bottom: 6px;
}

.overview-stat strong {
    display: block;
    color: #ffffff;
    font-family: 'Playfair Display', serif;
    font-size: 1.85rem;
    line-height: 1.05;
    margin-bottom: 6px;
}

.overview-stat small {
    color: rgba(226, 232, 240, 0.64);
    font-size: 0.78rem;
}

.overview-stat-accent {
    background: linear-gradient(135deg, rgba(247, 168, 27, 0.18), rgba(247, 168, 27, 0.08));
}

.overview-stat-accent strong {
    color: #ffd76e;
    font-size: 1.6rem;
}

.spots-bar {
    height: 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.spots-fill {
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--gold-primary), var(--gold-light));
}

.sidebar-section {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.sidebar-section-title {
    margin-bottom: 12px;
    font-size: 0.78rem;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.price-rules,
.summary-lines,
.payment-lines,
.success-details {
    display: grid;
    gap: 10px;
}

.price-rule,
.summary-line,
.payment-line,
.success-detail {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: flex-start;
}

.price-rule span,
.summary-line span,
.payment-line span,
.success-detail span,
.bank-label {
    color: rgba(226, 232, 240, 0.72);
}

.price-rule strong,
.summary-line strong,
.payment-line strong,
.success-detail strong,
.bank-value {
    color: #ffffff;
    font-weight: 700;
    text-align: right;
}

.bank-grid {
    display: grid;
    gap: 0;
}

.bank-row {
    display: grid;
    gap: 4px;
    padding: 10px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

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

.bank-value {
    word-break: break-word;
    text-align: left;
    line-height: 1.45;
}

.bank-value.mono {
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 0.8rem;
    line-break: anywhere;
    overflow-wrap: anywhere;
}

.bank-label {
    font-size: 0.74rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.bank-note {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-grid {
    display: grid;
    gap: 10px;
}

.contact-item {
    display: grid;
    gap: 4px;
    padding: 10px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

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

.contact-label {
    color: rgba(226, 232, 240, 0.72);
    font-size: 0.74rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-value {
    color: #ffffff;
    font-weight: 700;
    line-height: 1.45;
    word-break: break-word;
}

.copy-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.copy-button {
    appearance: none;
    border: 1px solid rgba(247, 168, 27, 0.22);
    background: rgba(247, 168, 27, 0.12);
    color: #ffd76e;
    border-radius: 999px;
    padding: 9px 14px;
    font: inherit;
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
}

.success-headline {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 18px;
}

.success-title {
    margin-bottom: 8px;
}

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

.success-summary-grid .success-detail {
    padding: 16px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
}

.success-summary-grid .success-detail span {
    display: block;
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.success-summary-grid .success-detail strong {
    display: block;
    text-align: left;
    font-size: 1rem;
}

.success-block {
    margin-top: 16px;
    padding: 18px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
}

.success-reference-block {
    margin-top: 0;
    margin-bottom: 18px;
    background: linear-gradient(180deg, rgba(247, 168, 27, 0.16), rgba(247, 168, 27, 0.08));
}

.success-reference-copy {
    color: rgba(255, 248, 235, 0.88);
    margin-bottom: 12px;
}

.success-reference-code {
    padding: 14px 16px;
    border-radius: 14px;
    background: rgba(4, 28, 52, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 0.95rem;
    line-height: 1.5;
    word-break: break-word;
    overflow-wrap: anywhere;
}

.success-mail-note {
    margin-bottom: 18px;
    padding: 12px 14px;
    border-radius: 14px;
    font-size: 0.9rem;
    font-weight: 600;
}

.success-mail-note.sent {
    background: rgba(34, 197, 94, 0.14);
    border: 1px solid rgba(34, 197, 94, 0.22);
    color: #dcfce7;
}

.success-mail-note.pending {
    background: rgba(247, 168, 27, 0.12);
    border: 1px solid rgba(247, 168, 27, 0.2);
    color: #fde68a;
}

.success-steps {
    display: grid;
    gap: 12px;
}

.success-step {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: rgba(241, 245, 249, 0.86);
}

.step-pill.small {
    width: 24px;
    height: 24px;
    font-size: 0.72rem;
}

.bank-grid-success .bank-row:first-child .bank-value {
    color: #ffd76e;
}

.copy-actions-success {
    margin-top: 16px;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 700;
    white-space: nowrap;
}

.status-pill.pending {
    color: #fcd34d;
    background: rgba(251, 191, 36, 0.12);
}

.loading-state {
    padding: 28px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(241, 245, 249, 0.82);
}

@media (max-width: 1080px) {
    .registration-layout {
        grid-template-columns: 1fr;
    }

    .registration-sidebar {
        position: static;
    }

    .success-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .registration-shell {
        margin-top: 24px;
    }

    .registration-panel,
    .registration-sidebar {
        padding: 18px;
        border-radius: 20px;
    }

    .form-block {
        padding: 16px;
    }

    .reg-grid,
    .participant-grid,
    .overview-stats,
    .bank-row {
        grid-template-columns: 1fr;
    }

    .price-rule,
    .summary-line,
    .payment-line,
    .success-detail,
    .success-headline,
    .overview-head,
    .success-step {
        flex-direction: column;
        align-items: flex-start;
    }

    .success-summary-grid {
        grid-template-columns: 1fr;
    }

    .price-rule strong,
    .summary-line strong,
    .payment-line strong,
    .success-detail strong,
    .bank-value {
        text-align: left;
    }

}
