/* ═══════════════════════════════════════════════════════════════
   FINSPOT PAGE STYLES
   Extends /style.css — all CSS custom properties from that file
   are available here via the cascade.
═══════════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════
   BREADCRUMB
═══════════════════════════════════════════ */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.25);
    padding: 0 0 40px;
    position: relative;
    z-index: 2;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.4);
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: #fff;
}

.breadcrumb-sep {
    opacity: 0.3;
}

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.fs-hero {
    min-height: 88vh;
    text-align: center;
    padding: 130px 28px 100px;
    background: var(--ink);
    position: relative;
    overflow: clip;
}


.fs-hero>.container {
    position: relative;
    z-index: 2;
}

.fs-hero-content {
    position: relative;
    z-index: 2;
    max-width: 780px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ── App icon — inside .hero-icon-wrap, matches homepage icon styling exactly ── */
.fs-app-icon {
    width: 100px;
    height: 100px;
    border-radius: 28px;
    overflow: hidden;
    flex-shrink: 0;
    background: #002830;
    box-shadow:
        0 0 0 1px rgba(37, 99, 255, 0.3),
        0 0 60px rgba(37, 99, 255, 0.45),
        0 0 120px rgba(0, 217, 184, 0.15);
}

.fs-app-icon img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    display: block;
}

/* ── Heading ── */
.fs-hero h1 {
    font-family: var(--font-h);
    font-size: clamp(38px, 7vw, 62px);
    font-weight: 800;
    letter-spacing: -2px;
    color: #fff;
    line-height: 1.05;
    margin-bottom: 14px;
    animation: fadeUp 0.75s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
}

/* ── Sub-headline ── */
.fs-hero-sub {
    font-size: clamp(15px, 2.5vw, 20px);
    color: rgba(255, 255, 255, 0.38);
    margin-bottom: 14px;
    letter-spacing: 0.2px;
    animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

/* ── Description ── */
.fs-hero-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.30);
    max-width: 560px;
    margin: 0 auto 48px;
    line-height: 1.8;
    animation: fadeUp 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.25s both;
}

/* ── Pill badges ── */
.fs-pills {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
    animation: fadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

.fs-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    border-radius: 100px;
    font-size: 11.5px;
    font-weight: 600;
    border: 1px solid rgba(0, 217, 184, 0.20);
    background: rgba(0, 217, 184, 0.06);
    color: var(--teal-l);
    letter-spacing: 0.3px;
    transition: background 0.2s, border-color 0.2s;
}

.fs-pill:hover {
    background: rgba(0, 217, 184, 0.10);
    border-color: rgba(0, 217, 184, 0.35);
}

/* ── Download buttons row ── */
.fs-download-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    animation: fadeUp 0.95s cubic-bezier(0.16, 1, 0.3, 1) 0.35s both;
}

/* ═══════════════════════════════════════════
   FEATURES SECTION
═══════════════════════════════════════════ */
.fs-features {
    background: var(--white);
    padding: 110px 0;
    width: 100%;
    overflow: clip;
}

.fs-features .eyebrow {
    color: var(--blue);
}

.fs-features .section-title {
    color: var(--ink);
}

.fs-features .section-sub {
    color: #4B5563;
    margin-bottom: 56px;
}

/* ═══════════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════════ */
.fs-how {
    background: var(--ink2);
    padding: 110px 0;
    width: 100%;
    overflow: clip;
    position: relative;
}

.fs-how::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37, 99, 255, 0.08) 0%, transparent 65%);
    top: -100px;
    right: -100px;
    pointer-events: none;
}

.fs-how .eyebrow {
    color: var(--teal);
}

.fs-how .section-title {
    color: #fff;
}

.fs-how .section-sub {
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 56px;
}

/* Steps grid */
.fs-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Step card */
.fs-step {
    background: var(--card-d);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 36px 28px;
    text-align: center;
    transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
    position: relative;
    overflow: hidden;
}

.fs-step::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--grad-main);
    transform: scaleX(0);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: left;
}

.fs-step:hover {
    border-color: rgba(37, 99, 255, 0.30);
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}

.fs-step:hover::after {
    transform: scaleX(1);
}

/* Step number badge */
.fs-step-num {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--grad-main);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-h);
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    margin: 0 auto 20px;
    box-shadow: 0 0 24px rgba(37, 99, 255, 0.35);
}

.fs-step-title {
    font-family: var(--font-h);
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.2px;
    margin-bottom: 10px;
}

.fs-step-desc {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1.7;
}

/* ═══════════════════════════════════════════
   PRIVACY SECTION
   Uses .features from /style.css but needs
   overrides for the "❌ No X" cards
═══════════════════════════════════════════ */
.fs-privacy {
    background: var(--white);
    padding: 110px 0;
    width: 100%;
    overflow: clip;
}

.fs-privacy .eyebrow {
    color: var(--blue);
}

.fs-privacy .section-title {
    color: var(--ink);
}

.fs-privacy .section-sub {
    color: #4B5563;
    margin-bottom: 56px;
}

.fs-privacy-cta {
    text-align: center;
    margin-top: 48px;
}

