/* =========================================================
   FounderBizCard Marketing Site
   Apple Wallet Business Card Page
   ========================================================= */

/* =========================================================
   Base
   ========================================================= */
:root {
    --fbc-blue: #0354f7;
    --fbc-navy: #213f7d;
    --fbc-ink: #172033;
    --fbc-text: #4c5870;
    --fbc-line: #dbe3ef;
    --fbc-soft: #f6f8fb;
    --fbc-soft-alt: #e9edf3;
    --fbc-white: #ffffff;
    --fbc-dark-bg: #0f1724;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--fbc-ink);
    background: var(--fbc-white);
    line-height: 1.6;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
}

h1,
h2,
h3,
p,
ul {
    margin-top: 0;
}

.page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: var(--fbc-white);
}

/* =========================================================
   Layout
   ========================================================= */
.site-shell {
    width: min(calc(100% - 48px), 1200px);
    margin: 0 auto;
}

.section {
    padding: 88px 0;
}

.section-soft {
    background: var(--fbc-soft);
}

.section-soft-alt {
    background: var(--fbc-soft-alt);
}

.section-dark {
    background: linear-gradient(180deg, #0f1724 0%, #162132 100%);
}

.section-heading {
    max-width: 780px;
    margin-bottom: 40px;
}

/* =========================================================
   Header / Navigation
   ========================================================= */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid #e2e8f0;
    backdrop-filter: blur(10px);
}

.site-header-inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.site-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--fbc-ink);
    text-decoration: none;
    font-weight: 800;
    flex: 0 0 auto;
}

.site-brand-mark {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--fbc-navy) 0%, var(--fbc-blue) 100%);
    color: var(--fbc-white);
    font-size: 0.95rem;
    letter-spacing: 0.03em;
}

.site-brand-text {
    font-size: 1rem;
    white-space: nowrap;
    color: #000000;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 28px;
    flex-wrap: nowrap;
    flex: 1 1 auto;
}

.site-nav a {
    color: var(--fbc-text);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    white-space: nowrap;
}

.site-nav a:hover {
    color: var(--fbc-ink);
}

.site-nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 999px;
    background: var(--fbc-navy);
    color: var(--fbc-white) !important;
}

.site-nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    width: 44px;
    height: 44px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: var(--fbc-white);
    padding: 0;
    flex: 0 0 auto;
}

.site-nav-toggle-bar {
    width: 20px;
    height: 2px;
    background: var(--fbc-ink);
    border-radius: 999px;
    display: block;
}

/* =========================================================
   Eyebrow / Kicker
   ========================================================= */
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--fbc-navy);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.section-kicker-light {
    color: #9db8ff;
}

.section-kicker-rule,
.section-kicker::before {
    content: "";
    width: 52px;
    height: 1px;
    background: currentColor;
    opacity: 0.65;
}

/* =========================================================
   Buttons
   ========================================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0.9rem 1.25rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.98rem;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: none;
    transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn:focus,
.btn:focus-visible {
    outline: none;
    box-shadow: none;
}

.btn-primary {
    color: var(--fbc-white);
    background: linear-gradient(135deg, var(--fbc-blue) 0%, var(--fbc-navy) 100%);
}

.btn-secondary {
    color: var(--fbc-navy);
    background: var(--fbc-white);
    border: 1px solid var(--fbc-line);
}

.btn-full {
    width: min(300px, 100%);
}

.btn-large {
    min-height: 58px;
    padding-inline: 1.6rem;
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
    padding: 64px 0 80px;
    background:
        radial-gradient(circle at top right, rgba(3, 84, 247, 0.10), transparent 24%),
        linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
    gap: 56px;
    align-items: center;
}

.hero-copy,
.hero-media {
    min-width: 0;
}

.hero-copy {
    max-width: 560px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-copy h1 {
    margin: 0 0 24px;
    max-width: 680px;
    color: var(--fbc-ink);
    font-size: clamp(2.8rem, 4.8vw, 4.9rem);
    line-height: 0.98;
    letter-spacing: -0.04em;
}

.hero-lead {
    max-width: 640px;
    margin-bottom: 24px;
    color: var(--fbc-text);
    font-size: 1.18rem;
    line-height: 1.65;
}

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 12px;
    margin-bottom: 28px;
}

.hero-proof span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 7px 14px;
    border-radius: 999px;
    border: 1px solid #d8e5ff;
    background: #ffffff;
    color: var(--fbc-ink);
    font-size: 0.92rem;
    font-weight: 600;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 16px;
}

.hero-note {
    max-width: 620px;
    margin: 0;
    color: var(--fbc-text);
    font-size: 0.96rem;
}

.hero-note a {
    color: var(--fbc-navy);
    font-weight: 600;
    text-decoration: none;
}

.hero-note a:hover {
    text-decoration: underline;
}

.hero-media {
    display: flex;
    align-items: center;
    justify-content: center;
}

.device-frame {
    margin: 0;
    padding: 18px;
    border-radius: 7px;
    background: linear-gradient(180deg, #ffffff 0%, #f1f6ff 100%);
    border: 1px solid rgba(219, 227, 239, 0.9);
}

.device-frame img {
    border-radius: 0;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* =========================================================
   Shared Section Typography
   ========================================================= */
