/* Checkout Page Styles */

::view-transition-old(root) {
    animation: vt-fade-out 0.25s ease-out forwards;
}
::view-transition-new(root) {
    animation: vt-fade-in 0.25s ease-in forwards;
}
@keyframes vt-fade-out {
    from { opacity: 1; transform: scale(1); }
    to { opacity: 0; transform: scale(0.98); }
}
@keyframes vt-fade-in {
    from { opacity: 0; transform: scale(1.02); }
    to { opacity: 1; transform: scale(1); }
}

:root {
    --bg-primary: #000000;
    --bg-card: rgba(22, 22, 24, 0.95);
    --bg-card-hover: rgba(28, 28, 32, 0.95);
    --bg-input: rgba(16, 16, 18, 0.95);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-tertiary: rgba(255, 255, 255, 0.5);
    --text-muted: rgba(255, 255, 255, 0.4);
    --border-subtle: rgba(255, 255, 255, 0.08);
    --border-light: rgba(255, 255, 255, 0.12);
    --accent-orange: rgba(255, 140, 0, 0.9);
    --accent-orange-light: rgba(255, 150, 0, 0.7);
}

/* Animated border */
@property --border-angle {
    syntax: "<angle>";
    inherits: false;
    initial-value: 0turn;
}

@keyframes border-spin {
    to {
        --border-angle: 1turn;
    }
}

html, body {
    margin: 0;
    padding: 0;
    background: var(--bg-primary);
    font-family: "Libre Franklin", -apple-system, system-ui, sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
}

body {
    overflow-y: auto;
}

.cover-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.main-content {
    flex: 1;
    padding: 1.5rem 1.5rem 1rem;
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
}

/* Checkout Container */
.checkout-container {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 2.5rem;
    align-items: start;
    width: 100%;
}

/* Left Column - Summary */
.checkout-summary {
}

.summary-header {
    margin-bottom: 1rem;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--text-tertiary);
    font-size: 0.8rem;
    text-decoration: none;
    margin-bottom: 0.75rem;
    transition: color 0.2s ease;
}

.back-link:hover {
    color: var(--text-primary);
}

.summary-header h1 {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--text-primary);
    margin: 0;
    letter-spacing: -0.02em;
}

/* Plan Summary Card */
.plan-summary-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    padding: 1.25rem;
    margin-bottom: 1rem;
}

.plan-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-subtle);
}

.plan-label {
    display: block;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 0.2rem;
}

.plan-name {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-primary);
    margin: 0;
}

.change-plan {
    color: var(--text-tertiary);
    font-size: 0.8rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

.change-plan:hover {
    color: var(--text-primary);
}

/* Plan Features Inline */
.plan-features-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-subtle);
}

.plan-features-inline span {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.plan-features-inline span i {
    color: rgba(34, 197, 94, 0.8);
    font-size: 0.65rem;
    margin-right: 0.35rem;
}

/* Pricing Breakdown */
.pricing-breakdown {
    margin-bottom: 1.25rem;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.price-row.trial {
    color: var(--text-tertiary);
}

.trial-badge {
    background: rgba(34, 197, 94, 0.15);
    color: rgba(34, 197, 94, 0.9);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.price-row.total {
    padding-top: 1rem;
    margin-top: 0.5rem;
    border-top: 1px solid var(--border-subtle);
    font-weight: 500;
    color: var(--text-primary);
}

.total-amount {
    font-size: 1.25rem;
    font-weight: 500;
}

/* Billing Note */
.billing-note {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.02);
    padding: 0.85rem;
    border-radius: 6px;
    margin: 0;
    line-height: 1.5;
}

.billing-note i {
    color: var(--text-tertiary);
    margin-top: 0.1rem;
}

/* Trust Signals */
.trust-signals {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.3);
}

.trust-signals span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.trust-signals i {
    font-size: 0.65rem;
    opacity: 0.7;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.trust-item i {
    color: var(--text-tertiary);
    font-size: 0.85rem;
}

/* Right Column - Form */
.checkout-form-section {
    padding-top: 3.5rem;
}

.form-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 2rem;
}

.form-card h3 {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-primary);
    margin: 0 0 1.75rem 0;
}

