/* ============================================================
   LAYOUT PROTOTYPE STYLESHEET  —  shared across all three sites
   Pure monochrome. No graphics, no decorative rules, no eyebrows.
   Borders ONLY on placeholder-image boxes and buttons.
   Full-height panels (100vh). Content max-width 1200px.
   ============================================================ */

:root {
  --ink:   #0b0b0b;
  --paper: #ffffff;
  --faint: #f1f0ee;
  --muted: #6a6a66;
  --maxw:  1200px;
}

/* ---- per-site TITLE fonts (body is uniform Google Sans 300 — set on body below) ---- */
.site-15     { --title: "Shippori Mincho", serif; --title-weight: 400; --body: "Google Sans","Roboto",sans-serif; }
.site-nexuss { --title: "Outfit", sans-serif;   --title-weight: 700; --body: "Google Sans","Roboto",sans-serif; --maxw: 1300px; }
.site-nemoss { --title: "Noto Sans", sans-serif; --title-weight: 800; --body: "Google Sans","Roboto",sans-serif; }

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Google Sans", "Roboto", sans-serif;   /* all body text: Google Sans */
  font-weight: 300;                                    /* light weight everywhere */
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; }
p { margin: 0 0 1rem; }

/* ============================================================
   UNIVERSAL LINK (all sites) — every non-button anchor.
   Transparent, body font, black/white per background.
   Hover: underline wipes in L→R, then (200ms later) a fill
   slides in L→R while the text inverts so it stays visible.
   ============================================================ */
/* Applies to content + footer anchors only — nav links have their own hover. */
:is(.panel, .wf-foot) a:not(.btn):not(.card-t):not(.stik-card) {
  position: relative; display: inline-block; text-decoration: none;
  color: var(--ink); padding: 1px 4px; z-index: 0;
  transition: color .25s ease .2s;
}
:is(.panel, .wf-foot) a:not(.btn):not(.card-t):not(.stik-card)::before {    /* underline (first) */
  content: ""; position: absolute; left: 0; bottom: 0; height: 1.5px; width: 100%;
  background: var(--ink); transform: scaleX(0); transform-origin: left;
  transition: transform .25s ease;
}
:is(.panel, .wf-foot) a:not(.btn):not(.card-t):not(.stik-card)::after {     /* fill (200ms later) */
  content: ""; position: absolute; inset: 0; background: var(--ink); z-index: -1;
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s ease .2s;
}
:is(.panel, .wf-foot) a:not(.btn):not(.card-t):not(.stik-card):hover { color: var(--paper); }
:is(.panel, .wf-foot) a:not(.btn):not(.card-t):not(.stik-card):hover::before { transform: scaleX(1); }
:is(.panel, .wf-foot) a:not(.btn):not(.card-t):not(.stik-card):hover::after  { transform: scaleX(1); }

/* invert palette on dark backgrounds (dark panels + footer) */
.panel.dark a:not(.btn):not(.card-t):not(.stik-card), .wf-foot a:not(.btn):not(.card-t):not(.stik-card) { color: var(--paper); }
.panel.dark a:not(.btn):not(.card-t):not(.stik-card)::before, .panel.dark a:not(.btn):not(.card-t):not(.stik-card)::after,
.wf-foot a:not(.btn):not(.card-t):not(.stik-card)::before, .wf-foot a:not(.btn):not(.card-t):not(.stik-card)::after { background: var(--paper); }
.panel.dark a:not(.btn):not(.card-t):not(.stik-card):hover, .wf-foot a:not(.btn):not(.card-t):not(.stik-card):hover { color: var(--ink); }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0; }   /* no x-padding: content flush to the max-width edge */

/* ---- type ---- */
h1, h2, h3 { font-family: var(--title), sans-serif; font-weight: var(--title-weight); line-height: 1.05; margin: 0 0 .5em; letter-spacing: -0.01em; }
.display { font-size: clamp(2.6rem, 6.5vw, 5.4rem); line-height: 0.98; }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.8rem); }
h3 { font-size: 1.25rem; letter-spacing: 0; }
.lead { font-size: clamp(1.05rem, 1.7vw, 1.35rem); line-height: 1.5; max-width: 62ch; }
.muted { color: var(--muted); }
.mono { font-family: ui-monospace, "Courier New", monospace; }

/* scroll-driven text fill: light-grey → black, angled + feathered, eased so the sweep is visible.
   JS moves background-position from 100% (unfilled) to 0% (filled). */
.fill-text {
  background-image: linear-gradient(110deg, var(--ink) 0%, var(--ink) 40%, #d6d2ca 60%, #d6d2ca 100%);
  background-size: 260% 100%; background-repeat: no-repeat; background-position: 100% 0;
  -webkit-background-clip: text; background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
  transition: background-position .8s cubic-bezier(.33, 0, .2, 1);
}

/* scroll reveal — content eases in as each section enters (only when JS is active) */
html.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s cubic-bezier(.2,.6,.2,1), transform .7s cubic-bezier(.2,.6,.2,1); }
html.js .reveal.in { opacity: 1; transform: none; }

/* ---- top nav (fixed overlay — sits OVER the hero; heroes are full 100vh behind it) ---- */
.wf-nav { position: fixed; top: 0; left: 0; right: 0; z-index: 30; padding: 14px 0; transition: background .3s ease; }
.nav-wrap { max-width: var(--maxw); margin: 0 auto; padding: 0; }   /* no x-padding, except 15.Group nav */
.site-15 .nav-wrap { padding: 0 24px; }
.wf-nav a { text-decoration: none; }

