/* ── Page wrapper ────────────────────────────────────────────────── */
.st-page {
    padding-top: 62px;
}

/* ── Utilities ───────────────────────────────────────────────────── */
.st-red {
    color: #dc2626;
}

/* ── Hero ────────────────────────────────────────────────────────── */
.st-hero {
    position: relative;
    padding: 80px 0 88px;
    background: linear-gradient(180deg, #fff6f5 0%, #fff 55%);
    overflow: hidden;
}

.st-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to right, rgba(17, 24, 39, .04) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(17, 24, 39, .04) 1px, transparent 1px);
    background-size: 52px 52px;
    mask-image: radial-gradient(ellipse 65% 70% at 50% 0%, #000 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 65% 70% at 50% 0%, #000 0%, transparent 70%);
    pointer-events: none;
}

.st-hero::after {
    content: "";
    position: absolute;
    bottom: -40%;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 500px;
    background: radial-gradient(ellipse at 50% 50%, rgba(220, 38, 38, .07) 0%, transparent 70%);
    pointer-events: none;
}

.st-hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 64px;
    align-items: center;
}

/* ── Eyebrow badge ───────────────────────────────────────────────── */
.st-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 5px 14px 5px 5px;
    background: #fff;
    border: 1px solid #fecaca;
    border-radius: 99px;
    font-size: 13px;
    font-weight: 500;
    color: #374151;
    margin-bottom: 24px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .06);
}

.st-eyebrow-pill {
    background: #dc2626;
    color: #fff;
    padding: 3px 10px;
    border-radius: 99px;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .03em;
}

/* ── Hero copy ───────────────────────────────────────────────────── */
.st-hero-copy h1 {
    font-size: clamp(36px, 4.8vw, 62px);
    font-weight: 700;
    color: #111827;
    letter-spacing: -.04em;
    line-height: 1.08;
    margin-bottom: 20px;
}

.st-hero-desc {
    font-size: 18px;
    color: #6b7280;
    line-height: 1.7;
    max-width: 46ch;
    margin-bottom: 28px;
}

.st-checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 36px;
}

.st-checklist li {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 15px;
    color: #374151;
    font-weight: 500;
}

.st-checklist li svg {
    color: #dc2626;
    flex-shrink: 0;
}

.st-hero-ctas {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.st-ghost-link {
    display: inline-flex;
    align-items: center;
    height: 48px;
    padding: 0 28px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    color: #374151;
    text-decoration: none;
    white-space: nowrap;
    transition: border-color .2s, color .2s, background .2s;
}

.st-ghost-link:hover {
    border-color: #9ca3af;
    color: #111827;
    background: #f9fafb;
}

/* ── Pricing card ────────────────────────────────────────────────── */
.st-price-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 4px 32px rgba(0, 0, 0, .08), 0 0 0 6px rgba(220, 38, 38, .04);
}

.st-pc-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: #9ca3af;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.st-pc-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, .18);
    animation: pulse 2s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 3px rgba(220, 38, 38, .18); }
    50% { box-shadow: 0 0 0 5px rgba(220, 38, 38, .08); }
}

.st-pc-pricing {
    margin-bottom: 4px;
}

.st-pc-price-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 6px;
}

.st-pc-amount {
    font-size: 52px;
    font-weight: 600;
    letter-spacing: -.04em;
    line-height: 1;
    color: #111827;
}

.st-pc-amount sup {
    font-size: 24px;
    font-weight: 500;
    vertical-align: 12px;
    margin-right: 2px;
    color: #6b7280;
}

.st-pc-price-meta {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.st-pc-original {
    font-size: 14px;
    color: #d1d5db;
    text-decoration: line-through;
}

.st-pc-save {
    display: inline-flex;
    align-items: center;
    padding: 2px 8px;
    border-radius: 99px;
    background: #fef2f2;
    color: #dc2626;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.st-pc-cadence {
    display: block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: #9ca3af;
    margin-bottom: 4px;
}

.st-pc-divider {
    height: 1px;
    background: #f3f4f6;
    margin: 20px 0;
}

.st-pc-features {
    list-style: none;
    display: grid;
    gap: 9px;
}

.st-pc-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    color: #374151;
}

.st-pc-features li::before {
    content: "";
    width: 14px;
    height: 14px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 15 15' fill='none' stroke='%23dc2626' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2.5 7.5l3.5 3.5 6.5-7'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    flex-shrink: 0;
}

.st-pc-note {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: #9ca3af;
    line-height: 1.5;
}

.st-pc-note svg {
    flex-shrink: 0;
    margin-top: 1px;
}

/* ── Benefits ────────────────────────────────────────────────────── */
.st-benefits-section {
    padding: 0 0 72px;
}

.st-ben-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
}

.st-ben {
    padding: 28px 24px;
    border-right: 1px solid #e5e7eb;
}

.st-ben:last-child {
    border-right: none;
}

.st-ben-ico {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: #fef2f2;
    color: #dc2626;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.st-ben h3 {
    font-size: 15px;
    font-weight: 600;
    color: #111827;
    letter-spacing: -.01em;
    margin-bottom: 6px;
}

