/* subscribe.css — pro upsell page (brutalist redesign) */

.sub-page {
    margin-top: var(--header-height-mobile);
    overflow-x: hidden;
}

.sub-page h1, .sub-page h2, .sub-page h3 {
    font-family: 'Roboto', sans-serif;
    color: var(--as-black);
    margin: 0;
}

.sub-page p {
    font-family: 'Roboto', sans-serif;
    color: var(--as-grey);
    line-height: 1.5;
}

.sub-page mark {
    background-color: transparent;
    color: var(--as-yellow);
}

/* ── Buttons ─────────────────────────────────────────────────────────── */

.sub-btn {
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    font-weight: 600;
    padding: 16px 26px;
    border-radius: 0;
    cursor: pointer;
    transition: background-color .12s ease, color .12s ease, border-color .12s ease;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.sub-btn-solid {
    background-color: var(--as-black);
    color: #fff;
    border: 2px solid var(--as-black);
}

.sub-btn-outline {
    background-color: transparent;
    color: var(--as-black);
    border: 2px solid var(--as-black);
}

.sub-btn-solid:hover, .sub-btn-outline:hover {
    background-color: var(--as-yellow);
    color: var(--as-black);
    border-color: var(--as-yellow);
}

.sub-btn-yellow {
    background-color: var(--as-yellow);
    color: var(--as-black);
    border: 2px solid var(--as-yellow);
}

.sub-btn-yellow:hover {
    background-color: var(--as-black);
    color: #fff;
    border-color: var(--as-black);
}

.sub-btn-yellow-black {
    background-color: var(--as-yellow);
    color: var(--as-black);
    border: 2px solid var(--as-black);
}

.sub-btn-yellow-black:hover {
    background-color: var(--as-black);
    color: #fff;
    border-color: var(--as-black);
}

.sub-btn-shadow {
    box-shadow: 5px 5px 0 var(--as-yellow);
}

/* ── Badge ───────────────────────────────────────────────────────────── */

.sub-badge {
    display: inline-block;
    background-color: var(--as-cyan);
    color: var(--as-black);
    font-family: 'Roboto', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .05em;
    padding: 5px 12px;
    box-shadow: 3px 3px 0 var(--as-black);
}

.sub-badge-featured {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    z-index: 1;
}

/* ── Hero ────────────────────────────────────────────────────────────── */

.sub-hero {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 60px 6% 50px 6%;
}

.sub-hero-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
}

.sub-hero-text h1 {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.1;
    text-transform: uppercase;
}

.sub-hero-text p {
    font-size: 16px;
    max-width: 46ch;
    font-weight: 400 !important;
}

.sub-hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.sub-hero-stat {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .02em;
    color: var(--as-black);
    text-transform: uppercase;
}

.sub-hero-stat-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid var(--as-black);
    font-size: 14px;
    flex-shrink: 0;
}

.sub-hero-actions {
    margin-top: 6px;
}

.sub-hero-media {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.sub-hero-frame {
    position: relative;
    width: 100%;
    max-width: 480px;
    aspect-ratio: 1 / 1;
    border: 3px solid var(--as-black);
    box-shadow: 10px 10px 0 var(--as-yellow);
}

.sub-hero-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(1) contrast(1.05);
}

.sub-hero-caption {
    background-color: var(--as-black);
    border: 2px solid var(--as-cyan);
    color: var(--as-cyan);
    font-family: 'Bambe', serif !important;
    font-size: 27px;
    line-height: 1.2;
    padding: 14px 20px;
    margin-top: -30px;
    align-self: flex-start;
    margin-left: 6%;
    position: relative;
}

.sub-hero-caption span {
    display: block;
    font-family: 'Roboto', sans-serif;
    font-size: 9px;
    font-weight: 400;
    letter-spacing: .1em;
    color: var(--as-cyan);
    margin-top: 5%;
}

/* ── Pro Features ────────────────────────────────────────────────────── */

.sub-features {
    background-color: #f5f5f5;
    padding: 50px 6%;
    text-align: center;
}

.sub-features h2 {
    font-size: 24px;
    font-weight: 800;
    text-transform: uppercase;
}

.sub-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 36px;
    text-align: left;
}

.sub-feature-card {
    background-color: #fff;
    border: 2px solid var(--as-black);
    box-shadow: 5px 5px 0 var(--as-yellow);
    padding: 28px 24px;
}

.sub-feature-icon {
    font-size: 26px;
    display: block;
    margin-bottom: 14px;
}

.sub-feature-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.sub-feature-card p {
    font-size: 14px;
}

/* ── Pricing ─────────────────────────────────────────────────────────── */

.sub-pricing {
    padding: 55px 6% 70px 6%;
    text-align: center;
}

.sub-pricing h2 {
    font-size: 26px;
    font-weight: 800;
    text-transform: uppercase;
}

.sub-subtext {
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .06em;
    color: var(--as-grey);
    text-transform: uppercase;
    margin-top: 8px;
}

.sub-pricing-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
}

.sub-pricing-card {
    position: relative;
    width: 100%;
    max-width: 340px;
    text-align: left;
    background-color: #fff;
    border: 2px solid var(--as-black);
    padding: 30px 26px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sub-pricing-featured {
    box-shadow: 10px 10px 0 var(--as-cyan);
}

.sub-pricing-label {
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .08em;
    color: var(--as-grey);
    text-transform: uppercase;
}

.sub-pricing-amount {
    font-family: 'Roboto', sans-serif;
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.sub-price {
    font-size: 54px;
    font-weight: 900;
    color: var(--as-black);
    letter-spacing: -.03em;
    line-height: 1;
}

.sub-currency {
    font-size: 18px;
    font-weight: 700;
    color: var(--as-black);
    margin-left: 2px;
    line-height: 1;
    text-transform: uppercase;
}

.sub-period {
    font-size: 18px;
    font-weight: 400;
    color: var(--as-grey);
    margin-left: 4px;
    line-height: 1;
}

.sub-pricing-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sub-pricing-list li {
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: var(--as-black);
    display: flex;
    align-items: center;
    gap: 10px;
}

.sub-highlight {
    color: var(--as-cyan) !important;
    font-weight: 600 !important;
    font-style: italic;
}

.sub-pricing-card .sub-btn {
    margin-top: 6px;
    width: 100%;
    text-align: center;
}

/* ==== Desktop (min-width: 1001px) ==== */
@media (min-width: 1001px) {

.sub-page {
    margin-top: var(--header-height);
}

.sub-hero {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 90px 8% 110px 8%;
    gap: 60px;
}

.sub-hero-text {
    width: 46%;
}

.sub-hero-text h1 {
    font-size: 54px;
}

.sub-hero-media {
    width: 42%;
    align-items: flex-end;
}

.sub-hero-frame {
    max-width: 460px;
}

.sub-hero-caption {
    margin-left: 0;
}

.sub-features {
    padding: 70px 10%;
}

.sub-features h2 {
    font-size: 28px;
}

.sub-features-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.sub-pricing {
    padding: 80px 8% 110px 8%;
}

.sub-pricing h2 {
    font-size: 32px;
}

.sub-pricing-grid {
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
}

}
