/* AgentRank — Pricing & signup público (Fase 1 comercial) */

.pricing-page {
    min-height: 100vh;
    background: linear-gradient(165deg, #050b14 0%, #0a1628 45%, #0d2137 100%);
    color: #e8eef5;
}

.pricing-hero {
    padding: 2.5rem 1.5rem 1rem;
    text-align: center;
}

.pricing-hero-inner {
    max-width: 720px;
    margin: 0 auto;
}

.pricing-lang {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 1rem;
}

.pricing-logo {
    margin-bottom: 1.5rem;
}

.pricing-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    margin: 0 0 0.75rem;
    letter-spacing: -0.02em;
}

.pricing-subtitle {
    color: rgba(232, 238, 245, 0.75);
    font-size: 1.05rem;
    margin: 0;
}

.pricing-grid-wrap {
    padding: 1rem 1.5rem 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.pricing-card {
    background: #fff;
    border-radius: 16px;
    padding: 1.5rem;
    color: #0a1628;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.3);
}

.pricing-card.is-featured {
    border: 2px solid #00c8e8;
    box-shadow: 0 24px 60px rgba(0, 200, 232, 0.2);
}

.pricing-badge {
    position: absolute;
    top: -10px;
    right: 1rem;
    background: linear-gradient(135deg, #00c8e8, #0099cc);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.pricing-card-name {
    font-size: 1.35rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
}

.pricing-card-desc {
    font-size: 0.875rem;
    color: #5a6b7d;
    margin: 0 0 1rem;
    line-height: 1.5;
}

.pricing-card-price {
    margin-bottom: 1.25rem;
}

.pricing-amount {
    font-size: 2rem;
    font-weight: 800;
    color: #050b14;
}

.pricing-period {
    font-size: 0.875rem;
    color: #5a6b7d;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    font-size: 0.875rem;
}

.pricing-features li {
    padding: 0.35rem 0;
    border-bottom: 1px solid #eef2f6;
    color: #334155;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features-inline {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.875rem;
}

.pricing-card-cta {
    margin-top: auto;
}

.pricing-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
}

.pricing-btn--primary {
    background: linear-gradient(135deg, #00c8e8, #0099cc);
    color: #fff;
}

.pricing-btn--primary:hover {
    background: linear-gradient(135deg, #00d4f0, #00a8d4);
    color: #fff;
    transform: translateY(-1px);
}

.pricing-btn--ghost {
    background: transparent;
    color: #050b14;
    border: 2px solid #0a1628;
}

.pricing-btn--ghost:hover {
    background: #050b14;
    color: #fff;
}

.pricing-footer-note {
    text-align: center;
    margin-top: 2rem;
    color: rgba(232, 238, 245, 0.7);
    font-size: 0.9rem;
}

.pricing-footer-note a {
    color: #00c8e8;
}

.signup-plan-preview {
    margin-top: 1.5rem;
    padding: 1rem 1.25rem;
    background: rgba(0, 200, 232, 0.12);
    border: 1px solid rgba(0, 200, 232, 0.35);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.signup-plan-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    opacity: 0.8;
}

.auth-shell--signup .auth-panel {
    max-width: 480px;
}

.auth-check-label {
    display: flex;
    gap: 0.5rem;
    align-items: flex-start;
    font-size: 0.875rem;
    color: #334155;
}

.auth-check-label input {
    margin-top: 0.2rem;
}

.subscription-pending-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.ar-card--highlight {
    border: 1px solid rgba(0, 200, 232, 0.35);
    background: linear-gradient(180deg, rgba(0, 200, 232, 0.06), transparent);
}
