/* WingZ services - rendered IN the home page (so it reuses the real Framer nav +
   footer) when the route is /services. The home content column + nav fix are
   handled by the shared html[data-wz-route] rules in wingz-pricing.css. Tokens,
   liquid hero and editorial language match the pricing/about pages. Orange #F96029.
   Prefix: wzsv- (the #wzs / .wzs- namespace is the home "supported by" marquee). */

#wz-services {
  --accent: #F96029;
  --bg: #000000;
  --card: #0e0e12;
  --border: rgba(255, 255, 255, 0.09);
  --border2: rgba(255, 255, 255, 0.16);
  --fg: #fff;
  --muted: rgba(255, 255, 255, 0.6);
  --muted2: rgba(255, 255, 255, 0.4);
  --faint: rgba(255, 255, 255, 0.26);
  --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;
  /* light vignette surface (product UI language: light card on the dark stage) */
  --ink: #17181d;
  --panel: #ffffff;
  --panel2: #f4f2ee;
  --line: rgba(23, 24, 29, 0.1);
  --line2: rgba(23, 24, 29, 0.16);
  --ink-mut: rgba(23, 24, 29, 0.55);
  position: relative;
  width: 100%;
  box-sizing: border-box;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  padding: clamp(120px, 18vh, 180px) clamp(20px, 5vw, 90px) clamp(20px, 4vh, 40px);
}
#wz-services * { box-sizing: border-box; }
#wz-services a { color: inherit; text-decoration: none; }

/* the liquid crown behind the hero */
.wzsv-liquid { height: clamp(600px, 88vh, 1000px); }

/* keep real content above the liquid background */
#wz-services > .wzsv-hero,
#wz-services > .wzsv-rows,
#wz-services > .wzsv-close { position: relative; z-index: 1; }

/* -------------------------------------------------------------- *
 *  hero
 * -------------------------------------------------------------- */
.wzsv-hero { max-width: 1180px; margin: 0 auto; }
.wzsv-eyebrow { display: inline-flex; align-items: center; gap: 9px; font-family: var(--mono); font-size: 11px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); margin-bottom: 18px; }
.wzsv-eyebrow::before { content: ""; width: 7px; height: 7px; background: var(--accent); display: inline-block; }
.wzsv-h { margin: 0; max-width: 20ch; font-weight: 500; font-size: clamp(38px, 5.4vw, 64px); line-height: 1.04; letter-spacing: -0.03em; }
.wzsv-h .o { color: var(--accent); }
.wzsv-sub { margin: 22px 0 0; max-width: 60ch; font-size: clamp(15px, 1.15vw, 18px); line-height: 1.6; color: var(--muted); }

