/*
 * Horizon theme — public landing page.
 * Editorial, light, typography-forward composition — deliberately not a
 * photo-hero design like the default theme, to read as a different
 * product rather than a recolor. Content still comes entirely from
 * App\Support\LandingContent; only presentation differs.
 */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    -webkit-font-smoothing: antialiased;
    color: #14171f;
    background: #fff;
}
.hz-container { max-width: 1180px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 768px) { .hz-container { padding: 0 20px; } }

/* ── Nav ── */
.hz-lnav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(255,255,255,.9); backdrop-filter: blur(10px);
    border-bottom: 1px solid #eef0f3;
}
.hz-lnav-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.hz-lnav-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.hz-lnav-brand img { width: 30px; height: 30px; }
.hz-lnav-brand-name { font-size: .88rem; font-weight: 800; color: #14171f; letter-spacing: -.01em; }
.hz-lnav-links { display: flex; align-items: center; gap: 30px; }
.hz-lnav-links a { font-size: .82rem; font-weight: 600; color: #6b7280; text-decoration: none; }
.hz-lnav-links a:hover { color: #14171f; }
.hz-lnav-cta {
    padding: 9px 20px; border-radius: 999px; background: var(--client-primary); color: #fff !important;
    font-size: .8rem; font-weight: 700; text-decoration: none;
}
.hz-lnav-hamburger { display: none; background: none; border: none; }
.hz-lmobile { display: none; flex-direction: column; background: #fff; border-top: 1px solid #eef0f3; padding: 10px 0; }
.hz-lmobile.open { display: flex; }
.hz-lmobile a { padding: 12px 20px; font-size: .86rem; font-weight: 600; color: #6b7280; text-decoration: none; }

/* ── Hero (editorial, no photo) ── */
.hz-hero {
    padding: 168px 0 96px;
    background:
        radial-gradient(circle at 10% 0%, rgba(var(--client-primary-rgb), .07), transparent 40%),
        radial-gradient(circle at 95% 20%, rgba(var(--client-secondary-rgb), .06), transparent 45%);
}
.hz-hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(var(--client-primary-rgb), .08); border: 1px solid rgba(var(--client-primary-rgb), .18);
    border-radius: 999px; padding: 6px 16px; font-size: .7rem; font-weight: 700; color: var(--client-primary);
    letter-spacing: .03em; margin-bottom: 26px;
}
.hz-hero h1 {
    font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 800; letter-spacing: -.02em;
    line-height: 1.1; max-width: 820px; margin-bottom: 22px;
}
.hz-hero h1 em { font-style: normal; color: var(--client-primary); }
.hz-hero-sub { font-size: 1.08rem; color: #6b7280; line-height: 1.7; max-width: 620px; margin-bottom: 40px; }
.hz-hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

/* Hero visual — a contained, rounded photo card below the copy, not a
   full-bleed background (that treatment belongs to the default theme). */
.hz-hero-visual {
    position: relative;
    margin-top: 64px;
    border-radius: 22px;
    overflow: hidden;
    max-width: 920px;
    box-shadow: 0 24px 64px rgba(16, 24, 40, .16);
}
.hz-hero-visual img { display: block; width: 100%; height: clamp(220px, 32vw, 420px); object-fit: cover; object-position: center 22%; }
.hz-hero-visual-chip {
    position: absolute;
    left: 24px; bottom: 24px;
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(6px);
    border-radius: 14px;
    padding: 14px 20px;
    box-shadow: 0 8px 24px rgba(16, 24, 40, .12);
}
.hz-hero-visual-chip strong { display: block; font-size: 1.3rem; font-weight: 800; color: #14171f; letter-spacing: -.01em; line-height: 1.1; }
.hz-hero-visual-chip span { font-size: .68rem; font-weight: 600; color: #6b7280; text-transform: uppercase; letter-spacing: .04em; }
.hz-btn-primary {
    display: inline-flex; align-items: center; gap: 9px; padding: 14px 26px;
    background: var(--client-primary); color: #fff !important; text-decoration: none;
    font-size: .89rem; font-weight: 700; border-radius: 12px;
    box-shadow: 0 4px 16px rgba(var(--client-primary-rgb), .28);
}
.hz-btn-primary:hover { background: var(--client-secondary); }
.hz-btn-ghost {
    display: inline-flex; align-items: center; gap: 8px; padding: 14px 24px;
    color: #14171f !important; text-decoration: none; font-size: .89rem; font-weight: 600;
    border: 1.5px solid #e6e8ec; border-radius: 12px;
}
.hz-btn-ghost:hover { border-color: var(--client-primary); color: var(--client-primary) !important; }

/* ── Stats — light cards, not a solid bar ── */
.hz-stats { padding: 0 0 96px; }
.hz-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.hz-stat-card {
    background: #fafbfc; border: 1px solid #eef0f3; border-radius: 16px; padding: 26px 22px;
}
.hz-stat-num { font-size: 2rem; font-weight: 800; letter-spacing: -.02em; color: #14171f; margin-bottom: 4px; }
.hz-stat-label { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--client-primary); margin-bottom: 4px; }
.hz-stat-sub { font-size: .76rem; color: #9aa1ac; }

/* ── Section common ── */
.hz-section { padding: 88px 0; }
.hz-section-alt { background: #fafbfc; }
.hz-eyebrow { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--client-primary); margin-bottom: 14px; }
.hz-h2 { font-size: clamp(1.7rem, 3vw, 2.2rem); font-weight: 800; letter-spacing: -.015em; margin-bottom: 14px; }
.hz-lead { font-size: .95rem; color: #6b7280; line-height: 1.75; max-width: 560px; }

/* ── Features ── */
.hz-features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 56px; }
.hz-feature-card { background: #fff; border: 1px solid #eef0f3; border-radius: 18px; padding: 30px 26px; transition: box-shadow .2s, transform .2s; }
.hz-feature-card:hover { box-shadow: 0 10px 28px rgba(16,24,40,.06); transform: translateY(-2px); }
.hz-feature-icon {
    width: 46px; height: 46px; border-radius: 13px; background: rgba(var(--client-primary-rgb), .08);
    color: var(--client-primary); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; margin-bottom: 18px;
}
.hz-feature-title { font-size: .96rem; font-weight: 700; margin-bottom: 8px; }
.hz-feature-desc { font-size: .83rem; color: #6b7280; line-height: 1.7; }

/* ── About ── */
.hz-about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.hz-about-list { list-style: none; margin: 26px 0; display: flex; flex-direction: column; gap: 14px; }
.hz-about-list li { display: flex; gap: 12px; font-size: .87rem; color: #4b5160; line-height: 1.6; }
.hz-about-check {
    width: 20px; height: 20px; border-radius: 6px; background: rgba(var(--client-primary-rgb), .1); color: var(--client-primary);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; font-size: .58rem;
}
.hz-about-image { border-radius: 20px; overflow: hidden; aspect-ratio: 4/3; box-shadow: 0 16px 44px rgba(16,24,40,.1); }
.hz-about-image img { width: 100%; height: 100%; object-fit: cover; }

/* ── Partners — minimal strip ── */
.hz-partners-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px; margin-top: 44px; }
.hz-partner-chip {
    display: flex; align-items: center; gap: 10px; border: 1px solid #eef0f3; border-radius: 14px; padding: 16px 26px; background: #fff;
}
.hz-partner-chip i { color: var(--client-primary); font-size: .9rem; }
.hz-partner-chip strong { font-size: .88rem; }
.hz-partner-chip span { display: block; font-size: .68rem; color: #9aa1ac; }

/* ── CTA ── */
.hz-cta { padding: 90px 0; text-align: center; }
.hz-cta-box {
    max-width: 680px; margin: 0 auto; background: #14171f; border-radius: 24px; padding: 56px 40px; color: #fff;
}
.hz-cta-box h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); font-weight: 800; letter-spacing: -.015em; margin-bottom: 14px; }
.hz-cta-box p { font-size: .9rem; color: rgba(255,255,255,.62); line-height: 1.7; margin-bottom: 30px; }

/* ── Footer ── */
.hz-lfooter { border-top: 1px solid #eef0f3; padding: 48px 0 28px; }
.hz-lfooter-top { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; padding-bottom: 36px; }
.hz-lfooter-brand { max-width: 280px; }
.hz-lfooter-brand-row { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.hz-lfooter-brand-row img { width: 26px; }
.hz-lfooter-brand-row strong { font-size: .85rem; }
.hz-lfooter-desc { font-size: .78rem; color: #9aa1ac; line-height: 1.7; }
.hz-lfooter-col h4 { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: #9aa1ac; margin-bottom: 14px; }
.hz-lfooter-col a { display: block; font-size: .8rem; color: #4b5160; text-decoration: none; margin-bottom: 9px; }
.hz-lfooter-col a:hover { color: var(--client-primary); }
.hz-lfooter-bottom { border-top: 1px solid #eef0f3; padding-top: 22px; font-size: .72rem; color: #9aa1ac; }

@media (max-width: 960px) {
    .hz-features-grid { grid-template-columns: repeat(2, 1fr); }
    .hz-about-grid { grid-template-columns: 1fr; gap: 40px; }
    .hz-stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .hz-lnav-links, .hz-lnav-cta { display: none; }
    .hz-lnav-hamburger { display: block; }
    .hz-features-grid { grid-template-columns: 1fr; }
    .hz-stats-grid { grid-template-columns: 1fr 1fr; }
    .hz-hero { padding: 140px 0 64px; }
    .hz-hero-visual { margin-top: 40px; border-radius: 16px; }
    .hz-hero-visual-chip { left: 14px; bottom: 14px; padding: 10px 14px; border-radius: 11px; }
    .hz-hero-visual-chip strong { font-size: 1.05rem; }
}
