/* Static port of Base44 SimplyFound Home.jsx (Tailwind classes → plain CSS) */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
}

.page {
    min-height: 100vh;
    background: #fafafa;
    overflow-x: hidden;
}

.ico {
    width: 1.25rem;
    height: 1.25rem;
    max-width: 2rem;
    max-height: 2rem;
    flex-shrink: 0;
    display: block;
}

.ico-sm {
    width: 1rem;
    height: 1rem;
    max-width: 1.25rem;
    max-height: 1.25rem;
}

.ico-lg {
    width: 2rem;
    height: 2rem;
    max-width: 2.5rem;
    max-height: 2.5rem;
}

.ico-muted {
    color: #94a3b8;
}

.ico-feature {
    width: 1.75rem;
    height: 1.75rem;
    max-width: 2rem;
    max-height: 2rem;
}

.ico-check {
    width: 1.25rem;
    height: 1.25rem;
    color: #fff;
}

.container {
    width: 100%;
    max-width: 72rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.container-narrow {
    max-width: 56rem;
}

/* Nav — fixed top, white/80 + blur + border */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.8);
    -webkit-backdrop-filter: blur(24px);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid #f1f5f9;
}

.nav-inner {
    max-width: 72rem;
    margin: 0 auto;
    /* Base44: px-6 py-4 */
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem; /* gap-2 */
}

.nav-brand-icon {
    width: 2.25rem;
    height: 2.25rem;
    min-width: 2.25rem;
    min-height: 2.25rem;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 0.75rem;
    background: linear-gradient(to bottom right, #38bdf8, #2563eb);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

/* Keep logo mark SVG from scaling past the tile (guards against missing CSS / wrong cascade) */
.nav-brand-icon > svg {
    width: 1.25rem;
    height: 1.25rem;
    max-width: 100%;
    max-height: 100%;
    display: block;
}

.nav-brand-icon-sm {
    width: 2rem;
    height: 2rem;
    min-width: 2rem;
    min-height: 2rem;
    border-radius: 0.5rem;
    overflow: hidden;
    flex-shrink: 0;
}

.nav-brand-icon-sm > svg {
    width: 1rem;
    height: 1rem;
    max-width: 100%;
    max-height: 100%;
    display: block;
}

.nav-brand-text {
    font-size: 1.25rem; /* text-xl */
    font-weight: 600; /* font-semibold */
    line-height: 1.75rem;
    color: #0f172a;
    letter-spacing: -0.025em;
}

.footer-brand-text {
    font-size: 1.125rem; /* text-lg */
    font-weight: 600; /* font-semibold */
    line-height: 1.75rem;
    color: #fff;
    letter-spacing: -0.025em;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    transition: box-shadow 0.2s, transform 0.2s, background 0.2s, filter 0.2s;
}

.btn svg {
    flex-shrink: 0;
}

.btn-nav {
    height: 2.5rem; /* h-10 */
    padding: 0 1.25rem; /* px-5 */
    font-size: 0.875rem; /* text-sm */
    font-weight: 500;
    line-height: 1.25rem;
    color: #fff;
    background: #0f172a;
    border-radius: 9999px;
    box-shadow: 0 10px 15px -3px rgba(15, 23, 42, 0.1);
}

.btn-nav:hover {
    background: #1e293b;
    box-shadow: 0 20px 25px -5px rgba(15, 23, 42, 0.15);
}

.btn-hero {
    min-height: 3.5rem; /* h-14 */
    padding: 0 2rem; /* px-8 */
    font-size: 1rem; /* text-base */
    font-weight: 500; /* font-medium */
    line-height: 1.5rem;
    color: #fff;
    background: linear-gradient(to right, #0ea5e9, #2563eb);
    border-radius: 9999px;
    box-shadow: 0 20px 25px -5px rgba(14, 165, 233, 0.25);
}

.btn-hero:hover {
    filter: brightness(1.05);
    box-shadow: 0 25px 50px -12px rgba(14, 165, 233, 0.35);
    transform: scale(1.02);
}

.btn-cta-light {
    min-height: 3.5rem;
    padding: 0 2rem;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5rem;
    color: #0f172a;
    background: #fff;
    border-radius: 9999px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15);
}

.btn-cta-light:hover {
    background: #f1f5f9;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.2);
    transform: scale(1.02);
}

/* Hero */
.hero {
    position: relative;
    /* Base44: pt-32 pb-20 px-6 */
    padding: 8rem 1.5rem 5rem;
}

.hero-blobs {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(64px);
}

.hero-blob-a {
    top: 5rem;
    left: 25%;
    width: 24rem;
    height: 24rem;
    background: rgba(186, 230, 253, 0.3);
}

.hero-blob-b {
    top: 10rem;
    right: 25%;
    width: 20rem;
    height: 20rem;
    background: rgba(191, 219, 254, 0.2);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 56rem;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem; /* gap-2 */
    padding: 0.5rem 1rem; /* py-2 px-4 */
    margin-bottom: 1.5rem; /* mb-6 */
    border-radius: 9999px;
    background: #f0f9ff;
    border: 1px solid #e0f2fe;
    font-size: 0.875rem; /* text-sm */
    font-weight: 500; /* font-medium */
    line-height: 1.25rem;
    color: #0369a1; /* text-sky-700 */
}

.hero-title {
    /* Base44: text-5xl md:text-7xl font-bold tracking-tight leading-[1.1] mb-6 */
    font-size: 3rem; /* text-5xl */
    font-weight: 700;
    color: #0f172a; /* text-slate-900 */
    letter-spacing: -0.025em; /* tracking-tight */
    line-height: 1.1;
    margin-bottom: 1.5rem; /* mb-6 */
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4.5rem; /* text-7xl */
    }
}

.hero-title-gradient {
    display: block;
    margin-top: 0.125rem;
    color: #0ea5e9;
    background: linear-gradient(to right, #0ea5e9, #2563eb); /* from-sky-500 to-blue-600 */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-lead {
    /* Base44: text-xl md:text-2xl text-slate-500 font-light max-w-2xl mb-10 leading-relaxed */
    font-size: 1.25rem; /* text-xl */
    font-weight: 300; /* font-light */
    color: #64748b; /* text-slate-500 */
    max-width: 42rem; /* max-w-2xl */
    margin: 0 auto 2.5rem; /* mb-10 */
    line-height: 1.625; /* leading-relaxed */
}

@media (min-width: 768px) {
    .hero-lead {
        font-size: 1.5rem; /* text-2xl */
        line-height: 1.625;
    }
}

.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem; /* gap-4 */
}

@media (min-width: 640px) {
    .hero-actions {
        flex-direction: row;
        flex-wrap: wrap;
    }
}

.hero-note {
    font-size: 0.875rem; /* text-sm */
    line-height: 1.25rem;
    color: #94a3b8; /* text-slate-400 */
    margin: 0;
}

/* Mockup */
.mockup-wrap {
    margin-top: 4rem; /* mt-16 */
}

.mockup {
    max-width: 48rem;
    margin: 0 auto;
    background: #fff;
    border-radius: 1rem;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.1);
}

