/* Subscribe page — explicit colors so this works even if CSS variables don't load. */

.subscribe-main {
    max-width: 1080px;
    margin: 0 auto;
    padding: 60px 24px 80px;
    color: #f5f5f5;
    position: relative;
    z-index: 1;
}

.subscribe-hero {
    text-align: center;
    margin-bottom: 56px;
}

.subscribe-hero h1 {
    font-size: clamp(2rem, 5vw, 3.4rem);
    line-height: 1.1;
    margin: 0 0 18px;
    color: #ffffff;
}

.subscribe-hero h1 .accent {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #ef4444; /* fallback */
}

.subscribe-tagline {
    font-size: 1.15rem;
    color: #cfcfcf;
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.6;
}

.subscribe-section-title {
    text-align: center;
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    margin: 0 0 12px;
    color: #ffffff;
}

.subscribe-section-sub {
    text-align: center;
    color: #b0b0b0;
    margin: 0 auto 36px;
    max-width: 600px;
}

/* Perks grid */
.subscribe-perks {
    margin-bottom: 72px;
}

.perks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
}

.perk-card {
    background: #1a1a2e;
    border: 1px solid #2a2a4a;
    border-radius: 14px;
    padding: 24px;
    transition: transform 0.2s, border-color 0.2s;
    color: #f5f5f5;
}

.perk-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 100, 100, 0.4);
}

.perk-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.perk-icon svg {
    width: 22px;
    height: 22px;
}

.perk-card h3 {
    font-size: 1.05rem;
    margin: 0 0 6px;
    color: #ffffff;
}

.perk-card p {
    color: #c0c0c0;
    font-size: 0.92rem;
    line-height: 1.55;
    margin: 0;
}

/* Tier grid */
.subscribe-tiers {
    margin-bottom: 72px;
}

.tier-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.tier-card {
    background: #1a1a2e;
    border: 1px solid #2a2a4a;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    color: #f5f5f5;
    transition: transform 0.2s, box-shadow 0.2s;
}

.tier-card:hover { transform: translateY(-4px); }

.tier-patreon:hover { box-shadow: 0 12px 40px rgba(249, 104, 84, 0.18); border-color: rgba(249, 104, 84, 0.5); }
.tier-subscribestar:hover { box-shadow: 0 12px 40px rgba(30, 58, 138, 0.22); border-color: rgba(30, 58, 138, 0.5); }

.tier-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 18px;
}

.tier-logo {
    width: 28px;
    height: 28px;
}

.tier-patreon .tier-logo { color: #f96854; }
.tier-subscribestar .tier-logo { color: #4f7df1; }

.tier-header h3 {
    margin: 0;
    font-size: 1.5rem;
    color: #ffffff;
}

.tier-price {
    font-size: 2.6rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
}

.tier-price span {
    font-size: 1rem;
    font-weight: 400;
    color: #888888;
}

.tier-note {
    color: #b0b0b0;
    font-size: 0.92rem;
    line-height: 1.5;
    margin: 0 0 24px;
    min-height: 3em;
}

.tier-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 24px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    color: #ffffff;
    transition: transform 0.15s, box-shadow 0.15s;
}

.tier-cta-patreon {
    background: linear-gradient(135deg, #f96854, #e5533d);
    box-shadow: 0 4px 18px rgba(249, 104, 84, 0.32);
}

.tier-cta-subscribestar {
    background: linear-gradient(135deg, #1e3a8a, #2b4db0);
    box-shadow: 0 4px 18px rgba(30, 58, 138, 0.34);
}

.tier-cta:hover {
    transform: translateY(-2px);
    color: #ffffff;
}

.tier-cta-patreon:hover {
    box-shadow: 0 8px 26px rgba(249, 104, 84, 0.45);
}

.tier-cta-subscribestar:hover {
    box-shadow: 0 8px 26px rgba(30, 58, 138, 0.5);
}

/* Steps */
.subscribe-faq {
    max-width: 720px;
    margin: 0 auto;
}

.subscribe-steps {
    list-style: none;
    counter-reset: step;
    padding: 0;
    margin: 0;
}

.subscribe-steps li {
    counter-increment: step;
    background: #1a1a2e;
    border: 1px solid #2a2a4a;
    border-radius: 12px;
    padding: 18px 24px 18px 64px;
    margin-bottom: 12px;
    position: relative;
    color: #c0c0c0;
}

.subscribe-steps li::before {
    content: counter(step);
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.subscribe-steps li strong {
    color: #ffffff;
}

.subscribe-steps li a {
    color: #ef4444;
    text-decoration: underline;
}

@media (max-width: 600px) {
    .subscribe-main { padding: 36px 16px 48px; }
    .tier-card { padding: 24px; }
    .tier-price { font-size: 2.1rem; }
    .subscribe-steps li { padding: 16px 16px 16px 56px; }
}
