/* ============================================================================
   Hyzmat — landing page styles
   Direction: bold & energetic. Display type: Unbounded (Cyrillic-native).
   Body type: Roboto (loaded globally). Brand anchor: #2563eb.
   All animation is opt-out via prefers-reduced-motion at the bottom.
   ========================================================================== */

:root {
    /* Brand + energetic partners */
    --brand: #2563eb;
    --brand-700: #1d4ed8;
    --cyan: #06b6d4;
    --violet: #7c3aed;
    --coral: #fb7185;
    --amber: #f59e0b;        /* star/accent on DARK surfaces */
    --star-light: #d97706;   /* star rating on LIGHT surfaces (readable contrast) */

    /* Ink + surfaces */
    --ink: #0b1020;
    --ink-2: #0f172a;
    --slate: #334155;
    --muted: #64748b;
    --line: rgba(15, 23, 42, .08);
    --bg: #ffffff;
    --bg-soft: #f5f7ff;
    --bg-tint: #eef3ff;

    /* Signature gradients */
    --grad-brand: linear-gradient(120deg, var(--brand) 0%, var(--cyan) 55%, var(--violet) 100%);
    --grad-warm: linear-gradient(120deg, var(--coral) 0%, var(--amber) 100%);

    --shadow-sm: 0 2px 8px rgba(15, 23, 42, .06);
    --shadow-md: 0 12px 32px rgba(15, 23, 42, .10);
    --shadow-lg: 0 24px 60px rgba(37, 99, 235, .18);

    --radius: 18px;
    --radius-lg: 28px;
    --maxw: 1140px;
    --ease: cubic-bezier(.22, 1, .36, 1);
}

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

html { scroll-behavior: smooth; }

