/* HiveThread marketing site — Design System v3 (reference-matched).
   Type: Switzer (self-hosted, see switzer.css). Near-black primary CTAs,
   burnt-orange accent (<=10%), light-blue section band. Approved 2026-06-17.
   Self-contained for the rebuilt homepage; other pages migrate onto this,
   then it replaces the v2 styles.css. */

:root{
  --ink:#14181F; --ink-muted:#5B636E; --ink-subtle:#79818C; --ink-hover:#2A2F38;
  --accent:#F26A1B; --accent-strong:#E2581C; --accent-ink:#B5470E; --accent-wash:#FDF0E8;
  --band-blue:#DCE9F6; --band-blue-ink:#33485E; --bubble-out:#DCE9F6;
  --bg:#FFFFFF; --surface-sunken:#F6F7F9; --surface-2:#F1F3F5; --surface-3:#ECEFF3;
  --border-subtle:#E7E9ED; --border:#D6DAE0;
  --ch-sms:#16A34A; --ch-msgr:#2D6CDF; --ch-ig:#D6336C;
  --radius-sm:6px; --radius-md:10px; --radius-lg:14px; --radius-xl:20px;
  --shadow-sm:0 1px 2px rgba(20,24,31,.06);
  --shadow-md:0 4px 12px rgba(20,24,31,.08); --shadow-lg:0 18px 44px rgba(20,24,31,.16);
  --maxw:1180px; --narrow:760px; --ease:cubic-bezier(.22,1,.36,1);
  --z-nav:50; --z-navmenu:60;
}
*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{font-family:"Switzer",system-ui,-apple-system,"Segoe UI",sans-serif;color:var(--ink);background:var(--bg);
  font-size:1.0625rem;line-height:1.6;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility}
h1,h2,h3{line-height:1.08;letter-spacing:-0.03em;text-wrap:balance}
h2{font-size:clamp(1.75rem,3.2vw,2.5rem);font-weight:700}
h3{font-size:1.3125rem;font-weight:600;letter-spacing:-0.02em}
p{text-wrap:pretty}
img,svg{display:block;max-width:100%}
a{color:var(--accent-ink);text-underline-offset:3px}
.container{max-width:var(--maxw);margin:0 auto;padding:0 24px}
.container-narrow{max-width:var(--narrow);margin:0 auto;padding:0 24px}
.section{padding:clamp(56px,8vw,112px) 0}
.section.tight{padding:clamp(40px,5vw,72px) 0}
.bg-sunken{background:var(--surface-sunken)}
.lead{font-size:1.1875rem;line-height:1.55;color:var(--ink-muted);max-width:62ch}
.muted{color:var(--ink-muted)}
.section-head{text-align:center;max-width:52ch;margin:0 auto clamp(34px,5vw,52px)}
.section-head h2{margin-bottom:12px}
.section-head p{color:var(--ink-muted);font-size:1.0625rem}
.wmk{font-weight:800;letter-spacing:-0.03em} .wmk .hive{color:var(--accent-strong)}
.dot{width:8px;height:8px;border-radius:50%;flex:none;display:inline-block}

/* buttons */
.btn{display:inline-flex;align-items:center;justify-content:center;gap:.5rem;font:600 .9375rem/1 "Switzer",sans-serif;
  padding:.8rem 1.25rem;border-radius:var(--radius-md);border:1px solid transparent;cursor:pointer;text-decoration:none;
  transition:transform .15s var(--ease),background .15s var(--ease),box-shadow .15s var(--ease)}