.split-copy h2,
.section-heading h2,
.cta-band h2 {
    margin: 0 0 16px;
    color: var(--fbc-ink);
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.split-copy p,
.section-heading p,
.step-card p,
.scenario-card p,
.pricing-card p,
.related-card p,
.faq-card p,
.comparison-mini span,
.pricing-list li,
.plain-list li,
.cta-band p {
    color: var(--fbc-text);
    font-size: 1.02rem;
    line-height: 1.65;
}

.section-dark h2,
.section-dark h3,
.section-dark p,
.section-dark li {
    color: #d9e2f2;
}

/* =========================================================
   Split Layout
   ========================================================= */
.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.split-grid-reverse .split-copy {
    order: 2;
}

.split-grid-reverse .split-media {
    order: 1;
}

.split-media img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    border: 1px solid rgba(219, 227, 239, 0.95);
    background: #ffffff;
}

/* =========================================================
   Comparison
   ========================================================= */
.comparison-callout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 28px;
}

.comparison-mini {
    padding: 18px 16px;
    background: #ffffff;
    border: 1px solid var(--fbc-line);
    border-radius: 8px;
}

.comparison-mini strong {
    display: block;
    margin-bottom: 6px;
    color: var(--fbc-ink);
}

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

.step-card,
.pricing-card,
.related-card,
.faq-card {
    padding: 24px;
    border: 1px solid var(--fbc-line);
    background: #ffffff;
    border-radius: 12px;
}

.step-card {
    position: relative;
    overflow: hidden;
    min-height: 236px;
}

.step-number {
    position: absolute;
    top: 12px;
    left: 20px;
    z-index: 0;
    color: rgba(3, 84, 247, 0.14);
    font-size: clamp(5.5rem, 9vw, 8.5rem);
    line-height: 0.82;
    font-weight: 800;
    letter-spacing: -0.08em;
    pointer-events: none;
    user-select: none;
}

.step-card-content {
    position: relative;
    z-index: 1;
    padding-top: 56px;
}

.step-card h3,
.scenario-card h3,
.pricing-card h3,
.related-card h3,
.faq-card h3 {
    margin: 0 0 10px;
    color: var(--fbc-ink);
    font-size: 1.3rem;
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* =========================================================
   Dark list
   ========================================================= */
.plain-list {
    list-style: none;
    padding-left: 0;
    margin: 24px 0 0;
}

.plain-list li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 10px;
}

.plain-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #9db8ff;
}

/* =========================================================
   Pricing
   ========================================================= */
.pricing-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 20px;
    align-items: stretch;
}

.pricing-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.pricing-card-featured {
    border-color: rgba(3, 84, 247, 0.22);
    background: linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
}

.pricing-label {
    display: inline-block;
    margin-bottom: 14px;
    padding: 6px 12px;
    border-radius: 12px;
    background: rgba(3, 84, 247, 0.10);
    color: var(--fbc-blue);
    font-size: 0.85rem;
    font-weight: 700;
}

.pricing-subtitle {
    margin-bottom: 20px;
}

.pricing-list {
    margin: 0 0 24px;
    padding-left: 20px;
}

.pricing-list li {
    margin-bottom: 10px;
}

.pricing-card .btn {
    margin-top: auto;
    align-self: center;
}

/* =========================================================
   Scenarios
   ========================================================= */
.scenario-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.scenario-card {
    overflow: hidden;
    border: 1px solid var(--fbc-line);
    border-radius: 20px;
    background: #ffffff;
}

.scenario-card img {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
}

.scenario-card h3,
.scenario-card p {
    padding-inline: 20px;
}

.scenario-card h3 {
    padding-top: 18px;
    margin-bottom: 8px;
}

.scenario-card p {
    padding-bottom: 20px;
}

/* =========================================================
   FAQ
   ========================================================= */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* =========================================================
   Related Pages
   ========================================================= */
