/* ==========================================================================
   Zorzees v2 front page — design tokens, foundation, and HERO section.
   Source of truth: awdd.ca/Z mockup (commissioned). Pixel-faithful.
   All structural rules are scoped under `.zv2` to avoid colliding with the
   existing fl-theme styles. Served directly (not via Gulp) and enqueued only
   on the front page — see functions.php / fl_enqueue_front_v2().
   ========================================================================== */

:root {
  --purple: #53387B; --purple-deep: #3F2A60; --purple-bright: #8C6CC4;
  --purple-soft: #ECE5F2; --purple-tint: #F8F4FB; --purple-text: #332247;
  --coral: #FF6B5B; --coral-soft: #FFE3DE; --peach: #FFB897;
  --lemon: #FFE972; --lemon-soft: #FFF8E0; --mint: #B6E8D6; --mint-soft: #E8F7F0;
  --sky: #BCD9F5; --sky-soft: #EAF2FB;
  --bg: #FFFFFF; --bg-cream: #FFFBF2; --line: #E9E4F0; --line-soft: #F0EBF5;
  --ink: #1F1B2E; --ink-2: #4A4458; --muted: #7C7589;
  --serif: 'Fraunces', 'Iowan Old Style', Georgia, serif;
  --jakarta: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ---- foundation (scoped) ---- */
.zv2 { font-family: var(--jakarta); background: var(--bg); color: var(--ink);
  -webkit-font-smoothing: antialiased; line-height: 1.55; font-size: 16.5px;
  letter-spacing: -0.005em; }
.zv2 *, .zv2 *::before, .zv2 *::after { box-sizing: border-box; }
.zv2 a { color: inherit; text-decoration: none; }
.zv2 button { font-family: inherit; cursor: pointer; border: none; background: none; }
.zv2 img { max-width: 100%; display: block; }
.zv2 .container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
.zv2 .eyebrow { display: inline-block; font-size: 13px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--purple); }
.zv2 h1, .zv2 h2, .zv2 h3, .zv2 h4 { letter-spacing: -0.025em; line-height: 1.05;
  margin: 0; font-weight: 800; color: var(--ink); }
.zv2 p { margin: 0; }
.zv2 em.serif { font-family: var(--serif); font-style: italic; font-weight: 500; }
.zv2 section { padding: 96px 0; }

/* ---- buttons ---- */
.zv2 .btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 24px;
  border-radius: 999px; font-size: 15px; font-weight: 700; border: 2px solid transparent;
  white-space: nowrap;
  transition: transform .12s ease, background .18s ease, color .18s ease, box-shadow .18s ease; }
.zv2 .btn-ghost { color: var(--ink-2); padding: 10px 18px; }
.zv2 .btn-ghost:hover { color: var(--ink); }
.zv2 .btn-primary { background: var(--purple); color: #fff; box-shadow: 0 4px 14px rgba(83,56,123,0.25); }
.zv2 .btn-primary:hover { transform: translateY(-2px); background: var(--purple-deep); box-shadow: 0 8px 20px rgba(83,56,123,0.3); }
.zv2 .btn-coral { background: var(--coral); color: #fff; box-shadow: 0 4px 14px rgba(255,107,91,0.25); }
.zv2 .btn-coral:hover { transform: translateY(-2px); background: #E85648; box-shadow: 0 8px 20px rgba(255,107,91,0.3); }
.zv2 .btn-outline { background: transparent; color: var(--ink); border: 2px solid var(--line); }
.zv2 .btn-outline:hover { border-color: var(--purple); color: var(--purple); }
.zv2 .btn-arrow { transition: transform .18s ease; }
.zv2 .btn:hover .btn-arrow { transform: translateX(3px); }
.zv2 .btn-sm { padding: 10px 18px; font-size: 14px; }

/* ============= NAV ============= */
.zv2 header.nav { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,0.92);
  -webkit-backdrop-filter: saturate(180%) blur(14px); backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line-soft); }
.zv2 .nav-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.zv2 .brand { display: flex; align-items: center; gap: 12px; font-weight: 800; font-size: 22px;
  color: var(--ink); letter-spacing: -0.02em; }
.zv2 .brand-mark { width: 36px; height: 36px; border-radius: 10px;
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-deep) 100%);
  display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 800;
  font-size: 18px; font-family: var(--serif); font-style: italic; }
.zv2 .nav-links { display: flex; gap: 6px; align-items: center; }
.zv2 .nav-link { padding: 9px 14px; font-size: 14.5px; color: var(--ink-2); border-radius: 999px;
  font-weight: 600; transition: color .18s ease, background .18s ease; }
.zv2 .nav-link:hover { color: var(--ink); background: var(--purple-soft); }
.zv2 .nav-cta { display: flex; gap: 10px; align-items: center; }

/* ============= HERO ============= */
.zv2 .hero { padding: 64px 0 112px; position: relative; overflow: hidden;
  background:
    radial-gradient(900px 500px at 90% 10%, var(--coral-soft) 0%, transparent 60%),
    radial-gradient(700px 400px at 0% 80%, var(--purple-soft) 0%, transparent 60%),
    var(--bg-cream); }
