/* ============================================================================
   Shift Reef — Finozest-style landing (minimal black/white + coral accents)
   Scoped to body.fz  so it never touches the app UI.
   ============================================================================ */
body.fz {
    --ink: #0b0b12;
    --ink-2: #23232d;
    --muted: #6a6a76;
    --muted-2: #9a9aa6;
    --bg: #ffffff;
    --bg-soft: #f5f5f8;
    --line: #ececf0;
    --coral: #f75638;
    --coral-2: #ff8a5b;
    --navy: #0c2459;
    --glow: rgba(247, 86, 56, .16);
    --glow-2: rgba(12, 36, 89, .10);
    --radius: 18px;
    --shadow: 0 24px 60px -20px rgba(16, 16, 32, .18);
    --shadow-sm: 0 10px 30px -12px rgba(16, 16, 32, .16);
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
    color: var(--muted);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    margin: 0;
    overflow-x: hidden;
}
body.fz * { box-sizing: border-box; }
body.fz h1, body.fz h2, body.fz h3, body.fz h4 {
    font-family: 'Inter', system-ui, sans-serif;
    color: var(--ink);
    font-weight: 800;
    letter-spacing: -.02em;
    line-height: 1.06;
    margin: 0;
}
body.fz p { margin: 0; }
body.fz a { text-decoration: none; color: inherit; }
body.fz img { max-width: 100%; display: block; }
body.fz .fz-container { width: min(1200px, 92vw); margin-inline: auto; }
body.fz section { position: relative; }

