
:root{
  --ink:#122A44;         /* deep navy background, softened from near-black */
  --ink-2:#16304F;       /* raised panel on dark */
  --ink-3:#20415F;       /* hairline on dark */
  --surface:#F8FAFB;     /* off-white, softened from pure white to reduce glare */
  --surface-muted:#EEF3F6;
  --surface-cool:#F5F9FB;
  --teal:#15C2C7;        /* verified / human present */
  --teal-deep:#0C8E92;
  --teal-ink:#063e40;
  --coral:#FF5E5A;       /* the gap / threat */
  --coral-deep:#D8332F;
  --text:#122033;
  --text-muted:#5A6B7B;
  --text-dim:#8496a5;
  --line:#DCE5EB;
  --focus:#15C2C7;
  --maxw:1200px;
  --r:14px;
  --r-lg:22px;
  --shadow:0 1px 2px rgba(10,22,40,.06),0 8px 30px rgba(10,22,40,.08);
  --shadow-lg:0 24px 60px -20px rgba(10,22,40,.35);
  --f-display:"Space Grotesk",system-ui,sans-serif;
  --f-body:"IBM Plex Sans",system-ui,sans-serif;
  --f-mono:"IBM Plex Mono",ui-monospace,monospace;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{margin:0;font-family:var(--f-body);color:var(--text);background:var(--surface);
  font-size:17px;line-height:1.6;-webkit-font-smoothing:antialiased;overflow-x:hidden}
h1,h2,h3,h4{font-family:var(--f-display);font-weight:600;line-height:1.08;
  letter-spacing:-.02em;margin:0;color:var(--text)}
h1{font-size:clamp(2.4rem,5.2vw,4.1rem)}
h2{font-size:clamp(1.8rem,3.4vw,2.7rem)}
h3{font-size:1.28rem;letter-spacing:-.01em}
p{margin:0 0 1rem}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
.wrap{max-width:var(--maxw);margin:0 auto;padding:0 24px}
.eyebrow{font-family:var(--f-mono);font-size:.74rem;font-weight:500;letter-spacing:.18em;
  text-transform:uppercase;color:var(--teal-deep)}
.eyebrow.on-dark{color:var(--teal)}
.lede{font-size:clamp(1.05rem,1.6vw,1.28rem);color:var(--text-muted);max-width:60ch}
.center{text-align:center;margin-inline:auto}

/* ---- buttons ---- */
.btn{display:inline-flex;align-items:center;gap:.55rem;font-family:var(--f-body);
  font-weight:600;font-size:1rem;padding:.85rem 1.5rem;border-radius:999px;
  border:1.5px solid transparent;cursor:pointer;transition:transform .18s ease,
  box-shadow .18s ease,background .18s ease,border-color .18s ease;white-space:nowrap}
.btn:focus-visible{outline:3px solid var(--focus);outline-offset:2px}
.btn-primary{background:var(--coral);color:#fff;box-shadow:0 10px 24px -8px rgba(255,94,90,.6)}
.btn-primary:hover{transform:translateY(-2px);background:var(--coral-deep)}
.btn-ghost{background:transparent;color:var(--text);border-color:var(--line)}
.btn-ghost:hover{border-color:var(--teal-deep);color:var(--teal-deep)}
.btn-ghost.on-dark{color:#dfeaf1;border-color:#2a4763}
.btn-ghost.on-dark:hover{border-color:var(--teal);color:#fff}
.btn svg{width:18px;height:18px}

/* ---- header ---- */
header.site{position:sticky;top:0;z-index:60;background:rgba(255,255,255,.86);
  backdrop-filter:saturate(140%) blur(12px);border-bottom:1px solid var(--line)}
.nav{display:flex;align-items:center;justify-content:space-between;height:72px;gap:1rem}
.brand{display:flex;align-items:center;gap:.6rem;font-family:var(--f-display);
  font-weight:600;font-size:1.32rem;letter-spacing:-.02em}
.brand .mark{width:34px;height:34px;flex:0 0 34px}
.pp{font-family:var(--f-mono);font-size:.6rem;letter-spacing:.12em;text-transform:uppercase;
  color:var(--coral-deep);border:1px solid rgba(216,51,47,.35);border-radius:6px;
  padding:.18rem .4rem;line-height:1;align-self:center}
.navlinks{display:flex;align-items:center;gap:.35rem;list-style:none;margin:0;padding:0}
.navlinks a{font-size:.96rem;font-weight:500;padding:.5rem .7rem;border-radius:8px;color:var(--text)}
.navlinks a:hover{background:var(--surface-muted);color:var(--teal-deep)}
.has-menu{position:relative}
.menu{position:absolute;top:calc(100% + 10px);left:0;background:#fff;border:1px solid var(--line);
  border-radius:14px;box-shadow:var(--shadow-lg);padding:.5rem;min-width:280px;opacity:0;
  visibility:hidden;transform:translateY(6px);transition:all .18s ease}
.has-menu:hover .menu,.has-menu:focus-within .menu{opacity:1;visibility:visible;transform:translateY(0)}
.menu a{display:flex;flex-direction:column;padding:.6rem .7rem;border-radius:9px;gap:.1rem}
.menu a small{color:var(--text-dim);font-size:.78rem;font-weight:400}
.menu a[aria-disabled=true]{opacity:.5;cursor:default}
.menu a[aria-disabled=true]:hover{background:transparent}
.nav-cta{display:flex;align-items:center;gap:.6rem}
.burger{display:none;background:none;border:1px solid var(--line);border-radius:10px;
  width:44px;height:44px;cursor:pointer;align-items:center;justify-content:center}
.burger span,.burger span::before,.burger span::after{content:"";display:block;width:19px;
  height:2px;background:var(--text);position:relative;transition:.2s}
.burger span::before{position:absolute;top:-6px}.burger span::after{position:absolute;top:6px}
.mobile{display:none;border-bottom:1px solid var(--line);background:#fff}
.mobile.open{display:block}
.mobile ul{list-style:none;margin:0;padding:.5rem 24px 1.2rem}
.mobile a{display:block;padding:.7rem .2rem;border-bottom:1px solid var(--surface-muted);font-weight:500}
.mobile .grp{font-family:var(--f-mono);font-size:.7rem;letter-spacing:.14em;text-transform:uppercase;
  color:var(--text-dim);padding:1rem .2rem .3rem}

/* ---- hero ---- */
.hero{position:relative;background:var(--ink);color:#eaf2f7;overflow:hidden}
.hero::after{content:"";position:absolute;inset:0;background:
  radial-gradient(1200px 500px at 78% -10%,rgba(21,194,199,.16),transparent 60%),
  radial-gradient(700px 400px at 8% 110%,rgba(255,94,90,.10),transparent 60%);pointer-events:none}
.hero .wrap{position:relative;z-index:2;padding:clamp(3.5rem,8vw,6.5rem) 24px clamp(1rem,2.2vw,2rem)}
.hero h1{color:#fff;max-width:16ch}
.hero .lede{color:#cbdae4;margin-top:1.4rem;font-size:clamp(1.08rem,1.8vw,1.35rem)}
.hero-cta{display:flex;gap:.9rem;flex-wrap:wrap;margin-top:2.2rem}
.hero-tags{display:flex;gap:.5rem;flex-wrap:wrap;margin-top:2.4rem}
.tag{font-family:var(--f-mono);font-size:.72rem;letter-spacing:.06em;color:#c1d2dd;
  border:1px solid #2c4a68;border-radius:999px;padding:.35rem .7rem}
.tag b{color:var(--teal);font-weight:600}

/* ---- signature: presence line ---- */
.pulse{margin-top:clamp(2.4rem,5vw,3.6rem);position:relative}
.pulse svg{width:100%;height:120px;display:block;overflow:visible}
.pl-base{fill:none;stroke:#22405c;stroke-width:2}
.pl-live{fill:none;stroke:var(--teal);stroke-width:3;filter:drop-shadow(0 0 6px rgba(21,194,199,.7))}
.pl-gap{fill:none;stroke:var(--coral);stroke-width:3;stroke-dasharray:6 7;
  filter:drop-shadow(0 0 6px rgba(255,94,90,.6))}
.pl-dot{fill:#fff;filter:drop-shadow(0 0 8px rgba(21,194,199,.9))}
.pl-label{font-family:var(--f-mono);font-size:12px;fill:#8aa2b2;letter-spacing:.04em}
.pl-label.teal{fill:var(--teal)}.pl-label.coral{fill:var(--coral)}
@keyframes sweep{to{stroke-dashoffset:0}}
.pl-live{stroke-dasharray:1400;stroke-dashoffset:1400;animation:sweep 2.6s ease-out .3s forwards}

/* ---- sections ---- */
section{padding:clamp(3.6rem,7vw,6rem) 0}
.sec-cool{background:var(--surface-cool)}
.sec-ink{background:var(--ink);color:#dfeaf1}
.sec-ink h2,.sec-ink h3{color:#fff}
.sec-head{max-width:64ch}
.sec-head h2{margin:.6rem 0 .8rem}
.sec-ink .sec-head p{color:#a9bccb}

/* problem cards */
.grid{display:grid;gap:1.1rem}
.g3{grid-template-columns:repeat(3,1fr)}
.g2{grid-template-columns:repeat(2,1fr)}
.g4{grid-template-columns:repeat(4,1fr)}
.card{background:#fff;border:1px solid var(--line);border-radius:var(--r-lg);padding:1.6rem;
  box-shadow:var(--shadow);transition:transform .2s ease,box-shadow .2s ease}
.card:hover{transform:translateY(-4px);box-shadow:var(--shadow-lg)}
.card .ic{width:44px;height:44px;border-radius:12px;display:grid;place-items:center;
  background:rgba(255,94,90,.1);margin-bottom:1rem}
.card.pos .ic{background:rgba(21,194,199,.13)}
.card .ic svg{width:22px;height:22px}
.card h3{margin-bottom:.5rem}
.card p{color:var(--text-muted);margin:0;font-size:.98rem}

/* stat band */
.statband{background:var(--ink-2);border:1px solid var(--ink-3);border-radius:var(--r-lg);
  padding:2rem;display:flex;gap:2rem;align-items:center;flex-wrap:wrap;margin-top:2.2rem}
.statband .big{font-family:var(--f-display);font-size:clamp(2.6rem,6vw,3.6rem);color:var(--coral);
  line-height:1;font-weight:600}
.statband p{color:#c2d3de;margin:0;max-width:52ch}
.statband cite{display:block;font-style:normal;font-family:var(--f-mono);font-size:.72rem;
  color:#93aabb;margin-top:.6rem;letter-spacing:.03em}

/* multi-source stat grid: separate figures, separate sources, not additive */
.statgrid-note{font-family:var(--f-mono);font-size:.74rem;color:#93aabb;margin:1.4rem 0 1.6rem;
  letter-spacing:.01em}
.statgrid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.1rem}
.statcard{background:var(--ink-2);border:1px solid var(--ink-3);border-radius:var(--r-lg);
  padding:1.7rem 1.6rem}
.statcard .big{font-family:var(--f-display);font-size:clamp(2.1rem,4.2vw,2.8rem);color:var(--coral);
  line-height:1;font-weight:600;margin-bottom:.7rem}
.statcard p{color:#c2d3de;margin:0 0 .8rem;font-size:.95rem}
.statcard cite{display:block;font-style:normal;font-family:var(--f-mono);font-size:.7rem;
  color:#93aabb;letter-spacing:.02em;border-top:1px solid #22405c;padding-top:.7rem}

/* comparison table */
.cmp{width:100%;border-collapse:separate;border-spacing:0;margin-top:1.6rem;
  border:1px solid var(--line);border-radius:var(--r-lg);overflow:hidden;background:#fff}
.cmp th,.cmp td{padding:1rem 1.15rem;text-align:left;vertical-align:top;font-size:.98rem}
.cmp thead th{font-family:var(--f-display);font-size:1rem;background:var(--surface-muted);
  border-bottom:1px solid var(--line)}
.cmp thead th:last-child{background:var(--teal-ink);color:#eafcfc}
.cmp tbody tr+tr td{border-top:1px solid var(--surface-muted)}
.cmp td:first-child{font-family:var(--f-mono);font-size:.8rem;letter-spacing:.03em;
  text-transform:uppercase;color:var(--text-dim);width:22%}
.cmp td:last-child{background:rgba(21,194,199,.06);font-weight:500}
.cmp .x{color:var(--coral-deep);font-weight:600}
.cmp .ok{color:var(--teal-deep);font-weight:600}

/* not-a-list (differentiation) */
.notlist{display:grid;gap:.9rem;grid-template-columns:repeat(2,1fr);margin-top:1.8rem}
.nl{background:var(--ink-2);border:1px solid var(--ink-3);border-radius:var(--r);padding:1.15rem 1.3rem}
.nl b{font-family:var(--f-display);color:#fff;display:block;margin-bottom:.25rem;font-size:1.02rem}
.nl b span{color:var(--coral)}
.nl p{color:#a9bccb;margin:0;font-size:.94rem}
.nl p em{color:var(--teal);font-style:normal;font-weight:600}

/* how it works steps */
.steps{counter-reset:s;display:grid;gap:1.1rem;grid-template-columns:repeat(3,1fr);margin-top:2rem}
.step{position:relative;background:#fff;border:1px solid var(--line);border-radius:var(--r-lg);
  padding:1.7rem 1.5rem 1.5rem}
.step .n{font-family:var(--f-mono);font-size:.78rem;letter-spacing:.1em;color:var(--teal-deep)}
.step h3{margin:.7rem 0 .5rem}
.step p{color:var(--text-muted);margin:0;font-size:.96rem}

/* verticals grid */
.vgrid{display:grid;gap:1rem;grid-template-columns:repeat(3,1fr);margin-top:2.2rem}
.vcard{display:flex;flex-direction:column;gap:.5rem;background:#fff;border:1px solid var(--line);
  border-radius:var(--r-lg);padding:1.5rem;transition:transform .2s,box-shadow .2s,border-color .2s}
.vcard:hover{transform:translateY(-4px);box-shadow:var(--shadow-lg);border-color:var(--teal)}
.vcard .k{font-family:var(--f-mono);font-size:.72rem;letter-spacing:.1em;text-transform:uppercase;color:var(--text-dim)}
.vcard h3{font-size:1.18rem}
.vcard p{color:var(--text-muted);font-size:.94rem;margin:0;flex:1}
.vcard .go{color:var(--teal-deep);font-weight:600;font-size:.92rem;display:inline-flex;align-items:center;gap:.3rem}
.vcard.soon{opacity:.72}
.vcard.soon .go{color:var(--text-dim)}

/* privacy strip */
.priv{display:grid;grid-template-columns:1.1fr 1fr;gap:2.4rem;align-items:center}
.priv ul{list-style:none;margin:1.2rem 0 0;padding:0;display:grid;gap:.8rem}
.priv li{display:flex;gap:.7rem;align-items:flex-start;color:#c3d3de}
.priv li svg{flex:0 0 20px;width:20px;height:20px;margin-top:3px}
.priv li b{color:#fff;font-family:var(--f-body);font-weight:600}

/* team */
.team{display:grid;grid-template-columns:repeat(3,1fr);gap:1.1rem;margin-top:2rem}
.member{background:#fff;border:1px solid var(--line);border-radius:var(--r-lg);padding:1.6rem}
.member .av{width:52px;height:52px;border-radius:50%;background:var(--teal-ink);color:#eafcfc;
  display:grid;place-items:center;font-family:var(--f-display);font-weight:600;margin-bottom:1rem}
.member h3{font-size:1.1rem}.member .role{font-family:var(--f-mono);font-size:.74rem;letter-spacing:.08em;
  text-transform:uppercase;color:var(--teal-deep);margin:.2rem 0 .7rem}
.member p{color:var(--text-muted);font-size:.92rem;margin:0}

/* CTA band */
.ctaband{background:linear-gradient(135deg,var(--teal-ink),var(--ink));color:#fff;text-align:center}
.ctaband h2{color:#fff}.ctaband p{color:#bfe9ea;max-width:56ch;margin-inline:auto}
.ctaband .hero-cta{justify-content:center}

/* footer */
footer.site{background:var(--ink);color:#9fb6c4;padding:3.2rem 0 2rem;border-top:1px solid var(--ink-3)}
.fgrid{display:grid;grid-template-columns:1.6fr 1fr 1fr 1fr;gap:2rem}
footer.site h4{font-family:var(--f-mono);font-size:.72rem;letter-spacing:.14em;text-transform:uppercase;
  color:#6f8698;margin-bottom:.9rem;font-weight:500}
footer.site a{display:block;color:#a9bccb;padding:.28rem 0;font-size:.92rem}
footer.site a:hover{color:var(--teal)}
.fbrand{display:flex;align-items:center;gap:.55rem;font-family:var(--f-display);font-weight:600;
  color:#fff;font-size:1.2rem;margin-bottom:.8rem}
.fbrand .mark{width:30px;height:30px}
.fnote{color:#6f8698;font-size:.82rem;max-width:40ch}
.fbottom{border-top:1px solid var(--ink-3);margin-top:2.4rem;padding-top:1.4rem;display:flex;
  justify-content:space-between;gap:1rem;flex-wrap:wrap;font-size:.82rem;color:#6f8698}
.fbottom .pp{color:#8aa2b2;border-color:#2a4763}

/* generic vertical intro */
.vintro{display:grid;grid-template-columns:1.15fr .85fr;gap:2.6rem;align-items:start}
.vpanel{background:var(--ink-2);border:1px solid var(--ink-3);border-radius:var(--r-lg);padding:1.7rem}
.vpanel .k{font-family:var(--f-mono);font-size:.72rem;letter-spacing:.12em;text-transform:uppercase;color:var(--teal)}
.vpanel h3{color:#fff;margin:.5rem 0 .7rem}
.vpanel p{color:#a9bccb;margin:0;font-size:.96rem}
.usecases{display:grid;grid-template-columns:repeat(2,1fr);gap:1.1rem;margin-top:2rem}
.uc{background:#fff;border:1px solid var(--line);border-radius:var(--r-lg);padding:1.5rem}
.uc h3{font-size:1.1rem;margin-bottom:.45rem}
.uc p{color:var(--text-muted);font-size:.95rem;margin:0}
.crumbs{font-family:var(--f-mono);font-size:.74rem;letter-spacing:.05em;color:#93aabb;margin-bottom:1.2rem}
.crumbs a{color:var(--teal)}

/* ---- brand assets ---- */
.brand img.logo{height:30px;width:auto;display:block}
.badge-img{height:32px;width:auto;display:block}
.fbrand img.logo{height:28px;width:auto;filter:brightness(0) invert(1);opacity:.92}
.fbottom .badge-img{height:38px}

/* ---- native SVG hero illustration ---- */
.hero-illus{position:relative}
.hero-illus svg{width:100%;height:auto;display:block;max-width:460px;margin-inline:auto}
.hero-ring{transform-origin:282px 216px;animation:ringPulse 2.8s ease-out infinite}
@keyframes ringPulse{
  0%{opacity:.55;transform:scale(.8)}
  70%{opacity:0}
  100%{opacity:0;transform:scale(1.24)}
}
@media(prefers-reduced-motion:reduce){.hero-ring{animation:none;opacity:0}}
.ic.img3d{background:transparent;width:66px;height:66px;margin-bottom:.7rem}
.ic.img3d img{width:66px;height:66px;object-fit:contain;filter:drop-shadow(0 6px 10px rgba(10,22,40,.12))}

/* ---- heartbeat divider ---- */
.pulse-div{background:var(--surface);padding:1.6rem 0;line-height:0}
.pulse-div.on-cool{background:var(--surface-cool)}
.pulse-div svg{width:100%;height:46px;display:block;overflow:visible}
.pulse-div path{fill:none;stroke:var(--teal);stroke-width:2.5;
  filter:drop-shadow(0 0 5px rgba(21,194,199,.45))}
.pulse-div .dot{fill:var(--coral)}

/* ---- product / dashboard feature ---- */
.product{display:grid;grid-template-columns:.82fr 1.18fr;gap:2.6rem;align-items:center}
.shot{border-radius:16px;overflow:hidden;border:1px solid var(--line);background:#fff;
  box-shadow:var(--shadow-lg)}
.shot .bar{display:flex;align-items:center;gap:.5rem;padding:.65rem .9rem;background:#eef3f6;
  border-bottom:1px solid var(--line)}
.shot .bar .d{width:10px;height:10px;border-radius:50%;background:#c7d3db}
.shot .bar .u{margin-left:.6rem;font-family:var(--f-mono);font-size:.72rem;color:#8496a5}
.shot img{width:100%;display:block}
.product .feat{list-style:none;margin:1.3rem 0 0;padding:0;display:grid;gap:.7rem}
.product .feat li{display:flex;gap:.6rem;align-items:flex-start;color:var(--text-muted);font-size:.97rem}
.product .feat li svg{flex:0 0 19px;width:19px;height:19px;margin-top:3px;color:var(--teal-deep)}
.product .feat li b{color:var(--text);font-weight:600}

/* ---- newsroom ---- */
.news-tabs{display:flex;flex-wrap:wrap;gap:.5rem;margin-top:1.6rem}
.news-tabs span{font-family:var(--f-mono);font-size:.78rem;padding:.45rem .9rem;border-radius:999px;
  border:1px solid var(--line);color:var(--text-muted);background:#fff}
.news-tabs span.active{background:var(--teal-ink);color:#eafcfc;border-color:var(--teal-ink)}
.news-feature{display:grid;grid-template-columns:1.1fr .9fr;gap:2rem;align-items:center;
  background:var(--ink-2);border:1px solid var(--ink-3);border-radius:var(--r-lg);padding:2rem;margin-top:2rem}
.news-feature .k{font-family:var(--f-mono);font-size:.72rem;letter-spacing:.1em;text-transform:uppercase;color:var(--teal)}
.news-feature h3{color:#fff;font-size:1.7rem;margin:.6rem 0 .8rem;line-height:1.12}
.news-feature p{color:#a9bccb;margin:0 0 1.2rem}
.news-feature .vis{background:linear-gradient(135deg,var(--teal-ink),var(--ink));border-radius:14px;
  aspect-ratio:16/10;display:grid;place-items:center;border:1px solid var(--ink-3)}
.news-feature .vis img{width:64px;height:64px}
.news-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.1rem;margin-top:1.4rem}
.news-card{display:flex;flex-direction:column;background:#fff;border:1px solid var(--line);
  border-radius:var(--r-lg);padding:1.5rem;transition:transform .2s,box-shadow .2s;overflow:hidden}
.news-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-lg)}
.news-card .thumb{aspect-ratio:16/10;margin:-1.5rem -1.5rem 1rem;background:var(--surface-muted);overflow:hidden}
.news-card .thumb img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .3s ease}
.news-card:hover .thumb img{transform:scale(1.05)}
.news-card .meta{font-family:var(--f-mono);font-size:.72rem;letter-spacing:.04em;color:var(--text-dim);
  display:flex;gap:.6rem;margin-bottom:.7rem}
.news-card .meta .cat{color:var(--teal-deep)}
.news-card h3{font-size:1.12rem;margin-bottom:.5rem}
.news-card p{color:var(--text-muted);font-size:.94rem;margin:0 0 1rem;flex:1}
.news-card .go{color:var(--teal-deep);font-weight:600;font-size:.9rem}
.news-empty{border:1px dashed var(--line);border-radius:var(--r-lg);padding:2rem;text-align:center;
  color:var(--text-dim);margin-top:1.4rem;font-size:.95rem}
.press{display:grid;grid-template-columns:repeat(3,1fr);gap:1.1rem;margin-top:2rem}
.press .card h3{font-size:1.05rem;margin-bottom:.4rem}
.press .card p{font-size:.92rem}

/* ---- privacy grid (symmetric) ---- */
.privgrid{display:grid;grid-template-columns:repeat(4,1fr);gap:1.1rem;margin-top:2.2rem}
.privgrid .card{display:flex;flex-direction:column}
.privgrid .card p{flex:1}

/* ---- member photo ---- */
.member .av{overflow:hidden}
.member .av img{width:52px;height:52px;object-fit:cover;border-radius:50%;display:block}

/* ---- hiring callout ---- */
.hiring{display:flex;align-items:center;justify-content:space-between;gap:1.6rem;flex-wrap:wrap;
  margin-top:1.6rem;background:#fff;border:1px solid var(--line);border-left:4px solid var(--teal);
  border-radius:var(--r-lg);padding:1.6rem 1.8rem;box-shadow:var(--shadow)}
.hiring .k{font-family:var(--f-mono);font-size:.72rem;letter-spacing:.12em;text-transform:uppercase;color:var(--teal-deep)}
.hiring h3{margin:.3rem 0 .4rem;font-size:1.35rem}
.hiring p{margin:0;color:var(--text-muted);max-width:64ch;font-size:.97rem}
.hiring .btn{flex:0 0 auto}

/* ---- presence seal: privacy-forward, single-session (not a monitoring board) ---- */
.seal-wrap{display:flex;flex-direction:column;gap:.5rem}
.seal{position:relative;background:#0b1c30;border:1px solid #24425f;border-radius:18px;overflow:hidden;
  padding:1.8rem 1.6rem 1.5rem;box-shadow:0 30px 70px -30px rgba(0,0,0,.7)}
.seal::before{content:"";position:absolute;left:50%;top:38%;width:220px;height:220px;
  transform:translate(-50%,-50%);background:radial-gradient(circle,rgba(21,194,199,.16),transparent 70%);
  pointer-events:none}
.seal-badge{position:relative;z-index:1;display:flex;align-items:center;gap:.5rem;
  font-family:var(--f-mono);font-size:.68rem;letter-spacing:.1em;color:#8aa2b2;margin-bottom:1.2rem}
.seal-badge .dot{width:7px;height:7px;border-radius:50%;background:var(--teal);
  box-shadow:0 0 0 0 rgba(21,194,199,.55);animation:sealPulse 2.4s ease-out infinite}
@keyframes sealPulse{0%{box-shadow:0 0 0 0 rgba(21,194,199,.55)}70%{box-shadow:0 0 0 9px rgba(21,194,199,0)}100%{box-shadow:0 0 0 0 rgba(21,194,199,0)}}
.seal-icon{position:relative;z-index:1;display:flex;justify-content:center;margin-bottom:1rem}
.seal-icon svg{width:104px;height:104px}
.seal-label{position:relative;z-index:1;text-align:center;font-family:var(--f-mono);font-size:.82rem;
  color:#dfeaf1;margin-bottom:1.3rem}
.seal-flow{position:relative;z-index:1;display:flex;align-items:center;justify-content:center;
  gap:.5rem;flex-wrap:wrap;margin-bottom:1.2rem}
.seal-flow .st{font-family:var(--f-mono);font-size:.68rem;letter-spacing:.03em;padding:.32rem .65rem;
  border-radius:999px;white-space:nowrap}
.seal-flow .st.ok{background:rgba(21,194,199,.14);color:#57e3e7;border:1px solid rgba(21,194,199,.4)}
.seal-flow .st.warn{background:rgba(255,94,90,.14);color:#ff9b98;border:1px solid rgba(255,94,90,.4)}
.seal-flow .ar{color:#4d6b82;font-size:.75rem}
.seal-foot{position:relative;z-index:1;text-align:center;font-family:var(--f-mono);font-size:.68rem;
  color:#8aa2b2;letter-spacing:.02em;border-top:1px solid #1d3850;padding-top:.9rem}
.illus{font-family:var(--f-mono);font-size:.66rem;letter-spacing:.12em;text-transform:uppercase;color:#8aa2b2;text-align:right}

/* ---- traction / locked tiles ---- */
.locked-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1rem;margin-top:2rem}
.locktile{position:relative;background:var(--ink-2);border:1px solid var(--ink-3);border-radius:14px;
  padding:1.3rem 1.2rem;overflow:hidden}
.locktile .lk{width:26px;height:26px;border-radius:7px;background:rgba(255,255,255,.06);
  display:grid;place-items:center;margin-bottom:.85rem;color:#8aa2b2}
.locktile .lk svg{width:15px;height:15px}
.locktile b{display:block;font-family:var(--f-display);color:#eaf2f7;font-size:1rem;line-height:1.25;
  filter:blur(0);margin-bottom:.3rem}
.locktile small{font-family:var(--f-mono);font-size:.7rem;letter-spacing:.05em;color:var(--teal)}
.locktile small.prog{color:#febc2e}
.locktile::after{content:"";position:absolute;right:-14px;bottom:-14px;width:70px;height:70px;
  background:radial-gradient(circle,rgba(21,194,199,.12),transparent 70%)}
.nda-note{font-family:var(--f-mono);font-size:.74rem;color:#93aabb;margin-top:1.4rem;letter-spacing:.02em}
.nda-note b{color:#cbdae4;font-weight:500}

/* ---- integration strip ---- */
.integ{display:flex;flex-wrap:wrap;gap:.7rem;margin-top:1.6rem}
.integ span{font-family:var(--f-mono);font-size:.82rem;color:#123;background:#fff;border:1px solid var(--line);
  border-radius:999px;padding:.5rem .95rem}
.integ span b{color:var(--teal-deep);font-weight:600}

/* ---- demo form ---- */
.formwrap{display:grid;grid-template-columns:.9fr 1.1fr;gap:2.6rem;align-items:start}
.form-card{background:#fff;border:1px solid var(--line);border-radius:var(--r-lg);padding:1.8rem;
  box-shadow:var(--shadow-lg)}
.field{margin-bottom:1rem}
.field label{display:block;font-size:.82rem;font-weight:600;margin-bottom:.35rem;color:var(--text)}
.field input,.field select,.field textarea{width:100%;font-family:var(--f-body);font-size:.98rem;
  padding:.72rem .85rem;border:1.5px solid var(--line);border-radius:10px;background:#fff;color:var(--text)}
.field textarea{resize:vertical;min-height:88px}
.field input:focus,.field select:focus,.field textarea:focus{outline:none;border-color:var(--teal);
  box-shadow:0 0 0 3px rgba(21,194,199,.18)}
.field .err{color:var(--coral-deep);font-size:.78rem;margin-top:.3rem;display:none}
.field.invalid input,.field.invalid select{border-color:var(--coral)}
.field.invalid .err{display:block}
.form-ok{display:none;background:rgba(21,194,199,.1);border:1px solid rgba(21,194,199,.5);
  border-radius:12px;padding:1.1rem 1.2rem;color:var(--teal-ink);font-weight:500}
.form-ok.show{display:block}
.form-note{font-family:var(--f-mono);font-size:.72rem;color:var(--text-dim);margin-top:.9rem}

@media(max-width:960px){
  .g3,.g4,.steps,.vgrid,.team{grid-template-columns:repeat(2,1fr)}
  .priv,.vintro,.formwrap,.product,.news-feature{grid-template-columns:1fr}
  .fgrid{grid-template-columns:1fr 1fr}
  .notlist,.locked-grid,.news-grid,.press,.privgrid,.statgrid{grid-template-columns:repeat(2,1fr)}
  .statgrid .statcard:nth-child(3){grid-column:1/-1}
}
@media(max-width:1080px){
  .navlinks,.nav-cta .btn-ghost{display:none}
  .burger{display:inline-flex}
}
@media(max-width:720px){
  .g3,.g4,.g2,.steps,.vgrid,.team,.usecases,.locked-grid,.news-grid,.press,.privgrid,.statgrid{grid-template-columns:1fr}
  .fgrid{grid-template-columns:1fr}
  .cmp thead{display:none}
  .cmp td{display:block;border:none!important}
  .cmp td:first-child{padding-bottom:.2rem;width:auto}
  .cmp tr{display:block;border-top:1px solid var(--line);padding:.6rem 0}
  .cmp td:last-child{background:transparent}
}
@media(prefers-reduced-motion:reduce){
  *{animation:none!important;transition:none!important;scroll-behavior:auto!important}
  .pl-live{stroke-dashoffset:0}
}


/* brand-alignment additions for pages still on the previous Tailwind build */
.text-blue-600,.group:hover .group-hover\:text-blue-600{color:var(--teal-deep) !important}
.bg-blue-600{background-color:var(--teal-deep) !important;border-color:var(--teal-deep) !important}
.border-blue-600{border-color:var(--teal-deep) !important}
.flogo-chip{background:#fff;border-radius:8px;padding:.35rem .6rem;display:inline-flex;align-items:center}

/* keep the header CTA from overflowing next to the burger on small phones */
@media(max-width:1080px){.nav-cta .btn-primary{display:none}}