/* jump chips - hairline pills that scroll to each service */
.wzsv-jump { margin-top: clamp(28px, 4vh, 44px); display: flex; flex-wrap: wrap; gap: 8px; }
.wzsv-jump-l { display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border: 1px solid var(--border2); border-radius: 999px; font-size: 13px; font-weight: 500; color: rgba(255, 255, 255, 0.82); transition: border-color 0.18s, background 0.18s, color 0.18s; }
.wzsv-jump-l span { font-family: var(--mono); font-size: 11px; color: var(--accent); }
.wzsv-jump-l:hover { border-color: var(--accent); background: rgba(249, 96, 41, 0.1); color: #fff; }

/* -------------------------------------------------------------- *
 *  service rows - editorial: copy one side, vignette the other,
 *  hairline divider between rows (no boxes, one continuous bg)
 * -------------------------------------------------------------- */
.wzsv-rows { max-width: 1180px; margin: clamp(64px, 10vh, 120px) auto 0; }
.wzsv-row-sec {
  display: grid; grid-template-columns: 0.82fr 1.18fr; gap: clamp(30px, 5vw, 80px);
  align-items: center;
  padding: clamp(52px, 8vh, 96px) 0;
  border-top: 1px solid var(--border);
  scroll-margin-top: 96px;
}
.wzsv-row-sec:first-child { border-top: 0; }
.wzsv-row-sec.alt .wzsv-copy { order: 2; }
.wzsv-row-sec.alt .wzsv-viz { order: 1; }

.wzsv-kick { display: inline-flex; align-items: center; gap: 11px; font-family: var(--font); font-weight: 600; font-size: clamp(24px, 2.4vw, 34px); letter-spacing: -0.02em; color: #fff; }
.wzsv-kn { font-family: var(--mono); font-size: 12px; font-weight: 500; letter-spacing: 0.1em; color: var(--accent); }
.wzsv-lead { margin: 20px 0 0; font-family: var(--font); font-weight: 500; font-size: clamp(18px, 1.5vw, 22px); line-height: 1.3; letter-spacing: -0.02em; color: rgba(255, 255, 255, 0.92); max-width: 26ch; }
.wzsv-body { margin: 16px 0 0; font-size: 14.5px; line-height: 1.65; color: var(--muted); max-width: 42ch; }
.wzsv-tag { margin-top: 20px; display: inline-flex; align-items: center; font-family: var(--mono); font-size: 10.5px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted2); border: 1px solid var(--border); border-radius: 999px; padding: 6px 12px; }

/* the vignette stage */
.wzsv-viz { position: relative; --px: 0; --py: 0; perspective: 1200px; }
.wzsv-card {
  position: relative;
  background: var(--panel);
  color: var(--ink);
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04), 0 30px 60px -30px rgba(0, 0, 0, 0.8), 0 2px 10px rgba(0, 0, 0, 0.35);
  font-size: 13px;
  min-height: 300px;
  transform: rotateX(calc(var(--py) * -3deg)) rotateY(calc(var(--px) * 4deg));
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  overflow: hidden;
}
.wzsv-viz::after { /* soft orange glow that tracks the pointer */
  content: ""; position: absolute; inset: -1px; border-radius: 16px; pointer-events: none;
  background: radial-gradient(240px 240px at calc(50% + var(--px) * 60%) calc(50% + var(--py) * 60%), rgba(249, 96, 41, 0.14), transparent 70%);
  opacity: 0; transition: opacity 0.3s; z-index: 3;
}
.wzsv-viz:hover::after { opacity: 1; }

/* generic reveal helpers driven by .in on .wzsv-viz */
.wzsv-viz .rise { opacity: 0; transform: translateY(10px); transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1); }
.wzsv-viz.in .rise { opacity: 1; transform: none; }

/* ============================================================ *
 *  1 - Site Designer : a mini editor composing a hero
 * ============================================================ */