/* ═══════════════════════════════════════════
   FAQ SECTION
═══════════════════════════════════════════ */
.fs-faq {
    background: var(--ink);
    padding: 110px 0;
    width: 100%;
    overflow: clip;
    position: relative;
}

.fs-faq::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 217, 184, 0.07) 0%, transparent 65%);
    bottom: -100px;
    left: -100px;
    pointer-events: none;
}

.fs-faq .eyebrow {
    color: var(--teal);
}

.fs-faq .section-title {
    color: #fff;
}

.fs-faq .section-sub {
    color: rgba(255, 255, 255, 0.38);
    margin-bottom: 56px;
}

/* ═══════════════════════════════════════════
   DOWNLOAD CTA SECTION
═══════════════════════════════════════════ */
.fs-cta {
    background: linear-gradient(135deg, #0D0F1E 0%, #0A1428 100%);
    border-top: 1px solid rgba(37, 99, 255, 0.10);
    padding: 110px 0;
    text-align: center;
    position: relative;
    overflow: clip;
}

.fs-cta::before {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37, 99, 255, 0.10) 0%, transparent 65%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.fs-cta .download-inner {
    position: relative;
    z-index: 1;
}

.fs-cta .section-title {
    color: #fff;
}

.fs-cta .section-sub {
    color: rgba(255, 255, 255, 0.38);
    margin-bottom: 48px;
    margin-left: auto;
    margin-right: auto;
}

.fs-cta .eyebrow {
    color: var(--teal);
}

/* ═══════════════════════════════════════════
   RESPONSIVE — Tablet (≤ 1024px)
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
    .fs-hero {
        padding: 110px 24px 80px;
    }

    .fs-features,
    .fs-how,
    .fs-faq,
    .fs-cta {
        padding: 90px 0;
    }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — Tablet portrait (≤ 900px)
═══════════════════════════════════════════ */
@media (max-width: 900px) {
    .fs-steps {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .fs-hero h1 {
        font-size: clamp(36px, 8vw, 56px);
        letter-spacing: -1.5px;
    }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — Mobile (≤ 768px)
═══════════════════════════════════════════ */
@media (max-width: 768px) {
    .fs-hero {
        min-height: auto;
        padding: 100px 20px 70px;
    }

    .fs-hero-content {
        max-width: 100%;
    }

    .fs-hero .hero-icon-wrap {
        margin: 0 auto 32px;
    }

    .fs-hero .icon-ring {
        inset: -12px;
        border-radius: 40px;
    }

    .fs-hero .icon-ring-2 {
        inset: -22px;
        border-radius: 50px;
    }

    .fs-hero h1 {
        font-size: clamp(32px, 9vw, 48px);
        letter-spacing: -1.5px;
    }

    .fs-hero-desc {
        font-size: 14px;
    }

    .fs-pills {
        gap: 8px;
    }

    .fs-pill {
        font-size: 11px;
        padding: 6px 12px;
    }

    .fs-download-row {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        max-width: 360px;
        margin: 0 auto;
    }

    .fs-download-row .btn {
        width: 100%;
        justify-content: center;
    }

    .fs-features,
    .fs-how,
    .fs-faq,
    .fs-cta {
        padding: 72px 0;
    }

    .fs-step {
        padding: 28px 22px;
    }

    .fs-step-num {
        width: 42px;
        height: 42px;
        font-size: 18px;
        border-radius: 12px;
    }

    .fs-step-title {
        font-size: 15px;
    }

    .fs-step-desc {
        font-size: 13px;
    }

    .breadcrumb {
        font-size: 11px;
        padding-bottom: 32px;
    }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — Small mobile (≤ 480px)
═══════════════════════════════════════════ */
@media (max-width: 480px) {
    .fs-hero {
        padding: 90px 16px 60px;
    }

    .fs-app-icon {
        width: 80px;
        height: 80px;
        border-radius: 22px;
    }

    .fs-hero .hero-icon-wrap {
        margin: 0 auto 28px;
    }

    .fs-hero .icon-ring {
        inset: -10px;
        border-radius: 32px;
        animation: none;
        opacity: 0.5;
    }

    .fs-hero .icon-ring-2 {
        inset: -20px;
        border-radius: 42px;
        animation: none;
        opacity: 0.3;
    }

    .fs-hero h1 {
        font-size: clamp(28px, 10vw, 38px);
        letter-spacing: -1px;
        margin-bottom: 10px;
    }

    .fs-hero-sub {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .fs-hero-desc {
        font-size: 13px;
        margin-bottom: 32px;
        line-height: 1.7;
    }

    .fs-pills {
        margin-bottom: 28px;
    }

    .fs-pill {
        font-size: 10.5px;
        padding: 6px 11px;
    }

    .fs-features,
    .fs-how,
    .fs-faq,
    .fs-cta {
        padding: 56px 0;
    }

    .fs-steps {
        gap: 12px;
    }

    .fs-step {
        padding: 24px 18px;
        border-radius: 16px;
    }

    .breadcrumb {
        padding-bottom: 28px;
    }
}