/* Subscription pages */
.subscriptions-page {
    background: radial-gradient(1200px 600px at 20% -10%, rgba(124, 58, 237, 0.35), transparent 60%),
        radial-gradient(900px 500px at 90% 10%, rgba(167, 139, 250, 0.2), transparent 55%),
        radial-gradient(700px 500px at 50% 110%, rgba(245, 213, 101, 0.12), transparent 55%), #07060d;
    background-attachment: fixed;
    background-repeat: no-repeat;
    color: #f2f5f8;
    padding-bottom: 80px;
    min-height: 100vh;
}

.subscriptions-signup {
    --signup-max-width: 760px;
    --signup-field-bg: rgba(10, 12, 18, 0.75);
    --signup-field-border: rgba(255, 255, 255, 0.12);
    --signup-field-focus: rgba(176, 120, 255, 0.6);
}

body.fuzzy-layout .subscriptions-page {
    background: transparent;
}

.subscriptions-detail {
    position: relative;
    overflow: hidden;
    z-index: 0;
}

.subscriptions-detail .detail-hero,
.subscriptions-detail .detail-sections,
.subscriptions-detail .detail-models {
    position: relative;
    z-index: 2;
}

.subscriptions-hero {
    padding: 80px 0 50px;
    background: radial-gradient(circle at 15% 20%, rgba(90, 35, 140, 0.35), transparent 50%),
                radial-gradient(circle at 85% 10%, rgba(20, 120, 160, 0.25), transparent 55%),
                #0b0f14;
}

.subscriptions-hero .eyebrow {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 12px;
}

.subscriptions-hero .display-4 {
    font-weight: 700;
    color: #ffffff;
}

.subscriptions-hero .lead {
    color: rgba(240, 245, 255, 0.72);
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.hero-card {
    background: rgba(16, 20, 28, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.hero-card-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.hero-card-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 14px;
    color: rgba(240, 245, 255, 0.75);
}

.hero-card-list li {
    padding-left: 22px;
    margin-bottom: 8px;
    position: relative;
}

.hero-card-list li::before {
    content: "\f00c";
    font-family: FontAwesome;
    position: absolute;
    left: 0;
    top: 0;
    color: #65d6a6;
}

.hero-card-note {
    font-size: 13px;
    color: rgba(240, 245, 255, 0.6);
}

.subscriptions-bubbles {
    padding: 30px 0 60px;
}

.bubble-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.plan-bubble {
    position: relative;
    background: rgba(16, 20, 28, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 32px;
    padding: 28px 24px;
    text-align: center;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
    overflow: hidden;
    min-width: 0;
    min-height: 520px;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.plan-bubble:hover,
.plan-bubble:focus-within {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
}

.plan-bubble::after {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    top: -40px;
    right: -30px;
    pointer-events: none;
}

.plan-bubble--free {
    background: radial-gradient(circle at 20% 20%, rgba(80, 200, 120, 0.18), transparent 55%),
                rgba(12, 18, 16, 0.92);
    border-color: rgba(80, 200, 120, 0.35);
}

.plan-bubble--affiliate {
    background: radial-gradient(circle at 20% 20%, rgba(255, 200, 90, 0.18), transparent 55%),
                rgba(18, 16, 12, 0.92);
    border-color: rgba(255, 200, 90, 0.35);
}

.plan-badge-row {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 12px;
    flex-wrap: wrap;
    white-space: normal;
}

.plan-bubble[data-plan="affiliate"] .plan-badge-row {
    flex-direction: column;
    gap: 6px;
    align-items: center;
}

.plan-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.8);
}

.plan-badge--mint {
    background: rgba(80, 200, 120, 0.2);
    color: #9af0c9;
}

.plan-badge--gold {
    background: rgba(255, 200, 90, 0.2);
    color: #ffd9a0;
}

.plan-badge--amber {
    background: rgba(255, 160, 60, 0.2);
    color: #ffc48a;
}

.plan-icon {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.plan-icon-img {
    width: 110px;
    height: 110px;
    object-fit: contain;
}

.plan-name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
}

.plan-price {
    font-size: 26px;
    font-weight: 700;
}

.plan-price-note {
    font-size: 13px;
    color: rgba(240, 245, 255, 0.7);
    margin-bottom: 10px;
}

.plan-summary {
    color: rgba(240, 245, 255, 0.78);
    margin-bottom: 12px;
    min-height: 64px;
}

.plan-recommended {
    font-size: 13px;
    color: rgba(240, 245, 255, 0.62);
    margin-bottom: 12px;
}

.plan-highlights {
    list-style: none;
    padding-left: 0;
    margin-bottom: 16px;
    text-align: left;
    color: rgba(240, 245, 255, 0.78);
}

.plan-highlights li {
    padding-left: 20px;
    margin-bottom: 8px;
    position: relative;
}

.plan-highlights li::before {
    content: "\f0da";
    font-family: FontAwesome;
    position: absolute;
    left: 0;
    top: 0;
    color: rgba(255, 255, 255, 0.55);
}

.plan-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 6px 0 16px;
    align-items: center;
}

.plan-link-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.7);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}

