/* ======================================================================
   MoonClerk — Shared site chrome (Header + Footer)
   Injected by mc-chrome.js on every subpage.
   Mirrors the canonical nav/footer in Homepage Variation F.
   ====================================================================== */

/* ---------- NAV ---------- */
.mc-nav,
.mc-footer { box-sizing:border-box; }
.mc-nav *,
.mc-nav *::before,
.mc-nav *::after,
.mc-footer *,
.mc-footer *::before,
.mc-footer *::after { box-sizing:border-box; }
.mc-nav :where(a, button):focus,
.mc-nav :where(a, button):focus-visible,
.mc-footer :where(a, button):focus,
.mc-footer :where(a, button):focus-visible,
#mc-chat-launcher:focus,
#mc-chat-launcher:focus-visible {
  outline-style:solid !important;
  outline-width:3px !important;
  outline-color:var(--teal-dk, #0f766e) !important;
  outline-offset:3px !important;
  border-radius:8px;
}
/* Reserve the nav's height on the SSR placeholder so filling it client-side
   does not push page content down (prevents ~0.4 CLS on every page). Height
   matches the rendered nav: 16px*2 padding + 44px content + 1px border = 77px
   (73px on phones where padding is 14px). */
#mc-nav { position:sticky; top:0; z-index:100; min-height:77px; }
@media (max-width: 768px) { #mc-nav { min-height:73px; } }
#mc-nav .mc-nav { position:relative; top:auto; z-index:auto; }
.mc-nav { position:sticky; top:0; background: rgba(255,255,255,.88); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom:1px solid var(--line, #e2e8f0); z-index:50; max-width:100vw; }
.mc-nav-inner { max-width:1200px; margin:0 auto; display:flex; align-items:center; justify-content:space-between; gap:16px; padding:16px 32px; }
.mc-nav .logo { display:inline-flex; align-items:center; min-height:44px; }
.mc-nav .logo-img {
  display:block;
  filter: contrast(1.18) saturate(1.05);
  height:26px;
  width:auto;
}
.mc-nav-links { display:flex; gap:32px; font-size:14px; color:var(--ink-2, #334155); font-weight:500; align-items:center; min-width:0; }
.mc-nav-links a { color:inherit; text-decoration:none; transition:color .15s; }
.mc-nav-links .mc-mobile-login { display:none; }
.mc-nav-links a:hover, .mc-nav-links .nav-dd-trigger:hover { color:var(--ink, #0b1f2a); }
.mc-nav-links a.active { color:var(--ink, #0b1f2a); font-weight:600; }
.mc-nav-links a.active::after {
  content:''; display:block; height:2px; border-radius:2px;
  background: var(--teal, #0f766e); margin-top:4px;
}
.mc-nav-right { display:flex; gap:10px; align-items:center; min-width:0; }
.mc-nav .btn { display:inline-flex; align-items:center; justify-content:center; min-height:44px; padding:10px 18px; border-radius:8px; font-size:14px; font-weight:600; cursor:pointer; border:none; transition: all .15s; text-decoration:none; }
.mc-nav .btn-ghost { background:transparent; color:var(--ink-2, #334155); }
.mc-nav .btn-ghost:hover { color:var(--ink, #0b1f2a); }
.mc-nav .btn-accent { background:var(--teal, #0f766e); color:#fff; box-shadow: 0 1px 2px rgba(15,118,110,.3); }
.mc-nav .btn-accent:hover { background:var(--teal-dk, #0f766e); }

/* Dropdowns */
.mc-nav .nav-dd { position:relative; display:inline-block; }
.mc-nav .nav-dd-trigger { background:none; border:none; min-height:44px; padding:0; font:inherit; color:inherit; cursor:pointer; display:inline-flex; align-items:center; gap:4px; font-weight:500; }
.mc-nav .nav-dd-menu {
  position:absolute; top:calc(100% + 10px); left:50%; transform:translateX(-50%) translateY(-4px);
  min-width:300px; background:#fff; border:1px solid var(--line, #e2e8f0); border-radius:12px;
  padding:8px; box-shadow:0 20px 50px -20px rgba(0,0,0,.2);
  opacity:0; visibility:hidden; transition:opacity .15s, transform .15s, visibility .15s;
  z-index:60;
}
.mc-nav .nav-dd:hover .nav-dd-menu,
.mc-nav .nav-dd[data-open="1"] .nav-dd-menu {
  opacity:1; visibility:visible; transform:translateX(-50%) translateY(0);
}
.mc-nav .nav-dd-menu a { display:flex; gap:12px; min-height:44px; padding:10px 12px; border-radius:8px; align-items:flex-start; text-decoration:none; color:inherit; }
.mc-nav .nav-dd-menu a:hover { background:var(--bg, #f8fafc); }
.mc-nav .nav-dd-ic { width:32px; height:32px; border-radius:8px; background:var(--teal-bg, #f0fdfa); color:var(--teal-dk, #0f766e); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.mc-nav .nav-dd-label { display:block; font-size:13px; font-weight:600; color:var(--ink, #0b1f2a); }
.mc-nav .nav-dd-sub { display:block; font-size:11px; color:var(--ink-3, #64748b); margin-top:2px; }
.mc-nav .nav-dd-divider { height:1px; background:var(--line, #e2e8f0); margin:6px 8px; }

/* Mobile hamburger */
.mc-nav-burger { display:none; align-items:center; justify-content:center; min-width:44px; min-height:44px; background:none; border:none; padding:8px; cursor:pointer; color:var(--ink, #0b1f2a); }
.mc-nav-burger svg { width:22px; height:22px; }

@media (max-width: 1024px) {
  .mc-nav-links { display:none; }
  .mc-nav-burger { display:inline-flex; }
  .mc-nav[data-mobile-open="1"] .mc-nav-links {
    display:flex; flex-direction:column; align-items:stretch; gap:0;
    position:absolute; top:100%; left:0; right:0;
    background:#fff; border-bottom:1px solid var(--line, #e2e8f0);
    padding:8px 16px 16px; box-shadow:0 20px 50px -20px rgba(0,0,0,.2);
  }
  .mc-nav[data-mobile-open="1"] .mc-nav-links > a,
  .mc-nav[data-mobile-open="1"] .mc-nav-links .nav-dd-trigger { display:flex; min-height:48px; padding:14px 4px; font-size:16px; border-bottom:1px solid var(--line-2, #f1f5f9); width:100%; text-align:left; }
  .mc-nav[data-mobile-open="1"] .mc-nav-links .mc-mobile-login {
    display:flex;
    color:var(--ink, #0b1f2a);
    font-weight:600;
  }
  .mc-nav[data-mobile-open="1"] .mc-nav-links .nav-dd { display:block; width:100%; }
  .mc-nav[data-mobile-open="1"] .mc-nav-links .nav-dd-menu { display:none; position:static; opacity:0; visibility:hidden; transform:none; box-shadow:none; border:none; padding:4px 0 8px 12px; min-width:0; }
  .mc-nav[data-mobile-open="1"] .mc-nav-links .nav-dd[data-open="1"] .nav-dd-menu { display:block; opacity:1; visibility:visible; }
}
@media (max-width: 768px) {
  .mc-nav-right .btn-ghost { display:none; }
}
@media (max-width: 768px) {
  .mc-nav-inner { padding:14px 18px; }
  .mc-nav-right .btn-accent { font-size:13px; padding:8px 12px; }
}

/* ---------- FOOTER ---------- */
.mc-footer {
  background: var(--navy, #0b1f2a);
  color:#cbd5e0;
  padding:56px 32px 32px;
  display:block;
  position:relative;
  left:50%;
  right:50%;
  width:100vw;
  max-width:100vw;
  margin-top:-1px;
  margin-left:-50vw;
  margin-right:-50vw;
}
.mc-footer a { color:inherit; text-decoration:none; min-height:44px; }
.mc-footer-inner { max-width:1200px; width:100%; margin:0 auto; }
.mc-footer-grid { display:grid; grid-template-columns: 1.5fr repeat(5, minmax(0, 1fr)); gap:36px; margin-bottom:48px; }
.mc-footer-brand .logo { color:#fff; margin-bottom:20px; display:inline-flex; }
.mc-footer-brand .logo-img {
  display:block;
  filter: contrast(1.18) saturate(1.05);
  height:32px;
  width:auto;
}
.mc-footer-help { color:#94a3b8; font-size:13px; line-height:1.7; margin-bottom:18px; }
.mc-footer-help-head { color:#fff; font-size:13px; font-weight:700; margin-bottom:8px; letter-spacing:.02em; }
.mc-footer-help-line span { color:#64748b; margin-right:4px; }
.mc-footer-help-line a { color:#94a3b8; display:inline-flex; align-items:center; }
.mc-footer-help-line a:hover { color:#fff; }
.mc-footer-stripe { display:inline-flex; align-items:center; gap:8px; margin:0 0 18px; padding:6px 12px; border:1px solid rgba(255,255,255,.15); border-radius:6px; font-size:11px; color:#cbd5e0; background:rgba(255,255,255,.02); }
.mc-footer-stripe .fs-logo { font-weight:700; color:#fff; letter-spacing:-.02em; font-size:13px; }
.mc-footer-stripe .fs-sep { color:rgba(255,255,255,.2); }
.mc-footer-stripe .fs-text { font-weight:500; letter-spacing:.01em; }

.mc-footer-col h5 { color:#fff; font-size:12px; font-weight:700; margin:0 0 18px; letter-spacing:.06em; text-transform:uppercase; }
.mc-footer-col { min-width:0; }
.mc-footer-col a { display:flex; align-items:center; padding:5px 0; font-size:13px; color:#94a3b8; transition:color .15s; }
/* Consent withdrawal trigger — a button (not an href="#") styled to match its sibling
   links exactly, so the Company column reads as one list. */
.mc-footer-col button.mc-footer-link { display:flex; align-items:center; padding:5px 0; font-size:13px; color:#94a3b8; transition:color .15s; background:none; border:0; font-family:inherit; cursor:pointer; text-align:left; }
.mc-footer-col button.mc-footer-link:hover { color:#fff; }
.mc-footer-col a:hover { color:#fff; }
.mc-footer-bottom { border-top:1px solid rgba(255,255,255,.08); padding-top:24px; display:flex; justify-content:space-between; align-items:center; font-size:12px; color:#64748b; gap:24px; flex-wrap:wrap; }
.mc-footer-social { display:flex; gap:12px; }
.mc-footer-social a { color:#94a3b8; transition:color .15s; display:inline-flex; align-items:center; justify-content:center; min-width:44px; }
.mc-footer-social a:hover { color:#fff; }

@media (max-width: 1024px) {
  .mc-footer-grid { grid-template-columns:1fr 1fr; }
}
@media (max-width: 960px) {
  .mc-footer-brand {
    grid-column: 1 / -1;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .mc-footer { padding:48px 18px 24px; }
  .mc-footer-grid { grid-template-columns: 1fr 1fr; gap:28px; margin-bottom:32px; }
  .mc-footer-bottom { flex-direction:column; gap:8px; text-align:center; }
}
@media (max-width: 420px) {
  .mc-nav-inner { padding-left:14px; padding-right:14px; }
  .mc-nav-right { gap:6px; }
  .mc-nav-right .btn-accent { max-width:46vw; white-space:normal; line-height:1.15; }
  .mc-footer-grid { grid-template-columns:1fr; }
}

/* ---------- Intercom launcher stand-in ---------- */
#mc-chat-launcher { position:fixed; right:22px; bottom:22px; width:54px; height:54px; border-radius:50%; background: var(--teal, #0f766e); color:#fff; border:0; box-shadow: 0 10px 24px -6px rgba(15,118,110,.55), 0 4px 12px rgba(0,0,0,.18); cursor:pointer; display:flex; align-items:center; justify-content:center; z-index:100; transition:transform .2s, box-shadow .2s; }
#mc-chat-launcher:hover { transform: translateY(-2px) scale(1.04); box-shadow: 0 14px 30px -6px rgba(20,184,166,.7), 0 6px 14px rgba(0,0,0,.22); }

/* ---- integrations (live event router + recipe cards) ---- */
.intg { padding:100px 32px; background: var(--bg); }

/* router */
.router { max-width:1040px; margin:0 auto; background:#fff; border:1px solid var(--line); border-radius:18px; padding:36px 40px 32px; box-shadow:0 10px 40px -24px rgba(15,23,42,.2); position:relative; overflow:hidden; }
.router-head { display:flex; align-items:center; gap:14px; margin-bottom:24px; font-size:12px; color:var(--ink-3); text-transform:uppercase; letter-spacing:.1em; font-weight:700; }
.router-head::after { content:''; flex:1; height:1px; background:var(--line); }
.router-live { display:inline-flex; align-items:center; gap:6px; color:#0f766e; }
.router-live-dot { width:7px; height:7px; border-radius:50%; background:#14b8a6; box-shadow:0 0 0 0 rgba(20,184,166,.6); animation: routerPulse 1.6s ease-out infinite; }
@keyframes routerPulse { 0%{box-shadow:0 0 0 0 rgba(20,184,166,.6);} 80%{box-shadow:0 0 0 10px rgba(20,184,166,0);} 100%{box-shadow:0 0 0 0 rgba(20,184,166,0);} }

.router-body { position:relative; height:320px; }

/* center hub */
.router-hub { position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); z-index:3; }
.router-hub-core { width:96px; height:96px; border-radius:22px; background:linear-gradient(135deg, #0f766e, #14b8a6); color:#fff; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:3px; box-shadow:0 10px 30px -10px rgba(15,118,110,.5); position:relative; }
.router-hub-core::before { content:''; position:absolute; inset:-6px; border-radius:26px; border:2px solid rgba(20,184,166,.25); animation: hubRing 2.4s ease-out infinite; }
@keyframes hubRing { 0%{transform:scale(.95); opacity:1;} 100%{transform:scale(1.35); opacity:0;} }
.router-hub-logo { display:block; width:40px; height:20px; max-width:68%; color:#fff; }
.router-hub-sub { font-size:9px; text-transform:uppercase; letter-spacing:.12em; opacity:.85; }

/* event bubble floating at hub */
.router-event { position:absolute; top:50%; left:50%; transform:translate(-50%, -160%); background:#0f172a; color:#fff; padding:10px 14px; border-radius:10px; font-size:12px; line-height:1.3; white-space:nowrap; box-shadow:0 8px 20px -6px rgba(15,23,42,.4); opacity:0; transition:opacity .25s ease, transform .25s ease; z-index:4; pointer-events:none; }
.router-event.show { opacity:1; transform:translate(-50%, -175%); }
.router-event::after { content:''; position:absolute; bottom:-5px; left:50%; transform:translateX(-50%) rotate(45deg); width:10px; height:10px; background:#0f172a; }
.router-event-amt { font-weight:700; color:#14b8a6; }
.router-event-tag { display:inline-block; margin-left:8px; padding:1px 6px; background:rgba(20,184,166,.18); color:#2dd4bf; border-radius:4px; font-size:10px; font-weight:600; letter-spacing:.04em; text-transform:uppercase; }

/* logo nodes arranged in a circle */
.router-logo { position:absolute; width:72px; height:72px; border-radius:16px; background:#fff; border:1.5px solid var(--line); display:flex; flex-direction:column; align-items:center; justify-content:center; gap:2px; transition:all .35s cubic-bezier(.4,0,.2,1); z-index:2; }
.router-logo-img { width:28px; height:28px; display:flex; align-items:center; justify-content:center; }
.router-logo-img svg { width:100%; height:100%; }
.router-logo-name { font-size:9px; font-weight:600; color:var(--ink-2); letter-spacing:.02em; }
.router-logo.flash { transform:scale(1.08); border-color:#14b8a6; box-shadow:0 6px 20px -6px rgba(20,184,166,.5), 0 0 0 4px rgba(20,184,166,.15); }
.router-logo.flash .router-logo-name { color:#0f766e; }

/* event particles */
.router-particle { position:absolute; width:12px; height:12px; border-radius:50%; background:radial-gradient(circle at 30% 30%, #2dd4bf, #0f766e); box-shadow:0 0 12px rgba(20,184,166,.6); z-index:1; pointer-events:none; transition:transform 1.1s cubic-bezier(.4,0,.2,1), opacity .35s ease; opacity:0; }

/* connector lines (dashed) */
.router-lines { position:absolute; inset:0; pointer-events:none; z-index:0; }
.router-lines path { stroke:#cbd5e0; stroke-width:1; stroke-dasharray:3 4; fill:none; opacity:.5; }
.router-lines path.active { stroke:#14b8a6; opacity:.9; stroke-dasharray:none; animation: dashMove .8s linear; }
@keyframes dashMove { from{stroke-dashoffset:16;} to{stroke-dashoffset:0;} }

/* recipes */
.recipes { max-width:1040px; margin:40px auto 0; }
.recipes-head { display:flex; align-items:center; justify-content:space-between; margin-bottom:18px; flex-wrap:wrap; gap:10px; }
.recipes-title { font-size:13px; font-weight:700; color:var(--ink); }
.recipes-sub { font-size:12px; color:var(--ink-3); }
.recipe-grid { display:grid; grid-template-columns:repeat(2, 1fr); gap:14px; }
.recipe { background:#fff; border:1px solid var(--line); border-radius:12px; padding:16px 18px; display:flex; align-items:center; gap:12px; transition:all .2s ease; text-decoration:none; color:inherit; cursor:pointer; }
.recipe:hover { border-color:#14b8a6; box-shadow:0 6px 18px -8px rgba(20,184,166,.35); transform:translateY(-1px); }
.recipe-mc { width:36px; height:36px; border-radius:9px; background:linear-gradient(135deg,#0f766e,#14b8a6); color:#fff; display:flex; align-items:center; justify-content:center; font-family:'Graphik', system-ui, sans-serif; font-weight:700; font-size:16px; flex-shrink:0; }
.recipe-mc-logo { display:block; width:24px; height:12px; max-width:72%; color:#fff; }
.recipe-arrow { color:var(--ink-3); font-size:12px; }
.recipe-target { width:36px; height:36px; border-radius:9px; background:#f8fafc; border:1px solid var(--line); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.recipe-target svg { width:22px; height:22px; }
.recipe-body { flex:1; min-width:0; }
.recipe-when { font-size:11px; color:var(--ink-3); font-weight:600; text-transform:uppercase; letter-spacing:.04em; margin-bottom:2px; }
.recipe-then { font-size:13px; font-weight:600; color:var(--ink); line-height:1.35; }
.recipe-use { font-size:12px; color:var(--ink-3); font-weight:600; margin-left:auto; }

.intg-cta { max-width:1040px; margin:28px auto 0; text-align:center; }
.intg-cta a { display:inline-flex; align-items:center; gap:8px; padding:12px 20px; background:#fff; border:1px solid var(--line); border-radius:10px; color:var(--ink); font-size:14px; font-weight:600; text-decoration:none; transition:all .2s ease; }
.intg-cta a:hover { border-color:#14b8a6; box-shadow:0 6px 18px -8px rgba(20,184,166,.35); transform:translateY(-1px); }
.zap-mark { display:inline-flex; align-items:center; justify-content:center; width:24px; height:24px; border-radius:6px; background:#ff4a00; color:#fff; font-weight:700; font-size:14px; }

/* ---- Base section styles ---- */
.section { padding:90px 32px; }
.section-inner { max-width:1200px; margin:0 auto; }
.section-head { text-align:center; margin-bottom:60px; }
.section-eyebrow { font-size:13px; font-weight:700; color:var(--teal-dk); letter-spacing:.05em; text-transform:uppercase; margin-bottom:12px; }
.section-lede { font-size:17px; color:var(--ink-2); max-width:620px; margin:0 auto; }

/* ---- Final CTA section ---- */
.final2 { position:relative; padding:96px 32px 108px; background: var(--navy); color:#fff; overflow:hidden; }
.final2::before, .final2::after { content:''; position:absolute; pointer-events:none; }
.final2::before { top:-220px; left:-180px; width:640px; height:640px; border-radius:50%; background: radial-gradient(circle, rgba(20,184,166,.18), transparent 60%); }
.final2::after { bottom:-260px; right:-180px; width:640px; height:640px; border-radius:50%; background: radial-gradient(circle, rgba(45,212,191,.12), transparent 65%); }
.final2-inner { position:relative; max-width:1160px; margin:0 auto; display:grid; grid-template-columns: 1.15fr .85fr; gap:64px; align-items:center; }
.f2-left .f2-eye { display:inline-flex; align-items:center; gap:8px; padding:6px 12px; background: rgba(20,184,166,.16); color: var(--teal-lt); border-radius:999px; font-size:11px; font-weight:700; letter-spacing:.08em; text-transform:uppercase; margin-bottom:22px; }
.f2-left .f2-eye::before { content:''; width:6px; height:6px; border-radius:50%; background: var(--teal); animation: storyPulse 1.6s ease-in-out infinite; }
.f2-left h2 { font-family:'Graphik', system-ui, sans-serif; font-weight:500; font-size:54px; line-height:1.04; letter-spacing:-.028em; color:#fff; margin:0 0 22px; max-width:580px; }
.f2-left h2 em { font-style:italic; color: var(--teal-lt); font-weight:500; }
.f2-left p { font-size:18px; line-height:1.55; color:#a1c5c4; max-width:520px; margin:0 0 32px; }

/* Value-prop chip cycler */
.f2-vps { display:flex; flex-wrap:wrap; gap:8px; margin-bottom:32px; }
.f2-vp { display:inline-flex; align-items:center; gap:8px; padding:9px 14px; background: rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.12); border-radius:999px; font-size:13.5px; font-weight:500; color:#d2e8e7; transition: background .35s, border-color .35s, color .35s, transform .35s; }
.f2-vp .f2-vp-ic { width:18px; height:18px; border-radius:50%; background: rgba(20,184,166,.18); color: var(--teal-lt); display:flex; align-items:center; justify-content:center; font-weight:700; font-size:11px; flex-shrink:0; transition: background .35s, color .35s, transform .35s; }
.f2-vp.lit { background: rgba(20,184,166,.18); border-color: rgba(20,184,166,.5); color:#fff; transform: translateY(-1px); }
.f2-vp.lit .f2-vp-ic { background: var(--teal); color:#0b1f2a; transform: scale(1.1); }

.f2-cta { display:flex; align-items:center; gap:18px; flex-wrap:wrap; }
.f2-cta .btn { padding:18px 30px; font-size:16px; }
.f2-cta .btn-ghost-light { background: transparent; border:1px solid rgba(255,255,255,.2); color:#fff; }
.f2-cta .btn-ghost-light:hover { border-color:#fff; background: rgba(255,255,255,.06); }
.f2-meta { display:flex; gap:18px; margin-top:18px; font-size:12.5px; color:#94a3b8; flex-wrap:wrap; }
.f2-meta span { display:inline-flex; align-items:center; gap:6px; }
.f2-meta svg { width:14px; height:14px; color: var(--teal-lt); }

/* Live setup widget — animates through three setup steps */
.f2-right { position:relative; }
.f2-card { background: rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.1); border-radius:22px; padding:24px 22px 22px; backdrop-filter: blur(6px); }
.f2-card-head { display:flex; align-items:center; justify-content:space-between; padding-bottom:16px; border-bottom:1px solid rgba(255,255,255,.08); margin-bottom:18px; }
.f2-card-title { font-size:11px; font-weight:700; letter-spacing:.12em; text-transform:uppercase; color:#94a3b8; }
.f2-card-live { display:inline-flex; align-items:center; gap:6px; font-size:11px; color: var(--teal-lt); font-weight:700; letter-spacing:.05em; }
.f2-card-live::before { content:''; width:7px; height:7px; border-radius:50%; background: #2dd4bf; animation: liveDot 1.8s ease-in-out infinite; }
@keyframes liveDot { 0%{box-shadow:0 0 0 0 rgba(45,212,191,.6);} 60%{box-shadow:0 0 0 10px rgba(45,212,191,0);} 100%{box-shadow:0 0 0 0 rgba(45,212,191,0);} }
.f2-steps { display:flex; flex-direction:column; gap:10px; }
.f2-step { display:grid; grid-template-columns: 28px 1fr auto; gap:14px; align-items:center; padding:13px 14px; border-radius:12px; border:1px solid rgba(255,255,255,.08); background: rgba(255,255,255,.02); transition: background .45s, border-color .45s, transform .35s; }
.f2-step.lit { background: rgba(20,184,166,.1); border-color: rgba(20,184,166,.4); transform: translateX(2px); }
.f2-step.done { background: rgba(20,184,166,.06); border-color: rgba(20,184,166,.25); }
.f2-step-num { width:28px; height:28px; border-radius:50%; background: rgba(255,255,255,.06); color:#94a3b8; display:flex; align-items:center; justify-content:center; font-family:'Graphik', system-ui, sans-serif; font-weight:700; font-size:13px; transition: background .45s, color .45s; }
.f2-step.lit .f2-step-num, .f2-step.done .f2-step-num { background: var(--teal); color:#0b1f2a; }
.f2-step-body { min-width:0; }
.f2-step-name { font-size:14px; font-weight:600; color:#fff; }
.f2-step-desc { font-size:11.5px; color:#94a3b8; margin-top:1px; }
.f2-step-stat { font-family:'Graphik', system-ui, sans-serif; font-size:11px; font-weight:700; color:#64748b; letter-spacing:.04em; text-transform:uppercase; transition: color .45s; }
.f2-step.lit .f2-step-stat { color: var(--teal-lt); }
.f2-step.done .f2-step-stat { color: var(--teal); }
.f2-step.done .f2-step-stat::before { content:'✓ '; font-weight:700; }

.f2-card-foot { margin-top:18px; padding-top:14px; border-top:1px dashed rgba(255,255,255,.08); display:flex; justify-content:space-between; align-items:center; font-size:12px; color:#94a3b8; }
.f2-card-foot strong { color:#fff; font-family:'Graphik', system-ui, sans-serif; font-weight:700; font-variant-numeric: tabular-nums; transition: color .45s; }
.f2-card-foot strong.tick { color: var(--teal-lt); }

/* ---------- ABOUT PAGE: VALUE CARDS ---------- */
.value-human { background: linear-gradient(135deg, #fff 0%, #f0fdfa 100%); border-color: var(--teal-lt); }
.value-human::before { transform:scaleX(1); }
.vh-team { display:flex; margin-top:20px; padding-top:18px; border-top:1px dashed var(--line); }
.vh-av {
  width:38px; height:38px; border-radius:50%; border:2.5px solid #fff;
  box-shadow: 0 2px 8px rgba(11,31,42,.15);
  margin-left:-10px; display:flex; align-items:center; justify-content:center;
  font:700 11px/1 'Graphik', system-ui, sans-serif; color:#fff; letter-spacing:.01em;
  position:relative; transition: transform .25s;
}
.vh-av:first-child { margin-left:0; }
.vh-av:hover { transform: translateY(-3px) scale(1.08); z-index:2; }
.vh-1 { background: linear-gradient(135deg,#0f766e,#14b8a6); }
.vh-2 { background: linear-gradient(135deg,#1e40af,#3b82f6); }
.vh-3 { background: linear-gradient(135deg,#ec4899,#a855f7); }
.vh-4 { background: linear-gradient(135deg,#f59e0b,#dc2626); }
.vh-5 { background: linear-gradient(135deg,#10b981,#06b6d4); }
.vh-6 { background: linear-gradient(135deg,#7c3aed,#ec4899); }
.vh-rest { background:#fff; color: var(--teal-dk); border-color: var(--teal-lt); font-weight:700; }
.vh-1::after, .vh-3::after, .vh-5::after {
  content:''; position:absolute; bottom:1px; right:1px;
  width:10px; height:10px; border-radius:50%; background:#22c55e; border:2px solid #fff;
  box-shadow:0 0 0 0 rgba(34,197,94,.5);
  animation: vhLive 2s ease-in-out infinite;
}
.vh-3::after { animation-delay:.4s; }
.vh-5::after { animation-delay:.8s; }
@keyframes vhLive { 0%,100% { box-shadow:0 0 0 0 rgba(34,197,94,.45); } 50% { box-shadow:0 0 0 5px rgba(34,197,94,0); } }
.vh-foot { margin-top:14px; display:inline-flex; align-items:center; gap:8px; padding:7px 12px; background:#fff; border:1px solid var(--line); border-radius:999px; font-size:11.5px; color:var(--ink-2); }
.vh-foot b { color: var(--ink); font-weight:700; }
.vh-dot { width:7px; height:7px; border-radius:50%; background:#22c55e; box-shadow:0 0 0 0 rgba(34,197,94,.5); animation: vhLive 1.8s ease-in-out infinite; flex-shrink:0; }

/* ---------- ABOUT PAGE: TIMELINE ---------- */
.timeline { padding:80px 32px; background:var(--bg); }
.timeline-inner { max-width:900px; margin:0 auto; }
.timeline-items { position:relative; padding-left:40px; margin-top:40px; }
.timeline-items::before { content:''; position:absolute; left:12px; top:6px; bottom:6px; width:2px; background:linear-gradient(180deg, var(--teal-lt), var(--line), var(--teal-lt)); }
.tl-row { position:relative; padding:18px 0; display:grid; grid-template-columns:130px 1fr; gap:24px; align-items:baseline; transition: transform .25s; }
.tl-row::before {
  content:''; position:absolute; left:-32px; top:22px;
  width:14px; height:14px;
  background: var(--teal-lt);
  border:3px solid var(--teal);
  border-radius:50%;
  box-shadow: 0 0 0 6px rgba(20,184,166,.08);
  transition: border-color .4s, background .4s, transform .4s, box-shadow .4s;
}
.tl-row:hover::before { transform: scale(1.25); background: var(--teal); }
.tl-row:hover { transform: translateX(4px); }
.tl-row .tl-year { transition: color .25s; }
.tl-row:hover .tl-year { color: var(--amber); }
.tl-year { font-family:'Graphik', system-ui, sans-serif; font-weight:700; font-size:22px; color:var(--teal-dk); letter-spacing:0; padding:2px 4px 4px 0; white-space:nowrap; overflow:visible; line-height:1.15; font-variant-numeric:tabular-nums; }
.tl-body h4 { margin:0 0 4px; font-size:15px; font-weight:700; }
.tl-body p { margin:0; font-size:13px; color:var(--ink-2); line-height:1.55; }

/* ---------- ABOUT PAGE: FOUNDERS ---------- */
.founders { padding:100px 32px 110px; background: linear-gradient(180deg, #fff 0%, #f8fbfa 100%); position:relative; overflow:hidden; }
.founders::before { content:''; position:absolute; top:-200px; left:-200px; width:520px; height:520px; border-radius:50%; background: radial-gradient(circle, rgba(20,184,166,.08), transparent 65%); pointer-events:none; }
.founders-inner { max-width:1140px; margin:0 auto; position:relative; }
.founders-head { text-align:center; max-width:720px; margin:0 auto 64px; }
.founders-head .eyebrow { margin:0 auto 16px; }
.founders-head h2 { font-family: 'Graphik', system-ui, sans-serif; font-weight:500; font-size:46px; line-height:1.08; letter-spacing:-1.1px; color:var(--ink); margin:0 0 16px; }
.founders-head h2 em { font-style:italic; color:var(--teal-dk); }
.founders-head .lede { font-size:18px; color:var(--ink-2); line-height:1.55; max-width:560px; margin:0 auto; }

.founders-grid { display:grid; grid-template-columns: 1fr 1fr; gap:28px; }
.founder-card { background:#fff; border:1px solid var(--line); border-radius:20px; overflow:hidden; box-shadow: 0 24px 56px -28px rgba(15,30,40,.18); transition: transform .25s ease, box-shadow .25s ease; }
.founder-card:hover { transform: translateY(-2px); box-shadow: 0 30px 64px -28px rgba(15,30,40,.26); }
.founder-portrait { position:relative; aspect-ratio: 5 / 4; background:#0b3640; overflow:hidden; }
.founder-portrait svg { width:100%; height:100%; display:block; }

.founder-portrait.is-photo { aspect-ratio: 5 / 4; background:#0f1f29; overflow:hidden; }
.founder-portrait .fp-img { width:100%; height:100%; object-fit:cover; display:block; transition: transform .35s ease; }
.founder-portrait--dodd .fp-img { object-position: 50% 40%; }
.founder-portrait--ryan .fp-img { object-position: 50% 38%; }
.founder-card:hover .fp-img { transform: scale(1.03); }
.founder-portrait.is-photo::after { content:''; position:absolute; inset:auto 0 0 0; height:50%; background: linear-gradient(180deg, transparent, rgba(11,31,42,.55)); pointer-events:none; z-index:1; }
.founder-portrait.is-photo .fp-tag { z-index:2; }

.founder-portrait .fp-tag { position:absolute; bottom:18px; left:18px; display:inline-flex; align-items:center; gap:8px; padding:6px 12px; background: rgba(11,54,64,.85); backdrop-filter: blur(6px); color:#fff; font-family:'Graphik', system-ui, sans-serif; font-size:11px; font-weight:600; letter-spacing:.1em; text-transform:uppercase; border-radius:999px; border:1px solid rgba(255,255,255,.12); }
.founder-portrait .fp-tag .dot { width:7px; height:7px; border-radius:50%; background:#5eead4; box-shadow: 0 0 8px #5eead4; }
.founder-body { padding:28px 30px 30px; }
.founder-name { font-family:'Graphik', system-ui, sans-serif; font-weight:500; font-size:30px; letter-spacing:-.02em; color:var(--ink); margin:0 0 4px; line-height:1.1; }
.founder-role { font-family:'Graphik', system-ui, sans-serif; font-size:13px; font-weight:600; color: var(--teal-dk); letter-spacing:.04em; text-transform:uppercase; margin-bottom:18px; }
.founder-bio { font-size:15px; line-height:1.65; color:var(--ink-2); margin:0 0 18px; }
.founder-bio b { color:var(--ink); font-weight:600; }
.founder-quote { padding:16px 18px; background: var(--bg); border-left:3px solid var(--teal); border-radius:8px; font-size:14px; color:var(--ink-2); line-height:1.55; font-style:italic; margin-bottom:18px; }
.founder-meta { display:flex; gap:18px; flex-wrap:wrap; padding-top:18px; border-top:1px dashed var(--line); font-size:12.5px; color:var(--ink-3); }
.founder-meta b { color:var(--ink); font-weight:600; }
.founder-meta .fm-item { display:flex; align-items:center; gap:6px; }
.founder-meta .fm-item svg { color: var(--teal-dk); flex-shrink:0; }

.founders-together { margin-top:28px; padding:36px 40px; background: linear-gradient(135deg, #0b3640 0%, #06262d 100%); color:#fff; border-radius:20px; position:relative; overflow:hidden; display:grid; grid-template-columns: 1.4fr 1fr; gap:36px; align-items:center; }
.founders-together::after { content:''; position:absolute; right:-150px; top:-150px; width:380px; height:380px; border-radius:50%; background: radial-gradient(circle, rgba(94,234,212,.18), transparent 65%); pointer-events:none; }
.founders-together h3 { font-family:'Graphik', system-ui, sans-serif; font-weight:500; font-size:28px; letter-spacing:-.02em; line-height:1.2; margin:0 0 12px; color:#fff; }
.founders-together h3 em { font-style:italic; color:#5eead4; }
.founders-together p { font-size:15.5px; line-height:1.62; color: rgba(255,255,255,.78); margin:0; }
.founders-together p b { color:#fff; font-weight:600; }
.ft-sig { display:flex; flex-direction:column; gap:6px; align-items:flex-start; position:relative; z-index:2; }
.ft-sig .ft-handwritten { font-family: 'Caveat', 'Brush Script MT', cursive; font-size:32px; color:#5eead4; line-height:1; letter-spacing:.01em; }
.ft-sig .ft-meta { font-size:12.5px; color: rgba(255,255,255,.6); letter-spacing:.02em; }
.ft-sig .ft-meta b { color:#fff; font-weight:600; }

@media (max-width: 880px) {
  .founders { padding:64px 20px 70px; }
  .founders-head h2 { font-size:32px; }
  .founders-grid { grid-template-columns: 1fr; gap:20px; }
  .founders-together { grid-template-columns: 1fr; padding:28px 24px; }
  .founders-together h3 { font-size:22px; }
}

/* ---------- SCROLL REVEAL ANIMATIONS ---------- */
.reveal { opacity:0; transform:translateY(24px); transition: opacity .75s cubic-bezier(.2,.7,.2,1), transform .75s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity:1; transform:none; }
.reveal-stagger > * { opacity:0; transform:translateY(18px); transition: opacity .6s cubic-bezier(.2,.7,.2,1), transform .6s cubic-bezier(.2,.7,.2,1); }
.reveal-stagger.in > * { opacity:1; transform:none; }
.reveal-stagger.in > *:nth-child(1) { transition-delay:.02s; }
.reveal-stagger.in > *:nth-child(2) { transition-delay:.10s; }
.reveal-stagger.in > *:nth-child(3) { transition-delay:.18s; }
.reveal-stagger.in > *:nth-child(4) { transition-delay:.26s; }
.reveal-stagger.in > *:nth-child(5) { transition-delay:.34s; }
.reveal-stagger.in > *:nth-child(6) { transition-delay:.42s; }
@media (prefers-reduced-motion: reduce) { .reveal, .reveal-stagger > * { opacity:1; transform:none; transition:none; } }
