
/* ============================================================
   SIELA \2014  design system
   Serif: Merriweather 300 \00B7  Sans: Cabin \00B7  UI: Inter
   Accent: Siela orange #E8562A
   ============================================================ */
:root{
  --ink:#111111;
  --ink-2:#555555;
  --ink-3:#6A6A6A;
  --ink-4:#8B8B8B;
  --line:#E3E3E3;
  --line-2:#EDEDED;
  --sunk:#F7F7F7;
  --paper:#FFFFFF;

  --on-dark:#FFFFFF;
  --on-dark-2:#9C9C9C;
  --on-dark-3:#7C7C7C;
  --on-dark-line:#232323;

  --o-700:#9E3314;
  --o-600:#C7411C;
  --o:#E8562A;
  --o-400:#FF7A4F;
  --o-300:#FFA383;
  --o-200:#FFD2BF;
  --o-100:#FFEDE6;
  --o-50:#FFF7F3;

  --rail:rgba(17,17,17,.075);
  --rail-2:rgba(17,17,17,.16);

  --serif:"Merriweather",Georgia,"Times New Roman",serif;
  --sans:"Cabin",-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  --ui:"Inter",-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  --mono:"JetBrains Mono",ui-monospace,Menlo,monospace;

  --max:1280px;
  --rail-max:1352px;
  --pad:clamp(20px,3.6vw,30px);
  --sec:clamp(76px,10vw,140px);
  --r:6px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--paper);
  color:var(--ink);
  font-family:var(--sans);
  font-size:16px;
  line-height:26px;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  overflow-x:hidden;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
button{font:inherit;color:inherit;background:none;border:0;cursor:pointer}
::selection{background:var(--o-200);color:var(--o-700)}

/* ---------- type ---------- */
h1,h2,h3,h4{margin:0;font-family:var(--serif);font-weight:300;letter-spacing:-.005em;text-wrap:balance}
h1{font-size:clamp(34px,4.55vw,56px);line-height:1.143}
.h2{font-size:clamp(27px,3.45vw,44px);line-height:1.2}
.h4{font-size:clamp(20px,1.85vw,24px);line-height:1.333;font-weight:400}
p{margin:0}

.eyebrow{
  display:inline-flex;align-items:center;gap:9px;
  font-family:var(--ui);font-size:14px;line-height:16.5px;font-weight:500;
  text-transform:uppercase;color:var(--ink);
}
.eyebrow::before{
  content:"";width:15px;height:7px;border-radius:2px;flex:none;
  background:linear-gradient(105deg,var(--o-400),var(--o-600));
}
.lede{font-size:16px;line-height:26px;color:var(--ink-2)}

/* ---------- layout ---------- */
.sec{position:relative;padding:var(--sec) var(--pad)}
.wrap{max-width:var(--max);margin:0 auto;position:relative;z-index:2}
.rails{position:absolute;inset:0;pointer-events:none;z-index:1}
.rails::before,.rails::after{
  content:"";position:absolute;top:0;bottom:0;width:1px;
  background:repeating-linear-gradient(to bottom,var(--rail) 0 11px,transparent 11px 17px);
}
.rails::before{left:max(0px,calc(50% - var(--rail-max)/2))}
.rails::after{right:max(0px,calc(50% - var(--rail-max)/2))}
@media(max-width:980px){.rails{display:none}}

/* horizontal dashed section rules, with the reference's small squares
   sitting on the intersections with the vertical rails */
.hrule{
  position:relative;height:1px;
  width:calc(var(--rail-max) + 11px);max-width:100%;
  margin:0 auto;
  background:repeating-linear-gradient(to right,var(--rail) 0 11px,transparent 11px 17px);
}
.hrule::before,.hrule::after{
  content:"";position:absolute;top:50%;width:11px;height:11px;
  transform:translateY(-50%);border:1px solid var(--rail-2);
}
.hrule::before{left:0}
.hrule::after{right:0}
@media(max-width:980px){.hrule{display:none}}

.dark{
  background:#000;color:#fff;
  --rail:rgba(255,255,255,.085);
  --rail-2:rgba(255,255,255,.2);
  --ink:#FFFFFF;--ink-2:#9C9C9C;--ink-3:#7C7C7C;
  --line:#232323;--line-2:#1B1B1B;--sunk:#0C0C0C;--paper:#000000;
}

.sec-head{max-width:880px}
.sec-head.center{margin-left:auto;margin-right:auto;text-align:center}
.sec-head .h2{margin-top:22px}
.sec-head .lede{margin-top:20px;max-width:620px}
.sec-head.center .lede{margin-left:auto;margin-right:auto}

/* ---------- buttons (per-letter roll on hover) ---------- */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  height:46px;padding:0 22px;border-radius:var(--r);
  font-family:var(--ui);font-size:12px;font-weight:600;letter-spacing:.09em;
  text-transform:uppercase;white-space:nowrap;
  border:1px solid transparent;
  transition:background .25s ease,color .25s ease,border-color .25s ease;
}
.roll{display:inline-flex;overflow:hidden;height:15px;align-items:flex-start}
.roll span{
  display:inline-block;position:relative;white-space:pre;line-height:15px;
  transition:transform .38s cubic-bezier(.4,0,.2,1);
}
.roll span::after{content:attr(data-c);position:absolute;left:0;top:100%}
.btn:hover .roll span{transform:translateY(-100%)}
.btn-ico{
  width:27px;height:27px;border-radius:4px;flex:none;
  display:grid;place-items:center;
  background:rgba(255,255,255,.15);
  transition:background .25s ease,transform .3s ease;
}
.btn-ico svg{width:12px;height:12px}
.btn:hover .btn-ico{transform:translateX(3px)}