.plan-link-pill i {
    color: #9ed0ff;
}

.plan-link-pill:hover {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.12);
    text-decoration: none;
    transform: translateY(-1px);
}

.plan-actions {
    margin-top: auto;
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    min-height: 40px;
}

.plan-actions .btn {
    min-width: 120px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 0;
    max-width: 160px;
}

/* Detail page */
.subscriptions-detail .detail-hero {
    padding: 80px 0 40px;
}

.detail-card {
    background: rgba(16, 20, 28, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    padding: 36px 32px;
    text-align: center;
    box-shadow: 0 22px 45px rgba(0, 0, 0, 0.35);
    position: relative;
    z-index: 2;
}

.detail-icon {
    width: 190px;
    height: 190px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.detail-icon-img {
    width: 140px;
    height: 140px;
    object-fit: contain;
}

.detail-name {
    font-size: 28px;
    font-weight: 700;
}

.detail-price {
    font-size: 30px;
    font-weight: 700;
}

.detail-price-note {
    color: rgba(240, 245, 255, 0.7);
    margin-bottom: 10px;
}

.detail-summary {
    color: rgba(240, 245, 255, 0.8);
    margin-bottom: 12px;
}

.detail-recommended {
    font-size: 13px;
    color: rgba(240, 245, 255, 0.62);
}

.detail-callouts {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin: 16px 0 20px;
}

.detail-pill {
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.detail-pill--gold {
    background: rgba(255, 200, 90, 0.2);
}

.detail-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.detail-sections {
    padding: 20px 0 40px;
    position: relative;
    z-index: 2;
}

.detail-section {
    background: rgba(16, 20, 28, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 24px;
    margin-bottom: 18px;
    position: relative;
    z-index: 2;
}

.detail-section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.detail-section-icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #9ed0ff;
}

.detail-section h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}

.detail-section-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 12px;
}

.detail-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.8);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.detail-section-badge i {
    color: #9ed0ff;
}

.detail-section p {
    color: rgba(240, 245, 255, 0.76);
}

.detail-section ul {
    list-style: none;
    padding-left: 0;
    color: rgba(240, 245, 255, 0.7);
    margin-top: 12px;
}

.detail-section ul li {
    padding-left: 20px;
    margin-bottom: 8px;
    position: relative;
}

.detail-section ul li::before {
    content: "\f105";
    font-family: FontAwesome;
    position: absolute;
    left: 0;
    top: 0;
    color: rgba(255, 255, 255, 0.55);
}

.detail-section-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.detail-section-link:hover {
    color: #ffffff;
    text-decoration: none;
}

/* Signup */
.signup-hero {
    padding: 70px 0 35px;
}

.signup-hero-card {
    background: rgba(16, 20, 28, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 28px;
    text-align: center;
}

.signup-hero-pill {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 16px 20px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(240, 245, 255, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.12);
    max-width: var(--signup-max-width);
    width: 100%;
    margin: 0 auto 18px;
    text-align: left;
}

.signup-hero-pill-row {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.signup-hero-pill-logo {
    width: 52px;
    height: 52px;
    object-fit: contain;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    padding: 6px;
}

.signup-hero-pill-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1 1 auto;
    min-width: 0;
    text-align: left;
}

.signup-hero-pill-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(240, 245, 255, 0.65);
}

.signup-hero-pill-name {
    font-size: 15px;
    font-weight: 700;
}

.signup-hero-pill-price {
    font-size: 15px;
    font-weight: 700;
    white-space: nowrap;
    margin-left: auto;
}

.signup-hero-pill-price span {
    font-size: 11px;
    color: rgba(240, 245, 255, 0.6);
    margin-left: 6px;
}

.signup-hero-pill-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.signup-hero-pill-summary {
    color: rgba(240, 245, 255, 0.76);
}