.zv2 .hero::after { content: ''; position: absolute; bottom: -1px; left: 0; right: 0; height: 80px;
  background: linear-gradient(180deg, transparent 0%, #fff 100%); pointer-events: none; }

.zv2 .persona-tabs { display: inline-flex; padding: 6px; background: #fff; border: 1px solid var(--line);
  border-radius: 999px; box-shadow: 0 4px 14px rgba(31,27,46,0.05); margin-bottom: 36px; gap: 4px; }
.zv2 .persona-tab { padding: 10px 18px; border-radius: 999px; font-size: 14px; font-weight: 600;
  color: var(--ink-2); cursor: pointer; transition: all 0.2s ease; display: inline-flex; align-items: center; gap: 8px; }
.zv2 .persona-tab:hover { color: var(--ink); }
.zv2 .persona-tab.active { background: var(--ink); color: #fff; }
.zv2 .persona-tab .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--purple-bright); }
.zv2 .persona-tab[data-persona="bd"] .dot { background: var(--coral); }
.zv2 .persona-tab[data-persona="ops"] .dot { background: var(--mint); }
.zv2 .persona-tab[data-persona="founder"] .dot { background: var(--lemon); }

.zv2 .hero-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: center; position: relative; }
.zv2 .hero h1 { font-size: clamp(44px, 6vw, 84px); font-weight: 800; letter-spacing: -0.04em; line-height: 1.0; }
.zv2 .hero h1 .highlight { position: relative; display: inline-block; color: var(--purple); }
.zv2 .hero h1 .highlight::after { content: ''; position: absolute; bottom: 4px; left: -4px; right: -4px;
  height: 14px; background: var(--lemon); z-index: -1; border-radius: 4px; }
