/* ScanRaise Homepage — extracted from inline <style> */

/* Hero — split layout: text left, photo right, gradient behind. */
.hero {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding: 56px 24px 40px;
}
.hero::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    width: 100vw;
    height: 100%;
    transform: translateX(-50%);
    background:
        radial-gradient(1100px 400px at 20% 20%, rgba(37, 99, 235, 0.12), transparent 60%),
        radial-gradient(800px 300px at 80% 30%, rgba(147, 51, 234, 0.10), transparent 60%),
        radial-gradient(600px 300px at 50% 90%, rgba(16, 185, 129, 0.08), transparent 60%),
        linear-gradient(180deg, #f5f7ff 0%, #ffffff 100%);
    z-index: -1;
}
.hero-split {
    display: flex;
    align-items: center;
    gap: 48px;
}
.hero-text {
    flex: 1;
    min-width: 0;
    text-align: left;
}
.hero-image {
    flex: 0 0 420px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12), 0 0 0 1px rgba(15, 23, 42, 0.04);
}
.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}
.hero-image-placeholder {
    background: linear-gradient(135deg, var(--accent-light) 0%, #f5f3ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}
.hero-placeholder-inner {
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (max-width: 860px) {
    .hero-split {
        flex-direction: column;
        text-align: center;
    }
    .hero-text { text-align: center; }
    .hero-image {
        flex: none;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    .hero-h1-wrap { height: auto; }
    .hero-em-wrap { height: auto; }
    .hero h1 { font-size: 32px; }
    #hero-em { font-size: 16px; }
    .hero-for { justify-content: center; }
    .hero-ctas { flex-direction: column; align-items: center; }
    .hero-cta { width: 100%; max-width: 320px; text-align: center; }
}
@media (max-width: 480px) {
    .hero { padding: 36px 16px 24px; }
    .hero h1 { font-size: 28px; }
    #hero-em { font-size: 15px; margin-bottom: 24px; }
}
.hero-for { font-size: 16px; color: var(--text-muted); margin-bottom: 8px; letter-spacing: 0.5px; display: flex; align-items: baseline; gap: 6px; flex-wrap: wrap; }
.hero-cycle { color: var(--accent); font-weight: 700; display: inline-block; transition: opacity 0.4s, transform 0.4s; }
.hero-cycle.out { opacity: 0; transform: translateY(-8px); }
.hero-h1-wrap { height: 120px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.hero h1 { font-size: 42px; font-weight: 800; line-height: 1.15; transition: opacity 0.4s; max-width: 640px; margin: 0; }
.hero h1.out { opacity: 0; }
.hero-em-wrap { height: 70px; display: flex; align-items: flex-start; justify-content: center; }
#hero-em { font-size: 18px; color: var(--text-secondary); line-height: 1.6; max-width: 560px; margin: 0 0 20px; transition: opacity 0.4s; }
#hero-em.out { opacity: 0; }
.hero-product-line { font-size: 14px; color: var(--text-muted); line-height: 1.55; max-width: 560px; margin: 0 0 28px; }
.hero-product-line strong { color: var(--text-primary); }
.hero-ctas { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
@media (max-width: 860px) { .hero-ctas { justify-content: center; } }
.hero-cta { display: inline-block; padding: 16px 32px; border-radius: 12px; font-size: 16px; font-weight: 600; text-decoration: none; transition: opacity 0.15s, background 0.15s, color 0.15s; }
.hero-cta-primary { background: var(--accent); color: #fff; }
.hero-cta-primary:hover { opacity: 0.9; text-decoration: none; }
.hero-cta-secondary { background: #fff; color: var(--accent); border: 1.5px solid var(--accent); padding: 14.5px 28px; }
.hero-cta-secondary:hover { background: var(--accent-light); text-decoration: none; }
.hero-sub { margin-top: 12px; font-size: 13px; color: var(--text-muted); }
.hero-demo { margin-top: 12px; }
.hero-demo a { color: var(--accent); font-size: 14px; font-weight: 600; }

/* Trust-signal chip row under the CTAs. */
.hero-trust {
    margin-top: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}
.hero-trust-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 12px;
    text-align: left;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
    transition: border-color 0.15s, transform 0.15s, box-shadow 0.15s;
    color: inherit;
    text-decoration: none;
}
.hero-trust-chip:hover { text-decoration: none; }
.hero-trust-chip:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
}
.hero-trust-chip:nth-child(1) { border-color: #bfdbfe; }
.hero-trust-chip:nth-child(1) i { color: #2563eb; }
.hero-trust-chip:nth-child(2) { border-color: #c7d2fe; }
.hero-trust-chip:nth-child(2) i { color: #6366f1; }
.hero-trust-chip:nth-child(3) { border-color: #a7f3d0; }
.hero-trust-chip:nth-child(3) i { color: #059669; }
.hero-trust-chip:nth-child(4) { border-color: #fde68a; }
.hero-trust-chip:nth-child(4) i { color: #d97706; }
.hero-trust-chip i {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}
.hero-trust-chip > div {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}
.hero-trust-chip strong {
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
}
.hero-trust-chip span {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 500;
}
@media (max-width: 600px) {
    .hero-trust { gap: 8px; }
    .hero-trust-chip { padding: 8px 12px; }
    .hero-trust-chip strong { font-size: 12px; }
    .hero-trust-chip span { font-size: 10px; }
}

/* How it works */
.how { padding: 64px 24px; }
.how h2 { text-align: center; font-size: 32px; font-weight: 800; margin-bottom: 48px; }
.steps { max-width: 860px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step { text-align: center; }
.step-icon { color: var(--accent); margin-bottom: 10px; }
.step h3 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.step p { font-size: 13px; color: var(--text-secondary); line-height: 1.5; }

/* Features showcase */
.features-show { padding: 64px 24px; }
.features-show h2 { text-align: center; font-size: 32px; font-weight: 800; margin-bottom: 12px; }
.features-show .sub { text-align: center; color: var(--text-secondary); margin-bottom: 40px; font-size: 16px; }
.feat-grid { max-width: 900px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; }
.feat-card { padding: 24px; border: 1.5px solid var(--border); border-radius: 12px; background: white; }
.feat-card i { color: var(--accent); margin-bottom: 12px; display: flex; align-items: center; justify-content: center; width: 48px; height: 48px; background: var(--accent-light); border-radius: 12px; }
.feat-card i svg, .feat-card svg { stroke: var(--accent); color: var(--accent); }
.feat-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.feat-card p { font-size: 13px; color: var(--text-secondary); line-height: 1.5; margin: 0; }

/* Pricing */
.pricing-section { background: var(--bg-muted); padding: 64px 24px; }
.pricing-section h2 { text-align: center; font-size: 32px; font-weight: 800; margin-bottom: 8px; }
.pricing-section .sub { text-align: center; color: var(--text-secondary); margin-bottom: 40px; font-size: 16px; }
.pricing-box { max-width: 480px; margin: 0 auto; background: white; border: 2px solid var(--accent); border-radius: 16px; padding: 36px; text-align: center; }
.pricing-box .price { font-size: 56px; font-weight: 800; color: var(--accent); }
.pricing-box .price-label { font-size: 16px; color: var(--text-secondary); margin-bottom: 24px; }
.pricing-box .includes { margin: 0 auto 24px; padding: 0; width: fit-content; }
.pricing-box .includes li { font-size: 13px; color: var(--text-secondary); padding: 5px 0; list-style: none; display: flex; align-items: center; gap: 6px; }
.pricing-box .includes li i { color: var(--accent); width: 16px; height: 16px; flex-shrink: 0; }
.pricing-box a { display: inline-block; padding: 14px 32px; background: var(--accent); color: white; border-radius: 10px; font-weight: 700; font-size: 16px; text-decoration: none; }

/* Compare table */
.compare { max-width: 720px; margin: 32px auto 0; }
.compare h3 { text-align: center; font-size: 18px; font-weight: 700; margin-bottom: 16px; }
.compare table { width: 100%; border-collapse: collapse; background: white; border-radius: 10px; overflow: hidden; border: 1.5px solid var(--border); }
.compare th, .compare td { padding: 12px 14px; text-align: center; border-bottom: 1px solid var(--border); font-size: 13px; }
.compare th { background: #f9fafb; font-weight: 700; font-size: 11px; text-transform: uppercase; color: var(--text-muted); }
.compare th.us-col { background: var(--accent); color: white; font-size: 12px; }
.compare td:first-child { text-align: left; font-weight: 600; color: var(--text-secondary); }
.compare tr:last-child td { border-bottom: none; }
.compare .us-val { background: #f0f4ff; font-weight: 700; color: var(--accent); }
.compare .bad { color: #ef4444; font-weight: 600; }
.compare .no { color: #999; }

/* Audiences */
.audiences { max-width: 900px; margin: 0 auto; padding: 64px 24px; }
.audiences h2 { text-align: center; font-size: 32px; font-weight: 800; margin-bottom: 12px; }
.audiences .sub { text-align: center; color: var(--text-secondary); margin-bottom: 40px; }
.audience-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 14px; }
.audience-card { padding: 20px; border: 1.5px solid var(--border); border-radius: 12px; background: white; text-decoration: none; color: inherit; display: block; transition: border-color 0.15s, transform 0.15s; }
.audience-card:hover { border-color: var(--accent); transform: translateY(-2px); text-decoration: none; }
.audience-card i { color: var(--accent); margin-bottom: 8px; display: block; }
.audience-card h3 { font-size: 15px; margin-bottom: 4px; }
.audience-card p { font-size: 13px; color: var(--text-secondary); line-height: 1.4; margin: 0; }

/* Why section */
.why { background: var(--bg-muted); padding: 64px 24px; }
.why h2 { text-align: center; font-size: 32px; font-weight: 800; margin-bottom: 40px; }
.why-grid { max-width: 800px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; align-items: start; }
.why-item { text-align: center; display: flex; flex-direction: column; align-items: center; }
.why-item i { color: var(--accent); margin-bottom: 8px; }
.why-item .stat { font-size: 36px; font-weight: 800; color: var(--accent); }
.why-item h3 { font-size: 15px; font-weight: 700; margin: 4px 0; }
.why-item p { font-size: 13px; color: var(--text-secondary); line-height: 1.4; }

/* Trust */
.trust { padding: 48px 24px; text-align: center; }
.trust-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 32px; max-width: 700px; margin: 0 auto; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-muted); font-weight: 600; }
.trust-item i { color: var(--text-muted); }

/* Final CTA */
.final-cta { background: var(--accent); padding: 64px 24px; text-align: center; }
.final-cta h2 { color: white; font-size: 32px; margin-bottom: 8px; }
.final-cta p { color: rgba(255,255,255,0.8); max-width: 480px; margin: 0 auto 24px; font-size: 16px; }
.final-cta a { display: inline-block; padding: 14px 32px; background: white; color: var(--accent); border-radius: 10px; font-weight: 700; font-size: 16px; text-decoration: none; }

/* Lucide icon sizing classes */
.icon-sm { width: 16px; height: 16px; }
.icon-md { width: 24px; height: 24px; }
.icon-lg { width: 28px; height: 28px; }
.icon-xl { width: 36px; height: 36px; }

/* Fitness strip */
.fitness-strip { max-width: 600px; margin: 32px auto 0; text-align: center; }
.fitness-strip p { font-size: 13px; color: var(--text-muted); margin-bottom: 16px; }
.fitness-logos { display: flex; align-items: center; justify-content: center; gap: 32px; flex-wrap: wrap; }
.fitness-logo { display: flex; align-items: center; gap: 8px; }
.fitness-logo span { font-weight: 700; color: var(--accent); font-size: 15px; }
.fitness-note { font-size: 11px; color: var(--text-muted); margin-top: 12px; }

/* Section backgrounds */
.bg-muted { background: var(--bg-muted); }

/* Phone mockup inline-style replacements */
.phone-text-center-pt8 { text-align: center; padding-top: 8px; }
.phone-margin-badge { margin: 6px 0; }
.phone-tracking-mode { text-align: center; margin: 12px 0; font-size: 10px; color: #6b7280; }
.phone-tracking-emoji { font-size: 18px; }
.phone-recording-top { text-align: center; margin-top: 8px; }
.phone-photo-btn-wrap { text-align: center; margin: 6px 0; }
.phone-verified-badge { margin-top: 8px; }
.phone-verified-note { margin-top: 6px; font-size: 9px; color: #9ca3af; }

/* Athon engine CTA block */
.athon-demo-block { text-align: center; margin-top: 40px; }
.athon-demo-title { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.athon-demo-sub { font-size: 13px; color: var(--text-secondary); margin-bottom: 0; }
.athon-demo-link { color: var(--accent); font-weight: 600; }

/* Flat donation note */
.flat-note { text-align: center; font-size: 13px; color: var(--text-muted); margin-top: 16px; }

/* Hero QR placeholder icon */
.hero-qr-icon { width: 64px; height: 64px; color: var(--accent); opacity: 0.3; }

/* Compare link */
.compare-link { font-size: 13px; font-weight: 400; color: var(--accent); }
.compare-lead { font-size: 14px; color: var(--text-secondary); margin: 8px 0 16px; max-width: 720px; line-height: 1.55; }
.compare-footnote { font-size: 12px; color: var(--text-muted); margin-top: 12px; font-style: italic; }

/* Accuracy dot colors */
.accuracy-green { background: #22c55e; }

/* Camera icon inside phone mockup */
.phone-camera-icon { width: 14px; height: 14px; vertical-align: -2px; }

/* ES hero demo link wrapper */
.hero-demo-es { margin-top: 12px; }
.hero-demo-es a { color: var(--accent); font-size: 14px; font-weight: 600; }

/* Footer opacity */
.footer-insurance { opacity: 0.6; }

/* Responsive — mobile */
@media (max-width: 700px) {
    .feat-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 28px; }
    .hero-h1-wrap { height: 76px; }
    .hero-em-wrap { height: 60px; }
    #hero-em { font-size: 15px; }
    .hero-for { font-size: 14px; }
    .steps { grid-template-columns: 1fr 1fr; }
    .why-grid { grid-template-columns: 1fr; gap: 20px; }
    .compare { overflow-x: auto; -webkit-overflow-scrolling: touch; }
    .compare table { min-width: 640px; }
    .pricing-box .price { font-size: 44px; }
    .audience-grid { grid-template-columns: 1fr 1fr; }
    .trust-row { gap: 16px; }
}