.signup-hero-pill-highlights {
    list-style: none;
    padding-left: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 8px 16px;
    color: rgba(240, 245, 255, 0.75);
}

.signup-hero-pill-highlights li {
    position: relative;
    padding-left: 18px;
    margin: 0;
}

.signup-hero-pill-highlights li::before {
    content: "\f0da";
    font-family: FontAwesome;
    position: absolute;
    left: 0;
    top: 0;
    color: rgba(255, 255, 255, 0.55);
}

.signup-hero-pill-note {
    font-size: 12px;
    color: rgba(255, 220, 170, 0.9);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.signup-hero-pill-details .btn {
    align-self: flex-start;
}

.signup-hero-title {
    font-size: 26px;
    font-weight: 700;
    margin-top: 8px;
}

.signup-hero-summary {
    color: rgba(240, 245, 255, 0.75);
    margin-top: 10px;
}

.signup-hero-note {
    margin-top: 12px;
    font-size: 13px;
    color: rgba(255, 220, 170, 0.9);
}

.signup-form-section {
    padding: 20px 0 40px;
}

.signup-form-section .container {
    max-width: 1260px;
}

.signup-form {
    background: rgba(16, 20, 28, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 26px;
}

.signup-section-pill {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(240, 245, 255, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.12);
    max-width: var(--signup-max-width);
    width: 100%;
    margin: 0 auto 16px;
}

.signup-section-pill i {
    color: #9ed0ff;
}

.signup-section-pill--sub {
    justify-content: flex-start;
    margin-bottom: 12px;
}

.signup-step {
    margin-bottom: 18px;
}

.signup-step-body {
    max-width: var(--signup-max-width);
    margin: 0 auto 16px;
}

.signup-terms {
    max-width: var(--signup-max-width);
    margin: 12px auto 0;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(10, 12, 18, 0.55);
}

.signup-terms .checkbox-inline {
    align-items: flex-start;
    gap: 10px;
}

.signup-terms a {
    color: #9ed0ff;
    text-decoration: underline;
}

.signup-terms a:hover {
    color: #c7e1ff;
}

.signup-terms.is-invalid {
    border-color: rgba(255, 120, 120, 0.55);
}

.signup-terms .field-error {
    margin-left: 26px;
}

.signup-step-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    max-width: var(--signup-max-width);
    margin: 20px auto 0;
}

.email-verify-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.email-verify-row .form-control {
    flex: 1 1 auto;
    min-width: 0;
}

.email-verify-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    border-radius: 10px;
    min-height: 40px;
    padding: 6px 16px;
}

.email-verify-btn.is-loading {
    opacity: 0.7;
    pointer-events: none;
}

.email-verify-spinner {
    font-size: 14px;
    display: none;
}

.email-verify-btn.is-loading .email-verify-spinner {
    display: inline-block;
}

.email-verify-pending {
    display: none;
    font-size: 13px;
    color: #ffd39a;
}

.email-verify-check {
    display: none;
    font-size: 14px;
    color: #7be2b6;
}

.email-verify-btn.is-pending {
    background: rgba(255, 200, 90, 0.16);
    border-color: rgba(255, 200, 90, 0.45);
    color: #ffe0b0;
    pointer-events: none;
}

.email-verify-btn.is-pending .email-verify-btn-icon {
    display: none;
}

.email-verify-btn.is-pending .email-verify-pending {
    display: inline-block;
}

.email-verify-btn.is-verified {
    background: rgba(90, 200, 140, 0.2);
    border-color: rgba(90, 200, 140, 0.45);
    color: #a9f3c7;
    pointer-events: none;
}

.email-verify-btn.is-verified .email-verify-btn-icon {
    display: none;
}

.email-verify-btn.is-verified .email-verify-check {
    display: inline-block;
}