/* ---- background grid + glows ---- */
.fz-grid {
    position: absolute; inset: 0; z-index: 0; pointer-events: none;
    background-image:
        linear-gradient(to right, rgba(16, 16, 32, .04) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(16, 16, 32, .04) 1px, transparent 1px);
    background-size: 62px 62px;
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 35%, #000 40%, transparent 100%);
    mask-image: radial-gradient(ellipse 80% 60% at 50% 35%, #000 40%, transparent 100%);
}
.fz-glow {
    position: absolute; z-index: 0; pointer-events: none; border-radius: 50%;
    filter: blur(70px); opacity: .8;
}

/* ---- buttons (Catalyze-style dot ripple-fill hover) ---- */
.fz-btn {
    position: relative; display: inline-flex; align-items: center; gap: 10px; overflow: hidden;
    padding: 14px 24px; border-radius: 999px; font-weight: 600; font-size: 15px;
    cursor: pointer; border: 1px solid transparent; white-space: nowrap;
    background-repeat: no-repeat; background-position: 22px center; background-size: 0 0;
    transition: background-size .55s cubic-bezier(.6, .05, .1, 1), transform .25s ease, box-shadow .3s ease, color .3s ease, border-color .25s ease;
}
.fz-btn .fz-ico { transition: transform .3s cubic-bezier(.34, 1.56, .64, 1); display: inline-flex; }
.fz-btn:hover .fz-ico { transform: translateX(5px); }
/* The `body.fz a { color: inherit }` reset has higher specificity than these
   button classes, so keep CTA foreground colors explicitly scoped here. */
body.fz .fz-btn-dark { background-color: var(--ink); color: #fff; background-image: radial-gradient(circle, var(--coral) 0 100%); }
body.fz .fz-btn-dark:hover, body.fz .fz-btn-dark:focus-visible { color: #fff; background-size: 340% 340%; transform: translateY(-2px); box-shadow: 0 16px 30px -12px rgba(247, 86, 56, .5); }
body.fz .fz-btn-coral { background-color: var(--coral); color: #fff; background-image: radial-gradient(circle, var(--ink) 0 100%); box-shadow: 0 14px 26px -12px rgba(247, 86, 56, .6); }
body.fz .fz-btn-coral:hover, body.fz .fz-btn-coral:focus-visible { color: #fff; background-size: 340% 340%; transform: translateY(-2px); box-shadow: 0 18px 34px -12px rgba(11, 11, 18, .4); }
body.fz .fz-btn-ghost { background: #fff; color: var(--ink); border-color: var(--line); }
body.fz .fz-btn-ghost:hover, body.fz .fz-btn-ghost:focus-visible { color: var(--ink); border-color: var(--ink); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
body.fz .fz-btn-light { background: rgba(255, 255, 255, .12); color: #fff; border-color: rgba(255, 255, 255, .25); }
body.fz .fz-btn-light:hover, body.fz .fz-btn-light:focus-visible { background: #fff; color: var(--ink); }
body.fz .fz-btn:focus-visible { outline: 3px solid rgba(247, 86, 56, .5); outline-offset: 3px; }

.fz-pill {
    display: inline-flex; align-items: center; gap: 8px; padding: 7px 15px; border-radius: 999px;
    background: var(--bg-soft); border: 1px solid var(--line); font-size: 13px; font-weight: 600; color: var(--ink-2);
}
.fz-pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--coral); box-shadow: 0 0 0 4px var(--glow); }

/* ---- navbar ---- */
.fz-nav {
    position: sticky; top: 0; z-index: 50;
    background: rgba(255, 255, 255, .82); backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid transparent; transition: border-color .3s, box-shadow .3s;
}
.fz-nav.scrolled { border-color: var(--line); box-shadow: 0 6px 24px -18px rgba(16, 16, 32, .3); }
.fz-nav-in { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.fz-nav .brand-wordmark { display: inline-flex; align-items: center; }
.fz-nav-links { display: flex; gap: 34px; }
.fz-nav-links a { font-size: 15px; font-weight: 600; color: var(--ink-2); position: relative; }
.fz-nav-links a::after {
    content: ''; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0; background: var(--coral); transition: width .28s ease;
}
.fz-nav-links a:hover { color: var(--ink); }
.fz-nav-links a:hover::after { width: 100%; }
.fz-nav-actions { display: flex; align-items: center; gap: 14px; }
.fz-nav-actions .login { font-weight: 600; color: var(--ink-2); }
.fz-nav-actions .login:hover { color: var(--ink); }
.fz-burger { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.fz-burger span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 5px 0; transition: .3s; }

/* ---- hero ---- */
.fz-hero { padding: 74px 0 0; text-align: center; overflow: hidden; }
.fz-hero .fz-glow.g1 { width: 620px; height: 480px; background: var(--glow); top: -120px; left: 50%; transform: translateX(-50%); }
.fz-hero .fz-glow.g2 { width: 380px; height: 380px; background: var(--glow-2); top: 120px; right: 8%; }
.fz-hero-in { position: relative; z-index: 2; }
.fz-hero .badge-ico { width: 54px; height: 54px; border-radius: 15px; background: var(--ink); color: #fff; display: grid; place-items: center; margin: 0 auto 26px; box-shadow: var(--shadow-sm); }
.fz-hero h1 { font-size: clamp(38px, 6vw, 78px); font-weight: 800; }
.fz-hero h1 .accent { color: var(--coral); }
.fz-hero .sub { max-width: 640px; margin: 24px auto 0; font-size: 18px; line-height: 1.6; }
.fz-hero .cta { display: flex; gap: 14px; justify-content: center; margin-top: 34px; flex-wrap: wrap; }

/* floating dashboard cards */
.fz-hero-cards { position: relative; height: 470px; margin-top: 30px; z-index: 2; }
.fz-fcard { position: absolute; background: #fff; border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow); overflow: hidden; will-change: transform; }
.fz-fcard.main { width: min(760px, 66vw); left: 50%; top: 40px; transform: translateX(-50%); z-index: 3; }
.fz-fcard.main img { width: 100%; display: block; }
.fz-fcard.mini { padding: 16px 18px; z-index: 4; }
.fz-fcard.c-left { left: 2%; top: 150px; width: 230px; }
.fz-fcard.c-right { right: 2%; top: 120px; width: 250px; }
.fz-fcard.c-bottom { right: 12%; bottom: 8px; width: 240px; }
.fz-mini-row { display: flex; align-items: center; gap: 12px; }
.fz-mini-ico { width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; flex: none; }
.fz-mini-ico.coral { background: var(--glow); color: var(--coral); }
.fz-mini-ico.navy { background: rgba(12, 36, 89, .1); color: var(--navy); }
.fz-mini-ico.green { background: rgba(34, 197, 94, .12); color: #16a34a; }
.fz-mini-k { font-size: 12px; color: var(--muted); font-weight: 600; }
.fz-mini-v { font-size: 20px; font-weight: 800; color: var(--ink); line-height: 1.1; }
.fz-mini-badge { margin-left: auto; font-size: 12px; font-weight: 700; padding: 3px 9px; border-radius: 999px; background: rgba(34, 197, 94, .12); color: #16a34a; }

/* ---- trust strip ---- */
.fz-trust { padding: 46px 0 10px; text-align: center; }
.fz-trust .lbl { font-size: 15px; font-weight: 600; color: var(--ink-2); }
.fz-trust-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; margin-top: 26px; }
.fz-trust-row .item { display: inline-flex; align-items: center; gap: 10px; font-size: 19px; font-weight: 700; color: var(--muted-2); opacity: .8; }
.fz-trust-row .item i { font-size: 22px; }

/* ---- word-fill reveal section + stats ---- */
.fz-reveal-sec { padding: 120px 0 90px; text-align: center; overflow: hidden; }
.fz-reveal-sec .fz-glow { width: 700px; height: 420px; background: var(--glow); left: 50%; top: 30%; transform: translateX(-50%); opacity: .55; }
.fz-fill { font-size: clamp(32px, 5.4vw, 68px); font-weight: 800; line-height: 1.08; max-width: 1000px; margin: 0 auto; position: relative; z-index: 2; }
.fz-fill .w { color: #d4d4dc; transition: color .25s ease; }
.fz-fill .w.on { color: var(--ink); }
.fz-fill .w.hl.on { color: var(--coral); }
.fz-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 80px; position: relative; z-index: 2; }
.fz-stat .num { font-size: clamp(34px, 4.4vw, 58px); font-weight: 800; color: var(--ink); letter-spacing: -.03em; }
.fz-stat .num .suf { color: var(--coral); }
.fz-stat .lbl { margin-top: 8px; font-size: 15px; font-weight: 600; color: var(--muted); }

/* ---- numbered feature blocks ---- */
.fz-feature-sec { padding: 40px 0 30px; }
.fz-fblock { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; padding: 60px 0; position: relative; }
.fz-fblock .media { position: relative; }
.fz-fblock .media .frame { border-radius: 18px; overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); background: #fff; }
.fz-fblock .media .frame img { width: 100%; display: block; }
.fz-fblock .media .lottie { position: absolute; width: 130px; height: 130px; right: -18px; bottom: -22px; background: #fff; border-radius: 18px; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.fz-fblock .bignum { position: absolute; font-size: 150px; font-weight: 800; color: rgba(16, 16, 32, .04); top: -30px; z-index: 0; letter-spacing: -.04em; }
.fz-fblock.rev .bignum { right: 0; }
.fz-fblock .body { position: relative; z-index: 1; }
.fz-fblock.rev .media { order: 2; }
.fz-fblock .ico { width: 62px; height: 62px; border-radius: 16px; background: var(--ink); color: #fff; display: grid; place-items: center; margin-bottom: 22px; }
.fz-fblock h2 { font-size: clamp(28px, 3.4vw, 42px); }
.fz-fblock .desc { margin-top: 16px; font-size: 17px; line-height: 1.6; max-width: 460px; }
.fz-fchecks { margin-top: 22px; display: grid; gap: 12px; }
.fz-fchecks li { display: flex; align-items: center; gap: 11px; list-style: none; font-weight: 600; color: var(--ink-2); }
.fz-check { width: 22px; height: 22px; border-radius: 7px; background: var(--coral); color: #fff; display: grid; place-items: center; flex: none; font-size: 12px; }

/* ---- offer grid ---- */
.fz-offer-sec { padding: 90px 0; }
.fz-head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.fz-head h2 { font-size: clamp(30px, 4vw, 48px); }
.fz-head p { margin-top: 16px; font-size: 17px; line-height: 1.6; }
.fz-offer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.fz-ocard {
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px;
    transition: transform .35s cubic-bezier(.22, 1, .36, 1), box-shadow .35s, border-color .35s;
    position: relative; overflow: hidden;
}
.fz-ocard::before { content: ''; position: absolute; inset: 0; background: radial-gradient(120px 90px at 80% 0%, var(--glow), transparent 70%); opacity: 0; transition: opacity .35s; }
.fz-ocard:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: transparent; }
.fz-ocard:hover::before { opacity: 1; }
.fz-ocard:hover .fz-ocard-ico img { transform: scale(1.1) rotate(-4deg); }
.fz-ocard-ico { width: 66px; height: 66px; margin-bottom: 22px; }
.fz-ocard-ico img { width: 100%; transition: transform .4s cubic-bezier(.34, 1.56, .64, 1); }
.fz-ocard h3 { font-size: 21px; font-weight: 700; }
.fz-ocard p { margin-top: 10px; font-size: 15px; line-height: 1.6; }

/* ---- dark showcase ---- */
.fz-dark { background: #08080d; color: #fff; padding: 110px 0; margin: 40px 0; overflow: hidden; text-align: center; }
.fz-dark .fz-glow { width: 640px; height: 460px; background: rgba(247, 86, 56, .28); left: 50%; top: 20%; transform: translateX(-50%); filter: blur(90px); }
.fz-dark .fz-glow.b { background: rgba(120, 60, 200, .3); left: 20%; top: 40%; }
body.fz .fz-dark h2 { color: #fff; font-size: clamp(30px, 4.4vw, 56px); position: relative; z-index: 2; }
.fz-dark .sub { color: rgba(255, 255, 255, .6); max-width: 560px; margin: 20px auto 0; position: relative; z-index: 2; font-size: 17px; }
.fz-dark-cards { position: relative; height: 340px; margin-top: 40px; z-index: 2; }
.fz-dark .fz-fcard.main { top: 0; width: min(720px, 70vw); }

/* ---- pricing ---- */
.fz-price-sec { padding: 90px 0; }
.fz-price-sec .fz-glow { width: 700px; height: 400px; background: var(--glow); left: 50%; top: 10%; transform: translateX(-50%); opacity: .5; }
.fz-toggle { display: inline-flex; align-items: center; gap: 14px; margin: 0 auto 46px; justify-content: center; width: 100%; font-weight: 600; color: var(--muted); }
.fz-switch { width: 54px; height: 30px; border-radius: 999px; background: var(--ink); position: relative; cursor: pointer; border: 0; }
.fz-switch .knob { position: absolute; top: 3px; left: 3px; width: 24px; height: 24px; border-radius: 50%; background: #fff; transition: transform .28s; }
.fz-switch.on .knob { transform: translateX(24px); }
.fz-price-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; max-width: 1050px; margin: 0 auto; position: relative; z-index: 2; }
.fz-pcard { background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 34px; transition: transform .35s, box-shadow .35s; display: flex; flex-direction: column; }
.fz-pcard:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.fz-pcard.pop { border-color: var(--ink); box-shadow: var(--shadow); position: relative; }
.fz-pcard.pop::before { content: ''; position: absolute; inset: -1px; border-radius: 20px; padding: 1px; background: linear-gradient(160deg, var(--coral), transparent 60%); -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; }
@media (min-width: 981px) { .fz-pcard.pop { transform: scale(1.04); } .fz-pcard.pop:hover { transform: scale(1.04) translateY(-8px); } }
.fz-pcard .ptop { display: flex; align-items: center; justify-content: space-between; }
.fz-pcard h3 { font-size: 20px; font-weight: 700; }
.fz-pcard .popbadge { font-size: 12px; font-weight: 700; color: #fff; background: var(--coral); padding: 5px 12px; border-radius: 999px; }
.fz-pcard .price { margin: 20px 0 4px; font-size: 46px; font-weight: 800; color: var(--ink); letter-spacing: -.03em; }
.fz-pcard .price sup { font-size: 22px; top: -18px; margin-right: 2px; }
.fz-pcard .price .per { font-size: 15px; font-weight: 600; color: var(--muted); }
.fz-pcard .pdiv { height: 1px; background: var(--line); margin: 22px 0; }
.fz-plist { list-style: none; padding: 0; margin: 0 0 26px; display: grid; gap: 13px; }
.fz-plist li { display: flex; align-items: center; gap: 11px; font-size: 15px; font-weight: 500; color: var(--ink-2); }
.fz-plist li.off { color: var(--muted-2); }
.fz-pcheck { width: 22px; height: 22px; border-radius: 999px; background: var(--ink); color: #fff; display: grid; place-items: center; flex: none; font-size: 11px; }
.fz-plist li.off .fz-pcheck { background: #e4e4ea; color: #b6b6c0; }
.fz-pcard .fz-btn { width: 100%; justify-content: center; margin-top: auto; }

/* ---- faq ---- */
.fz-faq-sec { padding: 40px 0 100px; }
.fz-faq-wrap { max-width: 820px; margin: 0 auto; display: grid; gap: 14px; }
.fz-faq { border: 1px solid var(--line); border-radius: 16px; background: #fff; overflow: hidden; transition: border-color .3s, box-shadow .3s; }
.fz-faq.open { border-color: var(--ink); box-shadow: var(--shadow-sm); }
.fz-faq-q { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 24px; cursor: pointer; font-weight: 700; color: var(--ink); font-size: 17px; }
.fz-faq-q .pm { width: 30px; height: 30px; border-radius: 50%; background: var(--bg-soft); display: grid; place-items: center; flex: none; transition: .3s; font-size: 18px; }
.fz-faq.open .fz-faq-q .pm { background: var(--coral); color: #fff; transform: rotate(45deg); }
.fz-faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.fz-faq-a p { padding: 0 24px 22px; font-size: 15px; line-height: 1.65; }

/* ---- dark CTA + footer ---- */
.fz-foot { background: #08080d; color: #fff; border-radius: 34px 34px 0 0; margin-top: 40px; padding: 70px 0 30px; overflow: hidden; position: relative; }
.fz-foot .fz-glow { width: 500px; height: 300px; background: rgba(247, 86, 56, .22); left: 50%; top: -60px; transform: translateX(-50%); filter: blur(90px); }
.fz-cta { display: grid; grid-template-columns: 1.1fr 1fr; gap: 50px; align-items: center; padding-bottom: 56px; border-bottom: 1px solid rgba(255, 255, 255, .1); position: relative; z-index: 2; }
body.fz .fz-cta h2 { color: #fff; font-size: clamp(28px, 3.6vw, 44px); }
.fz-cta .sub { color: rgba(255, 255, 255, .55); margin-top: 16px; font-size: 16px; }
.fz-news { }
.fz-news .lbl { font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: rgba(255, 255, 255, .55); font-weight: 700; }
.fz-news-row { display: flex; gap: 12px; margin-top: 16px; }
.fz-news-row input { flex: 1; background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .14); border-radius: 12px; padding: 15px 18px; color: #fff; font-size: 15px; outline: none; }
.fz-news-row input::placeholder { color: rgba(255, 255, 255, .4); }
.fz-news .note { margin-top: 14px; color: rgba(255, 255, 255, .45); font-size: 14px; }
.fz-foot-cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding: 50px 0 40px; position: relative; z-index: 2; }
.fz-foot-cols .brand-wordmark { margin-bottom: 18px; }
.fz-foot-cols .brand-wordmark .brand-shift { color: #fff; }
.fz-foot-cols p { color: rgba(255, 255, 255, .5); font-size: 15px; }
body.fz .fz-foot-cols h4 { color: #fff; font-size: 16px; margin-bottom: 20px; }
.fz-foot-cols a, .fz-foot-cols .li { display: block; color: rgba(255, 255, 255, .55); font-size: 15px; margin-bottom: 14px; transition: color .25s; }
.fz-foot-cols a:hover { color: #fff; }
.fz-foot-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 26px; border-top: 1px solid rgba(255, 255, 255, .1); position: relative; z-index: 2; flex-wrap: wrap; gap: 16px; }
.fz-foot-bottom .copy { color: rgba(255, 255, 255, .45); font-size: 14px; }
.fz-socials { display: flex; gap: 10px; }
.fz-socials a { padding: 9px 18px; border: 1px solid rgba(255, 255, 255, .18); border-radius: 999px; color: #fff; font-size: 14px; font-weight: 600; transition: .25s; }
.fz-socials a:hover { background: #fff; color: var(--ink); }

/* ---- reveal-on-load / on-scroll animation ---- */
.fz-rise { opacity: 0; transform: translateY(30px); transition: opacity .8s cubic-bezier(.22, 1, .36, 1), transform .8s cubic-bezier(.22, 1, .36, 1); }
.fz-rise.in { opacity: 1; transform: none; }
.fz-scale { opacity: 0; transform: translateY(24px) scale(.96); transition: opacity .8s cubic-bezier(.22, 1, .36, 1), transform .8s cubic-bezier(.22, 1, .36, 1); }
.fz-scale.in { opacity: 1; transform: none; }
.fz-float { animation: fzFloat 6s ease-in-out infinite; }
.fz-float.d1 { animation-delay: -1.5s; }
.fz-float.d2 { animation-delay: -3s; }
.fz-float.d3 { animation-delay: -4.5s; }
@keyframes fzFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
.fz-fcard.main.fz-float { animation-name: fzFloatMain; }
@keyframes fzFloatMain { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(-12px); } }

/* ---- responsive ---- */
@media (max-width: 980px) {
    body.fz .fz-nav-links, body.fz .fz-nav-actions .login { display: none; }
    body.fz .fz-burger { display: block; }
    body.fz .fz-nav-links.open {
        display: flex; flex-direction: column; position: absolute; top: 74px; left: 0; right: 0;
        background: #fff; border-bottom: 1px solid var(--line); padding: 20px 4vw; gap: 18px;
    }
    body.fz .fz-fblock, body.fz .fz-cta { grid-template-columns: 1fr; gap: 34px; }
    body.fz .fz-fblock.rev .media { order: 0; }
    body.fz .fz-offer-grid { grid-template-columns: 1fr 1fr; }
    body.fz .fz-stats { grid-template-columns: 1fr 1fr; gap: 34px 20px; }
    body.fz .fz-foot-cols { grid-template-columns: 1fr 1fr; gap: 30px; }
    body.fz .fz-hero-cards { height: 340px; }
    body.fz .fz-fcard.c-left, body.fz .fz-fcard.c-right, body.fz .fz-fcard.c-bottom { display: none; }
}
@media (max-width: 620px) {
    body.fz .fz-offer-grid { grid-template-columns: 1fr; }
    body.fz .fz-hero { padding-top: 46px; }
    body.fz .fz-hero-cards { height: 250px; }
    body.fz .fz-foot { border-radius: 24px 24px 0 0; }
    body.fz .fz-nav-in { height: 64px; }
    body.fz .brand-wordmark .brand-text { font-size: 1.15rem; }
    body.fz .brand-wordmark .brand-mark { width: 26px; height: 26px; }
    body.fz .fz-nav-actions { gap: 8px; }
    body.fz .fz-nav-actions .fz-btn-dark { padding: 9px 15px; font-size: 13px; }
    body.fz .fz-stats { gap: 30px 16px; }
    body.fz .fz-foot-cols { grid-template-columns: 1fr 1fr; }
}
@media (prefers-reduced-motion: reduce) {
    body.fz .fz-rise, body.fz .fz-scale { transition: none; opacity: 1; transform: none; }
    body.fz .fz-float, body.fz .fz-fcard.main.fz-float { animation: none; }
}

/* ---- Shift Reef wordmark (self-contained for body.fz) ---- */
body.fz .brand-wordmark { display: inline-flex; align-items: center; gap: .55rem; text-decoration: none; line-height: 1; }
body.fz .brand-wordmark .brand-mark { position: relative; width: 30px; height: 30px; flex: 0 0 auto; border-radius: 9px; background: linear-gradient(135deg, #F75638 0%, #ff8a5b 100%); box-shadow: 0 6px 14px rgba(247, 86, 56, .35); }
body.fz .brand-wordmark .brand-mark::after { content: ""; position: absolute; left: 7px; right: 7px; top: 50%; height: 3px; transform: translateY(-50%); border-radius: 3px; background: #fff; box-shadow: 0 6px 0 rgba(255, 255, 255, .6), 0 -6px 0 rgba(255, 255, 255, .6); }
body.fz .brand-wordmark .brand-text { font-family: 'Inter', sans-serif; font-weight: 800; font-size: 1.5rem; letter-spacing: -.02em; white-space: nowrap; }
body.fz .brand-wordmark .brand-shift { color: #0C2459; }
body.fz .brand-wordmark .brand-reef { color: #F75638; }

/* ---- testimonials ---- */
.fz-testi-sec { padding: 40px 0 90px; }
.fz-testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.fz-tcard { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; transition: transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s, border-color .35s; }
.fz-tcard:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: transparent; }
.fz-stars { display: flex; gap: 3px; color: var(--coral); margin-bottom: 16px; font-size: 16px; }
.fz-tcard .quote { color: var(--ink-2); font-size: 16px; line-height: 1.65; font-weight: 500; }
.fz-tcard .who { display: flex; align-items: center; gap: 12px; margin-top: 24px; }
.fz-tcard .who .av { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; background: var(--bg-soft); flex: none; display: grid; place-items: center; font-weight: 800; color: var(--coral); }
.fz-tcard .who .n { font-weight: 700; color: var(--ink); font-size: 15px; line-height: 1.2; }
.fz-tcard .who .r { font-size: 13px; color: var(--muted); }
@media (max-width: 980px) { body.fz .fz-testi-grid { grid-template-columns: 1fr; } }

/* ================= Catalyze-style motion polish ================= */
/* rotating dashed rings behind hero floating cards */
.fz-ring { position: absolute; z-index: 1; border: 2px dashed rgba(247, 86, 56, .35); border-radius: 50%; pointer-events: none; animation: fzSpin 26s linear infinite; }
.fz-hero-cards .fz-ring.r1 { width: 250px; height: 250px; left: 5%; top: 70px; }
.fz-hero-cards .fz-ring.r2 { width: 170px; height: 170px; right: 9%; bottom: 20px; border-color: rgba(12, 36, 89, .18); animation-duration: 34s; animation-direction: reverse; }
@keyframes fzSpin { to { transform: rotate(360deg); } }

/* image zoom on hover (feature frames + dark showcase) */
.fz-fblock .frame { overflow: hidden; }
.fz-fblock .frame img, .fz-dark .fz-fcard.main img { transition: transform .7s cubic-bezier(.22, 1, .36, 1); }
.fz-fblock .media:hover .frame img { transform: scale(1.06); }

/* directional + blur reveals */
.fz-left { opacity: 0; transform: translateX(-46px); transition: opacity .85s cubic-bezier(.22, 1, .36, 1), transform .85s cubic-bezier(.22, 1, .36, 1); }
.fz-right { opacity: 0; transform: translateX(46px); transition: opacity .85s cubic-bezier(.22, 1, .36, 1), transform .85s cubic-bezier(.22, 1, .36, 1); }
.fz-blur { opacity: 0; filter: blur(12px); transform: translateY(22px); transition: opacity .9s ease, filter .9s ease, transform .9s cubic-bezier(.22, 1, .36, 1); }
.fz-left.in, .fz-right.in, .fz-blur.in { opacity: 1; transform: none; filter: none; }

/* nav link dot on hover */
.fz-nav-links a::before { content: ''; position: absolute; left: -12px; top: 50%; width: 5px; height: 5px; border-radius: 50%; background: var(--coral); transform: translateY(-50%) scale(0); transition: transform .3s cubic-bezier(.34, 1.56, .64, 1); }
.fz-nav-links a:hover::before { transform: translateY(-50%) scale(1); }

/* card top-line grow on hover (offer + testimonial) */
.fz-ocard::after, .fz-tcard::after { content: ''; position: absolute; left: 24px; right: 24px; top: 0; height: 3px; border-radius: 0 0 4px 4px; background: var(--coral); transform: scaleX(0); transform-origin: left; transition: transform .45s cubic-bezier(.22, 1, .36, 1); }
.fz-ocard:hover::after, .fz-tcard:hover::after { transform: scaleX(1); }

/* pricing card: coral accent line on hover */
.fz-pcard { position: relative; overflow: hidden; }
.fz-pcard::after { content: ''; position: absolute; left: 0; right: 0; top: 0; height: 3px; background: var(--coral); transform: scaleX(0); transform-origin: left; transition: transform .45s cubic-bezier(.22, 1, .36, 1); }
.fz-pcard:hover::after, .fz-pcard.pop::after { transform: scaleX(1); }

@media (prefers-reduced-motion: reduce) {
    body.fz .fz-ring { animation: none; }
    body.fz .fz-left, body.fz .fz-right, body.fz .fz-blur { transition: none; opacity: 1; transform: none; filter: none; }
}

/* ================= scroll progress + custom cursor + animated glows ================= */
/* scroll progress bar */
.fz-progress {
    position: fixed; top: 0; left: 0; right: 0; height: 3px;
    transform: scaleX(0); transform-origin: 0 50%; will-change: transform;
    background: linear-gradient(90deg, var(--coral), var(--coral-2)); z-index: 200;
    box-shadow: 0 0 12px rgba(247, 86, 56, .5);
}

/* custom cursor */
.fz-cursor-dot, .fz-cursor-ring { position: fixed; top: 0; left: 0; pointer-events: none; border-radius: 50%; transform: translate(-50%, -50%); }
.fz-cursor-dot { width: 7px; height: 7px; background: var(--coral); z-index: 9999; }
.fz-cursor-ring { width: 34px; height: 34px; border: 1.5px solid rgba(247, 86, 56, .55); z-index: 9998; transition: width .28s ease, height .28s ease, background .28s ease, border-color .28s ease, opacity .3s ease; }
.fz-cursor-ring.hover { width: 58px; height: 58px; background: rgba(247, 86, 56, .08); border-color: var(--coral); }
body.fz.has-cursor, body.fz.has-cursor a, body.fz.has-cursor button, body.fz.has-cursor .fz-btn, body.fz.has-cursor .fz-faq-q, body.fz.has-cursor .fz-switch, body.fz.has-cursor .fz-burger { cursor: none; }
body.fz.has-cursor input, body.fz.has-cursor textarea { cursor: text; }
@media (hover: none), (pointer: coarse) { .fz-cursor-dot, .fz-cursor-ring { display: none !important; } }

/* animated gradient glows */
@keyframes fzGlowA { 0%, 100% { opacity: .6; filter: blur(72px) hue-rotate(0deg); } 50% { opacity: .95; filter: blur(98px) hue-rotate(20deg); } }
@keyframes fzGlowB { 0%, 100% { opacity: .5; filter: blur(82px) hue-rotate(0deg); } 50% { opacity: .88; filter: blur(68px) hue-rotate(-16deg); } }
body.fz .fz-glow { animation: fzGlowA 9s ease-in-out infinite; }
body.fz .fz-hero .fz-glow.g2, body.fz .fz-dark .fz-glow.b, body.fz .fz-price-sec .fz-glow { animation: fzGlowB 11s ease-in-out infinite; }

@media (prefers-reduced-motion: reduce) {
    body.fz .fz-glow { animation: none; }
    body.fz .fz-progress { display: none; }
}