.related-pages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.related-card-featured {
    border-color: rgba(3, 84, 247, 0.22);
    background: linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
}

/* =========================================================
   CTA Band
   ========================================================= */
.cta-band {
    padding: 88px 0;
    background: linear-gradient(135deg, var(--fbc-navy) 0%, #102548 100%);
}

.cta-band-inner {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 32px;
    align-items: center;
}

.cta-band h2,
.cta-band p {
    color: #ffffff;
}

.cta-band-copy h2,
.cta-band-copy p {
    max-width: 680px;
}

.cta-band-lead {
    max-width: 650px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.08rem;
}

.cta-band-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
}

.cta-band-note {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
}

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
    border-top: 1px solid #e2e8f0;
    background: #ffffff;
    padding: 32px 0;
}

.site-footer-inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.site-footer-branding {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.site-brand-footer {
    margin-bottom: 12px;
}

.site-footer-copy {
    max-width: 520px;
    margin: 0;
    color: #667085;
    font-size: 0.95rem;
    line-height: 1.6;
}

.site-footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 20px;
}

.site-footer-nav a {
    color: var(--fbc-text);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
}

.site-footer-nav a:hover {
    color: var(--fbc-ink);
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1080px) {
    .hero-inner,
    .split-grid,
    .pricing-grid,
    .cta-band-inner,
    .related-pages-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid,
    .scenario-grid,
    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .step-card:first-child {
        grid-column: span 2;
    }

    .split-grid-reverse .split-copy,
    .split-grid-reverse .split-media {
        order: initial;
    }
}

@media (max-width: 900px) {
    .site-header-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 14px 0;
    }

    .site-nav {
        width: 100%;
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 14px 18px;
    }
}

@media (max-width: 760px) {
    .site-shell {
        width: min(calc(100% - 32px), 1200px);
    }

    .section,
    .cta-band {
        padding: 68px 0;
    }

    .hero {
        padding: 40px 0 56px;
    }

    .hero-inner,
    .steps-grid,
    .scenario-grid,
    .faq-grid,
    .comparison-callout,
    .related-pages-grid {
        grid-template-columns: 1fr;
    }

    .step-card:first-child {
        grid-column: auto;
    }

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

    .btn,
    .btn-full {
        width: 100%;
    }

    .hero-copy h1 {
        font-size: clamp(2.2rem, 12vw, 3.5rem);
        line-height: 1;
    }

    .step-card {
        min-height: auto;
    }

    .step-number {
        top: 10px;
        left: 16px;
        font-size: clamp(4.4rem, 24vw, 6.5rem);
    }

    .step-card-content {
        padding-top: 46px;
    }

    .cta-band-actions {
        align-items: stretch;
    }
}

@media (max-width: 640px) {
    .site-header-inner {
        flex-direction: row;
        align-items: center;
        gap: 16px;
        flex-wrap: wrap;
    }

    .site-nav-toggle {
        display: inline-flex;
    }

    .site-nav {
        display: none;
        width: 100%;
        flex-basis: 100%;
        flex: 1 0 100%;
        align-self: stretch;
        flex-direction: column;
        align-items: flex-start;
        padding: 12px 0 8px;
        gap: 12px;
    }

    .site-nav.is-open {
        display: flex;
    }

    .site-footer-inner {
        flex-direction: column;
    }
}


/* =========================================================
   Pricing
   ========================================================= */
.home-pricing-card-featured {
    border-color: rgba(3, 84, 247, 0.22);
    background: linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
}

.home-pricing-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 20px;
    align-items: stretch;
}

.home-pricing-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.home-pricing-card .home-pricing-list {
    margin-bottom: 24px;
}

.home-pricing-card .home-btn {
    margin-top: auto;
    align-self: center;
    justify-content: center;
}

.home-pricing-label {
    display: inline-block;
    margin-bottom: 14px;
    padding: 6px 12px;
    border-radius: 12px;
    background: rgba(3, 84, 247, 0.10);
    color: #0354f7;
    font-size: 0.85rem;
    font-weight: 700;
}

.home-pricing-subtitle {
    margin-bottom: 20px;
}

.home-pricing-subtitle-spaced {
    margin-bottom: 24px;
}

.home-pricing-list {
    margin: 0;
    padding-left: 20px;
}

.home-pricing-list li {
    margin-bottom: 10px;
}

.home-comparison-decision {
    max-width: 720px;
    margin: 32px auto 0;
    padding-top: 20px;
    border-top: 1px solid #e1e6ef;
    text-align: left;
    color: #172033;
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: 500;
    letter-spacing: -0.01em;
}