.wzsv-editor { padding: 0; background: #101216; }
.wzsv-bar { display: flex; align-items: center; gap: 10px; padding: 12px 14px; border-bottom: 1px solid rgba(255, 255, 255, 0.08); background: #14161b; }
.wzsv-dots { display: inline-flex; gap: 5px; }
.wzsv-dots i { width: 8px; height: 8px; border-radius: 50%; background: rgba(255, 255, 255, 0.16); }
.wzsv-bar-t { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255, 255, 255, 0.4); }
.wzsv-pub { margin-left: auto; font-size: 11.5px; font-weight: 600; color: #0b0b0d; background: rgba(255, 255, 255, 0.28); border-radius: 7px; padding: 6px 12px; transition: background 0.5s 0.9s; }
.wzsv-editor.wzsv-card { min-height: 320px; }
.in .wzsv-pub { background: var(--accent); color: #fff; }
.wzsv-canvas { position: relative; padding: 30px 28px 34px; background: radial-gradient(120% 80% at 50% -10%, #1b1e25, #101216 70%); min-height: 262px; }
.wzsv-guide { position: absolute; background: var(--accent); opacity: 0; }
.wzsv-guide-v { left: 28px; top: 22px; bottom: 22px; width: 1px; }
.wzsv-guide-h { left: 22px; right: 22px; top: 96px; height: 1px; }
.in .wzsv-guide { animation: wzsvGuide 1.6s ease 0.5s; }
@keyframes wzsvGuide { 0%, 100% { opacity: 0; } 22%, 60% { opacity: 0.5; } }
.wzsv-eyebrow-ln { font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.22em; color: rgba(255, 255, 255, 0.42); opacity: 0; transform: translateY(8px); transition: opacity 0.5s 0.15s, transform 0.5s 0.15s; }
.wzsv-head-ln { position: relative; margin-top: 12px; font-family: var(--serif); font-size: clamp(26px, 3.4vw, 38px); line-height: 1.05; color: #fff; letter-spacing: -0.01em; opacity: 0; transform: translateY(10px); transition: opacity 0.55s 0.35s, transform 0.55s 0.35s; }
.wzsv-caret { display: inline-block; width: 2px; height: 0.95em; background: var(--accent); margin-left: 3px; vertical-align: -0.1em; opacity: 0; }
.in .wzsv-caret { animation: wzsvBlink 0.9s steps(1) 0.5s 3; }
@keyframes wzsvBlink { 50% { opacity: 1; } }
.wzsv-sub-ln { height: 8px; width: 62%; border-radius: 4px; margin-top: 16px; background: rgba(255, 255, 255, 0.14); opacity: 0; transform: translateY(10px); transition: opacity 0.5s 0.6s, transform 0.5s 0.6s; }
.wzsv-img { position: relative; margin-top: 20px; height: 78px; border-radius: 10px; background: linear-gradient(120deg, rgba(249, 96, 41, 0.22), rgba(249, 96, 41, 0.06)); border: 1px solid rgba(249, 96, 41, 0.28); display: flex; align-items: center; justify-content: center; opacity: 0; transform: translateY(12px) scale(0.98); transition: opacity 0.55s 0.75s, transform 0.55s 0.75s; }
.wzsv-img-i { width: 22px; height: 22px; color: rgba(255, 255, 255, 0.6); }
.wzsv-img-i svg { width: 100%; height: 100%; }
.wzsv-handle { position: absolute; width: 8px; height: 8px; border: 1.5px solid var(--accent); background: #101216; border-radius: 2px; opacity: 0; transition: opacity 0.4s 1s; }
.wzsv-handle.tl { left: -4px; top: -4px; } .wzsv-handle.tr { right: -4px; top: -4px; }
.wzsv-handle.bl { left: -4px; bottom: -4px; } .wzsv-handle.br { right: -4px; bottom: -4px; }
.in .wzsv-eyebrow-ln, .in .wzsv-head-ln, .in .wzsv-sub-ln, .in .wzsv-img { opacity: 1; transform: none; }
.in .wzsv-img .wzsv-handle { opacity: 1; }

/* ============================================================ *
 *  2 - Hosting : deploy status + latency
 * ============================================================ */
.wzsv-host { background: #ffffff; }
.wzsv-host-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.wzsv-url { display: inline-flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 12px; color: var(--ink); background: var(--panel2); border: 1px solid var(--line); border-radius: 8px; padding: 8px 12px; }
.wzsv-lock { width: 14px; height: 14px; color: var(--ink-mut); }
.wzsv-lock svg { width: 100%; height: 100%; }
.wzsv-status { display: inline-flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 600; color: #12844a; }
.wzsv-sdot { width: 8px; height: 8px; border-radius: 50%; background: #cbb; }
.in .wzsv-sdot { background: #17a95b; box-shadow: 0 0 0 0 rgba(23, 169, 91, 0.5); animation: wzsvPulse 2s ease-out 1.1s infinite; }
.wzsv-stext { opacity: 0.5; transition: opacity 0.3s 1s; }
.in .wzsv-stext { opacity: 1; }
@keyframes wzsvPulse { 0% { box-shadow: 0 0 0 0 rgba(23, 169, 91, 0.5); } 70%, 100% { box-shadow: 0 0 0 7px rgba(23, 169, 91, 0); } }
.wzsv-prog { position: relative; height: 4px; border-radius: 3px; background: var(--line); margin-top: 18px; overflow: hidden; }
.wzsv-prog-fill { position: absolute; inset: 0 100% 0 0; background: linear-gradient(90deg, var(--accent), #ff8a4c); border-radius: 3px; }
.in .wzsv-prog-fill { animation: wzsvDeploy 1.1s cubic-bezier(0.4, 0, 0.1, 1) forwards; }
@keyframes wzsvDeploy { to { inset: 0 0 0 0; } }
.wzsv-spark { margin-top: 20px; height: 56px; }
.wzsv-spark svg { width: 100%; height: 100%; overflow: visible; }
.wzsv-spark-l { fill: none; stroke: var(--accent); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 320; stroke-dashoffset: 320; }
.in .wzsv-spark-l { animation: wzsvDraw 1.3s ease 0.5s forwards; }
@keyframes wzsvDraw { to { stroke-dashoffset: 0; } }
.wzsv-stats { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 18px; border-top: 1px solid var(--line); }
.wzsv-stat { padding: 14px 14px 2px; border-right: 1px solid var(--line); }
.wzsv-stat:first-child { padding-left: 0; } .wzsv-stat:last-child { border-right: 0; }
.wzsv-num { display: block; font-size: 19px; font-weight: 700; letter-spacing: -0.02em; color: var(--ink); }
.wzsv-lbl { display: block; margin-top: 3px; font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-mut); }

/* ============================================================ *
 *  3 - AI Agent : chat that captures a lead
 * ============================================================ */
.wzsv-chat { background: #ffffff; display: flex; flex-direction: column; }
.wzsv-chat-head { padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.wzsv-live { display: inline-flex; align-items: center; gap: 7px; font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-mut); }
.wzsv-live-d { width: 7px; height: 7px; border-radius: 50%; background: #17a95b; box-shadow: 0 0 0 0 rgba(23, 169, 91, 0.5); animation: wzsvPulse 2s ease-out infinite; }
.wzsv-chat-body { flex: 1; padding: 16px 0 6px; display: flex; flex-direction: column; gap: 10px; }
.wzsv-msg { display: flex; opacity: 0; transform: translateY(8px); transition: opacity 0.45s, transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1); }
.wzsv-msg.in-r { justify-content: flex-end; }
.in .wzsv-msg { opacity: 1; transform: none; }
.in .wzsv-msg[data-i="1"] { transition-delay: 0.15s; }
.in .wzsv-msg[data-i="2"] { transition-delay: 0.7s; }
.wzsv-bub { max-width: 78%; padding: 11px 14px; border-radius: 14px; font-size: 13px; line-height: 1.4; background: var(--panel2); color: var(--ink); border-bottom-left-radius: 5px; }
.wzsv-bub.agent { background: var(--ink); color: #fff; border-bottom-left-radius: 14px; border-bottom-right-radius: 5px; }
.wzsv-typing { display: inline-flex; gap: 3px; }
.wzsv-typing i { width: 5px; height: 5px; border-radius: 50%; background: rgba(255, 255, 255, 0.6); animation: wzsvBounce 1s infinite; }
.wzsv-typing i:nth-child(2) { animation-delay: 0.15s; } .wzsv-typing i:nth-child(3) { animation-delay: 0.3s; }
@keyframes wzsvBounce { 0%, 60%, 100% { transform: translateY(0); opacity: 0.5; } 30% { transform: translateY(-3px); opacity: 1; } }
/* typing dots -> reply text swap is driven in JS (play()) since @keyframes can't
   reliably animate `display`. Default resting state: dots shown, text hidden. */
.wzsv-bub-t { display: none; }
.wzsv-quick { display: flex; gap: 8px; padding-left: 2px; opacity: 0; transform: translateY(8px); transition: opacity 0.4s 1.7s, transform 0.4s 1.7s; }
.in .wzsv-quick { opacity: 1; transform: none; }
.wzsv-chip { font-size: 12px; font-weight: 600; color: #fff; background: var(--accent); border-radius: 999px; padding: 8px 14px; }
.wzsv-chip.ghost { color: var(--ink); background: transparent; border: 1px solid var(--line2); }
.wzsv-cap { margin-top: 14px; display: flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 600; color: var(--ink); background: linear-gradient(90deg, rgba(249, 96, 41, 0.12), rgba(249, 96, 41, 0.02)); border: 1px solid rgba(249, 96, 41, 0.28); border-radius: 10px; padding: 11px 13px; opacity: 0; transform: scale(0.96); transition: opacity 0.45s 2s, transform 0.45s 2s; }
.in .wzsv-cap { opacity: 1; transform: none; }
.wzsv-cap-i { width: 14px; height: 14px; color: var(--accent); } .wzsv-cap-i svg { width: 100%; height: 100%; }
.wzsv-cap-x { width: 15px; height: 15px; color: var(--ink-mut); margin: 0 -2px 0 auto; } .wzsv-cap-x svg { width: 100%; height: 100%; }
.wzsv-cap b { color: var(--accent); }

/* ============================================================ *
 *  4 - Get Found : AI answer + citation ring
 * ============================================================ */
.wzsv-gf { background: #ffffff; }
.wzsv-q { font-family: var(--mono); font-size: 12px; color: var(--ink-mut); background: var(--panel2); border: 1px solid var(--line); border-radius: 999px; padding: 9px 15px; display: inline-block; }
.wzsv-answer { margin-top: 18px; }
.wzsv-ans-row { display: flex; align-items: center; gap: 15px; }
.wzsv-ring { position: relative; width: 52px; height: 52px; flex: 0 0 52px; }
.wzsv-ring svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.wzsv-ring .trk { fill: none; stroke: var(--line); stroke-width: 4; }
.wzsv-ring .prg { fill: none; stroke: var(--accent); stroke-width: 4; stroke-linecap: round; stroke-dasharray: 113; stroke-dashoffset: 113; }
.in .wzsv-ring .prg { animation: wzsvRing 1.1s ease forwards; }
@keyframes wzsvRing { to { stroke-dashoffset: 9; } } /* ~92% of 113 */
.wzsv-ring-n { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; color: var(--ink); }
.wzsv-ring-n i { font-style: normal; font-size: 9px; margin-left: 1px; }
.wzsv-ans-t { font-size: 15px; font-weight: 600; color: var(--ink); display: flex; align-items: center; gap: 8px; }
.wzsv-via { font-family: var(--mono); font-size: 9.5px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: var(--accent); background: rgba(249, 96, 41, 0.12); border-radius: 5px; padding: 3px 7px; }
.wzsv-ans-b { margin-top: 4px; font-size: 12.5px; color: var(--ink-mut); }
.wzsv-engines { display: flex; gap: 8px; margin-top: 18px; flex-wrap: wrap; }
.wzsv-eng { display: inline-flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 500; color: var(--ink); border: 1px solid var(--line2); border-radius: 999px; padding: 7px 12px; opacity: 0.45; transform: translateY(6px); transition: opacity 0.4s, transform 0.4s; }
.wzsv-eng .gd { width: 7px; height: 7px; border-radius: 50%; background: #c9c9c9; transition: background 0.3s; }
.in .wzsv-eng { opacity: 1; transform: none; }
.in .wzsv-eng[data-i="1"] { transition-delay: 0.35s; } .in .wzsv-eng[data-i="1"] .gd { transition-delay: 0.55s; }
.in .wzsv-eng[data-i="2"] { transition-delay: 0.55s; } .in .wzsv-eng[data-i="2"] .gd { transition-delay: 0.75s; }
.in .wzsv-eng[data-i="3"] { transition-delay: 0.75s; } .in .wzsv-eng[data-i="3"] .gd { transition-delay: 0.95s; }
.in .wzsv-eng .gd { background: #17a95b; }
.wzsv-cited { margin-top: 18px; display: flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 600; color: var(--ink); opacity: 0; transform: translateY(6px); transition: opacity 0.45s 1.1s, transform 0.45s 1.1s; }
.in .wzsv-cited { opacity: 1; transform: none; }
.wzsv-cited-i { display: inline-flex; align-items: center; justify-content: center; width: 18px; height: 18px; border-radius: 50%; background: var(--accent); color: #fff; }
.wzsv-cited-i svg { width: 12px; height: 12px; }

/* ============================================================ *
 *  5 - Cross-promotion : two businesses, one campaign
 * ============================================================ */
.wzsv-cross { background: #ffffff; display: flex; flex-direction: column; justify-content: center; }
.wzsv-cross-row { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 8px; }
.wzsv-biz { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 7px; opacity: 0; transform: translateX(-14px); transition: opacity 0.5s 0.15s, transform 0.5s 0.15s; }
.wzsv-biz:last-child { transform: translateX(14px); }
.in .wzsv-biz { opacity: 1; transform: none; }
.wzsv-av { display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px; border-radius: 13px; font-size: 14px; font-weight: 700; letter-spacing: -0.01em; color: #fff; background: linear-gradient(135deg, #2a2d34, #17181d); }
.wzsv-av.alt { background: linear-gradient(135deg, var(--accent), #d8481c); }
.wzsv-biz-n { font-size: 13px; font-weight: 600; color: var(--ink); }
.wzsv-biz-s { font-family: var(--mono); font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-mut); }
.wzsv-link { position: relative; display: flex; flex-direction: column; align-items: center; min-width: 92px; }
.wzsv-link svg { width: 100%; height: 34px; }
.wzsv-link-p { fill: none; stroke: var(--accent); stroke-width: 2; stroke-dasharray: 6 6; stroke-dashoffset: 120; opacity: 0.9; }
.in .wzsv-link-p { animation: wzsvLink 0.9s ease 0.4s forwards; }
@keyframes wzsvLink { to { stroke-dashoffset: 0; } }
.wzsv-match { font-size: 17px; font-weight: 700; letter-spacing: -0.02em; color: var(--accent); }
.wzsv-match-l { font-family: var(--mono); font-size: 8.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-mut); }
.wzsv-launch { margin-top: 22px; display: flex; justify-content: center; opacity: 0; transform: translateY(8px); transition: opacity 0.45s 1s, transform 0.45s 1s; }
.in .wzsv-launch { opacity: 1; transform: none; }
.wzsv-launch-b { font-size: 12.5px; font-weight: 600; color: #fff; background: var(--accent); border-radius: 999px; padding: 10px 18px; }

/* ============================================================ *
 *  6 - News & grants : matched opportunities
 * ============================================================ */
.wzsv-grants { background: #ffffff; }
.wzsv-grants-head { font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-mut); margin-bottom: 6px; }
.wzsv-row { display: flex; align-items: center; gap: 13px; padding: 15px 0; border-bottom: 1px solid var(--line); opacity: 0; transform: translateY(10px); transition: opacity 0.5s, transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1); }
.wzsv-grants .wzsv-row:last-child { border-bottom: 0; }
.in .wzsv-row { opacity: 1; transform: none; }
.in .wzsv-row[data-i="1"] { transition-delay: 0.2s; }
.in .wzsv-row[data-i="2"] { transition-delay: 0.4s; }
.in .wzsv-row[data-i="3"] { transition-delay: 0.6s; }
.wzsv-row-i { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; flex: 0 0 38px; border-radius: 10px; color: var(--accent); background: rgba(249, 96, 41, 0.1); }
.wzsv-row-i.news { color: var(--ink); background: var(--panel2); }
.wzsv-row-i svg { width: 19px; height: 19px; }
.wzsv-row-c { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 3px; }
.wzsv-row-c b { font-size: 13.5px; font-weight: 600; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.wzsv-row-c i { font-style: normal; font-size: 11.5px; color: var(--ink-mut); }
.wzsv-amt { font-size: 15px; font-weight: 700; letter-spacing: -0.02em; color: var(--accent); white-space: nowrap; }
.wzsv-amt.news { font-family: var(--mono); font-size: 9.5px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-mut); background: var(--panel2); border-radius: 6px; padding: 5px 9px; }

/* -------------------------------------------------------------- *
 *  closing
 * -------------------------------------------------------------- */
.wzsv-close { max-width: 900px; margin: clamp(60px, 10vh, 120px) auto clamp(10px, 2vh, 24px); }
.wzsv-close-t { margin: 0; font-family: var(--font); font-weight: 500; font-size: clamp(24px, 3vw, 40px); line-height: 1.12; letter-spacing: -0.03em; color: #fff; text-align: center; }
.wzsv-close-t .o { color: var(--accent); }

/* -------------------------------------------------------------- *
 *  responsive
 * -------------------------------------------------------------- */
@media (max-width: 900px) {
  .wzsv-row-sec { grid-template-columns: 1fr; gap: 30px; padding: 44px 0; }
  /* keep copy above the vignette on every row when stacked */
  .wzsv-row-sec.alt .wzsv-copy { order: 1; }
  .wzsv-row-sec.alt .wzsv-viz { order: 2; }
  .wzsv-lead, .wzsv-body { max-width: none; }
  .wzsv-card { min-height: 0; }
}

@media (prefers-reduced-motion: reduce) {
  #wz-services * { animation: none !important; transition: none !important; }
  /* JS still adds .in immediately in RM; force every keyframe/SVG bit to its end state */
  .wzsv-viz .rise { opacity: 1 !important; transform: none !important; }
  .wzsv-spark-l { stroke-dashoffset: 0 !important; }
  .wzsv-ring .prg { stroke-dashoffset: 9 !important; }
  .wzsv-prog-fill { inset: 0 !important; }
  .wzsv-link-p { stroke-dashoffset: 0 !important; }
  .wzsv-caret { display: none !important; }
  .wzsv-typing { display: none !important; }
  .wzsv-bub-t { display: inline !important; }
  .in .wzsv-pub { background: var(--accent) !important; color: #fff !important; }
  .in .wzsv-eng .gd { background: #17a95b !important; }
}