.email-verify-badge {
    padding: 6px 12px;
    border-radius: 8px;
    border: 1px solid rgba(90, 200, 140, 0.4);
    background: rgba(90, 200, 140, 0.2);
    color: #a9f3c7;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.email-verify-meta {
    margin-top: 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.email-verify-status {
    font-size: 13px;
    color: rgba(240, 245, 255, 0.72);
}

.email-verify-status.is-verified {
    color: #78e2b8;
}

.email-verify-status.is-error {
    color: #ffb3b3;
}

.email-verify-status.is-warning {
    color: rgba(255, 220, 170, 0.9);
}

.email-verify-timer {
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(240, 245, 255, 0.85);
}

.signup-form .form-control,
.signup-form select.form-control,
.signup-form textarea.form-control {
    background: var(--signup-field-bg);
    border: 1px solid var(--signup-field-border);
    color: #fff;
    box-shadow: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.signup-form .form-control::placeholder {
    color: rgba(240, 245, 255, 0.45);
}

.signup-form .form-control:disabled,
.signup-form .form-control[readonly] {
    background: rgba(10, 12, 18, 0.45);
    color: rgba(240, 245, 255, 0.55);
}

.autocomplete-group {
    position: relative;
}

.autocomplete-list {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: rgba(12, 16, 24, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.35);
    max-height: 240px;
    overflow-y: auto;
    z-index: 20;
}

.autocomplete-item {
    padding: 10px 14px;
    cursor: pointer;
    font-size: 13px;
    color: rgba(240, 245, 255, 0.85);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.autocomplete-item:last-child {
    border-bottom: none;
}

.autocomplete-item:hover,
.autocomplete-item.is-active {
    background: rgba(90, 150, 220, 0.2);
    color: #ffffff;
}

.signup-password-pill {
    display: flex;
    gap: 16px;
    padding: 16px;
    border-radius: 16px;
    border: 1px solid var(--signup-field-border);
    background: var(--signup-field-bg);
    margin: 6px 0 12px;
}

.signup-password-pill:focus-within {
    border-color: var(--signup-field-focus);
    box-shadow: 0 0 0 1px rgba(176, 120, 255, 0.25);
}

.signup-password-pill .password-field {
    flex: 1 1 0;
    min-width: 0;
}

.signup-password-pill .form-control {
    background: transparent;
    border-color: transparent;
    box-shadow: none;
}

.signup-password-pill .form-control:focus {
    border-color: transparent;
    box-shadow: none;
}

.signup-password-pill .password-field + .password-field {
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    padding-left: 16px;
}

.password-hint {
    font-size: 12px;
    color: rgba(240, 245, 255, 0.6);
    margin-bottom: 4px;
}

.field-error {
    display: none;
    font-size: 12px;
    color: #ffb3b3;
    margin-top: 6px;
}

.form-control.is-invalid {
    border-color: rgba(255, 120, 120, 0.65);
}

.signup-details {
    margin-top: 10px;
}

.signup-review-plan {
    max-width: var(--signup-max-width);
    margin: 0 auto 16px;
}

.review-plan-note {
    font-size: 12px;
    color: rgba(240, 245, 255, 0.6);
    margin-top: 6px;
}

.signup-review-card {
    background: rgba(10, 12, 18, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 18px;
    margin-bottom: 16px;
}

.signup-discount {
    margin-bottom: 16px;
}

.review-line {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
    font-size: 14px;
}

.review-line.total {
    font-weight: 700;
    font-size: 16px;
}

.review-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin: 14px 0;
}

.review-note {
    font-size: 12px;
    color: rgba(240, 245, 255, 0.7);
}

.discount-row {
    display: flex;
    gap: 10px;
    align-items: center;
}

.discount-status {
    margin-top: 8px;
    font-size: 12px;
    color: rgba(240, 245, 255, 0.75);
}

.signup-availability {
    display: none;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(10, 12, 18, 0.7);
    font-size: 13px;
    margin: 16px 0;
}

.signup-availability.is-warning {
    border-color: rgba(255, 190, 120, 0.4);
    color: #ffd5a3;
}

.signup-availability.is-success {
    border-color: rgba(90, 200, 140, 0.4);
    color: #baf0d3;
}

.signup-preorder {
    margin-top: 10px;
}

.signup-card-container {
    background: rgba(10, 12, 18, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 12px;
    min-height: 48px;
}

.card-errors {
    margin-top: 8px;
    font-size: 12px;
    color: #ffb3b3;
}

.subscriptions-verify,
.subscriptions-welcome {
    display: flex;
    align-items: center;
    min-height: 70vh;
}

.subscriptions-verify .verify-card,
.subscriptions-welcome .welcome-card {
    background: rgba(16, 20, 28, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.verify-card h1,
.welcome-card h1 {
    font-size: 28px;
    margin-bottom: 12px;
}

.welcome-logo {
    width: 150px;
    height: auto;
    margin: 0 auto 16px;
    display: block;
}

.verify-card p,
.welcome-card p {
    color: rgba(240, 245, 255, 0.78);
    margin-bottom: 20px;
}

.signup-form .form-control:focus,
.signup-form select.form-control:focus,
.signup-form textarea.form-control:focus {
    border-color: var(--signup-field-focus);
    background: var(--signup-field-bg);
    box-shadow: 0 0 0 1px rgba(176, 120, 255, 0.25);
}

.signup-form .checkbox-inline {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(240, 245, 255, 0.7);
}

.payment-section {
    margin-top: 24px;
}

.billing-fields {
    margin-top: 16px;
}

.signup-alert {
    display: none;
    padding: 12px 16px;
    border-radius: 10px;
    margin: 16px 0;
    font-size: 14px;
}

.signup-alert.is-error {
    display: block;
    background: rgba(255, 90, 90, 0.18);
    color: #ffb3b3;
    border: 1px solid rgba(255, 90, 90, 0.4);
}

.signup-alert.is-success {
    display: block;
    background: rgba(90, 200, 140, 0.18);
    color: #baf0d3;
    border: 1px solid rgba(90, 200, 140, 0.4);
}

.signup-disclaimer {
    margin-top: 12px;
    font-size: 12px;
    color: rgba(240, 245, 255, 0.6);
}

.signup-summary-card {
    background: rgba(16, 20, 28, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 22px;
    position: sticky;
    top: 20px;
}

.summary-title {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.6);
}

.summary-name {
    font-size: 22px;
    font-weight: 700;
}

.summary-price {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.summary-price span {
    font-size: 13px;
    color: rgba(240, 245, 255, 0.6);
    margin-left: 6px;
}

.summary-highlights {
    list-style: none;
    padding-left: 0;
    color: rgba(240, 245, 255, 0.74);
    margin-bottom: 16px;
}

.summary-highlights li {
    padding-left: 18px;
    margin-bottom: 8px;
    position: relative;
}

.summary-highlights li::before {
    content: "\f111";
    font-family: FontAwesome;
    font-size: 6px;
    position: absolute;
    left: 0;
    top: 7px;
    color: rgba(255, 255, 255, 0.5);
}

.summary-note {
    font-size: 13px;
    color: rgba(240, 245, 255, 0.7);
    margin-bottom: 16px;
}

/* Model library callout */
.detail-models {
    padding: 10px 0 50px;
}

.detail-models-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 18px;
    align-items: center;
    background: rgba(16, 20, 28, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 24px;
}

.detail-models-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #c5a7ff;
}

.detail-models-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 6px;
}

.detail-models-body p {
    color: rgba(240, 245, 255, 0.75);
    margin-bottom: 12px;
}

.detail-models-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(80, 200, 120, 0.18);
    color: #baf0d3;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.is-hidden {
    display: none !important;
}

@media (max-width: 991px) {
    .signup-summary-card {
        position: static;
        margin-top: 24px;
    }

    .detail-models-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .detail-models-icon {
        margin: 0 auto;
    }

    .detail-models-badge {
        justify-content: center;
    }
}

@media (min-width: 1100px) {
    .bubble-grid {
        grid-template-columns: repeat(5, minmax(210px, 1fr));
        gap: 16px;
    }
}

@media (min-width: 1300px) {
    .bubble-grid {
        grid-template-columns: repeat(5, minmax(230px, 1fr));
        gap: 18px;
    }
}

@media (min-width: 1400px) {
    .subscriptions-bubbles .container {
        max-width: 1500px;
    }
}

@media (max-width: 767px) {
    .subscriptions-hero {
        padding: 60px 0 30px;
    }
    .plan-icon {
        width: 110px;
        height: 110px;
    }
    .plan-icon-img {
        width: 80px;
        height: 80px;
    }
    .detail-icon {
        width: 150px;
        height: 150px;
    }
    .detail-icon-img {
        width: 110px;
        height: 110px;
    }
    .plan-bubble {
        min-height: auto;
    }
    .plan-badge-row {
        flex-wrap: wrap;
        white-space: normal;
    }
    .hero-actions {
        flex-direction: column;
    }
    .detail-card,
    .signup-hero-card {
        padding: 22px;
    }

    .signup-hero-pill-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .signup-hero-pill-price {
        margin-left: 0;
    }

    .signup-hero-pill-highlights {
        grid-template-columns: 1fr;
    }

    .email-verify-row {
        flex-direction: column;
        align-items: stretch;
    }

    .signup-password-pill {
        flex-direction: column;
    }

    .signup-password-pill .password-field + .password-field {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        padding-left: 0;
        padding-top: 16px;
    }

    .signup-step-actions,
    .discount-row {
        flex-direction: column;
        align-items: stretch;
    }

    .email-verify-badge {
        justify-content: center;
    }
}