/* Form Styles */
.checkout-form {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.form-group input,
.form-group select {
    background: var(--bg-input);
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    padding: 0.7rem 0.85rem;
    font-size: 0.9rem;
    color: var(--text-primary);
    font-family: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-orange-light);
    box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.1);
}

/* Custom Select */
.custom-select {
    position: relative;
    width: 100%;
}

.custom-select-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--bg-input);
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    padding: 0.7rem 0.85rem;
    cursor: pointer;
    transition: border-color 0.2s ease;
}

.custom-select-trigger:hover {
    border-color: var(--border-light);
}

.custom-select.open .custom-select-trigger {
    border-color: var(--border-light);
    border-radius: 6px 6px 0 0;
}

.custom-select-value {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.custom-select-value.selected {
    color: var(--text-primary);
}

.custom-select-arrow {
    width: 16px;
    height: 16px;
    color: var(--text-muted);
    transition: transform 0.2s ease;
}

.custom-select.open .custom-select-arrow {
    transform: rotate(180deg);
}

.custom-select-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(18, 18, 20, 0.98);
    border: 1px solid var(--border-light);
    border-top: none;
    border-radius: 0 0 6px 6px;
    overflow: hidden;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.custom-select.open .custom-select-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.custom-select-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: background 0.15s ease;
    border-bottom: 1px solid var(--border-subtle);
}

.custom-select-option:last-child {
    border-bottom: none;
}

.custom-select-option:hover {
    background: rgba(255, 255, 255, 0.05);
}

.custom-select-option.selected {
    background: rgba(255, 255, 255, 0.08);
}

.custom-select-option i {
    width: 18px;
    font-size: 0.85rem;
    color: var(--text-tertiary);
    text-align: center;
}

.custom-select-option span {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.custom-select-option:hover span,
.custom-select-option.selected span {
    color: var(--text-primary);
}

.custom-select-option:hover i,
.custom-select-option.selected i {
    color: var(--text-secondary);
}

/* Card Input */
.card-input-wrapper {
    position: relative;
}

.card-input-wrapper input {
    width: 100%;
    padding-right: 5.5rem;
}

.card-icons {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 0.4rem;
    color: var(--text-muted);
    font-size: 1.25rem;
}

/* Form Row */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* Form Divider */
.form-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 0.75rem 0;
}

.form-divider::before,
.form-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border-subtle);
}

