/* WingZ "platform" feature section.
     1) White-label client dashboard — a large, centred editor on a dark stage,
        with the heading/text on top (left-aligned to the dashboard's left edge).
        Same ratios & visual language as the hero demo. The preview shows the
        real hortivia.wingzsite.com hero. (`wzd-` classes)
     2) AI tools — split row, copy left / animated dashboard right. (unchanged)
   Brand orange #F96029. */

.wzf {
  --accent: #F96029;
  --fg: #1A1C21;
  --bg: #ffffff;
  --surface: #F7F7F8;
  --surface2: #F1F2F4;
  --border: #E6E7EA;
  --border2: #D8DADF;
  --muted: rgba(26, 28, 33, 0.56);
  --muted2: rgba(26, 28, 33, 0.40);
  --line: rgba(26, 28, 33, 0.08);
  --ok: #1aa86b;
  --font: "Inter Display", "Inter", ui-sans-serif, system-ui, -apple-system, sans-serif;
  --mono: "Geist Mono", ui-monospace, "SF Mono", Menlo, monospace;
  --serif: "Instrument Serif", "Times New Roman", Georgia, serif;

  position: relative;
  width: 100vw;
  max-width: 100%;
  align-self: stretch;
  box-sizing: border-box;
  background: #0a0a0b; /* matches the showcase above — one continuous dark canvas, no seam */
  overflow: hidden;
}
.wzf * { box-sizing: border-box; }

/* ---- row scaffold (both rows are dark, stacked, full-bleed — no seam line) ---- */
.wzf-row { position: relative; width: 100%; }

.wzf-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 22px;
}
.wzf-kicker .n {
  display: inline-grid; place-items: center;
  width: 24px; height: 24px;
  border: 1px solid rgba(249, 96, 41, 0.4);
  border-radius: 7px; color: var(--accent);
}
.wzf-h {
  margin: 0;
  font-family: var(--font);
  font-weight: 700;
  font-size: clamp(30px, 3.2vw, 52px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: #fff;
  /* balance the two lines so a short last word never dangles on its own line */
  text-wrap: balance;
}
.wzf-h .o { color: var(--accent); }
.wzf-p {
  margin: 22px 0 0;
  max-width: 46ch;
  font-family: var(--font);
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.56);
}
.wzf-fit { position: relative; width: 100%; aspect-ratio: 880 / 476; z-index: 1; }
.wzf-stage { position: absolute; top: 0; left: 0; transform-origin: top left; will-change: transform; }

.wzf-win {
  position: relative;
  width: 100%;
  background: var(--bg);
  border: 1px solid rgba(20, 18, 16, 0.10);
  border-radius: 16px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.6) inset,
    0 50px 100px -34px rgba(28, 22, 16, 0.5),
    0 18px 44px -20px rgba(28, 22, 16, 0.34);
  overflow: hidden;
  font-family: var(--font);
  color: var(--fg);
  -webkit-font-smoothing: antialiased;
}

/* fake cursor */
.wzf-cursor {
  position: absolute; top: 0; left: 0;
  width: 24px; height: 24px; z-index: 80; pointer-events: none;
  opacity: 0; transform: translate(80px, 80px);
  transition: transform 0.62s cubic-bezier(0.4, 0.1, 0.2, 1), opacity 0.25s ease;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.4));
}
.wzf-cursor.show { opacity: 1; }

/* =================================================================== *
 *  FEATURE 1 — white-label dashboard
 *  Dark stacked section: heading on top (left-aligned to the dashboard's
 *  left edge) + a large, centred editor showing the real Hortivia hero.
 * =================================================================== */
.wzf-row[data-feat="dashboard"] {
  display: block;
  min-height: 0;
  /* 2nd feature now: small top (tight to the AI row above), generous bottom */
  padding: clamp(20px, 3vh, 48px) clamp(24px, 5vw, 80px) clamp(72px, 10vh, 120px);
  background: #0a0a0b; /* flat dark, no orange gradient — no seam against the AI row */
}
.wzf-wrap { width: 100%; max-width: 1180px; margin: 0 auto; }

/* heading block on top, left-aligned */
.wzf-head { max-width: 700px; margin-bottom: clamp(34px, 4.6vh, 58px); }

/* the dashboard itself */
.wzf-dash { position: relative; }
.wzf-row[data-feat="dashboard"] .wzf-fit { aspect-ratio: 1200 / 678; width: 100%; }