/* ---------- 15.GROUP + NEMOSS : dark pill nav ---------- */
.nav-pill { display: flex; align-items: center; gap: 6px; background: #1E1E1E; border-radius: 999px; padding: 7px; }
.site-15 .nav-pill { width: fit-content; margin: 0 auto; }     /* centered, content width */
.site-nemoss .nav-pill { width: 100%; }                         /* full 1200px content width */

.nav-logo { width: 46px; height: 46px; flex: 0 0 auto; border-radius: 50%; background: #F1EBE2; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.nav-logo img { width: 60%; height: 60%; object-fit: contain; filter: brightness(0); }   /* force black logo */

.nav-links { list-style: none; display: flex; align-items: center; gap: 2px; margin: 0; padding: 0 6px; flex-wrap: wrap; }
.nav-links a { display: block; padding: 10px 16px; border-radius: 999px; color: #ffffff; font-size: .8rem; letter-spacing: .02em; transition: background .25s ease, color .25s ease; }
.nav-links a:hover, .nav-links a.current { background: #F1EBE2; color: #000000; }

.nav-cta { margin-left: auto; display: inline-flex; align-items: center; background: #F1EBE2; color: #000000; border-radius: 999px; padding: 11px 22px; font-size: .76rem; text-transform: uppercase; letter-spacing: .08em; transition: filter .25s ease; }
.nav-cta:hover { filter: brightness(.9); }

/* ---------- NEXUSS : logo left · PERFECTLY CENTERED pill · CTA right (always transparent) ---------- */
.nav-row { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.nav-logo-device { display: flex; align-items: center; }
.nav-logo-device img { width: 32px; height: 32px; object-fit: contain; filter: brightness(0); }   /* all-black device icon */
/* pill is absolutely centered, so the CTA's hover width change never shifts it */
/* pill ALWAYS has a solid background so it's visible on any backdrop.
   Default (over light): solid black pill, white links. Over dark: solid white pill, black links. */
.nav-pill-links { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  list-style: none; display: flex; align-items: center; gap: 2px; margin: 0; padding: 5px; border-radius: 999px; background: #000000; transition: background .3s ease; }
.nav-pill-links a { display: block; padding: 9px 15px; border-radius: 999px; color: #ffffff; font-size: .8rem; white-space: nowrap; transition: background .25s ease, color .25s ease; }
.nav-pill-links a:hover, .nav-pill-links a.current { background: #ffffff; color: #000000; }

/* nav adapts to a DARK section behind it (the .over-dark class is set from JS) */
.site-nexuss .wf-nav.over-dark .nav-logo-device img { filter: brightness(0) invert(1); }
.site-nexuss .wf-nav.over-dark .nav-pill-links { background: #ffffff; }
.site-nexuss .wf-nav.over-dark .nav-pill-links a { color: #000000; }
.site-nexuss .wf-nav.over-dark .nav-pill-links a:hover,
.site-nexuss .wf-nav.over-dark .nav-pill-links a.current { background: #000000; color: #ffffff; }
.site-nexuss .wf-nav.over-dark .btn.solid.nav-cta-nexuss .bt-txt { background: #ffffff; color: #000000; }
.site-nexuss .wf-nav.over-dark .btn.solid.nav-cta-nexuss .bt-ico { background: #e6e6e6; color: #000000; }
.site-nexuss .wf-nav.over-dark .btn.solid.nav-cta-nexuss:hover .bt-txt { background: #ededed; color: #000000; }
.site-nexuss .wf-nav.over-dark .btn.solid.nav-cta-nexuss:hover .bt-ico { background: #e6e6e6; color: #000000; }

/* ---------- NEXUSS hero : solid-black bg + transparent-sky terrain overlay (parallax-ready), title top-left ---------- */
.panel.hero-nexuss { position: relative; display: block; padding: 0; color: #ffffff; background: #000000; overflow: hidden; }
.hero-nexuss .hero-bg {                 /* terrain layer over the black; transform driven by JS for parallax */
  position: absolute; left: 0; right: 0; bottom: 0; height: 100%; z-index: 2; pointer-events: none;   /* OVER the content (foreground parallax) */
  background: url("nexuss/assets/hero.webp") center bottom / 100% auto no-repeat;   /* full width, bottom anchored (mobile overrides to cover) */
  will-change: transform;
}
.hero-nexuss .wrap { max-width: var(--maxw); width: 100%; position: relative; z-index: 1; min-height: 100vh; display: flex; flex-direction: column; justify-content: flex-start; padding-top: 18vh; padding-bottom: 80px; }
.hero-nexuss .hero-inner { display: flex; flex-direction: column; align-items: flex-start; gap: 40px; width: 100%; }   /* wordmark full-width, sub-text underneath on the left */
.hero-nexuss .hero-title { width: 100%; margin: 0; line-height: 0; }
.hero-nexuss .hero-title img { display: block; width: 100%; height: auto; filter: drop-shadow(0 2px 24px rgba(0,0,0,.45)); }
.hero-nexuss .hero-bottom { position: relative; max-width: 560px; }
.hero-nexuss .hero-bottom::before {   /* soft black blob so the sub-text reads over the terrain */
  content: ""; position: absolute; z-index: -1; left: -16%; top: -24%; width: 132%; height: 150%;
  background: radial-gradient(60% 60% at 50% 55%, rgba(0,0,0,.8) 0%, rgba(0,0,0,.45) 40%, rgba(0,0,0,0) 72%);
  filter: blur(36px); pointer-events: none;
}
.hero-nexuss .hero-bottom .lead { color: #ffffff; text-shadow: 0 2px 16px rgba(0,0,0,.55), 0 0 6px rgba(0,0,0,.45); }

/* fade the bottom of the hero (overlay + bg) into the next white section */
.hero-nexuss::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 22%; z-index: 3; pointer-events: none;
  background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, #ffffff 90%); }

/* hero buttons: WHITE by default → LIGHT-GRAY on hover, and smaller */
.site-nexuss .hero-nexuss .btn { font-size: .72rem; }
.site-nexuss .hero-nexuss .btn:not(.solid) { background: #ffffff; color: #000000; padding: 11px 20px; }
.site-nexuss .hero-nexuss .btn:not(.solid):hover { background: #dcd8d0; color: #000000; }
.site-nexuss .hero-nexuss .btn.solid .bt-txt { background: #ffffff; color: #000000; padding: 11px 18px; }
.site-nexuss .hero-nexuss .btn.solid .bt-ico { background: #eae6dd; color: #000000; min-width: 40px; }
.site-nexuss .hero-nexuss .btn.solid:hover .bt-txt { background: #dcd8d0; color: #000000; }
.site-nexuss .hero-nexuss .btn.solid:hover .bt-ico { background: #dcd8d0; color: #000000; }
/* smaller hero sub-text */
.site-nexuss .hero-nexuss .hero-bottom .lead { font-size: 1rem; line-height: 1.45; }

@media (max-width: 860px) {
  .hero-nexuss .hero-inner { flex-direction: column; align-items: flex-start; gap: 26px; }
  .hero-nexuss .hero-title { font-size: clamp(3.5rem, 22vw, 8rem); }
}
/* Nexuss nav CTA = the primary button, sized to the pill-LINK height (not the pill container).
   Icon container is hidden by default and slides out on the right to connect on hover.
   High-specificity selectors so these win over the base .btn.solid rules. */
.site-nexuss .btn.solid.nav-cta-nexuss .bt-txt { padding: 9px 20px; }
.site-nexuss .btn.solid.nav-cta-nexuss .bt-ico {
  min-width: 0; width: 0; padding: 0; overflow: hidden;
  transition: width .35s cubic-bezier(.45,0,.2,1), padding .35s cubic-bezier(.45,0,.2,1), background .3s ease, color .3s ease, border-radius .35s cubic-bezier(.45,0,.2,1);
}
.site-nexuss .btn.solid.nav-cta-nexuss:hover .bt-ico { width: 44px; padding: 0 12px; }

/* ---- full-height panel (no dividing rule; dark/light alternation separates) ---- */
.panel { min-height: auto; display: flex; flex-direction: column; justify-content: center; padding: 0; scroll-margin-top: 90px; }
.panel + .panel { margin-top: 20vh; }
.site-nexuss .panel + .panel { margin-top: 11vh; }
.panel.center { text-align: center; align-items: center; }
.panel.dark { background: var(--ink); color: var(--paper); }
.panel.dark .muted { color: #b7b6b1; }

/* ---- split layout ---- */
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 16px; align-items: stretch; width: 100%; }
/* bento: the text side of a split becomes a card that matches the image tile */
.panel:not(.dark) .split > div:not(.frame) { background: var(--faint); border-radius: 18px; padding: 40px; display: flex; flex-direction: column; justify-content: center; }
.panel.dark .split > div:not(.frame) { background: #1b1b1b; border-radius: 18px; padding: 40px; display: flex; flex-direction: column; justify-content: center; }
.split.rev { grid-template-columns: .95fr 1.05fr; }
.split + .split { margin-top: 60px; }
@media (max-width: 860px) { .split, .split.rev { grid-template-columns: 1fr; gap: 36px; } }

/* ---- placeholder image box (border allowed) ---- */
.frame { position: relative; overflow: hidden; border: 1px solid currentColor; border-radius: 18px; display: flex; align-items: center; justify-content: center; text-align: center; padding: 22px; aspect-ratio: 4 / 3; }
.frame img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.frame:hover img { transform: scale(1.05); }
.frame.tall { aspect-ratio: 3 / 4; }
.frame.wide { aspect-ratio: 16 / 10; }
.frame .lbl { font-family: ui-monospace, "Courier New", monospace; font-size: 12px; letter-spacing: .06em; color: var(--muted); }
.panel.dark .frame .lbl { color: #b7b6b1; }

/* ============================================================
   BUTTON SYSTEM
   .btn.solid  = PRIMARY   ·   .btn (no .solid) = SECONDARY
   Styled per site via the body class (.site-15 / -nexuss / -nemoss).
   Nemoss reuses the 15.Group treatment.
   ============================================================ */
.btn { display: inline-flex; align-items: center; gap: 10px; font-family: "Google Sans","Roboto",sans-serif; font-weight: 300; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; text-decoration: none; cursor: pointer; border: 0; }
.btn-row { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 36px; }

/* ---------- 15.GROUP + NEMOSS : liquid glass gradient buttons ---------- */
/* Primary — translucent dark-gray gradient, blurred, white text */
.site-15 .btn.solid, .site-nemoss .btn.solid {
  color: #ffffff; border-radius: 16px; padding: 15px 30px;
  background: linear-gradient(120deg, rgba(52,52,52,.66), rgba(20,20,20,.58), rgba(64,64,64,.66));
  background-size: 230% 230%; background-position: 0% 50%;
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  transition: background-position .8s cubic-bezier(.45,0,.2,1), filter .45s ease, color .3s ease;
}
.site-15 .btn.solid:hover, .site-nemoss .btn.solid:hover {
  background-position: 100% 50%; filter: brightness(1.18); color: #cfcfcf;
}
/* Secondary — translucent light-gray gradient, blurred, black text */
.site-15 .btn:not(.solid), .site-nemoss .btn:not(.solid) {
  color: #000000; border-radius: 16px; padding: 15px 30px;
  background: linear-gradient(120deg, rgba(238,238,238,.7), rgba(206,206,206,.6), rgba(244,244,244,.7));
  background-size: 230% 230%; background-position: 0% 50%;
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  transition: background-position .8s cubic-bezier(.45,0,.2,1), filter .45s ease, color .3s ease;
}
.site-15 .btn:not(.solid):hover, .site-nemoss .btn:not(.solid):hover {
  background-position: 100% 50%; filter: brightness(.9); color: #333333;
}

/* ---------- NEXUSS : solid black buttons, #2B8EE5 hover ---------- */
/* Secondary — solid black, white text */
.site-nexuss .btn:not(.solid) {
  background: #000000; color: #ffffff; border-radius: 14px; padding: 15px 28px;
  transition: background .3s ease, color .3s ease;
}
.site-nexuss .btn:not(.solid):hover { background: #333333; color: #ffffff; }

/* Nexuss buttons on dark panels invert to light so they stay visible */
.site-nexuss .panel.dark .btn:not(.solid) { background: #ffffff; color: #000000; }
.site-nexuss .panel.dark .btn:not(.solid):hover { background: #dcd8d0; color: #000000; }
.site-nexuss .panel.dark .btn.solid .bt-txt { background: #ffffff; color: #000000; }
.site-nexuss .panel.dark .btn.solid .bt-ico { background: #e0dccf; color: #000000; }
.site-nexuss .panel.dark .btn.solid:hover .bt-txt { background: #dcd8d0; color: #000000; }
.site-nexuss .panel.dark .btn.solid:hover .bt-ico { background: #dcd8d0; color: #000000; }

/* Primary — black label pill with a separate dark-gray icon square on the left.
   On hover both go dark-gray and the inner corners unround so they merge into one container. */
.site-nexuss .btn.solid { padding: 0; gap: 0; align-items: stretch; background: transparent; }
.site-nexuss .btn.solid .bt-txt {
  order: 1;
  display: flex; align-items: center; padding: 15px 26px;
  background: #000000; color: #ffffff; border-radius: 14px;
  transition: background .3s ease, color .3s ease, border-radius .35s cubic-bezier(.45,0,.2,1), padding .35s cubic-bezier(.45,0,.2,1);
}
.site-nexuss .btn.solid .bt-ico {
  order: 2;
  display: flex; align-items: center; justify-content: center; min-width: 50px; padding: 0 14px;
  background: #333333; color: #ffffff; border-radius: 14px;
  transition: background .3s ease, color .3s ease, border-radius .35s cubic-bezier(.45,0,.2,1);
}
/* on hover the label's right padding compresses to 0 (primary buttons + nav CTA) */
.site-nexuss .btn.solid:hover .bt-txt { background: #333333; color: #ffffff; border-radius: 14px 0 0 14px; padding-right: 0; }
.site-nexuss .btn.solid:hover .bt-ico { background: #333333; color: #ffffff; border-radius: 0 14px 14px 0; }
.site-nexuss .btn.solid.nav-cta-nexuss:hover .bt-txt { padding-right: 0; }

/* ---- content grids (no borders, no fills) ---- */
.cols { display: grid; gap: 16px; width: 100%; margin-top: 40px; }
.cols.c2 { grid-template-columns: repeat(2, 1fr); }
.cols.c3 { grid-template-columns: repeat(3, 1fr); }
.cols.c4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 860px) { .cols.c3, .cols.c4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .cols.c2, .cols.c3, .cols.c4 { grid-template-columns: 1fr; } }
/* every cols item is a bento-style card that lifts on hover */
.item { border-radius: 16px; padding: 26px 24px; transition: transform .3s ease, background .3s ease, box-shadow .3s ease; }
.panel:not(.dark) .item { background: var(--faint); }
.panel:not(.dark) .item:hover { transform: translateY(-5px); background: #E7E3DC; box-shadow: 0 12px 30px rgba(0,0,0,.07); }
.panel.dark .item { background: #1b1b1b; }
.panel.dark .item:hover { transform: translateY(-5px); background: #242424; }
.item h3 { margin: 0 0 .45em; }
.item p { margin: 0; color: var(--muted); font-size: .98rem; }

/* section cards — tall 9:16, rounded; on hover they un-round and darken slightly */

/* row: fixed image card on the left + a carousel of coworker cards */
.cards-row { display: flex; gap: 20px; align-items: start; margin-top: 44px; }
.cards-row .card-img { flex: 0 0 calc(25% - 15px); }

/* image card */
.card-img { position: relative; aspect-ratio: 9 / 16; border-radius: 16px; overflow: hidden; transition: border-radius .35s ease; }
.card-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: filter .35s ease; }
.card-img .card-cap { position: absolute; left: 18px; right: 18px; top: 18px; color: #ffffff; font-size: .92rem; line-height: 1.3; text-shadow: 0 2px 16px rgba(0,0,0,.6), 0 0 6px rgba(0,0,0,.5); }
.card-img:hover { border-radius: 30px; }
.card-img:hover img { filter: brightness(.9); }

/* carousel */
.carousel-wrap { position: relative; flex: 1 1 auto; min-width: 0; }
.carousel { display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; scrollbar-width: none; -ms-overflow-style: none; }
.carousel::-webkit-scrollbar { display: none; }
.carousel .card-t { flex: 0 0 calc((100% - 40px) / 3); scroll-snap-align: start; }
.carousel-arrow { position: absolute; top: 50%; right: 8px; transform: translateY(-50%); width: 50px; height: 50px; border-radius: 50%; border: 0; background: var(--ink); color: #ffffff; display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 4; box-shadow: 0 8px 28px rgba(0,0,0,.28); transition: transform .2s ease; }
.carousel-arrow:hover { transform: translateY(-50%) scale(1.07); }
.carousel-arrow svg { width: 20px; height: 20px; }

/* coworker card */
.card-t { aspect-ratio: 9 / 16; background: var(--faint); border-radius: 16px; padding: 24px 22px; display: flex; flex-direction: column; text-decoration: none; color: var(--ink); overflow: hidden; transition: background .3s ease, border-radius .35s ease; }
.card-t:hover { background: #D5D0C9; border-radius: 30px; }
.card-ico { width: 72px; height: 72px; flex: 0 0 auto; border-radius: 16px; overflow: hidden; margin-bottom: 18px; background: var(--ink); color: #fff; display: flex; align-items: center; justify-content: center; }   /* holds an agent image or a lucide glyph */
.card-ico img { width: 100%; height: 100%; object-fit: cover; display: block; }
.card-ico svg { width: 34px; height: 34px; }
.card-t h3 { margin: 0 0 14px; }
.card-list { list-style: none; margin: auto 0 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }   /* pushed to the bottom, above Learn more */
.card-list li { display: flex; align-items: center; gap: 9px; min-height: 34px; font-size: .88rem; color: var(--muted); line-height: 1.3; }
.card-list li svg { flex: 0 0 auto; width: 14px; height: 14px; color: var(--ink); }
.card-more { padding-top: 30px; display: inline-flex; align-items: center; gap: 6px; font-size: .78rem; letter-spacing: .05em; text-transform: uppercase; color: var(--ink); }
.card-more svg { width: 14px; height: 14px; transition: transform .3s ease; }
.card-t:hover .card-more svg { transform: translate(4px, -4px); }   /* diagonal nudge on card hover */

@media (max-width: 900px) {
  .cards-row { flex-direction: column; }
  .cards-row .card-img { flex: none; width: 100%; aspect-ratio: 16 / 9; }
  /* drop the tall 9/16 portrait ratio — let cards size to their content so there's no empty middle */
  .carousel .card-t { flex-basis: 72%; aspect-ratio: auto; }
  .carousel .card-list { margin-top: 18px; }
}
@media (max-width: 560px) { .carousel .card-t { flex-basis: 86%; } }

/* ---- sticky 50/50: fixed text on the left, a column of cards that scrolls up on the right ---- */
.panel.sticky-split { justify-content: flex-start; }
.sticky-row { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; width: 100%; }
/* left stays pinned; padding-bottom reserves breathing room so the space under the text never compresses at the end of the scroll */
.sticky-left { position: sticky; top: 120px; align-self: start; height: fit-content; padding-bottom: 14vh; }
.sticky-left h2 { margin: 0 0 20px; }
.sticky-left .lead { margin: 0 0 26px; }
.sticky-cards { display: flex; flex-direction: column; gap: 20px; }
.stik-card { position: relative; aspect-ratio: 1 / 0.9; background: #D5D0C9; border-radius: 16px; overflow: hidden; display: block; text-decoration: none; color: var(--ink); transition: border-radius .35s ease, background .3s ease; }
.stik-card:hover { border-radius: 30px; background: #C0B9AF; }
.stik-card .st-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }   /* the graphic IS the card background; its pure #f1f0ee sky matches the card */
.stik-card .st-body { position: relative; z-index: 1; padding: 30px 30px 0; }   /* text sits on the flat sky in the top third */
.stik-card h3 { margin: 0 0 10px; font-size: clamp(1.5rem, 2.1vw, 1.85rem); line-height: 1.08; }
.stik-card p { margin: 0 0 14px; max-width: 34ch; color: var(--muted); line-height: 1.5; }
.stik-card .card-more { padding-top: 0; }
.stik-card:hover .card-more svg { transform: translate(4px, -4px); }

/* feature card: blurred coworker photo, title up top, a grid of agent icons pinned to the bottom */
.stik-feature { background: #D5D0C9; color: var(--ink); }
.stik-sep { padding: 8px 2px 4px; font-family: ui-monospace, monospace; font-size: 12px; letter-spacing: .06em; color: var(--muted); }
.stik-feature .st-body { position: relative; z-index: 2; }
.stik-feature h3 { color: var(--ink); }
.stik-feature p { color: var(--muted); max-width: 30ch; }
/* wall of ascii-creature tiles: wider than the card, lowered, tilted, top row faded, bleeding off sides + bottom */
.stik-icon-grid { position: absolute; left: -80px; right: -80px; top: 52%; z-index: 1; display: grid; grid-template-columns: repeat(8, 1fr); gap: 7px; transform: rotate(3deg); transform-origin: center;
  transition: top .5s ease, left .5s ease, right .5s ease, opacity .5s ease, transform .5s ease;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,.30) 0%, #000 14%);
          mask-image: linear-gradient(to bottom, rgba(0,0,0,.30) 0%, #000 14%); }
/* on hover: the grid simply expands a little and fades back slightly */
.stik-feature:hover .stik-icon-grid { transform: rotate(3deg) scale(1.06); opacity: .82; }
.stik-icon-grid .gi { aspect-ratio: 1 / 1; display: flex; align-items: center; justify-content: center; background: #E7E3DC; border-radius: 12px; box-shadow: 0 1px 3px rgba(0,0,0,.06); }
.stik-icon-grid .gi svg { width: 54%; height: 54%; color: #2B8EE5; stroke: url(#gA); filter: url(#px); }
.stik-icon-grid .gi:nth-child(6n+2) svg { stroke: url(#gB); }
.stik-icon-grid .gi:nth-child(6n+3) svg { stroke: url(#gC); }
.stik-icon-grid .gi:nth-child(6n+4) svg { stroke: url(#gD); }
.stik-icon-grid .gi:nth-child(6n+5) svg { stroke: url(#gE); }
.stik-icon-grid .gi:nth-child(6n+6) svg { stroke: url(#gF); }
@media (max-width: 860px) {
  .sticky-row { grid-template-columns: 1fr; gap: 34px; }
  .sticky-left { position: static; top: auto; padding-bottom: 0; }
}

/* ---- dark closing region: CTA + brandmark + footer share one ink ground ---- */
.panel.cta-band { min-height: auto; padding: 110px 0 24px; }
.cta-row { display: flex; align-items: center; justify-content: space-between; gap: 56px; width: 100%; }
.cta-row h2 { margin: 0; font-size: clamp(1.8rem, 3.4vw, 3rem); }
.cta-row .btn { flex: 0 0 auto; }
@media (max-width: 760px) { .cta-row { flex-direction: column; align-items: flex-start; gap: 28px; } }
.panel.brand-band { min-height: auto; padding: 24px 0 44px; }
.panel.cta-band + .panel.brand-band { margin-top: 0; }   /* no gap between CTA and brandmark */
.brand-outline { width: 100%; max-width: var(--maxw); height: auto; display: block; margin: 0 auto; opacity: .8;
  -webkit-mask-image: linear-gradient(to bottom, #000 52%, transparent 100%);
          mask-image: linear-gradient(to bottom, #000 52%, transparent 100%); }

/* ---- status chips (filled, no border) ---- */
.badge { display: inline-block; font-family: ui-monospace, monospace; font-size: 10px; letter-spacing: .12em; text-transform: uppercase; padding: 3px 9px; margin-bottom: 12px; background: var(--faint); color: var(--ink); }
.badge.live { background: var(--ink); color: var(--paper); }
.panel.dark .badge { background: #2a2a2a; color: #fff; }
.panel.dark .badge.live { background: #fff; color: #000; }

/* ---- form fields (filled, no border) ---- */
.field { background: var(--faint); height: 54px; display: flex; align-items: center; padding: 0 16px; color: var(--muted); margin: 12px 0; font-size: .92rem; border-radius: 12px; transition: background .25s ease; }
.field:hover { background: #E7E3DC; }

/* ---- live / in-development auto-advancing accordion ---- */
.acc { margin-top: 40px; }
/* tabs: a full-content-width row of white secondary buttons (like the hero button), one line, no wrap, no icon, no badge */
.acc-tabs { display: flex; flex-wrap: nowrap; gap: 8px; margin-bottom: 16px; }
.acc-tab { flex: 1 1 0; min-width: 0; position: relative; overflow: hidden; isolation: isolate; display: flex; align-items: center; justify-content: center; background: #F1F0EE; border: 0; border-radius: 14px; padding: 14px 12px; cursor: pointer; }
.acc-tab .acc-label { position: relative; z-index: 1; color: #ffffff; mix-blend-mode: difference; font-family: "Google Sans","Roboto",sans-serif; font-weight: 300; font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; white-space: nowrap; }
.acc-fill { position: absolute; inset: 0; width: 0; background: #000000; z-index: 0; }   /* black progress sweep; label inverts over it via blend */
/* full-width graphic stage: a different graphic per panel, text left, badge + button on the bottom */
.acc-stage { position: relative; overflow: hidden; border-radius: 22px; height: 520px; background: #0c0e10; color: #fff; }
.acc-panels { position: relative; height: 100%; }
.acc-panel { display: none; position: relative; overflow: hidden; height: 100%; }
.acc-panel.active { display: flex; flex-direction: column; height: 100%; padding: 44px 48px; box-sizing: border-box; }
.acc-panel .acc-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .5; z-index: 0; }
.acc-panel::after { content: ""; position: absolute; inset: 0; z-index: 0; background: linear-gradient(90deg, rgba(10,12,14,.92), rgba(10,12,14,.5) 55%, rgba(10,12,14,.12)); }
.acc-panel .p-badges { position: relative; z-index: 1; display: flex; gap: 8px; margin: 0 0 auto; }   /* badge top-left, content pushed to bottom */
.acc-panel .p-top { position: relative; z-index: 1; max-width: 52ch; }   /* text + button pushed to the bottom */
.acc-panel h3 { color: #fff; margin: 0 0 14px; font-size: clamp(1.6rem, 3vw, 2.6rem); line-height: 1.05; }
.acc-panel p { margin: 0; max-width: 52ch; color: rgba(255,255,255,.82); line-height: 1.6; font-size: 1.05rem; }
.acc-panel .p-foot { position: relative; z-index: 1; padding-top: 22px; }
.acc-panel .badge { background: rgba(255,255,255,.16); color: #fff; }
.acc-panel .badge.live { background: #fff; color: #000; }
.acc-panel .badge.build { background: #b98a3c; color: #fff; }
.acc-stage .btn.solid .bt-txt { background: #fff; color: #000; }
.acc-stage .btn.solid .bt-ico { background: #e0dccf; color: #000; }
.acc-stage .btn.solid:hover .bt-txt, .acc-stage .btn.solid:hover .bt-ico { background: #dcd8d0; color: #000; }
@media (max-width: 700px) { .acc-stage { height: 460px; } .acc-panel.active { padding: 30px 24px; } .acc-tab .acc-label { font-size: .56rem; letter-spacing: .02em; } }
.field.area { height: 150px; align-items: flex-start; padding-top: 16px; }

/* ---- stats (no borders) ---- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 44px; width: 100%; margin-top: 52px; }
@media (max-width: 720px) { .stats { grid-template-columns: repeat(2, 1fr); gap: 32px; } }
.stat .big { font-family: var(--title), sans-serif; font-weight: var(--title-weight); font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1; }
.stat .lbl { color: var(--muted); font-size: .9rem; margin-top: 10px; }

/* ---- inline flow text (no boxes) ---- */
.flow { font-family: ui-monospace, monospace; letter-spacing: .05em; font-size: .95rem; color: var(--muted); margin: 6px 0 0; }

/* ---- footer (dark block, no borders) ---- */
.wf-foot { background: var(--ink); color: var(--paper); padding: 96px 0 40px; }
.wf-foot .wrap { display: block; }
.foot-cols { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 44px; }
@media (max-width: 720px) { .foot-cols { grid-template-columns: 1fr; gap: 30px; } }
.wf-foot h4 { font-family: ui-monospace, monospace; font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: #8f8e89; margin: 0 0 16px; }
.wf-foot ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 11px; font-size: .95rem; align-items: flex-start; }
.wf-foot .foot-mark { width: 230px; max-width: 72%; height: auto; display: block; margin-bottom: 20px; }
.wf-foot .fine { color: #8f8e89; font-size: .8rem; margin-top: 0; line-height: 1.7; max-width: 42ch; }
.wf-foot .foot-bar { display: flex; justify-content: space-between; align-items: center; gap: 20px; margin-top: 60px; font-family: ui-monospace, monospace; font-size: 11px; letter-spacing: .06em; color: #6f6e6a; }
.wf-foot .foot-legal-links { display: flex; gap: 20px; }
@media (max-width: 560px) { .wf-foot .foot-bar { flex-direction: column; align-items: flex-start; gap: 12px; } }

/* ---- bento grid: mixed graphic / text / interactive cells ---- */
.bento { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 450px; gap: 16px;
  grid-template-areas: "a a a" "d e e" "f g h" "i i j"; }
.bento .ga { grid-area: a; }
.bento .gd { grid-area: d; } .bento .ge { grid-area: e; } .bento .gf { grid-area: f; }
.bento .gg { grid-area: g; } .bento .gh { grid-area: h; } .bento .gi2 { grid-area: i; } .bento .gj { grid-area: j; }
.bento-cell { position: relative; overflow: hidden; border-radius: 18px; background: var(--faint); padding: 26px; display: flex; flex-direction: column; }
.bento-cell.dark { background: var(--ink); color: #ffffff; }
.bento-cell.span2 { grid-column: span 2; }
.bento-cell.rows2 { grid-row: span 2; }
.bento-cell h3 { margin: 0 0 10px; }
.bento-cell p { margin: 0; color: var(--muted); font-size: .92rem; line-height: 1.5; }
.bento-cell.dark p { color: #b7b6b1; }
@media (max-width: 860px) { .bento { grid-template-columns: 1fr; grid-auto-rows: auto; grid-template-areas: none; } .bento-cell { grid-area: auto !important; min-height: 220px; } }

.bento-graphic { color: #fff; }
.bento-graphic .bento-img { position: absolute; inset: 0; background-position: center; background-size: cover; background-repeat: no-repeat; background-color: #12110f; }
/* robust 50/50 for the trust top (independent of the .split bento rules) */
.split5050 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; align-items: stretch; width: 100%; }
.split5050 .t5-img { position: relative; overflow: hidden; border-radius: 18px; min-height: 360px; background: #12110f; }
.split5050 .t5-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.split5050 .t5 { background: var(--faint); border-radius: 18px; padding: 40px; display: flex; flex-direction: column; justify-content: center; }
@media (max-width: 860px) { .split5050 { grid-template-columns: 1fr; } .split5050 .t5-img { min-height: 260px; } }
.site-nexuss #trust { margin-top: 0; }   /* no gap above trust (below the sovereign section) */
.bento-graphic .bento-img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.1), rgba(0,0,0,.72)); }
.bento-graphic .bento-cap { position: relative; margin-top: auto; z-index: 1; text-shadow: 0 2px 12px rgba(0,0,0,.6); }
.bento-graphic .bento-cap h3 { color: #fff; }
.bento-graphic .bento-cap p { color: #e7e6e2; }

/* j · compounding memory feeding the agents (dark #0B0B0B, pixel icons) */
.bento-stat { padding: 0; overflow: hidden; }
.mem { flex: 1; display: flex; flex-direction: column; padding: 16px; background: #0B0B0B; color: #fff; font-family: "Outfit", sans-serif; }
.mem-root2 { align-self: center; display: inline-flex; align-items: center; gap: 10px; margin-top: 2px; padding: 9px 16px; border-radius: 15px; background: #151515; border: 1px solid rgba(43,142,229,.5); animation: memRoot 2.6s ease-in-out infinite; }
.mem-brain { display: grid; place-items: center; }
.mem-root2 .mem-fig { font-family: var(--title), sans-serif; font-weight: var(--title-weight); font-size: 1.4rem; color: #fff; line-height: 1; }
.mem-fig i { font-style: normal; font-size: .58rem; color: #8a8a8a; margin-left: 4px; text-transform: lowercase; }
@keyframes memRoot { 0%,100%{ box-shadow: 0 0 0 0 rgba(43,142,229,.4); } 50%{ box-shadow: 0 0 0 11px rgba(43,142,229,0); } }
/* org-chart wires: trunk -> bus -> one drop down each column of agents */
.mem-branch { position: relative; flex: 1; display: flex; flex-direction: column; margin-top: 6px; min-height: 0; }
.mem-wires { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }
.mem-wires path { fill: none; stroke: #2B8EE5; stroke-width: 1.4; stroke-dasharray: 4 5; opacity: .5; animation: ssoDash 1s linear infinite; }
.mem-agents { position: relative; z-index: 1; margin-top: auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px 4px; }
.mem-agent { display: flex; flex-direction: column; align-items: center; gap: 5px; text-align: center; }
.mem-ic { width: 40px; height: 40px; border-radius: 11px; background: #151515; border: 1px solid rgba(255,255,255,.1); display: grid; place-items: center; }
.mem-agent b { font-size: .55rem; font-weight: 600; color: #cbd5e1; letter-spacing: .01em; line-height: 1.1; }
.mem .pix { width: 22px; height: 22px; filter: url(#px); }
.mem-brain .pix { width: 26px; height: 26px; }
.mem-root2 .pix { stroke: url(#gD); }
.mem-agent:nth-child(1) .pix { stroke: url(#gA); }
.mem-agent:nth-child(2) .pix { stroke: url(#gC); }
.mem-agent:nth-child(3) .pix { stroke: url(#gE); }
.mem-agent:nth-child(4) .pix { stroke: url(#gF); }
.mem-agent:nth-child(5) .pix { stroke: url(#gB); }
.mem-agent:nth-child(6) .pix { stroke: url(#gA); }
.mem-agent:nth-child(7) .pix { stroke: url(#gC); }
.mem-agent:nth-child(8) .pix { stroke: url(#gE); }

/* interactive: tabs with a live graphic per tab */
.bento-tabs .tab-btns { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.tab-btn { border: 0; background: rgba(0,0,0,.06); color: var(--ink); border-radius: 999px; padding: 8px 14px; font-size: .76rem; cursor: pointer; font-family: inherit; transition: background .2s, color .2s; }
.tab-btn.active { background: var(--ink); color: #fff; }
.bento-tabs .tab-pane { display: none; }
.bento-tabs .tab-pane.active { display: block; }
.tab-split { display: flex; gap: 20px; align-items: center; }
.tab-txt { flex: 1 1 50%; min-width: 0; }
.tab-txt h3 { margin: 0 0 8px; }
.tab-txt p { color: var(--muted); font-size: .92rem; line-height: 1.5; margin: 0; }
.tab-viz { flex: 0 0 44%; position: relative; height: 190px; border-radius: 14px; overflow: hidden;
  background: linear-gradient(160deg, #eef3f9, #e3eaf2); border: 1px solid rgba(0,0,0,.07); }
@media (max-width: 620px) { .tab-split { flex-direction: column; align-items: stretch; } .tab-viz { flex: none; height: 150px; } }
/* viz · single sign-on */
.viz-sso .sso-links { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; }
.viz-sso .sso-links path { fill: none; stroke: #2B8EE5; stroke-width: 1.4; stroke-dasharray: 4 5; opacity: .5; animation: ssoDash 1s linear infinite; }
@keyframes ssoDash { to { stroke-dashoffset: -18; } }
.viz-sso .sso-core { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); width: 46px; height: 46px; border-radius: 14px; z-index: 3;
  background: linear-gradient(135deg, #2B8EE5, #6D5EF6); display: grid; place-items: center; color: #fff; animation: ssoCore 2.4s ease-in-out infinite; }
.viz-sso .sso-core svg { width: 24px; height: 24px; }
@keyframes ssoCore { 0%,100%{ box-shadow: 0 0 0 0 rgba(43,142,229,.45); } 50%{ box-shadow: 0 0 0 11px rgba(43,142,229,0); } }
.viz-sso .sso-mod { position: absolute; width: 34px; height: 34px; border-radius: 10px; z-index: 2; display: grid; place-items: center; color: #9db4cc;
  background: #fff; border: 1px solid rgba(0,0,0,.1); box-shadow: 0 2px 6px rgba(0,0,0,.06); animation: ssoMod 2.4s ease-in-out infinite; }
.viz-sso .sso-mod svg { width: 16px; height: 16px; }
.viz-sso .sm1 { left: 10%; top: 10%; animation-delay: 0s; } .viz-sso .sm2 { right: 10%; top: 10%; animation-delay: .3s; }
.viz-sso .sm3 { left: 10%; bottom: 10%; animation-delay: .6s; } .viz-sso .sm4 { right: 10%; bottom: 10%; animation-delay: .9s; }
@keyframes ssoMod { 0%,100%{ border-color: rgba(0,0,0,.1); color: #9db4cc; } 50%{ border-color: #2B8EE5; color: #2B8EE5; box-shadow: 0 0 12px rgba(43,142,229,.35); } }
/* viz · persistent shell */
.viz-shell { display: grid; place-items: center; }
.sh-win { width: 84%; height: 78%; border-radius: 12px; overflow: hidden; display: flex; flex-direction: column;
  background: #fff; border: 1px solid rgba(0,0,0,.1); box-shadow: 0 10px 24px rgba(0,0,0,.12); }
.sh-bar { display: flex; align-items: center; gap: 8px; padding: 8px 11px; border-bottom: 1px solid rgba(0,0,0,.08); flex: 0 0 auto; }
.sh-orb { width: 14px; height: 14px; border-radius: 50%; background: radial-gradient(circle at 32% 30%, #a9e0ff, #2B8EE5); animation: shOrb 2s ease-in-out infinite; }
@keyframes shOrb { 0%,100%{ transform: scale(1); box-shadow: 0 0 0 0 rgba(43,142,229,.5); } 50%{ transform: scale(1.16); box-shadow: 0 0 8px 2px rgba(43,142,229,.4); } }
.sh-ttl { color: var(--ink); font-size: .66rem; font-weight: 700; letter-spacing: .14em; }
.sh-bell { margin-left: auto; position: relative; color: var(--muted); }
.sh-bell svg { width: 14px; height: 14px; }
.sh-bell b { position: absolute; top: -2px; right: -2px; width: 6px; height: 6px; border-radius: 50%; background: #F59E0B; animation: shBell 3s ease infinite; }
@keyframes shBell { 0%,60%,100%{ transform: scale(1); } 70%{ transform: scale(1.5); } }
.sh-body { position: relative; flex: 1; }
.sh-screen { position: absolute; inset: 0; display: grid; place-items: center; color: var(--ink); font-family: "Outfit", sans-serif; font-weight: 700; font-size: 1.05rem; letter-spacing: .04em; opacity: 0; }
.viz-shell .ss1 { animation: shScreen 4.5s ease infinite 0s; }
.viz-shell .ss2 { animation: shScreen 4.5s ease infinite 1.5s; }
.viz-shell .ss3 { animation: shScreen 4.5s ease infinite 3s; }
@keyframes shScreen { 0%,2%{ opacity:0; transform: translateY(9px); } 8%,28%{ opacity:1; transform: translateY(0); } 34%,100%{ opacity:0; transform: translateY(-9px); } }
/* viz · governed boundary */
.viz-bound { display: grid; place-items: center; }
.bd-ring { position: absolute; width: 68%; height: 72%; border-radius: 16px; border: 2px dashed rgba(43,142,229,.5); animation: bdRing 2.6s ease-in-out infinite; }
@keyframes bdRing { 0%,100%{ border-color: rgba(43,142,229,.35); } 50%{ border-color: rgba(43,142,229,.8); } }
.bd-lock { position: absolute; top: 12%; left: 50%; transform: translateX(-50%); width: 28px; height: 28px; border-radius: 8px; background: #2B8EE5; display: grid; place-items: center; color: #fff; z-index: 3; }
.bd-lock svg { width: 15px; height: 15px; }
.bd-node { position: absolute; width: 26px; height: 26px; border-radius: 8px; z-index: 2; display: grid; place-items: center;
  background: rgba(34,197,94,.16); border: 1px solid rgba(34,197,94,.5); color: #22C55E; animation: bdNode 2.6s ease-in-out infinite; }
.bd-node svg { width: 14px; height: 14px; }
.bd-node.bn1 { left: 24%; top: 50%; } .bd-node.bn2 { left: 50%; top: 64%; transform: translateX(-50%); animation-delay: .4s; } .bd-node.bn3 { right: 24%; top: 50%; animation-delay: .8s; }
@keyframes bdNode { 0%,100%{ box-shadow: 0 0 0 0 rgba(34,197,94,0); } 50%{ box-shadow: 0 0 10px 1px rgba(34,197,94,.4); } }
.bd-deny { position: absolute; right: 5%; bottom: 7%; width: 26px; height: 26px; border-radius: 8px; z-index: 2; display: grid; place-items: center;
  background: rgba(220,38,38,.16); border: 1px solid rgba(220,38,38,.55); color: #ef4444; animation: bdDeny 2.6s ease-in-out infinite; }
.bd-deny svg { width: 14px; height: 14px; }
@keyframes bdDeny { 0%,100%{ transform: translateX(0); opacity: .65; } 50%{ transform: translateX(4px); opacity: 1; } }

/* interactive: module chips */
.chip-row { display: flex; gap: 8px; flex-wrap: wrap; margin: 4px 0 14px; }
.chip { border: 0; background: rgba(255,255,255,.12); color: #fff; border-radius: 999px; padding: 7px 13px; font-size: .76rem; cursor: pointer; font-family: inherit; transition: background .2s, color .2s; }
.chip.active { background: #fff; color: #000; }
.chip-desc { color: #b7b6b1; font-size: .92rem; margin: 0; }

/* interactive: ambient video cell */
.bento-video { padding: 0; color: #fff; }
.bento-video .bento-vid { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center bottom; }
.bento-video::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.68)); }
.bento-video .bento-cap { position: relative; z-index: 1; margin-top: auto; padding: 26px; text-shadow: 0 2px 12px rgba(0,0,0,.6); }
.bento-video .bento-cap h3 { color: #fff; }
.bento-video .bento-cap p { color: #e7e6e2; }

/* interactive: rotating circular text */
.bento-ring { align-items: center; justify-content: center; }
.ring { position: relative; width: 220px; height: 220px; max-width: 78%; aspect-ratio: 1; }
.ring-svg { width: 100%; height: 100%; animation: ringspin 22s linear infinite; }
.ring-svg text { font-family: ui-monospace, monospace; font-size: 12px; letter-spacing: 2px; fill: currentColor; }
.ring-core { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.ring-core svg { width: 42px; height: 42px; stroke-width: 1.4; }
@keyframes ringspin { to { transform: rotate(360deg); } }

/* e · integrations grid — real app logos on brand-colour tiles, bottom half */
.bento-integrations { color: var(--ink); }
.int-copy { position: relative; z-index: 2; }
.int-copy h3 { margin: 0 0 8px; }
.int-grid { margin-top: auto; display: grid; grid-template-columns: repeat(8, 1fr); gap: 8px; }
.int-tile { aspect-ratio: 1; border-radius: 12px; background: var(--c, #2B8EE5); display: grid; place-items: center; box-shadow: 0 4px 11px rgba(20,16,10,.14); animation: intFloat 6s ease-in-out infinite; }
.int-logo { width: 52%; height: 52%; object-fit: contain; filter: brightness(0) invert(1); }
.int-tile:nth-child(3n) { animation-delay: -1.6s; }
.int-tile:nth-child(4n) { animation-delay: -3.1s; }
.int-tile:nth-child(5n) { animation-delay: -4.6s; }
@keyframes intFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }
@media (max-width: 620px) { .int-grid { grid-template-columns: repeat(6, 1fr); } }

/* i · modules that compound — tabbed card over a nature backdrop */
.bento-modtabs { padding: 0; overflow: hidden; }
.mod-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.bento-modtabs::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(10,14,10,.5), rgba(10,14,10,.3) 42%, rgba(10,14,10,.74)); }
.mod-inner { position: relative; z-index: 2; flex: 1; display: flex; flex-direction: column; padding: 26px; }
.mod-inner h3 { color: #fff; margin: 0 0 14px; text-shadow: 0 2px 12px rgba(0,0,0,.5); }
.bento-modtabs .tab-btns { margin-bottom: 16px; }
.bento-modtabs .mod-panes { margin-top: auto; }
.bento-modtabs .tab-btn { background: rgba(255,255,255,.16); color: #fff; -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); border: 1px solid rgba(255,255,255,.28); }
.bento-modtabs .tab-btn.active { background: #fff; color: #0b0b0b; border-color: #fff; }
.bento-modtabs .tab-pane p { color: rgba(255,255,255,.94); font-size: .95rem; line-height: 1.55; margin: 0; text-shadow: 0 1px 8px rgba(0,0,0,.45); max-width: 64ch; }
.mod-badge { display: inline-block; font-size: .6rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; padding: 3px 8px; border-radius: 999px; margin-bottom: 10px; background: rgba(255,255,255,.22); color: #fff; }
.mod-badge.live { background: #22C55E; color: #06210f; }

/* ===== coded bento diagrams (d stack · f actions · g calendar) ===== */
.bento-cell .bento-p { margin: 12px 0 0; color: var(--muted); font-size: .86rem; line-height: 1.45; }

/* d · layered "sits above your stack" */
.bento-stack h3 { margin: 0 0 4px; }
.bento-stack .stack { flex: 1; display: flex; flex-direction: column; align-items: stretch; justify-content: center; }
.bento-stack .stk { display: flex; align-items: center; justify-content: center; gap: 8px; border-radius: 12px; font-family: "Outfit", sans-serif; font-weight: 700; letter-spacing: .05em; }
.bento-stack .stk-top { align-self: center; padding: 9px 22px; background: #2B8EE5; color: #fff; font-size: .82rem; animation: stkPulse 2.8s ease-in-out infinite; }
.bento-stack .stk-top svg { width: 15px; height: 15px; }
.bento-stack .stk-mid { padding: 15px; background: #0b0b0b; color: #fff; font-size: .95rem; border: 1px solid rgba(43,142,229,.55); animation: stkPulse 2.8s ease-in-out infinite .5s; }
.bento-stack .stk-conn { width: 2px; height: 15px; align-self: center; background: linear-gradient(#2B8EE5, rgba(43,142,229,.15)); }
.bento-stack .stk-tools { display: grid; grid-template-columns: repeat(2, 1fr); gap: 6px; }
.bento-stack .stk-tools span { text-align: center; padding: 9px 6px; border-radius: 9px; background: rgba(0,0,0,.06); font-size: .72rem; color: var(--muted); }
@keyframes stkPulse { 0%,100%{ box-shadow: 0 0 0 0 rgba(43,142,229,0); } 50%{ box-shadow: 0 0 0 4px rgba(43,142,229,.2); } }

/* shared clean auto-demo cursor (calendar + interfaces identical, never pixelated) */
.nex-cursor { position: absolute; z-index: 9; left: 50%; top: 60%; pointer-events: none; color: #111; opacity: 0;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,.4)); transition: left .7s cubic-bezier(.5,0,.2,1), top .7s cubic-bezier(.5,0,.2,1); }
.nex-cursor svg { width: 20px; height: 20px; fill: #fff; }
.nex-cursor.tap { animation: calTap .3s ease; }
.demo .nex-cursor { opacity: 1; }

/* f · real actions — full-card agent interface (light) */
.bento-actions { padding: 0; color: var(--ink); }
.ax { flex: 1; position: relative; display: flex; flex-direction: column; padding: 16px; font-family: "Outfit", sans-serif; }
.ax-head { display: flex; align-items: center; gap: 10px; }
.ax-bot { width: 38px; height: 38px; flex: 0 0 auto; border-radius: 11px; background: linear-gradient(135deg, #4FC3F7, #2B8EE5 52%, #6D5EF6); display: grid; place-items: center; color: #fff; box-shadow: 0 6px 16px rgba(43,142,229,.4); }
.ax-bot svg { width: 21px; height: 21px; }
.ax-id { display: flex; flex-direction: column; line-height: 1.12; }
.ax-name { font-weight: 800; font-size: .95rem; color: var(--ink); letter-spacing: .02em; }
.ax-sub { font-size: .68rem; color: var(--muted); }
.ax-status { margin-left: auto; font-size: .66rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); padding: 4px 9px; border-radius: 999px; background: rgba(0,0,0,.05); transition: color .2s, background .2s; }
.ax-status.run { color: #2B8EE5; background: rgba(43,142,229,.12); }
.ax-status.ok { color: #16A34A; background: rgba(34,197,94,.14); }
.ax-prompt { display: flex; align-items: center; gap: 8px; margin: 14px 0; padding: 8px 8px 8px 14px; border-radius: 12px; background: #fff; border: 1px solid rgba(0,0,0,.1); box-shadow: 0 3px 10px rgba(0,0,0,.05); }
.ax-q { flex: 1; font-size: .84rem; color: #333; }
.ax-run { width: 30px; height: 30px; flex: 0 0 auto; border: 0; border-radius: 9px; background: #2B8EE5; color: #fff; display: grid; place-items: center; cursor: pointer; transition: background .2s, transform .1s; }
.ax-run:hover { background: #1f7bcc; }
.ax-run:active { transform: scale(.92); }
.ax-run svg { width: 16px; height: 16px; }
.ax-list { display: flex; flex-direction: column; gap: 8px; }
.ax-task { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 11px; background: var(--faint); border: 1px solid transparent; transition: background .25s, border-color .25s; }
.ax-task.run { background: rgba(43,142,229,.08); border-color: rgba(43,142,229,.3); }
.ax-task.done { background: rgba(34,197,94,.08); }
.ax-lbl { font-size: .82rem; color: var(--ink); flex: 1; }
.ax-tag { font-size: .6rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); padding: 3px 7px; border-radius: 6px; background: rgba(0,0,0,.05); }
.ax-ic { position: relative; width: 18px; height: 18px; flex: 0 0 auto; border-radius: 50%; border: 1.6px solid rgba(0,0,0,.2); box-sizing: border-box; }
.ax-task.run .ax-ic { border-color: rgba(43,142,229,.3); border-top-color: #2B8EE5; animation: axSpin .8s linear infinite; }
.ax-task.done .ax-ic { border-color: #22C55E; background: #22C55E; animation: none; }
.ax-task.done .ax-ic::after { content: ""; position: absolute; left: 5px; top: 2px; width: 4px; height: 8px; border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(45deg); }
@keyframes axSpin { to { transform: rotate(360deg); } }
.ax-foot { margin-top: auto; padding-top: 12px; }
.ax-msg { font-size: .72rem; color: var(--muted); }
.ax-cursor { top: 60%; left: 52%; }

/* g · interactive calendar */
.bento-cal { padding: 18px; }
.calw { flex: 1; position: relative; display: flex; flex-direction: column; min-height: 0; font-family: "Outfit", sans-serif; }
.cal-head { display: flex; align-items: center; justify-content: space-between; gap: 6px; }
.cal-title { font-weight: 700; font-size: 1.02rem; letter-spacing: .01em; color: var(--ink); white-space: nowrap; }
.cal-title .cal-yr { color: var(--muted); font-weight: 600; }
.cal-nav { display: flex; align-items: center; gap: 4px; }
.cal-btn { display: inline-flex; align-items: center; justify-content: center; height: 26px; min-width: 26px; padding: 0 6px; border: 1px solid rgba(0,0,0,.1); background: #fff; border-radius: 8px; cursor: pointer; color: var(--ink); font-family: inherit; font-size: .74rem; transition: background .18s ease, border-color .18s ease, transform .1s ease; }
.cal-btn:hover { background: #F1EEE8; border-color: rgba(0,0,0,.18); }
.cal-btn:active { transform: scale(.94); }
.cal-btn svg { width: 14px; height: 14px; }
.cal-btn.cal-add { background: #2B8EE5; border-color: #2B8EE5; color: #fff; }
.cal-btn.cal-add:hover { background: #1f7bcc; }
.cal-btn.cal-go { background: #2B8EE5; border-color: #2B8EE5; color: #fff; }
.cal-dow { display: grid; grid-template-columns: repeat(7, 1fr); margin-top: 12px; }
.cal-dow span { text-align: center; font-size: .62rem; font-weight: 700; letter-spacing: .06em; color: var(--muted); text-transform: uppercase; }
.cal-days { display: grid; grid-template-columns: repeat(7, 1fr); grid-auto-rows: 1fr; gap: 2px; margin-top: 4px; flex: 1 1 auto; min-height: 0; }
.cal-day { position: relative; display: flex; flex-direction: column; align-items: center; justify-content: flex-start; padding-top: 3px; border-radius: 7px; font-size: .74rem; color: var(--ink); cursor: pointer; border: 1px solid transparent; transition: background .15s ease, border-color .15s ease, transform .1s ease; }
.cal-day.pad { color: rgba(0,0,0,.22); cursor: default; }
.cal-day:not(.pad):hover { background: #F1EEE8; }
.cal-day.sel { border-color: #2B8EE5; background: rgba(43,142,229,.08); }
.cal-day.today .cal-dnum { background: #2B8EE5; color: #fff; }
.cal-dnum { display: grid; place-items: center; width: 19px; height: 19px; border-radius: 50%; line-height: 1; font-variant-numeric: tabular-nums; }
.cal-dots { display: flex; gap: 2px; margin-top: 2px; height: 5px; }
.cal-dot { width: 5px; height: 5px; border-radius: 50%; }
.cal-dot.k-mtg { background: #2B8EE5; } .cal-dot.k-focus { background: #22C55E; }
.cal-dot.k-review { background: #F59E0B; } .cal-dot.k-travel { background: #8B5CF6; }
/* agenda */
.cal-agenda { flex: 0 0 auto; margin-top: 10px; border-top: 1px solid rgba(0,0,0,.08); padding-top: 8px; max-height: 104px; display: flex; flex-direction: column; }
.cal-ag-head { font-size: .68rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); margin-bottom: 5px; }
.cal-ag-list { display: flex; flex-direction: column; gap: 5px; overflow-y: auto; min-height: 0; }
.cal-ev { display: flex; align-items: center; gap: 8px; padding: 5px 8px; border-radius: 8px; background: rgba(0,0,0,.04); cursor: pointer; transition: background .15s ease, transform .1s ease; }
.cal-ev:hover { background: rgba(43,142,229,.1); }
.cal-ev:active { transform: scale(.98); }
.cal-ev-bar { width: 3px; align-self: stretch; border-radius: 2px; flex: 0 0 auto; }
.cal-ev-bar.k-mtg { background: #2B8EE5; } .cal-ev-bar.k-focus { background: #22C55E; }
.cal-ev-bar.k-review { background: #F59E0B; } .cal-ev-bar.k-travel { background: #8B5CF6; }
.cal-ev-t { font-size: .74rem; font-weight: 600; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cal-ev-time { margin-left: auto; font-size: .66rem; color: var(--muted); font-variant-numeric: tabular-nums; flex: 0 0 auto; }
.cal-ag-empty { font-size: .72rem; color: var(--muted); padding: 4px 2px; }
/* event popover */
.cal-pop { position: absolute; left: 10px; right: 10px; bottom: 10px; z-index: 6; background: #fff; border: 1px solid rgba(0,0,0,.1); border-radius: 12px; padding: 14px 14px 12px; box-shadow: 0 14px 40px rgba(0,0,0,.18); animation: calPop .18s ease; }
@keyframes calPop { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.cal-pop-x, .cal-modal-head .cal-pop-x { position: absolute; top: 8px; right: 8px; width: 22px; height: 22px; border: 0; background: rgba(0,0,0,.05); border-radius: 6px; display: grid; place-items: center; cursor: pointer; color: var(--muted); }
.cal-pop-x:hover { background: rgba(0,0,0,.1); }
.cal-pop-x svg { width: 13px; height: 13px; }
.cal-pop-kind { display: inline-block; font-size: .6rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; padding: 2px 7px; border-radius: 999px; color: #fff; }
.cal-pop-kind.k-mtg { background: #2B8EE5; } .cal-pop-kind.k-focus { background: #22C55E; }
.cal-pop-kind.k-review { background: #F59E0B; } .cal-pop-kind.k-travel { background: #8B5CF6; }
.cal-pop-title { margin: 8px 0 10px; font-size: .98rem; color: var(--ink); line-height: 1.2; }
.cal-pop-row { display: flex; align-items: center; gap: 8px; font-size: .76rem; color: var(--muted); margin-top: 5px; }
.cal-pop-row svg { width: 14px; height: 14px; flex: 0 0 auto; color: #2B8EE5; }
/* new-event modal */
.cal-modal { position: absolute; inset: 0; z-index: 8; background: rgba(20,20,20,.34); -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px); display: flex; align-items: center; justify-content: center; border-radius: 12px; animation: calPop .16s ease; }
.cal-modal[hidden], .cal-pop[hidden] { display: none; }
.cal-modal-card { width: 88%; background: #fff; border-radius: 14px; padding: 14px; box-shadow: 0 20px 50px rgba(0,0,0,.3); }
.cal-modal-head { position: relative; display: flex; align-items: center; font-weight: 700; font-size: .9rem; color: var(--ink); margin-bottom: 12px; }
.cal-f { display: block; margin-bottom: 9px; }
.cal-f span { display: block; font-size: .64rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); margin-bottom: 3px; }
.cal-f input { width: 100%; box-sizing: border-box; height: 32px; padding: 0 10px; border: 1px solid rgba(0,0,0,.14); border-radius: 8px; font-family: inherit; font-size: .82rem; color: var(--ink); background: #FBFAF8; }
.cal-modal-foot { display: flex; justify-content: flex-end; gap: 8px; margin-top: 12px; }
.cal-modal-foot .cal-btn { height: 30px; padding: 0 12px; }
/* fake cursor */
.cal-cursor { position: absolute; left: 50%; top: 60%; z-index: 9; pointer-events: none; color: #111; filter: drop-shadow(0 1px 2px rgba(0,0,0,.4)); transition: left .7s cubic-bezier(.5,0,.2,1), top .7s cubic-bezier(.5,0,.2,1); opacity: 0; }
.calw.demo .cal-cursor { opacity: 1; }
.cal-cursor svg { width: 20px; height: 20px; fill: #fff; }
.cal-cursor.tap { animation: calTap .3s ease; }
@keyframes calTap { 50% { transform: scale(.72); } }
.cal-ripple { position: absolute; z-index: 7; width: 12px; height: 12px; margin: -6px; border-radius: 50%; background: rgba(43,142,229,.5); pointer-events: none; animation: calRipple .5s ease-out forwards; }
@keyframes calRipple { from { transform: scale(.4); opacity: .7; } to { transform: scale(3.4); opacity: 0; } }

/* h · human sign-off — animated approval request */
.bento-signoff { padding: 0; color: var(--ink); }
.soi { flex: 1; position: relative; display: flex; flex-direction: column; padding: 16px; font-family: "Outfit", sans-serif; }
.soi-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.soi-title { display: inline-flex; align-items: center; gap: 7px; font-weight: 800; font-size: .95rem; color: var(--ink); }
.soi-title svg { width: 17px; height: 17px; color: #2B8EE5; }
.soi-count { font-size: .66rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: #F59E0B; background: rgba(245,158,11,.14); padding: 4px 9px; border-radius: 999px; }
.soi-count.clear { color: #16A34A; background: rgba(34,197,94,.14); }
.soi-list { display: flex; flex-direction: column; gap: 9px; }
.soi-req { position: relative; display: flex; align-items: center; gap: 10px; padding: 11px; border-radius: 12px; background: var(--faint); border: 1px solid transparent; overflow: hidden; transition: border-color .25s, background .25s, opacity .25s; }
.soi-req.active { border-color: rgba(43,142,229,.35); background: #fff; box-shadow: 0 6px 16px rgba(0,0,0,.06); }
.soi-req.done { opacity: .72; }
.soi-ic { width: 32px; height: 32px; flex: 0 0 auto; border-radius: 9px; background: rgba(43,142,229,.12); color: #2B8EE5; display: grid; place-items: center; }
.soi-req.done.yes .soi-ic { background: rgba(34,197,94,.14); color: #16A34A; }
.soi-req.done.no .soi-ic { background: rgba(220,38,38,.12); color: #DC2626; }
.soi-ic svg { width: 16px; height: 16px; }
.soi-meta { display: flex; flex-direction: column; min-width: 0; flex: 1; }
.soi-h { font-weight: 700; font-size: .8rem; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.soi-d { font-size: .72rem; color: var(--muted); margin-top: 1px; }
.soi-act { display: flex; gap: 6px; flex: 0 0 auto; }
.soi-req.done .soi-act { display: none; }
.soi-btn { width: 30px; height: 30px; border-radius: 8px; border: 1px solid rgba(0,0,0,.12); background: #fff; display: grid; place-items: center; cursor: pointer; color: var(--ink); transition: transform .1s, background .2s; }
.soi-btn svg { width: 15px; height: 15px; }
.soi-btn:active { transform: scale(.9); }
.soi-yes { background: #2B8EE5; border-color: #2B8EE5; color: #fff; }
.soi-yes:hover { background: #1f7bcc; }
.soi-no:hover { background: #f4f2ee; }
.soi-result { position: absolute; right: 12px; font-size: .72rem; font-weight: 700; opacity: 0; transition: opacity .3s; }
.soi-req.done .soi-result { opacity: 1; }
.soi-req.done.yes .soi-result { color: #16A34A; }
.soi-req.done.no .soi-result { color: #DC2626; }
.so-cursor { top: 40%; left: 60%; }

/* keep the dark chips card vertically centred */
.chips-cell { justify-content: center; }

/* decorative bento lucide icons get the pixel + blue-gradient treatment
   (the demo cursors are intentionally excluded — they stay clean and identical) */
.bento-ring .ring-core svg { stroke: url(#gA); filter: url(#px); }
.bento-stack .stk-top svg { stroke: url(#gC); filter: url(#px); }

/* (bento decorative animations, incl. the ring, run regardless of the OS reduced-motion setting) */

/* ---- legal pages (now full-height too) ---- */
.legal-body { max-width: 820px; }
.legal-body h2 { font-size: 1.4rem; margin-top: 1.6em; }

/* ---- Lucide icons (monochrome, inherit currentColor) ---- */
.ico, [data-lucide], svg.lucide { display: inline-block; vertical-align: -0.14em; stroke-width: 2; }
.btn svg.lucide, .btn [data-lucide] { width: 16px; height: 16px; }

/* ---- 15.Group (site-15) ---- */
.site-15 .panel { padding: 9vh 0; min-height: 100vh; }
.site-15 .panel + .panel { margin-top: 0; }
.site-15 .badge.live { background: #FBA412; color: #1a1a1a; }
.site-15 .flow i { color: #FBA412; }
/* companies: two sides, each a graphic tile + a content card; hovering either zooms the graphic */
.co-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 40px; }
@media (max-width: 760px) { .co-grid { grid-template-columns: 1fr; } }
.co { display: flex; flex-direction: column; gap: 16px; }
.co-top { display: block; overflow: hidden; border-radius: 18px; aspect-ratio: 16 / 11; }
.co-top img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.co:hover .co-top img { transform: scale(1.06); }
.co-card { background: var(--faint); border-radius: 18px; padding: 30px; transition: background .3s ease; }
.co:hover .co-card { background: #E7E3DC; }
.co-card h3 { font-size: 1.7rem; margin: 0 0 10px; }
.co-card p { color: var(--muted); margin: 0 0 18px; }
/* leadership cards: photo + linkedin */
.lead-photo { aspect-ratio: 1 / 1; border-radius: 14px; overflow: hidden; margin-bottom: 16px; background: #E7E3DC; }
.lead-photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.item:hover .lead-photo img { transform: scale(1.05); }
.lead-li { color: #0a66c2; gap: 7px; font-size: .72rem; margin-top: 14px; }
.lead-li svg { width: 16px; height: 16px; }
.lead-li:hover { color: #FBA412; }
.flow svg.lucide, .flow [data-lucide] { width: 15px; height: 15px; vertical-align: -2px; }
.wf-foot svg.lucide, .wf-foot [data-lucide] { width: 14px; height: 14px; }
.wf-nav svg.lucide, .wf-nav [data-lucide] { width: 14px; height: 14px; }

/* brandmark (15.Group + Nemoss footers) */
.wf-foot .brandmark { font-family: var(--title), sans-serif; font-weight: var(--title-weight); font-size: 1.7rem; letter-spacing: -.01em; margin-bottom: 16px; color: #fff; }

/* ---- 15.Group : warm editorial treatment, deliberately unlike Nexuss ---- */
body.site-15 { overflow-x: clip; background: #FAF7F1; }
.site-15 .wrap { padding: 0 24px; }
.site-15 .item { background: #F2EADD; }
.site-15 .co-card { background: #F2EADD; }
.site-15 .co:hover .co-card { background: #EADFCC; }
.site-15 .field { background: #F2EADD; }

/* hero: rounded graphic card, editorial serif over a warm scrim */
.site-15 #hero { padding: 0; min-height: 100vh; overflow: visible; }
.site-15 .hero-15-card { position: relative; overflow: hidden; border-radius: 36px; color: #fff;
  margin: 98px 20px 10px; min-height: calc(100vh - 128px); display: flex; align-items: center; transform-origin: center; }
.site-15 .hero-15-bg { position: absolute; inset: 0; z-index: 0; }
.site-15 .hero-15-bg img { width: 100%; height: 100%; object-fit: cover; display: block; }
.site-15 .hero-15-bg::after { content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(24,18,10,.9) 0%, rgba(24,18,10,.55) 46%, rgba(24,18,10,.12) 100%); }
.site-15 .hero-15-inner { position: relative; z-index: 1; max-width: 780px; padding: 7vh 5vw; }
.site-15 #hero h1.display { color: #fff; font-size: clamp(2.2rem, 5vw, 4.2rem); }
.site-15 #hero .lead { color: rgba(255,255,255,.85); max-width: 60ch; margin-top: 22px; }

/* ---- staged entry — the Web Animations API in app.js drives the motion.
   These are only the pre-animation HIDDEN states, applied while body has .intro-go.
   If JS is off or Web Animations is unsupported, app.js never adds (or removes)
   .intro-go and everything shows normally (the hero is never left blank). ---- */
.site-15.intro-go .hero-15-card { opacity: 0; }
.site-15.intro-go .glass-nav { opacity: 0; }
.site-15.intro-go .gn-links li, .site-15.intro-go .gn-cta { opacity: 0; }
.site-15.intro-go .hero-15-inner > .btn-row { opacity: 0; }
.site-15 .hero-15-inner .w { display: inline; }   /* per-word spans — inline so wrapping matches the static text */

/* element-by-element entry reveal for every section (unblur + slide + expand) */
html.js .site-15 .rv { opacity: 0; transform: translateY(30px) scale(.97); filter: blur(6px);
  transition: opacity .6s ease, transform .65s cubic-bezier(.2,.7,.2,1), filter .6s ease; }
html.js .site-15 .rv.rv-in { opacity: 1; transform: none; filter: blur(0); }
@media (prefers-reduced-motion: reduce) { html.js .site-15 .rv { opacity: 1; transform: none; filter: none; } }

/* ---- 15.Group nav · glassmorphism bar (pill scrapped) ---- */
.site-15 .wf-nav { padding: 14px 12px; background: transparent; }
.site-15 .wf-nav.scrolled { background: transparent; }
.site-15 .glass-nav { width: fit-content; max-width: calc(100% - 24px); margin: 0 auto; display: flex; align-items: center; gap: 8px;
  padding: 8px 8px 8px 12px; border-radius: 18px;
  background: rgba(250,247,241,.5); border: 1px solid rgba(255,255,255,.55);
  -webkit-backdrop-filter: blur(18px) saturate(1.6); backdrop-filter: blur(18px) saturate(1.6);
  box-shadow: 0 10px 34px rgba(20,16,10,.14); }
.site-15 .gn-logo { flex: 0 0 auto; width: 38px; height: 38px; border-radius: 11px; overflow: hidden; display: flex; align-items: center; justify-content: center; background: #CE8611; }
.site-15 .gn-logo img { width: 62%; height: 62%; object-fit: contain; }
.site-15 .gn-links { list-style: none; display: flex; align-items: center; gap: 1px; margin: 0; padding: 0; flex-wrap: nowrap; }
.site-15 .gn-links a { display: block; padding: 9px 13px; border-radius: 11px; color: #1a1a1a; font-size: .8rem; letter-spacing: .01em; white-space: nowrap; transition: background .2s ease, color .2s ease; }
.site-15 .gn-links a:hover { background: rgba(255,255,255,.6); }
.site-15 .gn-links a.current { background: rgba(26,26,26,.92); color: #fff; }
.site-15 .gn-cta { flex: 0 0 auto; display: inline-flex; align-items: center; gap: 8px; padding: 10px 18px; border-radius: 11px; background: #FBA412; color: #1a1a1a; font-size: .74rem; text-transform: uppercase; letter-spacing: .07em; transition: filter .25s ease; }
.site-15 .gn-cta:hover { filter: brightness(1.08); }
@media (max-width: 720px) { .site-15 .gn-links { display: none; } }

/* ============================================================
   15.Group — interactive / moving / accent layer (amber #FBA412)
   ============================================================ */
.site-15 { --accent: #FBA412; --accent-deep: #e0940a; }

/* hero: full-bleed card behind the floating nav (content is what's width-capped, via .hero-15-inner) */
.site-15 .hero-15-card { margin: 12px; min-height: calc(100vh - 24px); }
.site-15 .hero-15-bg { z-index: 0; }
.site-15 .hero-15-inner { z-index: 2; }

/* nav logo: favicon shown as-is (no filter), filling the circle */
.site-15 .nav-logo img { filter: none; width: 100%; height: 100%; object-fit: cover; }

/* second section: 50/50 cards spanning the hero-card width, full viewport height */
.site-15 .g15-duo { padding: 0; min-height: 100vh; }
.site-15 .duo { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 12px 12px; height: 100vh; box-sizing: border-box; }
.site-15 .duo-card { border-radius: 36px; overflow: hidden; position: relative; }
/* left card: centred, big bold title with a pill image, a down-arrow, paragraph, then a centred button */
.site-15 .duo-text { background: #F2EADD; padding: 6vh clamp(28px, 4vw, 64px); display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; }
.site-15 .duo-title { font-family: var(--title), serif; font-weight: 700; font-size: clamp(1.9rem, 3.4vw, 3.2rem); line-height: 1.12; letter-spacing: -0.01em; margin: 0; }
.site-15 .title-pill { display: inline-block; width: clamp(70px, 9vw, 116px); height: clamp(34px, 3.6vw, 52px); border-radius: 999px; overflow: hidden; vertical-align: middle; margin: 0 .14em; box-shadow: 0 6px 18px rgba(0,0,0,.16); }
.site-15 .title-pill img { width: 100%; height: 100%; object-fit: cover; display: block; }
.site-15 .duo-rule { width: 2px; height: 58px; margin: 26px 0; border-radius: 2px; background: linear-gradient(180deg, var(--accent), rgba(251,164,18,.12)); }
.site-15 .duo-text .lead { max-width: 46ch; margin: 0 auto; }
.site-15 .duo-text .btn-row { margin-top: 32px; justify-content: center; }

/* right card: paragraph top-left, button top-right, keyword pills centred over the graphic */
.site-15 .duo-graphic img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.site-15 .duo-graphic::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(18,14,8,.55) 0%, rgba(18,14,8,.32) 45%, rgba(18,14,8,.6) 100%); }
.site-15 .duo-g-text { position: absolute; z-index: 1; top: clamp(24px,3vw,40px); left: clamp(24px,3vw,40px); max-width: 46%; margin: 0; color: #fff; font-size: .98rem; line-height: 1.5; text-shadow: 0 2px 12px rgba(0,0,0,.5); }
.site-15 .duo-g-btn { position: absolute; z-index: 2; top: clamp(20px,2.6vw,34px); right: clamp(20px,2.6vw,34px); }
/* keyword tags packed tightly into a filled circle (centre + two rings) */
/* keyword pills: a centred, non-overlapping bento grid over the graphic */
.site-15 .duo-keys { position: absolute; inset: 0; z-index: 1; display: flex; flex-wrap: wrap; align-content: center; align-items: center; justify-content: center; gap: 9px; padding: clamp(24px,5vw,64px); }
.site-15 .duo-keys .keychip { position: static; transform: none; margin: 0; }
.site-15 .keychip { display: inline-flex; align-items: center; gap: 10px; padding: 14px 22px; border-radius: 999px; font-size: 1.05rem; letter-spacing: .01em; color: #111; background: #fff; border: 0; box-shadow: 0 8px 22px rgba(0,0,0,.22); }
.site-15 .keychip svg { width: 22px; height: 22px; color: #111; filter: url(#pixelate); }
.site-15 .keychip.ico-only { width: 58px; height: 58px; padding: 0; justify-content: center; border-radius: 50%; }
.site-15 .keychip.ico-only svg { width: 26px; height: 26px; color: #FBA412; }
@media (max-width: 820px) {
  .site-15 .duo { grid-template-columns: 1fr; height: auto; }
  .site-15 .duo-card { min-height: 60vh; }
}

/* WHAT WE BUILD · light quad of graphic cards, spanning the hero-card width */
.site-15 .g15-quad { padding: 9vh 0; }
.site-15 .quad-head { padding: 0 12px; margin: 0 0 34px; display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; flex-wrap: wrap; }
.site-15 .quad-head h2 { max-width: 20ch; margin: 0; flex: 1 1 460px; }
.site-15 .quad-head .lead { max-width: 46ch; margin: 0; flex: 0 1 380px; }
.site-15 .quad { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; padding: 0 12px; }
.site-15 .quad-col { display: flex; flex-direction: column; gap: 12px; }
.site-15 .quad-tag { font-family: ui-monospace, monospace; font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); padding-left: 6px; }
.site-15 .quad-card { position: relative; border-radius: 28px; overflow: hidden; min-height: clamp(440px, 52vh, 500px);
  display: flex; flex-direction: column; align-items: center; padding: 30px; color: #1a1a1a; }
.site-15 .qc-txt { width: 100%; text-align: left; }
.site-15 .quad-card img { display: none; }   /* muted-yellow gradient cards, no image */
.site-15 .quad .quad-col:nth-child(1) .quad-card { background: linear-gradient(155deg, #F6EDD1, #EDE0B8); }
.site-15 .quad .quad-col:nth-child(2) .quad-card { background: linear-gradient(155deg, #EEDFAC, #E2D090); }
.site-15 .quad .quad-col:nth-child(3) .quad-card { background: linear-gradient(155deg, #E1CB82, #D3BC6C); }
.site-15 .quad .quad-col:nth-child(4) .quad-card { background: linear-gradient(155deg, #CFB45E, #BFA34A); }
.site-15 .qc-top, .site-15 .qc-bot { position: relative; z-index: 1; }
.site-15 .qc-top h3 { color: #1a1a1a; margin: 0; font-size: 1.5rem; }
.site-15 .qc-bot { margin: 9px 0 0; color: #5a4f2e; font-size: .9rem; line-height: 1.45; }
@media (max-width: 900px) { .site-15 .quad { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .site-15 .quad { grid-template-columns: 1fr; } }

/* LEADERSHIP · intro (own full-height section) — massive left-aligned title in a centred 76% container */
.site-15 .g15-lead-intro { min-height: 100vh; padding: 9vh 0; display: flex; align-items: center; }
.site-15 .lead-intro { width: 76%; margin: 0 auto; text-align: left; }
.site-15 .lead-eyebrow { display: block; font-family: ui-monospace, monospace; font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); margin-bottom: 26px; }
.site-15 .lead-big { font-family: var(--title), serif; font-weight: 700; font-size: clamp(2.2rem, 5.6vw, 5.4rem); line-height: 1.08; letter-spacing: -0.015em; margin: 0; }
.site-15 .lead-big .title-pill { width: clamp(96px, 12vw, 180px); height: clamp(48px, 5.6vw, 80px); margin: 0 .12em; box-shadow: 0 8px 22px rgba(0,0,0,.18); }

/* LEADERSHIP · 6-card grid (own full-height section) spanning the hero-card width */
.site-15 .g15-lead-grid { min-height: 100vh; padding: 9vh 0; display: flex; align-items: center; }
.site-15 .lead-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; padding: 0 12px; width: 100%; box-sizing: border-box; }
@media (max-width: 820px) { .site-15 .lead-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .site-15 .lead-grid { grid-template-columns: 1fr; } }
/* leadership pills = the three named firms' logos, filling the pill */
.site-15 .lead-big .title-pill { background: #fff; }
.site-15 .lead-big .title-pill img { object-fit: cover; padding: 0; }
/* scroll-in: word-by-word gray -> black fill (left to right, line by line) + pills scale in */
html.js .site-15 .lead-big .lw { color: #d8d3c9; transition: color .5s ease; }
html.js .site-15 .lead-big .lw.lit { color: #1a1a1a; }
html.js .site-15 .lead-big .title-pill { opacity: 0; transform: scale(.8); transition: opacity .5s ease, transform .5s cubic-bezier(.2,.7,.2,1); }
html.js .site-15 .lead-big .title-pill.lit { opacity: 1; transform: none; }

/* COMPANIES showcase · quad-style, taller cards; graphic + info per company */
.site-15 .g15-co { padding: 9vh 0; }
.site-15 .co2-head { padding: 0 12px; margin: 0 0 34px; display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; flex-wrap: wrap; }
.site-15 .co2-head h2 { max-width: 18ch; margin: 0; flex: 1 1 440px; }
.site-15 .co2-head .lead { max-width: 40ch; margin: 0; flex: 0 1 320px; }
.site-15 .co2 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; padding: 0 12px; }
.site-15 .co2-col { display: flex; flex-direction: column; gap: 12px; }
.site-15 .co2-card { position: relative; border-radius: 28px; overflow: hidden; min-height: clamp(460px, 66vh, 720px); display: flex; flex-direction: column; padding: 28px; }
/* graphic card: body text top-left, serif name bottom-left */
.site-15 .co2-graphic { color: #fff; justify-content: space-between; }
.site-15 .co2-graphic img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.site-15 .co2-graphic::after { content: ""; position: absolute; inset: 0; z-index: 0; background: linear-gradient(180deg, rgba(20,16,10,.45) 0%, rgba(20,16,10,.12) 42%, rgba(20,16,10,.72) 100%); }
.site-15 .co2-graphic .cc-top, .site-15 .co2-graphic .cc-name { position: relative; z-index: 1; }
.site-15 .cc-top { margin: 0; color: rgba(255,255,255,.92); font-size: .96rem; line-height: 1.45; max-width: 22ch; text-shadow: 0 2px 12px rgba(0,0,0,.5); }
.site-15 .cc-name { margin: 0; color: #fff; font-family: var(--title), serif; font-weight: 700; font-size: clamp(2rem, 3vw, 2.8rem); text-shadow: 0 2px 14px rgba(0,0,0,.5); }
/* info card: solid warm, dark text, link pinned bottom */
.site-15 .co2-info { background: #F2EADD; color: var(--ink); }
.site-15 .co2-info h3 { margin: 0 0 14px; font-size: 1.5rem; }
.site-15 .co2-info p { margin: 0 0 auto; color: var(--muted); }
.site-15 .co2-info .btn { margin-top: 22px; align-self: flex-start; }
/* paired hover: hovering either card in a company pair animates both */
.site-15 .co2-pair { display: contents; }
.site-15 .co2-graphic img { transition: transform .55s ease; }
.site-15 .co2-pair:hover .co2-graphic img { transform: scale(1.05); }
.site-15 .co2-info { transition: background .35s ease; }
.site-15 .co2-pair:hover .co2-info { background: #E7DDCB; }
.site-15 .co2-info .btn i { transition: transform .3s ease; }
.site-15 .co2-pair:hover .co2-info .btn { background-position: 100% 50%; filter: brightness(.94); color: #1a1a1a; }
.site-15 .co2-pair:hover .co2-info .btn i { transform: translateX(4px); }
@media (max-width: 900px) { .site-15 .co2 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .site-15 .co2 { grid-template-columns: 1fr; } }

/* THREE-TIER STRUCTURE · triforce of company triangles, empty centre, edge type-labels */
/* THREE-TIER STRUCTURE · 50/50 section — text left, interactive triforce right */
.site-15 .g15-tri3 { padding: 0; min-height: 100vh; }
.site-15 .tri3-split { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 12px 12px; height: 100vh; box-sizing: border-box; }
.site-15 .tri3-card { border-radius: 36px; overflow: hidden; position: relative; }
.site-15 .tri3-text { background: linear-gradient(rgba(242,234,221,.82), rgba(242,234,221,.9)), url("assets/about-15.webp") center / cover no-repeat; padding: 9vh clamp(28px,4vw,64px); display: flex; flex-direction: column; justify-content: flex-start; }
.site-15 .tri3-text .lead { margin: 0; max-width: 42ch; }
.site-15 .tri3-graphic { background: #F6F1E8; display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-start; padding: 9vh clamp(20px,3vw,48px) clamp(20px,3vw,48px); gap: clamp(14px,2.5vh,28px); }
.site-15 .tri3-graphic h2 { margin: 0; text-align: left; }
/* fit box: takes the space under the h2 and centres the (fixed-size) triangle stage,
   which JS scales with transform to fit both width and height on every device */
.site-15 .tri-fit { flex: 1 1 auto; min-height: 0; width: 100%; display: flex; align-items: center; justify-content: center; overflow: hidden; }

/* each triangle = ONE svg path: stroke is the 2px border, fill is amber grain on hover (fill matches outline exactly) */
.site-15 .tri-stage { position: relative; width: 600px; aspect-ratio: 100 / 86.6; flex: 0 0 auto; transform-origin: center center; will-change: transform; }
.site-15 .tri-svg { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.site-15 .tri-svg .tri { fill: url(#grain); fill-opacity: 0; stroke: #ada69c; stroke-width: 2; vector-effect: non-scaling-stroke;
  stroke-linejoin: round; pointer-events: all; cursor: default; transition: fill-opacity .4s ease; }
.site-15 .tri-svg .tri.hot { fill-opacity: 1; }
/* company text overlay (unclipped, never cut off) at each triangle's lower-left */
.site-15 .tri-txt { position: absolute; z-index: 4; pointer-events: none; display: flex; flex-direction: column; max-width: 30%; }
.site-15 .tx-parent { left: 34%; bottom: 56%; }
.site-15 .tx-nexuss { left: 10%; bottom: 9%; }
.site-15 .tx-nemoss { left: 60%; bottom: 9%; }
.site-15 .t3-name { font-family: var(--title), serif; font-weight: 700; font-size: 22px; color: var(--ink); line-height: 1; transition: transform .35s ease; }
.site-15 .t3-sum { max-height: 0; opacity: 0; overflow: hidden; margin-top: 0; font-size: 13px; line-height: 1.35; color: #3a3320;
  transition: max-height .4s ease, opacity .35s ease, margin-top .4s ease; }
.site-15 .tri-txt.hot .t3-name { transform: translateY(-3px); font-style: italic; }
.site-15 .tri-txt.hot .t3-sum { max-height: 5em; opacity: 1; margin-top: 7px; }
/* type tags in the empty centre space */
.site-15 .tri-tags { position: absolute; inset: 0; z-index: 5; pointer-events: none; }
.site-15 .tri-tags .quad-tag { position: absolute; transform: translate(-50%,-50%); padding-left: 0; white-space: nowrap; font-size: 13px; }
.site-15 .tt-parent { left: 50%; top: 53%; }
.site-15 .tri-tags .tt-nexuss { left: 37%; top: 73%; transform: translate(-50%,-50%) rotate(60deg); }
.site-15 .tri-tags .tt-nemoss { left: 63%; top: 73%; transform: translate(-50%,-50%) rotate(-60deg); }
@media (max-width: 820px) { .site-15 .tri3-split { grid-template-columns: 1fr; height: auto; } .site-15 .tri3-card { min-height: 68vh; } }

/* CONTACT / CTA · light rounded 50/50 — big title + subtext + button (left), form (right) */
.site-15 .g15-cta { padding: 0; min-height: 50vh; }
.site-15 .cta-split { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 12px 12px; align-items: stretch; box-sizing: border-box; }
.site-15 .cta-card { min-height: calc(50vh - 24px); background: #F2EADD; color: #1a1a1a; border-radius: 36px; overflow: hidden;
  padding: clamp(28px,4vw,56px); display: flex; flex-direction: column; justify-content: center; box-sizing: border-box; }
.site-15 .cta-title { color: #1a1a1a; margin: 0 0 20px; font-size: clamp(2.4rem, 4.4vw, 4rem); line-height: 1.0; }
.site-15 .cta-sum { text-align: left; margin: 0; max-width: 40ch; color: var(--muted); font-size: 1.1rem; line-height: 1.5; }
.site-15 .cta-form { display: flex; flex-direction: column; }
.site-15 .cta-formcard .btn { margin-top: 20px; align-self: flex-start; }
.site-15 .cta-form .field { background: #fffdf9; color: var(--muted); }
@media (max-width: 820px) { .site-15 .cta-split { grid-template-columns: 1fr; } }

/* FOOTER · rounded LIGHT card (hero-container width), 30vh, 4 columns */
.site-15 .wf-foot { background: transparent; padding: 0 0 12px; }
.site-15 .foot-card { margin: 12px; background: #F2EADD; border-radius: 36px; min-height: 30vh; padding: clamp(28px,4vw,56px); display: flex; align-items: stretch; }
.site-15 .foot-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; width: 100%; }
.site-15 .foot-col { display: flex; flex-direction: column; align-items: flex-start; }
/* logo: amber, filling the card height (via alpha mask of the 15 logo) */
.site-15 .foot-logo { display: block; height: 100%; aspect-ratio: 1 / 1; width: auto; background-color: #FBA412;
  -webkit-mask: url("15logo.webp") left center / contain no-repeat; mask: url("15logo.webp") left center / contain no-repeat; }
.site-15 .foot-col h4 { color: #6a6a66; }
.site-15 .foot-col .fine { color: #6a6a66; margin: 0 0 20px; }
.site-15 .foot-col .btn { align-self: flex-start; }
/* light-footer links: black text + dark underline/fill, invert on hover (full :not chain to beat the base white) */
.site-15 .wf-foot a:not(.btn):not(.card-t):not(.stik-card) { color: #1a1a1a; }
.site-15 .wf-foot a:not(.btn):not(.card-t):not(.stik-card)::before, .site-15 .wf-foot a:not(.btn):not(.card-t):not(.stik-card)::after { background: #1a1a1a; }
.site-15 .wf-foot a:not(.btn):not(.card-t):not(.stik-card):hover { color: #FAF7F1; }
@media (max-width: 760px) { .site-15 .foot-4 { grid-template-columns: 1fr 1fr; } }

/* LEADERSHIP team grid · A A B C / D E F G  (A = text spanning 2, B-G = 1:1 member cards) */
.site-15 .g15-team { padding: 9vh 0; }
.site-15 .lead-grid2 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; padding: 0 12px; width: 100%; box-sizing: border-box; }
.site-15 .lg-text { grid-column: span 2; background: #F2EADD; border-radius: 24px; padding: clamp(28px,3vw,48px); display: flex; flex-direction: column; justify-content: center; }
.site-15 .lg-text h2 { margin: 0 0 16px; }
.site-15 .lg-text .lead { margin: 0; }
.site-15 .lg-card { position: relative; aspect-ratio: 1; border-radius: 24px; overflow: hidden; background: #E7E3DC; }
.site-15 .lg-card img, .site-15 .lg-card video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.site-15 .lg-card:hover img, .site-15 .lg-card:hover video { transform: scale(1.05); }
.site-15 .lg-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,16,10,0) 45%, rgba(20,16,10,.74)); }
.site-15 .lg-info { position: absolute; z-index: 1; left: 0; right: 0; bottom: 0; padding: 20px; color: #fff; }
.site-15 .lg-info h3 { color: #fff; margin: 0; font-size: 1.15rem; }
.site-15 .lg-info p { color: rgba(255,255,255,.82); margin: 3px 0 0; font-size: .82rem; }
.site-15 .lg-info .lead-li { display: inline-flex; align-items: center; justify-content: center; margin-top: 12px; width: 34px; height: 34px; padding: 0; border-radius: 9px; background: #0A66C2; color: #fff; -webkit-backdrop-filter: none; backdrop-filter: none; transition: background .2s ease, transform .15s ease; }
.site-15 .lg-info .lead-li:hover { background: #08528f; color: #fff; filter: none; transform: translateY(-2px); }
.site-15 .lg-info .lead-li svg { width: 17px; height: 17px; flex: 0 0 auto; }
/* initials cards for members without a photo */
.site-15 .lg-alt { background: linear-gradient(155deg, var(--lc, #C08A2E), rgba(20,14,6,.55)); }
.site-15 .lg-mono { position: absolute; inset: 0; display: grid; place-items: center; font-family: var(--title), serif; font-weight: 700; font-size: clamp(3rem, 6vw, 4.4rem); color: rgba(255,255,255,.9); z-index: 0; }
/* compact "join us" CTA card — one square cell so the 4-col grid closes cleanly */
.site-15 .lg-wide { grid-column: span 1; aspect-ratio: 1; border-radius: 24px; background: linear-gradient(155deg, #F4ECDE, #E7D9BE); padding: clamp(18px,1.8vw,26px); display: flex; flex-direction: column; justify-content: flex-end; }
.site-15 .lg-wide-eyebrow { font-family: ui-monospace, monospace; font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--accent-deep); }
.site-15 .lg-wide h3 { margin: 8px 0 6px; font-size: clamp(1.25rem, 1.8vw, 1.6rem); color: #1a1a1a; max-width: 14ch; line-height: 1.12; }
.site-15 .lg-wide p { margin: 0 0 16px; color: #5a4f2e; font-size: .85rem; line-height: 1.45; max-width: 30ch; }
.site-15 .lg-wide .btn { align-self: flex-start; }
@media (max-width: 820px) {
  .site-15 .lead-grid2 { grid-template-columns: repeat(2, 1fr); }
  .site-15 .lg-text, .site-15 .lg-wide { grid-column: 1 / -1; }
}
@media (max-width: 520px) { .site-15 .lead-grid2 { grid-template-columns: 1fr; } .site-15 .lg-card { aspect-ratio: 4 / 3; } }

/* ROADMAP · light triple cards, taller; big amber number on top, content pinned to the bottom */
.site-15 .g15-road { padding: 9vh 0; }
.site-15 .road-head { padding: 0 12px; margin: 0 0 34px; display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; flex-wrap: wrap; }
.site-15 .road-head h2 { max-width: 22ch; margin: 0; flex: 1 1 460px; }
.site-15 .road-head .lead { max-width: 32ch; margin: 0; flex: 0 1 300px; }
.site-15 .roads { display: grid; grid-template-columns: 1fr; gap: 12px; padding: 0 12px; }
.site-15 .road-card { display: flex; flex-direction: row; align-items: stretch; gap: clamp(20px,3vw,44px); min-height: clamp(220px, 28vh, 320px); padding: clamp(20px,2.5vw,34px); border-radius: 28px; background: transparent; border: 1px solid rgba(0,0,0,.13); transition: background .35s ease, border-color .35s ease; }
.site-15 .road-card:hover { background: #F2EADD; border-color: transparent; }
.site-15 .road-text { flex: 1; display: flex; flex-direction: column; justify-content: center; text-align: left; min-width: 0; }
.site-15 .road-text .badge { align-self: flex-start; margin-bottom: 14px; }
.site-15 .road-text h3 { margin: 0; font-size: clamp(1.7rem, 3vw, 2.8rem); line-height: 1.05; }
.site-15 .road-desc { max-height: 0; opacity: 0; overflow: hidden; margin: 0; color: var(--muted); max-width: 60ch;
  transition: max-height .45s ease, opacity .4s ease, margin-top .45s ease; }
.site-15 .road-card:hover .road-desc { max-height: 9em; opacity: 1; margin-top: 14px; }
.site-15 .road-graphic { flex: 0 0 clamp(150px, 22vw, 300px); border-radius: 20px; overflow: hidden; }
.site-15 .road-graphic img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 720px) { .site-15 .road-card { flex-direction: column; } .site-15 .road-graphic { flex: 0 0 180px; } }

/* companies cards: whole card clickable (JS navigates) */
.site-15 .co2-card { cursor: pointer; }

/* STATEMENT · full-bleed rounded image band (same container size as the hero card) */
.site-15 .g15-statement { padding: 0; }
.site-15 .stmt-card { position: relative; margin: 12px; min-height: calc(100vh - 24px); border-radius: 36px; overflow: hidden;
  display: flex; align-items: center; color: #fff; }
.site-15 .stmt-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.site-15 .stmt-card::after { content: ""; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(180deg, rgba(20,16,10,.55), rgba(20,16,10,.4) 50%, rgba(20,16,10,.66)); }
/* formatted the same as the leadership intro: 76% centred container, left-aligned */
.site-15 .stmt-inner { position: relative; z-index: 1; width: 76%; margin: 0 auto; text-align: left; }
.site-15 .stmt-inner .lead-eyebrow { color: rgba(255,255,255,.72); }
.site-15 .stmt-inner .lead-big { color: #fff; }

/* WHY 15 · four 1:1 pillar cards, transparent until hover (yellow grainy gradient) */
.site-15 .g15-why { padding: 9vh 0; }
.site-15 .why-head { padding: 0 12px; margin: 0 0 34px; }
.site-15 .why-head h2 { max-width: 24ch; }
.site-15 .pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; padding: 0 12px; }
.site-15 .pillar { position: relative; min-height: clamp(440px, 52vh, 500px); border-radius: 24px; padding: 30px; overflow: hidden;
  display: flex; flex-direction: column; align-items: center; border: 0; }
.site-15 .pillar h3, .site-15 .pillar p { width: 100%; text-align: left; }
/* muted-yellow gradients, light -> dark across the four cards */
.site-15 .pillars .pillar:nth-child(1) { background: linear-gradient(155deg, #F6EDD1, #EDE0B8); }
.site-15 .pillars .pillar:nth-child(2) { background: linear-gradient(155deg, #EEDFAC, #E2D090); }
.site-15 .pillars .pillar:nth-child(3) { background: linear-gradient(155deg, #E1CB82, #D3BC6C); }
.site-15 .pillars .pillar:nth-child(4) { background: linear-gradient(155deg, #CFB45E, #BFA34A); }
.site-15 .pillar h3 { margin: 0; font-size: 1.5rem; color: #1a1a1a; }
.site-15 .pillar p { margin: 9px 0 0; color: #5a4f2e; font-size: .9rem; line-height: 1.45; }

/* ===== animated card icons (quad + pillars) — big, centred section graphics ===== */
/* icon/video area grows to fill, pushing the text block to the bottom of every card (all cards share a height, so the text stays inline) */
.site-15 .qc-icon, .site-15 .pl-icon { flex: 1 1 auto; min-height: 0; width: 100%; display: flex; align-items: center; justify-content: center; color: #1a1a1a; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes g15spin { to { transform: rotate(360deg); } }

/* 3D matte-clay cutouts (transparent PNGs), gently floating */
.site-15 .qc-icon.clay, .site-15 .pl-icon.clay { padding: 4px 0; }
/* every clay graphic renders at the same height across both card sections */
.site-15 .clay-img { height: 182px; width: auto; max-width: 90%; object-fit: contain;
  filter: drop-shadow(0 18px 24px rgba(60,42,8,.24)) blur(1px);
  animation: clayFloat 5s ease-in-out infinite; will-change: transform; }
/* stagger the drift so the four cards aren't in lock-step */
.site-15 .quad-col:nth-child(2) .clay-img { animation-delay: -1.1s; }
.site-15 .quad-col:nth-child(3) .clay-img { animation-delay: -2.3s; }
.site-15 .quad-col:nth-child(4) .clay-img { animation-delay: -3.4s; }
.site-15 .pillar:nth-child(2) .clay-img { animation-delay: -1.6s; }
.site-15 .pillar:nth-child(3) .clay-img { animation-delay: -0.8s; }
.site-15 .pillar:nth-child(4) .clay-img { animation-delay: -2.7s; }
@keyframes clayFloat { 0%,100%{ transform: translateY(0) rotate(-.5deg); } 50%{ transform: translateY(-11px) rotate(.5deg); } }
/* clay videos carry their own idle motion — no CSS float, just the shadow */
.site-15 video.clay-img { display: block; animation: none; }
/* transparent-webp fallback (injected by app.js) — hidden on desktop, used on mobile.
   Scoped under .clay so it beats `.quad-card img { display:none }` on specificity. */
.site-15 .clay .clay-fallback { display: none; }
@media (max-width: 860px) {
  .site-15 .clay video.clay-img { display: none; }   /* webm alpha renders black on mobile */
  .site-15 .clay .clay-fallback { display: block; }  /* show the transparent webp instead */
}

@media (max-width: 900px) { .site-15 .pillars { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .site-15 .pillars { grid-template-columns: 1fr; } .site-15 .pillar { aspect-ratio: auto; min-height: 220px; } }

/* drifting amber glow inside the hero */
.site-15 .hero-glow { position: absolute; z-index: 1; width: 60vw; max-width: 720px; aspect-ratio: 1;
  left: 6%; top: 14%; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(251,164,18,.2), rgba(251,164,18,0) 62%);
  filter: blur(18px); mix-blend-mode: screen; animation: g15GlowDrift 17s ease-in-out infinite; }
@keyframes g15GlowDrift {
  0%   { transform: translate(0,0) scale(1); }
  33%  { transform: translate(24vw,7vh) scale(1.18); }
  66%  { transform: translate(5vw,20vh) scale(.9); }
  100% { transform: translate(0,0) scale(1); } }

/* buttons — primary: darker yellow (opaque); secondary: opaque gray gradient (not glass) */
.site-15 .btn.solid { background: linear-gradient(120deg, #d9880a, #c67c00); background-size: 200% 100%; color: #1a1a1a;
  -webkit-backdrop-filter: none; backdrop-filter: none; }
.site-15 .btn.solid:hover { color: #1a1a1a; filter: brightness(1.08); }
.site-15 .btn:not(.solid) { background: linear-gradient(120deg, #eae7e1, #d5d1c9); color: #1a1a1a;
  -webkit-backdrop-filter: none; backdrop-filter: none; }
.site-15 .btn:not(.solid):hover { color: #1a1a1a; filter: brightness(.94); }
/* buttons with a leading icon in a rounded container inside the button */
.site-15 .btn:has(.bt-ico) { padding-left: 8px; gap: 12px; }
.site-15 .btn .bt-ico { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 999px; flex: 0 0 auto; transition: transform .3s ease; }
.site-15 .btn .bt-ico svg { width: 16px; height: 16px; }
.site-15 .btn.solid .bt-ico { background: #1a1a1a; color: #FBA412; }
.site-15 .btn:not(.solid) .bt-ico { background: #1a1a1a; color: #fff; }
.site-15 .btn:hover .bt-ico { transform: translateX(2px); }

/* section headings: amber underline that draws in when the heading is revealed */
.site-15 .panel:not(#hero) > .wrap > h2 { position: relative; padding-bottom: 16px; }
.site-15 .panel:not(#hero) > .wrap > h2::after { content: ""; position: absolute; left: 0; bottom: 0; height: 3px; width: 72px;
  background: linear-gradient(90deg, #FBA412, rgba(251,164,18,0)); transform: scaleX(0); transform-origin: left;
  transition: transform .8s cubic-bezier(.2,.7,.2,1); }
.site-15 .panel:not(#hero) > .wrap > h2.in::after { transform: scaleX(1); }

/* flow line: staggered pulsing amber arrows */
.site-15 .flow i { animation: g15FlowPulse 2.4s ease-in-out infinite; }
.site-15 .flow i:nth-of-type(2) { animation-delay: .3s; } .site-15 .flow i:nth-of-type(3) { animation-delay: .6s; }
.site-15 .flow i:nth-of-type(4) { animation-delay: .9s; } .site-15 .flow i:nth-of-type(5) { animation-delay: 1.2s; }
.site-15 .flow i:nth-of-type(6) { animation-delay: 1.5s; }
@keyframes g15FlowPulse { 0%,100% { opacity: .35; transform: translateX(0); } 50% { opacity: 1; transform: translateX(3px); } }

/* company cards: amber accent + arrow slide on hover */
.site-15 .co-card { border: 1px solid transparent; transition: background .3s ease, border-color .3s ease, box-shadow .3s ease; }
.site-15 .co:hover .co-card { border-color: rgba(251,164,18,.6); box-shadow: 0 16px 44px rgba(251,164,18,.16); }
.site-15 .co-card .btn i { transition: transform .3s ease; }
.site-15 .co:hover .co-card .btn i { transform: translateX(5px); }

/* leadership cards: amber lift */
.site-15 .item.lead-card { border: 1px solid transparent; transition: border-color .3s ease, transform .3s ease, box-shadow .3s ease; }
.site-15 .item.lead-card:hover { border-color: rgba(251,164,18,.55); transform: translateY(-4px); box-shadow: 0 14px 40px rgba(251,164,18,.14); }

/* proof stats: amber numerals */
.site-15 .stat .big { color: #FBA412; }

@media (prefers-reduced-motion: reduce) {
  .site-15 .hero-glow, .site-15 .flow i { animation: none; }
}

/* ---- Lenis smooth scroll ---- */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }

/* ============================================================
   MyNexuss dashboard — glassmorphism + live presence
   ============================================================ */
.dash-panel { padding: 0; }
.dash-head { text-align: center; margin-bottom: 26px; }
.dash-head h2 { margin: 10px auto 0; }
.dash-head .badge { display: inline-flex; }

.dash {
  --accent:#2B8EE5; --accent-2:#1f7bcc; --accent-soft:rgba(43,142,229,.14);
  --pos:#16A34A; --pos-soft:rgba(22,163,74,.15);
  --neg:#DC2626; --neg-soft:rgba(220,38,38,.14);
  --med:#D97706; --med-soft:rgba(217,119,6,.16);
  --ink:#132033; --muted:#5a6a80; --faint:#93a1b5;
  --glass:rgba(255,255,255,.55); --glass-2:rgba(255,255,255,.4); --glass-brd:rgba(255,255,255,.65);
  --soft:rgba(255,255,255,.5); --hover:rgba(255,255,255,.72);
  --sh: 0 2px 8px rgba(19,32,51,.06), 0 14px 40px rgba(19,32,51,.09);
  --r:20px; --r-c:16px; --r-sm:12px; --r-xs:9px;
  position: relative; height: min(786px, 85vh); border-radius: 26px; overflow: hidden;
  background: linear-gradient(135deg,#e6f0fb 0%,#edf4fc 50%,#f4f9fe 100%);
  display: grid; grid-template-columns: 236px 1fr; color: var(--ink);
  font-family: "Outfit","Google Sans",sans-serif; box-shadow: 0 50px 110px rgba(19,32,51,.24);
  transition: background .4s ease, color .4s ease; }
.dash[data-theme="dark"] {
  --ink:#e9eef6; --muted:#94a3b8; --faint:#5d6b7e;
  --glass:rgba(24,32,46,.55); --glass-2:rgba(24,32,46,.42); --glass-brd:rgba(255,255,255,.09);
  --soft:rgba(255,255,255,.06); --hover:rgba(255,255,255,.09);
  --sh: 0 2px 8px rgba(0,0,0,.25), 0 14px 40px rgba(0,0,0,.4);
  background: linear-gradient(135deg,#0d1524 0%,#0b1120 50%,#0a0f1b 100%); }
.dash *, .dash *::before, .dash *::after { box-sizing: border-box; }
.dash svg { width: 16px; height: 16px; flex: 0 0 auto; }
.dash button { font-family: inherit; }
.dash ::-webkit-scrollbar { width: 0; height: 0; }

/* Nexuss page scrollbar — visible thumb on the dark theme (native one is invisible against black) */
html.nexuss-scroll { scrollbar-color: #384a63 #070b12; scrollbar-width: thin; }
html.nexuss-scroll::-webkit-scrollbar { width: 14px; }
html.nexuss-scroll::-webkit-scrollbar-track { background: #070b12; }
html.nexuss-scroll::-webkit-scrollbar-thumb { background: #384a63; border-radius: 10px; border: 3px solid #070b12; }
html.nexuss-scroll::-webkit-scrollbar-thumb:hover { background: #4d668a; }

/* 15.Group page scrollbar — warm amber to match the editorial theme */
html.g15-scroll { scrollbar-color: #c6a15a #ece3d0; scrollbar-width: thin; }
html.g15-scroll::-webkit-scrollbar { width: 14px; }
html.g15-scroll::-webkit-scrollbar-track { background: #ece3d0; }
html.g15-scroll::-webkit-scrollbar-thumb { background: #c6a15a; border-radius: 10px; border: 3px solid #ece3d0; }
html.g15-scroll::-webkit-scrollbar-thumb:hover { background: #b0863a; }

/* aurora backdrop for the glass to pick up */
.ds-aura { position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.ds-aura span { position: absolute; width: 42%; aspect-ratio: 1; border-radius: 50%; filter: blur(72px); opacity: .6; animation: dsDrift 20s ease-in-out infinite; }
.ds-aura span { opacity: .5; }
.ds-aura span:nth-child(1) { background: #a6cdf2; top: -12%; left: -6%; }
.ds-aura span:nth-child(2) { background: #c3ddf6; top: -8%; right: -8%; animation-duration: 26s; animation-direction: reverse; }
.ds-aura span:nth-child(3) { background: #b0d3f4; bottom: -14%; left: 26%; animation-duration: 30s; }
.ds-aura span:nth-child(4) { background: #cbe4f8; bottom: -10%; right: 6%; animation-duration: 23s; animation-direction: reverse; opacity: .45; }
.dash[data-theme="dark"] .ds-aura span { opacity: .2; background: #2f4f80; }
@keyframes dsDrift { 0%,100% { transform: translate(0,0) scale(1); } 33% { transform: translate(6%,5%) scale(1.15); } 66% { transform: translate(-5%,-4%) scale(.92); } }

/* ---- sidebar (dark glass rail) ---- */
.ds-side { position: relative; z-index: 3; margin: 12px; border-radius: var(--r); overflow: hidden;
  background: rgba(15,22,36,.5); -webkit-backdrop-filter: blur(26px) saturate(1.5); backdrop-filter: blur(26px) saturate(1.5);
  border: 1px solid rgba(255,255,255,.1); color: #eaf0f8; display: flex; flex-direction: column; min-height: 0; }
.dash[data-theme="dark"] .ds-side { background: rgba(10,15,25,.55); }
.ds-brand { display: flex; align-items: center; gap: 11px; padding: 16px 15px 14px; }
.ds-brand-mark { width: 30px; height: 30px; flex: 0 0 auto; display: grid; place-items: center; }
.ds-brand-mark img { width: 27px; height: 27px; object-fit: contain; }
.ds-brand-txt { display: flex; flex-direction: column; line-height: 1.1; }
.ds-brand-txt b { font-size: .96rem; font-weight: 800; color: #fff; }
.ds-brand-txt em { font-size: .6rem; font-style: normal; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .1em; }
.ds-brand-live { width: 8px; height: 8px; border-radius: 50%; background: var(--pos); margin-left: auto; animation: dsPulse 1.9s ease-out infinite; }
.ds-nav { flex: 1; overflow: hidden; padding: 4px 8px; display: flex; flex-direction: column; gap: 1px; }
.ds-nav-lbl { font-size: .58rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: rgba(255,255,255,.32); padding: 9px 10px 4px; }
.ds-item { display: flex; align-items: center; gap: 10px; width: 100%; padding: 6px 10px; border: 0; background: none; border-radius: var(--r-xs); color: rgba(255,255,255,.62); font-size: .78rem; font-weight: 500; cursor: pointer; text-align: left; position: relative; transition: background .18s ease, color .18s ease; }
.ds-item svg { width: 15px; height: 15px; color: currentColor; }
.ds-item span { flex: 1; }
.ds-item:hover { background: rgba(255,255,255,.07); color: #fff; }
.ds-item.active { background: rgba(255,255,255,.13); color: #fff; box-shadow: inset 0 0 0 1px rgba(255,255,255,.08); animation: dsNavGlow 3s ease-in-out infinite; }
.ds-item.active::before { content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 3px; height: 15px; background: var(--accent); border-radius: 3px; box-shadow: 0 0 8px var(--accent); }
.ds-item.active svg { color: #7fc0f5; }
@keyframes dsNavGlow { 0%,100% { box-shadow: inset 0 0 0 1px rgba(255,255,255,.08); } 50% { box-shadow: inset 0 0 14px rgba(43,142,229,.25), inset 0 0 0 1px rgba(255,255,255,.08); } }
.ds-count { font-size: .6rem; font-weight: 700; min-width: 17px; height: 16px; padding: 0 5px; border-radius: 999px; background: var(--accent); color: #fff; display: grid; place-items: center; }
.ds-item .ds-count { background: rgba(255,255,255,.16); color: #fff; }
.ds-item .ds-count.amber { background: var(--med); }
.ds-side-foot { padding: 8px; display: flex; flex-direction: column; gap: 2px; border-top: 1px solid rgba(255,255,255,.08); }
.ds-user { display: flex; align-items: center; gap: 9px; padding: 6px 8px; border: 0; background: none; border-radius: var(--r-xs); cursor: pointer; transition: background .18s ease; }
.ds-user:hover { background: rgba(255,255,255,.07); }
.ds-user img { width: 30px; height: 30px; border-radius: 50%; object-fit: cover; flex: 0 0 auto; }
.ds-u-meta { flex: 1; display: flex; flex-direction: column; line-height: 1.15; text-align: left; min-width: 0; }
.ds-u-meta b { font-size: .76rem; color: #fff; }
.ds-u-meta i { font-size: .64rem; color: rgba(255,255,255,.5); font-style: normal; overflow: hidden; text-overflow: ellipsis; }
.ds-u-caret { width: 14px; height: 14px; color: rgba(255,255,255,.45); }

/* ---- main ---- */
.ds-main { position: relative; z-index: 2; display: flex; flex-direction: column; min-width: 0; min-height: 0; }
.ds-top { display: flex; align-items: center; gap: 12px; padding: 14px 16px 6px; background: transparent; z-index: 6; }
.ds-glass { background: var(--glass); -webkit-backdrop-filter: blur(16px) saturate(1.5); backdrop-filter: blur(16px) saturate(1.5); border: 1px solid var(--glass-brd); }
.ds-drop { position: relative; }
.ds-drop-btn { display: inline-flex; align-items: center; gap: 8px; padding: 8px 13px; border: 1px solid var(--glass-brd); border-radius: 999px; background: var(--glass); -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px); font-weight: 700; font-size: .8rem; color: var(--ink); cursor: pointer; box-shadow: var(--sh); }
.ds-drop-btn svg { width: 14px; height: 14px; color: var(--muted); }
.ds-drop-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); flex: 0 0 auto; }
.ds-drop-dot.g { background: var(--pos); } .ds-drop-dot.p { background: var(--muted); }
.ds-drop-menu, .ds-notif-menu { position: absolute; top: 46px; background: var(--glass); -webkit-backdrop-filter: blur(22px) saturate(1.6); backdrop-filter: blur(22px) saturate(1.6); border: 1px solid var(--glass-brd); border-radius: var(--r-c); padding: 6px; box-shadow: 0 20px 50px rgba(19,32,51,.24); z-index: 20; animation: dsPop .16s ease; }
.ds-drop-menu { left: 0; width: 214px; } .ds-notif-menu { right: 0; top: 48px; width: 300px; padding: 8px; }
.ds-drop-opt { display: flex; align-items: center; gap: 9px; width: 100%; padding: 9px 10px; border: 0; border-radius: var(--r-xs); background: none; font-size: .8rem; color: var(--ink); cursor: pointer; }
.ds-drop-opt svg { width: 15px; height: 15px; margin-left: auto; color: var(--accent); }
.ds-drop-opt:hover { background: var(--hover); }
.ds-drop-opt.active { font-weight: 700; } .ds-drop-sep { display: none; }
.ds-search { flex: 1; max-width: 400px; display: flex; align-items: center; gap: 9px; padding: 9px 14px; border: 1px solid var(--glass-brd); border-radius: 999px; background: var(--glass); -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px); color: var(--muted); box-shadow: var(--sh); }
.ds-search input { border: 0; background: none; outline: none; font-family: inherit; font-size: .8rem; color: var(--ink); width: 100%; }
.ds-top-right { margin-left: auto; display: flex; align-items: center; gap: 8px; position: relative; }
.ds-icobtn { position: relative; width: 38px; height: 38px; border: 1px solid var(--glass-brd); border-radius: 50%; background: var(--glass); -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px); box-shadow: var(--sh); display: grid; place-items: center; color: var(--ink); cursor: pointer; transition: transform .12s ease, color .18s ease; }
.ds-icobtn:hover { color: var(--accent); } .ds-icobtn:active { transform: scale(.92); }
.ds-notif-dot { position: absolute; top: 8px; right: 9px; width: 7px; height: 7px; border-radius: 50%; background: var(--neg); animation: dsPulseR 2s ease-out infinite; }
@keyframes dsPulseR { 0% { box-shadow: 0 0 0 0 rgba(220,38,38,.5); } 70%,100% { box-shadow: 0 0 0 6px rgba(220,38,38,0); } }
.ds-theme .ds-th-moon { display: none; }
.dash[data-theme="dark"] .ds-theme .ds-th-sun { display: none; }
.dash[data-theme="dark"] .ds-theme .ds-th-moon { display: block; }
.ds-nm-head { font-weight: 700; font-size: .78rem; padding: 5px 8px 8px; }
.ds-nm-item { display: flex; gap: 10px; padding: 8px; border-radius: var(--r-xs); }
.ds-nm-item:hover { background: var(--hover); }
.ds-nm-item div { font-size: .76rem; color: var(--ink); line-height: 1.35; }
.ds-nm-item i { display: block; font-style: normal; font-size: .64rem; color: var(--muted); margin-top: 2px; }
.ds-nm-ic { width: 27px; height: 27px; flex: 0 0 auto; border-radius: var(--r-xs); display: grid; place-items: center; color: #fff; background: var(--accent); }
.ds-nm-ic svg { width: 14px; height: 14px; }
.ds-nm-ic.amber { background: var(--med); } .ds-nm-ic.green { background: var(--pos); }

/* ---- body + views ---- */
.ds-body { flex: 1; overflow: hidden; padding: 10px 16px 16px; min-height: 0; }
.ds-view { display: none; height: 100%; }
.ds-view.active { display: flex; flex-direction: column; min-height: 0; animation: dsViewIn .36s cubic-bezier(.2,.7,.2,1); }
@keyframes dsViewIn { from { opacity: 0; transform: translateY(10px) scale(.995); } to { opacity: 1; transform: none; } }
@keyframes dsPop { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }
@keyframes dsPulse { 0% { box-shadow: 0 0 0 0 rgba(22,163,74,.5); } 70%,100% { box-shadow: 0 0 0 6px rgba(22,163,74,0); } }
@keyframes dsFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-4px); } }
.ds-v-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin-bottom: 14px; flex: 0 0 auto; }
.ds-v-head h3 { margin: 0; font-size: 1.35rem; color: var(--ink); }
.ds-v-head p { margin: 3px 0 0; font-size: .84rem; color: var(--muted); }
.ds-head-act { display: flex; align-items: center; gap: 10px; }

/* ---- glass card base ---- */
.ds-card { background: var(--glass); -webkit-backdrop-filter: blur(18px) saturate(1.5); backdrop-filter: blur(18px) saturate(1.5); border: 1px solid var(--glass-brd); border-radius: var(--r-c); box-shadow: var(--sh); padding: 15px; display: flex; flex-direction: column; min-height: 0; transition: transform .16s ease, box-shadow .16s ease; }
.ds-card-h { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 10px; flex: 0 0 auto; }
.ds-card-h h4 { margin: 0; font-size: .88rem; color: var(--ink); }
.ds-btn { display: inline-flex; align-items: center; gap: 7px; padding: 9px 15px; border: 1px solid var(--glass-brd); border-radius: var(--r-sm); background: var(--glass); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); box-shadow: var(--sh); font-size: .8rem; font-weight: 600; color: var(--ink); cursor: pointer; transition: transform .12s ease; }
.ds-btn svg { width: 15px; height: 15px; }
.ds-btn:active { transform: scale(.97); }
.ds-btn.primary { background: var(--accent); border-color: var(--accent); color: #fff; box-shadow: 0 8px 22px rgba(43,142,229,.45); }
.ds-btn.primary:hover { background: var(--accent-2); }
.ds-link { font-size: .74rem; color: var(--accent); font-weight: 600; text-decoration: none; }
.ds-link:hover { text-decoration: underline; }
.ds-chip { display: inline-flex; align-items: center; gap: 6px; font-size: .7rem; font-weight: 600; padding: 5px 11px; border-radius: 999px; background: var(--soft); color: var(--muted); white-space: nowrap; }
.ds-chip svg { width: 13px; height: 13px; }
.ds-dot { width: 7px; height: 7px; border-radius: 50%; flex: 0 0 auto; }
.ds-dot.live, .ds-dot.pos { background: var(--pos); animation: dsPulse 1.9s ease-out infinite; }
.ds-dot.med { background: var(--med); } .ds-dot.neg { background: var(--neg); } .ds-dot.idle { background: var(--faint); }
.ds-pill { display: inline-flex; align-items: center; gap: 6px; font-size: .68rem; font-weight: 700; padding: 4px 10px; border-radius: 999px; background: var(--soft); color: var(--muted); flex: 0 0 auto; position: relative; overflow: hidden; }
.ds-pill.pos { background: var(--pos-soft); color: var(--pos); } .ds-pill.med { background: var(--med-soft); color: var(--med); }
.ds-pill.neg { background: var(--neg-soft); color: var(--neg); } .ds-pill.idle { background: var(--soft); color: var(--faint); }
.ds-pill.pos::after { content: ""; position: absolute; inset: 0; background: linear-gradient(110deg, transparent 35%, rgba(255,255,255,.5) 50%, transparent 65%); background-size: 220% 100%; animation: dsShimmer 3.4s ease-in-out infinite; }
@keyframes dsShimmer { 0% { background-position: 180% 0; } 55%,100% { background-position: -100% 0; } }

/* ---- dashboard ---- */
.ds-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; flex: 0 0 auto; }
.ds-stat { position: relative; display: flex; align-items: center; gap: 12px; background: var(--glass); -webkit-backdrop-filter: blur(18px) saturate(1.5); backdrop-filter: blur(18px) saturate(1.5); border: 1px solid var(--glass-brd); border-radius: var(--r-c); box-shadow: var(--sh); padding: 13px 15px; overflow: hidden; transition: transform .16s ease; }
.ds-stat:hover { transform: translateY(-3px); }
.ds-st-ic { width: 38px; height: 38px; flex: 0 0 auto; border-radius: var(--r-sm); display: grid; place-items: center; background: var(--accent-soft); color: var(--accent); animation: dsFloat 4.5s ease-in-out infinite; }
.ds-stat:nth-child(2) .ds-st-ic { animation-delay: -1.2s; } .ds-stat:nth-child(3) .ds-st-ic { animation-delay: -2.4s; } .ds-stat:nth-child(4) .ds-st-ic { animation-delay: -3.4s; }
.ds-st-ic svg { width: 19px; height: 19px; }
.ds-st-num { font-family: var(--title), sans-serif; font-weight: var(--title-weight); font-size: 1.7rem; line-height: 1; color: var(--ink); }
.ds-st-lbl { font-size: .72rem; color: var(--muted); margin-top: 3px; }
.ds-st-tr { position: absolute; top: 12px; right: 14px; display: inline-flex; align-items: center; gap: 2px; font-size: .64rem; font-weight: 700; color: var(--muted); }
.ds-st-tr svg { width: 12px; height: 12px; }
.ds-st-tr.pos { color: var(--pos); } .ds-st-tr.med { color: var(--med); } .ds-st-tr.neg { color: var(--neg); }
.ds-region { flex: 1; display: grid; grid-template-columns: 1.15fr 1fr .9fr; gap: 12px; min-height: 0; margin-top: 12px; }
.ds-colstack { display: grid; grid-template-rows: 1fr auto; gap: 12px; min-height: 0; }
.ds-colstack:nth-child(3) { grid-template-rows: auto 1fr; }
.ds-panel { overflow: hidden; }
.ds-cw, .ds-feed, .ds-agenda { display: flex; flex-direction: column; gap: 2px; overflow: hidden; list-style: none; margin: 0; padding: 0; }
.ds-cw-row, .ds-feed li, .ds-agenda li { display: flex; align-items: center; gap: 10px; padding: 7px 8px; border-radius: var(--r-sm); transition: background .15s ease; }
.ds-cw-row:hover, .ds-feed li:hover, .ds-agenda li:hover { background: var(--hover); }
.ds-cw-ic { width: 32px; height: 32px; border-radius: var(--r-sm); background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; flex: 0 0 auto; }
.ds-cw-ic svg { width: 16px; height: 16px; }
.ds-cw-m { flex: 1; display: flex; flex-direction: column; line-height: 1.2; min-width: 0; }
.ds-cw-m b { font-size: .82rem; color: var(--ink); } .ds-cw-m i { font-size: .71rem; color: var(--muted); font-style: normal; }
.ds-team-card { flex-direction: row; align-items: center; gap: 12px; padding: 13px 15px; }
.ds-team { display: flex; align-items: center; cursor: pointer; }
.ds-team img, .ds-team video { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(255,255,255,.7); margin-left: -9px; transition: transform .18s ease; animation: dsFloat 5s ease-in-out infinite; }
.ds-team img:first-child, .ds-team video:first-child { margin-left: 0; }
.ds-team :nth-child(2) { animation-delay: -.8s; } .ds-team :nth-child(3) { animation-delay: -1.6s; } .ds-team :nth-child(4) { animation-delay: -2.4s; } .ds-team :nth-child(5) { animation-delay: -3.2s; } .ds-team :nth-child(6) { animation-delay: -4s; }
.ds-team img:hover, .ds-team video:hover { transform: translateY(-4px); }
.ds-team-more { margin-left: 8px; font-size: .72rem; font-weight: 700; color: var(--muted); }
.ds-team-lbl { margin-left: auto; font-size: .72rem; color: var(--muted); }
.ds-fd-ic { width: 25px; height: 25px; border-radius: var(--r-xs); display: grid; place-items: center; color: #fff; flex: 0 0 auto; background: var(--accent); }
.ds-fd-ic svg { width: 13px; height: 13px; }
.ds-fd-ic.pos { background: var(--pos); } .ds-fd-ic.med { background: var(--med); } .ds-fd-ic.neg { background: var(--neg); }
.ds-feed p { margin: 0; font-size: .78rem; color: var(--ink); line-height: 1.35; }
.ds-feed p span { display: block; font-size: .66rem; color: var(--faint); margin-top: 1px; }
.ds-ag-t { font-size: .71rem; font-weight: 700; color: var(--muted); font-variant-numeric: tabular-nums; width: 40px; flex: 0 0 auto; }
.ds-ag-bar { width: 3px; align-self: stretch; border-radius: 3px; background: var(--accent); flex: 0 0 auto; }
.ds-agenda li div { flex: 1; display: flex; flex-direction: column; line-height: 1.2; min-width: 0; }
.ds-agenda li b { font-size: .8rem; color: var(--ink); } .ds-agenda li i { font-size: .69rem; color: var(--muted); font-style: normal; }
.ds-agenda li .ds-chip { margin-left: auto; }
.ds-gauge-card { align-items: center; justify-content: center; }
.ds-gauge { position: relative; width: 134px; height: 134px; }
.ds-ring { width: 100%; height: 100%; transform: rotate(-90deg); }
.ds-ring-bg { fill: none; stroke: rgba(19,32,51,.08); stroke-width: 11; }
.dash[data-theme="dark"] .ds-ring-bg { stroke: rgba(255,255,255,.1); }
.ds-ring-fg { fill: none; stroke: var(--accent); stroke-width: 11; stroke-linecap: round; stroke-dasharray: 326.7; stroke-dashoffset: 326.7; filter: drop-shadow(0 0 6px rgba(43,142,229,.6)); }
.ds-view.active .ds-ring-fg { animation: dsRing 1.4s cubic-bezier(.3,.8,.3,1) forwards; }
@keyframes dsRing { to { stroke-dashoffset: 42.5; } }
.ds-gauge-orbit { position: absolute; inset: 4px; animation: dsSpin 3.6s linear infinite; }
.ds-gauge-orbit::before { content: ""; position: absolute; top: -3px; left: 50%; transform: translateX(-50%); width: 9px; height: 9px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 10px 1px var(--accent); }
@keyframes dsSpin { to { transform: rotate(360deg); } }
.ds-gauge-c { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; animation: dsBreathe 3.4s ease-in-out infinite; }
@keyframes dsBreathe { 0%,100% { transform: scale(1); } 50% { transform: scale(1.05); } }
.ds-gauge-c b { font-family: var(--title), sans-serif; font-weight: var(--title-weight); font-size: 2rem; line-height: 1; color: var(--ink); }
.ds-gauge-c b em { font-style: normal; font-size: 1rem; color: var(--accent); }
.ds-gauge-c span { font-size: .68rem; color: var(--muted); margin-top: 3px; }
.ds-appr { display: flex; flex-direction: column; gap: 8px; overflow: hidden; }
.ds-ap { display: flex; align-items: center; gap: 10px; padding: 9px; border-radius: var(--r-sm); background: var(--soft); position: relative; overflow: hidden; transition: opacity .25s ease; }
.ds-ap-ic { width: 30px; height: 30px; border-radius: var(--r-xs); background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; flex: 0 0 auto; }
.ds-ap-ic svg { width: 15px; height: 15px; }
.ds-ap-m { flex: 1; display: flex; flex-direction: column; line-height: 1.2; min-width: 0; }
.ds-ap-m b { font-size: .78rem; color: var(--ink); } .ds-ap-m i { font-size: .68rem; color: var(--muted); font-style: normal; }
.ds-ap-act { display: flex; gap: 5px; }
.ds-mini { width: 29px; height: 29px; border-radius: var(--r-xs); border: 0; background: rgba(255,255,255,.7); box-shadow: 0 1px 3px rgba(19,32,51,.12); display: grid; place-items: center; cursor: pointer; color: var(--ink); transition: transform .1s ease; }
.dash[data-theme="dark"] .ds-mini { background: rgba(255,255,255,.12); }
.ds-mini svg { width: 14px; height: 14px; }
.ds-mini:active { transform: scale(.9); }
.ds-mini.yes { background: var(--pos); color: #fff; }
.ds-mini.no:hover { color: var(--neg); }
.ds-ap.done { opacity: .5; } .ds-ap.done .ds-ap-act { display: none; }
.ds-ap-res { position: absolute; right: 12px; font-size: .7rem; font-weight: 700; opacity: 0; }
.ds-ap.done .ds-ap-res { opacity: 1; } .ds-ap.done.yes .ds-ap-res { color: var(--pos); } .ds-ap.done.no .ds-ap-res { color: var(--neg); }

/* ---- chats (live) ---- */
.ds-chat { flex: 1; display: grid; grid-template-columns: 268px 1fr; gap: 12px; min-height: 0; }
.ds-chat-list { display: flex; flex-direction: column; gap: 3px; overflow: hidden; }
.ds-ch { display: flex; align-items: center; gap: 10px; padding: 9px; border-radius: var(--r-sm); cursor: pointer; transition: background .15s ease; }
.ds-ch:hover { background: var(--hover); } .ds-ch.active { background: var(--glass); border: 1px solid var(--glass-brd); box-shadow: var(--sh); }
.ds-ch img, .ds-ch video, .ds-ch .ds-cw-ic { width: 36px; height: 36px; border-radius: 50%; flex: 0 0 auto; object-fit: cover; }
.ds-ch .ds-cw-ic { border-radius: var(--r-sm); }
.ds-ch div { flex: 1; min-width: 0; display: flex; flex-direction: column; line-height: 1.25; }
.ds-ch b { font-size: .82rem; color: var(--ink); }
.ds-ch i { font-size: .71rem; color: var(--muted); font-style: normal; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.ds-ch em { font-size: .64rem; color: var(--faint); font-style: normal; }
.ds-ch-typing { color: var(--accent) !important; font-weight: 600; }
.ds-ch-typing span { animation: dsBlink 1.3s infinite; } .ds-ch-typing span:nth-child(2) { animation-delay: .2s; } .ds-ch-typing span:nth-child(3) { animation-delay: .4s; }
@keyframes dsBlink { 0%,100% { opacity: .3; } 50% { opacity: 1; } }
.ds-unread { min-width: 18px; height: 18px; padding: 0 5px; border-radius: 999px; background: var(--accent); color: #fff; font-size: .62rem; font-weight: 700; display: grid; place-items: center; }
.ds-chat-thread { display: flex; flex-direction: column; background: var(--glass); -webkit-backdrop-filter: blur(18px) saturate(1.5); backdrop-filter: blur(18px) saturate(1.5); border: 1px solid var(--glass-brd); border-radius: var(--r-c); box-shadow: var(--sh); overflow: hidden; min-height: 0; }
.ds-ct-head { display: flex; align-items: center; gap: 10px; padding: 12px 14px; border-bottom: 1px solid var(--glass-brd); flex: 0 0 auto; }
.ds-ct-head > div { display: flex; flex-direction: column; line-height: 1.2; }
.ds-ct-head b { font-size: .86rem; }
.ds-ct-sub { display: inline-flex; align-items: center; gap: 6px; font-size: .66rem; color: var(--pos); font-weight: 600; }
.ds-ct-more { width: 32px; height: 32px; margin-left: auto; }
.ds-ct-body { flex: 1; padding: 15px; display: flex; flex-direction: column; gap: 9px; overflow: hidden; justify-content: flex-end; }
.ds-msg { max-width: 74%; padding: 9px 13px; border-radius: 16px; font-size: .81rem; line-height: 1.4; animation: dsMsgIn .35s cubic-bezier(.2,.7,.2,1); }
.ds-msg.in { align-self: flex-start; background: rgba(255,255,255,.8); color: var(--ink); border-bottom-left-radius: 5px; box-shadow: 0 2px 8px rgba(19,32,51,.06); }
.dash[data-theme="dark"] .ds-msg.in { background: rgba(255,255,255,.1); }
.ds-msg.out { align-self: flex-end; background: var(--accent); color: #fff; border-bottom-right-radius: 5px; }
@keyframes dsMsgIn { from { opacity: 0; transform: translateY(8px) scale(.96); } to { opacity: 1; transform: none; } }
.ds-typing { align-self: flex-start; display: inline-flex; gap: 4px; padding: 11px 14px; background: rgba(255,255,255,.8); border-radius: 16px; }
.dash[data-theme="dark"] .ds-typing { background: rgba(255,255,255,.1); }
.ds-typing span { width: 6px; height: 6px; border-radius: 50%; background: var(--faint); animation: dsType 1.2s ease-in-out infinite; }
.ds-typing span:nth-child(2) { animation-delay: .2s; } .ds-typing span:nth-child(3) { animation-delay: .4s; }
@keyframes dsType { 0%,60%,100% { transform: translateY(0); opacity: .5; } 30% { transform: translateY(-4px); opacity: 1; } }
.ds-ct-input { display: flex; gap: 8px; padding: 12px; border-top: 1px solid var(--glass-brd); flex: 0 0 auto; }
.ds-ct-input input { flex: 1; border: 0; border-radius: 999px; background: var(--soft); padding: 10px 14px; font-family: inherit; font-size: .82rem; color: var(--ink); outline: none; }
.ds-send { width: 40px; height: 40px; border: 0; border-radius: 50%; background: var(--accent); color: #fff; display: grid; place-items: center; cursor: pointer; box-shadow: 0 6px 16px rgba(43,142,229,.4); }

/* ---- kanban ---- */
.ds-kanban { flex: 1; display: grid; grid-template-columns: repeat(4, 1fr); gap: 11px; min-height: 0; }
.ds-kcol { background: var(--glass-2); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); border: 1px solid var(--glass-brd); border-radius: var(--r-c); padding: 10px; overflow: hidden; }
.ds-kcol-h { display: flex; align-items: center; gap: 6px; font-size: .75rem; font-weight: 700; color: var(--muted); margin-bottom: 9px; padding: 0 3px; }
.ds-kcol-h em { font-style: normal; background: var(--soft); border-radius: 999px; padding: 1px 7px; font-size: .64rem; }
.ds-kc { background: var(--glass); border: 1px solid var(--glass-brd); border-radius: var(--r-sm); box-shadow: var(--sh); padding: 10px; margin-bottom: 8px; cursor: grab; transition: transform .15s ease; }
.ds-kc:hover { transform: translateY(-2px); }
.ds-kc b { display: block; font-size: .8rem; color: var(--ink); margin: 7px 0; }
.ds-kc.done { opacity: .6; }
.ds-tag { font-size: .6rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; padding: 3px 8px; border-radius: 999px; background: var(--accent-soft); color: var(--accent); }
.ds-kprog { height: 5px; border-radius: 3px; background: var(--soft); overflow: hidden; margin-bottom: 7px; }
.ds-kprog span { display: block; height: 100%; border-radius: 3px; background: var(--accent); }
.ds-kc-f { display: flex; align-items: center; justify-content: space-between; }
.ds-kc-f i { font-size: .67rem; color: var(--muted); font-style: normal; }
.ds-ava-mini { width: 21px; height: 21px; border-radius: 50%; background: var(--accent); color: #fff; display: grid; place-items: center; font-size: .62rem; font-weight: 700; }

/* ---- people / managers ---- */
.ds-people { flex: 1; display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 1fr; gap: 12px; min-height: 0; }
.ds-person { position: relative; background: var(--glass); -webkit-backdrop-filter: blur(18px) saturate(1.4); backdrop-filter: blur(18px) saturate(1.4); border: 1px solid var(--glass-brd); border-radius: var(--r-c); box-shadow: var(--sh); padding: 16px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; transition: transform .16s ease; }
.ds-person:hover { transform: translateY(-4px); }
.ds-person > img, .ds-person > video { width: 58px; height: 58px; border-radius: 50%; object-fit: cover; margin-bottom: 10px; }
.ds-person b { font-size: .86rem; color: var(--ink); }
.ds-person i { font-size: .73rem; color: var(--muted); font-style: normal; margin-top: 2px; }
.ds-person .ds-dot { position: absolute; top: 14px; right: 14px; }
.ds-person.wide { flex-direction: row; gap: 12px; text-align: left; justify-content: flex-start; }
.ds-person.wide img, .ds-person.wide video { width: 44px; height: 44px; border-radius: 50%; margin: 0; flex: 0 0 auto; }
.ds-person.wide > div { flex: 1; } .ds-person.wide .ds-chip { margin-left: auto; }

/* ---- meetings ---- */
.ds-view[data-panel="meetings"].active { justify-content: flex-start; }
.ds-mtg-day { font-size: .73rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); margin: 4px 0 8px; }
.ds-agenda.big { background: var(--glass); -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px); border: 1px solid var(--glass-brd); border-radius: var(--r-c); box-shadow: var(--sh); padding: 8px 14px; margin-bottom: 12px; }
.ds-agenda.big li { padding: 10px 6px; }

/* ---- memories ---- */
.ds-mem-grid { flex: 1; display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 1fr; gap: 12px; min-height: 0; }
.ds-mem-card { background: var(--glass); -webkit-backdrop-filter: blur(18px) saturate(1.4); backdrop-filter: blur(18px) saturate(1.4); border: 1px solid var(--glass-brd); border-radius: var(--r-c); box-shadow: var(--sh); padding: 14px; display: flex; flex-direction: column; justify-content: center; transition: transform .16s ease; }
.ds-mem-card:hover { transform: translateY(-4px); }
.ds-mem-ic { width: 32px; height: 32px; border-radius: var(--r-sm); display: grid; place-items: center; color: #fff; background: var(--accent); margin-bottom: 9px; }
.ds-mem-ic svg { width: 16px; height: 16px; }
.ds-mem-card b { font-size: .85rem; color: var(--ink); }
.ds-mem-card i { font-size: .72rem; color: var(--muted); font-style: normal; margin-top: 2px; }
.ds-mem-links { font-size: .67rem; color: var(--accent); margin-top: 8px; font-weight: 600; }
.ds-search.inline { max-width: 210px; box-shadow: none; }

/* ---- personality ---- */
.ds-view[data-panel="personality"] .ds-grid2 { flex: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; min-height: 0; }
.ds-view[data-panel="personality"] .ds-card { justify-content: center; }
.ds-slider { margin-bottom: 16px; }
.ds-slider label { display: flex; justify-content: space-between; font-size: .73rem; font-weight: 600; color: var(--muted); margin-bottom: 7px; }
.ds-slider label em { font-style: normal; }
.ds-track { position: relative; height: 5px; border-radius: 3px; background: var(--soft); }
.ds-track span { position: absolute; top: 50%; width: 15px; height: 15px; border-radius: 50%; background: var(--accent); border: 3px solid #fff; transform: translate(-50%,-50%); box-shadow: 0 2px 6px rgba(43,142,229,.4); }
.ds-preview { display: flex; gap: 11px; } .ds-preview .ds-cw-ic { width: 34px; height: 34px; }
.ds-preview p { margin: 0; font-size: .83rem; line-height: 1.5; color: var(--ink); }
.ds-chips-row { display: flex; gap: 6px; margin-top: 12px; }

/* ---- usage ---- */
.ds-view[data-panel="usage"] .ds-card { flex: 1; min-height: 0; margin-top: 12px; }
.ds-bars { flex: 1; display: flex; align-items: flex-end; gap: 12px; min-height: 0; padding-top: 8px; }
.ds-bar { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: flex-end; height: 100%; gap: 7px; }
.ds-bar span { width: 100%; max-width: 42px; border-radius: 8px 8px 0 0; background: linear-gradient(var(--accent),#7cc0f2); height: 0; transform-origin: bottom; }
.ds-view.active .ds-bar span { animation: dsGrow 1s cubic-bezier(.2,.7,.2,1) forwards, dsWave 3s ease-in-out infinite 1s; }
@keyframes dsGrow { from { height: 0; } to { height: var(--h); } }
@keyframes dsWave { 0%,100% { transform: scaleY(1); } 50% { transform: scaleY(.94); } }
.ds-bar i { font-size: .67rem; color: var(--muted); font-style: normal; }

/* ---- tickets ---- */
.ds-table { flex: 0 0 auto; background: var(--glass); -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px); border: 1px solid var(--glass-brd); border-radius: var(--r-c); box-shadow: var(--sh); overflow: hidden; display: flex; flex-direction: column; padding: 6px; }
.ds-tr { display: grid; grid-template-columns: 66px 1fr 130px 104px; gap: 10px; align-items: center; padding: 0 12px; height: 44px; border-radius: var(--r-sm); font-size: .8rem; color: var(--ink); }
.ds-tr:not(.ds-th):hover { background: var(--hover); }
.ds-th { background: var(--soft); font-size: .66rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: var(--muted); }
.ds-badge { justify-self: start; font-size: .64rem; font-weight: 700; padding: 3px 10px; border-radius: 999px; background: var(--soft); color: var(--muted); }
.ds-badge.green { background: var(--pos-soft); color: var(--pos); } .ds-badge.blue { background: var(--accent-soft); color: var(--accent); } .ds-badge.amber { background: var(--med-soft); color: var(--med); }

/* ---- working style ---- */
.ds-view[data-panel="workingstyle"] .ds-card { flex: 1; justify-content: center; }
.ds-set { display: flex; align-items: center; gap: 14px; padding: 11px 6px; border-radius: var(--r-sm); transition: background .15s ease; }
.ds-set:hover { background: var(--hover); }
.ds-set > div { flex: 1; } .ds-set b { display: block; font-size: .83rem; color: var(--ink); } .ds-set i { display: block; font-size: .71rem; color: var(--muted); font-style: normal; margin-top: 2px; }
.ds-seg { display: inline-flex; background: var(--soft); border-radius: 999px; padding: 3px; }
.ds-seg button { border: 0; background: none; padding: 6px 14px; border-radius: 999px; font-size: .76rem; font-weight: 600; color: var(--muted); cursor: pointer; }
.ds-seg button.on { background: #fff; color: var(--ink); box-shadow: 0 1px 3px rgba(19,32,51,.15); }
.dash[data-theme="dark"] .ds-seg button.on { background: rgba(255,255,255,.16); }
.ds-switch { width: 40px; height: 22px; border-radius: 999px; background: var(--faint); position: relative; cursor: pointer; flex: 0 0 auto; transition: background .2s ease; }
.ds-switch span { position: absolute; top: 3px; left: 3px; width: 16px; height: 16px; border-radius: 50%; background: #fff; transition: transform .2s cubic-bezier(.5,0,.2,1); }
.ds-switch.on { background: var(--accent); } .ds-switch.on span { transform: translateX(18px); }

/* ---- tasks ---- */
.ds-tasks { flex: 0 0 auto; list-style: none; margin: 0; padding: 6px; background: var(--glass); -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px); border: 1px solid var(--glass-brd); border-radius: var(--r-c); box-shadow: var(--sh); }
.ds-tasks li { display: flex; align-items: center; gap: 12px; padding: 0 12px; height: 50px; border-radius: var(--r-sm); transition: background .15s ease; }
.ds-tasks li:hover { background: var(--hover); }
.ds-check { width: 20px; height: 20px; border: 2px solid var(--faint); border-radius: 6px; background: none; cursor: pointer; flex: 0 0 auto; position: relative; transition: background .15s ease, border-color .15s ease; }
.ds-check.on { background: var(--accent); border-color: var(--accent); }
.ds-check.on::after { content: ""; position: absolute; left: 5px; top: 1px; width: 5px; height: 10px; border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(45deg); }
.ds-tk-t { flex: 1; font-size: .84rem; color: var(--ink); }
.ds-tasks li.done .ds-tk-t { text-decoration: line-through; color: var(--faint); }
.ds-flag { font-size: .63rem; font-weight: 700; padding: 3px 9px; border-radius: 999px; background: var(--soft); color: var(--muted); }
.ds-flag.high { background: var(--neg-soft); color: var(--neg); } .ds-flag.med { background: var(--med-soft); color: var(--med); }
.ds-tasks li i { font-size: .69rem; color: var(--muted); font-style: normal; width: 58px; text-align: right; }

/* ---- settings modal ---- */
.ds-modal { position: absolute; inset: 0; z-index: 80; background: rgba(8,12,20,.4); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); display: flex; align-items: center; justify-content: center; animation: dsPop .16s ease; }
.ds-modal[hidden] { display: none; }
.ds-modal-card { width: min(440px, 90%); background: var(--glass); -webkit-backdrop-filter: blur(30px) saturate(1.6); backdrop-filter: blur(30px) saturate(1.6); border: 1px solid var(--glass-brd); border-radius: var(--r); padding: 20px; box-shadow: 0 40px 90px rgba(0,0,0,.4); }
.ds-modal-h { display: flex; align-items: center; justify-content: space-between; margin-bottom: 15px; }
.ds-modal-h h4 { margin: 0; font-size: 1.05rem; color: var(--ink); }
.ds-profile { display: flex; align-items: center; gap: 14px; padding-bottom: 6px; }
.ds-profile img { width: 54px; height: 54px; border-radius: var(--r-sm); object-fit: cover; }
.ds-profile b { font-size: 1rem; color: var(--ink); }
.ds-profile i { display: block; font-size: .77rem; color: var(--muted); font-style: normal; margin: 2px 0 6px; }
.ds-modal-f { display: flex; justify-content: flex-end; gap: 8px; margin-top: 16px; }

/* ---- live collaborator cursors ---- */
.ds-cursor { position: absolute; left: 0; top: 0; z-index: 70; pointer-events: none; opacity: 0; transform: translate(-60px,-60px);
  transition: transform 1s cubic-bezier(.45,.05,.15,1), opacity .5s ease; will-change: transform; }
.ds-cursor.show { opacity: 1; }
.ds-cur-ptr { width: 22px; height: 22px; display: block; }
.ds-cur-ptr path { fill: var(--c); stroke: #fff; stroke-width: 1.4; }
.ds-cursor.click .ds-cur-ptr { animation: dsCurClick .35s ease; }
@keyframes dsCurClick { 50% { transform: scale(.72); } }
.ds-cur-tip { position: absolute; left: 15px; top: 16px; background: var(--c); color: #fff; font-size: .64rem; font-weight: 700; padding: 3px 8px; border-radius: 3px 10px 10px 10px; white-space: nowrap; box-shadow: 0 4px 12px rgba(19,32,51,.28); display: inline-flex; align-items: center; gap: 6px; }
.ds-cur-tping { display: none; gap: 2px; }
.ds-cursor.typing .ds-cur-tping { display: inline-flex; }
.ds-cur-tping span { width: 3px; height: 3px; border-radius: 50%; background: rgba(255,255,255,.9); animation: dsType 1.1s ease-in-out infinite; }
.ds-cur-tping span:nth-child(2) { animation-delay: .18s; } .ds-cur-tping span:nth-child(3) { animation-delay: .36s; }
.ds-cur-type { position: absolute; left: 15px; top: 36px; background: #fff; color: #16233a; font-size: .68rem; padding: 5px 10px; border-radius: 10px; box-shadow: 0 8px 20px rgba(19,32,51,.22); white-space: nowrap; max-width: 220px; }
.ds-cur-type[hidden] { display: none; }
.ds-cur-type::after { content: "▍"; color: var(--c); margin-left: 1px; animation: dsCaret 1s step-end infinite; }
@keyframes dsCaret { 50% { opacity: 0; } }
.ds-cur-ripple { position: absolute; z-index: 68; width: 14px; height: 14px; margin: -7px; border-radius: 50%; border: 2px solid var(--c); pointer-events: none; animation: dsRippleC .6s ease-out forwards; }
@keyframes dsRippleC { from { transform: scale(.4); opacity: .7; } to { transform: scale(2.8); opacity: 0; } }

/* chat list labels + group avatars */
.ds-chat-lbl { font-size: .58rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--faint); padding: 9px 8px 3px; }
.ds-chat-list > .ds-chat-lbl:first-child { padding-top: 2px; }
.ds-grp { position: relative; width: 36px; height: 36px; flex: 0 0 auto; }
.ds-grp > * { position: absolute; width: 22px; height: 22px; border-radius: 50% !important; object-fit: cover; border: 2px solid var(--glass); box-shadow: 0 1px 3px rgba(19,32,51,.2); }
.ds-grp > .ds-cw-ic { background: var(--accent); color: #fff; display: grid; place-items: center; }
.ds-grp > .ds-cw-ic svg { width: 11px; height: 11px; }
.ds-grp > :nth-child(1) { top: -1px; left: -1px; z-index: 3; }
.ds-grp > :nth-child(2) { bottom: -1px; right: -1px; z-index: 2; }
.ds-grp > :nth-child(3) { bottom: -1px; left: -1px; z-index: 1; }

/* live presence dots on nav buttons */
.ds-nav-dots { display: inline-flex; align-items: center; gap: 4px; margin-left: auto; padding-left: 6px; flex: 0 0 auto; }
.ds-nav-dot { width: 8px; height: 8px; min-width: 8px; max-width: 8px; flex: 0 0 8px; aspect-ratio: 1 / 1; border-radius: 50%; background: var(--c); box-shadow: 0 0 0 1.5px rgba(15,22,36,.85); animation: dsDotIn .3s cubic-bezier(.3,1.4,.5,1); }
@keyframes dsDotIn { from { transform: scale(0); } }

/* below its natural width the dashboard keeps its full desktop layout and is
   scaled down to fit (JS: scaleDash) — a true-to-life mini of the product */
.dash-scale { position: relative; }
/* when JS scales the dash it sets .dash-scale height inline; guard the wrapper */
.dash-scale.is-scaled { overflow: hidden; border-radius: 26px; box-shadow: 0 40px 90px rgba(19,32,51,.24); }
.dash-scale.is-scaled .dash {
  transform-origin: top left; will-change: transform;
  height: 786px; box-shadow: none; border-radius: 26px;
}
.dash-scale.is-scaled .ds-cursor { display: none; }

/* ============================================================
   Responsive — hamburger nav menus + section stacking
   ============================================================ */
.nav-burger { display: none; width: 40px; height: 40px; border: 0; background: none; padding: 0; cursor: pointer; align-items: center; justify-content: center; flex: 0 0 auto; }
.wf-nav .nav-burger svg { width: 22px; height: 22px; }
.nav-burger .nb-close { display: none; }
.wf-nav.open .nav-burger .nb-open { display: none; }
.wf-nav.open .nav-burger .nb-close { display: inline-flex; }
.site-15 .nav-burger { color: #1a1a1a; }
.site-nexuss .nav-burger { color: #111; }
.site-nexuss .wf-nav.over-dark .nav-burger { color: #fff; }

@media (max-width: 860px) {
  .nav-burger { display: inline-flex; }
  /* --- Nexuss nav --- */
  .site-nexuss .nav-pill-links, .site-nexuss .nav-cta-nexuss { display: none; }
  .site-nexuss .nav-row { flex-wrap: wrap; }
  .site-nexuss .wf-nav.open .nav-pill-links {
    display: flex; position: static; transform: none; flex-direction: column; order: 5;
    flex-basis: 100%; width: 100%; margin-top: 12px; padding: 8px; gap: 2px;
    background: #ffffff; border-radius: 16px; box-shadow: 0 18px 44px rgba(0,0,0,.22); }
  .site-nexuss .wf-nav.open .nav-pill-links a { color: #111; text-align: left; border-radius: 10px; }
  .site-nexuss .wf-nav.open .nav-pill-links a:hover, .site-nexuss .wf-nav.open .nav-pill-links a.current { background: #111; color: #fff; }
  .site-nexuss .wf-nav.open .nav-pill-links a { padding: 12px 14px; font-size: .92rem; }
  .site-nexuss .wf-nav.open .nav-cta-nexuss { display: flex; order: 6; width: 100%; margin-top: 8px; justify-content: center; }
  .site-nexuss .wf-nav.open .nav-cta-nexuss .bt-txt { flex: 1; text-align: center; }
  /* dim the page behind the open menu so hero content doesn't bleed through */
  .site-nexuss .wf-nav.open::after {
    content: ""; position: fixed; inset: 0; z-index: -1;
    background: rgba(4,8,16,.6); backdrop-filter: blur(7px); -webkit-backdrop-filter: blur(7px); }
  /* --- 15.Group nav --- */
  .site-15 .gn-links, .site-15 .gn-cta { display: none; }
  .site-15 .glass-nav { flex-wrap: wrap; }
  .site-15 .nav-burger { margin-left: auto; }
  .site-15 .wf-nav.open .glass-nav { width: min(92%, 380px); }
  .site-15 .wf-nav.open .gn-links {
    display: flex; flex-direction: column; order: 5; flex-basis: 100%; width: 100%;
    margin-top: 10px; padding-top: 10px; border-top: 1px solid rgba(0,0,0,.12); gap: 2px; }
  .site-15 .wf-nav.open .gn-links a { border-radius: 10px; }
  .site-15 .wf-nav.open .gn-cta { display: inline-flex; order: 6; margin-top: 6px; align-self: flex-start; }
}

/* section stacking safety net */
@media (max-width: 860px) {
  .site-nexuss .sticky-row { grid-template-columns: 1fr; gap: 28px; }
  .site-nexuss .split, .site-nexuss .split.rev { grid-template-columns: 1fr; gap: 30px; }
}
@media (max-width: 640px) {
  .site-15 .road-card { flex-direction: column; gap: 16px; min-height: 0; }
  .site-15 .road-num { font-size: clamp(3rem, 16vw, 5rem); }
  .site-15 .duo, .site-15 .tri3-split { gap: 12px; }
  .site-nexuss .stats { grid-template-columns: 1fr 1fr; }
  .wf-foot .foot-cols, .site-15 .foot-4 { grid-template-columns: 1fr; gap: 26px; }
  .site-15 .co2, .site-nexuss .co-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Mobile overhaul — real phone formatting, not shrunk desktop
   ============================================================ */
@media (max-width: 760px) {
  /* tighter, consistent vertical rhythm */
  .panel + .panel { margin-top: 60px; }
  .site-nexuss .panel + .panel { margin-top: 52px; }
  /* breathing room from the screen edges */
  .site-nexuss .wrap { padding: 0 18px; }
  .site-15 .wrap { padding: 0 16px; }
  .site-nexuss .nav-wrap { padding: 0 12px; }
  /* type scale */
  .display { font-size: clamp(2.1rem, 9vw, 3.1rem); line-height: 1.04; }
  h1 { font-size: clamp(2rem, 8vw, 2.9rem); }
  h2 { font-size: clamp(1.55rem, 6.6vw, 2.2rem); line-height: 1.12; }
  .lead { font-size: 1.02rem; line-height: 1.52; }
  .btn { font-size: .75rem; padding: 12px 20px; }

  /* 15.Group — drop the full-viewport sections; use padding rhythm */
  .site-15 .panel { min-height: 0; padding: 52px 0; }
  .site-15 .g15-lead-intro, .site-15 .g15-lead-grid, .site-15 .g15-tri3, .site-15 .g15-duo, .site-15 .g15-team, .site-15 .g15-road, .site-15 .g15-quad, .site-15 .g15-why { min-height: 0; padding: 44px 0; }
  .site-15 #hero { min-height: auto; padding: 0; }
  .site-15 .hero-15-card { margin: 8px; min-height: 82vh; border-radius: 26px; }
  .site-15 .hero-15-inner { padding: 96px 22px 44px; }
  .site-15 #hero h1.display { font-size: clamp(2.2rem, 10vw, 3.4rem); }
  .site-15 .duo-card, .site-15 .tri3-card, .site-15 .lg-text, .site-15 .cta-card, .site-15 .foot-card { border-radius: 24px; }
  .site-15 .duo-text { padding: 40px 24px; }
  .site-15 .duo-graphic { min-height: 300px; }
  .site-15 .quad, .site-15 .pillars, .site-15 .co2, .site-15 .lead-grid, .site-15 .lead-grid2, .site-15 .roads, .site-15 .duo, .site-15 .tri3-split { padding-left: 12px; padding-right: 12px; }
  .site-15 .quad-card, .site-15 .pillar { min-height: clamp(320px, 60vw, 420px); }
  .site-15 .cta-split { padding: 0 12px 12px; }

  /* Nexuss hero — full-height, contained */
  .site-nexuss .hero-nexuss .wrap { min-height: 100vh; padding: 15vh 18px 12vh; }
  /* zoom the terrain in so it fills the lower hero instead of a thin strip */
  .hero-nexuss .hero-bg { background-size: cover; background-position: center bottom; }
  .hero-nexuss .hero-inner { gap: 22px; }
  .hero-nexuss .hero-title img { width: 100%; max-width: 100%; }
  .hero-nexuss .hero-bottom { max-width: 100%; }
  .site-nexuss .split, .site-nexuss .split.rev { gap: 26px; }
  .site-nexuss .frame { min-height: 240px; }

  /* footers */
  .wf-foot .foot-card, .site-15 .foot-card { padding: 32px 22px; }
  .foot-bar { flex-direction: column; gap: 10px; align-items: flex-start; }

  /* nav pill sizing on tiny screens */
  .site-15 .glass-nav { padding: 7px 8px 7px 12px; }
  /* no horizontal overflow anywhere */
  html, body { overflow-x: hidden; }
  /* dashboard keeps desktop layout, scaled to fit (JS scaleDash) */
  .dash-head { margin-bottom: 18px; }
  .dash-head h2 { font-size: clamp(1.4rem, 6.5vw, 2rem); }
}

@media (max-width: 440px) {
  .site-nexuss .wrap { padding: 0 14px; }
  .site-15 .wrap { padding: 0 13px; }
  .display { font-size: clamp(1.85rem, 9.5vw, 2.5rem); }
  h2 { font-size: clamp(1.4rem, 7.2vw, 1.95rem); }
  .btn-row { gap: 10px; }
  .site-15 .lead-grid2, .site-15 .quad, .site-15 .pillars, .site-15 .co2 { gap: 10px; }
  .site-15 .hero-15-card { min-height: 76vh; }
  .site-15 .hero-15-inner { padding: 84px 18px 36px; }
}