.btn-solid{background:var(--ink);color:#fff;border-color:var(--ink)}
.btn-solid:hover{background:var(--o);border-color:var(--o)}
.btn-ghost{background:transparent;color:var(--ink);border-color:var(--line)}
.btn-ghost:hover{border-color:var(--ink)}
.btn-ghost .btn-ico{background:var(--sunk);color:var(--ink)}
.dark .btn-ghost{border-color:#232323;color:#fff}
.dark .btn-ghost:hover{border-color:#fff}
.dark .btn-ghost .btn-ico{background:rgba(255,255,255,.1)}
.btn-white{background:#fff;color:#111;border-color:#fff}
.btn-white .btn-ico{background:#111;color:#fff}
.btn-white:hover{background:var(--o);border-color:var(--o);color:#fff}
.btn-white:hover .btn-ico{background:rgba(255,255,255,.22)}
.btn-sm{height:38px;padding:0 16px;font-size:11px}

/* ---------- announce ---------- */
.announce{
  background:#000;color:#fff;min-height:38px;
  display:flex;align-items:center;justify-content:center;
  padding:6px 16px;text-align:center;
  font-family:var(--ui);font-size:13px;line-height:1.35;
}
.announce a{display:inline-flex;align-items:center;gap:9px}
.announce b{font-weight:600}
.announce .arw{transition:transform .3s ease}
.announce a:hover .arw{transform:translateX(5px)}
@media(max-width:620px){.announce{font-size:11px;min-height:34px}}

/* ---------- nav ---------- */
.nav{
  position:sticky;top:env(safe-area-inset-top,0px);z-index:80;
  background:rgba(255,255,255,.9);
  backdrop-filter:saturate(1.6) blur(14px);
  -webkit-backdrop-filter:saturate(1.6) blur(14px);
  border-bottom:1px solid transparent;
  transition:border-color .3s ease,box-shadow .3s ease;
}
.nav.stuck{border-bottom-color:var(--line);box-shadow:0 1px 22px rgba(17,17,17,.05)}
.nav-in{max-width:var(--max);margin:0 auto;padding:15px var(--pad);display:grid;grid-template-columns:1fr auto 1fr;align-items:center;gap:38px}
.brand{display:inline-flex;align-items:center}
.brand b{font-family:var(--serif);font-size:23px;font-weight:400;letter-spacing:-.025em}
.nav-links{display:flex;align-items:center;justify-content:center;gap:30px}
.nav-links>a,.nav-drop>button{font-family:var(--ui);font-size:14px;font-weight:400;display:inline-flex;align-items:center;gap:5px;padding:6px 0;position:relative}
.nav-links>a::after{content:"";position:absolute;left:0;right:100%;bottom:2px;height:1px;background:var(--o);transition:right .3s ease}
.nav-links>a:hover::after{right:0}
.nav-drop{position:relative}
/* the chevron on the button only - not the icons inside the open panel */
.nav-drop>button svg{width:9px;height:9px;transition:transform .25s ease}
.nav-drop:hover>button svg{transform:rotate(180deg)}
.drop{
  position:absolute;top:calc(100% + 15px);left:-16px;width:252px;
  background:#fff;border:1px solid var(--line);border-radius:10px;padding:8px;
  box-shadow:0 22px 54px -22px rgba(17,17,17,.25);
  opacity:0;visibility:hidden;transform:translateY(-6px);
  transition:opacity .22s ease,transform .22s ease,visibility .22s;
}
.nav-drop:hover .drop,.nav-drop:focus-within .drop,.nav-drop .drop.open{opacity:1;visibility:visible;transform:translateY(0)}
.drop a{display:block;padding:9px 11px;border-radius:7px;transition:background .18s ease}
.drop a:hover{background:var(--o-50)}
.drop b{display:block;font-family:var(--ui);font-size:13.5px;font-weight:500}
.drop span{display:block;font-family:var(--ui);font-size:12px;color:var(--ink-3);line-height:17px}
.nav-cta{display:flex;align-items:center;gap:10px;justify-self:end}
.burger{display:none;width:40px;height:40px;place-items:center}
.burger i{display:block;width:19px;height:1.5px;background:var(--ink);position:relative}
.burger i::before,.burger i::after{content:"";position:absolute;left:0;width:19px;height:1.5px;background:var(--ink)}
.burger i::before{top:-6px}.burger i::after{top:6px}
@media(max-width:1060px){
  .nav-links{display:none}
  .burger{display:grid}
  .nav-in{display:flex;justify-content:space-between;gap:14px}
  .nav-cta .btn{display:none}
}
.mobile{position:fixed;inset:0;z-index:95;background:#fff;padding:18px var(--pad) 40px;display:none;flex-direction:column;overflow-y:auto}
.mobile.on{display:flex}
.mobile-top{display:flex;align-items:center;justify-content:space-between;margin-bottom:26px}
.mobile nav{display:flex;flex-direction:column}
.mobile nav a{font-family:var(--serif);font-size:25px;font-weight:300;padding:14px 0;border-bottom:1px solid var(--line-2)}
.mobile .btn{margin-top:26px}
.xbtn{width:40px;height:40px;display:grid;place-items:center;font-size:26px;line-height:1;font-family:var(--ui);font-weight:300}

/* ============================================================
   HERO
   ============================================================ */
.hero{padding:clamp(56px,7vw,100px) var(--pad) 48px;text-align:center;position:relative}
.badge{
  display:inline-flex;align-items:center;gap:9px;
  font-family:var(--ui);font-size:12px;font-weight:500;letter-spacing:.04em;
  text-transform:uppercase;color:var(--ink);margin-bottom:26px;
}
.badge::before{
  content:"";width:15px;height:7px;border-radius:2px;flex:none;
  background:linear-gradient(105deg,var(--o-400),var(--o-600));
}
.hero h1{max-width:850px;margin:0 auto}
.hero .sub{margin:26px auto 0;max-width:660px;font-size:16px;line-height:26px;color:var(--ink-2)}
.hero-acts{display:flex;gap:10px;justify-content:center;flex-wrap:wrap;margin-top:34px}
.hero-tiles{
  display:grid;grid-template-columns:1.96fr 1fr;gap:14px;
  margin-top:clamp(40px,5vw,66px);
}
@media(max-width:900px){.hero-tiles{grid-template-columns:1fr}}

/* ---------- abstract orange artwork ---------- */
.art{
  position:relative;overflow:hidden;border-radius:2px;
  background:linear-gradient(150deg,#FFB694 0%,#FF7A4F 26%,#E8562A 58%,#B23A12 100%);
  isolation:isolate;
}
.art .slab{position:absolute;pointer-events:none}
.art .s1{
  width:78%;height:210%;left:-14%;top:-58%;
  background:linear-gradient(180deg,rgba(255,255,255,.30),rgba(255,255,255,.01));
  transform:rotate(24deg);filter:blur(.4px);
}
.art .s2{
  width:52%;height:210%;left:26%;top:-52%;
  background:linear-gradient(180deg,rgba(255,255,255,.22),rgba(255,255,255,0));
  transform:rotate(24deg);
}
.art .s3{
  width:64%;height:210%;left:62%;top:-60%;
  background:linear-gradient(180deg,rgba(178,58,18,.5),rgba(158,51,20,.05));
  transform:rotate(24deg);
}
.art .glow{
  position:absolute;width:70%;aspect-ratio:1;border-radius:50%;
  left:8%;bottom:-32%;
  background:radial-gradient(circle,rgba(255,224,206,.75),rgba(255,224,206,0) 64%);
  filter:blur(6px);
}
.art .glow2{
  position:absolute;width:56%;aspect-ratio:1;border-radius:50%;right:-14%;top:-22%;
  background:radial-gradient(circle,rgba(255,255,255,.5),rgba(255,255,255,0) 66%);
}
.rain{
  position:absolute;inset:0;overflow:hidden;
  pointer-events:none;user-select:none;
  mix-blend-mode:overlay;
}
.rain canvas{display:block;width:100%;height:100%}
.rain.on-photo{mix-blend-mode:normal}

/* Photo tile: the photograph runs unmodified, so the tile only supplies the
   box and a neutral ground while the image loads. */
.photo-tile{padding:0;background:#141414}
.photo{
  position:absolute;inset:0;width:100%;height:100%;
  object-fit:cover;object-position:50% 46%;
}
.art .sheen{
  position:absolute;inset:0;
  background:linear-gradient(112deg,rgba(255,255,255,0) 38%,rgba(255,255,255,.3) 48%,rgba(255,255,255,0) 58%);
  transform:translateX(-30%);
  animation:sheen 9s ease-in-out infinite;
}
@keyframes sheen{0%,100%{transform:translateX(-40%)}50%{transform:translateX(40%)}}

/* ---------- floating product cards ---------- */
.tile{position:relative;min-height:clamp(330px,38vw,520px);display:grid;place-items:center;padding:clamp(16px,2.4vw,34px)}
.hero-tiles .tile{min-height:clamp(330px,41vw,586px)}
/* frosted rim around the card, so it reads as glass sitting on the artwork */
.card-glass{
  position:relative;z-index:3;width:100%;max-width:376px;
  padding:11px;border-radius:19px;
  background:rgba(255,255,255,.20);
  border:1px solid rgba(255,255,255,.42);
  backdrop-filter:blur(13px) saturate(1.25);
  -webkit-backdrop-filter:blur(13px) saturate(1.25);
  box-shadow:0 2px 6px rgba(17,17,17,.05),0 36px 74px -26px rgba(80,26,8,.52);
}
.card{
  position:relative;z-index:3;width:100%;max-width:352px;
  background:#fff;border-radius:10px;
  box-shadow:0 2px 6px rgba(17,17,17,.06),0 34px 70px -26px rgba(80,26,8,.5);
  overflow:hidden;text-align:left;
}
.card-glass .card{max-width:none;box-shadow:0 1px 3px rgba(17,17,17,.07)}
.card-h{
  font-family:var(--ui);font-size:11px;font-weight:600;letter-spacing:.09em;
  text-transform:uppercase;color:var(--ink);padding:15px 16px 11px;
}
.card-b{padding:0 16px 16px}
.ask{
  border:1px solid var(--line);border-radius:8px;padding:11px 12px;
  min-height:74px;position:relative;
}
.ask p{font-family:var(--sans);font-size:13.5px;line-height:20px;color:var(--ink-3)}
.ask .cur{display:inline-block;width:1.5px;height:14px;background:var(--o);vertical-align:-2px;margin-left:1px;animation:blink 1s steps(2) infinite}
@keyframes blink{50%{opacity:0}}
.send{
  position:absolute;right:9px;bottom:9px;width:27px;height:27px;border-radius:5px;
  background:var(--ink);color:#fff;display:grid;place-items:center;
}
.send svg{width:12px;height:12px}
.card-l{font-family:var(--ui);font-size:10.5px;font-weight:600;letter-spacing:.1em;text-transform:uppercase;color:var(--ink-3);margin:15px 0 9px}
.act{
  display:flex;align-items:center;gap:10px;
  border:1px solid transparent;border-radius:7px;padding:9px 10px;margin-bottom:7px;
  background:#F4F4F4;
  font-family:var(--ui);font-size:11.5px;font-weight:500;letter-spacing:.055em;text-transform:uppercase;
  transition:background .25s ease,border-color .25s ease;
}
.act:hover{background:#EDEDED;border-color:var(--line)}
.act em{
  font-style:normal;width:21px;height:21px;border-radius:4px;background:var(--ink);color:#fff;
  display:grid;place-items:center;flex:none;
}
.act em svg{width:12px;height:12px}

/* the list scrolls on a loop; the track holds two copies so -50% lands on an
   identical frame, and the mask fades the rows in and out at the edges */
.acts-vp{
  position:relative;height:186px;overflow:hidden;
  -webkit-mask-image:linear-gradient(180deg,transparent 0,#000 15%,#000 85%,transparent 100%);
  mask-image:linear-gradient(180deg,transparent 0,#000 15%,#000 85%,transparent 100%);
}
.acts-track{display:flow-root;animation:actscroll 21s linear infinite;will-change:transform}
.acts-vp:hover .acts-track{animation-play-state:paused}
@keyframes actscroll{to{transform:translateY(-50%)}}

/* ---------- logo marquee ---------- */
.logostrip{padding:0 var(--pad) clamp(50px,6vw,84px)}
.logostrip .cap{
  font-family:var(--ui);font-size:13px;color:var(--ink-3);text-align:center;
  margin-bottom:26px;
}
/* The two marks have wildly different aspect ratios (AWS 256x153, Cloudflare
   512x76), so they are sized to match optically, not to a shared height. */
.backers{
  display:flex;align-items:center;justify-content:center;
  gap:clamp(26px,4.4vw,52px);flex-wrap:wrap;
}
.backer svg{display:block;width:auto}
.bk-aws svg{height:40px}
.bk-cf svg{height:23px}
.bk-sep{width:1px;height:30px;background:var(--line);flex:none}
@media(max-width:520px){.bk-sep{display:none}}

/* ============================================================
   GRID BOXES (hairline card grids)
   ============================================================ */
.gridbox{border:1px solid var(--line);display:grid}
.gridbox > .cell{padding:clamp(24px,2.6vw,38px) clamp(20px,2.2vw,32px);border-right:1px solid var(--line);position:relative}
.gridbox > .cell:last-child{border-right:0}
.g3{grid-template-columns:repeat(3,1fr)}
.g3 > .cell:nth-child(3n){border-right:0}
.g2 > .cell:nth-child(2n){border-right:0}
@media(max-width:880px){
  .g3,.g2{grid-template-columns:1fr}
  .gridbox > .cell,.g3 > .cell:nth-child(3n),.g2 > .cell:nth-child(2n){border-right:0}
  .gridbox > .cell{border-bottom:1px solid var(--line)}
  .gridbox > .cell:last-child{border-bottom:0}
}
.cell h3,.cell .ctitle{font-family:var(--serif);font-size:clamp(20px,1.85vw,24px);line-height:32px;font-weight:400;margin:0 0 12px;/* pinned: as a <p> this matched .cell p and escaped the h1..h4 rule */color:var(--ink-2);letter-spacing:normal;text-wrap:wrap}
.cell p{font-size:16px;line-height:26px;color:var(--ink-2)}

/* problem icons \2014  isometric slab stacks */



/* ============================================================
   BUILT-IN TOOLS - the workplace that ships with Siela.
   Warm ground so it reads as the counterpart to the white
   integrations wall directly above it.
   ============================================================ */
.bi{background:var(--o-50)}
.bi .gridbox{background:#fff}
.bi-ico{
  width:48px;height:48px;border-radius:12px;flex:none;
  display:grid;place-items:center;margin-bottom:22px;
  background:var(--o-100);color:var(--o-600);
}
.bi-ico svg{width:24px;height:24px}
/* ---- built-in tools: scroll fill + hover reveal ---------------------- */
/* Unlit is only applied under .js, so with no script the heading renders
   in full contrast rather than stranded grey. */
.fillscroll{--fc-off:var(--ink-4)}
.dark .fillscroll{--fc-off:#5E5E5E}   /* #8B8B8B is too bright to read as unlit on black */
.fillscroll .fc{transition:color .4s ease}
.js .fillscroll .fc{color:var(--fc-off)}
.js .fillscroll .fc.lit{color:var(--ink)}
.fillscroll .fw{white-space:nowrap}

.bi .cell{display:flex;flex-direction:column;min-height:var(--bi-h,318px)}
/* the title takes the slack, so the block sits on the card's bottom edge and
   the body grows upward, lifting the title as it opens */
.bi .cell .ctitle{margin-top:auto}
.bi-reveal{
  display:grid;grid-template-rows:0fr;opacity:0;
  transition:grid-template-rows .5s cubic-bezier(.22,.7,.2,1),opacity .34s ease;
}
.bi-reveal > div{overflow:hidden;min-height:0}
.bi .cell:hover .bi-reveal,
.bi .cell:focus-within .bi-reveal{grid-template-rows:1fr;opacity:1}
.bi .cell .ctitle{transition:color .3s ease}
.bi .cell:hover .ctitle{color:var(--o-700)}
/* nothing to hover on a touch screen, so never hide the copy there */
@media(hover:none){
  .bi-reveal{grid-template-rows:1fr;opacity:1}
  .bi .cell{min-height:0}
}
@media(max-width:880px){.bi .cell{min-height:0}}
.bi-used{
  display:block;margin-top:14px;
  font-family:var(--ui);font-size:12px;line-height:18px;color:var(--ink-3);
}

/* ============================================================
   INTEGRATION WALL - official brand marks, four dense rows
   ============================================================ */
.logo-field{
  /* room above and below so a tile lifted on hover (and its shadow) is not clipped */
  margin-top:clamp(26px,3.2vw,46px);padding:8px 0 16px;
  display:flex;flex-direction:column;gap:18px;overflow:hidden;
  -webkit-mask-image:linear-gradient(90deg,transparent,#000 6%,#000 94%,transparent);
  mask-image:linear-gradient(90deg,transparent,#000 6%,#000 94%,transparent);
}
.logo-row{display:flex;width:max-content;animation:slide var(--dur,60s) linear infinite}
.logo-row.rev{animation-direction:reverse}
/* only the row under the pointer stops; the others keep moving */
.logo-row:hover{animation-play-state:paused}
.logo-tile{
  /* margin, not gap: a trailing margin counts toward max-content, so two copies
     are exactly twice one copy and the -50% loop closes without a seam */
  width:88px;height:88px;flex:none;margin-right:22px;
  border:1px solid var(--line);border-radius:20px;background:#fff;
  display:grid;place-items:center;
  box-shadow:0 1px 2px rgba(17,17,17,.04);
  transition:transform .22s ease,box-shadow .22s ease,border-color .22s ease;
}
.logo-tile:hover{transform:translateY(-3px);border-color:#D8D8D8;box-shadow:0 10px 22px -10px rgba(17,17,17,.28)}
.logo-tile svg{width:44px;height:44px;display:block}
@media(max-width:700px){
  .logo-field{gap:12px}
  .logo-tile{width:66px;height:66px;border-radius:16px;margin-right:14px}
  .logo-tile svg{width:33px;height:33px}
}

/* ============================================================
   AGENT SHOWCASE \2014  a scrollable rail of the teammates, each
   card saying what it owns, where it works and how you ask it
   ============================================================ */
.ag-rail{
  margin-top:clamp(20px,3vw,38px);
  overflow-x:auto;overflow-y:hidden;
  scroll-snap-type:x mandatory;scroll-behavior:smooth;
  scrollbar-width:none;-ms-overflow-style:none;
  -webkit-mask-image:linear-gradient(90deg,#000 0,#000 94%,transparent 100%);
  mask-image:linear-gradient(90deg,#000 0,#000 94%,transparent 100%);
}
.ag-rail::-webkit-scrollbar{display:none}
.ag-rail:focus-visible{outline:2px solid var(--o);outline-offset:6px;border-radius:4px}
/* vertical padding gives the hover lift somewhere to go: the rail clips
   overflow-y, so without it the raised card is sliced off */
.ag-track{display:flex;gap:14px;width:max-content;padding:14px 2px 18px}
.ag{
  flex:0 0 330px;scroll-snap-align:start;
  display:flex;flex-direction:column;
  border:1px solid var(--line);border-radius:12px;background:var(--sunk);
  padding:20px;
  transition:border-color .25s ease,transform .25s ease,background .25s ease;
}
.ag:hover{border-color:var(--o);transform:translateY(-3px);background:#101010}
.ag-head{display:flex;align-items:center;gap:10px;margin-bottom:20px}
.ag-ico{
  width:42px;height:42px;flex:none;border-radius:12px;
  display:grid;place-items:center;
  background:rgba(232,86,42,.18);color:var(--o-400);
}
.ag-ico svg{width:21px;height:21px;display:block}
/* the apps a teammate actually works in, shown as their own marks rather
   than our words for them; +N carries the rest so the row never wraps */
.ag-apps{display:flex;align-items:center;gap:5px;margin-left:auto}
.ag-app{
  width:27px;height:27px;flex:none;border-radius:8px;background:#fff;
  display:grid;place-items:center;box-shadow:0 1px 3px rgba(0,0,0,.4);
}
.ag-app svg{width:16px;height:16px;display:block}
.ag-name{font-family:var(--serif);font-size:19px;font-weight:400;line-height:1.25;margin:0 0 9px;letter-spacing:normal;text-wrap:wrap}
.ag-desc{font-size:14px;line-height:21px;color:var(--ink-2)}
.ag-nav{display:flex;gap:8px;margin-top:20px;align-items:center}
.ag-all{margin-right:auto}
.ag-btn{
  width:42px;height:42px;border:1px solid var(--line);border-radius:8px;
  display:grid;place-items:center;color:var(--ink);
  transition:border-color .2s ease,opacity .2s ease;
}
.ag-btn:hover:not(.is-off){border-color:var(--o)}
.ag-btn.is-off{opacity:.3}
.ag-btn svg{width:15px;height:15px}
@media(max-width:600px){.ag{flex-basis:290px}.ag-nav{display:none}}

/* ============================================================
   ROI
   ============================================================ */
.roi{display:grid;grid-template-columns:1.1fr 1fr;border:1px solid var(--line)}
@media(max-width:880px){.roi{grid-template-columns:1fr}}
.roi-l{padding:clamp(26px,3vw,40px);border-right:1px solid var(--line);display:flex;flex-direction:column}
@media(max-width:880px){.roi-l{border-right:0;border-bottom:1px solid var(--line)}}
.roi-nums{display:flex;gap:clamp(30px,6vw,86px);margin-bottom:auto}
.bignum{font-family:var(--serif);font-size:clamp(32px,3.6vw,46px);font-weight:300;line-height:1.1;letter-spacing:-.02em;font-variant-numeric:tabular-nums}
.bigsub{font-size:15px;line-height:22px;color:var(--ink-2);margin-top:6px}
.chart{margin-top:clamp(30px,4vw,56px);position:relative;height:clamp(150px,17vw,220px)}
.chart svg{width:100%;height:100%;display:block;overflow:visible}
.roi-r{padding:clamp(26px,3vw,40px);display:flex;flex-direction:column}
.roi-r .h4{margin-bottom:14px}
.roi-r .big{margin-top:auto;padding-top:clamp(40px,6vw,90px)}

/* ============================================================
   CAPABILITIES bento
   ============================================================ */
.bento .cell{display:flex;flex-direction:column}
/* four cards, two up two down; the 6-column "three over two wide" bento the
   reference used needs five cells and leaves a half-empty row at four */
.bento{grid-template-columns:repeat(2,1fr)}
.bento > .cell:nth-child(2n){border-right:0}
.bento > .cell:nth-child(n+3){border-top:1px solid var(--line)}
@media(max-width:880px){
  .bento{grid-template-columns:1fr}
  .bento > .cell:nth-child(n){grid-column:span 1;border-right:0;border-top:0;border-bottom:1px solid var(--line)}
  .bento > .cell:last-child{border-bottom:0}
}
.viz{
  min-height:clamp(150px,16vw,196px);margin-bottom:clamp(22px,2.6vw,34px);
  display:grid;place-items:center;position:relative;
  padding:6px 0;
}
.node{
  font-family:var(--ui);font-size:11px;font-weight:500;line-height:15px;
  border:1px solid var(--line);border-radius:6px;padding:6px 11px;background:var(--sunk);
  white-space:nowrap;
}
.node.lead{border-color:var(--o);background:rgba(232,86,42,.12);color:#fff}
.node small{display:block;font-size:8.5px;letter-spacing:.1em;text-transform:uppercase;color:var(--ink-3);margin-bottom:2px}
.vstack{display:flex;flex-direction:column;align-items:center;gap:0}
.vstack .lnk{width:1px;height:13px;background:var(--line)}
.vstack .node{width:168px;text-align:left}
.fan{display:flex;gap:6px;justify-content:center;flex-wrap:wrap;max-width:252px;margin-top:2px}
.fan .node{font-size:10px;padding:5px 9px;width:auto;text-align:center}
.deck{position:relative;width:150px;height:110px}
.deck i{
  position:absolute;left:0;width:112px;height:24px;border-radius:4px;
  border:1px solid var(--line);background:var(--sunk);
  font-family:var(--ui);font-style:normal;font-size:10px;font-weight:500;color:var(--ink-2);
  display:grid;place-items:center;
  transform:skewY(-11deg);
}
.flowline{width:34px;height:1px;background:var(--line);position:relative;flex:none}
.flowline::after{content:"";position:absolute;right:0;top:-2.5px;border:3px solid transparent;border-left-color:var(--line)}
.inbox{width:100%;max-width:236px}
.inbox div{
  display:flex;align-items:center;gap:8px;padding:6px 9px;border:1px solid var(--line);
  border-radius:5px;margin-bottom:5px;font-family:var(--ui);font-size:10px;color:var(--ink-2);
}
.inbox div i{width:14px;height:14px;border-radius:3px;background:var(--o);flex:none;display:grid;place-items:center;color:#fff}
.inbox div i svg{width:8px;height:8px}
.inbox div.w i{background:#2F2F2F}

/* pill marquee on dotted field */
.pillfield{
  border:1px solid var(--line);border-top:0;padding:clamp(26px,3vw,40px) 0;
  background-image:radial-gradient(rgba(255,255,255,.14) 1px,transparent 1px);
  background-size:13px 13px;overflow:hidden;
}
/* shared by .pill-row and .logo-row - it used to live in the .mq block and
   went out with it when that marquee was deleted, silently stopping both */
@keyframes slide{to{transform:translateX(-50%)}}
.pill-row{display:flex;width:max-content;gap:10px;margin-bottom:10px;animation:slide 46s linear infinite}
.pill-row:last-child{margin-bottom:0;animation-duration:54s;animation-direction:reverse}
.pill-row b{
  font-family:var(--ui);font-size:13px;font-weight:400;
  border:1px solid var(--line);border-radius:6px;padding:9px 16px;background:#0A0A0A;
  white-space:nowrap;color:var(--ink-2);transition:color .25s,border-color .25s;
}
.pill-row b:hover{color:#fff;border-color:var(--o)}

/* ============================================================
   CAPABILITY VIZ MOTION
   The build-in is transition-driven off .in, not keyframed: an
   animation with fill-mode:both pins the element to its from-
   frame until frames actually advance, so anything that starves
   rendering would leave the whole viz invisible. A transition
   only loses the interpolation. The hidden state is scoped to
   .js so no-script still renders everything.
   The looping accents below are keyframes, but each rests at
   its 0% frame, so a frozen renderer shows a correct still.
   ============================================================ */
.bento .deck i,
.bento .vstack > .node,
.bento .vstack > .lnk,
.bento .fan .node,
.bento .inbox > div{transition:opacity .5s ease,transform .5s ease}
.bento .vstack > .lnk{transform-origin:top}

.js .bento .cell:not(.in) .deck i{opacity:0;transform:skewY(-11deg) translateX(-18px)}
.js .bento .cell:not(.in) .vstack > .node,
.js .bento .cell:not(.in) .fan .node,
.js .bento .cell:not(.in) .inbox > div{opacity:0;transform:translateY(9px) scale(.97)}
.js .bento .cell:not(.in) .vstack > .lnk{transform:scaleY(0)}

.bento .cell.in .deck i:nth-child(2){transition-delay:.12s}
.bento .cell.in .deck i:nth-child(3){transition-delay:.24s}
.bento .cell.in .deck i:nth-child(4){transition-delay:.36s}
.bento .cell.in .vstack > *:nth-child(2){transition-delay:.16s}
.bento .cell.in .vstack > *:nth-child(3){transition-delay:.3s}
.bento .cell.in .vstack > *:nth-child(4){transition-delay:.46s}
.bento .cell.in .vstack > *:nth-child(5){transition-delay:.6s}
.bento .cell.in .fan .node{transition-delay:.66s}
.bento .cell.in .fan .node:nth-child(2){transition-delay:.76s}
.bento .cell.in .fan .node:nth-child(3){transition-delay:.86s}
.bento .cell.in .fan .node:nth-child(4){transition-delay:.96s}
.bento .cell.in .inbox > div:nth-child(2){transition-delay:.11s}
.bento .cell.in .inbox > div:nth-child(3){transition-delay:.22s}
.bento .cell.in .inbox > div:nth-child(4){transition-delay:.33s}

/* the backstop above lands here: end state, no interpolation left to lose */
.bento .cell.settled .deck i,
.bento .cell.settled .vstack > .node,
.bento .cell.settled .vstack > .lnk,
.bento .cell.settled .fan .node,
.bento .cell.settled .inbox > div{transition:none}

/* ---- looping accents, gated on .live so they stop once the section is past ---- */
@keyframes vzfloat{0%,100%{transform:translateY(0)}50%{transform:translateY(-5px)}}
@keyframes vzdot  {0%{left:0;opacity:0}18%{opacity:1}82%{opacity:1}100%{left:30px;opacity:0}}
@keyframes vzlead {0%,100%{box-shadow:0 0 0 0 rgba(232,86,42,0)}
                   50%{box-shadow:0 0 0 5px rgba(232,86,42,.13)}}
@keyframes vzwait {0%,100%{opacity:1}50%{opacity:.4}}

.flowline::before{
  content:"";position:absolute;top:-1.5px;left:0;
  width:4px;height:4px;border-radius:50%;background:var(--o);opacity:0;
}
.live .cell.in .flowline::before{animation:vzdot 2.4s linear infinite}
.live .cell.in .cube{animation:vzfloat 4s ease-in-out infinite}
.live .cell.in .node.lead{animation:vzlead 3.2s ease-in-out infinite}
/* the pending rows are waiting, not resolving - nothing here approves itself */
.live .cell.in .inbox > div.w i{animation:vzwait 2.2s ease-in-out infinite}
.live .cell.in .inbox > div.w:nth-child(4) i{animation-delay:.55s}

/* ============================================================
   TEAMS grid
   ============================================================ */
.teams .cell{border-bottom:1px solid var(--line)}
.teams .cell:nth-last-child(-n+3){border-bottom:0}
@media(max-width:880px){.teams .cell:nth-last-child(-n+3){border-bottom:1px solid var(--line)}
.teams .cell:last-child{border-bottom:0}}
.tile-ico{
  width:clamp(88px,8.4vw,120px);aspect-ratio:1;border-radius:6px;margin-bottom:26px;
  background:linear-gradient(150deg,#FFB694,#FF7A4F 34%,#E8562A 68%,#B23A12);
  display:grid;place-items:center;color:#fff;position:relative;overflow:hidden;
  box-shadow:0 22px 44px -16px rgba(232,86,42,.55);
}
.tile-ico svg{width:46%;height:46%;position:relative;z-index:2;stroke-width:1.2}
.tile-ico::after{
  content:"";position:absolute;width:150%;height:150%;left:-40%;top:-60%;
  background:linear-gradient(180deg,rgba(255,255,255,.34),transparent);
  transform:rotate(24deg);
}
.cnt{
  font-family:var(--ui);font-size:11px;font-weight:600;letter-spacing:.07em;text-transform:uppercase;
  color:var(--o-600);margin-top:14px;display:block;
}

/* ============================================================
   PRICING
   ============================================================ */
.plans{display:grid;grid-template-columns:repeat(4,1fr);border:1px solid var(--line)}
@media(max-width:1000px){.plans{grid-template-columns:repeat(2,1fr)}}
@media(max-width:600px){.plans{grid-template-columns:1fr}}
.plan{padding:clamp(24px,2.4vw,32px);border-right:1px solid var(--line);display:flex;flex-direction:column;position:relative}
.plan:last-child{border-right:0}
@media(max-width:1000px){
  .plan:nth-child(2n){border-right:0}
  .plan:nth-child(-n+2){border-bottom:1px solid var(--line)}
}
@media(max-width:600px){.plan{border-right:0;border-bottom:1px solid var(--line)}.plan:last-child{border-bottom:0}}
.plan.best{background:var(--o-50)}
.plan.best::before{content:"";position:absolute;left:0;right:0;top:0;height:3px;background:linear-gradient(90deg,var(--o-400),var(--o-600))}
.plan-n{font-family:var(--ui);font-size:12px;font-weight:600;letter-spacing:.09em;text-transform:uppercase;color:var(--ink-3)}
.plan.best .plan-n{color:var(--o-600)}
.plan-p{font-family:var(--serif);font-size:40px;font-weight:300;line-height:1.1;margin-top:18px;letter-spacing:-.02em}
.plan-p small{font-family:var(--sans);font-size:14px;font-weight:400;color:var(--ink-3);letter-spacing:0}
.plan-s{font-size:14px;color:var(--ink-3);margin-top:6px;margin-bottom:22px}
.plan ul{list-style:none;padding:0;margin:0 0 26px;flex:1}
.plan li{position:relative;padding:6px 0 6px 20px;font-size:14.5px;line-height:22px;color:var(--ink-2)}
.plan li::before{content:"";position:absolute;left:0;top:14px;width:8px;height:1px;background:var(--o)}
.plan .btn{width:100%}
.pnote{margin-top:22px;font-family:var(--ui);font-size:13px;color:var(--ink-3);text-align:center}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.tabs{display:grid;grid-template-columns:repeat(3,1fr);border:1px solid var(--line);border-bottom:0}
@media(max-width:760px){
  .tabs{grid-template-columns:1fr}
  .tab{border-right:0;border-bottom:1px solid var(--line)}
  .tab:last-child{border-bottom:0}
}
.tab{
  padding:19px 14px;border-right:1px solid var(--line);
  font-family:var(--ui);font-size:13.5px;font-weight:500;color:var(--on-dark-3);
  display:flex;align-items:center;justify-content:center;gap:9px;
  transition:color .25s ease,background .25s ease;
}
.tab:last-child{border-right:0}
.tab i{width:7px;height:7px;border-radius:2px;background:currentColor;flex:none;opacity:.7}
.tab:hover{color:#fff}
.tab[aria-selected="true"]{color:#fff;background:#0C0C0C}
.tab[aria-selected="true"] i{background:var(--o);opacity:1}
.tpanel{display:grid;grid-template-columns:.86fr 1.28fr .86fr;border:1px solid var(--line)}
@media(max-width:980px){.tpanel{grid-template-columns:1fr}}
.tpanel[hidden]{display:none}
.tbrand{position:relative;min-height:300px;display:grid;place-items:center;overflow:hidden}
.tbrand .lbl{
  position:relative;z-index:3;font-family:var(--serif);font-size:30px;font-weight:300;color:#fff;
  text-align:center;padding:20px;line-height:1.25;
}
.tbrand .lbl small{display:block;font-family:var(--ui);font-size:11px;font-weight:600;letter-spacing:.14em;text-transform:uppercase;opacity:.85;margin-top:12px}
.tquote{padding:clamp(26px,3vw,40px);border-left:1px solid var(--line);border-right:1px solid var(--line);display:flex;flex-direction:column}
@media(max-width:980px){.tquote{border-left:0;border-right:0;border-top:1px solid var(--line);border-bottom:1px solid var(--line)}}
.tquote .q{font-family:var(--serif);font-size:clamp(21px,2.3vw,28px);font-weight:300;line-height:1.32}
.tquote .stat{margin-top:auto;padding-top:clamp(36px,5vw,70px)}
.tquote .stat b{display:block;font-family:var(--serif);font-size:clamp(28px,3.2vw,40px);font-weight:300;line-height:1.1}
.tquote .stat span{display:block;font-size:14px;color:var(--ink-2);margin-top:6px}
.tby{padding:clamp(24px,2.6vw,34px);display:flex;flex-direction:column;gap:20px}
.tav{
  width:78px;height:78px;border-radius:4px;flex:none;display:grid;place-items:center;
  background:linear-gradient(150deg,#FFB694,#E8562A 62%,#B23A12);
  font-family:var(--serif);font-size:25px;font-weight:300;color:#fff;
}
.tby p{font-size:14.5px;line-height:23px;color:var(--ink-2)}
/* two customer tabs, a real photo in the avatar, and a link to the person's LinkedIn */
.tabs.two{grid-template-columns:repeat(2,1fr)}
.tav.pic{background:none;overflow:hidden}
.tav.pic img{width:100%;height:100%;object-fit:cover;object-position:50% 20%;display:block}
.tby-li{display:inline-flex;align-items:center;gap:8px;margin-top:auto;font-family:var(--ui);font-size:13px;color:#BDBDBD;
  text-decoration:none;transition:color .2s ease}
.tby-li svg{width:18px;height:18px;flex:none}
.tby-li:hover{color:#fff}

.tby .who b{display:block;font-family:var(--sans);font-size:14.5px;font-weight:700;color:var(--ink)}
.tby .who span{display:block;font-size:13.5px;color:var(--ink-3)}

/* ============================================================
   TRUST
   ============================================================ */
.trust{display:grid;grid-template-columns:.9fr 1.35fr;gap:clamp(34px,5vw,74px);align-items:start}
@media(max-width:940px){.trust{grid-template-columns:1fr;gap:38px}}
.orbs{display:flex;gap:16px;margin-top:clamp(34px,5vw,64px);flex-wrap:wrap}
.orb{
  width:74px;height:74px;border-radius:50%;display:grid;place-items:center;
  font-family:var(--ui);font-size:11px;font-weight:600;letter-spacing:.04em;color:#fff;
  background:radial-gradient(circle at 34% 26%,#FFB694,#E8562A 52%,#9E3314);
  box-shadow:0 14px 32px -10px rgba(232,86,42,.6),inset 0 -6px 14px rgba(120,32,8,.5),inset 0 4px 10px rgba(255,255,255,.4);
  text-align:center;line-height:13px;padding:6px;
  animation:bob 5s ease-in-out infinite;
}
.orb:nth-child(2){animation-delay:.5s}
.orb:nth-child(3){animation-delay:1s}
@keyframes bob{0%,100%{transform:translateY(0)}50%{transform:translateY(-7px)}}
.trust .cell{padding:clamp(24px,2.5vw,34px)}
.tico{width:30px;height:30px;color:var(--ink);margin-bottom:clamp(30px,4vw,54px);stroke-width:1.2}

/* ============================================================
   FAQ
   ============================================================ */
.faqgrid{display:grid;grid-template-columns:.78fr 1.42fr;gap:clamp(34px,5vw,74px)}
@media(max-width:940px){.faqgrid{grid-template-columns:1fr;gap:34px}}
.faq-aside h3{font-family:var(--sans);font-size:16px;font-weight:700;margin-top:clamp(36px,5vw,62px)}
.faq-aside p{font-size:15px;color:var(--ink-2);margin-top:4px;margin-bottom:22px}
.qa{border-bottom:1px solid var(--line)}
.qa:first-child{border-top:1px solid var(--line)}
.qa summary{
  list-style:none;cursor:pointer;display:flex;align-items:center;gap:22px;
  padding:24px 0;font-family:var(--sans);font-size:clamp(16px,1.4vw,18px);font-weight:500;line-height:28px;
}
.qa summary::-webkit-details-marker{display:none}
.qa .plus{margin-left:auto;width:17px;height:17px;flex:none;position:relative}
.qa .plus::before,.qa .plus::after{
  content:"";position:absolute;background:var(--ink-2);
  transition:transform .3s ease,background .3s ease;
}
.qa .plus::before{left:0;right:0;top:8px;height:1px}
.qa .plus::after{top:0;bottom:0;left:8px;width:1px}
.qa[open] .plus::after{transform:rotate(90deg)}
.qa[open] .plus::before,.qa[open] .plus::after{background:var(--o)}
.qa[open] summary{padding-bottom:12px}
.qa .ans{padding:0 60px 26px 0;font-size:16px;line-height:26px;color:var(--ink-2);animation:fade .4s ease}
@keyframes fade{from{opacity:0;transform:translateY(-4px)}}

/* ============================================================
   CTA + FOOTER
   ============================================================ */
.cta{
  position:relative;overflow:hidden;
  background:#000;
  background-image:radial-gradient(rgba(255,255,255,.1) 1px,transparent 1px);
  background-size:15px 15px;
}
.cta::after{
  content:"";position:absolute;inset:0;
  background:radial-gradient(ellipse 60% 70% at 50% 120%,rgba(232,86,42,.3),transparent 70%);
  pointer-events:none;
}
.cta-in{display:grid;grid-template-columns:1fr 1fr;gap:clamp(30px,5vw,74px);align-items:center}
@media(max-width:860px){.cta-in{grid-template-columns:1fr;gap:30px}}
.cta .h2{max-width:13ch}
.cta-r p{font-size:16px;line-height:26px;color:var(--on-dark-2);max-width:460px}
.cta-acts{display:flex;gap:10px;flex-wrap:wrap;margin-top:28px}

.foot{background:#000;color:#fff;padding:0 var(--pad) 0;position:relative;overflow:hidden}
.foot-in{
  max-width:var(--max);margin:0 auto;
  display:grid;grid-template-columns:3.2fr repeat(4,1fr);gap:clamp(18px,1.7vw,24px);
  padding:clamp(52px,6vw,80px) 0 clamp(44px,5vw,70px);
  border-top:1px solid var(--on-dark-line);position:relative;z-index:3;
}
@media(max-width:1180px){.foot-in{grid-template-columns:1.6fr repeat(4,1fr);gap:clamp(20px,2.2vw,32px)}}
@media(max-width:1000px){.foot-in{grid-template-columns:1fr 1fr 1fr;gap:clamp(24px,3vw,44px)}}
@media(max-width:620px){.foot-in{grid-template-columns:1fr 1fr}}
.foot-brand{grid-column:span 1}
@media(max-width:1000px){.foot-brand{grid-column:1/-1}}
.foot-brand p{font-size:14.5px;line-height:23px;color:var(--on-dark-2);margin-top:16px;max-width:30ch}
.foot-col h3{
  margin:0 0 18px;font-family:var(--ui);font-size:11px;font-weight:600;letter-spacing:.12em;
  text-transform:uppercase;color:var(--on-dark-3);
}
.foot-col a{display:block;font-size:14.5px;line-height:22px;color:var(--on-dark-2);padding:5px 0;transition:color .22s ease}
.foot-col a:hover{color:#fff}
.foot-base{
  max-width:var(--max);margin:0 auto;padding:22px 0 26px;
  border-top:1px solid var(--on-dark-line);position:relative;z-index:3;
  display:flex;justify-content:space-between;gap:16px;flex-wrap:wrap;
  font-family:var(--ui);font-size:13px;color:var(--on-dark-3);
}
.foot-base b{color:var(--on-dark-2);font-weight:500}
.wordmark{position:relative;z-index:2;max-width:var(--max);margin:0 auto;padding-bottom:10px}
.wordmark canvas{width:100%;height:auto;display:block;opacity:.85}

/* ============================================================
   UTILITIES
   ============================================================ */
/* Content is visible by default; only a JS-capable page hides it to animate it back in,
   so nothing can ever be stranded at opacity:0 if the script never runs. */
.rv{transition:opacity .75s cubic-bezier(.22,1,.36,1),transform .75s cubic-bezier(.22,1,.36,1)}
.js .rv{opacity:0;transform:translateY(22px)}
.js .rv.in{opacity:1;transform:none}
.rv.d1{transition-delay:.08s}.rv.d2{transition-delay:.16s}.rv.d3{transition-delay:.24s}
.rv.d4{transition-delay:.32s}.rv.d5{transition-delay:.4s}
@media(prefers-reduced-motion:reduce){
  *{animation-duration:.001ms!important;animation-iteration-count:1!important;transition-duration:.001ms!important}
  .js .rv{opacity:1;transform:none}
  .pill-row,.sheen,.orb,.acts-track,.logo-row{animation:none!important}
  .ag-rail{scroll-behavior:auto}
}
:where(a,button,summary):focus-visible{outline:2px solid var(--o);outline-offset:3px;border-radius:3px}

/* ---------- contact (under the FAQ) ---------- */
.ct{background:linear-gradient(180deg,#fff 0%,var(--o-50) 100%)}
.ct-in{display:grid;grid-template-columns:minmax(0,.9fr) minmax(0,1.1fr);gap:clamp(32px,6vw,90px);align-items:start}
.ct .ct-h{margin-top:22px;max-width:13ch}
.ct-sub{font-size:clamp(16px,1.4vw,18px);line-height:1.6;color:var(--ink-2);margin-top:20px;max-width:46ch}
.ct-points{list-style:none;padding:0;margin:30px 0 0;display:grid;gap:14px;max-width:46ch}
.ct-points li{position:relative;padding-left:19px;font-size:15px;line-height:1.55;color:var(--ink-2)}
.ct-points i{position:absolute;left:0;top:8px;width:7px;height:7px;border-radius:50%;background:var(--o)}
.ct-form,.ct-done{background:#fff;border:1px solid var(--line);border-radius:16px;padding:clamp(22px,3vw,34px);
  box-shadow:0 24px 60px -36px rgba(17,17,17,.35);display:grid;gap:18px}
.ct-row{display:grid;grid-template-columns:1fr 1fr;gap:16px}
.ct-f{display:grid;gap:7px;border:0;padding:0;margin:0;min-width:0}
.ct-f > span,.ct-f legend{font-family:var(--ui);font-size:13px;font-weight:600;color:var(--ink);padding:0;margin-bottom:7px}
.ct-f > span{margin-bottom:0}
.ct-f em{font-style:normal;font-weight:400;color:var(--ink-4);margin-left:4px}
.ct-f input,.ct-f textarea{width:100%;font:inherit;font-size:15px;color:var(--ink);background:#fff;border:1px solid var(--line);border-radius:10px;padding:11px 13px;
  transition:border-color .18s ease,box-shadow .18s ease}
.ct-f textarea{resize:vertical;min-height:140px;line-height:1.55}
.ct-f select{width:100%;font:inherit;font-size:15px;color:var(--ink);background:#fff;border:1px solid var(--line);border-radius:10px;padding:11px 36px 11px 13px;appearance:none;-webkit-appearance:none;
  background-image:linear-gradient(45deg,transparent 50%,#8B8B8B 50%),linear-gradient(135deg,#8B8B8B 50%,transparent 50%);background-position:calc(100% - 20px) 50%,calc(100% - 15px) 50%;background-size:5px 5px;background-repeat:no-repeat}
.ct-f select:focus{outline:none;border-color:var(--o);box-shadow:0 0 0 3px var(--o-100)}
.ct-f select:invalid{color:var(--ink-4)}
.ct-fine{font-size:12.5px;line-height:1.5;color:var(--ink-4);flex:1;min-width:200px}
.ct-f input:focus,.ct-f textarea:focus{outline:none;border-color:var(--o);box-shadow:0 0 0 3px var(--o-100)}
.ct-f [aria-invalid="true"]{border-color:#C7411C;box-shadow:0 0 0 3px #FBE1D8}
.ct-topics{display:flex;flex-wrap:wrap;gap:8px}
.ct-topics label{position:relative;cursor:pointer}
.ct-topics input{position:absolute;opacity:0;pointer-events:none}
.ct-topics span{display:block;font-family:var(--ui);font-size:13px;font-weight:500;color:var(--ink-2);border:1px solid var(--line);border-radius:100px;padding:8px 14px;
  background:#fff;transition:border-color .18s,color .18s,background .18s}
.ct-topics label:hover span{border-color:var(--o-300);color:var(--ink)}
.ct-topics input:checked + span{background:var(--ink);border-color:var(--ink);color:#fff}
.ct-topics input:focus-visible + span{box-shadow:0 0 0 3px var(--o-200)}
.ct-err{font-family:var(--ui);font-size:13.5px;color:#9E3314;background:#FFF1EC;border:1px solid #FFD2BF;border-radius:10px;padding:10px 12px}
.ct-foot{display:flex;align-items:center;gap:18px;flex-wrap:wrap}
.ct-note{flex:1;min-width:200px;font-size:12.5px;line-height:1.5;color:var(--ink-4)}
.ct-done{justify-items:start;align-content:start}
.ct-done:focus{outline:none}
.ct-tick{width:46px;height:46px;border-radius:50%;background:var(--o-100);color:var(--o-600);display:grid;place-items:center}
.ct-tick svg{width:22px;height:22px}
.ct-done h3{font-family:var(--serif);font-weight:300;font-size:clamp(24px,2.6vw,32px);line-height:1.15}
.ct-done p{font-size:15px;line-height:1.6;color:var(--ink-2);max-width:48ch}
.ct-again{font-family:var(--ui);font-size:13px;font-weight:500;border:1px solid var(--line);border-radius:100px;padding:7px 14px;background:#fff;color:var(--ink);cursor:pointer}
.ct-again:hover{border-color:var(--o-300)}
.ct-form[hidden],.ct-done[hidden],.ct-err[hidden]{display:none}
@media(max-width:900px){.ct-in{grid-template-columns:1fr}}
@media(max-width:560px){.ct-row{grid-template-columns:1fr}}


/* ============================================================
   TEAMMATE CARD
   Shared: the directory lists these, and every teammate page
   shows its siblings in the same card. Lives here rather than
   in one page's own CSS so both sides stay in step.
   ============================================================ */
.tmc{
  border:1px solid var(--line);border-radius:12px;background:#fff;padding:20px;
  display:flex;flex-direction:column;
  transition:border-color .22s ease,transform .22s ease,box-shadow .22s ease;
}
.tmc[hidden]{display:none}
.tmc:hover{border-color:var(--o);transform:translateY(-2px);box-shadow:0 12px 30px -18px rgba(17,17,17,.4)}
.tmc-ico{
  width:36px;height:36px;flex:none;border-radius:10px;display:grid;place-items:center;
  background:var(--o-50);color:var(--o-600);margin-bottom:16px;
}
.tmc-ico svg{width:19px;height:19px}
.tmc-name{font-family:var(--serif);font-size:17px;font-weight:400;line-height:1.25;margin-bottom:8px}
.tmc-one{font-size:13.5px;line-height:20px;color:var(--ink-2);flex:1}
.tmc-run{
  display:inline-flex;align-items:center;align-self:flex-start;gap:6px;margin-top:14px;
  font-family:var(--ui);font-size:10.5px;font-weight:500;color:var(--ink-3);
  border:1px solid var(--line);border-radius:100px;padding:4px 10px;
}
.tmc-run::before{content:"";width:5px;height:5px;border-radius:50%;background:var(--o);flex:none}

/* ============================================================
   TEAMMATE PAGE
   Short on purpose: the job as the headline, one example of it
   being done, the before and after, and where to go next.
   ============================================================ */
.ap-hero{
  position:relative;text-align:center;
  background:linear-gradient(180deg,var(--o-50) 0%,#fff 88%);
  padding:clamp(28px,4vw,44px) 0 clamp(40px,5vw,64px);
}
.ap-back{
  position:absolute;left:var(--pad);top:clamp(22px,3vw,32px);
  display:inline-flex;align-items:center;gap:7px;
  font-family:var(--ui);font-size:13px;color:var(--ink-3);
}
.ap-back:hover{color:var(--o-600)}
.ap-back svg{width:14px;height:14px}
.ap-tag{
  display:inline-flex;align-items:center;gap:9px;margin-top:clamp(30px,4vw,44px);
  font-family:var(--ui);font-size:11.5px;font-weight:600;letter-spacing:.12em;
  text-transform:uppercase;color:var(--o-700);
}
.ap-tag i{
  width:26px;height:26px;border-radius:7px;display:grid;place-items:center;
  background:var(--o-100);color:var(--o-600);font-style:normal;
}
.ap-tag i svg{width:15px;height:15px}
.ap-tag em{font-style:normal;color:var(--ink-4);font-weight:500;letter-spacing:.1em}
.ap-h1{
  font-family:var(--serif);font-weight:300;letter-spacing:-.018em;
  font-size:clamp(32px,5vw,58px);line-height:1.1;
  max-width:17ch;margin:18px auto 0;text-wrap:balance;
}
.ap-h1 b{font-weight:300;color:var(--o-600)}
.ap-sub{font-size:clamp(16px,1.5vw,18.5px);line-height:1.55;color:var(--ink-2);max-width:54ch;margin:20px auto 0}
.ap-chips{display:flex;justify-content:center;flex-wrap:wrap;gap:8px;margin-top:22px}
.ap-chip{
  display:inline-flex;align-items:center;gap:7px;
  font-family:var(--ui);font-size:12px;color:var(--ink-2);
  border:1px solid var(--line);background:#fff;border-radius:100px;padding:6px 13px;
}
.ap-chip.run::before{content:"";width:6px;height:6px;border-radius:50%;background:var(--o)}
.ap-cta{display:flex;justify-content:center;gap:10px;flex-wrap:wrap;margin-top:28px}

/* ---- the example: one ask, one answer, one result ---- */
.ap-demo{max-width:720px;margin:clamp(40px,5vw,60px) auto 0;text-align:left}
.ap-win{
  border:1px solid var(--line);border-radius:14px;background:#fff;overflow:hidden;
  box-shadow:0 2px 6px rgba(17,17,17,.04),0 30px 60px -30px rgba(17,17,17,.28);
}
.ap-bar{
  display:flex;align-items:center;gap:7px;padding:11px 14px;
  border-bottom:1px solid var(--line);background:var(--sunk);
}
.ap-bar i{width:9px;height:9px;border-radius:50%;background:#DADADA}
.ap-bar span{font-family:var(--ui);font-size:11.5px;color:var(--ink-3);margin-left:8px}
.ap-bar em{
  margin-left:auto;font-style:normal;font-family:var(--ui);font-size:10px;font-weight:600;
  letter-spacing:.1em;text-transform:uppercase;color:var(--ink-4);
  border:1px solid var(--line);border-radius:100px;padding:3px 9px;background:#fff;
}
.ap-thread{padding:clamp(18px,2.6vw,26px);display:flex;flex-direction:column;gap:18px}
.ap-msg{display:flex;gap:12px;align-items:flex-start}
.ap-av{
  width:30px;height:30px;flex:none;border-radius:8px;display:grid;place-items:center;
  font-family:var(--ui);font-size:10px;font-weight:700;
}
.ap-av.you{background:var(--sunk);border:1px solid var(--line);color:var(--ink-3)}
.ap-av.tm{background:linear-gradient(150deg,var(--o-400),var(--o-600));color:#fff}
.ap-av.tm svg{width:16px;height:16px}
.ap-msg b{display:block;font-family:var(--ui);font-size:12.5px;font-weight:600;margin-bottom:3px}
.ap-msg b small{font-weight:400;color:var(--ink-4);margin-left:6px;font-size:11px}
.ap-msg p{font-size:14.5px;line-height:22px;color:var(--ink-2)}
.ap-card{margin-left:42px;border:1px solid var(--line);border-radius:11px;overflow:hidden;background:#fff}
.ap-card.ask{border-color:var(--ink)}
.ap-card-top{
  display:flex;align-items:center;justify-content:space-between;gap:10px;
  padding:8px 13px;font-family:var(--ui);font-size:10.5px;font-weight:600;
  letter-spacing:.08em;text-transform:uppercase;background:var(--sunk);color:var(--ink-3);
}
.ap-card.ask .ap-card-top{background:var(--ink);color:#fff}
.ap-card-top em{
  font-style:normal;font-size:10px;letter-spacing:.06em;border-radius:100px;padding:2px 8px;
  background:var(--o-100);color:var(--o-700);
}
.ap-card.ask .ap-card-top em{background:var(--o);color:#fff}
.ap-card-b{padding:13px 14px 14px}
.ap-card-h{font-family:var(--ui);font-size:14px;font-weight:600;line-height:1.35;margin-bottom:8px}
.ap-kv{display:grid;grid-template-columns:7.2rem minmax(0,1fr);gap:10px;padding:7px 0;border-top:1px solid var(--line-2,#F0F0F0);font-size:13px;line-height:19px}
.ap-kv span:first-child{font-family:var(--ui);font-size:11px;color:var(--ink-4);padding-top:1px}
.ap-kv span:last-child{color:var(--ink)}
.ap-btns{display:flex;gap:8px;margin-top:12px}
.ap-btns span{
  flex:1;text-align:center;font-family:var(--ui);font-size:12px;font-weight:600;
  border-radius:8px;padding:9px 10px;border:1px solid var(--line);color:var(--ink);
}
.ap-btns span:first-child{background:var(--ink);border-color:var(--ink);color:#fff}

/* ---- before / after ---- */
.ap-vs{display:grid;grid-template-columns:1fr 1fr;gap:14px;max-width:880px;margin:clamp(26px,3vw,36px) auto 0}
.ap-col{border-radius:14px;padding:clamp(20px,2.4vw,28px)}
.ap-col.no{border:1px dashed var(--line);background:#fff}
.ap-col.yes{border:1px solid var(--o-200);background:var(--o-50)}
.ap-col h3{font-family:var(--ui);font-size:14px;font-weight:600;margin:0 0 14px;color:var(--ink-3)}
.ap-col.yes h3{color:var(--o-700)}
.ap-col ul{list-style:none;margin:0;padding:0}
.ap-col li{display:flex;gap:11px;align-items:flex-start;padding:10px 0;font-size:14.5px;line-height:21px;border-top:1px solid var(--line)}
.ap-col.yes li{border-top-color:var(--o-100);color:var(--ink)}
.ap-col.no li{color:var(--ink-2)}
.ap-col li:first-child{border-top:0}
.ap-col li i{
  flex:none;width:19px;height:19px;border-radius:50%;display:grid;place-items:center;margin-top:1px;
  font-style:normal;font-size:10px;font-weight:700;
}
.ap-col.no li i{background:var(--line);color:var(--ink-2);font-size:12px}
.ap-col.yes li i{background:var(--o);color:#fff}

.ap-sec{padding:clamp(56px,7vw,96px) 0 0;text-align:center}
.ap-sec h2{font-family:var(--serif);font-weight:300;font-size:clamp(24px,2.8vw,36px);line-height:1.2;letter-spacing:-.01em}
.ap-rel{display:grid;grid-template-columns:repeat(3,1fr);gap:12px;margin-top:clamp(24px,3vw,34px);text-align:left}
.ap-more{display:inline-block;margin-top:22px;font-family:var(--ui);font-size:13.5px;color:var(--o-600)}
.ap-more:hover{text-decoration:underline;text-underline-offset:3px}
.ap-end{padding:clamp(64px,8vw,110px) 0 clamp(70px,9vw,120px);text-align:center}
.ap-end p{color:var(--ink-2);font-size:16px;margin-top:12px}

@media(max-width:760px){
  .ap-back{position:static;margin:0 0 4px}
  .ap-hero .wrap{text-align:center}
  .ap-vs,.ap-rel{grid-template-columns:1fr}
  .ap-card{margin-left:0}
  .ap-kv{grid-template-columns:6rem minmax(0,1fr)}
}

/* ============================================================
   SOLUTIONS MENU
   Two columns, as Lindy and Zite do it: the areas of the
   business on the left, the jobs people hand over first on
   the right, and a way through to all of them.
   ============================================================ */
/* the panel is wider than the button, so it hangs off the nav bar itself and
   centres on the page, rather than on a button left of centre */
.nav-drop.solutions{position:static}
.drop.mega{
  top:calc(100% - 4px);left:50%;
  width:min(800px,calc(100vw - 40px));padding:10px;
  transform:translate(-50%,-6px);
}
.nav-drop:hover .drop.mega,
.nav-drop:focus-within .drop.mega,
.nav-drop .drop.mega.open{transform:translate(-50%,0)}
/* bridge the gap between button and panel so the pointer can cross it
   without the menu closing; it only exists while the panel is shown */
.drop::before{content:"";position:absolute;left:0;right:0;top:-26px;height:26px}

.mg{display:grid;grid-template-columns:244px 1fr}
.mg-col:first-child a{white-space:nowrap}
.mg-col{padding:8px 8px 10px}
.mg-col + .mg-col{border-left:1px solid var(--line);padding-left:14px}
.mg-h{
  font-family:var(--ui);font-size:10.5px;font-weight:600;letter-spacing:.12em;
  text-transform:uppercase;color:var(--ink-4);margin:4px 8px 8px;
}
.mg a{
  display:flex;align-items:center;gap:11px;padding:6px 8px;border-radius:8px;
  font-family:var(--ui);font-size:14px;font-weight:450;color:var(--ink);line-height:1.25;
}
.mg a:hover{background:var(--o-50)}
.mg a i{
  width:30px;height:30px;flex:none;border-radius:8px;display:grid;place-items:center;
  border:1px solid var(--line);background:#fff;color:var(--ink-2);font-style:normal;
  transition:border-color .18s ease,color .18s ease;
}
.mg a:hover i{border-color:var(--o-200);color:var(--o-600)}
.mg a i svg{width:15px;height:15px}
.mg-grid{display:grid;grid-template-columns:1fr 1fr;column-gap:4px}
.mg a.mg-all{
  display:inline-flex;margin:8px 0 0 8px;padding:0;
  font-size:13.5px;color:var(--o-600);text-decoration:underline;text-underline-offset:3px;
}
.mg a.mg-all:hover{background:none}
/* Built-in tools: its own menu, one line of what each tool is */
.drop.tools{width:320px}
.drop.tools a{display:flex;gap:12px;align-items:flex-start}
.drop.tools a i{width:30px;height:30px;flex:none;border-radius:8px;display:grid;place-items:center;margin-top:1px;
  border:1px solid var(--line);background:#fff;color:var(--ink-2);font-style:normal;transition:border-color .18s ease,color .18s ease}
.drop.tools a:hover i{border-color:var(--o-200);color:var(--o-600)}
.drop.tools a i svg{width:15px;height:15px}
.drop.tools a.drop-all{display:block;margin-top:4px;padding-top:10px;border-top:1px solid var(--line);border-radius:0 0 7px 7px;
  font-family:var(--ui);font-size:13px;color:var(--o-600)}

/* ============================================================
   BUILT-IN TOOL PAGE
   Same frame as a teammate page; the example is the tool's own
   screen rather than a conversation.
   ============================================================ */
.tl-mock{padding:clamp(18px,2.6vw,26px)}
.tl-head{display:flex;align-items:center;gap:12px;margin-bottom:14px}
.tl-av{
  width:38px;height:38px;flex:none;border-radius:9px;display:grid;place-items:center;
  background:var(--o-100);color:var(--o-700);font-family:var(--ui);font-size:13px;font-weight:600;
}
.tl-head b{display:block;font-family:var(--ui);font-size:15px;font-weight:600}
.tl-head small{font-family:var(--ui);font-size:12px;color:var(--ink-3)}
.tl-pill{margin-left:auto;font-style:normal;font-family:var(--ui);font-size:11px;font-weight:600;
  background:var(--o-100);color:var(--o-700);border-radius:100px;padding:4px 10px}
.tl-steps{display:flex;gap:4px;margin:2px 0 12px}
.tl-steps span{flex:1;text-align:center;font-family:var(--ui);font-size:10.5px;font-weight:500;
  padding:7px 2px;border-radius:6px;background:var(--sunk);color:var(--ink-4)}
.tl-steps span.done{background:var(--o-100);color:var(--o-700)}
.tl-steps span.now{background:var(--o);color:#fff}
.tl-note{margin-top:12px;border-left:2px solid var(--o);background:var(--o-50);
  padding:10px 12px;border-radius:0 8px 8px 0;font-size:13.5px;line-height:20px}
.tl-note b,.tl-out b,.tl-lands small,.tl-label{
  display:block;font-family:var(--ui);font-size:10.5px;font-weight:600;letter-spacing:.08em;
  text-transform:uppercase;color:var(--o-700);margin-bottom:4px}
.tl-note small{display:block;font-family:var(--ui);font-size:11px;color:var(--ink-4);margin-top:4px}

.tl-rec{display:inline-flex;align-items:center;gap:8px;font-family:var(--ui);font-size:12px;
  color:var(--ink-2);border:1px solid var(--line);border-radius:100px;padding:5px 12px;margin-bottom:10px}
.tl-rec i{width:8px;height:8px;border-radius:50%;background:#E5484D}
.tl-line{display:flex;gap:12px;font-size:14px;line-height:21px;padding:6px 0;color:var(--ink-2);border-bottom:1px solid var(--line-2,#F0F0F0)}
.tl-line b{font-family:var(--ui);font-size:12px;font-weight:600;color:var(--ink);min-width:44px;padding-top:1px}
.tl-out{display:grid;grid-template-columns:repeat(3,1fr);gap:8px;margin-top:14px}
.tl-out div{border:1px solid var(--line);border-radius:9px;padding:10px 11px;font-size:13px;line-height:19px;background:#fff}

.tl-board{display:grid;grid-template-columns:repeat(3,1fr);gap:10px}
.tl-colh{display:flex;justify-content:space-between;font-family:var(--ui);font-size:10.5px;font-weight:600;
  letter-spacing:.08em;text-transform:uppercase;color:var(--ink-3);margin:0 2px 8px}
.tl-colh span{color:var(--ink-4)}
.tl-card{border:1px solid var(--line);border-radius:8px;padding:9px 10px;font-size:13px;line-height:18px;
  margin-bottom:8px;background:#fff}
.tl-card.ask{border-color:var(--ink)}
.tl-card small{display:block;margin-top:6px;font-family:var(--ui);font-size:10.5px;font-weight:500;color:var(--ink-4)}
.tl-card small.tm{color:var(--o-700)}

.tl-days{display:grid;grid-template-columns:repeat(5,1fr);gap:6px;margin:4px 0 10px}
.tl-days span,.tl-slots span{text-align:center;border:1px solid var(--line);border-radius:8px;
  font-family:var(--ui);font-size:12.5px;font-weight:500;background:#fff}
.tl-days span{padding:8px 4px}
.tl-days small{display:block;font-size:10.5px;color:var(--ink-4);margin-top:1px}
.tl-days span.on{background:var(--ink);border-color:var(--ink);color:#fff}
.tl-days span.on small{color:#bbb}
.tl-slots{display:grid;grid-template-columns:repeat(4,1fr);gap:6px}
.tl-slots span{padding:10px 4px}
.tl-slots span.on{border-color:var(--o);background:var(--o-50);color:var(--o-700)}
.tl-slots span.off{background:var(--sunk);color:var(--ink-4);text-decoration:line-through}
.tl-foot{margin-top:12px;font-family:var(--ui);font-size:12px;color:var(--ink-3)}

.tl-label{color:var(--ink-4)}
.tl-wave{display:flex;align-items:center;gap:4px;height:34px;margin:6px 0 10px}
.tl-wave i{width:4px;border-radius:4px;background:var(--o-300)}
.tl-said{font-size:15px;line-height:24px;color:var(--ink-3);font-style:italic}
.tl-said s{color:var(--ink-4)}
.tl-lands{margin-top:14px;border:1px solid var(--line);border-radius:10px;padding:12px 14px;background:#fff}
.tl-lands small{color:var(--ink-4)}
.tl-lands p{font-size:15.5px;line-height:23px;color:var(--ink)}

.tl-srcs{display:flex;flex-wrap:wrap;gap:6px;margin-top:10px}
.tl-srcs span{font-family:var(--ui);font-size:11px;border:1px solid var(--line);border-radius:100px;
  padding:4px 10px;color:var(--ink-2);background:#fff}

/* what's in it */
.tl-feats{list-style:none;padding:0;display:grid;grid-template-columns:repeat(2,1fr);gap:10px;
  max-width:820px;margin:clamp(24px,3vw,32px) auto 0;text-align:left}
.tl-feats li{display:flex;gap:11px;align-items:flex-start;font-size:15px;line-height:22px;
  padding:13px 15px;border:1px solid var(--line);border-radius:11px;background:#fff}
.tl-feats li i{flex:none;width:19px;height:19px;border-radius:50%;display:grid;place-items:center;margin-top:1px;
  background:var(--o);color:#fff;font-style:normal;font-size:10px;font-weight:700}
.tl-rel{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:12px;
  margin-top:clamp(24px,3vw,34px);text-align:left}
.tl-more{display:flex;flex-wrap:wrap;justify-content:center;gap:8px;margin-top:clamp(22px,3vw,30px)}
.tl-more a{display:inline-flex;align-items:center;gap:8px;border:1px solid var(--line);border-radius:100px;
  padding:6px 14px 6px 6px;font-family:var(--ui);font-size:13px;background:#fff;
  transition:border-color .2s ease}
.tl-more a:hover{border-color:var(--o)}
.tl-more a i{width:26px;height:26px;border-radius:50%;display:grid;place-items:center;
  background:var(--o-100);color:var(--o-600);font-style:normal}
.tl-more a i svg{width:14px;height:14px}

/* the homepage cells are links now; a quiet arrow says so */
.bi a.cell::after{
  content:"\2197";position:absolute;top:clamp(24px,2.6vw,38px);right:clamp(20px,2.2vw,32px);
  font-family:var(--ui);font-size:17px;line-height:1;color:var(--ink-4);transition:color .2s ease,transform .2s ease;
}
.bi a.cell:hover::after{color:var(--o-600);transform:translate(2px,-2px)}

@media(max-width:760px){
  .tl-feats,.tl-out,.tl-board{grid-template-columns:1fr}
}