.zv2 .hero .lede { margin-top: 28px; font-size: 20px; color: var(--ink-2); max-width: 540px; line-height: 1.5; }
.zv2 .hero-actions { margin-top: 36px; display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.zv2 .hero .meta { margin-top: 24px; font-size: 14px; color: var(--muted); display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.zv2 .hero .meta::before { content: '✓'; color: var(--mint); background: var(--mint-soft); width: 22px; height: 22px;
  border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; }

.zv2 .hero-content { display: none; }
.zv2 .hero-content.active { display: block; animation: zv2fadeIn 0.4s cubic-bezier(0.22, 1, 0.36, 1); }
@keyframes zv2fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

.zv2 .hero-visual { position: relative; aspect-ratio: 1/1; display: flex; align-items: center; justify-content: center; }
.zv2 .hero-blob { position: absolute; inset: 0; border-radius: 50%; z-index: 0;
  background: radial-gradient(circle at 60% 40%, var(--purple-soft) 0%, transparent 60%); }
.zv2 .hero-card { position: relative; z-index: 2; width: 86%; max-width: 460px; background: #fff;
  border-radius: 24px; border: 1px solid var(--line-soft); padding: 28px;
  box-shadow: 0 24px 60px -16px rgba(31,27,46,0.18), 0 8px 20px -8px rgba(31,27,46,0.08); }
.zv2 .hero-card-header { display: flex; align-items: center; gap: 10px; margin-bottom: 18px;
  padding-bottom: 14px; border-bottom: 1px solid var(--line-soft); }
.zv2 .hero-card-header .ico { width: 36px; height: 36px; border-radius: 10px; background: var(--purple-soft);
  color: var(--purple); display: flex; align-items: center; justify-content: center; }
.zv2 .hero-card-header .h-title { font-size: 15px; font-weight: 700; color: var(--ink); }
.zv2 .hero-card-header .h-sub { font-size: 12px; color: var(--muted); }
.zv2 .hero-stat-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; margin-bottom: 16px; }
.zv2 .hero-mini-stat { background: var(--purple-tint); border-radius: 12px; padding: 14px; border: 1px solid var(--line-soft); }
.zv2 .hero-mini-stat .num { font-size: 22px; font-weight: 800; color: var(--ink); letter-spacing: -0.03em; }
.zv2 .hero-mini-stat .lbl { font-size: 11px; color: var(--muted); margin-top: 2px; font-weight: 500; }
.zv2 .hero-progress { background: var(--bg-cream); border-radius: 12px; padding: 14px 16px; border: 1px solid var(--line-soft); margin-bottom: 8px; }
.zv2 .hero-progress .top { display: flex; justify-content: space-between; font-size: 13px; margin-bottom: 8px; }
.zv2 .hero-progress .top b { font-weight: 700; color: var(--ink); }
.zv2 .hero-progress .top span { color: var(--muted); }
.zv2 .hero-progress .bar { height: 6px; background: #fff; border-radius: 3px; overflow: hidden; }
.zv2 .hero-progress .bar i { display: block; height: 100%; background: var(--purple); border-radius: 3px; }

.zv2 .float-chip { position: absolute; z-index: 3; background: #fff; border-radius: 16px; padding: 14px 18px;
  box-shadow: 0 16px 32px -8px rgba(31,27,46,0.18); border: 1px solid var(--line-soft);
  display: flex; align-items: center; gap: 12px; font-size: 13.5px; }
.zv2 .float-chip .ico { width: 36px; height: 36px; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.zv2 .float-chip b { display: block; color: var(--ink); font-weight: 700; font-size: 14px; }
.zv2 .float-chip span { color: var(--muted); font-size: 12.5px; }
.zv2 .float-chip.tl { top: 8%; left: -3%; animation: zv2floatY 6s ease-in-out infinite; }
.zv2 .float-chip.br { bottom: 6%; right: -2%; animation: zv2floatY 7s ease-in-out infinite reverse; }
.zv2 .float-chip.tl .ico { background: var(--coral-soft); color: var(--coral); }
.zv2 .float-chip.br .ico { background: var(--mint-soft); color: #1F8A5F; }
@keyframes zv2floatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* ---- responsive (hero) ---- */
@media (max-width: 900px) {
  .zv2 .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .zv2 .hero-visual { order: -1; }
  .zv2 .nav-links { display: none; }
}

/* ============= QUICK STATS ============= */
.zv2 .quick-stats { padding: 64px 0; background: #fff; border-bottom: 1px solid var(--line-soft); }
.zv2 .quick-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; text-align: center; }
.zv2 .quick-stat { padding: 8px 24px; border-right: 1px solid var(--line-soft); }
.zv2 .quick-stat:last-child { border-right: none; }
.zv2 .quick-stat .num { font-size: clamp(36px, 4vw, 56px); font-weight: 800; letter-spacing: -0.04em; color: var(--purple); line-height: 1; margin-bottom: 8px; }
.zv2 .quick-stat .num em { font-family: var(--serif); font-weight: 500; font-style: italic; color: var(--ink); }
.zv2 .quick-stat .lbl { font-size: 14px; color: var(--ink-2); font-weight: 500; line-height: 1.4; }

/* ============= LOGO MARQUEE ============= */
.zv2 .logos { padding: 64px 0; overflow: hidden; background: var(--bg-cream); border-bottom: 1px solid var(--line-soft); }
.zv2 .logos-label { text-align: center; color: var(--muted); font-size: 14px; margin-bottom: 32px; font-weight: 600; }
.zv2 .logos-label b { color: var(--ink); }
.zv2 .logo-marquee { position: relative; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%); }
.zv2 .logo-track { display: flex; width: max-content; align-items: center; gap: 80px; animation: zv2scrollLogos 38s linear infinite; }
.zv2 .logo-marquee:hover .logo-track { animation-play-state: paused; }
.zv2 .logo-item { flex: 0 0 auto; height: 56px; width: 180px; display: flex; align-items: center; justify-content: center; padding: 0 8px; }
.zv2 .logo-item img { max-height: 100%; max-width: 100%; width: auto; height: auto; object-fit: contain; filter: grayscale(100%); opacity: 0.6;
  transition: filter 0.3s ease, opacity 0.3s ease, transform 0.3s ease; }
.zv2 .logo-item:hover img { filter: grayscale(0%); opacity: 1; transform: scale(1.04); }
@keyframes zv2scrollLogos { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .zv2 .logo-track { animation: none; } }

/* ============= SECTION HEADER (shared) ============= */
.zv2 .section-header { max-width: 760px; margin: 0 auto 64px; text-align: center; }
.zv2 .section-header h2 { font-size: clamp(34px, 4.4vw, 60px); margin-top: 14px; letter-spacing: -0.035em; line-height: 1.05; }
.zv2 .section-header h2 em { font-family: var(--serif); font-style: italic; font-weight: 500; color: var(--purple); }
.zv2 .section-header p { margin: 18px auto 0; font-size: 18px; color: var(--ink-2); max-width: 620px; line-height: 1.5; }

/* ============= PERSONA CARDS ============= */
.zv2 .personas-section { padding: 112px 0; }
.zv2 .persona-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.zv2 .persona-card { background: #fff; border-radius: 24px; padding: 40px; border: 2px solid var(--line);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; position: relative; overflow: hidden; display: flex; flex-direction: column; }
.zv2 .persona-card::before { content: ''; position: absolute; top: -40px; right: -40px; width: 180px; height: 180px; border-radius: 50%; opacity: 0.5; }
.zv2 .persona-card.bd::before { background: var(--coral-soft); }
.zv2 .persona-card.ops::before { background: var(--mint-soft); }
.zv2 .persona-card.founder::before { background: var(--lemon-soft); }
.zv2 .persona-card:hover { transform: translateY(-6px); border-color: var(--purple); box-shadow: 0 20px 40px -12px rgba(31,27,46,0.12); }
.zv2 .persona-card-icon { width: 56px; height: 56px; border-radius: 16px; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; position: relative; z-index: 1; }
.zv2 .persona-card.bd .persona-card-icon { background: var(--coral); color: #fff; }
.zv2 .persona-card.ops .persona-card-icon { background: #1F8A5F; color: #fff; }
.zv2 .persona-card.founder .persona-card-icon { background: var(--purple); color: #fff; }
.zv2 .persona-card .role { font-size: 12px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px; position: relative; z-index: 1; }
.zv2 .persona-card h3 { font-size: 26px; margin-bottom: 16px; letter-spacing: -0.025em; line-height: 1.15; position: relative; z-index: 1; }
.zv2 .persona-card p { color: var(--ink-2); font-size: 15.5px; line-height: 1.55; margin-bottom: 24px; position: relative; z-index: 1; }
.zv2 .persona-card ul { list-style: none; padding: 0; margin: 0 0 28px; position: relative; z-index: 1; }
.zv2 .persona-card ul li { padding: 7px 0; font-size: 14.5px; color: var(--ink-2); display: flex; align-items: flex-start; gap: 10px; }
.zv2 .persona-card ul li::before { content: ''; width: 18px; height: 18px; border-radius: 50%; background: var(--purple-soft); flex-shrink: 0; margin-top: 1px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'><path fill='%2353387B' d='M5 8.5L2.5 6l-.7.7L5 9.9l6.7-6.7-.7-.7z'/></svg>");
  background-repeat: no-repeat; background-position: center; }
.zv2 .persona-card .cta { margin-top: auto; font-size: 14.5px; font-weight: 700; color: var(--purple); display: inline-flex; align-items: center; gap: 8px; position: relative; z-index: 1; }
.zv2 .persona-card .cta:hover { color: var(--purple-deep); }
.zv2 .persona-card .cta::after { content: '\2192'; transition: transform 0.2s ease; }
.zv2 .persona-card:hover .cta::after { transform: translateX(4px); }

/* ---- responsive (stats / personas) ---- */
@media (max-width: 900px) {
  .zv2 .quick-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 0; }
  .zv2 .quick-stat:nth-child(2) { border-right: none; }
  .zv2 .persona-cards { grid-template-columns: 1fr; }
}

/* ============= ROLE SECTIONS (bd / ops / founder) ============= */
.zv2 .role-section { padding: 112px 0; position: relative; }
.zv2 .role-section.bd { background: var(--coral-soft); }
.zv2 .role-section.ops { background: var(--mint-soft); }
.zv2 .role-section.founder { background: var(--lemon-soft); }
.zv2 .role-header { display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: center; margin-bottom: 64px; }
.zv2 .role-tag { display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px; border-radius: 999px; background: rgba(255,255,255,0.7); font-size: 13px; font-weight: 700; color: var(--ink); margin-bottom: 20px; }
.zv2 .role-tag .dot { width: 8px; height: 8px; border-radius: 50%; }
.zv2 .role-section.bd .role-tag .dot { background: var(--coral); }
.zv2 .role-section.ops .role-tag .dot { background: #1F8A5F; }
.zv2 .role-section.founder .role-tag .dot { background: var(--purple); }
.zv2 .role-header h2 { font-size: clamp(36px, 4.6vw, 60px); letter-spacing: -0.035em; line-height: 1.0; }
.zv2 .role-header h2 em { font-family: var(--serif); font-style: italic; font-weight: 500; color: var(--purple); }
.zv2 .role-header .lede { font-size: 18px; color: var(--ink-2); line-height: 1.55; }
.zv2 .role-header .lede strong { color: var(--ink); font-weight: 700; }
.zv2 .role-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.zv2 .role-feature { background: #fff; border-radius: 20px; padding: 32px; transition: transform .2s ease, box-shadow .2s ease; }
.zv2 .role-feature:hover { transform: translateY(-3px); box-shadow: 0 16px 32px -8px rgba(31,27,46,0.1); }
.zv2 .role-feature .ico { width: 48px; height: 48px; border-radius: 14px; background: var(--purple-soft); color: var(--purple); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.zv2 .role-feature h4 { font-size: 19px; margin-bottom: 10px; letter-spacing: -0.02em; line-height: 1.25; }
.zv2 .role-feature p { color: var(--ink-2); font-size: 14.5px; line-height: 1.6; }

/* Ops chat / knowledge-base mock */
.zv2 .ops-mock { margin-top: 48px; background: #fff; border-radius: 24px; padding: 32px; box-shadow: 0 20px 40px -16px rgba(31,27,46,0.12); display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center; }
.zv2 .chat-mock { background: var(--bg-cream); border-radius: 16px; padding: 20px; border: 1px solid var(--line-soft); }
.zv2 .chat-msg { margin-bottom: 12px; max-width: 88%; padding: 12px 16px; border-radius: 14px; font-size: 14px; line-height: 1.5; }
.zv2 .chat-msg.user { background: var(--purple); color: #fff; margin-left: auto; border-bottom-right-radius: 4px; }
.zv2 .chat-msg.bot { background: #fff; color: var(--ink); border: 1px solid var(--line-soft); border-bottom-left-radius: 4px; }
.zv2 .chat-msg .source { font-size: 11px; color: var(--muted); margin-top: 6px; padding-top: 6px; border-top: 1px solid var(--line-soft); }
.zv2 .chat-input-mock { margin-top: 14px; padding: 12px 16px; background: #fff; border-radius: 12px; border: 1px solid var(--line); color: var(--muted); font-size: 13.5px; display: flex; align-items: center; justify-content: space-between; }
.zv2 .chat-input-mock .send { width: 28px; height: 28px; border-radius: 8px; background: var(--purple); color: #fff; display: flex; align-items: center; justify-content: center; }
.zv2 .kb-mock h4 { font-size: 22px; margin-bottom: 8px; }
.zv2 .kb-mock > p { color: var(--ink-2); font-size: 15px; margin-bottom: 20px; }
.zv2 .kb-list { display: flex; flex-direction: column; gap: 8px; }
.zv2 .kb-item { background: var(--purple-tint); border-radius: 12px; padding: 14px 16px; display: flex; justify-content: space-between; align-items: center; border: 1px solid var(--line-soft); transition: transform 0.2s ease; }
.zv2 .kb-item:hover { transform: translateX(4px); }
.zv2 .kb-item .left { display: flex; align-items: center; gap: 12px; font-size: 14px; font-weight: 600; color: var(--ink); }
.zv2 .kb-item .ico { width: 28px; height: 28px; border-radius: 8px; background: #fff; color: var(--purple); display: flex; align-items: center; justify-content: center; border: 1px solid var(--line-soft); }
.zv2 .kb-item .meta { font-size: 12px; color: var(--muted); }

/* BD pipeline mock */
.zv2 .bd-mock { margin-top: 48px; background: #fff; border-radius: 24px; padding: 36px; box-shadow: 0 20px 40px -16px rgba(31,27,46,0.12); }
.zv2 .bd-mock-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.zv2 .bd-mock-head h4 { font-size: 20px; }
.zv2 .bd-mock-head .pill { background: var(--coral-soft); color: var(--coral); padding: 6px 12px; border-radius: 999px; font-size: 12px; font-weight: 700; }
.zv2 .bd-pipeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.zv2 .bd-stage-col { background: var(--bg-cream); border-radius: 14px; padding: 14px; }
.zv2 .bd-stage-name { font-size: 12px; font-weight: 700; color: var(--ink-2); text-transform: uppercase; letter-spacing: 0.06em; display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.zv2 .bd-stage-name span { background: #fff; border-radius: 6px; padding: 1px 7px; font-size: 11px; color: var(--ink); }
.zv2 .bd-deal { background: #fff; border-radius: 10px; padding: 10px 12px; margin-bottom: 8px; font-size: 13px; color: var(--ink); border: 1px solid var(--line-soft); }
.zv2 .bd-deal b { font-weight: 700; }
.zv2 .bd-deal small { display: block; color: var(--muted); font-size: 11px; margin-top: 2px; }
.zv2 .bd-deal .terr { display: inline-block; margin-top: 6px; font-size: 10px; padding: 2px 8px; border-radius: 4px; background: var(--purple-soft); color: var(--purple); font-weight: 600; }

/* Founder all-in-one stack mock */
.zv2 .founder-mock { margin-top: 48px; background: #fff; border-radius: 24px; padding: 40px; box-shadow: 0 20px 40px -16px rgba(31,27,46,0.12); display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.zv2 .founder-stack { display: flex; flex-direction: column; gap: 12px; }
.zv2 .founder-stack-row { background: var(--purple-tint); border-radius: 14px; padding: 16px 18px; display: flex; align-items: center; gap: 14px; transition: transform 0.2s ease; border: 1px solid var(--line-soft); }
.zv2 .founder-stack-row:hover { transform: scale(1.02); border-color: var(--purple-bright); }
.zv2 .founder-stack-row .ico { width: 36px; height: 36px; border-radius: 10px; background: var(--purple); color: #fff; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.zv2 .founder-stack-row .text b { display: block; font-size: 14.5px; font-weight: 700; color: var(--ink); }
.zv2 .founder-stack-row .text span { font-size: 13px; color: var(--muted); }
.zv2 .founder-mock-side h3 { font-size: 28px; margin-bottom: 14px; line-height: 1.2; }
.zv2 .founder-mock-side h3 em { font-family: var(--serif); font-weight: 500; color: var(--purple); }
.zv2 .founder-mock-side p { color: var(--ink-2); font-size: 15.5px; line-height: 1.6; margin-bottom: 24px; }

/* ============= LIFECYCLE ============= */
.zv2 .lifecycle { padding: 112px 0; background: #fff; }
.zv2 .lifecycle-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.zv2 .stage { padding: 36px 28px; background: #fff; border: 2px solid var(--line); border-radius: 20px; position: relative; transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.zv2 .stage:hover { transform: translateY(-4px); border-color: var(--purple); box-shadow: 0 16px 32px -8px rgba(83,56,123,0.1); }
.zv2 .stage::after { content: '\2192'; position: absolute; right: -22px; top: 50%; transform: translateY(-50%); color: var(--purple); font-size: 28px; font-weight: 700; z-index: 2; }
.zv2 .stage:last-child::after { display: none; }
.zv2 .stage-num { font-family: var(--serif); font-style: italic; font-size: 30px; color: var(--purple); margin-bottom: 14px; line-height: 1; font-weight: 500; }
.zv2 .stage h3 { font-size: 21px; margin-bottom: 10px; letter-spacing: -0.02em; }
.zv2 .stage p { color: var(--ink-2); font-size: 14.5px; line-height: 1.6; }

/* ============= TESTIMONIALS ============= */
.zv2 .testimonials { padding: 112px 0; background: var(--purple-tint); }
.zv2 .testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.zv2 .testimonial { background: #fff; border-radius: 20px; padding: 32px; border: 1px solid var(--line-soft); display: flex; flex-direction: column; transition: transform 0.25s ease; }
.zv2 .testimonial:hover { transform: translateY(-4px); }
.zv2 .testimonial .stars { color: var(--lemon); font-size: 16px; margin-bottom: 14px; }
.zv2 .testimonial blockquote { margin: 0; font-size: 16.5px; line-height: 1.5; color: var(--ink); font-weight: 500; flex-grow: 1; }
.zv2 .testimonial blockquote em { font-family: var(--serif); font-style: italic; font-weight: 500; color: var(--purple); }
.zv2 .testimonial .author { margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--line-soft); display: flex; align-items: center; gap: 12px; }
.zv2 .testimonial .avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--purple) 0%, var(--purple-deep) 100%); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 16px; font-family: var(--serif); font-style: italic; }
.zv2 .testimonial .author-meta b { font-size: 14.5px; color: var(--ink); display: block; font-weight: 700; }
.zv2 .testimonial .author-meta span { font-size: 13px; color: var(--muted); }

/* ---- responsive (role / lifecycle / testimonials) ---- */
@media (max-width: 900px) {
  .zv2 .role-header { grid-template-columns: 1fr; gap: 32px; }
  .zv2 .role-features { grid-template-columns: 1fr; }
  .zv2 .ops-mock, .zv2 .founder-mock { grid-template-columns: 1fr; gap: 28px; }
  .zv2 .bd-pipeline { grid-template-columns: repeat(2, 1fr); }
  .zv2 .lifecycle-grid { grid-template-columns: repeat(2, 1fr); }
  .zv2 .stage::after { display: none; }
  .zv2 .testimonial-grid { grid-template-columns: 1fr; }
}

/* ============= CTA BANNER ============= */
.zv2 .cta-section { padding: 112px 0; background: #fff; }
.zv2 .cta-banner { background: linear-gradient(135deg, var(--purple) 0%, var(--purple-deep) 100%); color: #fff; border-radius: 32px; padding: 80px 64px; position: relative; overflow: hidden; text-align: center; }
.zv2 .cta-banner::before { content: ''; position: absolute; top: -100px; left: -100px; width: 320px; height: 320px; background: radial-gradient(circle, rgba(255,233,114,0.18), transparent 65%); }
.zv2 .cta-banner::after { content: ''; position: absolute; bottom: -100px; right: -100px; width: 320px; height: 320px; background: radial-gradient(circle, rgba(255,107,91,0.18), transparent 65%); }
.zv2 .cta-banner h2 { color: #fff; font-size: clamp(34px, 4.4vw, 56px); max-width: 720px; margin: 0 auto; letter-spacing: -0.03em; line-height: 1.05; }
.zv2 .cta-banner h2 em { font-family: var(--serif); font-style: italic; font-weight: 500; color: var(--lemon); }
.zv2 .cta-banner p { color: rgba(255,255,255,0.8); margin: 24px auto 0; max-width: 540px; font-size: 17px; position: relative; }
.zv2 .cta-actions { margin-top: 36px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }
.zv2 .cta-banner .btn-coral { box-shadow: 0 8px 24px rgba(255,107,91,0.4); }

/* ============= FAQ ============= */
.zv2 .faq-section { padding: 112px 0; background: var(--bg-cream); }
.zv2 .faq-list { max-width: 820px; margin: 0 auto; }
.zv2 .faq-item { background: #fff; border: 1px solid var(--line); border-radius: 16px; margin-bottom: 12px; overflow: hidden; transition: border-color 0.2s ease; }
.zv2 .faq-item:hover { border-color: var(--purple-bright); }
.zv2 .faq-q { width: 100%; text-align: left; display: flex; justify-content: space-between; align-items: center; font-size: 17px; font-weight: 700; color: var(--ink); padding: 22px 28px; }
.zv2 .faq-q .plus { width: 28px; height: 28px; border-radius: 50%; background: var(--purple-soft); color: var(--purple); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: transform .25s ease, background .25s ease; font-size: 18px; line-height: 1; }
.zv2 .faq-item.open .plus { transform: rotate(45deg); background: var(--purple); color: #fff; }
.zv2 .faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .25s ease; color: var(--ink-2); font-size: 15.5px; line-height: 1.65; padding: 0 28px; }
.zv2 .faq-item.open .faq-a { max-height: 320px; padding: 0 28px 24px; }

/* ============= FOOTER ============= */
.zv2 footer.site { background: var(--ink); color: rgba(255,255,255,0.75); padding: 80px 0 36px; }
.zv2 footer.site h5 { font-size: 12px; color: var(--purple-bright); font-weight: 700; margin: 0 0 18px; text-transform: uppercase; letter-spacing: 0.1em; }
.zv2 .footer-grid { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
.zv2 .footer-brand .brand { color: #fff; margin-bottom: 18px; }
.zv2 .footer-brand p { color: rgba(255,255,255,0.65); font-size: 14.5px; max-width: 320px; line-height: 1.6; }
.zv2 .footer-col a { display: block; padding: 6px 0; color: rgba(255,255,255,0.7); font-size: 14.5px; transition: color .15s ease; }
.zv2 .footer-col a:hover { color: var(--purple-bright); }
.zv2 .footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; font-size: 13px; flex-wrap: wrap; gap: 12px; color: rgba(255,255,255,0.5); }
.zv2 .footer-bottom a { color: rgba(255,255,255,0.6); margin-left: 24px; }

/* ============= MASTER RESPONSIVE ============= */
@media (max-width: 980px) {
  .zv2 section { padding: 80px 0; }
  .zv2 .hero { padding: 48px 0 80px; }
  .zv2 .footer-grid { grid-template-columns: 1fr 1fr; }
  .zv2 .cta-banner { padding: 56px 32px; }
}
@media (max-width: 540px) {
  .zv2 .container { padding: 0 20px; }
  .zv2 .footer-grid { grid-template-columns: 1fr; }
  .zv2 .bd-pipeline { grid-template-columns: 1fr; }
  .zv2 .persona-tabs { flex-wrap: wrap; }
}

/* ============= ABOUT — HERO ============= */
.zv2 .about-hero { padding: 96px 0 80px; position: relative; overflow: hidden;
  background:
    radial-gradient(900px 500px at 90% 20%, var(--lemon-soft) 0%, transparent 60%),
    radial-gradient(700px 400px at 0% 100%, var(--purple-soft) 0%, transparent 60%),
    var(--bg-cream); }
.zv2 .about-hero-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px; align-items: end; }
.zv2 .about-hero h1 { font-size: clamp(44px, 5.6vw, 76px); letter-spacing: -0.04em; line-height: 1.0; }
.zv2 .about-hero h1 em { font-family: var(--serif); font-style: italic; font-weight: 500; color: var(--purple); }
.zv2 .about-hero h1 .highlight { position: relative; display: inline-block; color: var(--purple); }
.zv2 .about-hero h1 .highlight::after { content: ''; position: absolute; bottom: 4px; left: -4px; right: -4px; height: 14px; background: var(--lemon); z-index: -1; border-radius: 4px; }
.zv2 .about-hero p { font-size: 18.5px; color: var(--ink-2); line-height: 1.55; }

/* ============= ABOUT — STORY ============= */
.zv2 .story-section { padding: 112px 0; background: #fff; }
.zv2 .story-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; }
.zv2 .story-grid h3 { font-size: clamp(28px, 3vw, 40px); letter-spacing: -0.025em; line-height: 1.1; }
.zv2 .story-grid h3 em { font-family: var(--serif); font-style: italic; font-weight: 500; color: var(--purple); }
.zv2 .story-text p { font-size: 17px; color: var(--ink-2); line-height: 1.65; margin-bottom: 18px; }
.zv2 .story-text p:first-of-type::first-letter { font-family: var(--serif); font-size: 56px; float: left; line-height: 0.85; margin: 6px 12px 0 0; color: var(--purple); font-weight: 500; }

/* ============= ABOUT — VALUES ============= */
.zv2 .values-section { padding: 112px 0; background: var(--purple-tint); }
.zv2 .values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.zv2 .value-card { background: #fff; border-radius: 24px; padding: 36px; border: 2px solid transparent; transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.zv2 .value-card:hover { transform: translateY(-4px); border-color: var(--purple); box-shadow: 0 16px 32px -8px rgba(83,56,123,0.1); }
.zv2 .value-num { font-family: var(--serif); font-style: italic; font-size: 36px; color: var(--purple); line-height: 1; margin-bottom: 16px; font-weight: 500; }
.zv2 .value-card h3 { font-size: 22px; margin-bottom: 12px; letter-spacing: -0.02em; }
.zv2 .value-card p { color: var(--ink-2); font-size: 15.5px; line-height: 1.6; }

/* ============= AUDIENCE (who we serve) ============= */
.zv2 .audience-section { padding: 112px 0; background: #fff; }
.zv2 .audience-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.zv2 .audience-card { background: #fff; border: 2px solid var(--line); border-radius: 24px; padding: 40px; transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; position: relative; overflow: hidden; }
.zv2 .audience-card::before { content: ''; position: absolute; top: -40px; right: -40px; width: 180px; height: 180px; border-radius: 50%; opacity: 0.5; }
.zv2 .audience-card.new::before { background: var(--coral-soft); }
.zv2 .audience-card.established::before { background: var(--mint-soft); }
.zv2 .audience-card:hover { transform: translateY(-4px); border-color: var(--purple); box-shadow: 0 16px 32px -8px rgba(31,27,46,0.1); }
.zv2 .audience-card .icon { width: 56px; height: 56px; border-radius: 16px; background: var(--purple); color: #fff; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; position: relative; z-index: 1; }
.zv2 .audience-card h3 { font-size: 24px; margin-bottom: 14px; letter-spacing: -0.02em; line-height: 1.2; position: relative; z-index: 1; }
.zv2 .audience-card h3 em { font-family: var(--serif); font-style: italic; font-weight: 500; color: var(--purple); }
.zv2 .audience-card p { color: var(--ink-2); font-size: 15.5px; line-height: 1.6; margin-bottom: 24px; position: relative; z-index: 1; }
.zv2 .audience-card .cta { font-size: 14.5px; font-weight: 700; color: var(--purple); display: inline-flex; align-items: center; gap: 6px; position: relative; z-index: 1; }
.zv2 .audience-card .cta::after { content: '\2192'; transition: transform 0.2s ease; }
.zv2 .audience-card:hover .cta::after { transform: translateX(4px); }

/* ============= CONTACT ============= */
.zv2 .contact-hero { padding: 96px 0; position: relative; overflow: hidden;
  background:
    radial-gradient(900px 500px at 0% 0%, var(--coral-soft) 0%, transparent 60%),
    radial-gradient(700px 400px at 100% 100%, var(--mint-soft) 0%, transparent 60%),
    var(--bg); }
.zv2 .contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; }
.zv2 .contact-info h1 { font-size: clamp(40px, 5vw, 60px); letter-spacing: -0.035em; line-height: 1.05; margin-top: 14px; }
.zv2 .contact-info h1 em { font-family: var(--serif); font-style: italic; font-weight: 500; color: var(--purple); }
.zv2 .contact-info h1 .highlight { position: relative; display: inline-block; color: var(--purple); }
.zv2 .contact-info h1 .highlight::after { content: ''; position: absolute; bottom: 4px; left: -4px; right: -4px; height: 12px; background: var(--lemon); z-index: -1; border-radius: 4px; }
.zv2 .contact-info > p { font-size: 18px; color: var(--ink-2); line-height: 1.55; margin: 24px 0 36px; max-width: 460px; }
.zv2 .contact-detail { padding: 20px 0; border-top: 1px solid var(--line); display: grid; grid-template-columns: 130px 1fr; gap: 16px; align-items: start; }
.zv2 .contact-detail:last-child { border-bottom: 1px solid var(--line); }
.zv2 .contact-detail-label { color: var(--muted); font-size: 12px; padding-top: 4px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; }
.zv2 .contact-detail-value { font-size: 16px; color: var(--ink); }
.zv2 .contact-detail-value a { border-bottom: 2px solid var(--purple-soft); padding-bottom: 1px; transition: border-color 0.2s ease; }
.zv2 .contact-detail-value a:hover { border-bottom-color: var(--purple); }
.zv2 form.contact-form { background: #fff; border: 1px solid var(--line); border-radius: 24px; padding: 40px; box-shadow: 0 16px 40px -16px rgba(31,27,46,0.08); }
.zv2 .form-title { font-size: 24px; margin-bottom: 6px; letter-spacing: -0.02em; }
.zv2 .form-subtitle { color: var(--muted); font-size: 14.5px; margin-bottom: 28px; }
.zv2 .field { margin-bottom: 18px; }
.zv2 .field label { display: block; font-size: 13.5px; color: var(--ink-2); margin-bottom: 8px; font-weight: 600; }
.zv2 .field input, .zv2 .field textarea, .zv2 .field select { width: 100%; padding: 14px 16px; background: var(--bg-cream); border: 1px solid var(--line); border-radius: 12px; font-size: 15px; color: var(--ink); font-family: inherit; transition: border-color .18s ease, background .18s ease, box-shadow .18s ease; }
.zv2 .field input:focus, .zv2 .field textarea:focus, .zv2 .field select:focus { outline: none; border-color: var(--purple); background: #fff; box-shadow: 0 0 0 3px rgba(83,56,123,0.1); }
.zv2 .field textarea { resize: vertical; min-height: 120px; }
.zv2 .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.zv2 .form-submit { width: 100%; justify-content: center; padding: 16px; font-size: 15px; }
.zv2 .form-note { font-size: 12.5px; color: var(--muted); margin-top: 14px; text-align: center; line-height: 1.5; }

/* ---- responsive (about / contact) ---- */
@media (max-width: 980px) {
  .zv2 .about-hero-grid, .zv2 .story-grid, .zv2 .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .zv2 .values-grid, .zv2 .audience-grid { grid-template-columns: 1fr; }
}