/* Offset anchored sections so the fixed nav doesn't overlap their headings */
:where(section[id], #download) { scroll-margin-top: 84px; }

body {
    font-family: 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    color: var(--ink);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    /* `clip` contains horizontal overflow WITHOUT turning <body> into a scroll
       container (which `overflow-x: hidden` does, via the spec forcing overflow-y
       to auto) — that nested scroller broke anchor scrolling. `hidden` is a fallback. */
    overflow-x: hidden;
    overflow-x: clip;
    /* Subtle ambient mesh so light sections never feel empty — kept very faint */
    background-color: var(--bg);
    background-image:
        radial-gradient(42% 34% at 8% 11%, rgba(37, 99, 235, .06), transparent 60%),
        radial-gradient(38% 30% at 95% 16%, rgba(6, 182, 212, .055), transparent 60%),
        radial-gradient(44% 36% at 92% 68%, rgba(124, 58, 237, .05), transparent 60%),
        radial-gradient(38% 30% at 4% 82%, rgba(37, 99, 235, .05), transparent 60%);
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.hl-display {
    font-family: 'Unbounded', 'Roboto', sans-serif;
    font-weight: 800;
    letter-spacing: -.5px;
    line-height: 1.05;
}

.hl-wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 1.5rem; }

a { text-decoration: none; }

/* ---- Gradient text helper ---- */
.hl-grad-text {
    color: var(--brand); /* solid fallback if background-clip:text is unsupported */
    background: var(--grad-brand);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ===========================  NAV  ======================================= */
.hl-nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 200;
    display: flex; align-items: center; justify-content: space-between;
    gap: 1rem;
    padding: .85rem clamp(1rem, 4vw, 2.5rem);
    background: rgba(255, 255, 255, .72);
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    border-bottom: 1px solid transparent;
    transition: border-color .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
}
.hl-nav.is-scrolled {
    border-bottom-color: var(--line);
    box-shadow: 0 8px 30px rgba(15, 23, 42, .06);
    background: rgba(255, 255, 255, .9);
}
.hl-nav-logo { display: flex; align-items: center; }
.hl-nav-logo img { height: 34px; width: auto; display: block; }
.hl-nav-links { display: flex; align-items: center; gap: 1.75rem; }
.hl-nav-link {
    color: var(--slate); font-weight: 600; font-size: .92rem;
    position: relative; transition: color .2s;
}
.hl-nav-link::after {
    content: ''; position: absolute; left: 0; bottom: -4px;
    width: 100%; height: 2px; background: var(--grad-brand);
    transform: scaleX(0); transform-origin: left; transition: transform .25s var(--ease);
}
.hl-nav-link:hover { color: var(--brand); }
.hl-nav-link:hover::after { transform: scaleX(1); }

.hl-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
    font-weight: 700; font-size: .95rem; border: 0; cursor: pointer;
    border-radius: 999px; padding: .7rem 1.4rem;
    transition: transform .2s var(--ease), box-shadow .2s var(--ease), filter .2s var(--ease);
    white-space: nowrap;
}
.hl-btn-primary { background: var(--grad-brand); color: #fff; box-shadow: 0 8px 22px rgba(37, 99, 235, .35); }
.hl-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(37, 99, 235, .45); color: #fff; }
.hl-btn-ghost { background: rgba(37, 99, 235, .08); color: var(--brand-700); }
.hl-btn-ghost:hover { background: rgba(37, 99, 235, .14); transform: translateY(-2px); }
.hl-btn-light { background: #fff; color: var(--brand-700); box-shadow: var(--shadow-md); }
.hl-btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

/* Language switcher (TM / RU) */
.hl-nav-actions { display: flex; align-items: center; gap: .65rem; }
.hl-lang {
    display: inline-flex; align-items: center; gap: 2px; padding: 3px;
    background: rgba(15, 23, 42, .06); border: 1px solid var(--line); border-radius: 999px;
}
.hl-lang-btn {
    border: 0; background: transparent; cursor: pointer;
    font-family: inherit; font-weight: 700; font-size: .76rem; letter-spacing: .3px;
    color: var(--muted); padding: .32rem .62rem; border-radius: 999px;
    transition: background .2s var(--ease), color .2s var(--ease);
}
.hl-lang-btn:hover { color: var(--ink); }
.hl-lang-btn.is-active { background: #fff; color: var(--brand); box-shadow: var(--shadow-sm); }
.hl-lang-floating { position: absolute; top: 1.25rem; right: 1.25rem; z-index: 2; }
/* On the dark download page the switcher needs light styling */
.hl-download .hl-lang { background: rgba(255, 255, 255, .12); border-color: rgba(255, 255, 255, .22); }
.hl-download .hl-lang-btn { color: rgba(255, 255, 255, .72); }
.hl-download .hl-lang-btn:hover { color: #fff; }
.hl-download .hl-lang-btn.is-active { background: #fff; color: var(--brand); }

/* Mobile menu (CSS-only checkbox toggle; closed via landing.js on link click) */
.hl-nav-burger { display: none; }
.hl-nav-toggle { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.hl-mobile-menu {
    display: none; position: fixed; top: 60px; left: 0; right: 0; z-index: 199;
    flex-direction: column;
    background: rgba(255, 255, 255, .97);
    backdrop-filter: blur(14px) saturate(140%); -webkit-backdrop-filter: blur(14px) saturate(140%);
    border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md);
    padding: 1rem clamp(1rem, 4vw, 2.5rem) 1.5rem;
}
.hl-mobile-menu a:not(.hl-btn) {
    padding: .9rem .25rem; font-weight: 600; color: var(--slate);
    border-bottom: 1px solid var(--line);
}
.hl-mobile-menu a:not(.hl-btn):hover { color: var(--brand); }
.hl-mobile-menu .hl-btn { margin-top: 1rem; }

/* ===========================  HERO  ===================================== */
.hl-hero {
    position: relative; overflow: hidden;
    padding: clamp(6.5rem, 13vw, 9rem) 0 clamp(3rem, 7vw, 4.5rem);
    text-align: center; color: #fff;
    /* Themed banner photo with a brand-tinted dark scrim for legible white text */
    background-image:
        linear-gradient(135deg, rgba(37, 99, 235, .58) 0%, rgba(124, 58, 237, .40) 52%, rgba(6, 182, 212, .46) 100%),
        linear-gradient(180deg, rgba(8, 12, 24, .48) 0%, rgba(8, 12, 24, .74) 100%),
        url('/img/hero-workshop.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
/* Animated mesh blobs */
.hl-blob {
    position: absolute; border-radius: 50%; filter: blur(60px); opacity: .55;
    pointer-events: none; z-index: 0; will-change: transform;
}
.hl-blob-1 { width: 460px; height: 460px; top: -120px; left: -100px;
    background: radial-gradient(circle, rgba(37, 99, 235, .55), transparent 70%);
    animation: hl-float-a 14s var(--ease) infinite; }
.hl-blob-2 { width: 420px; height: 420px; top: -60px; right: -120px;
    background: radial-gradient(circle, rgba(6, 182, 212, .5), transparent 70%);
    animation: hl-float-b 17s var(--ease) infinite; }
.hl-blob-3 { width: 380px; height: 380px; bottom: -140px; left: 40%;
    background: radial-gradient(circle, rgba(124, 58, 237, .38), transparent 70%);
    animation: hl-float-a 20s var(--ease) infinite reverse; }

@keyframes hl-float-a { 50% { transform: translate(40px, 30px) scale(1.08); } }
@keyframes hl-float-b { 50% { transform: translate(-36px, 24px) scale(1.1); } }

.hl-hero-inner { position: relative; z-index: 2; max-width: 820px; margin: 0 auto; }

.hl-badge {
    display: inline-flex; align-items: center; gap: .5rem;
    background: rgba(255, 255, 255, .14); border: 1px solid rgba(255, 255, 255, .28);
    color: #fff; padding: .4rem 1rem; border-radius: 999px;
    font-size: .82rem; font-weight: 600;
    backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
    margin-bottom: 1.6rem;
}
.hl-badge .hl-dot {
    width: 8px; height: 8px; border-radius: 50%; background: #22c55e;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, .6); animation: hl-pulse 2s infinite;
}
@keyframes hl-pulse {
    70% { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
    100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.hl-hero h1 { font-size: clamp(2.1rem, 5vw, 3.5rem); margin-bottom: 1.15rem; text-shadow: 0 2px 24px rgba(0, 0, 0, .3); }
.hl-hero-sub {
    font-size: clamp(1rem, 2vw, 1.2rem); color: rgba(255, 255, 255, .88);
    max-width: 540px; margin: 0 auto 2.25rem;
}
/* Hero accent + buttons tuned for the dark photo background */
.hl-hero .hl-grad-text {
    color: #7dd3fc;
    background: linear-gradient(120deg, #7dd3fc, #22d3ee, #c4b5fd);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hl-hero .hl-store-btn { background: #fff; color: var(--ink); }
.hl-hero .hl-store-btn:hover { color: var(--ink); }

.hl-store-btns { display: flex; gap: .9rem; flex-wrap: wrap; justify-content: center; }
.hl-store-btn {
    display: inline-flex; align-items: center; gap: .65rem;
    background: var(--ink); color: #fff; padding: .8rem 1.5rem; border-radius: 14px;
    box-shadow: var(--shadow-md);
    transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.hl-store-btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); color: #fff; }
.hl-store-btn i { font-size: 1.6rem; }
.hl-store-btn small { display: block; font-size: .68rem; opacity: .72; line-height: 1; }
.hl-store-btn strong { display: block; font-size: 1.02rem; line-height: 1.2; }

/* Floating category marquee under the hero */
.hl-marquee {
    position: relative; z-index: 2; margin-top: 3.25rem; overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
            mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.hl-marquee-track { display: flex; width: max-content; animation: hl-scroll 38s linear infinite; }
.hl-marquee:hover .hl-marquee-track { animation-play-state: paused; }
/* translateX(-50%) is seamless only because every chip (incl. the last of each
   half) carries an identical trailing margin — flex `gap` would skip the seam. */
@keyframes hl-scroll { to { transform: translateX(-50%); } }
.hl-chip {
    display: inline-flex; align-items: center; gap: .5rem; margin-right: .85rem;
    background: #fff; border: 1px solid var(--line); border-radius: 999px;
    padding: .6rem 1.1rem; font-size: .9rem; font-weight: 600; color: var(--slate);
    box-shadow: var(--shadow-sm); white-space: nowrap;
}
.hl-chip i { color: var(--brand); font-size: 1.05rem; }

/* ===========================  STATS  ==================================== */
.hl-stats { padding: clamp(2.5rem, 6vw, 4rem) 0; background: var(--bg); }
.hl-stats-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
    background: var(--ink); border-radius: var(--radius-lg); padding: 2.5rem 1.5rem;
    box-shadow: var(--shadow-lg); position: relative; overflow: hidden;
}
.hl-stats-grid::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(80% 120% at 0% 0%, rgba(37, 99, 235, .35), transparent 55%),
                radial-gradient(80% 120% at 100% 100%, rgba(124, 58, 237, .3), transparent 55%);
}
.hl-stat { position: relative; text-align: center; color: #fff; }
.hl-stat-num { font-family: 'Unbounded', sans-serif; font-weight: 800; font-size: clamp(1.8rem, 4vw, 2.8rem); line-height: 1; }
.hl-stat-num .hl-grad-text { color: var(--cyan); background: linear-gradient(120deg, #7dd3fc, #22d3ee, #c4b5fd); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hl-stat-label { font-size: .88rem; color: #cbd5e1; margin-top: .5rem; }

/* ===========================  SECTION SHELL  ============================ */
.hl-section { padding: clamp(3.5rem, 8vw, 6rem) 0; }
.hl-eyebrow {
    display: inline-block; font-weight: 700; font-size: .8rem; letter-spacing: 1.5px;
    text-transform: uppercase; color: var(--brand); margin-bottom: .85rem;
}
.hl-section-title { font-size: clamp(1.7rem, 3.8vw, 2.5rem); color: var(--ink); margin-bottom: .85rem; }
.hl-section-sub { color: var(--muted); font-size: 1.08rem; max-width: 560px; }
.hl-section-head { margin-bottom: 3rem; }
.hl-section-head.is-center { text-align: center; }
.hl-section-head.is-center .hl-section-sub { margin-inline: auto; }

/* ===========================  AUDIENCE: CUSTOMERS  ===================== */
.hl-audience { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.hl-audience.is-reverse .hl-audience-media { order: -1; }

.hl-feature-list { display: flex; flex-direction: column; gap: 1rem; }
.hl-feature {
    display: flex; gap: 1rem; align-items: flex-start;
    background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius);
    padding: 1.15rem 1.25rem; transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s;
}
.hl-feature:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: rgba(37, 99, 235, .35); }
.hl-feature-ic {
    flex: 0 0 auto; width: 46px; height: 46px; border-radius: 13px;
    display: grid; place-items: center; font-size: 1.3rem; color: #fff;
    background: var(--grad-brand); box-shadow: 0 8px 18px rgba(37, 99, 235, .3);
}
.hl-feature h3 { font-size: 1.05rem; font-weight: 700; color: var(--ink); margin-bottom: .2rem; }
.hl-feature p { font-size: .92rem; color: var(--muted); }

/* Decorative phone-ish media card */
.hl-media-card {
    position: relative; border-radius: var(--radius-lg); padding: 2rem;
    background: var(--grad-brand); color: #fff; box-shadow: var(--shadow-lg);
    overflow: hidden; min-height: 320px; display: flex; flex-direction: column; justify-content: space-between;
}
.hl-media-card::after {
    content: ''; position: absolute; width: 280px; height: 280px; border-radius: 50%;
    background: rgba(255, 255, 255, .14); top: -90px; right: -80px;
}
.hl-media-card .hl-mc-top { position: relative; z-index: 1; display: flex; align-items: center; gap: .7rem; font-weight: 700; }
.hl-media-card .hl-mc-icon { width: 40px; height: 40px; border-radius: 12px; background: rgba(255, 255, 255, .2); display: grid; place-items: center; font-size: 1.2rem; }
.hl-mc-rows { position: relative; z-index: 1; display: flex; flex-direction: column; gap: .65rem; margin-top: 1.5rem; }
.hl-mc-row {
    display: flex; align-items: center; gap: .8rem;
    background: rgba(255, 255, 255, .14); backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, .2); border-radius: 14px; padding: .7rem .85rem;
}
.hl-mc-avatar { width: 38px; height: 38px; border-radius: 50%; background: rgba(255, 255, 255, .35); display: grid; place-items: center; font-size: 1.1rem; flex: 0 0 auto; }
.hl-mc-row .hl-mc-name { font-weight: 700; font-size: .92rem; }
.hl-mc-row .hl-mc-meta { font-size: .78rem; opacity: .85; }
.hl-mc-row .hl-mc-stars {
    margin-left: auto; display: inline-flex; align-items: center; gap: .2rem;
    color: #ffd166; background: rgba(8, 12, 24, .45);
    padding: .2rem .55rem; border-radius: 999px;
    font-size: .82rem; font-weight: 700; white-space: nowrap;
}

/* ===========================  AUDIENCE: MASTERS (dark)  ================ */
.hl-masters {
    position: relative; overflow: hidden;
    background: linear-gradient(155deg, #1e1b4b 0%, #1e3a8a 58%, #0f172a 100%);
    color: #fff;
    border-radius: clamp(24px, 5vw, 44px);
    margin: 0 clamp(0px, 2vw, 1.5rem);
    padding: clamp(3rem, 7vw, 5rem) clamp(1.5rem, 5vw, 4rem);
}
.hl-masters::before {
    content: ''; position: absolute; inset: 0; z-index: 0;
    background: radial-gradient(60% 80% at 85% 10%, rgba(124, 58, 237, .32), transparent 60%),
                radial-gradient(70% 90% at 10% 100%, rgba(6, 182, 212, .26), transparent 60%);
}
.hl-masters > * { position: relative; z-index: 1; }
.hl-masters .hl-eyebrow { color: #38bdf8; }
.hl-masters .hl-section-title { color: #fff; }
.hl-masters .hl-section-sub { color: #cbd5e1; }
.hl-masters-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.1rem; margin-top: 2.5rem; }
.hl-mcard {
    background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--radius); padding: 1.5rem; transition: transform .25s var(--ease), background .25s, border-color .25s;
}
.hl-mcard:hover { transform: translateY(-4px); background: rgba(255, 255, 255, .09); border-color: rgba(56, 189, 248, .5); }
.hl-mcard-ic {
    width: 48px; height: 48px; border-radius: 13px; display: grid; place-items: center;
    font-size: 1.35rem; color: #fff; background: var(--grad-brand); margin-bottom: 1rem;
    box-shadow: 0 8px 18px rgba(37, 99, 235, .4);
}
.hl-mcard h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: .4rem; }
.hl-mcard p { font-size: .92rem; color: #cbd5e1; }
.hl-masters-cta { margin-top: 2.5rem; display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }
.hl-masters-cta .hl-note { color: #94a3b8; font-size: .9rem; }

/* ===========================  HOW IT WORKS  ============================ */
.hl-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; counter-reset: step; }
.hl-step {
    position: relative; background: #fff; border: 1px solid var(--line);
    border-radius: var(--radius-lg); padding: 2.25rem 1.6rem 1.8rem; text-align: left;
    transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.hl-step:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.hl-step-num {
    counter-increment: step; position: absolute; top: -18px; left: 1.6rem;
    font-family: 'Unbounded', sans-serif; font-weight: 800; font-size: 1.05rem; color: #fff;
    width: 44px; height: 44px; border-radius: 14px; display: grid; place-items: center;
    background: var(--grad-brand); box-shadow: 0 10px 22px rgba(37, 99, 235, .35);
}
.hl-step-num::before { content: counter(step); }
.hl-step-ic { font-size: 1.7rem; color: var(--brand); margin: .75rem 0 .9rem; }
.hl-step h3 { font-size: 1.15rem; font-weight: 700; color: var(--ink); margin-bottom: .45rem; }
.hl-step p { font-size: .94rem; color: var(--muted); }

/* ===========================  CATEGORIES  ============================== */
.hl-cats-bg { background: var(--bg-soft); }
.hl-cats-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 1rem; }
.hl-cat {
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
    padding: 1.4rem 1rem; text-align: center;
    transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s;
}
.hl-cat:hover { transform: translateY(-4px); border-color: rgba(37, 99, 235, .4); box-shadow: var(--shadow-md); }
.hl-cat-ic {
    width: 52px; height: 52px; margin: 0 auto .7rem; border-radius: 15px;
    display: grid; place-items: center; font-size: 1.5rem; color: var(--brand);
    background: var(--bg-tint); transition: background .22s, color .22s;
}
.hl-cat:hover .hl-cat-ic { background: var(--grad-brand); color: #fff; }
.hl-cat span { font-size: .88rem; font-weight: 600; color: var(--slate); }

/* ===========================  TESTIMONIALS  =========================== */
.hl-quotes { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.25rem; }
.hl-quote {
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
    padding: 1.75rem; box-shadow: var(--shadow-sm);
    transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.hl-quote:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.hl-quote-stars { color: var(--star-light); font-size: 1.05rem; letter-spacing: 2px; margin-bottom: .85rem; }
.hl-quote p { font-size: 1rem; color: var(--slate); margin-bottom: 1.25rem; }
.hl-quote-by { display: flex; align-items: center; gap: .75rem; }
.hl-quote-av { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; font-weight: 700; color: #fff; background: var(--grad-brand); }
.hl-quote-name { font-weight: 700; font-size: .92rem; color: var(--ink); }
.hl-quote-role { font-size: .8rem; color: var(--muted); }

/* ===========================  CTA  ===================================== */
.hl-cta-wrap { padding: clamp(3rem, 7vw, 5rem) 0; }
.hl-cta {
    position: relative; overflow: hidden; text-align: center; color: #fff;
    background: var(--grad-brand); border-radius: var(--radius-lg);
    padding: clamp(3rem, 7vw, 4.5rem) 1.5rem; box-shadow: var(--shadow-lg);
}
.hl-cta::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(50% 80% at 50% 0%, rgba(255, 255, 255, .25), transparent 60%);
}
.hl-cta > * { position: relative; z-index: 1; }
.hl-cta h2 { font-size: clamp(1.9rem, 4.5vw, 3rem); margin-bottom: 1rem; }
.hl-cta p { font-size: 1.12rem; opacity: .92; max-width: 480px; margin: 0 auto 2.25rem; }
.hl-cta .hl-store-btn { background: #fff; color: var(--ink); }
.hl-cta .hl-store-btn:hover { color: var(--ink); }

/* ===========================  FOOTER  ================================== */
.hl-footer { background: var(--ink); color: #94a3b8; padding: 3rem 1.5rem 2rem; }
.hl-footer-inner { max-width: var(--maxw); margin: 0 auto; display: flex; flex-wrap: wrap; gap: 2rem; justify-content: space-between; align-items: flex-start; }
.hl-footer-brand a { display: inline-block; }
.hl-footer-brand img { height: 36px; width: auto; display: block; border-radius: 8px; }
.hl-footer-brand p { margin-top: .85rem; font-size: .9rem; max-width: 260px; }
.hl-footer-cols { display: flex; gap: clamp(2rem, 6vw, 4rem); flex-wrap: wrap; }
.hl-footer-col h3 { color: #e2e8f0; font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: .9rem; }
.hl-footer-col a { display: block; color: #94a3b8; font-size: .9rem; margin-bottom: .55rem; transition: color .2s; }
.hl-footer-col a:hover { color: #fff; }
.hl-footer-bottom { max-width: var(--maxw); margin: 2.5rem auto 0; padding-top: 1.5rem; border-top: 1px solid rgba(255, 255, 255, .08); font-size: .82rem; opacity: .7; text-align: center; }

/* ===========================  DOWNLOAD PAGE  ========================== */
.hl-download {
    position: relative; overflow: hidden;
    min-height: 100vh; display: grid; place-items: center;
    padding: 2.5rem 1.5rem; text-align: center; color: #fff;
    background: radial-gradient(120% 90% at 50% -10%, #1e3a8a 0%, var(--ink) 60%);
}
.hl-download-card { position: relative; z-index: 1; max-width: 420px; }
.hl-download-card img { height: 52px; width: auto; margin-bottom: 1.5rem; }
.hl-download-card h1 { font-size: clamp(2rem, 6vw, 2.75rem); margin-bottom: .75rem; }
.hl-download-card > p { color: #a8b3c7; margin-bottom: 2rem; }
.hl-download .hl-store-btns { justify-content: center; }
.hl-download .hl-store-btn { background: #fff; color: var(--ink); }
.hl-download .hl-store-btn:hover { color: var(--ink); }
.hl-download-back { display: inline-block; margin-top: 1.75rem; color: #94a3b8; font-size: .9rem; }
.hl-download-back:hover { color: #e2e8f0; }

/* ===========================  SCROLL REVEAL  ========================== */
.hl-reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.hl-reveal.is-visible { opacity: 1; transform: none; }
.hl-reveal[data-delay="1"] { transition-delay: .08s; }
.hl-reveal[data-delay="2"] { transition-delay: .16s; }
.hl-reveal[data-delay="3"] { transition-delay: .24s; }
.hl-reveal[data-delay="4"] { transition-delay: .32s; }

/* ===========================  RESPONSIVE  ============================= */
@media (max-width: 900px) {
    .hl-audience { grid-template-columns: 1fr; }
    .hl-audience.is-reverse .hl-audience-media { order: 0; }
    .hl-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.75rem; }
    .hl-steps { grid-template-columns: 1fr; }
    .hl-nav-links { display: none; }
    .hl-nav-cta { display: none; }
    .hl-nav-burger {
        display: inline-flex; align-items: center; justify-content: center;
        width: 42px; height: 42px; border-radius: 12px; border: 1px solid var(--line);
        background: #fff; color: var(--ink); font-size: 1.3rem; cursor: pointer;
    }
    .hl-nav-toggle:checked ~ .hl-mobile-menu { display: flex; }
}
@media (max-width: 480px) {
    .hl-store-btns { width: 100%; }
    .hl-store-btn { flex: 1 1 auto; justify-content: center; }
}

/* ===========================  FORCED COLORS  ========================= */
/* High-contrast / forced-colors mode strips background images, which would
   make background-clip:text + transparent fill render invisible. */
@media (forced-colors: active) {
    .hl-grad-text,
    .hl-stat-num .hl-grad-text {
        color: CanvasText !important;
        -webkit-text-fill-color: CanvasText !important;
        background: none !important;
    }
}

/* ===========================  REDUCED MOTION  ========================= */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .hl-blob, .hl-marquee-track, .hl-badge .hl-dot { animation: none !important; }
    .hl-reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
    * { transition-duration: .01ms !important; }
}