.st-ben p {
    font-size: 13.5px;
    color: #6b7280;
    line-height: 1.55;
}

/* ── Steps section ───────────────────────────────────────────────── */
.st-steps-section {
    padding: 80px 0;
    background: #fafafa;
    border-top: 1px solid #f3f4f6;
    border-bottom: 1px solid #f3f4f6;
}

.st-steps-head {
    text-align: center;
    margin-bottom: 64px;
}

.st-steps-label {
    display: inline-block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #dc2626;
    margin-bottom: 12px;
}

.st-steps-head h2,
.st-faq-head h2 {
    font-size: clamp(26px, 3.4vw, 42px);
    font-weight: 700;
    color: #111827;
    letter-spacing: -.035em;
    line-height: 1.12;
}

/* ── Steps track ─────────────────────────────────────────────────── */
.st-steps-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.st-step {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.st-step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #dc2626;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.st-step-body h3 {
    font-size: 16px;
    font-weight: 600;
    color: #111827;
    letter-spacing: -.02em;
    line-height: 1.3;
    margin-bottom: 8px;
}

.st-step-body p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* ── FAQ ─────────────────────────────────────────────────────────── */
.st-faq-section {
    padding: 80px 0;
}

.st-faq-head {
    text-align: center;
    margin-bottom: 48px;
}

.st-faq-list {
    max-width: 720px;
    margin: 0 auto;
    border-top: 1px solid #e5e7eb;
}

.st-faq-list .faq-item {
    padding: 22px 0;
    border-bottom: 1px solid #e5e7eb;
    cursor: pointer;
}

.faq-trigger {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.faq-q {
    font-size: 15px;
    font-weight: 600;
    color: #111827;
    letter-spacing: -.01em;
    line-height: 1.4;
}

.faq-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #6b7280;
    transition: transform .2s, background .2s, border-color .2s;
    margin-top: 1px;
}

.faq-item.open .faq-icon {
    background: #111827;
    color: #fff;
    border-color: #111827;
    transform: rotate(180deg);
}

.faq-answer {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.65;
    margin-top: 10px;
    display: none;
}

.faq-item.open .faq-answer {
    display: block;
}

/* ── CTA band ────────────────────────────────────────────────────── */
.st-cta-section {
    padding: 0 0 96px;
}

.st-cta-band {
    position: relative;
    background: #111827;
    border-radius: 20px;
    padding: 64px 56px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 32px;
    align-items: center;
}

.st-cta-glow {
    position: absolute;
    right: -10%;
    top: 50%;
    transform: translateY(-50%);
    width: 500px;
    height: 400px;
    background: radial-gradient(ellipse at center, rgba(220, 38, 38, .22) 0%, transparent 65%);
    pointer-events: none;
}

.st-cta-copy {
    position: relative;
    z-index: 1;
}

.st-cta-copy h2 {
    font-size: clamp(24px, 3.2vw, 40px);
    font-weight: 700;
    color: #fff;
    letter-spacing: -.035em;
    line-height: 1.15;
    margin-bottom: 10px;
}

.st-cta-copy p {
    font-size: 16px;
    color: #9ca3af;
    line-height: 1.6;
}

.st-cta-actions {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-shrink: 0;
}

.st-cta-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    padding: 0 22px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #d1d5db;
    text-decoration: none;
    white-space: nowrap;
    transition: border-color .2s, color .2s, background .2s;
}

.st-cta-ghost:hover {
    border-color: rgba(255, 255, 255, .4);
    color: #fff;
    background: rgba(255, 255, 255, .06);
}

/* ── Responsive ──────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .st-hero-inner {
        gap: 40px;
    }
}

@media (max-width: 900px) {
    .st-hero-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .st-ben-grid {
        grid-template-columns: 1fr 1fr;
    }

    .st-ben:nth-child(2) {
        border-right: none;
    }

    .st-ben:nth-child(1),
    .st-ben:nth-child(2) {
        border-bottom: 1px solid #e5e7eb;
    }

    .st-steps-track {
        grid-template-columns: 1fr;
    }

    .st-cta-band {
        grid-template-columns: 1fr;
        padding: 48px 36px;
    }

    .st-cta-actions {
        flex-direction: row;
        flex-wrap: wrap;
    }
}

@media (max-width: 640px) {
    .st-hero {
        padding: 56px 0 64px;
    }

    .st-hero-copy h1 {
        font-size: clamp(28px, 9vw, 42px);
    }

    .st-hero-desc {
        font-size: 16px;
    }

    .st-hero-ctas {
        flex-direction: column;
        align-items: stretch;
    }

    .st-hero-ctas .btn-red-lg {
        justify-content: center;
    }

    .st-price-card {
        padding: 24px;
    }

    .st-pc-amount {
        font-size: 44px;
    }

    .st-ben-grid {
        grid-template-columns: 1fr;
    }

    .st-ben {
        border-right: none;
        border-bottom: 1px solid #e5e7eb;
    }

    .st-ben:last-child {
        border-bottom: none;
    }

    .st-steps-head {
        margin-bottom: 40px;
    }

    .st-cta-band {
        padding: 36px 24px;
    }

    .st-cta-actions {
        flex-direction: column;
    }
}
