/* ═══════════════════════════════════════════════════
   landing.css — shared stylesheet for root-level pages
   index.html · landing-part-time-founder.html · signup.html · coming-soon.html
   ═══════════════════════════════════════════════════ */

/* ── Landing page (index, landing-part-time-founder) ── */

/* ── Hero ── */
.hero {
    background: var(--stratedo-white);
    border-radius: 18px;
    padding: 48px 40px;
    border: 1px solid rgba(24, 108, 204, 0.15);
    box-shadow: 0 8px 24px rgba(24, 108, 204, 0.08);
}

.hero-eyebrow {
    display: inline-block;
    background: rgba(24, 108, 204, 0.08);
    color: var(--stratedo-blue);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 3px 10px;
    border-radius: 999px;
    margin-bottom: 18px;
}

.hero h1 {
    font-size: 2.2rem;
    line-height: 1.2;
    color: var(--text-primary);
    margin: 0 0 18px;
}

.hero h1 em {
    color: var(--stratedo-blue);
    font-style: normal;
}

.hero p.hero-sub {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0 0 28px;
}

.hero-note {
    margin: 14px 0 0;
    font-size: 0.8rem;
    color: var(--text-faint);
}

/* ── Pain list ── */
.pain-list {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.pain-list li {
    background: #fff8f8;
    border: 1px solid rgba(239, 68, 68, 0.18);
    border-radius: 10px;
    padding: 12px 14px 12px 36px;
    font-size: 0.875rem;
    line-height: 1.55;
    color: var(--text-body);
    position: relative;
}

.pain-list li::before {
    content: "✗";
    position: absolute;
    left: 13px;
    top: 12px;
    color: #ef4444;
    font-weight: 700;
}

/* ── USP cards ── */
.usp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 16px;
}

.usp-card {
    background: var(--stratedo-white);
    border: 1px solid rgba(24, 108, 204, 0.2);
    border-radius: 14px;
    padding: 22px 20px;
    box-shadow: 0 4px 14px rgba(24, 108, 204, 0.07);
}

.usp-card h3 {
    margin: 0 0 8px;
    font-size: 0.95rem;
    color: var(--stratedo-blue);
}

.usp-card p {
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.65;
    color: var(--text-muted);
}

/* ── How it works steps ── */
.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 16px;
}

.step {
    background: var(--stratedo-white);
    border-radius: 14px;
    padding: 18px;
    border: 1px solid rgba(24, 108, 204, 0.15);
    box-shadow: 0 4px 12px rgba(24, 108, 204, 0.06);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    background: var(--stratedo-blue);
    color: white;
    border-radius: 50%;
    font-size: 0.72rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.step h3 {
    margin: 0 0 6px;
    font-size: 0.875rem;
    color: var(--stratedo-blue);
}

.step p {
    margin: 0;
    font-size: 0.82rem;
    line-height: 1.6;
    color: var(--text-muted);
}

/* ── Feature grid ── */
.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 16px;
}

.feature-item {
    padding: 14px 16px;
    border-radius: 10px;
    background: rgba(24, 108, 204, 0.03);
    border: 1px solid rgba(24, 108, 204, 0.12);
}

.feature-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-body);
    margin-bottom: 3px;
}

.feature-desc {
    font-size: 0.82rem;
    line-height: 1.6;
    color: var(--text-light);
}

/* ── Gains list ── */
.gains-list {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.gains-list li {
    background: #f0fdf4;
    border: 1px solid rgba(34, 197, 94, 0.22);
    border-radius: 10px;
    padding: 12px 14px 12px 36px;
    font-size: 0.875rem;
    line-height: 1.55;
    color: var(--text-body);
    position: relative;
}

.gains-list li::before {
    content: "✓";
    position: absolute;
    left: 13px;
    top: 12px;
    color: #16a34a;
    font-weight: 700;
}

/* ── Pricing tier cards ── */
.tier-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 16px;
}

.tier-card {
    background: var(--stratedo-white);
    border: 1px solid rgba(24, 108, 204, 0.2);
    border-radius: 14px;
    padding: 24px 22px;
    box-shadow: 0 4px 18px rgba(24, 108, 204, 0.07);
    display: flex;
    flex-direction: column;
    position: relative;
}

.tier-card.tier-featured {
    border: 2px solid var(--stratedo-blue);
}

.tier-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--stratedo-blue);
    color: #ffffff;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    padding: 3px 12px;
    border-radius: 999px;
    white-space: nowrap;
}

.tier-name {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--stratedo-blue);
    margin: 0 0 6px;
}

.tier-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0 0 2px;
    line-height: 1;
}

.tier-price-note {
    font-size: 0.78rem;
    color: var(--text-light);
    margin: 0 0 16px;
}

.price-suffix {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-light);
}

.tier-divider {
    border: none;
    border-top: 2px solid var(--stratedo-green);
    margin: 0 0 16px;
}

.tier-features {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.tier-features li {
    font-size: 0.845rem;
    line-height: 1.5;
    color: var(--text-secondary);
    padding: 5px 0 5px 18px;
    position: relative;
    border-bottom: 1px solid rgba(24, 108, 204, 0.07);
}

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

.tier-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 13px;
    width: 6px;
    height: 6px;
    background: var(--stratedo-green);
    border-radius: 50%;
}