.form-divider span {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* Checkout Button */
.btn-checkout {
    --main-bg: linear-gradient(
        to bottom,
        rgba(22, 22, 24, 1),
        rgba(22, 22, 24, 1)
    );
    --gradient-border: conic-gradient(
        from var(--border-angle),
        rgba(255, 120, 0, 0.6),
        rgba(255, 150, 0, 0.8) 25%,
        rgba(255, 120, 0, 0.3) 50%,
        rgba(255, 150, 0, 0.5) 75%,
        rgba(255, 120, 0, 0.6) 100%
    );
    
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    width: 100%;
    padding: 1rem 1.5rem 0.85rem;
    margin-top: 0.5rem;
    border: solid 2px transparent;
    background: 
        var(--main-bg) padding-box,
        var(--gradient-border) border-box,
        var(--main-bg) border-box;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.95);
    font-family: inherit;
    cursor: pointer;
    animation: border-spin 3s linear infinite;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-checkout:hover {
    animation: border-spin 1.5s linear infinite;
    --gradient-border: conic-gradient(
        from var(--border-angle),
        rgba(255, 120, 0, 1),
        rgba(255, 150, 0, 1) 25%,
        rgba(255, 120, 0, 0.7) 50%,
        rgba(255, 150, 0, 0.9) 75%,
        rgba(255, 120, 0, 1) 100%
    );
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(255, 120, 0, 0.2), 0 0 12px rgba(255, 120, 0, 0.15);
}

.btn-checkout-main {
    font-size: 1rem;
    font-weight: 500;
}

.btn-checkout-sub {
    font-size: 0.7rem;
    font-weight: 400;
    opacity: 0.65;
}

/* Secure Checkout Note */
.secure-checkout-note {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    padding: 0.85rem 1rem;
    margin-top: 0.25rem;
}

.secure-checkout-icons {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.secure-checkout-icons .square-logo {
    width: 22px;
    height: 22px;
    color: var(--text-secondary);
}

.secure-checkout-icons i {
    font-size: 0.9rem;
    color: rgba(34, 197, 94, 0.8);
}

.secure-checkout-note p {
    font-size: 0.75rem;
    color: var(--text-tertiary);
    margin: 0;
    line-height: 1.5;
}

.secure-checkout-note strong {
    color: var(--text-secondary);
    font-weight: 500;
}

/* Payment Methods */
.payment-methods {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
}

.payment-methods span {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.payment-icons {
    display: flex;
    gap: 0.5rem;
}

.payment-icons i {
    font-size: 1.35rem;
    color: var(--text-tertiary);
    opacity: 0.7;
}

/* Promo Code */
.promo-code-group {
    margin-top: 0.5rem;
}

.promo-code-group .optional-label {
    font-weight: 300;
    color: var(--text-muted);
}

.promo-code-input-wrapper {
    display: flex;
    gap: 0.5rem;
}

.promo-code-input-wrapper input {
    flex: 1;
}

.btn-apply-promo {
    padding: 0.7rem 1rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.btn-apply-promo:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--border-light);
    color: var(--text-primary);
}

.btn-apply-promo:disabled {
    opacity: 0.7;
    cursor: default;
    color: rgba(34, 197, 94, 0.9);
    border-color: rgba(34, 197, 94, 0.3);
    background: rgba(34, 197, 94, 0.08);
}

.promo-feedback {
    display: block;
    font-size: 0.75rem;
    margin-top: 0.35rem;
    min-height: 1.1em;
}

.promo-feedback.success {
    color: rgba(34, 197, 94, 0.9);
}

.promo-feedback.error {
    color: rgba(248, 113, 113, 0.9);
}

/* Custom Select Focus */
.custom-select-trigger:focus {
    outline: none;
    border-color: var(--accent-orange-light);
    box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.1);
}

/* Terms Note */
.terms-note {
    font-size: 0.7rem;
    color: var(--text-muted);
    line-height: 1.6;
    text-align: center;
    margin: 0;
}

.terms-note a {
    color: var(--text-tertiary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.terms-note a:hover {
    color: var(--text-secondary);
}

/* Mobile Responsiveness */
@media (max-width: 900px) {
    .checkout-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .checkout-summary {
        position: static;
    }

    .checkout-form-section {
        padding-top: 0;
    }

    .main-content {
        padding: 1rem 1rem 3rem;
    }

    .trust-signals {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .plan-header {
        flex-direction: column;
        gap: 0.75rem;
    }

    .trust-signals {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
}

/* Plan Selector Modal */
.plan-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.plan-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.plan-modal {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    width: 100%;
    max-width: 520px;
    max-height: 90vh;
    overflow: hidden;
    transform: scale(0.95);
    transition: transform 0.2s ease;
}

.plan-modal-overlay.active .plan-modal {
    transform: scale(1);
}

.plan-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border-subtle);
}

.plan-modal-header h3 {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-primary);
    margin: 0;
}

.plan-modal-close {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    transition: color 0.2s ease;
}

.plan-modal-close:hover {
    color: var(--text-primary);
}

.plan-modal-body {
    padding: 1rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.plan-option {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    padding: 1rem 1.25rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.plan-option:hover {
    border-color: var(--border-light);
    background: rgba(255, 255, 255, 0.03);
}

.plan-option.selected {
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.04);
}

.plan-option-badge {
    position: absolute;
    top: -8px;
    right: 1rem;
    background: rgba(255, 255, 255, 0.9);
    color: #111;
    font-size: 0.6rem;
    font-weight: 600;
    padding: 0.2rem 0.5rem;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.plan-option-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.plan-option-radio {
    width: 18px;
    height: 18px;
    border: 2px solid var(--border-light);
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
    transition: all 0.2s ease;
}

.plan-option.selected .plan-option-radio {
    border-color: rgba(255, 255, 255, 0.6);
}

.plan-option.selected .plan-option-radio::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
}

.plan-option-info {
    flex: 1;
}

.plan-option-info h4 {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-primary);
    margin: 0 0 0.15rem 0;
}

.plan-option-info p {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin: 0;
}

.plan-option-price {
    text-align: right;
}

.plan-option-price .price {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-primary);
}

.plan-option-price .period {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.plan-option-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    margin: 0.75rem 0 0 0;
    padding: 0.75rem 0 0 0;
    border-top: 1px solid var(--border-subtle);
    list-style: none;
}

.plan-option-features li {
    font-size: 0.75rem;
    color: var(--text-tertiary);
}

.plan-option-features li::before {
    content: '•';
    margin-right: 0.35rem;
    color: var(--text-muted);
}

.plan-modal-footer {
    padding: 1rem 1.5rem 1.25rem;
    border-top: 1px solid var(--border-subtle);
}

.btn-confirm-plan {
    width: 100%;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 6px;
    color: #111;
    font-size: 0.9rem;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-confirm-plan:hover {
    background: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.15);
}

/* Locked/Disabled Form State */
.form-group input:disabled,
.form-group select:disabled {
    cursor: not-allowed;
    background: rgba(16, 16, 18, 0.5);
}

.custom-select.disabled .custom-select-trigger {
    cursor: not-allowed;
    background: rgba(16, 16, 18, 0.5);
}

.btn-checkout.locked {
    opacity: 0.6;
    cursor: pointer;
}

.btn-checkout.locked:hover {
    transform: none;
    box-shadow: none;
}

/* Invite Modal Styles */
.invite-modal {
    max-width: 420px;
}

.invite-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    text-align: center;
    padding: 1rem 0;
}

