/* =========================================================
   Agentra + Wizdom — Signity Design System
   Theme: Navy + Orange · Poppins (display) + Inter (body)
   Two-product device:  Wizdom = blue · Agentra = orange
   ========================================================= */

:root {
  /* Brand */
  --navy: #0B1B33;
  --navy-800: #122444;
  --navy-700: #1B3258;
  --ink: #0B1B33;
  --ink-2: #34425A;
  --muted: #6B788C;
  --line: #E3E8F0;
  --line-2: #EEF2F8;
  --paper: #F7F9FC;
  --paper-2: #EEF3FA;
  --white: #FFFFFF;

  /* Wizdom = blue */
  --blue: #1F6FEB;
  --blue-700: #1659C4;
  --blue-soft: #E7F0FE;

  /* Agentra = orange (primary CTA/action) */
  --orange: #FF6A2C;
  --orange-600: #ED5A1E;
  --orange-soft: #FFEDE3;

  /* Supporting */
  --teal: #12B5A5;
  --teal-soft: #DCF6F2;
  --violet: #7C5CFC;
  --violet-soft: #ECE7FF;
  --green: #16A34A;

  /* Accent default = orange */
  --accent: var(--orange);
  --accent-soft: var(--orange-soft);
  --accent-glow: rgba(255,106,44,0.22);

  /* Type */
  --display: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Layout */
  --maxw: 1200px;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow-sm: 0 1px 2px rgba(11,27,51,0.05), 0 4px 16px rgba(11,27,51,0.05);
  --shadow-md: 0 10px 34px rgba(11,27,51,0.10);
  --shadow-lg: 0 26px 70px rgba(11,27,51,0.16);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans); color: var(--ink); background: var(--paper);
  line-height: 1.6; font-size: 17px; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
svg { display: block; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--display); font-weight: 600; line-height: 1.1; letter-spacing: -0.02em; color: var(--navy); }
.display { font-size: clamp(2.5rem, 5.4vw, 4.4rem); font-weight: 700; line-height: 1.04; letter-spacing: -0.03em; }
h2.section-title { font-size: clamp(1.9rem, 3.8vw, 3rem); font-weight: 700; }
h3 { font-size: 1.3rem; }
.lede { font-size: clamp(1.08rem, 1.5vw, 1.3rem); color: var(--ink-2); line-height: 1.5; }
p { color: var(--ink-2); }
strong { color: var(--ink); font-weight: 600; }
em { font-style: normal; }

/* ---------- Layout helpers ---------- */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.section { padding: clamp(60px, 8vw, 116px) 0; }
.section--tight { padding: clamp(44px, 6vw, 76px) 0; }
.center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px; font-family: var(--sans);
  font-size: 0.76rem; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; color: var(--orange);
}
.eyebrow::before { content: ""; width: 18px; height: 2px; background: var(--orange); display: inline-block; border-radius: 2px; }
.eyebrow.blue { color: var(--blue); } .eyebrow.blue::before { background: var(--blue); }
.eyebrow.center-eb { justify-content: center; }
.section-head { max-width: 780px; }
.section-head.center { margin: 0 auto; }
.section-head h2 { margin: 16px 0 18px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px; font-family: var(--sans); font-weight: 600; font-size: 0.97rem;
  padding: 14px 26px; border-radius: 100px; border: 1.5px solid transparent; cursor: pointer; transition: all .22s ease; white-space: nowrap;
}
.btn--primary { background: var(--orange); color: #fff; box-shadow: 0 8px 22px var(--accent-glow); }
.btn--primary:hover { background: var(--orange-600); transform: translateY(-2px); box-shadow: 0 14px 32px var(--accent-glow); }
.btn--blue { background: var(--blue); color: #fff; box-shadow: 0 8px 22px rgba(31,111,235,0.22); }
.btn--blue:hover { background: var(--blue-700); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--navy); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--navy); background: var(--navy); color: #fff; }
.btn--light { background: #fff; color: var(--navy); border-color: var(--line); }
.btn--light:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn .arrow { transition: transform .22s ease; }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(247,249,252,0.85); backdrop-filter: saturate(180%) blur(14px); border-bottom: 1px solid transparent; transition: border-color .3s, background .3s; }
.site-header.scrolled { border-color: var(--line); background: rgba(255,255,255,0.9); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.brand { display: flex; align-items: center; gap: 11px; font-family: var(--display); font-weight: 700; font-size: 1.12rem; letter-spacing: -0.02em; color: var(--navy); }
.brand .logo-mark { width: 34px; height: 34px; border-radius: 10px; background: linear-gradient(135deg, var(--navy), var(--blue)); display: grid; place-items: center; color: #fff; font-family: var(--display); font-weight: 700; font-size: 1.1rem; box-shadow: 0 4px 12px rgba(31,111,235,0.3); position: relative; }
.brand .logo-mark::after { content: ""; position: absolute; right: -3px; bottom: -3px; width: 12px; height: 12px; border-radius: 50%; background: var(--orange); border: 2px solid var(--paper); }
.brand small { display: block; font-family: var(--sans); font-size: 0.62rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); margin-top: -1px; }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a { font-size: 0.95rem; font-weight: 500; color: var(--ink-2); transition: color .18s; position: relative; }
.nav-links a:hover, .nav-links a.active { color: var(--navy); }
.nav-links a.active::after { content: ""; position: absolute; left: 0; bottom: -7px; width: 100%; height: 2px; background: var(--orange); border-radius: 2px; }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--navy); margin: 4px 0; transition: .25s; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding: clamp(52px, 8vw, 96px) 0 clamp(36px, 5vw, 64px); }
.hero::before { content: ""; position: absolute; top: -180px; right: -160px; width: 540px; height: 540px; border-radius: 50%; background: radial-gradient(circle, rgba(31,111,235,0.10), transparent 62%); pointer-events: none; }
.hero::after { content: ""; position: absolute; bottom: -200px; left: -160px; width: 520px; height: 520px; border-radius: 50%; background: radial-gradient(circle, rgba(255,106,44,0.10), transparent 62%); pointer-events: none; }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.04fr 0.96fr; gap: 54px; align-items: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 9px; padding: 7px 15px 7px 11px; background: #fff; border: 1px solid var(--line); border-radius: 100px; font-size: 0.82rem; font-weight: 500; color: var(--ink-2); box-shadow: var(--shadow-sm); margin-bottom: 24px; }
.hero-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 4px rgba(18,181,165,0.18); }
.hero h1 { margin-bottom: 22px; }
.hero h1 .em-blue { color: var(--blue); } .hero h1 .em-orange { color: var(--orange); }
.hero .lede { max-width: 560px; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-note { margin-top: 22px; font-size: 0.86rem; color: var(--muted); display: flex; gap: 18px; flex-wrap: wrap; }
.hero-note span { display: inline-flex; align-items: center; gap: 7px; }
.hero-note .tick { color: var(--orange); font-weight: 800; }

/* ---------- Generic reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; } .reveal.d3 { transition-delay: .24s; } .reveal.d4 { transition-delay: .32s; } .reveal.d5 { transition-delay: .4s; }

/* =========================================================
   INFOGRAPHIC COMPONENTS
   ========================================================= */

/* ---- Hero product orbit card ---- */
.hero-stack { position: relative; }
.prod-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 22px; }
.prod-card + .prod-card { margin-top: 16px; }
.prod-card .pc-head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.prod-card .pc-badge { width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; color: #fff; font-family: var(--display); font-weight: 700; flex: none; }
.prod-card.is-wisdom .pc-badge { background: linear-gradient(135deg, var(--blue), #4D8DF5); }
.prod-card.is-agentra .pc-badge { background: linear-gradient(135deg, var(--orange), #FF8A5C); }
.prod-card .pc-title { font-family: var(--display); font-weight: 600; font-size: 1.02rem; color: var(--navy); }
.prod-card .pc-sub { font-size: 0.76rem; color: var(--muted); }
.prod-card .pc-tag { margin-left: auto; font-size: 0.66rem; font-weight: 700; padding: 4px 10px; border-radius: 100px; text-transform: uppercase; letter-spacing: 0.04em; }
.prod-card.is-wisdom .pc-tag { color: var(--blue); background: var(--blue-soft); }
.prod-card.is-agentra .pc-tag { color: var(--orange-600); background: var(--orange-soft); }
.prod-card .pc-body { font-size: 0.9rem; color: var(--ink-2); }
.prod-card .pc-chips { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 14px; }
.pc-chip { font-size: 0.72rem; font-weight: 600; color: var(--ink-2); border: 1px solid var(--line); padding: 5px 11px; border-radius: 100px; background: var(--paper); }
.hero-connector { text-align: center; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); padding: 6px 0; }
.hero-float { position: absolute; background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow-md); padding: 12px 15px; }
.hero-float .num { font-family: var(--display); font-weight: 700; font-size: 1.4rem; line-height: 1; }
.hero-float .lbl { color: var(--muted); font-weight: 500; font-size: 0.7rem; margin-top: 3px; }
.hero-float.f1 { top: -20px; right: -14px; } .hero-float.f1 .num { color: var(--blue); }
.hero-float.f2 { bottom: -18px; left: -20px; } .hero-float.f2 .num { color: var(--orange); }

/* ---- Trust strip ---- */
.trust { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--white); }
.trust .container { padding-top: 28px; padding-bottom: 28px; }
.trust p { text-align: center; font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); font-weight: 700; margin-bottom: 18px; }
.trust-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 34px; align-items: center; }
.trust-badge { font-weight: 600; color: var(--ink-2); font-size: 0.92rem; display: inline-flex; align-items: center; gap: 9px; }
.trust-badge svg { color: var(--blue); }