.btn-large{padding:1rem 1.6rem;font-size:1rem}
.btn-primary{background:var(--ink);color:#fff}
.btn-primary:hover{background:var(--ink-hover);transform:translateY(-1px);box-shadow:var(--shadow-md)}
.btn-secondary{background:#fff;color:var(--ink);border-color:var(--border)}
.btn-secondary:hover{background:var(--surface-2)}
.btn-ghost{background:rgba(255,255,255,.12);color:#fff;border-color:rgba(255,255,255,.6);backdrop-filter:blur(4px)}
.btn-ghost:hover{background:rgba(255,255,255,.22)}
a:focus-visible,.btn:focus-visible,button:focus-visible{outline:2px solid var(--accent);outline-offset:2px}

/* nav */
.site-header{position:sticky;top:0;z-index:var(--z-nav);background:rgba(255,255,255,.82);backdrop-filter:blur(12px);border-bottom:1px solid var(--border-subtle)}
.site-header .inner{max-width:var(--maxw);margin:0 auto;padding:0 24px;display:flex;align-items:center;gap:26px;height:66px}
.logo{display:inline-flex;align-items:center;gap:10px;text-decoration:none;color:var(--ink);font-weight:800;font-size:1.3rem;letter-spacing:-0.035em}
.logo .mark{width:30px;height:30px;border-radius:8px;flex:none}
.logo .hive{color:var(--accent-strong)}
#site-nav{display:flex;gap:22px;margin-left:6px}
#site-nav a{color:var(--ink-muted);text-decoration:none;font-weight:500;font-size:.9375rem}
#site-nav a:hover{color:var(--ink)}
.nav-cta{margin-left:auto;display:flex;align-items:center;gap:16px}
.nav-cta .login{color:var(--ink-muted);text-decoration:none;font-weight:500;font-size:.9375rem}
.nav-cta .login:hover{color:var(--ink)}
.nav-toggle{display:none;background:none;border:0;color:var(--ink);cursor:pointer;padding:6px;margin-left:auto}
.nav-toggle svg{width:26px;height:26px;stroke:currentColor;fill:none;stroke-width:2}
@media(max-width:860px){
  #site-nav{position:fixed;inset:66px 0 auto 0;z-index:var(--z-navmenu);flex-direction:column;gap:0;background:#fff;
    border-bottom:1px solid var(--border-subtle);padding:8px 24px 18px;transform:translateY(-130%);transition:transform .28s var(--ease);box-shadow:var(--shadow-lg)}
  #site-nav.open{transform:translateY(0)}
  #site-nav a{padding:13px 0;border-bottom:1px solid var(--border-subtle);font-size:1.05rem}
  .nav-cta{display:none}
  .nav-toggle{display:inline-flex}
}

/* hero */
.hero{position:relative;color:#fff;isolation:isolate;min-height:540px;display:flex;align-items:center}
.hero::before{content:"";position:absolute;inset:0;z-index:-2;background:url("/static/hero-building.jpg") center/cover}
.hero::after{content:"";position:absolute;inset:0;z-index:-1;background:linear-gradient(105deg,rgba(10,14,22,.9) 0%,rgba(12,17,28,.66) 52%,rgba(14,20,34,.36) 100%)}
.hero .container{padding-top:84px;padding-bottom:84px}
.hero h1{font-size:clamp(1.7rem,.6rem+2.7vw,3rem);font-weight:800;line-height:1.05;white-space:nowrap}
.hero .sub{margin-top:20px;font-size:1.1875rem;line-height:1.55;max-width:60ch;color:rgba(255,255,255,.9)}
.hero .cta-row{margin-top:30px;display:flex;gap:14px;flex-wrap:wrap}
@media(max-width:980px){.hero h1{white-space:normal;max-width:18ch}}

/* tabbed demo */
.demo-wrap{background:var(--surface-sunken);border:1px solid var(--border-subtle);border-radius:var(--radius-xl);padding:14px;box-shadow:var(--shadow-md)}
.tabs{display:flex;gap:4px;flex-wrap:wrap;justify-content:center;padding:6px;margin-bottom:14px}
.tab{position:relative;background:none;border:0;font:600 .9375rem/1 "Switzer",sans-serif;color:var(--ink-muted);padding:11px 18px;cursor:pointer;border-radius:8px}
.tab:hover{color:var(--ink);background:#fff}
.tab[aria-selected="true"]{color:var(--ink);background:#fff;box-shadow:var(--shadow-sm)}
.tab[aria-selected="true"]::after{content:"";position:absolute;left:18px;right:18px;bottom:-7px;height:3px;border-radius:3px;background:var(--accent)}
.demo-panel[hidden]{display:none}
.proofline{text-align:center;max-width:24ch;margin:46px auto 0;font-size:clamp(1.6rem,3vw,2.25rem);font-weight:700;letter-spacing:-0.025em;line-height:1.14;color:var(--ink)}

/* coded app mockups */
.appwin{background:#fff;border:1px solid var(--border);border-radius:var(--radius-lg);overflow:hidden;box-shadow:var(--shadow-lg)}
.ui-inbox{display:grid;grid-template-columns:172px 248px 1fr;min-height:420px}
.side{background:var(--surface-sunken);border-right:1px solid var(--border-subtle);padding:16px 12px;font-size:.85rem}
.side .wm{font-weight:800;letter-spacing:-0.03em;font-size:1rem;margin:2px 6px 18px}
.side .wm .hive{color:var(--accent-strong)}
.side nav{display:flex;flex-direction:column;gap:2px}
.side a{display:flex;align-items:center;gap:10px;color:var(--ink-muted);text-decoration:none;padding:8px 10px;border-radius:8px;font-weight:500}
.side a.on{background:#fff;color:var(--ink);font-weight:600;box-shadow:var(--shadow-sm)}
.side svg{width:16px;height:16px;flex:none;stroke:currentColor;fill:none;stroke-width:1.8}
.threads{border-right:1px solid var(--border-subtle);display:flex;flex-direction:column}
.threads .th-top{padding:14px 16px;border-bottom:1px solid var(--border-subtle);font-weight:700;display:flex;align-items:center;justify-content:space-between}
.pill-new{font-size:.72rem;font-weight:700;color:#fff;background:var(--accent-strong);border-radius:999px;padding:4px 10px}
.trow{padding:12px 16px;border-bottom:1px solid var(--border-subtle);display:grid;grid-template-columns:32px 1fr auto;gap:10px}
.trow.sel{background:var(--accent-wash)}
.av{width:32px;height:32px;border-radius:50%;background:var(--surface-3);display:flex;align-items:center;justify-content:center;font-weight:700;font-size:.8rem;color:var(--ink-muted)}
.trow .nm{font-weight:600;font-size:.9rem}
.trow .ch{display:flex;align-items:center;gap:6px;font-size:.74rem;color:var(--ink-subtle);margin-top:1px}
.trow .sn{font-size:.82rem;color:var(--ink-muted);margin-top:3px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:150px}
.trow .tm{font-size:.72rem;color:var(--ink-subtle)}
.convo{display:flex;flex-direction:column}
.convo .cv-top{padding:14px 18px;border-bottom:1px solid var(--border-subtle);display:flex;align-items:center;gap:10px}
.convo .cv-top .nm{font-weight:700}
.chip-ch{display:inline-flex;align-items:center;gap:6px;font-size:.74rem;color:var(--ink-muted);background:var(--surface-2);padding:3px 9px;border-radius:999px}
.msgs{padding:20px 18px;display:flex;flex-direction:column;gap:12px;flex:1;background:var(--surface-sunken)}
.bub{max-width:74%;padding:11px 14px;border-radius:14px;font-size:.9rem;line-height:1.45}
.bub.in{background:#fff;border:1px solid var(--border-subtle);border-bottom-left-radius:4px;align-self:flex-start}
.bub.out{background:var(--bubble-out);color:var(--ink);border-bottom-right-radius:4px;align-self:flex-end}
.bub .who{font-size:.7rem;color:var(--ink-subtle);margin-bottom:3px;font-weight:600}
.composer{border-top:1px solid var(--border-subtle);padding:12px 16px;display:flex;gap:10px;align-items:center;background:#fff}
.composer .inp{flex:1;border:1px solid var(--border);border-radius:999px;padding:9px 14px;color:var(--ink-subtle);font-size:.88rem}
@media(max-width:760px){.ui-inbox{grid-template-columns:1fr}.ui-inbox .side,.ui-inbox .threads{display:none}}

.ai-stage{background:var(--surface-sunken);border:1px solid var(--border-subtle);border-radius:var(--radius-lg);padding:22px}
.ai-q{background:#fff;border:1px solid var(--border-subtle);border-radius:12px;border-bottom-left-radius:4px;padding:11px 14px;font-size:.92rem;max-width:78%}
.ai-card{margin-top:16px;background:#fff;border:1px solid var(--border);border-radius:14px;box-shadow:var(--shadow-md);overflow:hidden}
.ai-card .hd{display:flex;align-items:center;gap:9px;padding:12px 16px;border-bottom:1px solid var(--border-subtle);background:var(--accent-wash)}
.ai-card .hd .spark{width:20px;height:20px;color:var(--accent-strong);stroke:currentColor;fill:none;stroke-width:1.8}
.ai-card .hd b{font-size:.9rem}
.ai-card .hd .tag{margin-left:auto;font-size:.72rem;font-weight:600;color:var(--accent-ink);background:#fff;border:1px solid #f1d6c5;border-radius:999px;padding:3px 9px}
.ai-card .bd{padding:15px 16px;font-size:.95rem;line-height:1.5}
.ai-card .ft{padding:0 16px 15px;display:flex;gap:10px;align-items:center;flex-wrap:wrap}
.ai-mini{font-size:.78rem;color:var(--ink-subtle)}

/* feature rows */
.frow{display:grid;grid-template-columns:1fr 1.1fr;gap:clamp(28px,5vw,72px);align-items:center}
.frow + .frow{margin-top:clamp(48px,7vw,90px)}
.frow.reverse .ftext{order:2}
.ftext h2{margin-bottom:14px}
.ftext p{max-width:46ch}
.fchip{display:inline-flex;align-items:center;gap:7px;font-size:.8125rem;font-weight:600;color:var(--ink-muted);background:var(--surface-2);border-radius:999px;padding:5px 11px;margin-top:16px}
.fchip .d{width:8px;height:8px;border-radius:50%}
.feat-flag{display:inline-flex;align-items:center;gap:10px;font-size:1.0625rem;font-weight:600;color:var(--ink);margin-top:20px}
.feat-flag .d{width:11px;height:11px;border-radius:50%;background:var(--accent-strong);flex:none}
@media(max-width:760px){.frow{grid-template-columns:1fr}.frow.reverse .ftext{order:0}}

/* CRM */
.crm{background:#fff;border:1px solid var(--border);border-radius:var(--radius-lg);box-shadow:var(--shadow-lg);overflow:hidden;max-width:430px;margin:0 auto}
.crm .hd{padding:18px 20px;border-bottom:1px solid var(--border-subtle);display:flex;align-items:center;gap:13px}
.crm .hd .av{width:46px;height:46px;font-size:1rem}
.crm .hd .nm{font-weight:700;font-size:1.05rem}
.badge-rep{font-size:.72rem;font-weight:700;color:var(--ch-sms);background:#e7f6ee;border-radius:999px;padding:3px 9px;margin-top:3px;display:inline-block}
.crm .rows{padding:14px 20px;display:flex;flex-direction:column;gap:11px;font-size:.9rem}
.crm .r{display:flex;gap:10px;color:var(--ink-muted)}
.crm .r svg{width:16px;height:16px;flex:none;stroke:currentColor;fill:none;stroke-width:1.8;color:var(--ink-subtle)}
.tags{display:flex;gap:7px;flex-wrap:wrap}
.tag{font-size:.76rem;font-weight:600;background:var(--surface-2);border-radius:999px;padding:3px 10px;color:var(--ink-muted)}
.crm .sect{border-top:1px solid var(--border-subtle);padding:14px 20px}
.crm .sect h4{font-size:.74rem;text-transform:uppercase;letter-spacing:.05em;color:var(--ink-subtle);margin-bottom:10px;font-weight:700}
.note-box{font-size:.88rem;color:var(--ink-muted);background:var(--surface-sunken);border-radius:8px;padding:10px 12px}

/* unify */
.unify{display:grid;grid-template-columns:1fr 1fr;gap:40px;align-items:center;background:var(--surface-sunken);border:1px solid var(--border-subtle);border-radius:var(--radius-lg);padding:clamp(24px,4vw,48px)}
.unify h3{font-size:1.6rem;line-height:1.15;margin-bottom:12px}
.sources{display:flex;flex-direction:column;gap:12px}
.src{display:flex;align-items:center;gap:12px;background:#fff;border:1px solid var(--border-subtle);border-radius:12px;padding:12px 16px;font-weight:600;box-shadow:var(--shadow-sm)}
.src .lg{width:30px;height:30px;flex:none}
.uni-inbox{background:#fff;border:1px solid var(--border);border-radius:14px;box-shadow:var(--shadow-md);padding:8px}
.uni-inbox .uh{display:flex;align-items:center;gap:8px;padding:10px 12px;font-weight:700;border-bottom:1px solid var(--border-subtle)}
.uni-row{display:flex;align-items:center;gap:10px;padding:10px 12px;border-bottom:1px solid var(--border-subtle)}
.uni-row:last-child{border:0}
@media(max-width:760px){.unify{grid-template-columns:1fr}}

/* light-blue band */
.band{background:var(--band-blue)}
.band h2{max-width:18ch}
.band .sub{color:var(--band-blue-ink);font-size:1.1875rem;line-height:1.55;max-width:56ch;margin-top:14px;font-weight:500}
.platforms{display:flex;gap:10px;flex-wrap:wrap;margin-top:20px}
.plat{display:inline-flex;align-items:center;gap:8px;background:#fff;border:1px solid var(--border-subtle);border-radius:999px;padding:8px 14px;font-weight:600;font-size:.9rem;box-shadow:var(--shadow-sm)}
.plat svg{width:16px;height:16px;stroke:var(--ink);fill:none;stroke-width:1.8}
.bandgrid{display:grid;grid-template-columns:.85fr 1.15fr;gap:24px;margin-top:40px;align-items:stretch}
.bcard{background:#fff;border:1px solid var(--border-subtle);border-radius:var(--radius-lg);overflow:hidden;box-shadow:var(--shadow-md);display:flex;flex-direction:column}
.bcard .bshot{padding:22px;background:var(--surface-sunken);border-bottom:1px solid var(--border-subtle);flex:1;display:flex;align-items:center;justify-content:center}
.bcard .bcopy{padding:20px 24px 24px}
.bcard h3{margin-bottom:8px}
@media(max-width:760px){.bandgrid{grid-template-columns:1fr}}

/* mobile phone thread */
.phone{width:250px;border:10px solid #11151b;border-radius:40px;overflow:hidden;background:#fff;box-shadow:var(--shadow-lg)}
.mscreen{display:flex;flex-direction:column;height:524px;background:var(--surface-sunken)}
.mbar{display:flex;align-items:center;gap:9px;padding:12px 13px;background:#fff;border-bottom:1px solid var(--border-subtle)}
.mbar .bk{color:var(--ink-subtle);font-size:1.2rem;line-height:1}
.mbar .av{width:30px;height:30px;font-size:.72rem}
.mbar .nm{font-weight:700;font-size:.84rem;line-height:1.15}
.mbar .ch{display:flex;align-items:center;gap:5px;font-size:.66rem;color:var(--ink-subtle);margin-top:1px}
.mbar .menu{margin-left:auto;color:var(--ink-subtle);font-size:1.1rem;letter-spacing:1px}
.mmsgs{flex:1;padding:14px 12px;display:flex;flex-direction:column;gap:9px;overflow:hidden}
.mbub{max-width:82%;padding:8px 11px;border-radius:13px;font-size:.78rem;line-height:1.4}
.mbub .meta{font-size:.62rem;color:var(--ink-subtle);margin-bottom:3px;font-weight:600}
.mbub.in{background:#fff;border:1px solid var(--border-subtle);border-bottom-left-radius:4px;align-self:flex-start}
.mbub.out{background:var(--bubble-out);color:var(--ink);border-bottom-right-radius:4px;align-self:flex-end}
.mai{margin:0 12px 10px;background:var(--accent-wash);border:1px solid #f3d9c8;border-radius:12px;padding:10px 12px}
.mai .h{display:flex;align-items:center;gap:6px;font-size:.72rem;font-weight:700;color:var(--accent-ink);margin-bottom:5px}
.mai .h svg{width:13px;height:13px;stroke:currentColor;fill:none;stroke-width:2}
.mai .h .pct{margin-left:auto;color:var(--ink-subtle);font-weight:600}
.mai .txt{font-size:.74rem;color:var(--ink);line-height:1.4;margin-bottom:9px}
.mai .acts{display:flex;gap:6px}
.mai .acts .s{font-size:.68rem;font-weight:600;padding:5px 11px;border-radius:7px}
.mai .acts .send{background:var(--ink);color:#fff}
.mai .acts .edit{background:#fff;border:1px solid var(--border);color:var(--ink)}
.mcomp{display:flex;align-items:center;gap:8px;padding:9px 12px;background:#fff;border-top:1px solid var(--border-subtle)}
.mcomp .field{flex:1;border:1px solid var(--border);border-radius:999px;padding:7px 12px;font-size:.72rem;color:var(--ink-subtle)}
.mcomp .snd{width:30px;height:30px;border-radius:50%;background:var(--ink);display:flex;align-items:center;justify-content:center;flex:none}
.mcomp .snd svg{width:15px;height:15px;stroke:#fff;fill:none;stroke-width:2}
.mtabs{display:flex;justify-content:space-around;padding:8px 2px 11px;background:#fff;border-top:1px solid var(--border-subtle)}
.mtabs a{display:flex;flex-direction:column;align-items:center;gap:3px;font-size:.56rem;font-weight:500;color:var(--ink-subtle);text-decoration:none}
.mtabs a.on{color:var(--accent-ink)}
.mtabs svg{width:17px;height:17px;stroke:currentColor;fill:none;stroke-width:1.8}

/* collaboration panel */
.collab{display:flex;flex-direction:column;width:100%;background:#fff;border:1px solid var(--border);border-radius:14px;box-shadow:var(--shadow-md);overflow:hidden}
.collab .ctop{display:flex;align-items:center;gap:10px;padding:13px 16px;border-bottom:1px solid var(--border-subtle)}
.collab .ctop .nm{font-weight:700;font-size:.92rem}
.collab .ctop .ch{display:flex;align-items:center;gap:5px;font-size:.72rem;color:var(--ink-subtle);margin-top:1px}
.collab .assign{margin-left:auto;font-size:.74rem;font-weight:600;color:var(--ink);background:var(--surface-2);border-radius:999px;padding:5px 11px}
.collab .body{padding:15px 16px;display:flex;flex-direction:column;gap:11px;flex:1;background:var(--surface-sunken)}
.collab .cbub{max-width:82%;padding:9px 12px;border-radius:12px;font-size:.84rem;line-height:1.42}
.collab .cbub.in{background:#fff;border:1px solid var(--border-subtle);border-bottom-left-radius:4px;align-self:flex-start}
.collab .cbub.out{background:var(--bubble-out);color:var(--ink);border-bottom-right-radius:4px;align-self:flex-end}
.collab .cbub .meta{font-size:.66rem;color:var(--ink-subtle);margin-bottom:3px;font-weight:600}
.collab .inote{align-self:stretch;background:var(--accent-wash);border:1px solid #f3d9c8;border-radius:10px;padding:10px 12px;font-size:.83rem;color:#7a4a1f;line-height:1.42}
.collab .inote .ih{display:flex;align-items:center;gap:6px;font-weight:700;font-size:.71rem;margin-bottom:4px;color:var(--accent-ink)}
.collab .inote .ih svg{width:12px;height:12px;stroke:currentColor;fill:none;stroke-width:2}
.collab .mention{color:var(--accent-ink);font-weight:700}
.typing{display:flex;align-items:center;gap:8px;font-size:.78rem;color:var(--ink-subtle)}
.typing i{width:6px;height:6px;border-radius:50%;background:var(--ink-subtle);display:inline-block}

/* analytics */
.ana-app{display:grid;grid-template-columns:172px 1fr;min-height:430px}
.ana-main{display:flex;flex-direction:column}
.ana-top{display:flex;align-items:center;justify-content:space-between;padding:15px 22px;border-bottom:1px solid var(--border-subtle);gap:10px;flex-wrap:wrap}
.ana-top .ttl{font-weight:700;font-size:1.05rem}
.datepills{display:flex;gap:6px}
.datepills span{font-size:.78rem;font-weight:600;color:var(--ink-muted);padding:5px 11px;border-radius:999px;background:var(--surface-2)}
.datepills span.on{background:var(--ink);color:#fff}
.metrics{display:grid;grid-template-columns:repeat(4,1fr);gap:1px;background:var(--border-subtle)}
.metric{background:#fff;padding:18px 20px}
.metric .v{font-size:1.7rem;font-weight:800;letter-spacing:-0.03em}
.metric .l{font-size:.8rem;color:var(--ink-muted);margin-top:2px}
.metric .up{font-size:.74rem;color:var(--ch-sms);font-weight:600}
.chartwrap{padding:22px 24px;flex:1}
.chartwrap .chh{display:flex;justify-content:space-between;align-items:center;margin-bottom:18px;flex-wrap:wrap;gap:10px}
.legend{display:flex;gap:14px;font-size:.78rem;color:var(--ink-muted)}
.legend span{display:inline-flex;align-items:center;gap:6px}
.chart{display:grid;grid-template-columns:repeat(7,1fr);gap:18px;align-items:end;height:170px}
.col{display:flex;flex-direction:column;justify-content:flex-end;height:100%}
.col .bars{display:flex;gap:3px;align-items:flex-end;height:100%}
.col .bars i{flex:1;border-radius:3px 3px 0 0;display:block}
.col .dl{text-align:center;font-size:.72rem;color:var(--ink-subtle);margin-top:8px}
@media(max-width:760px){.ana-app{grid-template-columns:1fr}.ana-app .side{display:none}.metrics{grid-template-columns:repeat(2,1fr)}}

/* testimonials */
.testi-grid{display:grid;grid-template-columns:1fr 1fr;gap:24px}
.testimonial{background:#fff;border:1px solid var(--border-subtle);border-radius:var(--radius-lg);padding:28px;box-shadow:var(--shadow-sm)}
.stars{display:flex;gap:3px;margin-bottom:14px}
.stars svg{width:18px;height:18px;fill:var(--accent);stroke:none}
.testimonial blockquote{font-size:1.0625rem;line-height:1.6;color:var(--ink)}
.testimonial cite{display:block;margin-top:16px;font-style:normal;font-weight:600;color:var(--ink-muted);font-size:.9rem}
@media(max-width:760px){.testi-grid{grid-template-columns:1fr}}

/* pricing (homepage teaser) */
.pricehead{text-align:center;max-width:48ch;margin:0 auto 36px}
.tiers{display:grid;grid-template-columns:repeat(3,1fr);gap:22px;align-items:start}
.tier{background:#fff;border:1px solid var(--border);border-radius:var(--radius-lg);padding:28px 26px;position:relative}
.tier.popular{border:1.5px solid var(--accent-ink);box-shadow:var(--shadow-lg)}
.badge-popular{position:absolute;top:-12px;left:26px;background:var(--accent-strong);color:#fff;font-size:.75rem;font-weight:700;padding:5px 12px;border-radius:999px}
.tier .tier-name{font-weight:700;font-size:1.05rem}
.tier .price{font-size:2.6rem;font-weight:800;letter-spacing:-0.04em;line-height:1}
.tier .price-suffix{font-size:.95rem;font-weight:500;color:var(--ink-muted)}
.tier .price-meta{font-size:.95rem;color:var(--ink-muted);margin:14px 0 18px;min-height:44px}
.feature-list{list-style:none;display:flex;flex-direction:column;gap:11px;margin-bottom:24px;font-size:.9375rem}
.feature-list li{display:flex;gap:10px;align-items:flex-start}
.feature-list li svg{flex:none;margin-top:3px;color:var(--ink);width:16px;height:16px;stroke:currentColor;fill:none;stroke-width:2.4}
.tier .btn{width:100%}
.soon-i{font-size:.6875rem;font-weight:700;color:var(--accent-ink);background:var(--accent-wash);border-radius:999px;padding:1px 7px;margin-left:4px}
.price-foot{text-align:center;margin-top:26px;font-size:.95rem;font-weight:500;color:var(--ink-subtle)}
@media(max-width:820px){.tiers{grid-template-columns:1fr;max-width:420px;margin:0 auto}}

/* final CTA */
.cta-strip{background:var(--ink);color:#fff;border-radius:var(--radius-xl);padding:clamp(40px,6vw,72px);text-align:center}
.cta-strip h2{color:#fff;margin-bottom:10px}
.cta-strip p{color:rgba(255,255,255,.8);margin-bottom:24px}
.cta-strip .cta-row{display:flex;gap:14px;justify-content:center;flex-wrap:wrap}
.cta-strip .btn-secondary{background:transparent;color:#fff;border-color:rgba(255,255,255,.5)}
.cta-strip .btn-secondary:hover{background:rgba(255,255,255,.12)}

/* footer */
.site-footer{background:var(--surface-sunken);border-top:1px solid var(--border-subtle);padding:clamp(44px,6vw,72px) 0 36px}
.site-footer .columns{display:grid;grid-template-columns:1.6fr 1fr 1fr 1fr;gap:32px}
.site-footer .brand-col .logo{display:inline-flex;align-items:center;gap:11px;margin-bottom:14px;font-size:1.4rem;color:var(--ink)}
.site-footer .brand-col .logo .mark{width:36px;height:36px}
.site-footer .brand-col p{color:var(--ink-muted);font-size:.95rem;max-width:34ch}
.site-footer h3{font-size:.8125rem;text-transform:uppercase;letter-spacing:.05em;color:var(--ink-subtle);margin-bottom:14px;font-weight:700}
.site-footer .col a{display:block;color:var(--ink-muted);text-decoration:none;font-size:.95rem;padding:5px 0}
.site-footer .col a:hover{color:var(--ink)}
.copyright{margin-top:40px;padding-top:24px;border-top:1px solid var(--border-subtle);color:var(--ink-subtle);font-size:.875rem}
@media(max-width:760px){.site-footer .columns{grid-template-columns:1fr 1fr}.site-footer .brand-col{grid-column:1 / -1}}

/* ---- shared content-page components (Features, About, etc.) ---- */
.eyebrow{display:inline-block;font-size:.8125rem;font-weight:700;letter-spacing:.04em;text-transform:uppercase;color:var(--accent-ink);margin-bottom:10px}
.chip-row{display:flex;gap:10px;flex-wrap:wrap;justify-content:center;margin-top:8px}
.chip-row .chip{background:#fff;border:1px solid var(--border);padding:8px 16px;border-radius:999px;font-size:.9rem;font-weight:600;color:var(--ink-muted);text-decoration:none}
.chip-row .chip:hover{color:var(--ink);border-color:var(--ink-subtle)}
.feature-detail{display:grid;grid-template-columns:1fr 1fr;gap:clamp(32px,5vw,72px);align-items:center}
.feature-detail + .feature-detail{margin-top:clamp(40px,6vw,72px)}
.feature-detail.reverse > .shot{order:2}
.feature-detail .shot{min-width:0}
.feature-detail ul{list-style:none;margin:18px 0 0;display:flex;flex-direction:column;gap:10px}
.feature-detail li{display:flex;gap:10px;align-items:flex-start;color:var(--ink-muted)}
.feature-detail li svg{width:18px;height:18px;color:var(--ink);flex:none;margin-top:3px;stroke:currentColor;fill:none;stroke-width:2.2}
@media(max-width:760px){.feature-detail{grid-template-columns:1fr;gap:28px}.feature-detail.reverse > .shot{order:0}}
/* compact coded mockup card */
.hero-app{border-radius:var(--radius-lg);border:1px solid var(--border-subtle);background:#fff;box-shadow:var(--shadow-lg);overflow:hidden}
.hero-app .app-top{display:flex;align-items:center;gap:9px;padding:13px 18px;border-bottom:1px solid var(--border-subtle);font-weight:700;font-size:.875rem}
.hero-app .app-top svg{width:18px;height:18px;color:var(--ink-muted);stroke:currentColor;fill:none;stroke-width:1.8}
.hero-app .app-top .live{margin-left:auto;display:inline-flex;align-items:center;gap:6px;font-size:.75rem;font-weight:600;color:#0E7A40}
.hero-app .app-top .live .pulse{width:7px;height:7px;border-radius:50%;background:#1F9D57}
.hero-msgs{padding:6px 0}
.hero-msg{display:flex;gap:11px;padding:11px 18px;align-items:flex-start;border-bottom:1px solid var(--border-subtle)}
.hero-msg:last-child{border-bottom:0}
.hero-msg > .dot{width:9px;height:9px;border-radius:50%;flex:none;margin-top:6px}
.hero-msg .who{font-weight:600;font-size:.875rem;color:var(--ink)}
.hero-msg .txt{font-size:.8125rem;color:var(--ink-muted);margin-top:1px}
.hero-msg .tag{margin-left:auto;font-size:.6875rem;font-weight:600;color:var(--ink-subtle);white-space:nowrap}
.hero-ai{margin:6px 14px 14px;padding:13px 15px;border:1px solid #f3d9c8;background:var(--accent-wash);border-radius:var(--radius-md)}
.hero-ai .ai-head{display:flex;align-items:center;gap:7px;font-size:.75rem;font-weight:700;color:var(--accent-ink);margin-bottom:7px}
.hero-ai .ai-head svg{width:14px;height:14px;stroke:currentColor;fill:none;stroke-width:1.8}
.hero-ai .ai-head .conf{margin-left:auto;font-weight:600;color:var(--ink-subtle)}
.hero-ai .ai-body{font-size:.8125rem;color:var(--ink);line-height:1.5}
.hero-ai .ai-actions{display:flex;gap:7px;margin-top:11px}
.hero-ai .ai-actions .send{font-size:.75rem;font-weight:600;color:#fff;background:var(--ink);border-radius:var(--radius-sm);padding:6px 13px}
.hero-ai .ai-actions .ghost{font-size:.75rem;font-weight:600;color:var(--ink-muted);border:1px solid var(--border);border-radius:var(--radius-sm);padding:6px 13px}
.dot.sms{background:var(--ch-sms)} .dot.fb{background:var(--ch-msgr)} .dot.ig{background:var(--ch-ig)} .dot.web{background:var(--ch-sms)}
.soon-pill{display:inline-block;font-size:.7rem;font-weight:700;color:var(--accent-ink);background:var(--accent-wash);border-radius:999px;padding:3px 10px;margin-left:8px;text-transform:uppercase;letter-spacing:.02em;vertical-align:middle}

/* ---- pricing page: toggle, billed line, comparison table, FAQ ---- */
.text-center{text-align:center}
.pricing-toggle{display:inline-flex;align-items:center;gap:4px;background:var(--surface-2);border:1px solid var(--border-subtle);border-radius:999px;padding:4px;margin:0 auto 40px}
.pricing-toggle button{font:600 .9rem/1 "Switzer",sans-serif;color:var(--ink-muted);background:transparent;border:0;border-radius:999px;padding:9px 18px;cursor:pointer;transition:background .15s var(--ease),color .15s var(--ease)}
.pricing-toggle button[aria-pressed="true"]{background:#fff;color:var(--ink);box-shadow:var(--shadow-sm)}
.pricing-toggle .save{color:var(--accent-ink);font-weight:700;margin-left:4px}
.tier .billed{font-size:.8125rem;color:var(--ink-subtle);margin-top:6px}
.compare-table{width:100%;border-collapse:collapse;margin-top:8px;font-size:.9375rem}
.compare-table thead th{background:var(--surface-2);text-align:left;padding:13px 16px;font-weight:700;border:1px solid var(--border-subtle);color:var(--ink)}
.compare-table tbody th{text-align:left;padding:11px 16px;font-weight:600;background:var(--surface-sunken);border:1px solid var(--border-subtle);color:var(--ink)}
.compare-table td{padding:11px 16px;border:1px solid var(--border-subtle);text-align:center;color:var(--ink-muted)}
.compare-table .check{color:var(--ink)}
.compare-table .check svg{width:18px;height:18px;display:inline-block;vertical-align:-3px;stroke:currentColor;fill:none;stroke-width:2.4}
.compare-table .partial{color:var(--ink-subtle);font-size:.85rem}
.compare-table .x{color:var(--border)}
.compare-table .soon{color:var(--accent-ink);font-weight:700;font-size:.78rem}
.compare-table .section-row th{background:var(--ink);color:#fff;text-transform:uppercase;font-size:.72rem;letter-spacing:.05em;padding:9px 16px}
@media(max-width:760px){.compare-table{font-size:.85rem}.compare-table thead th,.compare-table tbody th,.compare-table td{padding:8px 10px}}
.faq details{border-bottom:1px solid var(--border-subtle);padding:18px 0}
.faq details:first-of-type{border-top:1px solid var(--border-subtle)}
.faq summary{cursor:pointer;font-size:1.0625rem;font-weight:600;color:var(--ink);list-style:none;position:relative;padding-right:36px}
.faq summary::-webkit-details-marker{display:none}
.faq summary::after{content:'';position:absolute;right:4px;top:50%;width:10px;height:10px;border-right:2px solid var(--accent-ink);border-bottom:2px solid var(--accent-ink);transform:translateY(-70%) rotate(45deg);transition:transform .15s var(--ease)}
.faq details[open] summary::after{transform:translateY(-30%) rotate(225deg)}
.faq details[open] summary{color:var(--accent-ink)}
.faq details p{margin-top:12px;color:var(--ink-muted);line-height:1.6}

/* ---- About / Contact components ---- */
h1{font-size:clamp(2rem,4.5vw,2.9rem);font-weight:800;line-height:1.08}
h1 em,h2 em{font-style:normal;color:var(--accent-ink)}
.ic{stroke:currentColor;stroke-width:1.75;fill:none;stroke-linecap:round;stroke-linejoin:round}
.card{background:#fff;border:1px solid var(--border-subtle);border-radius:var(--radius-lg);padding:28px;box-shadow:var(--shadow-sm)}
.icon-tile{width:46px;height:46px;border-radius:var(--radius-md);background:var(--surface-2);color:var(--ink);display:inline-flex;align-items:center;justify-content:center;margin-bottom:16px}
.icon-tile.accent{background:var(--accent-wash);color:var(--accent-ink)}
.icon-tile svg{width:23px;height:23px;stroke:currentColor;stroke-width:1.75;fill:none}
.callout{background:var(--accent-wash);border:1px solid #f3d9c8;border-radius:var(--radius-md);padding:18px 22px;color:#7a4a1f}
.meta{font-size:.875rem;color:var(--ink-subtle)}
.two-col-grid{display:grid;grid-template-columns:1fr 1fr;gap:24px}
.prose p{margin-bottom:16px;color:var(--ink-muted)} .prose h2{margin-top:44px;margin-bottom:10px}
@media(max-width:760px){.two-col-grid{grid-template-columns:1fr}}

/* ---- legal pages (Privacy / Terms / Data deletion) ---- */
.legal-body{background:var(--surface-sunken)}
.legal main{max-width:760px;margin:0 auto;padding:48px 24px 80px}
.legal h1{font-size:clamp(2rem,4vw,2.5rem);margin-bottom:8px}
.legal h2{font-size:1.375rem;margin-top:40px;margin-bottom:12px}
.legal h3{font-size:1.0625rem;margin-top:24px}
.legal p,.legal li{color:var(--ink-muted);line-height:1.7}
.legal strong{color:var(--ink)}
.legal main a{text-decoration:underline}
.legal ul,.legal ol{margin:12px 0 16px 20px}
.legal ul li,.legal ol li{margin-bottom:8px}
.legal table{width:100%;border-collapse:collapse;margin:16px 0 24px;font-size:.875rem}
.legal table th{background:var(--surface-2);text-align:left;padding:10px 14px;font-weight:600;border:1px solid var(--border-subtle);color:var(--ink)}
.legal table td{padding:10px 14px;border:1px solid var(--border-subtle);color:var(--ink-muted);vertical-align:top}
.legal code{background:var(--surface-2);padding:2px 6px;border-radius:4px;font-family:Consolas,'Liberation Mono',Menlo,monospace;font-size:.8125rem;color:var(--ink)}
.legal .meta{font-size:.875rem;color:var(--ink-subtle);padding-bottom:32px;border-bottom:1px solid var(--border-subtle);margin-bottom:32px}
.prose a{text-decoration:underline}

/* ---- temporary waitlist gate (remove to re-open signups) ---- */
.waitlist-banner{background:var(--ink);color:#fff;text-align:center;padding:11px 16px;font-size:.9rem;font-weight:500;line-height:1.45}
.waitlist-banner a{color:#fff;text-decoration:underline;text-underline-offset:2px;font-weight:700}
.wl-main{padding:clamp(44px,7vw,84px) 0}
.wl-wrap{max-width:520px;margin:0 auto;padding:0 24px;text-align:center}
.wl-card{background:#fff;border:1px solid var(--border);border-radius:var(--radius-lg);box-shadow:var(--shadow-md);padding:clamp(24px,4vw,36px);margin-top:28px;text-align:left}
.wl-field{margin-bottom:16px}
.wl-field label{display:block;font-size:.9rem;font-weight:600;color:var(--ink);margin-bottom:6px}
.wl-field input,.wl-field select{width:100%;padding:11px 14px;border:1px solid var(--border);border-radius:var(--radius-md);font-size:1rem;font-family:inherit;color:var(--ink);background:#fff}
.wl-field input:focus,.wl-field select:focus{outline:2px solid var(--accent);outline-offset:1px;border-color:var(--accent)}
.wl-hp{position:absolute;left:-9999px;width:1px;height:1px;overflow:hidden}
#waitlist-submit{width:100%}
#waitlist-status{font-size:.9rem;margin-top:12px;text-align:center;min-height:20px;color:var(--ink-muted)}

@media (prefers-reduced-motion: reduce){
  *{transition:none!important;animation:none!important;scroll-behavior:auto!important}
}