.tier-cta {
    display: block;
    text-align: center;
    background: var(--stratedo-blue);
    color: white;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 8px;
    margin-top: 20px;
}

.tier-cta:hover {
    background: var(--stratedo-green);
    color: var(--text-primary);
}

.tier-trial {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--stratedo-blue);
    text-align: center;
    padding: 8px;
    background: rgba(24, 108, 204, 0.06);
    border-radius: 8px;
    margin-top: 8px;
}

/* ── Final CTA block ── */
.final-cta {
    background: var(--stratedo-blue);
    border-radius: 18px;
    padding: 48px 40px;
    text-align: center;
    color: white;
}

.final-cta h2 {
    margin: 0 0 12px;
    font-size: 1.6rem;
    color: white;
}

.final-cta p {
    margin: 0 0 28px;
    font-size: 0.95rem;
    opacity: 0.85;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta .primary-button {
    background: var(--stratedo-green);
    color: var(--text-primary);
    font-size: 1rem;
    padding: 13px 30px;
}

.final-cta .primary-button:hover {
    background: white;
}

.final-cta .cta-note {
    margin-top: 14px;
    font-size: 0.78rem;
    opacity: 0.55;
}

/* ── Pricing note ── */
.pricing-note {
    margin-top: 14px;
    font-size: 0.82rem;
    color: var(--text-light);
    text-align: center;
}

/* ── Responsive ── */
@media (max-width: 800px) {
    .hero { padding: 32px 24px; }
    .hero h1 { font-size: 1.5rem; }
    .usp-grid { grid-template-columns: 1fr; }
    .steps { grid-template-columns: 1fr 1fr; }
    .pain-list,
    .gains-list,
    .feature-grid { grid-template-columns: 1fr; }
    .tier-grid { grid-template-columns: 1fr; }
}

@media (max-width: 500px) {
    .steps { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════ */
/* ── Sign-up page ── */

.signup-card {
    background: var(--stratedo-white);
    border-radius: 18px;
    padding: 40px;
    border: 1px solid rgba(24, 108, 204, 0.15);
    box-shadow: 0 8px 24px rgba(24, 108, 204, 0.08);
}

.trial-banner {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(153, 226, 101, 0.15);
    border: 1px solid rgba(153, 226, 101, 0.4);
    border-radius: 10px;
    padding: 12px 16px;
    margin-bottom: 28px;
    font-size: 0.875rem;
    color: var(--text-body);
}

.trial-banner strong {
    color: #166534;
}

.signup-card h1 {
    margin: 0 0 8px;
    font-size: 1.4rem;
    color: var(--stratedo-blue);
}

.signup-card p.lead {
    margin: 0 0 24px;
    font-size: 0.9rem;
    line-height: 1.65;
    color: var(--text-muted);
}

.linkedin-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #0a66c2;
    color: white;
    padding: 12px 22px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: background 0.15s;
}

.linkedin-button:hover {
    background: #004182;
    color: white;
}

.linkedin-button svg {
    width: 18px;
    height: 18px;
    fill: white;
    flex-shrink: 0;
}

/* ══════════════════════════════════════════════════ */
/* ── Coming-soon page ── */

/* ── Coming-soon layout ── */
body {
    grid-template-rows: auto 1fr auto;
    min-height: 100vh;
    box-sizing: border-box;
}

.coming-soon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 0;
}

.coming-soon-card {
    background: var(--stratedo-white);
    border-radius: 18px;
    padding: 64px 56px;
    border: 1px solid rgba(24, 108, 204, 0.15);
    box-shadow: 0 8px 24px rgba(24, 108, 204, 0.08);
    max-width: 620px;
    width: 100%;
    text-align: center;
}

.coming-soon-eyebrow {
    display: inline-block;
    background: rgba(153, 226, 101, 0.18);
    color: #3a8c18;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 4px 12px;
    border-radius: 999px;
    margin-bottom: 24px;
}

.coming-soon-card h1 {
    font-size: 2rem;
    line-height: 1.2;
    color: var(--text-primary);
    margin: 0 0 16px;
}

.coming-soon-card h1 em {
    color: var(--stratedo-blue);
    font-style: normal;
}

.coming-soon-card p.lead {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-secondary);
    margin: 0 0 36px;
}

/* ── Divider ── */
.coming-soon-divider {
    border: none;
    border-top: 2px solid var(--stratedo-green);
    width: 48px;
    margin: 0 auto 36px;
}

/* ── What's coming list ── */
.whats-coming {
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
    text-align: left;
    display: grid;
    gap: 10px;
}

.whats-coming li {
    background: rgba(24, 108, 204, 0.04);
    border: 1px solid rgba(24, 108, 204, 0.12);
    border-radius: 10px;
    padding: 12px 14px 12px 38px;
    font-size: 0.875rem;
    line-height: 1.55;
    color: var(--text-body);
    position: relative;
}

.whats-coming li::before {
    content: '';
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--stratedo-green);
    border-radius: 50%;
}

/* ── CTA row ── */
.coming-soon-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.coming-soon-note {
    margin-top: 18px;
    font-size: 0.8rem;
    color: var(--text-faint);
}

/* ── Responsive ── */
@media (max-width: 700px) {
    .coming-soon-card {
        padding: 40px 24px;
    }

    .coming-soon-card h1 {
        font-size: 1.5rem;
    }
}
