/* ===================================================================
   Gid Pricing V2 — 3-column tier presentation + Founders Programme
   -------------------------------------------------------------------
   Sprint 4.1 (2026-04-30) — three equal columns: Gid (live) | Gid POS
   (coming) | Gid Reservations (coming). Coming-soon cards get a pill
   badge but otherwise share the same shape as the live card. Plus a
   tighter Founders Programme section between pricing and FAQ.
   This file extends `gid-pitch-pricing.css` and `gid-founders-pricing.css`.
   =================================================================== */

/* ============ 1. Coming-soon card overlay (used on POS + Reservations) ============ */
.gid-coming-soon-card {
    position: relative;
    /* Slight desaturation cue without breaking the 3-col grid alignment. */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gid-coming-soon-card:hover {
    transform: translateY(-3px);
}

.coming-soon-pill {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.28rem 0.7rem;
    border-radius: 999px;
    background: rgba(241, 118, 25, 0.18);
    border: 1px solid rgba(241, 118, 25, 0.4);
    color: #ffb280;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    z-index: 2;
}

.card-white .coming-soon-pill {
    color: #c14d00;
    background: rgba(241, 118, 25, 0.12);
    border-color: rgba(241, 118, 25, 0.45);
}

/* Secondary CTA (lighter, "Notify me" style) */
.founders-cta-secondary {
    background: transparent !important;
    color: #f17619 !important;
    border: 2px solid #f17619 !important;
}
.founders-cta-secondary:hover {
    background: rgba(241, 118, 25, 0.1) !important;
    color: #f17619 !important;
    box-shadow: 0 6px 20px rgba(241, 118, 25, 0.25) !important;
}

.card-white .founders-cta-secondary {
    color: #0c111a !important;
    border-color: #0c111a !important;
}
.card-white .founders-cta-secondary:hover {
    background: rgba(12, 17, 26, 0.05) !important;
    color: #0c111a !important;
}

.card-orange .founders-cta-secondary {
    color: #ffffff !important;
    border-color: #ffffff !important;
}

.card-dark .founders-cta-secondary {
    color: #ffffff !important;
    border-color: #ffffff !important;
}
.card-dark .founders-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    color: #ffffff !important;
}

/* ============ 2. Bigger, dramatic prices on every card ============ */
/* card-white is glassmorphism (transparent over the dark hero photo), NOT a
   true white background. Force white text everywhere so the price reads. */

.gid-pitch-card .price-was-block {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.55rem;
    opacity: 1;
    color: rgba(255, 255, 255, 0.55);
}
.gid-pitch-card .price-was-block::before {
    content: "Public price";
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.55;
    margin-right: 0.15rem;
}
.gid-pitch-card .price-was-block .monthly-price,
.gid-pitch-card .price-was-block .yearly-price {
    text-decoration: line-through;
    text-decoration-thickness: 2px;
    text-decoration-color: rgba(255, 255, 255, 0.45);
    opacity: 1;
    color: inherit;
}
.gid-pitch-card.card-orange .price-was-block {
    color: rgba(255, 255, 255, 0.78);
}
.gid-pitch-card.card-orange .price-was-block .monthly-price,
.gid-pitch-card.card-orange .price-was-block .yearly-price {
    text-decoration-color: rgba(255, 255, 255, 0.6);
}

/* Big founders price — force white on every card variant (card-white is dark glass) */
.gid-pitch-card .price-value-founders,
.gid-pitch-card.card-white .price-value-founders,
.gid-pitch-card.card-orange .price-value-founders,
.gid-pitch-card.card-dark .price-value-founders {
    color: #ffffff;
    font-size: 4.6rem;
    line-height: 0.95;
    margin-bottom: 0.55rem;
    letter-spacing: -0.06em;
    font-weight: 800;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.gid-pitch-card .price-period {
    display: block;
    font-size: 0.95rem;
    margin-top: 0.2rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Founders savings pill — built dynamically by pricing-loader.js. Sits on its
   own row below the price for high readability. Bigger, bolder, unmissable. */
.price-savings-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin: 0.35rem 0 0.6rem 0;
    padding: 0.42rem 0.85rem;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.28) 0%, rgba(34, 197, 94, 0.12) 100%);
    border: 1px solid rgba(74, 222, 128, 0.55);
    color: #6ee7a8;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(34, 197, 94, 0.18);
}
/* Coming-soon cards: same treatment, just slightly muted */
.gid-coming-soon-card .price-savings-pill {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.20) 0%, rgba(34, 197, 94, 0.08) 100%);
    border-color: rgba(74, 222, 128, 0.45);
}

/* The live (Gid) card gets a subtle always-on orange glow ring so the eye
   lands on it first. Cards 2 and 3 stay neutral. */
.gid-pitch-card.card-orange {
    box-shadow: 0 0 0 1px rgba(241, 118, 25, 0.45),
                0 18px 50px rgba(241, 118, 25, 0.12);
}

@media (max-width: 768px) {
    .gid-pitch-card .price-value-founders {
        font-size: 3.2rem;
    }
    .gid-pitch-card .price-was-block {
        font-size: 1.1rem;
    }
    .price-savings-pill {
        font-size: 0.7rem;
        padding: 0.34rem 0.7rem;
    }
}