/* value props under the dashboard */
.wzf-props {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 44px); margin-top: clamp(30px, 4vh, 48px);
}
.wzf-prop { display: flex; gap: 12px; }
.wzf-prop .ic {
  flex: 0 0 30px; width: 30px; height: 30px; margin-top: 1px;
  display: grid; place-items: center; border-radius: 9px;
  background: rgba(249, 96, 41, 0.13); color: var(--accent);
}
.wzf-prop .ic svg { width: 15px; height: 15px; }
.wzf-prop .tx { font-size: 13.5px; line-height: 1.5; color: rgba(255, 255, 255, 0.56); }
.wzf-prop .tx b { color: #fff; font-weight: 600; }

/* ---------- the editor window (light card, hero-demo ratios) ---------- */
.wzf-win.wzd { display: flex; }

/* white-label nav column (agency-branded) */
.wzd-navcol { flex: 0 0 290px; width: 290px; display: flex; flex-direction: column; background: #fff; border-right: 1px solid var(--border); }
.wzd-brand { display: flex; align-items: center; gap: 11px; height: 58px; flex: 0 0 58px; padding: 0 16px; border-bottom: 1px solid var(--border); }
.wzd-mark { width: 30px; height: 30px; flex: 0 0 30px; border-radius: 9px; display: grid; place-items: center; color: #fff; background: linear-gradient(140deg, #17181d, #3a3e47); }
.wzd-mark svg { width: 16px; height: 16px; }
.wzd-brandmeta { display: flex; flex-direction: column; gap: 1px; line-height: 1.12; min-width: 0; }
.wzd-brandmeta .nm { font-family: var(--serif); font-size: 18px; letter-spacing: 0.2px; color: var(--fg); }
.wzd-brandmeta .tg { font-family: var(--mono); font-size: 9px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted2); }

.wzd-navwrap { flex: 1; min-height: 0; padding: 12px; display: flex; flex-direction: column; gap: 2px; overflow: hidden; }
.wzd-navgrp { font-family: var(--mono); font-size: 9px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted2); padding: 11px 10px 5px; }
.wzd-navgrp:first-child { padding-top: 2px; }
.wzd-nav { display: flex; align-items: center; gap: 11px; height: 36px; padding: 0 11px; border-radius: 9px; font-size: 13px; font-weight: 500; color: var(--muted); }
.wzd-nav .ni { width: 17px; height: 17px; flex: 0 0 17px; color: var(--muted2); display: grid; place-items: center; }
.wzd-nav .ni svg { width: 17px; height: 17px; }
.wzd-nav .nl { flex: 1; min-width: 0; }
.wzd-nav.on { background: var(--surface2); color: var(--fg); }
.wzd-nav.on .ni { color: var(--accent); }
.wzd-nav.lock { color: var(--muted2); }
.wzd-nav .nlk { width: 13px; height: 13px; color: var(--muted2); }
.wzd-nav .nlk svg { width: 13px; height: 13px; }
.wzd-nav .ndot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }

.wzd-navfoot { display: flex; align-items: center; gap: 9px; height: 54px; flex: 0 0 54px; padding: 0 14px; border-top: 1px solid var(--border); }
.wzd-navfoot .av { width: 26px; height: 26px; flex: 0 0 26px; border-radius: 50%; display: grid; place-items: center; background: var(--surface2); color: var(--fg); font-size: 12px; font-weight: 600; }
.wzd-navfoot .fm { flex: 1; min-width: 0; display: flex; flex-direction: column; line-height: 1.18; }
.wzd-navfoot .fm .a { font-size: 11.5px; font-weight: 600; color: var(--fg); }
.wzd-navfoot .fm .b { font-size: 10px; color: var(--muted2); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.wzd-navfoot .out { width: 16px; height: 16px; color: var(--muted2); }
.wzd-navfoot .out svg { width: 16px; height: 16px; }

/* main editor column */
.wzd-main { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.wzd-top { display: flex; align-items: center; gap: 14px; height: 58px; flex: 0 0 58px; padding: 0 16px; background: #fff; border-bottom: 1px solid var(--border); }
.wzd-top-l { display: flex; align-items: center; min-width: 0; }
.wzd-sitemeta { display: flex; flex-direction: column; gap: 1px; line-height: 1.12; }
.wzd-sitemeta .nm { font-size: 13.5px; font-weight: 600; letter-spacing: -0.01em; color: var(--fg); }
.wzd-sitemeta .st { font-size: 10.5px; color: var(--muted2); display: flex; align-items: center; gap: 5px; }
.wzd-sitemeta .st i { width: 6px; height: 6px; border-radius: 50%; background: var(--ok); display: inline-block; }
.wzd-seg { margin: 0 auto; display: inline-flex; gap: 2px; background: var(--surface2); padding: 3px; border-radius: 9px; }
.wzd-seg span { font-size: 12.5px; font-weight: 500; color: var(--muted); padding: 5px 14px; border-radius: 6px; }
.wzd-seg span.on { background: #fff; color: var(--fg); box-shadow: 0 1px 2px rgba(16, 24, 40, 0.1); }
.wzd-top-r { display: flex; align-items: center; gap: 8px; }
.wzd-edit { display: inline-flex; align-items: center; gap: 6px; height: 32px; padding: 0 12px; border: 1px solid var(--border); border-radius: 9px; background: #fff; font-size: 12px; font-weight: 600; color: var(--muted); transition: background 0.25s, color 0.25s, border-color 0.25s; }
.wzd-edit svg { width: 13px; height: 13px; }
.wzd-edit.on { background: var(--accent); border-color: var(--accent); color: #fff; }
.wzd-req { display: inline-flex; align-items: center; gap: 6px; height: 32px; padding: 0 12px; border: 1px solid var(--border); border-radius: 9px; background: #fff; font-size: 12px; font-weight: 500; color: var(--muted); transition: border-color 0.2s, box-shadow 0.2s, color 0.2s; }
.wzd-req svg { width: 13px; height: 13px; }
.wzd-req.hot { border-color: var(--accent); color: var(--accent); box-shadow: 0 0 0 3px rgba(249, 96, 41, 0.12); }
.wzd-pub { display: inline-flex; align-items: center; gap: 6px; height: 32px; padding: 0 14px; border-radius: 9px; background: var(--fg); color: #fff; font-size: 12px; font-weight: 600; }
.wzd-pub svg { width: 13px; height: 13px; }

.wzd-tool { display: flex; align-items: center; gap: 12px; height: 46px; flex: 0 0 46px; padding: 0 16px; background: #fff; border-bottom: 1px solid var(--border); }
.wzd-hint { font-size: 11.5px; color: var(--muted2); opacity: 0; transition: opacity 0.3s; white-space: nowrap; }
.wzd-hint.show { opacity: 1; }
.wzd-hint b { color: var(--accent); font-weight: 600; }
.wzd-url { margin: 0 auto; display: inline-flex; align-items: center; gap: 7px; height: 30px; padding: 0 12px; max-width: 360px; border: 1px solid var(--border); border-radius: 8px; background: var(--surface); font-family: var(--mono); font-size: 11px; color: var(--muted); }
.wzd-url svg { width: 12px; height: 12px; }
.wzd-vp { display: inline-flex; align-items: center; gap: 2px; border: 1px solid var(--border); border-radius: 8px; padding: 3px; }
.wzd-vp span { width: 26px; height: 23px; display: grid; place-items: center; color: var(--muted2); border-radius: 6px; }
.wzd-vp span svg { width: 14px; height: 14px; }
.wzd-vp span.on { background: var(--surface2); color: var(--fg); }

.wzd-canvas { height: 572px; padding: 12px; background: var(--surface); }
.wzd-frame { position: relative; height: 100%; border: 1px solid var(--border2); border-radius: 10px; overflow: hidden; background: #0e0f12; box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05); }

/* ---- the client's site preview: real Hortivia editorial hero ---- */
.wzd-site { position: absolute; inset: 0; overflow: hidden; color: #fff; }
.wzd-site-bg { position: absolute; inset: 0; background: url("/alestine-default.jpg") center 40% / cover no-repeat; transform: scale(1.02); }
.wzd-site-scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8, 9, 12, 0.34) 0%, rgba(8, 9, 12, 0.16) 36%, rgba(8, 9, 12, 0.55) 72%, rgba(8, 9, 12, 0.82) 100%); }
.wzd-site-inner { position: absolute; inset: 0; display: flex; flex-direction: column; padding: 22px 40px 42px; }
.wzd-snav { display: flex; align-items: center; justify-content: space-between; }
.wzd-slogo { font-family: var(--serif); font-size: 23px; letter-spacing: 0.3px; }
.wzd-slogo sup { font-size: 9px; vertical-align: super; opacity: 0.7; margin-left: 1px; }
.wzd-slinks { display: flex; align-items: center; gap: 26px; font-size: 13px; color: rgba(255, 255, 255, 0.8); }
.wzd-scontact { font-size: 12.5px; padding: 8px 17px; border-radius: 999px; background: #fff; color: #14161b; font-weight: 500; }
.wzd-shero { margin-top: auto; max-width: 640px; }
.wzd-seyebrow { display: inline-block; font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255, 255, 255, 0.74); margin-bottom: 30px; }
.wzd-shead { margin: 0; font-family: var(--serif); font-weight: 400; font-size: 46px; line-height: 1.04; letter-spacing: -0.005em; color: #fff; }
.wzd-ssub { margin: 17px 0 0; max-width: 450px; font-size: 14.5px; line-height: 1.5; color: rgba(255, 255, 255, 0.8); }
.wzd-scta { margin-top: 24px; display: inline-flex; align-items: center; gap: 8px; background: #fff; color: #14161b; font-size: 13px; font-weight: 500; padding: 11px 20px; border-radius: 999px; }

/* editable affordance once Edit is on */
.wzd[data-edit] .wzd-shead { cursor: text; border-radius: 5px; box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.22); }
.wzd[data-edit] .wzd-shead { outline: 1px dashed rgba(255, 255, 255, 0.3); outline-offset: 7px; }

/* selection ring */
.wzd-ring { position: absolute; border: 2px solid var(--accent); border-radius: 7px; box-shadow: 0 0 0 4px rgba(249, 96, 41, 0.18); opacity: 0; transition: opacity 0.25s, left 0.35s, top 0.35s, width 0.35s, height 0.35s; pointer-events: none; z-index: 30; }
.wzd-ring.show { opacity: 1; }
.wzd-ring .lab { position: absolute; top: -24px; left: -2px; background: var(--accent); color: #fff; font-size: 10.5px; font-weight: 600; padding: 3px 8px; border-radius: 7px 7px 7px 0; display: inline-flex; align-items: center; gap: 5px; white-space: nowrap; }
.wzd-ring .lab svg { width: 11px; height: 11px; }

/* saved toast */
.wzd-toast { position: absolute; right: 18px; bottom: 18px; z-index: 60; display: inline-flex; align-items: center; gap: 9px; background: var(--fg); color: #fff; font-size: 12.5px; font-weight: 500; padding: 10px 15px; border-radius: 11px; box-shadow: 0 18px 40px -14px rgba(0, 0, 0, 0.6); opacity: 0; transform: translateY(10px); transition: opacity 0.3s, transform 0.3s; }
.wzd-toast .dot { width: 18px; height: 18px; display: grid; place-items: center; border-radius: 50%; background: var(--ok); }
.wzd-toast .dot svg { width: 11px; height: 11px; }
.wzd-toast.show { opacity: 1; transform: none; }

/* ---- share-with-client overlay (agency action) ---- */
.wzd-backdrop { position: absolute; inset: 0; z-index: 65; background: rgba(12, 11, 9, 0.46); -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px); opacity: 0; transition: opacity 0.3s; pointer-events: none; border-radius: 18px; }
.wzd-backdrop.show { opacity: 1; }
.wzd-share {
  position: absolute; z-index: 70; top: 50%; left: 50%; width: 600px; max-width: calc(100% - 48px);
  transform: translate(-50%, -46%) scale(0.97); opacity: 0;
  transition: opacity 0.3s ease, transform 0.34s cubic-bezier(0.2, 0.8, 0.3, 1); pointer-events: none;
  background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 20px;
  box-shadow: 0 40px 90px -28px rgba(20, 16, 12, 0.55);
}
.wzd-share.show { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.wzd-share-h { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 17px; }
.wzd-share-h .ic { width: 34px; height: 34px; flex: 0 0 34px; border-radius: 10px; background: rgba(249, 96, 41, 0.12); color: var(--accent); display: grid; place-items: center; }
.wzd-share-h .ic svg { width: 18px; height: 18px; }
.wzd-share-h .t { font-size: 15px; font-weight: 700; letter-spacing: -0.01em; }
.wzd-share-h .s { font-size: 12px; color: var(--muted); margin-top: 3px; line-height: 1.45; }
.wzd-share-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.wzd-share-lbl { font-size: 10.5px; font-weight: 500; color: var(--muted2); margin-bottom: 5px; }
.wzd-share-inp { display: flex; align-items: center; height: 36px; padding: 0 11px; border: 1px solid var(--border); border-radius: 9px; font-size: 12.5px; color: var(--fg); }
.wzd-share-inp.brand { gap: 8px; }
.wzd-share-inp.brand .mk { width: 19px; height: 19px; border-radius: 5px; background: linear-gradient(140deg, #17181d, #3a3e47); display: grid; place-items: center; color: #fff; }
.wzd-share-inp.brand .mk svg { width: 11px; height: 11px; }
.wzd-share-emailrow { display: flex; gap: 8px; }
.wzd-share-emailrow .wzd-share-inp { flex: 1; }
.wzd-share-invite { display: inline-flex; align-items: center; height: 36px; padding: 0 16px; border-radius: 9px; background: var(--fg); color: #fff; font-size: 12.5px; font-weight: 600; transition: background 0.2s; }
.wzd-share-invite.go { background: var(--accent); }
.wzd-share-notice { margin-top: 9px; font-size: 11px; color: #157a4e; display: flex; align-items: center; gap: 5px; opacity: 0; transition: opacity 0.3s; }
.wzd-share-notice svg { width: 12px; height: 12px; }
.wzd-share-notice.show { opacity: 1; }
.wzd-share-permh { font-size: 10.5px; font-weight: 500; color: var(--muted2); margin-bottom: 8px; }

/* permission rows (reused inside the share overlay) */
.wzf-perm { display: flex; align-items: center; justify-content: space-between; gap: 8px; border: 1px solid var(--border); border-radius: 9px; padding: 6px 10px; margin-bottom: 6px; }
.wzf-perm .pl { min-width: 0; }
.wzf-perm .pl .a { font-size: 11.5px; font-weight: 500; color: var(--fg); line-height: 1.2; }
.wzf-perm .pl .b { font-size: 10px; color: var(--muted2); line-height: 1.2; }
.wzf-sw { position: relative; width: 32px; height: 18px; flex: 0 0 32px; border-radius: 999px; background: var(--border); border: 1px solid var(--border); transition: background 0.25s; }
.wzf-sw::after { content: ""; position: absolute; top: 1.5px; left: 2px; width: 13px; height: 13px; border-radius: 50%; background: #fff; box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2); transition: transform 0.25s cubic-bezier(0.3, 0.9, 0.3, 1); }
.wzf-sw.on { background: var(--accent); }
.wzf-sw.on::after { transform: translateX(14px); }

/* ---- request-an-edit popover (client → agency) ---- */
.wzd-reqpop {
  position: absolute; z-index: 72; top: 64px; right: 18px; width: 300px;
  background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 14px;
  box-shadow: 0 26px 60px -18px rgba(20, 16, 12, 0.45);
  opacity: 0; transform: translateY(-8px); transition: opacity 0.28s, transform 0.28s; pointer-events: none;
}
.wzd-reqpop.show { opacity: 1; transform: none; }
.wzd-reqpop .rh { display: flex; align-items: center; gap: 9px; font-size: 13px; font-weight: 700; color: var(--fg); }
.wzd-reqpop .rh .ri { width: 26px; height: 26px; border-radius: 8px; background: rgba(249, 96, 41, 0.12); color: var(--accent); display: grid; place-items: center; }
.wzd-reqpop .rh .ri svg { width: 14px; height: 14px; }
.wzd-reqpop .rmsg { margin-top: 10px; border: 1px solid var(--border); border-radius: 9px; background: var(--surface); padding: 9px 11px; font-size: 12px; color: var(--fg); line-height: 1.45; min-height: 52px; }
.wzd-reqpop .rmsg .ph { color: var(--muted2); }
.wzd-reqpop .rmsg .car { display: inline-block; width: 1.5px; height: 13px; background: var(--accent); vertical-align: -2px; animation: wzf-blink 1s step-end infinite; }
.wzd-reqpop .rsend { margin-top: 10px; display: flex; align-items: center; gap: 8px; }
.wzd-reqpop .rsend .btn { display: inline-flex; align-items: center; gap: 6px; height: 32px; padding: 0 13px; border-radius: 8px; background: var(--fg); color: #fff; font-size: 12px; font-weight: 600; }
.wzd-reqpop .rsend .btn svg { width: 13px; height: 13px; }
.wzd-reqpop .rsend .to { font-size: 11px; color: var(--muted2); }
.wzd-reqpop .rdone { display: none; align-items: center; gap: 8px; margin-top: 4px; font-size: 12px; color: #157a4e; font-weight: 500; }
.wzd-reqpop .rdone svg { width: 15px; height: 15px; }
.wzd-reqpop.sent .rsend, .wzd-reqpop.sent .rmsg { display: none; }
.wzd-reqpop.sent .rdone { display: flex; }

/* =================================================================== *
 *  FEATURE 2 — feature bento
 *  A connected grid: no gaps, 1px hairline dividers, sharp corners (the
 *  Framer pattern). Each cell carries ONE clean animated/interactive
 *  illustration, a quiet index, the title in the TOP-RIGHT, and a short
 *  description — no links, nothing to click through to.
 * =================================================================== */
.wzf-row[data-feat="ai"] {
  position: relative;
  /* 1st feature now: big top so it clears the showcase above, moderate bottom */
  padding: clamp(64px, 9vh, 120px) clamp(24px, 5vw, 80px) clamp(58px, 8vh, 104px);
  background: #0a0a0b; /* matches the showcase above — no seam */
}

/* the connected grid: a 1px gap reveals the container's line-coloured
   background as hairline dividers; an outer hairline closes the rectangle.
   Sharp corners throughout, no gaps between cells. */
.wzf-bento {
  --line: rgba(255, 255, 255, 0.10);
  --cell: #0b0b0e;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 0;
  overflow: hidden;
}

.wzf-bx {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 408px;
  background: var(--cell);
  border-radius: 0;
  overflow: hidden;
  isolation: isolate;
  transition: background 0.45s ease;
}
/* a soft orange wash blooms from the cursor on hover */
.wzf-bx::before {
  content: "";
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(460px circle at var(--mx, 50%) var(--my, 0%), rgba(249, 96, 41, 0.10), transparent 62%);
  opacity: 0; transition: opacity 0.5s ease;
}
.wzf-bx:hover { background: #0d0d12; }
.wzf-bx:hover::before { opacity: 1; }

/* top: a quiet mono index on the left, the title on the RIGHT */
.wzf-bx-top {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 20px 22px 0;
}
.wzf-bx-idx {
  font-family: var(--mono); font-size: 10.5px; font-weight: 500;
  letter-spacing: 0.2em; color: rgba(255, 255, 255, 0.3);
}
.wzf-bx-title {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font); font-size: 15px; font-weight: 600;
  letter-spacing: -0.01em; color: #fff; text-align: right;
}
.wzf-bx-title::before {
  content: ""; flex: 0 0 6px; width: 6px; height: 6px; border-radius: 1px;
  background: var(--accent); box-shadow: 0 0 10px rgba(249, 96, 41, 0.85);
}

/* the illustration fills the middle; the inner wrapper carries the subtle
   pointer-parallax so the product-UI mockup drifts with the cursor */
.wzf-bx-viz {
  position: relative; z-index: 1; flex: 1; min-height: 0;
  display: flex; padding: 18px 22px 4px; overflow: hidden;
}
.wzf-vin {
  flex: 1; min-width: 0; min-height: 0; display: flex; flex-direction: column;
  transform: translate(calc(var(--px, 0) * 6px), calc(var(--py, 0) * 6px));
  transition: transform 0.55s cubic-bezier(0.2, 0.7, 0.3, 1);
}

/* short description, bottom-left */
.wzf-bx-desc {
  position: relative; z-index: 2; margin: 0;
  padding: 4px 22px 22px; max-width: 42ch;
  font-family: var(--font); font-size: 13.5px; line-height: 1.5;
  color: rgba(255, 255, 255, 0.5);
}
.wzf-bx-desc b { color: rgba(255, 255, 255, 0.9); font-weight: 600; }

/* shared mini-rise */
.wzf-rise { animation: wzf-rise 0.5s cubic-bezier(0.2, 0.7, 0.3, 1) both; }

/* ---- Get found — answer-engine readiness gauge ---- */
.wzf-gf { flex: 1; display: flex; flex-direction: column; }
.wzf-gf-head { display: flex; align-items: center; gap: 9px; font-size: 12px; font-weight: 500; color: rgba(255, 255, 255, 0.72); }
.wzf-gf-head .ic, .wzf-list2-h .ic { width: 26px; height: 26px; flex: 0 0 26px; border-radius: 8px; display: grid; place-items: center; background: rgba(249, 96, 41, 0.14); color: var(--accent); }
.wzf-gf-head .ic svg, .wzf-list2-h .ic svg { width: 15px; height: 15px; }
.wzf-gf-head .st { margin-left: auto; font-family: var(--mono); font-size: 10px; letter-spacing: 0.04em; text-transform: uppercase; color: rgba(255, 255, 255, 0.4); border: 1px solid rgba(255, 255, 255, 0.12); border-radius: 999px; padding: 3px 9px; transition: color 0.3s, border-color 0.3s; }
.wzf-gf-head .st.run { color: var(--accent); border-color: rgba(249, 96, 41, 0.45); }
.wzf-gf-head .st.ok { color: #34d399; border-color: rgba(52, 211, 153, 0.4); }
.wzf-gf-main { flex: 1; display: flex; flex-direction: column; justify-content: center; gap: 18px; }
.wzf-gf-body { display: flex; align-items: center; gap: 28px; }
.wzf-gauge { position: relative; width: 132px; height: 132px; flex: 0 0 132px; }
.wzf-gauge svg { width: 132px; height: 132px; transform: rotate(-90deg); }
.wzf-gauge .trk { fill: none; stroke: rgba(255, 255, 255, 0.08); stroke-width: 9; }
.wzf-gauge .val { fill: none; stroke: var(--accent); stroke-width: 9; stroke-linecap: round; stroke-dasharray: 326.726; stroke-dashoffset: 326.726; transition: stroke-dashoffset 1.2s cubic-bezier(0.3, 0.9, 0.3, 1); filter: drop-shadow(0 0 5px rgba(249, 96, 41, 0.55)); }
.wzf-gauge-c { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.wzf-gauge-c .n { font-size: 30px; font-weight: 700; letter-spacing: -0.02em; color: #fff; }
.wzf-gauge-c .n span { font-size: 15px; color: rgba(255, 255, 255, 0.45); margin-left: 1px; }
.wzf-gauge-c .l { font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255, 255, 255, 0.4); margin-top: 2px; }
.wzf-gf-side { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 9px; }
.wzf-gf-cite { display: inline-flex; align-items: center; gap: 8px; align-self: flex-start; font-size: 12.5px; font-weight: 500; color: rgba(255, 255, 255, 0.55); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 999px; padding: 6px 12px; transition: color 0.3s, border-color 0.3s; }
.wzf-gf-cite .dot { width: 7px; height: 7px; border-radius: 50%; background: rgba(255, 255, 255, 0.3); transition: background 0.3s, box-shadow 0.3s; }
.wzf-gf-cite.ok { color: #fff; border-color: rgba(52, 211, 153, 0.35); }
.wzf-gf-cite.ok .dot { background: #34d399; box-shadow: 0 0 8px rgba(52, 211, 153, 0.7); }
.wzf-gf-engs { display: flex; flex-wrap: wrap; gap: 7px; }
.wzf-eng { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 500; color: rgba(255, 255, 255, 0.82); background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 999px; padding: 4px 10px; }
.wzf-eng .gd { width: 6px; height: 6px; border-radius: 50%; background: #34d399; box-shadow: 0 0 6px rgba(52, 211, 153, 0.6); }
/* reserve the height of the two action rows up front so the box does not grow
   (and shove the page) when they animate in */
.wzf-gf-acts { display: flex; flex-direction: column; gap: 8px; min-height: 80px; }
.wzf-gf-act { display: flex; align-items: center; gap: 10px; font-size: 12px; color: rgba(255, 255, 255, 0.82); background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 10px; padding: 9px 12px; }
.wzf-gf-act .tg { flex: 0 0 auto; font-size: 9px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: rgba(255, 255, 255, 0.6); background: rgba(255, 255, 255, 0.07); border-radius: 5px; padding: 3px 7px; }
.wzf-gf-act .ax { flex: 1; min-width: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.wzf-gf-act .pr { flex: 0 0 auto; font-size: 9px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--accent); background: rgba(249, 96, 41, 0.12); border-radius: 5px; padding: 3px 8px; }
.wzf-gf-act .pr.ok { color: #34d399; background: rgba(52, 211, 153, 0.12); }

/* ---- AI receptionist — chat ---- */
.wzf-chat { flex: 1; display: flex; flex-direction: column; gap: 9px; overflow: hidden; }
.wzf-chat-row { display: flex; }
.wzf-chat-row.v { justify-content: flex-end; }
.wzf-bub { max-width: 84%; font-size: 12.5px; line-height: 1.45; padding: 9px 13px; border-radius: 14px; }
.wzf-chat-row.v .wzf-bub { background: rgba(255, 255, 255, 0.07); color: rgba(255, 255, 255, 0.9); border-bottom-right-radius: 5px; }
.wzf-chat-row.a .wzf-bub { background: var(--accent); color: #fff; border-bottom-left-radius: 5px; }
.wzf-typing { display: inline-flex; gap: 4px; align-items: center; }
.wzf-typing i { width: 6px; height: 6px; border-radius: 50%; background: rgba(255, 255, 255, 0.85); animation: wzf-typ 1s infinite; }
.wzf-typing i:nth-child(2) { animation-delay: 0.15s; }
.wzf-typing i:nth-child(3) { animation-delay: 0.3s; }
.wzf-lead { margin-top: 10px; display: flex; align-items: center; gap: 10px; background: rgba(52, 211, 153, 0.1); border: 1px solid rgba(52, 211, 153, 0.28); border-radius: 11px; padding: 10px 13px; font-size: 12px; color: #5ee7b0; font-weight: 500; opacity: 0; transform: translateY(9px); transition: opacity 0.35s, transform 0.35s; }
.wzf-lead.show { opacity: 1; transform: none; }
.wzf-lead .lk { width: 19px; height: 19px; border-radius: 50%; background: #34d399; color: #08210f; display: grid; place-items: center; flex: 0 0 19px; }
.wzf-lead .lk svg { width: 11px; height: 11px; }

/* ---- partners / grants — list ---- */
.wzf-list2 { flex: 1; display: flex; flex-direction: column; }
.wzf-list2-h { display: flex; align-items: center; gap: 9px; font-size: 12px; font-weight: 500; color: rgba(255, 255, 255, 0.72); margin-bottom: 13px; }
.wzf-list2-h .st { margin-left: auto; font-family: var(--mono); font-size: 10px; letter-spacing: 0.04em; text-transform: uppercase; color: rgba(255, 255, 255, 0.4); }
.wzf-list2-b { display: flex; flex-direction: column; gap: 9px; }
.wzf-rowcard { display: flex; align-items: center; gap: 12px; background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 12px; padding: 11px 13px; }
.wzf-rowcard .ci { width: 34px; height: 34px; flex: 0 0 34px; border-radius: 9px; display: grid; place-items: center; font-size: 13px; font-weight: 700; color: #fff; }
.wzf-rowcard .ci.neutral { background: rgba(255, 255, 255, 0.08); color: rgba(255, 255, 255, 0.85); }
.wzf-rowcard .ci svg { width: 16px; height: 16px; }
.wzf-rowcard .ct { flex: 1; min-width: 0; }
.wzf-rowcard .ct .a { font-size: 13px; font-weight: 600; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.wzf-rowcard .ct .b { font-size: 11px; color: rgba(255, 255, 255, 0.45); margin-top: 2px; }
.wzf-rowcard .amt { font-size: 14px; font-weight: 700; color: #34d399; white-space: nowrap; }
.wzf-rowcard .amt.news { color: var(--accent); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; }
.wzf-rowcard .match { display: flex; flex-direction: column; align-items: flex-end; }
.wzf-rowcard .match .pct { font-size: 14px; font-weight: 700; color: var(--accent); }
.wzf-rowcard .match .ml { font-size: 9px; color: rgba(255, 255, 255, 0.4); text-transform: uppercase; letter-spacing: 0.04em; }

/* =================================================================== *
 *  keyframes
 * =================================================================== */
@keyframes wzf-blink { 50% { opacity: 0; } }
@keyframes wzf-spin { to { transform: rotate(360deg); } }
@keyframes wzf-rise { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
@keyframes wzf-typ { 0%, 60%, 100% { opacity: 0.3; transform: translateY(0); } 30% { opacity: 1; transform: translateY(-3px); } }

/* =================================================================== *
 *  responsive
 * =================================================================== */
@media (max-width: 900px) {
  .wzf-props { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  /* the grid collapses to a single connected column — the 1px gaps simply
     become horizontal dividers; corners stay sharp */
  .wzf-bento { grid-template-columns: 1fr; }
  .wzf-bento .wzf-bx { grid-column: 1 / -1 !important; min-height: 308px; }
}
@media (max-width: 720px) {
  .wzf-row[data-feat="ai"] { padding: 52px 16px 44px; }
  .wzf-row[data-feat="dashboard"] { padding: 24px 16px 52px; }
  .wzf-head { margin-bottom: 26px; }
  .wzf-props { grid-template-columns: 1fr; gap: 16px; margin-top: 26px; }
  /* on phones the editor uses a 840px base (see makeFit) and drops the
     nav rail so the Hortivia preview stays legible instead of a thumbnail */
  .wzd-navcol { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .wzf-typing i, .wzd-reqpop .rmsg .car, .wzf-rise { animation: none !important; }
  .wzf-cursor, .wzd-ring, .wzd-toast, .wzd-backdrop, .wzd-share, .wzd-reqpop,
  .wzf-lead, .wzf-gauge .val, .wzf-vin { transition: none !important; }
}