.mockup-top {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: #f1f5f9;
    border-bottom: 1px solid #e2e8f0;
}

.mockup-dots {
    display: flex;
    gap: 0.375rem;
}

.mockup-dots span {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
}

.mockup-dots span:nth-child(1) { background: #f87171; }
.mockup-dots span:nth-child(2) { background: #fbbf24; }
.mockup-dots span:nth-child(3) { background: #4ade80; }

.mockup-url {
    flex: 1;
    margin-left: 1rem;
    margin-right: 1rem; /* mx-4 */
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem; /* py-2 px-4 */
    background: #fff;
    border-radius: 0.5rem;
    font-size: 0.875rem; /* text-sm */
    line-height: 1.25rem;
    color: #94a3b8; /* text-slate-400 */
}

.mockup-body {
    padding: 2rem;
    background: linear-gradient(to bottom, #fff, #f8fafc);
}

@media (min-width: 768px) {
    .mockup-body {
        padding: 3rem;
    }
}

.mockup-body-inner {
    max-width: 36rem;
    margin: 0 auto;
    text-align: center;
}

.mockup-icon-big {
    width: 4rem; /* w-16 */
    height: 4rem; /* h-16 */
    min-width: 4rem;
    min-height: 4rem;
    margin: 0 auto 1.5rem; /* mb-6 */
    border-radius: 1rem;
    background: linear-gradient(to bottom right, #38bdf8, #2563eb);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 10px 15px -3px rgba(14, 165, 233, 0.2);
    overflow: hidden;
}

.mockup-icon-big > svg {
    max-width: 55%;
    max-height: 55%;
    width: 2rem;
    height: 2rem;
}

.mockup-tagline {
    font-size: 0.875rem; /* text-sm */
    line-height: 1.25rem;
    color: #94a3b8; /* text-slate-400 */
    margin: 0;
}

/* Sections */
.section {
    /* Base44: py-24 px-6 */
    padding: 6rem 1.5rem;
}

.section-white {
    background: #fff;
}

.section-gradient {
    background: linear-gradient(to bottom, #f8fafc, #fff);
}

.section-head {
    text-align: center;
    margin-bottom: 4rem; /* mb-16 */
}

.section-head--title-only .section-title {
    margin-bottom: 0;
}

.section-title {
    /* Base44: text-3xl md:text-5xl font-bold tracking-tight mb-4 */
    font-size: 1.875rem; /* text-3xl */
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.025em;
    line-height: 1.2;
    margin-bottom: 1rem; /* mb-4 */
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem; /* text-5xl */
        line-height: 1.1;
    }
}

.section-lead {
    /* Base44: text-lg text-slate-500 (max-w-2xl only on some blocks) */
    font-size: 1.125rem; /* text-lg */
    line-height: 1.75rem; /* Tailwind default for text-lg */
    color: #64748b;
    margin: 0 auto;
    max-width: none;
}

.section-lead--balance {
    max-width: 42rem; /* max-w-2xl — features intro only */
}

/* Features */
.feature-grid {
    display: grid;
    gap: 2rem; /* gap-8 */
}

@media (min-width: 768px) {
    .feature-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    padding: 2rem;
    border-radius: 1.5rem;
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    height: 100%;
    transition: background 0.3s, box-shadow 0.3s, transform 0.3s;
}

.feature-card:hover {
    background: #fff;
    box-shadow: 0 20px 25px -5px rgba(15, 23, 42, 0.05);
}

.feature-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: #fff;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-icon-rose {
    background: linear-gradient(to bottom right, #fb7185, #db2777);
}

.feature-icon-amber {
    background: linear-gradient(to bottom right, #fbbf24, #ea580c);
}

.feature-icon-emerald {
    background: linear-gradient(to bottom right, #34d399, #0d9488);
}

.feature-title {
    /* Base44: text-xl font-semibold mb-3 */
    font-size: 1.25rem;
    font-weight: 600;
    color: #0f172a;
    line-height: 1.75rem;
    margin-bottom: 0.75rem; /* mb-3 */
}

.feature-text {
    /* Base44: text-slate-500 leading-relaxed */
    font-size: 1rem;
    color: #64748b;
    line-height: 1.625; /* leading-relaxed */
    margin: 0;
}

/* Steps */
.steps-grid {
    display: grid;
    gap: 2rem;
    position: relative;
}

@media (min-width: 768px) {
    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
}

.step-col {
    position: relative;
    text-align: center;
}

.step-connector {
    display: none;
}

@media (min-width: 768px) {
    .step-connector {
        display: block;
        position: absolute;
        top: 3rem;
        left: 60%;
        width: 80%;
        height: 1px;
        background: linear-gradient(to right, #e2e8f0, transparent);
        pointer-events: none;
    }
}

.step-circle {
    width: 6rem;
    height: 6rem;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 15px -3px rgba(15, 23, 42, 0.08);
    position: relative;
    z-index: 10;
}

.step-num {
    /* Base44: text-2xl font-bold gradient clip */
    font-size: 1.5rem; /* text-2xl */
    font-weight: 700;
    line-height: 2rem;
    color: #2563eb;
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
    .step-num {
        color: transparent;
        background: linear-gradient(to bottom right, #0ea5e9, #2563eb);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }
}

.step-title {
    /* Base44: text-xl font-semibold mb-3 */
    font-size: 1.25rem;
    font-weight: 600;
    color: #0f172a;
    line-height: 1.75rem;
    margin-bottom: 0.75rem;
}

.step-text {
    /* Base44: text-slate-500 max-w-xs */
    font-size: 1rem;
    color: #64748b;
    line-height: 1.5;
    max-width: 20rem; /* max-w-xs */
    margin: 0 auto;
}

/* Why grid */
.why-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.why-item {
    display: flex;
    align-items: center;
    gap: 1rem; /* gap-4 */
    padding: 1rem; /* p-4 */
    border-radius: 1rem; /* rounded-2xl */
    background: #f8fafc;
    border: 1px solid #f1f5f9;
}

.why-check {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    background: linear-gradient(to bottom right, #34d399, #16a34a);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-item span {
    font-size: 1rem;
    font-weight: 500; /* font-medium */
    line-height: 1.5rem;
    color: #334155; /* text-slate-700 */
}

/* CTA dark */
.cta-section {
    position: relative;
    /* Base44: py-24 px-6 */
    padding: 6rem 1.5rem;
    overflow: hidden;
    background: linear-gradient(to bottom right, #0f172a, #1e293b);
}

.cta-blobs {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.cta-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(64px);
}

.cta-blob-a {
    top: -10rem;
    right: -10rem;
    width: 24rem;
    height: 24rem;
    background: rgba(14, 165, 233, 0.1);
}

.cta-blob-b {
    bottom: -10rem;
    left: -10rem;
    width: 24rem;
    height: 24rem;
    background: rgba(59, 130, 246, 0.1);
}

.cta-inner {
    position: relative;
    z-index: 10;
    max-width: 48rem;
    margin: 0 auto;
    text-align: center;
}

.cta-title {
    /* Base44: text-3xl md:text-5xl font-bold mb-6 */
    font-size: 1.875rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.025em;
    line-height: 1.2;
    margin-bottom: 1.5rem; /* mb-6 */
}

@media (min-width: 768px) {
    .cta-title {
        font-size: 3rem;
        line-height: 1.1;
    }
}

.cta-lead {
    /* Base44: text-xl text-slate-400 mb-10 max-w-xl */
    font-size: 1.25rem;
    line-height: 1.75rem;
    color: #94a3b8; /* text-slate-400 */
    max-width: 36rem; /* max-w-xl */
    margin: 0 auto 2.5rem; /* mb-10 */
}

/* Footer */
.footer {
    /* Base44: py-12 px-6 */
    padding: 3rem 1.5rem;
    background: #0f172a;
    border-top: 1px solid #1e293b;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem; /* gap-6 */
}

@media (min-width: 768px) {
    .footer-inner {
        flex-direction: row;
    }
}

.footer-copy {
    font-size: 0.875rem; /* text-sm */
    line-height: 1.25rem;
    color: #64748b; /* text-slate-500 */
    margin: 0;
}