/* ============ 3. Founders Programme Section — dark premium ============ */
.founders-programme-section {
    background:
        radial-gradient(ellipse 800px 600px at 15% 10%, rgba(241, 118, 25, 0.10) 0%, transparent 60%),
        radial-gradient(ellipse 700px 500px at 85% 90%, rgba(241, 118, 25, 0.08) 0%, transparent 60%),
        linear-gradient(180deg, #0a0e16 0%, #131826 45%, #0c111a 100%);
    padding: 6rem 0 7rem 0;
    position: relative;
    overflow: hidden;
    color: #ffffff;
}

/* Subtle dotted texture overlay for depth */
.founders-programme-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
    opacity: 0.7;
}

/* Soft orange divider strip at the top edge to bridge from pricing cards */
.founders-programme-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(241, 118, 25, 0.5) 50%, transparent 100%);
}

.founders-programme-inner {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
}

.founders-programme-header {
    text-align: center;
    margin-bottom: 3rem;
}

.founders-programme-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 1.1rem;
    margin-bottom: 1.5rem;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(241, 118, 25, 0.22) 0%, rgba(241, 118, 25, 0.08) 100%);
    border: 1px solid rgba(241, 118, 25, 0.5);
    color: #ffb280;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.founders-programme-eyebrow-icon {
    font-size: 1rem;
    line-height: 1;
}

.founders-programme-header h2 {
    font-size: 2.4rem;
    line-height: 1.2;
    color: #ffffff;
    font-weight: 800;
    letter-spacing: -0.025em;
    max-width: 820px;
    margin: 0 auto;
}

.founders-programme-body {
    color: rgba(255, 255, 255, 0.78);
}

.founders-programme-lead {
    font-size: 1.15rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 1.4rem;
    text-align: center;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.founders-programme-lead strong {
    color: #ffb280;
    font-weight: 700;
}

.founders-programme-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (max-width: 900px) {
    .founders-programme-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .founders-programme-grid {
        grid-template-columns: 1fr;
    }
}

.founders-promise-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 16px;
    padding: 1.8rem 1.6rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.founders-promise-card:hover {
    transform: translateY(-4px);
    background: linear-gradient(135deg, rgba(241, 118, 25, 0.10) 0%, rgba(255, 255, 255, 0.03) 100%);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(241, 118, 25, 0.35);
    border-color: rgba(241, 118, 25, 0.45);
}

.founders-promise-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(241, 118, 25, 0.28) 0%, rgba(241, 118, 25, 0.10) 100%);
    border: 1px solid rgba(241, 118, 25, 0.35);
    color: #ffb280;
    margin-bottom: 1.1rem;
}

.founders-promise-card h3 {
    font-size: 1.08rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 0.55rem 0;
    line-height: 1.35;
    letter-spacing: -0.01em;
}

.founders-promise-card p {
    font-size: 0.94rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.70);
    margin: 0;
}

.founders-programme-honest {
    background: linear-gradient(135deg, rgba(241, 118, 25, 0.10) 0%, rgba(241, 118, 25, 0.04) 100%);
    border: 1px solid rgba(241, 118, 25, 0.28);
    border-left: 3px solid #f17619;
    border-radius: 12px;
    padding: 1.4rem 1.6rem;
    margin: 1.6rem 0 2.5rem 0;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.founders-programme-honest p {
    font-size: 0.98rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.founders-programme-honest strong {
    color: #ffb280;
    font-weight: 700;
}

.founders-programme-honest a {
    color: #ffb280;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px dashed rgba(255, 178, 128, 0.6);
}

.founders-programme-honest a:hover {
    color: #ffffff;
    border-bottom-color: #ffffff;
    border-bottom-style: solid;
}

.founders-programme-cta-block {
    text-align: center;
    margin-top: 2.5rem;
}

.founders-programme-cta {
    display: inline-block;
    padding: 1.15rem 2.6rem;
    background: linear-gradient(135deg, #f17619 0%, #c14d00 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    transition: transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 24px rgba(241, 118, 25, 0.45),
                0 0 0 1px rgba(241, 118, 25, 0.2);
}

.founders-programme-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(241, 118, 25, 0.6),
                0 0 0 1px rgba(241, 118, 25, 0.4);
    color: #ffffff;
}

.founders-programme-cap {
    margin-top: 1rem;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 500;
}

/* Mobile tweaks */
@media (max-width: 768px) {
    .founders-programme-section {
        padding: 4rem 0 4.5rem 0;
    }
    .founders-programme-header h2 {
        font-size: 1.7rem;
        line-height: 1.3;
    }
    .founders-programme-lead {
        font-size: 1rem;
    }
    .founders-programme-grid {
        gap: 1rem;
        margin: 2rem 0;
    }
    .founders-promise-card {
        padding: 1.4rem 1.2rem;
    }
    .founders-programme-cta {
        padding: 1rem 1.9rem;
        font-size: 1rem;
    }
}