/* ---- Two products split ---- */
.twoprod { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.tp { border-radius: var(--radius); padding: 34px 32px; position: relative; overflow: hidden; border: 1px solid var(--line); background: #fff; transition: transform .25s, box-shadow .25s; }
.tp:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.tp .tp-top { display: flex; align-items: center; gap: 13px; margin-bottom: 18px; }
.tp .tp-ico { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; color: #fff; flex: none; }
.tp.wisdom { border-top: 4px solid var(--blue); } .tp.wisdom .tp-ico { background: linear-gradient(135deg, var(--blue), #4D8DF5); }
.tp.agentra { border-top: 4px solid var(--orange); } .tp.agentra .tp-ico { background: linear-gradient(135deg, var(--orange), #FF8A5C); }
.tp h3 { font-size: 1.4rem; }
.tp .tp-kicker { font-size: 0.74rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; }
.tp.wisdom .tp-kicker { color: var(--blue); } .tp.agentra .tp-kicker { color: var(--orange-600); }
.tp p { font-size: 0.97rem; margin-bottom: 18px; }
.tp ul { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 22px; }
.tp li { font-size: 0.92rem; color: var(--ink-2); display: flex; gap: 10px; align-items: flex-start; }
.tp li::before { content: ""; width: 18px; height: 18px; border-radius: 50%; flex: none; margin-top: 1px; background-repeat: no-repeat; background-position: center; }
.tp.wisdom li::before { background-color: var(--blue-soft); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='11' viewBox='0 0 24 24' fill='none' stroke='%231F6FEB' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E"); }
.tp.agentra li::before { background-color: var(--orange-soft); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='11' viewBox='0 0 24 24' fill='none' stroke='%23ED5A1E' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E"); }
.tp .tp-foot { font-size: 0.8rem; color: var(--muted); padding-top: 16px; border-top: 1px dashed var(--line); }

/* ---- Layered architecture diagram ---- */
.arch { background: var(--navy); border-radius: var(--radius); padding: clamp(26px, 4vw, 44px); position: relative; overflow: hidden; }
.arch::before { content: ""; position: absolute; inset: 0; background: radial-gradient(70% 60% at 85% 0%, rgba(31,111,235,0.22), transparent 60%), radial-gradient(60% 60% at 0% 100%, rgba(255,106,44,0.16), transparent 60%); }
.arch > * { position: relative; }
.arch-legend { display: flex; flex-wrap: wrap; gap: 8px 18px; margin-bottom: 22px; }
.arch-legend span { font-size: 0.76rem; color: rgba(255,255,255,0.7); display: inline-flex; align-items: center; gap: 7px; }
.arch-legend .key { width: 11px; height: 11px; border-radius: 3px; display: inline-block; }
.lyr { display: grid; grid-template-columns: 150px 1fr; gap: 14px; align-items: stretch; margin-bottom: 12px; }
.lyr:last-child { margin-bottom: 0; }
.lyr-tag { display: flex; align-items: center; font-family: var(--display); font-weight: 600; font-size: 0.82rem; color: rgba(255,255,255,0.92); letter-spacing: 0.01em; padding-left: 14px; border-left: 3px solid rgba(255,255,255,0.25); }
.lyr-cells { display: flex; gap: 10px; flex-wrap: wrap; }
.cell { flex: 1 1 0; min-width: 120px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: 11px; padding: 13px 14px; color: #fff; }
.cell b { display: block; font-family: var(--display); font-weight: 600; font-size: 0.86rem; margin-bottom: 3px; }
.cell small { font-size: 0.72rem; color: rgba(255,255,255,0.62); line-height: 1.4; display: block; }
.cell.blue { background: rgba(31,111,235,0.18); border-color: rgba(77,141,245,0.5); }
.cell.orange { background: rgba(255,106,44,0.16); border-color: rgba(255,138,92,0.5); }
.cell.teal { background: rgba(18,181,165,0.16); border-color: rgba(18,181,165,0.5); }
.cell.violet { background: rgba(124,92,252,0.18); border-color: rgba(124,92,252,0.5); }
.lyr-split { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.arch-flowtag { text-align: center; color: rgba(255,255,255,0.45); font-size: 1.1rem; margin: 2px 0; }
.lyr-tag.blue { border-color: var(--blue); } .lyr-tag.orange { border-color: var(--orange); } .lyr-tag.teal { border-color: var(--teal); } .lyr-tag.violet { border-color: var(--violet); }

/* ---- Horizontal stepper (pipelines/loops) ---- */
.stepper { display: flex; gap: 0; flex-wrap: wrap; align-items: stretch; }
.step { flex: 1 1 0; min-width: 132px; position: relative; padding: 0 8px; }
.step-card { background: #fff; border: 1px solid var(--line); border-radius: 13px; padding: 18px 16px; height: 100%; transition: transform .2s, box-shadow .2s; }
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.step-n { width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center; font-family: var(--display); font-weight: 700; font-size: 0.85rem; margin-bottom: 12px; }
.step-card h4 { font-size: 0.96rem; margin-bottom: 4px; }
.step-card p { font-size: 0.8rem; color: var(--muted); }
.stepper.blue .step-n { background: var(--blue-soft); color: var(--blue); }
.stepper.orange .step-n { background: var(--orange-soft); color: var(--orange-600); }
.stepper.teal .step-n { background: var(--teal-soft); color: var(--teal); }
.step:not(:last-child)::after { content: "→"; position: absolute; right: -9px; top: 50%; transform: translateY(-50%); color: var(--line); font-weight: 700; z-index: 2; }

/* ---- Integration / MCP mesh ---- */
.mesh { display: grid; grid-template-columns: 1fr 1.1fr 1fr; gap: 18px; align-items: center; }
.mesh-col { display: flex; flex-direction: column; gap: 12px; }
.mesh-node { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 14px 16px; box-shadow: var(--shadow-sm); }
.mesh-node b { font-family: var(--display); font-weight: 600; font-size: 0.9rem; color: var(--navy); display: block; }
.mesh-node small { font-size: 0.76rem; color: var(--muted); }
.mesh-hub { background: var(--navy); color: #fff; border-radius: var(--radius); padding: 24px; text-align: center; box-shadow: var(--shadow-lg); }
.mesh-hub .mh-ico { width: 52px; height: 52px; border-radius: 14px; background: linear-gradient(135deg, var(--blue), var(--violet)); display: grid; place-items: center; margin: 0 auto 12px; }
.mesh-hub h4 { color: #fff; font-size: 1.05rem; margin-bottom: 6px; }
.mesh-hub p { color: rgba(255,255,255,0.7); font-size: 0.82rem; }
.mesh-hub .mh-tags { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; margin-top: 14px; }
.mesh-hub .mh-tags span { font-size: 0.68rem; font-weight: 600; padding: 4px 9px; border-radius: 100px; background: rgba(255,255,255,0.1); color: #fff; }
.mesh-node.rw { border-left: 3px solid var(--blue); } .mesh-node.wr { border-left: 3px solid var(--orange); }
.tag-rw { font-size: 0.62rem; font-weight: 700; text-transform: uppercase; padding: 2px 7px; border-radius: 5px; margin-left: 6px; }
.tag-rw.read { color: var(--blue); background: var(--blue-soft); } .tag-rw.write { color: var(--orange-600); background: var(--orange-soft); } .tag-rw.fin { color: #B42318; background: #FEE4E2; }

/* ---- Pillars / generic feature cards ---- */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 18px; }
.pcard { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 24px 22px; transition: transform .22s, box-shadow .22s; display: flex; flex-direction: column; }
.pcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pcard .pc-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 10px; margin-bottom: 13px; }
.pcard h3 { font-size: 1.05rem; }
.pcard .pc-tag { font-size: 0.66rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--blue); background: var(--blue-soft); padding: 4px 9px; border-radius: 100px; white-space: nowrap; }
.pcard .pc-tag.orange { color: var(--orange-600); background: var(--orange-soft); }
.pcard p { font-size: 0.9rem; margin-bottom: 14px; flex: 1; }
.pcard .pc-impact { font-size: 0.82rem; font-weight: 600; color: var(--green); display: inline-flex; align-items: center; gap: 7px; padding-top: 13px; border-top: 1px solid var(--line); }

.tenets-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 14px; }
.tenet { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 20px; transition: transform .2s, box-shadow .2s; }
.tenet:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.tenet .tn { font-family: var(--display); font-weight: 700; font-size: 0.78rem; color: var(--orange-600); background: var(--orange-soft); width: 38px; height: 26px; border-radius: 7px; display: grid; place-items: center; margin-bottom: 12px; }
.tenet h4 { font-size: 0.96rem; margin-bottom: 5px; }
.tenet p { font-size: 0.83rem; color: var(--muted); }

/* ---- Industry packs grid ---- */
.packs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pack { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; transition: transform .25s, box-shadow .25s; position: relative; display: flex; flex-direction: column; }
.pack:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.pack .pk-ico { width: 50px; height: 50px; border-radius: 13px; background: var(--navy); color: #fff; display: grid; place-items: center; font-size: 1.4rem; margin-bottom: 16px; }
.pack h3 { font-size: 1.2rem; margin-bottom: 8px; }
.pack p { font-size: 0.89rem; margin-bottom: 16px; flex: 1; }
.pack .pk-meta { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.pk-pill { font-size: 0.7rem; font-weight: 600; padding: 4px 10px; border-radius: 100px; background: var(--paper-2); color: var(--ink-2); }
.pk-pill.agents { background: var(--orange-soft); color: var(--orange-600); }
.pack .pk-link { font-size: 0.86rem; font-weight: 600; color: var(--blue); display: inline-flex; align-items: center; gap: 7px; }
.pack .pk-link .arrow { transition: transform .2s; } .pack:hover .pk-link .arrow { transform: translateX(4px); }

/* ---- Agent card (pack pages) ---- */
.agent-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.agent { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 22px; transition: transform .2s, box-shadow .2s; display: flex; flex-direction: column; }
.agent:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.agent .ag-top { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.agent h4 { font-size: 1.02rem; }
.collar { font-size: 0.64rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; padding: 3px 9px; border-radius: 100px; }
.collar.white { color: var(--blue); background: var(--blue-soft); }
.collar.blue { color: var(--teal); background: var(--teal-soft); }
.agent p { font-size: 0.86rem; color: var(--ink-2); margin-bottom: 14px; flex: 1; }
.agent .ag-foot { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; font-size: 0.74rem; color: var(--muted); padding-top: 13px; border-top: 1px solid var(--line); }
.agent .ag-sys { font-weight: 600; color: var(--ink-2); }
.lat { margin-left: auto; font-family: var(--display); font-weight: 600; font-size: 0.74rem; color: var(--navy); background: var(--paper-2); padding: 3px 9px; border-radius: 7px; }

/* ---- Stats band ---- */
.stats-band { background: var(--navy); color: #fff; border-radius: var(--radius); padding: clamp(40px, 6vw, 64px); position: relative; overflow: hidden; }
.stats-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 80% at 90% 0%, rgba(255,106,44,0.16), transparent 55%), radial-gradient(50% 80% at 0% 100%, rgba(31,111,235,0.2), transparent 55%); }
.stats-band > * { position: relative; }
.stats-band .eyebrow { color: #FFB08A; } .stats-band .eyebrow::before { background: #FFB08A; }
.stats-band h2 { color: #fff; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-top: 40px; }
.stat .num { font-family: var(--display); font-weight: 700; font-size: clamp(2.2rem, 4vw, 3.1rem); line-height: 1; color: #fff; letter-spacing: -0.02em; }
.stat .num .u { color: #FFB08A; }
.stat .lbl { margin-top: 11px; font-size: 0.9rem; color: rgba(255,255,255,0.72); }

/* ---- Split (generic) ---- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-md); }
.split-media.dark { background: var(--navy); color: #fff; border-color: transparent; }
.flow { display: flex; flex-direction: column; }
.flow-step { display: flex; gap: 16px; padding: 14px 0; position: relative; }
.flow-step:not(:last-child)::after { content: ""; position: absolute; left: 17px; top: 44px; bottom: -6px; width: 2px; background: var(--line); }
.split-media.dark .flow-step:not(:last-child)::after { background: rgba(255,255,255,0.16); }
.flow-num { width: 36px; height: 36px; border-radius: 10px; flex: none; display: grid; place-items: center; font-family: var(--display); font-weight: 700; font-size: 0.92rem; background: var(--blue-soft); color: var(--blue); z-index: 1; }
.split-media.dark .flow-num { background: rgba(31,111,235,0.3); color: #fff; }
.flow-step h4 { font-size: 0.98rem; margin-bottom: 3px; }
.flow-step p { font-size: 0.86rem; color: var(--muted); }
.split-media.dark .flow-step p { color: rgba(255,255,255,0.74); }

/* ---- Channels ---- */
.chan-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.chan { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 22px; transition: transform .2s, box-shadow .2s; }
.chan:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.chan .ch-ico { font-size: 1.5rem; margin-bottom: 12px; }
.chan h4 { font-size: 1rem; margin-bottom: 6px; }
.chan p { font-size: 0.85rem; color: var(--muted); }

/* ---- Pillars (3-up) ---- */
.pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.pillar { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px; transition: transform .25s, box-shadow .25s; }
.pillar:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.pillar .p-ico { width: 50px; height: 50px; border-radius: 13px; background: var(--blue-soft); color: var(--blue); display: grid; place-items: center; margin-bottom: 20px; }
.pillar h3 { margin-bottom: 11px; }
.pillar p { font-size: 0.95rem; }

/* ---- CTA band ---- */
.cta-band { position: relative; overflow: hidden; background: linear-gradient(120deg, var(--navy) 0%, var(--navy-700) 45%, #C9491A 120%); border-radius: var(--radius); padding: clamp(46px, 7vw, 82px); text-align: center; color: #fff; }
.cta-band::after { content: ""; position: absolute; inset: 0; background: radial-gradient(55% 80% at 82% 12%, rgba(255,106,44,0.4), transparent 55%); pointer-events: none; }
.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; font-size: clamp(1.9rem, 4vw, 3rem); margin-bottom: 16px; }
.cta-band p { color: rgba(255,255,255,0.86); font-size: 1.1rem; max-width: 580px; margin: 0 auto 30px; }
.cta-band .btn--primary { background: #fff; color: var(--orange-600); }
.cta-band .btn--primary:hover { background: var(--paper); }
.cta-band .btn--ghost { border-color: rgba(255,255,255,0.45); color: #fff; }
.cta-band .btn--ghost:hover { background: #fff; color: var(--navy); border-color: #fff; }

/* ---- Page hero ---- */
.page-hero { position: relative; padding: clamp(54px, 8vw, 92px) 0 clamp(18px, 4vw, 38px); }
.page-hero h1 { font-size: clamp(2.3rem, 5vw, 3.8rem); margin: 16px 0 20px; }
.page-hero .lede { max-width: 680px; }
.page-hero.dark { background: var(--navy); }
.page-hero.dark h1 { color: #fff; } .page-hero.dark .lede { color: rgba(255,255,255,0.78); }

/* ---- Connector / app logo strip ---- */
.applogos { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 26px; align-items: center; }
.applogo { display: inline-flex; align-items: center; gap: 9px; font-size: 0.92rem; font-weight: 600; color: var(--ink-2); }
.applogo i { width: 30px; height: 30px; border-radius: 8px; background: #fff; display: grid; place-items: center; border: 1px solid var(--line); overflow: hidden; box-shadow: 0 1px 2px rgba(11,27,51,0.05); }
.applogo i svg { width: 20px; height: 20px; display: block; }

/* ---- Animated multi-agent flow hero (Agentra) ---- */
.ag-hero-grid { display: grid; grid-template-columns: 1.02fr 0.98fr; gap: 48px; align-items: center; }
.agflow { position: relative; border-radius: var(--radius); background: linear-gradient(150deg, var(--navy), var(--navy-700) 72%); padding: 22px; box-shadow: var(--shadow-lg); overflow: hidden; }
.agflow::before { content: ""; position: absolute; inset: 0; background: radial-gradient(55% 60% at 85% 6%, rgba(255,106,44,0.20), transparent 60%), radial-gradient(55% 60% at 8% 95%, rgba(31,111,235,0.20), transparent 60%); pointer-events: none; }
.agflow svg { width: 100%; height: auto; display: block; position: relative; }
.agflow .wire { fill: none; stroke-linecap: round; stroke-dasharray: 5 9; animation: agflow-dash 1.1s linear infinite; }
@keyframes agflow-dash { to { stroke-dashoffset: -28; } }
.agflow .halo { fill: none; transform-box: fill-box; transform-origin: center; animation: agflow-pulse 2.8s ease-in-out infinite; }
@keyframes agflow-pulse { 0%, 100% { opacity: 0.12; transform: scale(1); } 50% { opacity: 0.55; transform: scale(1.06); } }
.agflow .hl2 { animation-delay: .5s; } .agflow .hl3 { animation-delay: 1s; } .agflow .hl4 { animation-delay: 1.5s; } .agflow .hl5 { animation-delay: 2s; }
.agflow .nlabel { font-family: var(--display); font-weight: 600; fill: #fff; }
.agflow .nsub { font-family: var(--sans); fill: rgba(255,255,255,0.62); }
.agflow .token { filter: drop-shadow(0 0 4px rgba(255,255,255,0.5)); }
.agflow-cap { display: flex; flex-wrap: wrap; gap: 8px 16px; margin-top: 14px; }
.agflow-cap span { font-size: 0.74rem; color: rgba(255,255,255,0.72); display: inline-flex; align-items: center; gap: 7px; }
.agflow-cap .k { width: 10px; height: 10px; border-radius: 3px; display: inline-block; }
@media (prefers-reduced-motion: reduce) {
  .agflow .wire, .agflow .halo { animation: none; }
  .agflow .token { display: none; }
}
@media (max-width: 980px) {
  .ag-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .agflow { max-width: 560px; }
}

/* ---- Pack hero illustration ---- */
.ph-grid { display: grid; grid-template-columns: 1.04fr 0.96fr; gap: 50px; align-items: center; }
.ph-copy { min-width: 0; }
.pack-figure { position: relative; border-radius: var(--radius); background: linear-gradient(150deg, var(--navy), var(--navy-700) 70%); padding: 30px; box-shadow: var(--shadow-lg); overflow: hidden; }
.pack-figure::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 70% at 82% 8%, rgba(255,106,44,0.22), transparent 60%), radial-gradient(60% 70% at 8% 95%, rgba(31,111,235,0.22), transparent 60%); pointer-events: none; }
.pack-figure svg { width: 100%; height: auto; position: relative; display: block; }
.pf-chip { position: absolute; z-index: 2; background: #fff; border-radius: 12px; box-shadow: var(--shadow-md); padding: 10px 13px; font-size: 0.82rem; font-weight: 600; color: var(--navy); display: flex; gap: 9px; align-items: center; }
.pf-chip .led { width: 9px; height: 9px; border-radius: 50%; flex: none; }
.pf-chip .led.blue { background: var(--blue); box-shadow: 0 0 0 4px rgba(31,111,235,0.15); }
.pf-chip .led.orange { background: var(--orange); box-shadow: 0 0 0 4px rgba(255,106,44,0.15); }
.pf-chip .led.teal { background: var(--teal); box-shadow: 0 0 0 4px rgba(18,181,165,0.15); }
.pf-chip small { display: block; font-size: 0.68rem; color: var(--muted); font-weight: 500; margin-top: 1px; }
.pf-chip.c1 { top: 16px; left: -14px; }
.pf-chip.c2 { bottom: 18px; right: -12px; }
@media (max-width: 980px) {
  .ph-grid { grid-template-columns: 1fr; gap: 38px; }
  .pack-figure { max-width: 520px; }
  .pf-chip.c1 { left: 8px; } .pf-chip.c2 { right: 8px; }
}

/* ---- Contact ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; align-items: start; }
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow-md); }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--ink-2); margin-bottom: 7px; }
.field input, .field select, .field textarea { width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 11px; font-family: var(--sans); font-size: 0.96rem; color: var(--ink); background: var(--paper); transition: border-color .18s, box-shadow .18s; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 4px var(--accent-glow); background: #fff; }
.field textarea { resize: vertical; min-height: 110px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-success { display: none; padding: 16px; background: var(--teal-soft); border: 1px solid rgba(18,181,165,0.4); border-radius: 11px; color: #0B7E72; font-weight: 600; font-size: 0.9rem; margin-top: 14px; }
.contact-aside .ca-item { display: flex; gap: 14px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.contact-aside .ca-item:last-child { border-bottom: none; }
.contact-aside .ca-ico { width: 42px; height: 42px; border-radius: 11px; background: var(--blue-soft); color: var(--blue); display: grid; place-items: center; flex: none; }
.contact-aside h4 { font-size: 1rem; margin-bottom: 3px; }
.contact-aside p, .contact-aside a { font-size: 0.92rem; color: var(--ink-2); }
.contact-aside a:hover { color: var(--orange); }

/* ---- Accordion ---- */
.acc { border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; background: #fff; }
.acc + .acc { margin-top: 12px; }
.acc summary { cursor: pointer; list-style: none; padding: 22px 24px; font-family: var(--display); font-weight: 600; font-size: 1.02rem; display: flex; justify-content: space-between; align-items: center; color: var(--navy); }
.acc summary::-webkit-details-marker { display: none; }
.acc summary .plus { width: 22px; height: 22px; position: relative; flex: none; }
.acc summary .plus::before, .acc summary .plus::after { content: ""; position: absolute; background: var(--orange); border-radius: 2px; }
.acc summary .plus::before { width: 14px; height: 2px; top: 10px; left: 4px; }
.acc summary .plus::after { width: 2px; height: 14px; top: 4px; left: 10px; transition: transform .25s; }
.acc[open] summary .plus::after { transform: rotate(90deg); opacity: 0; }
.acc .acc-body { padding: 0 24px 24px; color: var(--ink-2); font-size: 0.95rem; }

/* ---- Breadcrumb ---- */
.crumb { font-size: 0.82rem; color: var(--muted); margin-bottom: 6px; }
.crumb a { color: var(--blue); font-weight: 500; } .crumb a:hover { text-decoration: underline; }

/* ---- Agent detail: spec card ---- */
.spec-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-md); overflow: hidden; }
.spec-card .sc-head { background: linear-gradient(135deg, var(--orange), #FF8A5C); color: #fff; padding: 20px 22px; display: flex; align-items: center; gap: 13px; }
.spec-card .sc-head .sc-ic { width: 46px; height: 46px; border-radius: 12px; background: rgba(255,255,255,0.2); display: grid; place-items: center; flex: none; }
.spec-card .sc-head h3 { color: #fff; font-size: 1.2rem; }
.spec-card .sc-head .sc-sub { font-size: 0.8rem; color: rgba(255,255,255,0.85); }
.spec-row { display: flex; justify-content: space-between; gap: 14px; padding: 14px 22px; border-bottom: 1px solid var(--line); font-size: 0.9rem; }
.spec-row:last-child { border-bottom: none; }
.spec-row .k { color: var(--muted); font-weight: 500; }
.spec-row .v { color: var(--ink); font-weight: 600; text-align: right; }

/* ---- Agent detail: transcript ---- */
.transcript { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm); }
.tr-row { display: flex; gap: 12px; margin-bottom: 14px; align-items: flex-start; }
.tr-row.user { flex-direction: row-reverse; }
.tr-av { width: 34px; height: 34px; border-radius: 9px; flex: none; display: grid; place-items: center; font-family: var(--display); font-weight: 700; font-size: 0.82rem; color: #fff; }
.tr-av.cust { background: var(--navy); }
.tr-av.bot { background: linear-gradient(135deg, var(--orange), #FF8A5C); }
.tr-bubble { max-width: 76%; padding: 11px 15px; border-radius: 14px; font-size: 0.92rem; line-height: 1.5; }
.tr-row.user .tr-bubble { background: var(--navy); color: #fff; border-bottom-right-radius: 4px; }
.tr-row.bot .tr-bubble { background: var(--paper-2); color: var(--ink); border-bottom-left-radius: 4px; }
.tr-action { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin: 12px 0; }
.tr-action span { font-size: 0.74rem; font-weight: 600; padding: 5px 12px; border-radius: 100px; display: inline-flex; gap: 7px; align-items: center; }
.tr-action .look { background: var(--blue-soft); color: var(--blue); }
.tr-action .act { background: var(--orange-soft); color: var(--orange-600); }
.tr-action .chk { background: var(--teal-soft); color: #0B7E72; }

/* ---- Agent detail: decision branch ---- */
.branch { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.branch .bcard { border-radius: var(--radius); padding: 24px; border: 1px solid var(--line); background: #fff; }
.branch .bcard.auto { border-top: 4px solid var(--teal); }
.branch .bcard.human { border-top: 4px solid var(--orange); }
.branch .bcard h4 { font-size: 1.05rem; margin-bottom: 4px; display: flex; align-items: center; gap: 9px; }
.branch .bcard .btag { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; padding: 3px 9px; border-radius: 100px; }
.branch .bcard.auto .btag { background: var(--teal-soft); color: #0B7E72; }
.branch .bcard.human .btag { background: var(--orange-soft); color: var(--orange-600); }
.branch .bcard ul { list-style: none; display: flex; flex-direction: column; gap: 9px; margin-top: 14px; }
.branch .bcard li { font-size: 0.9rem; color: var(--ink-2); display: flex; gap: 9px; align-items: flex-start; }
.branch .bcard li::before { content: ""; width: 16px; height: 16px; border-radius: 50%; flex: none; margin-top: 2px; background-repeat: no-repeat; background-position: center; }
.branch .bcard.auto li::before { background-color: var(--teal-soft); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%230B7E72' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E"); }
.branch .bcard.human li::before { background-color: var(--orange-soft); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%23ED5A1E' stroke-width='3' stroke-linecap='round'%3E%3Cpath d='M12 9v4M12 17h.01'/%3E%3C/svg%3E"); }
@media (max-width: 720px) { .branch { grid-template-columns: 1fr; } }

/* ---- FAQ chat demo (use-case pages) ---- */
.faqchat { display: grid; grid-template-columns: 1fr 1.15fr; gap: 22px; align-items: stretch; }
.fq-list { display: flex; flex-direction: column; gap: 10px; }
.fq-hint { font-size: 0.8rem; color: var(--muted); font-weight: 600; margin: 0 0 2px; }
.fq-q { text-align: left; font-family: var(--sans); font-size: 0.92rem; font-weight: 500; color: var(--ink-2); background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 12px 15px; cursor: pointer; transition: all .18s ease; display: flex; justify-content: space-between; gap: 10px; align-items: center; }
.fq-q:hover { border-color: var(--blue); color: var(--navy); box-shadow: var(--shadow-sm); transform: translateX(2px); }
.fq-q.active { border-color: var(--blue); background: var(--blue-soft); color: var(--blue-700); font-weight: 600; }
.fq-q::after { content: "→"; color: var(--blue); opacity: 0; transition: opacity .18s; flex: none; }
.fq-q:hover::after, .fq-q.active::after { opacity: 1; }
.fq-chat { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-md); overflow: hidden; min-height: 440px; }
.fq-head { display: flex; align-items: center; gap: 11px; padding: 14px 18px; background: linear-gradient(135deg, var(--navy), #142A4E); color: #fff; }
.fq-head .av { width: 34px; height: 34px; border-radius: 9px; background: linear-gradient(135deg, var(--blue), #4D8DF5); display: grid; place-items: center; font-family: var(--display); font-weight: 700; }
.fq-head b { font-family: var(--display); font-size: 0.98rem; }
.fq-head small { display: block; font-size: 0.72rem; color: rgba(255,255,255,0.6); }
.fq-head .dot { margin-left: auto; width: 8px; height: 8px; border-radius: 50%; background: #12B5A5; box-shadow: 0 0 0 4px rgba(18,181,165,0.22); }
.fq-body { flex: 1; overflow-y: auto; padding: 20px; display: flex; flex-direction: column; gap: 14px; background: var(--paper); max-height: 460px; }
.fq-row { display: flex; gap: 10px; align-items: flex-end; }
.fq-row.user { flex-direction: row-reverse; }
.fq-av { width: 30px; height: 30px; border-radius: 8px; flex: none; display: grid; place-items: center; font-family: var(--display); font-weight: 700; font-size: 0.8rem; color: #fff; background: linear-gradient(135deg, var(--blue), #4D8DF5); }
.fq-bubble { max-width: 80%; padding: 11px 15px; border-radius: 14px; font-size: 0.92rem; line-height: 1.5; }
.fq-row.user .fq-bubble { background: var(--navy); color: #fff; border-bottom-right-radius: 4px; }
.fq-row.bot .fq-bubble { background: #fff; border: 1px solid var(--line); color: var(--ink); border-bottom-left-radius: 4px; box-shadow: var(--shadow-sm); }
.fq-src { display: flex; align-items: center; gap: 6px; font-size: 0.76rem; font-weight: 600; color: var(--blue); background: var(--blue-soft); padding: 4px 10px; border-radius: 100px; margin-top: 10px; width: fit-content; }
/* rich content inside answer bubbles */
.fq-bubble p { margin: 0 0 8px; } .fq-bubble p:last-child { margin-bottom: 0; }
.fq-bubble ul, .fq-bubble ol { margin: 8px 0 0; padding-left: 18px; display: flex; flex-direction: column; gap: 5px; }
.fq-bubble li { font-size: 0.9rem; }
.fq-badge { display: inline-flex; align-items: center; gap: 5px; font-size: 0.72rem; font-weight: 700; padding: 2px 9px; border-radius: 100px; vertical-align: middle; }
.fq-badge.green { background: var(--teal-soft); color: #0B7E72; }
.fq-badge.blue { background: var(--blue-soft); color: var(--blue); }
.fq-badge.amber { background: var(--orange-soft); color: var(--orange-600); }
.fq-tbl { width: 100%; border-collapse: collapse; margin-top: 8px; font-size: 0.86rem; }
.fq-tbl th, .fq-tbl td { text-align: left; padding: 6px 8px; border-bottom: 1px solid var(--line); }
.fq-tbl th { color: var(--muted); font-weight: 600; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.03em; }
.fq-tbl tr:last-child td { border-bottom: none; }
.fq-kv { display: flex; flex-direction: column; gap: 6px; margin-top: 8px; }
.fq-kv div { display: flex; justify-content: space-between; gap: 12px; font-size: 0.88rem; }
.fq-kv .lbl { color: var(--muted); }
.fq-bar { height: 8px; border-radius: 5px; background: var(--paper-2); overflow: hidden; margin-top: 6px; }
.fq-bar i { display: block; height: 100%; background: var(--blue); border-radius: 5px; }
.fq-typing { display: flex; gap: 4px; align-items: center; }
.fq-typing span { width: 6px; height: 6px; border-radius: 50%; background: var(--muted); animation: fqblink 1s infinite; }
.fq-typing span:nth-child(2) { animation-delay: .2s; } .fq-typing span:nth-child(3) { animation-delay: .4s; }
@keyframes fqblink { 0%, 80%, 100% { opacity: .25; } 40% { opacity: 1; } }
.fq-input { display: flex; align-items: center; gap: 10px; padding: 12px 16px; border-top: 1px solid var(--line); background: #fff; }
.fq-input .box { flex: 1; font-size: 0.86rem; color: var(--muted); }
.fq-input .send { width: 32px; height: 32px; border-radius: 8px; background: var(--blue); display: grid; place-items: center; color: #fff; flex: none; }
@media (max-width: 820px) { .faqchat { grid-template-columns: 1fr; } .fq-chat { min-height: 380px; } }

/* ---- Footer ---- */
.site-footer { background: var(--navy); color: rgba(255,255,255,0.72); padding: 60px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 42px; border-bottom: 1px solid rgba(255,255,255,0.12); }
.site-footer .brand { color: #fff; margin-bottom: 16px; }
.site-footer .brand small { color: rgba(255,255,255,0.5); }
.footer-grid p { color: rgba(255,255,255,0.6); font-size: 0.92rem; max-width: 280px; }
.footer-col h5 { color: #fff; font-family: var(--sans); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: 0.92rem; color: rgba(255,255,255,0.66); transition: color .18s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; font-size: 0.84rem; color: rgba(255,255,255,0.5); flex-wrap: wrap; gap: 12px; }
.footer-badges { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-badges span { display: inline-flex; align-items: center; gap: 6px; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero-stack { max-width: 440px; }
  .twoprod, .split, .contact-grid, .mesh { grid-template-columns: 1fr; gap: 32px; }
  .split.reverse .split-media { order: 0; }
  .packs-grid, .agent-grid, .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .chan-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 26px; }
  .lyr { grid-template-columns: 1fr; gap: 8px; }
  .lyr-tag { border-left: none; border-top: 3px solid rgba(255,255,255,0.25); padding-left: 0; padding-top: 8px; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .nav-links, .nav-cta .btn--ghost { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open { display: flex; position: absolute; top: 74px; left: 0; right: 0; flex-direction: column; background: var(--white); border-bottom: 1px solid var(--line); padding: 20px 28px; gap: 18px; box-shadow: var(--shadow-md); }
  .packs-grid, .agent-grid, .pillars-grid, .chan-grid, .stats-grid, .field-row, .lyr-split { grid-template-columns: 1fr; }
  .step:not(:last-child)::after { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .hero-float.f1 { right: 4px; } .hero-float.f2 { left: 4px; }
}

/* ── Solutions dropdown (nav) ───────────────────────────── */
.nav-drop { position: relative; }
.nav-sub-toggle { display: inline-flex; align-items: center; gap: 6px; font-size: 0.95rem; font-weight: 500; color: var(--ink-2); background: none; border: none; padding: 0; font-family: inherit; cursor: pointer; transition: color .18s; }
.nav-drop:hover .nav-sub-toggle, .nav-drop:focus-within .nav-sub-toggle { color: var(--navy); }
.nav-sub-toggle .caret { transition: transform .2s ease; }
.nav-drop:hover .nav-sub-toggle .caret, .nav-drop:focus-within .nav-sub-toggle .caret { transform: rotate(180deg); }
.submenu { list-style: none; position: absolute; top: calc(100% + 16px); left: 50%; transform: translateX(-50%) translateY(8px); min-width: 268px; background: var(--white); border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow-md); padding: 8px; opacity: 0; visibility: hidden; transition: opacity .18s ease, transform .18s ease; z-index: 130; }
.submenu::before { content: ""; position: absolute; top: -16px; left: 0; right: 0; height: 16px; }
.nav-drop:hover .submenu, .nav-drop:focus-within .submenu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.submenu a { display: flex; align-items: flex-start; gap: 12px; padding: 12px 14px; border-radius: 11px; transition: background .15s; }
.submenu a:hover { background: var(--paper-2); }
.submenu a.active::after { display: none; }
.submenu .sub-ic { font-size: 1.2rem; line-height: 1; margin-top: 2px; }
.submenu .sub-txt { display: flex; flex-direction: column; }
.submenu .sub-t { font-family: var(--display); font-weight: 600; font-size: 0.95rem; color: var(--navy); }
.submenu .sub-d { font-size: 0.78rem; color: var(--muted); margin-top: 2px; line-height: 1.35; }
@media (max-width: 720px) {
  .nav-links.open .nav-drop { width: 100%; }
  .nav-links.open .nav-sub-toggle { width: 100%; }
  .nav-links.open .submenu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; background: transparent; padding: 10px 0 2px 14px; min-width: 0; }
  .nav-links.open .submenu::before { display: none; }
  .nav-links.open .nav-sub-toggle .caret { display: none; }
}

/* ── WizdomChat: URL capture + ChatWizard code card ─────── */
.urlcap { max-width: 640px; margin: 0 auto; }
.urlform { display: flex; gap: 10px; align-items: center; background: #fff; border: 1px solid var(--line); border-radius: 100px; padding: 8px 8px 8px 20px; box-shadow: var(--shadow-md); }
.urlform .globe { flex: none; display: inline-flex; font-size: 1.15rem; }
.urlform input { flex: 1; min-width: 0; border: none; outline: none; background: transparent; font-family: inherit; font-size: 1rem; color: var(--ink); }
.urlform input::placeholder { color: var(--muted); }
.urlform .btn { flex: none; white-space: nowrap; }
.urlnote { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 24px; margin-top: 15px; font-size: 0.86rem; font-weight: 600; color: var(--muted); }
.urlnote span { display: inline-flex; align-items: center; gap: 6px; }
.cta-band .urlform { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.28); box-shadow: none; }
.cta-band .urlform input { color: #fff; }
.cta-band .urlform input::placeholder { color: rgba(255,255,255,0.62); }
.cta-band .urlnote { color: rgba(255,255,255,0.82); }
.codecard { background: #0E1B33; border: 1px solid rgba(255,255,255,0.09); border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-lg); }
.codecard .cc-bar { display: flex; align-items: center; gap: 7px; padding: 12px 16px; border-bottom: 1px solid rgba(255,255,255,0.09); }
.codecard .cc-bar i { width: 11px; height: 11px; border-radius: 50%; display: inline-block; }
.codecard .cc-title { margin-left: 9px; font-size: 0.76rem; color: rgba(255,255,255,0.5); font-family: ui-monospace, Menlo, monospace; }
.codecard pre { margin: 0; padding: 18px 20px; overflow-x: auto; }
.codecard code { font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace; font-size: 0.82rem; line-height: 1.75; color: #CFE0FF; white-space: pre; }
.codecard .k-tag { color: #7FB2FF; } .codecard .k-attr { color: #FFB08A; } .codecard .k-str { color: #9BE7C4; } .codecard .k-com { color: #6B7A99; }
@media (max-width: 600px) {
  .urlform { flex-direction: column; align-items: stretch; border-radius: 16px; padding: 14px; }
  .urlform .globe { display: none; }
  .urlform input { padding: 6px 4px; }
  .urlform .btn { width: 100%; justify-content: center; }
}

/* ══ WizdomChat — distinctive conversion landing (scoped .wc-) ══ */
.wc-bar { background: linear-gradient(90deg, var(--orange), #FF8A5C); color: #fff; text-align: center; font-size: 0.9rem; font-weight: 600; padding: 9px 16px; display: flex; gap: 8px 16px; align-items: center; justify-content: center; flex-wrap: wrap; }
.wc-bar a { color: #fff; font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }
.wc-bar .wc-dot { width: 8px; height: 8px; border-radius: 50%; background: #fff; display: inline-block; animation: wc-blink 1.4s infinite; }
@keyframes wc-blink { 0%,100%{opacity:1} 50%{opacity:0.25} }

.wc-hero { position: relative; overflow: hidden; color: #fff; padding: clamp(46px,7vw,84px) 0 clamp(46px,6vw,74px);
  background: radial-gradient(58% 90% at 90% 6%, rgba(255,106,44,0.28), transparent 55%), radial-gradient(52% 90% at 4% 100%, rgba(31,111,235,0.30), transparent 55%), var(--navy); }
.wc-hero-grid { display: grid; grid-template-columns: 1.08fr 0.92fr; gap: 48px; align-items: center; }
.wc-hero .eyebrow { color: #FFB08A; } .wc-hero .eyebrow::before { background: #FFB08A; }
.wc-hero h1 { color: #fff; font-size: clamp(2.4rem,5.2vw,4rem); line-height: 1.05; margin: 16px 0 18px; letter-spacing: -0.02em; }
.wc-hero h1 .hl { color: #FF8A5C; }
.wc-hero .lede { color: rgba(255,255,255,0.82); max-width: 560px; }
.wc-hero .urlform { box-shadow: 0 20px 54px rgba(0,0,0,0.4); }
.wc-hero .urlnote { justify-content: flex-start; color: rgba(255,255,255,0.82); }
.wc-forwho { margin-top: 20px; font-size: 0.84rem; color: rgba(255,255,255,0.62); max-width: 520px; }

.wc-leak { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14); border-radius: 20px; padding: 24px; box-shadow: 0 26px 64px rgba(0,0,0,0.42); }
.wc-leak-h { display: flex; align-items: center; gap: 9px; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-bottom: 18px; }
.wc-live { width: 8px; height: 8px; border-radius: 50%; background: #5DE0B0; animation: wc-live 1.6s infinite; }
@keyframes wc-live { 0%{box-shadow:0 0 0 0 rgba(93,224,176,0.55)} 70%{box-shadow:0 0 0 10px rgba(93,224,176,0)} 100%{box-shadow:0 0 0 0 rgba(93,224,176,0)} }
.wc-step2 { display: flex; align-items: center; gap: 13px; padding: 13px 15px; border-radius: 14px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); }
.wc-step2 .ic { width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; flex: none; font-size: 1.15rem; }
.wc-step2 b { color: #fff; font-family: var(--display); font-size: 0.95rem; }
.wc-step2 .s { font-size: 0.78rem; color: rgba(255,255,255,0.62); }
.wc-node2 { background: linear-gradient(135deg, var(--blue), #4D8DF5); border-color: transparent; box-shadow: 0 12px 32px rgba(31,111,235,0.45); }
.wc-node2 .s { color: rgba(255,255,255,0.85); }
.wc-conn { width: 2px; height: 24px; margin: 5px 0 5px 34px; background: linear-gradient(rgba(255,255,255,0.35), rgba(255,255,255,0.08)); position: relative; }
.wc-conn::after { content: ""; position: absolute; left: -3px; top: -6px; width: 8px; height: 8px; border-radius: 50%; background: #FF8A5C; box-shadow: 0 0 9px #FF8A5C; animation: wc-drop 1.9s linear infinite; }
@keyframes wc-drop { 0%{transform:translateY(-6px);opacity:0} 15%{opacity:1} 80%{opacity:1} 100%{transform:translateY(28px);opacity:0} }
.wc-results { display: flex; gap: 12px; margin-top: 5px; }
.wc-chip2 { flex: 1; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.13); border-radius: 14px; padding: 14px; text-align: center; }
.wc-chip2 .n { font-family: var(--display); font-weight: 700; font-size: 1.45rem; }
.wc-chip2.won .n { color: #FF9E6B; } .wc-chip2.meet .n { color: #5DE0B0; }
.wc-chip2 small { display: block; color: rgba(255,255,255,0.66); font-size: 0.72rem; margin-top: 3px; }
.wc-foot { margin-top: 16px; font-size: 0.8rem; color: #FFB08A; line-height: 1.5; }

.wc-aud { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--paper-2); overflow: hidden; }
.wc-aud-inner { display: flex; width: max-content; animation: wc-marquee 30s linear infinite; }
.wc-aud-track { display: flex; gap: 40px; align-items: center; padding: 15px 20px; white-space: nowrap; }
.wc-aud-track span { display: inline-flex; align-items: center; gap: 9px; font-weight: 600; color: var(--ink-2); font-size: 0.96rem; }
@keyframes wc-marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

.wc-calc { background: var(--navy); color: #fff; border-radius: var(--radius); padding: clamp(30px,5vw,54px); position: relative; overflow: hidden; }
.wc-calc::before { content: ""; position: absolute; inset: 0; background: radial-gradient(50% 90% at 90% 0%, rgba(255,106,44,0.22), transparent 55%), radial-gradient(50% 90% at 0% 100%, rgba(31,111,235,0.26), transparent 55%); }
.wc-calc > * { position: relative; }
.wc-calc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.wc-cl { font-size: 0.8rem; font-weight: 700; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 0.05em; }
.wc-vrow { display: flex; align-items: center; gap: 16px; margin: 12px 0 8px; }
.wc-vrow input[type=range] { flex: 1; -webkit-appearance: none; appearance: none; height: 6px; border-radius: 100px; background: rgba(255,255,255,0.18); outline: none; }
.wc-vrow input[type=range]::-webkit-slider-thumb { -webkit-appearance: none; width: 22px; height: 22px; border-radius: 50%; background: #FF6A2C; cursor: pointer; box-shadow: 0 2px 10px rgba(255,106,44,0.6); }
.wc-vrow input[type=range]::-moz-range-thumb { width: 22px; height: 22px; border: none; border-radius: 50%; background: #FF6A2C; cursor: pointer; }
.wc-vval { font-family: var(--display); font-weight: 700; font-size: 1.45rem; min-width: 80px; text-align: right; }
.wc-assume { font-size: 0.77rem; color: rgba(255,255,255,0.55); margin-top: 10px; max-width: 430px; line-height: 1.5; }
.wc-out2 { display: flex; gap: 16px; }
.wc-ocard { flex: 1; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.14); border-radius: 16px; padding: 22px; }
.wc-ocard .n { font-family: var(--display); font-weight: 700; font-size: clamp(2.1rem,5vw,3.1rem); line-height: 1; }
.wc-ocard.lost .n { color: #FF8A5C; } .wc-ocard.won .n { color: #5DE0B0; }
.wc-ocard .l { margin-top: 10px; font-size: 0.85rem; color: rgba(255,255,255,0.72); }
.wc-calc-cta { display: flex; align-items: center; gap: 18px; margin-top: 30px; flex-wrap: wrap; }
.wc-calc-cta span { font-size: 0.85rem; color: rgba(255,255,255,0.7); }
.wc-calc-cta .btn--primary { background: #FF6A2C; color: #fff; } .wc-calc-cta .btn--primary:hover { background: #ff7d47; }

.wc-clock { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px clamp(20px,4vw,40px); box-shadow: var(--shadow-sm); }
.wc-clock-row { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
.wc-clock-tag { width: 116px; flex: none; font-weight: 700; font-size: 0.9rem; font-family: var(--display); }
.wc-clock-tag.you { color: var(--muted); } .wc-clock-tag.wiz { color: var(--blue); }
.wc-bar24 { position: relative; flex: 1; height: 26px; border-radius: 100px; background: var(--paper-2); overflow: hidden; }
.wc-cover { position: absolute; top: 0; height: 100%; border-radius: 100px; }
.wc-cover.you { background: repeating-linear-gradient(45deg,#C7D0DE,#C7D0DE 6px,#D9DFE9 6px,#D9DFE9 12px); }
.wc-cover.wiz { background: linear-gradient(90deg, var(--blue), #4D8DF5); }
.wc-clock-scale { display: flex; justify-content: space-between; margin-left: 132px; font-size: 0.73rem; color: var(--muted); margin-top: 4px; }

@media (max-width: 900px) { .wc-hero-grid { grid-template-columns: 1fr; gap: 34px; } }
@media (max-width: 820px) { .wc-calc-grid { grid-template-columns: 1fr; gap: 26px; } }
@media (max-width: 600px) { .wc-clock-tag { width: 84px; font-size: 0.8rem; } .wc-clock-scale { margin-left: 100px; } .wc-out2 { flex-direction: column; } }
@media (prefers-reduced-motion: reduce) { .wc-aud-inner, .wc-conn::after, .wc-live, .wc-bar .wc-dot { animation: none !important; } }

/* ── WizdomChat: intuitive build timeline ─────────────────── */
.wc-steps { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.wc-steps::before { content: ""; position: absolute; top: 38px; left: 12.5%; right: 12.5%; height: 3px; z-index: 0; background-image: linear-gradient(90deg, var(--blue) 55%, transparent 0); background-size: 16px 3px; opacity: 0.45; }
.wc-step { position: relative; z-index: 1; text-align: center; padding: 0 6px; }
.wc-step-ic { width: 76px; height: 76px; border-radius: 22px; margin: 0 auto 14px; display: grid; place-items: center; font-size: 1.75rem; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-md); position: relative; transition: transform .2s; }
.wc-step:hover .wc-step-ic { transform: translateY(-4px); }
.wc-step-n { position: absolute; top: -9px; right: -9px; width: 26px; height: 26px; border-radius: 50%; background: var(--orange); color: #fff; font-family: var(--display); font-weight: 700; font-size: 0.8rem; display: grid; place-items: center; box-shadow: 0 3px 9px rgba(255,106,44,0.45); }
.wc-step-time { display: inline-block; font-size: 0.72rem; font-weight: 700; color: var(--blue); background: var(--blue-soft); padding: 3px 11px; border-radius: 100px; margin-bottom: 10px; }
.wc-step h4 { font-size: 1.02rem; margin-bottom: 6px; }
.wc-step p { font-size: 0.85rem; color: var(--muted); max-width: 230px; margin: 0 auto; }
.wc-live-cap { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; text-align: center; margin: 40px auto 0; max-width: 660px; padding: 15px 24px; background: var(--blue-soft); border-radius: 100px; }
.wc-live-badge { background: linear-gradient(135deg, var(--blue), #4D8DF5); color: #fff; font-weight: 700; font-size: 0.85rem; padding: 7px 16px; border-radius: 100px; white-space: nowrap; }
.wc-live-cap p { font-size: 0.92rem; color: var(--ink-2); margin: 0; } .wc-live-cap b { color: var(--navy); }
@media (max-width: 820px) { .wc-steps { grid-template-columns: 1fr 1fr; gap: 34px 16px; } .wc-steps::before { display: none; } }
@media (max-width: 460px) { .wc-steps { grid-template-columns: 1fr; } }

/* ── WizdomChat: explore-more platform links ─────────────── */
.wc-more { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.wc-morecard { display: flex; gap: 16px; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 24px; transition: transform .2s, box-shadow .2s; }
.wc-morecard:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.wc-morecard .mi { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; flex: none; font-size: 1.3rem; }
.wc-morecard.wiz .mi { background: var(--blue-soft); } .wc-morecard.agt .mi { background: var(--orange-soft); }
.wc-morecard h4 { font-size: 1.05rem; margin-bottom: 5px; }
.wc-morecard p { font-size: 0.88rem; color: var(--muted); margin-bottom: 10px; }
.wc-morecard .go { font-size: 0.82rem; font-weight: 700; display: inline-flex; gap: 6px; align-items: center; }
.wc-morecard.wiz .go { color: var(--blue); } .wc-morecard.agt .go { color: var(--orange-600); }
.wc-inlink { display: inline-flex; align-items: center; gap: 7px; font-weight: 700; font-size: 0.9rem; margin-top: 6px; }
@media (max-width: 720px) { .wc-more { grid-template-columns: 1fr; } }

/* ══ WizdomShop — commerce identity (reuses .wc-* where possible) ══ */
.wc-hero.shop { background: radial-gradient(56% 90% at 90% 6%, rgba(18,181,165,0.30), transparent 55%), radial-gradient(52% 90% at 4% 100%, rgba(124,92,252,0.30), transparent 55%), var(--navy); }
.wc-hero.shop .eyebrow { color: #7FE9D8; } .wc-hero.shop .eyebrow::before { background: #7FE9D8; }
.wc-hero.shop h1 .hl { color: #2ED0BB; }
.wc-bar.shop { background: linear-gradient(90deg, var(--teal), #2ED0BB); }
.ws-q { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); border-radius: 100px; padding: 10px 15px; font-size: 0.83rem; color: #fff; }
.ws-recs { display: flex; gap: 10px; margin: 2px 0 4px; }
.ws-rec { flex: 1; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: 12px; padding: 10px; }
.ws-rec .thumb { height: 54px; border-radius: 8px; margin-bottom: 9px; }
.ws-rec b { color: #fff; font-size: 0.78rem; display: block; line-height: 1.3; }
.ws-rec .stars { color: #FFC24B; font-size: 0.64rem; letter-spacing: 1px; }
.ws-rec .price { color: #5DE0B0; font-weight: 700; font-size: 0.82rem; margin-top: 1px; }
.chan-grid.five { grid-template-columns: repeat(5, 1fr); }
.wc-calc input[type=number] { width: 130px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.22); color: #fff; border-radius: 10px; padding: 9px 13px; font-family: inherit; font-size: 1rem; outline: none; }
.wc-calc .wc-cl2 { margin-top: 20px; }
.ws-mini { display: flex; gap: 10px; margin-top: 11px; }
.ws-mcard { flex: 1; border: 1px solid var(--line); border-radius: 10px; padding: 8px; background: #fff; }
.ws-mcard .mt { height: 46px; border-radius: 6px; margin-bottom: 7px; }
.ws-mcard b { font-size: 0.76rem; color: var(--navy); display: block; line-height: 1.25; }
.ws-mcard .st { color: #FFC24B; font-size: 0.6rem; letter-spacing: 1px; }
.ws-mcard .pr { font-size: 0.78rem; font-weight: 700; color: var(--teal); }
@media (max-width: 900px) { .chan-grid.five { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .chan-grid.five { grid-template-columns: 1fr; } }

/* ══ WizdomShop — Shopify edition ══ */
.shopify-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(149,191,71,0.16); border: 1px solid rgba(149,191,71,0.42); color: #C6E89B; font-weight: 700; font-size: 0.78rem; padding: 6px 13px; border-radius: 100px; margin-bottom: 18px; }
.btn--shopify { background: #5E8E3E; color: #fff; border-color: #5E8E3E; }
.btn--shopify:hover { background: #527d36; color: #fff; }
.ws-connectrow { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.ws-carousel { position: relative; }
.ws-crail { display: flex; gap: 16px; overflow-x: auto; padding: 6px 2px 16px; scroll-snap-type: x mandatory; }
.ws-crail::-webkit-scrollbar { height: 6px; } .ws-crail::-webkit-scrollbar-thumb { background: var(--line); border-radius: 100px; }
.ws-ccard { flex: 0 0 206px; scroll-snap-align: start; background: #fff; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s; }
.ws-ccard:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.ws-ccard .ct { height: 120px; position: relative; }
.ws-ccard .badge { position: absolute; top: 10px; left: 10px; color: #fff; font-size: 0.66rem; font-weight: 700; padding: 3px 9px; border-radius: 100px; }
.ws-ccard .cb { padding: 13px 14px; }
.ws-ccard b { font-size: 0.86rem; color: var(--navy); display: block; line-height: 1.3; }
.ws-ccard .stars { color: #FFC24B; font-size: 0.7rem; letter-spacing: 1px; }
.ws-ccard .row { display: flex; justify-content: space-between; align-items: center; margin-top: 9px; }
.ws-ccard .price { font-weight: 700; color: var(--navy); font-size: 0.92rem; }
.ws-ccard .add { background: var(--teal-soft); color: #0B7E72; font-weight: 700; font-size: 0.72rem; padding: 6px 11px; border-radius: 8px; }
.ws-phase { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.ws-pcol { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
.ws-pcol h3 { font-size: 1.15rem; display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }
.ws-pcol > p { font-size: 0.9rem; color: var(--muted); margin-bottom: 16px; }
.ws-acts { display: flex; flex-wrap: wrap; gap: 9px; }
.act-chip { display: inline-flex; align-items: center; gap: 7px; font-size: 0.82rem; font-weight: 600; color: var(--ink-2); background: var(--paper-2); border: 1px solid var(--line); padding: 8px 13px; border-radius: 100px; }
.act-chip.teal { color: #0B7E72; background: var(--teal-soft); border-color: transparent; }
.act-chip.orange { color: var(--orange-600); background: var(--orange-soft); border-color: transparent; }
.ws-handoff { margin-top: 22px; display: flex; align-items: center; gap: 14px; background: var(--blue-soft); border-radius: 14px; padding: 18px 20px; }
.ws-handoff .hi { font-size: 1.5rem; flex: none; }
.ws-handoff p { font-size: 0.9rem; color: var(--ink-2); margin: 0; } .ws-handoff b { color: var(--navy); }
.ws-toggle { display: flex; align-items: center; justify-content: space-between; gap: 16px; background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 18px 20px; box-shadow: var(--shadow-md); max-width: 430px; }
.ws-toggle .tl { display: flex; align-items: center; gap: 12px; }
.ws-toggle .tl .tic { width: 40px; height: 40px; border-radius: 11px; background: rgba(149,191,71,0.16); display: grid; place-items: center; flex: none; }
.ws-toggle b { font-size: 0.96rem; color: var(--navy); display: block; } .ws-toggle small { font-size: 0.78rem; color: var(--muted); }
.ws-tsw { width: 48px; height: 27px; border-radius: 100px; background: #5E8E3E; position: relative; flex: none; }
.ws-tsw::after { content: ""; position: absolute; top: 3px; right: 3px; width: 21px; height: 21px; border-radius: 50%; background: #fff; }
.wc-more.three { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 820px) { .ws-phase { grid-template-columns: 1fr; } .wc-more.three { grid-template-columns: 1fr; } }

/* ── WizdomShop hero: Shopify storefront mock ─────────────── */
.ws-store { background: #0d1a30; border: 1px solid rgba(255,255,255,0.12); border-radius: 18px; overflow: hidden; box-shadow: 0 26px 64px rgba(0,0,0,0.45); }
.ws-store-bar { display: flex; align-items: center; gap: 8px; padding: 11px 15px; background: rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.08); }
.ws-store-bar .d { width: 10px; height: 10px; border-radius: 50%; }
.ws-store-bar .url { margin-left: 8px; font-size: 0.74rem; color: rgba(255,255,255,0.55); font-family: ui-monospace, Menlo, monospace; }
.ws-store-body { padding: 18px; }
.ws-rectag { display: inline-flex; align-items: center; gap: 7px; font-size: 0.74rem; font-weight: 700; color: #2ED0BB; background: rgba(46,208,187,0.14); padding: 5px 12px; border-radius: 100px; margin-bottom: 14px; }
.ws-store-rail { display: flex; gap: 11px; margin-bottom: 14px; }
.ws-scard { flex: 1; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; overflow: hidden; }
.ws-scard .st { height: 56px; }
.ws-scard.hl { border-color: #2ED0BB; box-shadow: 0 0 0 1px #2ED0BB; }
.ws-scard .sb { padding: 8px 9px; }
.ws-scard b { color: #fff; font-size: 0.68rem; display: block; line-height: 1.25; }
.ws-scard .pr { color: #5DE0B0; font-weight: 700; font-size: 0.72rem; margin-top: 2px; }
.ws-asst { display: flex; gap: 10px; align-items: flex-start; background: rgba(31,111,235,0.14); border: 1px solid rgba(31,111,235,0.28); border-radius: 12px; padding: 11px 13px; margin-bottom: 12px; }
.ws-asst .av { width: 28px; height: 28px; border-radius: 8px; background: linear-gradient(135deg, var(--teal), #0E8C80); display: grid; place-items: center; color: #fff; font-weight: 700; font-size: 0.72rem; flex: none; font-family: var(--display); }
.ws-asst p { margin: 0; font-size: 0.8rem; color: rgba(255,255,255,0.9); line-height: 1.45; }
.ws-actpills { display: flex; flex-wrap: wrap; gap: 8px; }
.ws-actpills span { font-size: 0.72rem; font-weight: 700; padding: 6px 11px; border-radius: 100px; background: rgba(255,255,255,0.08); color: #fff; border: 1px solid rgba(255,255,255,0.12); }
.ws-actpills span.buy { background: #2ED0BB; color: #06312c; border-color: transparent; }

/* ── WizdomShop: real product images, guarantee, FAQ ─────── */
.ws-scard .st, .ws-mcard .mt { overflow: hidden; }
.ws-scard .st img, .ws-mcard .mt img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ws-guard { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.ws-gcard { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 24px 20px; text-align: center; }
.ws-gcard .gi { font-size: 1.7rem; }
.ws-gcard h4 { font-size: 0.98rem; margin: 10px 0 4px; }
.ws-gcard p { font-size: 0.82rem; color: var(--muted); }
.ws-faq { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.ws-faq details { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 2px 22px; transition: box-shadow .2s; }
.ws-faq details[open] { box-shadow: var(--shadow-sm); }
.ws-faq summary { cursor: pointer; list-style: none; padding: 18px 0; font-family: var(--display); font-weight: 600; font-size: 1rem; color: var(--navy); display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.ws-faq summary::-webkit-details-marker { display: none; }
.ws-faq summary::after { content: "+"; font-size: 1.5rem; line-height: 1; color: var(--blue); font-weight: 400; flex: none; }
.ws-faq details[open] summary::after { content: "\2013"; }
.ws-faq details > p { margin: 0 0 18px; font-size: 0.92rem; color: var(--ink-2); line-height: 1.6; }
@media (max-width: 820px) { .ws-guard { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .ws-guard { grid-template-columns: 1fr; } }

/* ── WizdomShop: WhatsApp commerce + multilingual ─────────── */
.wa-wrap { display: flex; justify-content: center; }
.wa-phone { width: 300px; background: #0b141a; border-radius: 30px; padding: 10px; box-shadow: 0 26px 64px rgba(0,0,0,0.4); border: 1px solid rgba(255,255,255,0.1); }
.wa-screen { border-radius: 22px; overflow: hidden; background: #0b141a; }
.wa-top { background: #1f2c34; color: #fff; display: flex; align-items: center; gap: 10px; padding: 12px 14px; }
.wa-top .ava { width: 34px; height: 34px; border-radius: 50%; background: linear-gradient(135deg, var(--teal), #0E8C80); display: grid; place-items: center; color: #fff; font-weight: 700; font-family: var(--display); font-size: 0.8rem; flex: none; }
.wa-top b { font-size: 0.86rem; display: block; line-height: 1.2; }
.wa-top small { font-size: 0.68rem; color: #8aa0ab; }
.wa-body { padding: 14px; background: #0b141a; display: flex; flex-direction: column; gap: 9px; }
.wa-in, .wa-out { max-width: 82%; padding: 8px 11px; border-radius: 10px; font-size: 0.8rem; line-height: 1.42; }
.wa-in { background: #202c33; color: #e9edef; align-self: flex-start; border-top-left-radius: 3px; }
.wa-out { background: #005c4b; color: #e9edef; align-self: flex-end; border-top-right-radius: 3px; }
.wa-prod { background: #111b21; border: 1px solid rgba(255,255,255,0.08); border-radius: 10px; overflow: hidden; align-self: flex-start; width: 82%; }
.wa-prod img { width: 100%; height: 100px; object-fit: cover; display: block; }
.wa-prod .wp { padding: 8px 10px; }
.wa-prod b { color: #e9edef; font-size: 0.78rem; display: block; }
.wa-prod .pr { color: #25d366; font-weight: 700; font-size: 0.78rem; margin-top: 1px; }
.wa-badge { background: #25d366; color: #04231a; font-weight: 700; font-size: 0.72rem; padding: 6px 12px; border-radius: 100px; align-self: flex-start; }
.eyebrow.wa { color: #1FA855; } .eyebrow.wa::before { background: #25D366; }
.btn--wa { background: #25D366; color: #04231a; border-color: #25D366; }
.btn--wa:hover { background: #1ebe5a; color: #04231a; }
.ws-lang { text-align: center; background: var(--paper-2); border-radius: var(--radius); padding: clamp(30px,5vw,50px); }
.ws-langchips { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 20px; }

/* ── Home v2 — hero assistant panel ─────────────────────── */
.hv-panel { position: relative; background: #fff; border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow-lg); padding: 20px; }
.hv-bar { display: flex; align-items: center; gap: 10px; padding-bottom: 14px; margin-bottom: 16px; border-bottom: 1px solid var(--line-2); }
.hv-bar .dot3 { display: flex; gap: 5px; }
.hv-bar .dot3 i { width: 9px; height: 9px; border-radius: 50%; display: block; }
.hv-bar .t { font-size: 0.78rem; color: var(--muted); font-weight: 600; font-family: var(--display); }
.hv-stack { display: flex; flex-direction: column; }
.hv-q { align-self: flex-end; max-width: 90%; background: var(--navy); color: #fff; border-radius: 14px; border-bottom-right-radius: 4px; padding: 12px 15px; font-size: 0.9rem; line-height: 1.45; }
.hv-flow { text-align: center; font-size: 0.66rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); padding: 10px 0; }
.hv-card { border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow-sm); padding: 14px 15px; }
.hv-card.w { border-left: 3px solid var(--blue); } .hv-card.a { border-left: 3px solid var(--orange); }
.hv-t { display: inline-flex; align-items: center; gap: 6px; font-size: 0.66rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; padding: 3px 9px; border-radius: 100px; margin-bottom: 9px; }
.hv-t.w { color: var(--blue); background: var(--blue-soft); } .hv-t.a { color: var(--orange-600); background: var(--orange-soft); }
.hv-card p { font-size: 0.88rem; color: var(--ink); margin: 0; line-height: 1.5; }
.hv-src { display: inline-flex; align-items: center; gap: 6px; margin-top: 10px; font-size: 0.72rem; color: var(--ink-2); background: var(--paper-2); border-radius: 100px; padding: 4px 11px; }
.hv-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 11px; }
.hv-chips span { font-size: 0.72rem; font-weight: 600; color: #0B7E72; background: var(--teal-soft); padding: 4px 10px; border-radius: 100px; }

/* ══ Solution badges (shared) ══ */
.sol-badge { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 0.78rem; padding: 6px 13px; border-radius: 100px; margin-bottom: 18px; }
.sol-badge.voice { background: rgba(124,92,252,0.16); border: 1px solid rgba(124,92,252,0.42); color: #C9BBFF; }
.sol-badge.desk { background: rgba(18,181,165,0.16); border: 1px solid rgba(18,181,165,0.42); color: #7FE9D8; }

/* ══ WizdomVoice — phone identity ══ */
.wc-hero.voice { background: radial-gradient(56% 90% at 90% 6%, rgba(124,92,252,0.32), transparent 55%), radial-gradient(52% 90% at 4% 100%, rgba(31,111,235,0.26), transparent 55%), var(--navy); }
.wc-hero.voice .eyebrow { color: #C9BBFF; } .wc-hero.voice .eyebrow::before { background: #9E86FF; }
.wc-hero.voice h1 .hl { color: #B7A6FF; }
.wc-bar.voice { background: linear-gradient(90deg, #7C5CFC, #9E86FF); }
.btn--voice { background: #7C5CFC; color: #fff; border-color: #7C5CFC; }
.btn--voice:hover { background: #6a4cf0; color: #fff; }
.vc-panel { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14); border-radius: 20px; padding: 20px; box-shadow: 0 26px 64px rgba(0,0,0,0.42); }
.vc-head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.vc-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--violet), #9E86FF); display: grid; place-items: center; font-size: 1.15rem; flex: none; }
.vc-head b { color: #fff; font-size: 0.95rem; display: block; line-height: 1.2; }
.vc-head small { color: rgba(255,255,255,0.6); font-size: 0.76rem; }
.vc-live2 { margin-left: auto; font-size: 0.7rem; font-weight: 700; color: #5DE0B0; display: inline-flex; align-items: center; gap: 6px; }
.vc-live2::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: #5DE0B0; animation: wc-live 1.6s infinite; }
.vc-wave { display: flex; align-items: center; gap: 3px; height: 30px; margin: 2px 0 14px; }
.vc-wave span { width: 3px; border-radius: 3px; background: #B7A6FF; height: 8px; animation: vc-eq 1s ease-in-out infinite; }
@keyframes vc-eq { 0%,100% { height: 6px; } 50% { height: 26px; } }
.vc-line { margin: 9px 0; }
.vc-line .who { font-size: 0.66rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 3px; }
.vc-line.caller .who { color: #9fb0c8; } .vc-line.voice-r .who { color: #B7A6FF; }
.vc-bub { font-size: 0.86rem; line-height: 1.45; color: #fff; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; padding: 9px 12px; }
.vc-line.voice-r .vc-bub { background: rgba(124,92,252,0.18); border-color: rgba(124,92,252,0.34); }
.vc-out { display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap; }
.vc-out span { font-size: 0.74rem; font-weight: 700; padding: 6px 11px; border-radius: 100px; background: rgba(93,224,176,0.16); color: #5DE0B0; }
@media (prefers-reduced-motion: reduce) { .vc-wave span { animation: none; height: 14px; } }

/* ══ WizdomDesk — internal helpdesk identity ══ */
.wc-hero.desk { background: radial-gradient(56% 90% at 90% 6%, rgba(18,181,165,0.30), transparent 55%), radial-gradient(52% 90% at 4% 100%, rgba(31,111,235,0.24), transparent 55%), var(--navy); }
.wc-hero.desk .eyebrow { color: #7FE9D8; } .wc-hero.desk .eyebrow::before { background: #2ED0BB; }
.wc-hero.desk h1 .hl { color: #2ED0BB; }
.wc-bar.desk { background: linear-gradient(90deg, var(--teal), #2ED0BB); }
.btn--desk { background: #0E8C80; color: #fff; border-color: #0E8C80; }
.btn--desk:hover { background: #0b756b; color: #fff; }
.sl-panel { background: #fff; border-radius: 16px; box-shadow: 0 26px 64px rgba(0,0,0,0.42); overflow: hidden; }
.sl-top { background: #3F0E40; color: #fff; padding: 12px 16px; display: flex; align-items: center; gap: 9px; font-weight: 600; font-size: 0.9rem; }
.sl-top .ch { opacity: 0.85; }
.sl-body { padding: 16px; display: flex; flex-direction: column; gap: 15px; }
.sl-msg { display: flex; gap: 10px; }
.sl-av { width: 36px; height: 36px; border-radius: 8px; flex: none; display: grid; place-items: center; color: #fff; font-weight: 700; font-family: var(--display); font-size: 0.8rem; }
.sl-av.user { background: #4A90D9; } .sl-av.bot { background: linear-gradient(135deg, var(--teal), #0E8C80); }
.sl-hd { display: flex; align-items: baseline; gap: 6px; }
.sl-hd b { font-size: 0.84rem; color: var(--navy); } .sl-hd .t { font-size: 0.7rem; color: var(--muted); }
.sl-text { font-size: 0.87rem; color: var(--ink); line-height: 1.5; margin-top: 2px; }
.sl-src { display: inline-flex; gap: 6px; align-items: center; margin-top: 9px; font-size: 0.72rem; color: #0B7E72; background: var(--teal-soft); border-radius: 100px; padding: 4px 11px; }
.sl-actions { display: flex; gap: 8px; margin-top: 9px; flex-wrap: wrap; }
.sl-actions span { font-size: 0.72rem; font-weight: 600; border: 1px solid var(--line); border-radius: 7px; padding: 5px 10px; color: var(--ink-2); }
.sl-actions span.pri { background: #0E8C80; color: #fff; border-color: #0E8C80; }

/* ── WiztraChat embedded widget (floating launcher + panel) ── */
#wz-widget { position: fixed; z-index: 2147483000; }
.wz-launcher { position: fixed; bottom: 22px; right: 22px; width: 60px; height: 60px; border-radius: 50%; border: none; cursor: pointer; background: linear-gradient(135deg, var(--blue), #4D8DF5); color: #fff; display: grid; place-items: center; box-shadow: 0 12px 30px rgba(31,111,235,0.45); transition: transform .2s ease; z-index: 2147483001; }
.wz-launcher:hover { transform: translateY(-2px) scale(1.05); }
.wz-launcher svg { width: 28px; height: 28px; }
.wz-launcher .wz-ic-close { display: none; }
.wz-launcher.is-open .wz-ic-open { display: none; }
.wz-launcher.is-open .wz-ic-close { display: block; }
.wz-panel { position: fixed; bottom: 94px; right: 22px; width: 420px; height: 640px; max-width: calc(100vw - 32px); max-height: calc(100vh - 130px); background: #fff; border-radius: 16px; overflow: hidden; box-shadow: 0 24px 64px rgba(11,27,51,0.38); opacity: 0; transform: translateY(14px) scale(.98); pointer-events: none; transition: opacity .22s ease, transform .22s ease; z-index: 2147483000; }
.wz-panel.open { opacity: 1; transform: none; pointer-events: auto; }
.wz-panel iframe { width: 100%; height: 100%; border: 0; display: block; }
.wz-close { position: absolute; top: 8px; right: 10px; width: 30px; height: 30px; border-radius: 50%; border: none; cursor: pointer; background: rgba(11,27,51,0.55); color: #fff; font-size: 15px; line-height: 1; display: grid; place-items: center; z-index: 2; }
.wz-close:hover { background: rgba(11,27,51,0.8); }
@media (max-width: 480px) {
  .wz-launcher { bottom: 16px; right: 16px; }
  .wz-panel { right: 12px; left: 12px; width: auto; bottom: 84px; height: 72vh; }
}
@media (prefers-reduced-motion: reduce) { .wz-launcher, .wz-panel { transition: none; } }

/* ---- Industry cards: focus-on-read spotlight ---- */
.agent-grid .agent { transition: transform .22s, box-shadow .22s, opacity .25s, border-color .22s; position: relative; overflow: hidden; }
.agent-grid .agent::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: linear-gradient(180deg, var(--orange), var(--blue)); opacity: 0; transition: opacity .22s; }
.agent-grid:hover .agent { opacity: .5; }
.agent-grid:hover .agent:hover { opacity: 1; }
.agent-grid .agent:hover { border-color: var(--blue); }
.agent-grid .agent:hover::before { opacity: 1; }
.agent-grid .agent:focus-within { opacity: 1; border-color: var(--blue); }
.agent-grid .agent:focus-within::before { opacity: 1; }
.ag-link { transition: gap .18s ease, color .18s; }
.agent:hover .ag-link { gap: 9px !important; color: var(--blue-700); }
@media (prefers-reduced-motion: reduce) { .agent-grid:hover .agent { opacity: 1; } }
@media (max-width: 720px) { .agent-grid:hover .agent { opacity: 1; } }

/* ---- Integrations logo wall ---- */
.logowall { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.logo-item { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 11px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 22px 12px; transition: transform .2s, box-shadow .2s, border-color .2s; min-height: 96px; }
.logo-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--violet); }
.logo-item img { height: 30px; width: auto; max-width: 78%; filter: grayscale(100%); opacity: .6; transition: filter .2s, opacity .2s; }
.logo-item:hover img { filter: none; opacity: 1; }
.logo-item span { font-size: 0.74rem; font-weight: 600; color: var(--muted); text-align: center; line-height: 1.2; }
.logo-item:hover span { color: var(--ink-2); }
@media (max-width: 720px) { .logowall { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 460px) { .logowall { grid-template-columns: repeat(2, 1fr); } }

/* ---- Integrations category grid (platform) ---- */
.intgrid { display:grid; grid-template-columns:repeat(3,1fr); gap:30px 40px; max-width:1000px; margin:0 auto; }
.intcat h4 { font-size:0.72rem; text-transform:uppercase; letter-spacing:0.08em; color:var(--muted); font-weight:700; margin:0 0 14px; padding-bottom:9px; border-bottom:1px solid var(--line); }
.intcat .applogos { justify-content:flex-start; gap:14px 18px; }
.intcat .applogo { font-size:0.86rem; }
@media (max-width:820px){ .intgrid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:520px){ .intgrid{ grid-template-columns:1fr; } }

/* ---- Production: a11y + consent ---- */
.skip-link{position:absolute;left:-9999px;top:0;z-index:2000;background:var(--navy);color:#fff;padding:10px 16px;border-radius:0 0 8px 0;font-weight:600;font-size:0.9rem;text-decoration:none;}
.skip-link:focus{left:0;}
a:focus-visible,button:focus-visible,input:focus-visible,select:focus-visible,textarea:focus-visible,[tabindex]:focus-visible,.nav-sub-toggle:focus-visible{outline:3px solid var(--blue);outline-offset:2px;border-radius:3px;}
@media (prefers-reduced-motion: reduce){
  *,*::before,*::after{animation-duration:0.001ms !important;animation-iteration-count:1 !important;transition-duration:0.001ms !important;scroll-behavior:auto !important;}
  .reveal{opacity:1 !important;transform:none !important;}
}
.cookie-banner{position:fixed;left:16px;right:16px;bottom:16px;max-width:600px;margin:0 auto;background:var(--navy);color:#fff;border-radius:14px;padding:18px 20px;box-shadow:0 14px 44px rgba(0,0,0,.32);z-index:1600;font-size:0.9rem;line-height:1.6;display:none;}
.cookie-banner.show{display:block;}
.cookie-banner a{color:#9fd0ff;text-decoration:underline;}
.cookie-banner .cb-actions{display:flex;gap:10px;margin-top:14px;flex-wrap:wrap;}
.cookie-banner button{font-family:inherit;font-weight:600;font-size:0.85rem;border-radius:8px;padding:9px 18px;cursor:pointer;border:1px solid rgba(255,255,255,.32);background:transparent;color:#fff;}
.cookie-banner .cb-accept{background:var(--orange);border-color:transparent;}

/* ---- Pricing page ---- */
.price-wrap { max-width: 720px; margin: 0 auto; }
.price-card { background:#fff; border:1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-lg); overflow:hidden; }
.price-card .pc-head { background: linear-gradient(135deg, var(--navy), #12294D); color:#fff; padding: 30px 34px; }
.price-card .pc-head .plan { font-size:0.78rem; font-weight:600; text-transform:uppercase; letter-spacing:0.08em; color:rgba(255,255,255,0.7); }
.price-card .pc-head .amt { display:flex; align-items:baseline; gap:8px; margin-top:8px; }
.price-card .pc-head .amt b { font-family:var(--display); font-weight:700; font-size:2.9rem; color:#fff; line-height:1; }
.price-card .pc-head .amt span { font-size:0.95rem; color:rgba(255,255,255,0.75); }
.price-card .pc-head .annual { font-size:0.86rem; color:rgba(255,255,255,0.82); margin-top:7px; }
.price-card .pc-head .annual b { color:#12B5A5; font-weight:700; }
.price-card .pc-head .plus { margin-top:16px; display:inline-flex; align-items:center; gap:11px; background:rgba(255,138,92,0.18); border:1px solid rgba(255,138,92,0.4); border-radius:12px; padding:11px 15px; }
.price-card .pc-head .plus b { color:#fff; font-family:var(--display); font-weight:700; font-size:1.4rem; white-space:nowrap; }
.price-card .pc-head .plus span { font-size:0.82rem; color:rgba(255,255,255,0.82); line-height:1.3; }
.price-card .pc-body { padding: 26px 34px 30px; }
.price-feats { list-style:none; display:grid; grid-template-columns:1fr 1fr; gap:12px 22px; margin-bottom:24px; }
.price-feats li { font-size:0.9rem; color:var(--ink-2); display:flex; gap:9px; align-items:flex-start; }
.price-feats li::before { content:"✓"; color:var(--teal); font-weight:800; flex:none; }
.price-actions { display:flex; gap:12px; flex-wrap:wrap; }
.price-strip { text-align:center; font-size:0.82rem; color:var(--muted); margin-top:18px; }
.cmp { width:100%; border-collapse:collapse; font-size:0.9rem; }
.cmp th, .cmp td { padding:12px 14px; text-align:right; border-bottom:1px solid var(--line); }
.cmp th:first-child, .cmp td:first-child { text-align:left; }
.cmp thead th { font-size:0.7rem; text-transform:uppercase; letter-spacing:0.05em; color:var(--muted); font-weight:700; }
.cmp thead th.wz, .cmp tbody td.wz { color:var(--navy); font-weight:700; background:rgba(31,111,235,0.07); }
.cmp tbody td:last-child { color:#0B7E72; font-weight:700; }
@media (max-width:640px){ .price-feats { grid-template-columns:1fr; } }

/* ---- Pricing plans (two-tier) ---- */
.plans { display:grid; grid-template-columns:1fr 1.12fr 1fr; gap:18px; max-width:1000px; margin:0 auto; align-items:stretch; }
.plan { background:#fff; border:1px solid var(--line); border-radius:var(--radius); box-shadow:var(--shadow-md); display:flex; flex-direction:column; position:relative; overflow:hidden; }
.plan.feat { box-shadow:var(--shadow-lg); }
.plan .p-badge { position:absolute; top:16px; right:16px; z-index:2; font-size:0.64rem; font-weight:700; text-transform:uppercase; letter-spacing:0.06em; color:#fff; background:var(--orange); padding:4px 11px; border-radius:100px; }
.plan .p-head { padding:28px 30px 22px; }
.plan.feat .p-head { background:linear-gradient(140deg,var(--navy) 0%,#12294D 62%,#2a1a3a 120%); color:#fff; }
.plan .p-name { font-size:0.78rem; font-weight:700; text-transform:uppercase; letter-spacing:0.08em; color:var(--navy); }
.plan.feat .p-name { color:#fff; }
.plan .p-sub { font-size:0.8rem; color:var(--muted); margin-top:3px; }
.plan.feat .p-sub { color:rgba(255,255,255,0.62); }
.plan .p-price { display:flex; align-items:baseline; gap:8px; margin-top:16px; }
.plan .p-price b { font-family:var(--display); font-weight:700; font-size:2.7rem; line-height:1; color:var(--navy); }
.plan.feat .p-price b { color:#fff; }
.plan .p-price span { font-size:0.9rem; color:var(--muted); }
.plan.feat .p-price span { color:rgba(255,255,255,0.7); }
.plan .p-annual { display:inline-flex; align-items:center; gap:7px; margin-top:13px; background:var(--teal); color:#fff; font-weight:600; font-size:0.82rem; border-radius:100px; padding:8px 15px; box-shadow:0 3px 10px rgba(18,181,165,0.35); }
.plan .p-annual b { font-weight:700; }
.plan .p-res { margin-top:14px; display:flex; align-items:baseline; gap:8px; }
.plan .p-res b { font-family:var(--display); font-weight:700; font-size:1.35rem; color:var(--orange-600); }
.plan.feat .p-res b { color:#FF8A5C; }
.plan .p-res span { font-size:0.8rem; color:var(--muted); }
.plan.feat .p-res span { color:rgba(255,255,255,0.72); }
.plan .p-body { padding:22px 30px 28px; display:flex; flex-direction:column; flex:1; }
.plan .p-feats { list-style:none; display:flex; flex-direction:column; gap:11px; margin-bottom:22px; flex:1; }
.plan .p-feats li { font-size:0.9rem; color:var(--ink-2); display:flex; gap:9px; align-items:flex-start; }
.plan .p-feats li::before { content:"✓"; color:var(--teal); font-weight:800; flex:none; }
.plan .p-cta .btn { width:100%; justify-content:center; }
.plan.ent { background:var(--paper); }
@media (max-width:900px){ .plans { grid-template-columns:1fr; } }

/* ---- About: facts + team ---- */
.factgrid { display:grid; grid-template-columns:repeat(4,1fr); gap:16px; }
.fact { background:var(--paper); border-radius:var(--radius-sm); padding:24px 16px; text-align:center; }
.fact .n { font-family:var(--display); font-weight:700; font-size:2.1rem; color:var(--blue); line-height:1; }
.fact .l { font-size:0.82rem; color:var(--muted); margin-top:9px; line-height:1.35; }
.team-grid { display:flex; flex-wrap:wrap; justify-content:center; gap:20px; }
.member { flex:1 1 260px; max-width:320px; border:1px solid var(--line); border-radius:var(--radius-sm); padding:24px 22px; text-align:center; background:#fff; transition:transform .2s, box-shadow .2s; }
.member:hover { transform:translateY(-4px); box-shadow:var(--shadow-md); }
.member .av { width:62px; height:62px; border-radius:50%; margin:0 auto 14px; display:flex; align-items:center; justify-content:center; font-family:var(--display); font-weight:700; font-size:1.5rem; color:#fff; }
.member h4 { font-size:1.05rem; margin-bottom:2px; }
.member .role { font-size:0.72rem; font-weight:700; color:var(--blue); text-transform:uppercase; letter-spacing:0.05em; margin-bottom:9px; }
.member p { font-size:0.85rem; color:var(--ink-2); line-height:1.5; }
@media (max-width:760px){ .factgrid { grid-template-columns:1fr 1fr; } }

/* ---- Resources: article + case ---- */
.article { max-width:760px; margin:0 auto; font-size:1rem; line-height:1.75; color:var(--ink-2); }
.article h2 { font-size:1.45rem; color:var(--navy); margin:32px 0 12px; }
.article h3 { font-size:1.12rem; color:var(--navy); margin:24px 0 8px; }
.article p { margin-bottom:17px; }
.article ul { margin:0 0 17px 22px; display:flex; flex-direction:column; gap:8px; }
.article li { line-height:1.6; }
.article strong { color:var(--ink); font-weight:600; }
.post-meta { display:flex; flex-wrap:wrap; gap:12px; font-size:0.82rem; color:var(--muted); margin-top:12px; }
.illus { display:inline-flex; align-items:center; gap:8px; font-size:0.76rem; font-weight:600; color:var(--orange-600); background:var(--orange-soft); padding:6px 13px; border-radius:100px; }
.metricrow { display:flex; gap:16px; flex-wrap:wrap; margin:6px 0 24px; }
.metricrow .m { flex:1; min-width:150px; background:var(--paper); border-radius:var(--radius-sm); padding:20px 16px; text-align:center; }
.metricrow .m .n { font-family:var(--display); font-weight:700; font-size:1.7rem; color:var(--blue); line-height:1; }
.metricrow .m .l { font-size:0.78rem; color:var(--muted); margin-top:7px; line-height:1.35; }

/* ---- Case study: quote + bigstat ---- */
.pullquote { max-width:760px; margin:34px auto; padding:4px 0 4px 24px; border-left:4px solid var(--orange); }
.pullquote p { font-family:var(--display); font-weight:500; font-size:1.32rem; line-height:1.45; color:var(--navy); margin-bottom:10px; }
.pullquote cite { font-size:0.85rem; color:var(--muted); font-weight:600; font-style:normal; }
.bigstat { max-width:760px; margin:0 auto; display:flex; align-items:center; gap:22px; background:linear-gradient(135deg,var(--navy),#12294D); border-radius:var(--radius); padding:26px 32px; color:#fff; box-shadow:var(--shadow-md); }
.bigstat .n { font-family:var(--display); font-weight:700; font-size:3rem; color:#FF8A5C; line-height:1; flex:none; }
.bigstat .t { font-size:1rem; color:rgba(255,255,255,0.85); line-height:1.4; }
@media (max-width:560px){ .bigstat { flex-direction:column; text-align:center; gap:12px; } }

/* Pricing: two-card plan layout (Growth + Enterprise) */
.plans.two { grid-template-columns: 1fr 1fr; max-width: 760px; }
@media (max-width:760px){ .plans.two { grid-template-columns: 1fr; } }

/* Pricing: in-card billing toggle (Growth) + animated savings */
.p-billing { margin-top:14px; }
.p-toggle { display:inline-flex; gap:2px; background:rgba(255,255,255,.14); border:1px solid rgba(255,255,255,.2); border-radius:100px; padding:3px; }
.pt-opt { border:none; background:transparent; font-family:var(--sans); font-weight:600; font-size:0.82rem; color:rgba(255,255,255,.82); padding:7px 18px; border-radius:100px; cursor:pointer; transition:background .2s, color .2s, box-shadow .2s; }
.pt-opt:hover { color:#fff; }
.pt-opt.active { background:#fff; color:var(--navy); box-shadow:0 2px 8px rgba(0,0,0,.2); }
.p-save { display:none; }
.plan.show-annual .p-save { display:inline-flex; align-items:center; gap:7px; margin-top:12px; background:var(--teal); color:#fff; font-weight:700; font-size:0.84rem; border-radius:100px; padding:8px 15px; box-shadow:0 6px 18px rgba(18,181,165,.5); animation:popSave .5s cubic-bezier(.18,.9,.32,1.5); }
@keyframes popSave { 0%{opacity:0; transform:scale(.5) translateY(8px);} 55%{opacity:1; transform:scale(1.12) translateY(0);} 100%{transform:scale(1) translateY(0);} }
/* price swap on the Growth card */
.plan .p-price .pr-a, .plan .p-price .pu-a { display:none; }
.plan.show-annual .p-price .pr-m, .plan.show-annual .p-price .pu-m { display:none; }
.plan.show-annual .p-price .pr-a, .plan.show-annual .p-price .pu-a { display:inline; }

/* Pricing: early-adopter offer banner */
.offer-banner { position:relative; overflow:hidden; max-width:760px; margin:18px auto 0; background:linear-gradient(120deg,#0B1B33 0%,#12294D 52%,#0E5F57 132%); border-radius:var(--radius); padding:24px 28px; display:flex; align-items:center; gap:22px; color:#fff; box-shadow:0 18px 44px rgba(11,27,51,.22); }
.offer-banner::after { content:""; position:absolute; inset:0; background:radial-gradient(58% 120% at 88% 18%, rgba(18,181,165,.38), transparent 60%); pointer-events:none; }
.offer-ic { position:relative; flex:none; width:60px; height:60px; border-radius:16px; background:rgba(18,181,165,.18); border:1px solid rgba(18,181,165,.42); display:grid; place-items:center; font-size:1.8rem; }
.offer-main { position:relative; flex:1; min-width:0; }
.offer-badge { display:inline-flex; align-items:center; gap:8px; font-size:.66rem; font-weight:700; text-transform:uppercase; letter-spacing:.09em; color:#8BF0E3; background:rgba(18,181,165,.16); border:1px solid rgba(18,181,165,.35); padding:4px 12px; border-radius:100px; }
.offer-badge .dot { width:7px; height:7px; border-radius:50%; background:#19D6C2; animation:offerPulse 1.8s infinite; }
@keyframes offerPulse { 0%{box-shadow:0 0 0 0 rgba(18,181,165,.55);} 70%{box-shadow:0 0 0 8px rgba(18,181,165,0);} 100%{box-shadow:0 0 0 0 rgba(18,181,165,0);} }
.offer-main h3 { font-family:var(--display); font-weight:700; font-size:1.32rem; color:#fff; margin:10px 0 6px; line-height:1.15; }
.offer-main h3 .hl { color:#3FD9C7; }
.offer-main p { font-size:.9rem; color:rgba(255,255,255,.8); margin:0; max-width:540px; }
.offer-cta { position:relative; flex:none; }
.offer-cta .btn { background:#fff; color:var(--navy); border-color:#fff; }
.offer-cta .btn:hover { background:var(--paper); }
@media (max-width:720px){ .offer-banner { flex-direction:column; align-items:flex-start; } .offer-cta, .offer-cta .btn { width:100%; justify-content:center; } }
@media (prefers-reduced-motion: reduce){ .offer-badge .dot { animation:none; } }

/* WiztraChat hero badge (same pill design as WiztraShop, in Chat's amber accent) */
.wc-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,138,92,0.16); border: 1px solid rgba(255,138,92,0.42); color: #FFC7AE; font-weight: 700; font-size: 0.78rem; padding: 6px 13px; border-radius: 100px; margin-bottom: 18px; }