.invite-message i {
    font-size: 2.5rem;
    color: var(--accent-orange);
    opacity: 0.9;
}

.invite-message p {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-primary);
    margin: 0;
}

.invite-form {
    padding-top: 0.5rem;
}

.invite-subtext {
    font-size: 0.85rem;
    color: var(--text-tertiary);
    text-align: center;
    margin: 0 0 1.25rem 0;
    line-height: 1.5;
}

.invite-form .form-group {
    margin-bottom: 1rem;
}

.invite-form .form-group label {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 0.35rem;
    display: block;
}

.invite-form .form-group input {
    width: 100%;
    background: var(--bg-input);
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    color: var(--text-primary);
    font-family: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.invite-form .form-group input::placeholder {
    color: var(--text-muted);
}

.invite-form .form-group input:focus {
    outline: none;
    border-color: var(--accent-orange-light);
    box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.1);
}

.btn-join-waitlist {
    width: 100%;
    padding: 0.85rem 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 6px;
    color: #111;
    font-size: 0.95rem;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-join-waitlist:hover {
    background: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.15);
}

.waitlist-note {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
    margin: 1rem 0 0 0;
}

.waitlist-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
    padding: 2rem 1rem;
}

.waitlist-success i {
    font-size: 3rem;
    color: rgba(34, 197, 94, 0.9);
}

.waitlist-success p {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-primary);
    margin: 0.5rem 0 0 0;
}

.waitlist-success span {
    font-size: 0.85rem;
    color: var(--text-tertiary);
}

/* Invite form container */
.invite-form-container {
    padding-top: 0.5rem;
}

/* Scrollbar */
html {
    scrollbar-width: thin;
    scrollbar-color: #333 #0a0a0a;
    scroll-behavior: smooth;
}

html::-webkit-scrollbar {
    width: 8px;
}

html::-webkit-scrollbar-track {
    background: #0a0a0a;
}

html::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}

