/* ═══════════════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════════════ */
:root {
  --bg:        #FAFAF7;
  --bg2:       #F3EFE6;
  --bg3:       #EAE4D8;
  --white:     #FFFFFF;
  --ink:       #0D0C09;
  --ink-70:    rgba(13,12,9,.70);
  --ink-50:    rgba(13,12,9,.50);
  --ink-30:    rgba(13,12,9,.30);
  --ink-15:    rgba(13,12,9,.15);
  --ink-08:    rgba(13,12,9,.08);
  --ink-04:    rgba(13,12,9,.04);

  /* ── Housle brand palette (from client style guide) ──
     main/default #60B198 · slate #5A7184 · coral #F26665
     yellow #FFCC29 · lime #C5D86D · ink #112441           */
  --coral:     #60B198;   /* Housle main/default — teal */
  --coral-dk:  #4C9079;
  --coral-md:  #84C3AF;
  --coral-lt:  rgba(96,177,152,.10);
  --coral-xs:  rgba(96,177,152,.06);

  --hs-slate:    #5A7184;   /* Housle slate */
  --hs-slate-lt: rgba(90,113,132,.09);
  --hs-coral:     #F26665;   /* Housle coral */
  --hs-coral-lt:  rgba(242,102,101,.10);
  --hs-yellow:     #FFCC29;   /* Housle yellow */
  --hs-yellow-lt:  rgba(255,204,41,.10);

  /* Portfolio design-system tokens (match site-wide palette) */
  --indigo:#4338CA; --indigo-lt:rgba(67,56,202,.09);
  --green:#16803D;  --green-lt:rgba(22,128,61,.10);
  --amber:#B45309;  --amber-lt:rgba(180,83,9,.10);
  --lime:      #C5D86D;   /* Housle lime */
  --navy:      #112441;   /* Housle ink/navy — distinct from portfolio --ink */
  --navy-70:   rgba(17,36,65,.70);
  --navy-50:   rgba(17,36,65,.50);

  --rule:      rgba(13,12,9,.09);
  --rule-lt:   rgba(13,12,9,.05);

  --ff-d: 'Bricolage Grotesque', sans-serif;
  --ff-b: 'Manrope', sans-serif;
  --ff-m: 'JetBrains Mono', monospace;

  --r-xl: 24px;
  --r-lg: 18px;
  --r-md: 12px;
  --r-sm:  8px;

  --shadow-sm:   0 2px 12px rgba(13,12,9,.07);
  --shadow-md:   0 8px 32px rgba(13,12,9,.09);
  --shadow-lg:   0 20px 56px rgba(13,12,9,.12), 0 4px 12px rgba(13,12,9,.06);
  --shadow-coral:0 8px 28px rgba(96,177,152,.35);
}

/* ═══════════════════════════════════════════
   RESET
═══════════════════════════════════════════ */
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; }
body {
  font-family:var(--ff-b);
  background:var(--bg);
  color:var(--ink);
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
  cursor:none;
}
@media(hover:none){body{cursor:auto;}}
a { text-decoration:none; color:inherit; }
img { display:block; max-width:100%; }

/* ─── Custom Cursor ─── */
#cursor {
  width:9px; height:9px;
  background:var(--coral);
  border-radius:50%;
  position:fixed;
  pointer-events:none;
  z-index:9999;
  transform:translate(-50%,-50%);
  transition:width .2s, height .2s, opacity .2s;
  mix-blend-mode:multiply;
}
#cursor.big { width:32px; height:32px; opacity:.25; }
@media(hover:none){#cursor{display:none;}}

/* ─── Noise texture overlay ─── */
body::after {
  content:'';
  position:fixed; inset:0;
  pointer-events:none; z-index:998;
  opacity:.3;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='.05'/%3E%3C/svg%3E");
}

/* ─── Layout ─── */
.container { max-width:1120px; margin:0 auto; padding:0 44px; }

/* ─── Scroll Reveal ─── */
.reveal {
  opacity:0; transform:translateY(26px);
  transition:opacity .7s cubic-bezier(.22,.68,0,1.2), transform .7s cubic-bezier(.22,.68,0,1.2);
}
.reveal.in { opacity:1; transform:none; }
.d1{transition-delay:.06s} .d2{transition-delay:.12s}
.d3{transition-delay:.18s} .d4{transition-delay:.24s}

/* ─── Shared typography ─── */
.eyebrow {
  font-family:var(--ff-m); font-size:10px;
  letter-spacing:.18em; text-transform:uppercase;
  color:var(--ink-50);
  display:inline-flex; align-items:center; gap:12px;
  margin-bottom:20px;
}
.eyebrow::before { content:''; width:22px; height:1px; background:currentColor; }
.eyebrow.on-dark { color:rgba(255,255,255,.4); }
.eyebrow.on-dark::before { background:rgba(255,255,255,.4); }
.eyebrow.coral-e { color:var(--coral); }

.section-title {
  font-family:var(--ff-d);
  font-size:clamp(32px,4vw,50px);
  font-weight:800; line-height:1.05;
  letter-spacing:-.025em; color:var(--ink);
}

/* ═══════════════════════════════════════════
   NAV
═══════════════════════════════════════════ */
.nav {
  position:fixed; top:0; left:0; right:0; z-index:200;
  height:64px; padding:0 44px;
  display:flex; align-items:center; justify-content:space-between;
  background:rgba(250,250,247,.90);
  backdrop-filter:blur(24px) saturate(1.9);
  border-bottom:1px solid var(--rule);
  transition:box-shadow .3s;
}
.nav.scrolled { box-shadow:0 4px 24px rgba(13,12,9,.07); }

.nav-logo {
  font-family:var(--ff-d);
  font-size:17px; font-weight:800; letter-spacing:-.02em;
  color:var(--ink);
  display:flex; align-items:center; gap:10px;
}
.nav-logo .logo-dot {
  width:8px; height:8px;
  border-radius:50%;
  background:var(--coral);
  display:inline-block;
  position:relative;
}
.nav-logo .logo-dot::after {
  content:'';
  position:absolute; inset:-4px;
  border-radius:50%;
  background:rgba(240,78,56,.25);
  animation:ring-pulse 2s ease-out infinite;
}
@keyframes ring-pulse {
  0%{transform:scale(1);opacity:1}
  100%{transform:scale(2);opacity:0}
}

.nav-links { display:flex; align-items:center; gap:30px; }
.nav-link {
  font-size:13px; font-weight:500;
  color:var(--ink-50);
  position:relative; transition:color .2s;
  display:flex; align-items:center; gap:8px;
}
.nav-link::after {
  content:''; position:absolute;
  bottom:-4px; left:0; right:0; height:1.5px;
  background:var(--coral);
  transform:scaleX(0); transform-origin:left;
  transition:transform .25s;
}
.nav-link:hover { color:var(--ink); }
.nav-link:hover::after { transform:scaleX(1); }

.nav-cta {
  background:var(--ink); color:var(--bg);
  padding:9px 22px; border-radius:100px;
  font-size:13px; font-weight:600;
  transition:all .22s;
}
.nav-cta:hover {
  background:var(--coral);
  transform:translateY(-1px);
  box-shadow:var(--shadow-coral);
}

.nav-burger {
  display:none; cursor:pointer;
  flex-direction:column; gap:5px; padding:6px;
}
.nav-burger span {
  width:22px; height:2px; border-radius:2px;
  background:var(--ink); transition:all .25s;
  display:block;
}
.nav-burger.open span:nth-child(1){ transform:rotate(45deg) translate(5px,5px); }
.nav-burger.open span:nth-child(2){ opacity:0; transform:translateX(-5px); }
.nav-burger.open span:nth-child(3){ transform:rotate(-45deg) translate(5px,-5px); }

.nav-mobile {
  display:none; position:fixed;
  top:64px; left:0; right:0; bottom:0;
  background:rgba(250,250,247,.98);
  backdrop-filter:blur(20px);
  z-index:199;
  flex-direction:column; justify-content:center;
  align-items:center; gap:16px;
  padding:48px;
}
.nav-mobile.open { display:flex; }
.nav-mobile-link {
  font-family:var(--ff-d);
  font-size:clamp(36px,8vw,54px);
  font-weight:800; letter-spacing:-.025em;
  color:var(--ink-30); transition:color .2s;
  line-height:1.1;
}
.nav-mobile-link:hover { color:var(--coral); }
.nm-cta {
  margin-top:20px;
  background:var(--coral); color:#fff;
  padding:14px 36px; border-radius:100px;
  font-size:16px; font-weight:600;
}

/* ═══════════════════════════════════════════
   CASE STUDY HERO
═══════════════════════════════════════════ */
.cs-hero {
  min-height:92vh; padding-top:64px;
  display:flex; flex-direction:column;
  position:relative; overflow:hidden;
}
.hero-bg { position:absolute; inset:0; pointer-events:none; overflow:hidden; }
.hero-glow-1 {
  position:absolute; width:640px; height:640px; border-radius:50%;
  background:radial-gradient(circle,rgba(96,177,152,.08) 0%,transparent 65%);
  top:-180px; right:-120px;
}
.hero-glow-2 {
  position:absolute; width:480px; height:480px; border-radius:50%;
  background:radial-gradient(circle,rgba(197,216,109,.07) 0%,transparent 70%);
  bottom:-60px; left:-60px;
}
.hero-grid {
  position:absolute; inset:0;
  background-image:
    repeating-linear-gradient(0deg,transparent,transparent 63px,var(--rule-lt) 64px),
    repeating-linear-gradient(90deg,transparent,transparent 63px,var(--rule-lt) 64px);
  opacity:.7;
}

.cs-hero-inner {
  flex:1; position:relative; z-index:1;
  display:flex; flex-direction:column; justify-content:flex-end;
  max-width:1120px; margin:0 auto;
  padding:88px 44px 52px; width:100%;
}

.cs-tags { display:flex; flex-wrap:wrap; gap:8px; margin-bottom:32px; animation:fadeUp .55s ease both; }
@keyframes fadeUp{from{opacity:0;transform:translateY(18px)}to{opacity:1;transform:none}}
.cs-client-logo {
  display:block; height:30px; width:auto;
  margin-bottom:28px;
  animation:fadeUp .5s ease both;
}
.cs-client-logo svg { display:block; height:100%; width:auto; }
.cs-tag {
  font-family:var(--ff-m); font-size:10px;
  letter-spacing:.09em; text-transform:uppercase;
  padding:7px 15px; border-radius:100px;
  background:var(--white); border:1px solid var(--rule);
  color:var(--ink-50); box-shadow:var(--shadow-sm);
}

.cs-hl {
  font-family:var(--ff-d);
  font-size:clamp(58px,9.5vw,120px);
  font-weight:800; line-height:.92;
  letter-spacing:-.03em; color:var(--ink);
  animation:fadeUp .6s .06s ease both;
}
.cs-hl-sub {
  font-family:var(--ff-d);
  font-size:clamp(58px,9.5vw,120px);
  font-weight:700; line-height:.92;
  letter-spacing:-.03em; color:var(--coral);
  margin-bottom:44px;
  animation:fadeUp .6s .1s ease both;
}

.cs-meta-row {
  display:flex; gap:1px;
  border-top:1px solid var(--rule);
  background:var(--bg2);
  animation:fadeUp .6s .16s ease both;
}
.cs-meta { flex:1; padding:22px 32px; border-right:1px solid var(--rule); }
.cs-meta:last-child { border-right:none; }
.cs-meta-label {
  font-family:var(--ff-m); font-size:10px;
  letter-spacing:.14em; text-transform:uppercase;
  color:var(--ink-50); margin-bottom:6px;
}
.cs-meta-val { font-size:14px; font-weight:600; color:var(--ink); }

/* ═══════════════════════════════════════════
   SECTION WRAPPERS
═══════════════════════════════════════════ */
.section      { padding:100px 0; background:var(--white); }
.section-warm { padding:100px 0; background:var(--bg); }
.section-dark { padding:100px 0; background:var(--ink); }

/* ═══════════════════════════════════════════
   IMAGE PLACEHOLDER
═══════════════════════════════════════════ */
.img-ph {
  width:100%; background:var(--bg2);
  border:1.5px dashed var(--ink-15);
  border-radius:var(--r-lg);
  display:flex; flex-direction:column;
  align-items:center; justify-content:center; gap:8px;
  text-align:center; padding:32px;
  position:relative; overflow:hidden;
}
.img-ph.has-img{ border-style:solid; border-color:var(--rule); padding:0; }
.img-ph img{ width:100%; height:100%; display:block; object-fit:cover; }
.img-ph-label {
  font-family:var(--ff-m); font-size:11px;
  letter-spacing:.12em; text-transform:uppercase;
  color:var(--coral); font-weight:600;
}
.img-ph-size  { font-family:var(--ff-m); font-size:10px; color:var(--ink-30); letter-spacing:.06em; }
.img-ph-hint  { font-size:12px; color:var(--ink-50); max-width:380px; line-height:1.6; margin-top:4px; font-weight:300; }

/* ═══════════════════════════════════════════
   OVERVIEW
═══════════════════════════════════════════ */
.overview-grid {
  display:grid; grid-template-columns:1.25fr 1fr;
  gap:64px; align-items:start; margin-top:48px;
}
.overview-text p {
  font-size:16px; line-height:1.9; font-weight:300;
  color:var(--ink-70); margin-bottom:18px;
}
.overview-text p:last-child { margin-bottom:0; }
.overview-text p strong { color:var(--ink); font-weight:600; }

.overview-stats { display:flex; flex-direction:column; gap:12px; }
.ostat {
  background:var(--white); border:1px solid var(--rule);
  border-radius:var(--r-lg); padding:24px 26px;
  box-shadow:var(--shadow-sm);
  transition:all .25s;
}
.ostat:hover { transform:translateY(-3px); box-shadow:var(--shadow-md); border-color:rgba(240,78,56,.3); }
.ostat-n {
  font-family:var(--ff-d); font-size:42px; font-weight:800;
  color:var(--coral); letter-spacing:-.02em; line-height:1;
  margin-bottom:8px;
}
.ostat-label { font-size:13px; font-weight:400; color:var(--ink-70); line-height:1.55; }

/* ═══════════════════════════════════════════
   WORK SHOWCASE
═══════════════════════════════════════════ */
.work-block { margin-top:48px; display:flex; flex-direction:column; gap:14px; }
.work-row2  { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.work-feature {
  display:grid; grid-template-columns:1.3fr 1fr; align-items:stretch;
  background:var(--white); border:1px solid var(--rule); border-radius:var(--r-lg);
  overflow:hidden; transition:all .3s cubic-bezier(.22,.68,0,1.2);
}
.work-feature:hover { transform:translateY(-5px); box-shadow:var(--shadow-lg); }
.work-feature.reverse { grid-template-columns:1fr 1.3fr; }
.work-feature.reverse .work-feature-media { order:2; }
.work-feature.reverse .work-feature-detail { order:1; }
.work-feature-media { background:var(--bg2); display:flex; align-items:center; padding:26px; }
.work-feature-media img { width:100%; border-radius:var(--r-md); display:block; box-shadow:0 10px 26px rgba(0,0,0,.07); }
.work-feature-media .hs-msg-panel { width:100%; box-shadow:0 10px 26px rgba(0,0,0,.07); }
.work-feature-detail { padding:34px 38px; display:flex; flex-direction:column; justify-content:center; gap:14px; }
.work-feature-num { font-family:var(--ff-m); font-size:10px; letter-spacing:.12em; color:var(--coral); text-transform:uppercase; }
.work-feature-title { font-family:var(--ff-d); font-size:22px; font-weight:700; color:var(--ink); line-height:1.15; }
.work-feature-desc { font-size:13.5px; line-height:1.75; color:var(--ink-70); font-weight:300; }
.work-feature-points { display:flex; flex-direction:column; gap:9px; margin-top:2px; }
.work-feature-point { display:flex; gap:10px; align-items:flex-start; }
.work-feature-point-dot { width:5px; height:5px; border-radius:50%; background:var(--coral); margin-top:7px; flex-shrink:0; }
.work-feature-point p { font-size:12.5px; line-height:1.65; color:var(--ink-70); font-weight:300; }
.work-feature-point p strong { color:var(--ink); font-weight:600; }
.work-feature-tag {
  align-self:flex-start; font-family:var(--ff-m); font-size:9px;
  letter-spacing:.09em; text-transform:uppercase;
  padding:4px 11px; border-radius:100px; white-space:nowrap;
  background:var(--coral-lt); color:var(--coral);
}
.work-feature-tag.indigo { background:var(--hs-slate-lt); color:var(--hs-slate); }
.work-feature-tag.green  { background:var(--hs-coral-lt);  color:var(--hs-coral); }
.work-feature-tag.violet { background:rgba(124,58,237,.10); color:#6D28D9; }
.work-item {
  background:var(--white); border:1px solid var(--rule);
  border-radius:var(--r-lg); padding:14px;
  transition:all .3s cubic-bezier(.22,.68,0,1.2);
}
.work-item:hover { transform:translateY(-5px); box-shadow:var(--shadow-lg); }
.work-item .img-ph { border-radius:var(--r-md); }
.work-caption {
  margin-top:14px; padding:2px 8px 6px;
  display:flex; align-items:flex-start; justify-content:space-between; gap:14px;
}
.work-caption-title { font-family:var(--ff-d); font-size:17px; font-weight:700; color:var(--ink); }
.work-caption-desc  { font-size:12px; font-weight:300; color:var(--ink-50); margin-top:4px; line-height:1.6; }
.work-caption-tag {
  font-family:var(--ff-m); font-size:9px;
  letter-spacing:.09em; text-transform:uppercase;
  padding:4px 11px; border-radius:100px;
  white-space:nowrap; flex-shrink:0;
  background:var(--coral-lt); color:var(--coral);
}
.work-caption-tag.indigo { background:var(--hs-slate-lt); color:var(--hs-slate); }
.work-caption-tag.green  { background:var(--hs-coral-lt);  color:var(--hs-coral); }
.work-caption-tag.violet { background:rgba(124,58,237,.10); color:#6D28D9; }

/* ═══════════════════════════════════════════
   DESIGN SYSTEM & HANDOFF
═══════════════════════════════════════════ */
.ds-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:14px; margin-top:48px; }
.ds-card {
  background:var(--white); border:1px solid var(--rule);
  border-radius:var(--r-lg); padding:32px 28px;
  position:relative; overflow:hidden;
  transition:transform .3s cubic-bezier(.22,.68,0,1.2), box-shadow .3s;
}
.ds-card::before {
  content:''; position:absolute; top:0; left:0; right:0; height:3px;
  transform:scaleX(0); transform-origin:left; transition:transform .35s;
}
.ds-card.c1::before { background:var(--coral); }
.ds-card.c2::before { background:var(--hs-slate); }
.ds-card.c3::before { background:var(--hs-coral); }
.ds-card:hover { transform:translateY(-7px); box-shadow:var(--shadow-lg); }
.ds-card:hover::before { transform:scaleX(1); }

.ds-icon {
  width:46px; height:46px; border-radius:13px;
  display:flex; align-items:center; justify-content:center;
  font-size:21px; margin-bottom:18px;
}
.ds-icon.i1 { background:var(--coral-lt); }
.ds-icon.i2 { background:var(--hs-slate-lt); }
.ds-icon.i3 { background:var(--hs-coral-lt); }

.ds-eyebrow {
  font-family:var(--ff-m); font-size:10px;
  letter-spacing:.14em; text-transform:uppercase;
  color:var(--ink-30); margin-bottom:10px;
}
.ds-title { font-family:var(--ff-d); font-size:20px; font-weight:700; color:var(--ink); margin-bottom:11px; line-height:1.15; }
.ds-body  { font-size:13px; line-height:1.78; color:var(--ink-70); font-weight:300; }

/* ─── Design system board (real Adobe XD artboard) ─── */
.ds-board {
  margin-top:18px;
  border:1px solid var(--rule); border-radius:var(--r-lg);
  overflow:hidden; box-shadow:var(--shadow-md);
  background:var(--bg2);
}
.ds-board-bar {
  display:flex; align-items:center; justify-content:space-between;
  gap:14px; padding:14px 22px;
  background:var(--white); border-bottom:1px solid var(--rule);
}
.ds-board-bar-label {
  font-family:var(--ff-m); font-size:11px;
  letter-spacing:.1em; text-transform:uppercase;
  color:var(--ink-50); display:flex; align-items:center; gap:10px;
}
.ds-board-dot {
  width:8px; height:8px; border-radius:50%;
  background:var(--coral); flex-shrink:0;
}
.ds-board-tool {
  font-family:var(--ff-m); font-size:10px;
  letter-spacing:.08em;
  color:var(--coral); background:var(--coral-lt);
  padding:5px 12px; border-radius:100px; white-space:nowrap;
}
.ds-board-scroll {
  max-height:640px; overflow-y:auto; background:var(--bg2);
  scrollbar-width:thin; scrollbar-color:var(--ink-15) transparent;
}
.ds-board-scroll::-webkit-scrollbar { width:8px; }
.ds-board-scroll::-webkit-scrollbar-track { background:transparent; }
.ds-board-scroll::-webkit-scrollbar-thumb { background:var(--ink-15); border-radius:10px; }
.ds-board-scroll img { width:100%; display:block; }
.ds-board-foot {
  padding:18px 22px; display:flex;
  align-items:flex-start; justify-content:space-between; gap:14px;
  background:var(--white); border-top:1px solid var(--rule);
}

/* ─── Design System Deep Dive (real tokens + live components) ─── */
.ds-intro-row {
  display:flex; align-items:flex-end; justify-content:space-between;
  gap:24px; flex-wrap:wrap; margin-bottom:40px;
}
.ds-filetag {
  display:inline-flex; align-items:center; gap:8px;
  background:var(--white); border:1px solid var(--rule);
  border-radius:100px; padding:7px 16px 7px 8px;
  font-family:var(--ff-m); font-size:10px; letter-spacing:.08em;
  color:var(--ink-50); box-shadow:var(--shadow-sm);
}
.ds-filetag svg { width:18px; height:18px; display:block; }
.ds-filetag b { color:var(--ink); font-weight:600; }

.ds-module {
  background:var(--white);
  border:1px solid var(--rule);
  border-radius:var(--r-xl);
  padding:40px 40px 36px;
  margin-bottom:14px;
  position:relative; overflow:hidden;
}
.ds-module-head {
  display:flex; align-items:flex-start; justify-content:space-between;
  gap:24px; flex-wrap:wrap; margin-bottom:8px;
}
.ds-module-label {
  font-family:var(--ff-m); font-size:9px;
  letter-spacing:.18em; text-transform:uppercase;
  color:var(--ink-30); margin-bottom:10px;
  display:flex; align-items:center; gap:10px;
}
.ds-module-label::before { content:''; width:14px; height:1px; background:currentColor; }
.ds-module-title {
  font-family:var(--ff-d); font-size:26px; font-weight:700;
  color:var(--ink); line-height:1.1; letter-spacing:-.015em;
}
.ds-module-stat { text-align:right; flex-shrink:0; }
.ds-module-stat .ts-n { font-size:34px; }
.ds-module-stat .ts-lbl { font-size:11px; display:block; max-width:170px; margin-top:2px; }
.ds-module-body {
  font-size:13px; line-height:1.78; color:var(--ink-70); font-weight:300;
  max-width:680px; margin-bottom:28px;
}
.ts-n {
  font-family:var(--ff-d); font-size:44px; font-weight:800;
  color:var(--coral); letter-spacing:-.03em; line-height:1;
}
.ts-lbl { font-size:14px; color:var(--ink-70); font-weight:300; }

/* Color module — real swatches */
.cts-swatch-row {
  display:flex; align-items:center; justify-content:center;
  gap:26px; margin-bottom:6px; flex-wrap:wrap; position:relative;
}
.cts-swatch-col { position:relative; display:flex; flex-direction:column; align-items:center; }
.cts-swatch { border-radius:20px; box-shadow:var(--shadow-md); }
.cts-swatch-col.sm .cts-swatch { width:76px; height:76px; border-radius:16px; }
.cts-swatch-col.lg .cts-swatch { width:140px; height:140px; }
.cts-pill {
  position:relative;
  font-family:var(--ff-m); font-size:10px; letter-spacing:.01em;
  background:var(--white); color:var(--ink-70); padding:6px 12px; border-radius:999px;
  box-shadow:var(--shadow-sm); white-space:nowrap;
  display:flex; align-items:center; gap:6px; z-index:1;
  margin-bottom:12px;
}
.cts-pill .cts-wcag {
  font-family:var(--ff-b); font-size:8px; font-weight:700; letter-spacing:.04em;
  color:#16803D; background:rgba(22,128,61,.12); padding:2px 6px; border-radius:999px;
}
.cts-pill .cts-wcag.fail { color:var(--hs-yellow); background:rgba(180,130,9,.12); color:#9A6B00; }
.cts-role-label {
  margin-top:10px;
  font-family:var(--ff-m); font-size:9px; letter-spacing:.1em;
  text-transform:uppercase; color:var(--ink-30); text-align:center;
}
@media (max-width:760px) {
  .cts-swatch-row { gap:16px; }
  .cts-swatch-col.lg .cts-swatch { width:96px; height:96px; }
  .cts-swatch-col.sm .cts-swatch { width:60px; height:60px; }
}

/* Typography module */
.ds-card-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:14px; }
.ds-card-grid.cols-2 { grid-template-columns:repeat(2,1fr); }
.ds-mini-card {
  background:var(--bg); border:1px solid var(--rule);
  border-radius:var(--r-md); padding:22px; transition:all .22s;
}
.ds-mini-card:hover { border-color:var(--coral-md); box-shadow:var(--shadow-sm); transform:translateY(-3px); }
.ds-mini-card-head { display:flex; align-items:baseline; justify-content:space-between; gap:10px; margin-bottom:14px; }
.ds-mini-cat { font-family:var(--ff-m); font-size:9px; letter-spacing:.1em; text-transform:uppercase; color:var(--ink-30); }
.ds-mini-name { font-size:13px; font-weight:600; color:var(--ink); }
.ds-type-card-glyph {
  font-family:'Lato', sans-serif; font-size:46px; font-weight:700;
  color:var(--coral); line-height:1; letter-spacing:-.01em; margin-bottom:14px;
}
.ds-type-card-glyph.nunito { font-family:'Nunito Sans', sans-serif; font-weight:800; }
.ds-type-card-meta { font-family:var(--ff-m); font-size:10px; color:var(--ink-50); line-height:1.8; }
.ds-type-card-meta b { color:var(--ink); font-weight:600; }
.ds-weight-row { display:flex; flex-direction:column; gap:7px; }
.ds-weight-item { display:flex; align-items:baseline; justify-content:space-between; padding:6px 0; border-bottom:1px solid var(--rule); }
.ds-weight-item:last-child { border-bottom:none; }
.ds-weight-sample { font-family:'Nunito Sans', sans-serif; font-weight:700; font-size:14px; color:var(--ink); }
.ds-weight-sample.inactive { color:var(--ink-30); }
.ds-weight-lbl { font-family:var(--ff-m); font-size:9px; color:var(--ink-30); letter-spacing:.05em; }

/* Components module — icon strip + live UI recreations */
.hs-icon-strip {
  display:flex; flex-wrap:wrap; gap:10px;
  padding:22px; background:var(--bg); border:1px solid var(--rule);
  border-radius:var(--r-lg); margin-bottom:24px;
}
.hs-icon-chip {
  width:38px; height:38px; border-radius:10px;
  background:var(--white); border:1px solid var(--rule);
  display:flex; align-items:center; justify-content:center;
  color:var(--navy); flex-shrink:0;
}
.hs-icon-chip svg { width:18px; height:18px; }

.complib-grid { display:grid; grid-template-columns:1.3fr 1fr 1fr; gap:14px; }
.complib-panel {
  background:var(--bg); border:1px solid var(--rule);
  border-radius:var(--r-md); padding:22px;
  display:flex; flex-direction:column; gap:14px;
}
.complib-panel-lbl {
  font-family:var(--ff-m); font-size:9px; letter-spacing:.12em; text-transform:uppercase;
  color:var(--ink-30); margin-bottom:2px;
}
.complib-panel.span-3 { grid-column:span 3; }
.complib-panel.span-2 { grid-column:span 2; }
.complib-footnote {
  margin-top:24px; padding-top:20px; border-top:1px solid var(--rule);
  display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:12px;
}
.complib-footnote-text { font-size:12px; color:var(--ink-50); font-weight:300; }
.complib-footnote-text strong { color:var(--ink); font-weight:600; }

/* Live: top navigation bar replica */
.hs-navbar {
  background:var(--navy); border-radius:var(--r-md);
  padding:13px 18px; display:flex; align-items:center; justify-content:space-between;
  gap:14px; flex-wrap:wrap;
}
.hs-navbar-brand { display:flex; align-items:center; gap:7px; font-family:'Lato',sans-serif; font-weight:700; font-size:14px; color:var(--coral); }
.hs-navbar-brand svg { width:16px; height:16px; }
.hs-navbar-links { display:flex; gap:16px; }
.hs-navbar-links span { font-family:'Lato',sans-serif; font-size:11px; color:rgba(255,255,255,.55); }
.hs-navbar-links span.active { color:var(--coral); font-weight:600; }
.hs-navbar-btn {
  background:var(--coral); color:#fff; font-family:'Lato',sans-serif; font-weight:700;
  font-size:11px; padding:8px 16px; border-radius:8px; white-space:nowrap;
}

/* Live: sidebar nav */
.hs-sidebar { display:flex; flex-direction:column; gap:2px; }
.hs-side-item {
  font-family:'Lato',sans-serif; font-size:12px; color:var(--navy-70);
  padding:9px 12px; border-radius:8px;
}
.hs-side-item.active { background:var(--coral); color:#fff; font-weight:700; }

/* Live: buttons */
.hs-btn-row { display:flex; flex-direction:column; gap:9px; align-items:flex-start; }
.hs-btn {
  font-family:'Lato',sans-serif; font-size:12px; font-weight:700;
  padding:10px 18px; border-radius:8px; display:inline-block;
}
.hs-btn.primary { background:var(--coral); color:#fff; }
.hs-btn.outline { background:transparent; color:var(--navy); border:1.5px solid var(--rule); }
.hs-btn.tinted { background:var(--coral-lt); color:var(--coral-dk); }

/* Live: status / tag pills */
.hs-status-row { display:flex; flex-wrap:wrap; gap:7px; }
.hs-status {
  font-family:var(--ff-m); font-size:9px; letter-spacing:.05em; font-weight:500;
  padding:5px 12px; border-radius:100px; white-space:nowrap;
}
.hs-status.amber  { background:var(--hs-yellow-lt); color:#9A6B00; }
.hs-status.violet { background:rgba(124,58,237,.10); color:#6D28D9; }
.hs-status.mint   { background:var(--coral-lt); color:var(--coral-dk); }
.hs-status.lav    { background:rgba(124,58,237,.08); color:#7C3AED; }

/* Live: work order card */
.hs-wo-card { background:var(--white); border:1px solid var(--rule); border-radius:var(--r-md); padding:14px 16px; }
.hs-wo-top { display:flex; align-items:center; justify-content:space-between; margin-bottom:8px; }
.hs-wo-title { font-family:'Lato',sans-serif; font-size:13px; font-weight:700; color:var(--navy); }
.hs-wo-meta { display:flex; gap:18px; margin-top:10px; }
.hs-wo-meta-item { font-family:var(--ff-m); font-size:9px; color:var(--ink-30); }
.hs-wo-meta-item b { display:block; font-family:'Lato',sans-serif; font-size:11px; color:var(--navy-70); font-weight:500; margin-top:2px; }

/* Live: data table */
.hs-table { width:100%; border-collapse:separate; border-spacing:0 6px; font-family:'Lato',sans-serif; font-size:11px; }
.hs-table th { text-align:left; padding:0 10px 6px; color:var(--ink-30); font-family:var(--ff-m); font-size:9px; letter-spacing:.05em; text-transform:uppercase; font-weight:500; }
.hs-table td { padding:9px 10px; color:var(--navy-70); background:var(--white); }
.hs-table td:first-child { border-radius:8px 0 0 8px; font-weight:600; color:var(--navy); }
.hs-table td:last-child { border-radius:0 8px 8px 0; }

/* Live: in-app messaging thread */
.hs-msg-panel { background:var(--white); border:1px solid var(--rule); border-radius:var(--r-md); overflow:hidden; height:100%; display:flex; flex-direction:column; }
.hs-msg-head { background:var(--navy); padding:12px 16px; display:flex; align-items:center; justify-content:space-between; gap:10px; flex-wrap:wrap; }
.hs-msg-head-who { display:flex; align-items:center; gap:9px; }
.hs-msg-avatar { width:26px; height:26px; border-radius:50%; background:var(--coral); color:#fff; font-family:'Lato',sans-serif; font-weight:700; font-size:11px; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.hs-msg-head-name { font-family:'Lato',sans-serif; font-size:12.5px; font-weight:700; color:#fff; }
.hs-msg-head-sub { font-family:var(--ff-m); font-size:9px; color:rgba(255,255,255,.5); margin-top:1px; }
.hs-msg-ref { font-family:var(--ff-m); font-size:9px; letter-spacing:.05em; color:var(--coral); background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.14); padding:5px 11px; border-radius:100px; white-space:nowrap; }
.hs-msg-body { padding:16px; display:flex; flex-direction:column; gap:10px; background:var(--bg); flex:1; }
.hs-msg-row { display:flex; }
.hs-msg-row.out { justify-content:flex-end; }
.hs-msg-bubble { max-width:78%; padding:9px 13px; border-radius:14px; font-family:'Lato',sans-serif; font-size:12px; line-height:1.5; }
.hs-msg-row.in .hs-msg-bubble { background:var(--white); border:1px solid var(--rule); color:var(--navy-70); border-bottom-left-radius:4px; }
.hs-msg-row.out .hs-msg-bubble { background:var(--coral); color:#fff; border-bottom-right-radius:4px; }
.hs-msg-time { font-family:var(--ff-m); font-size:8.5px; color:var(--ink-30); margin-top:4px; display:block; }
.hs-msg-row.out .hs-msg-time { text-align:right; color:rgba(255,255,255,.6); }

/* Closing strip */
.ds-close-strip {
  display:grid; grid-template-columns:auto 1fr auto; gap:28px; align-items:center;
  background:var(--navy); border-radius:var(--r-xl);
  padding:32px 36px; margin-top:14px;
}
.ds-close-stat { text-align:center; }
.ds-close-stat .ts-n { color:var(--coral-md); font-size:38px; }
.ds-close-stat .ts-lbl { color:rgba(255,255,255,.55); font-size:10px; font-family:var(--ff-m); letter-spacing:.06em; text-transform:uppercase; display:block; margin-top:4px; }
.ds-close-text { font-size:13px; line-height:1.7; color:rgba(255,255,255,.65); font-weight:300; max-width:480px; }
.ds-close-text strong { color:white; font-weight:600; }
.ds-close-badges { display:flex; flex-direction:column; gap:8px; }
.ds-close-badge {
  font-family:var(--ff-m); font-size:9px; letter-spacing:.08em;
  background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.14);
  color:rgba(255,255,255,.8); padding:6px 14px; border-radius:100px; white-space:nowrap;
}
@media(max-width:760px){
  .ds-close-strip { grid-template-columns:1fr; text-align:center; }
  .ds-close-badges { flex-direction:row; justify-content:center; flex-wrap:wrap; }
  .complib-grid { grid-template-columns:1fr; }
  .complib-panel.span-3, .complib-panel.span-2 { grid-column:span 1; }
  .ds-card-grid.cols-2 { grid-template-columns:1fr; }
  .ds-module { padding:28px 22px 24px; }
  .hs-navbar { flex-direction:column; align-items:flex-start; }
  .hs-navbar-links { flex-wrap:wrap; gap:10px 14px; }
}

/* ═══════════════════════════════════════════
   PROCESS
═══════════════════════════════════════════ */
.process-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:14px; margin-top:48px; }
.pstep {
  background:var(--white); border:1px solid var(--rule);
  border-radius:var(--r-lg); padding:28px 24px;
  transition:all .25s;
}
.pstep:hover { border-color:var(--coral); transform:translateY(-4px); box-shadow:var(--shadow-md); }
.pstep-n {
  font-family:var(--ff-m); font-size:10px;
  letter-spacing:.15em; text-transform:uppercase;
  color:var(--coral); margin-bottom:14px;
}
.pstep h3 { font-family:var(--ff-d); font-size:19px; font-weight:700; color:var(--ink); margin-bottom:8px; line-height:1.15; }
.pstep p  { font-size:13px; line-height:1.75; color:var(--ink-70); font-weight:300; }

/* ═══════════════════════════════════════════
   OUTCOMES
═══════════════════════════════════════════ */
.outcomes-grid {
  display:grid; grid-template-columns:repeat(3,1fr); gap:1px;
  background:var(--rule); border-radius:var(--r-xl);
  overflow:hidden; margin-top:48px;
}
.outcome-cell { background:var(--white); padding:40px 32px; transition:background .22s; }
.outcome-cell:hover { background:var(--bg); }
.outcome-n {
  font-family:var(--ff-d); font-size:52px; font-weight:800;
  line-height:1; color:var(--coral); letter-spacing:-.025em;
  margin-bottom:12px;
}
.outcome-title { font-size:14px; font-weight:600; color:var(--ink); margin-bottom:8px; }
.outcome-desc  { font-size:12px; line-height:1.68; color:var(--ink-50); font-weight:300; }

/* ═══════════════════════════════════════════
   NEXT PROJECT
═══════════════════════════════════════════ */
.next-project {
  background:var(--ink); padding:90px 0;
  position:relative; overflow:hidden;
  text-decoration:none; display:block;
}
.next-project::before {
  content:'NEXT'; font-family:var(--ff-d);
  font-size:28vw; font-weight:800;
  color:rgba(255,255,255,.03);
  position:absolute; left:-2vw; bottom:-8vw;
  line-height:1; pointer-events:none; letter-spacing:-.04em;
}
.np-inner { position:relative; z-index:1; max-width:1120px; margin:0 auto; padding:0 44px; }
.np-label {
  font-family:var(--ff-m); font-size:10px;
  letter-spacing:.18em; text-transform:uppercase;
  color:rgba(255,255,255,.35);
  margin-bottom:16px; display:flex; align-items:center; gap:10px;
}
.np-label::before { content:''; width:18px; height:1px; background:currentColor; }
.np-title {
  font-family:var(--ff-d);
  font-size:clamp(40px,6vw,80px);
  font-weight:800; color:#fff;
  letter-spacing:-.03em; line-height:1;
  display:flex; align-items:center; gap:24px;
}
.np-arr {
  width:58px; height:58px; border-radius:50%;
  background:var(--coral); color:#fff;
  display:flex; align-items:center; justify-content:center;
  font-size:20px; flex-shrink:0;
  transition:transform .3s cubic-bezier(.22,.68,0,1.2);
}
.next-project:hover .np-arr { transform:translateX(8px); }
.np-sub { font-size:15px; color:rgba(255,255,255,.4); font-weight:300; margin-top:14px; max-width:520px; }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
footer {
  background:var(--ink); padding:36px 44px;
  display:flex; align-items:center; justify-content:space-between;
  flex-wrap:wrap; gap:20px;
}
.footer-brand {
  font-family:var(--ff-d); font-size:19px; font-weight:800;
  color:white; letter-spacing:-.01em;
}
.footer-brand .fc { color:var(--coral); }
.footer-nav { display:flex; gap:24px; flex-wrap:wrap; }
.footer-nav a {
  font-family:var(--ff-m); font-size:10px;
  letter-spacing:.1em; text-transform:uppercase;
  color:rgba(255,255,255,.35); transition:color .2s;
}
.footer-nav a:hover { color:white; }
.footer-copy {
  font-family:var(--ff-m); font-size:10px;
  letter-spacing:.07em; color:rgba(255,255,255,.25);
}

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media(max-width:1024px){
  .overview-grid { grid-template-columns:1fr; gap:40px; }
  .flow-split { grid-template-columns:1fr; }
}
@media(max-width:900px){
  .container { padding:0 24px; }
  .nav { padding:0 24px; }
  .nav-links,.nav-cta { display:none; }
  .nav-burger { display:flex; }
  .cs-hero-inner { padding:80px 24px 48px; }
  .cs-meta-row { flex-wrap:wrap; }
  .cs-meta { flex:0 0 50%; border-right:none; border-bottom:1px solid var(--rule); }
  .cs-meta:nth-child(odd) { border-right:1px solid var(--rule); }
  .process-grid { grid-template-columns:1fr 1fr; }
  .outcomes-grid { grid-template-columns:1fr; }
  .ds-grid { grid-template-columns:1fr; }
  .work-row2 { grid-template-columns:1fr; }
  .hs-search-split { grid-template-columns:1fr; }
  .hs-kanban { overflow-x:auto; }
  .hs-kanban-col { min-width:120px; }
  .work-feature, .work-feature.reverse { grid-template-columns:1fr; }
  .work-feature .work-feature-media, .work-feature.reverse .work-feature-media { order:1; }
  .work-feature .work-feature-detail, .work-feature.reverse .work-feature-detail { order:2; }
  .work-feature-detail { padding:26px 24px; }
  .rmethod-grid,.insight-split,.flow-split,.reflect-grid,.xf-grid { grid-template-columns:1fr; }
  .section,.section-warm,.section-dark,.next-project { padding:72px 0; }
  .np-inner,.container { padding-left:24px; padding-right:24px; }
  footer { padding:28px 24px; }
}
@media(max-width:600px){
  .cs-hl,.cs-hl-sub { font-size:48px; }
  .process-grid { grid-template-columns:1fr; }
  footer { flex-direction:column; align-items:flex-start; }
}

/* ═══════════════════════════════════════════
   RESEARCH & DISCOVERY
═══════════════════════════════════════════ */
.research-intro{font-size:16px;line-height:1.9;font-weight:300;color:var(--ink-70);max-width:760px;margin-bottom:52px;}
.research-intro strong{color:var(--ink);font-weight:600;}
.rmethod-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:14px;margin-bottom:56px;}
.rmethod-card{background:var(--white);border:1px solid var(--rule);border-radius:var(--r-lg);padding:28px 24px;position:relative;overflow:hidden;}
.rmethod-card::after{content:'';position:absolute;bottom:0;left:0;right:0;height:3px;background:var(--coral);border-radius:0 0 var(--r-lg) var(--r-lg);}
.rmethod-icon{font-size:26px;margin-bottom:16px;}
.rmethod-card h3{font-family:var(--ff-d);font-size:17px;font-weight:700;color:var(--ink);margin-bottom:8px;line-height:1.2;}
.rmethod-card p{font-size:13px;line-height:1.75;color:var(--ink-70);font-weight:300;}
.rmethod-meta{font-family:var(--ff-m);font-size:10px;letter-spacing:.12em;text-transform:uppercase;color:var(--coral);margin-top:14px;}

.insight-split{display:grid;grid-template-columns:1fr 1fr;gap:14px;}
.insight-card{border:1px solid var(--rule);border-radius:var(--r-lg);overflow:hidden;}
.insight-card-head{padding:16px 22px;border-bottom:1px solid var(--rule);display:flex;align-items:center;justify-content:space-between;background:var(--bg2);}
.insight-card-type{font-family:var(--ff-m);font-size:10px;letter-spacing:.13em;text-transform:uppercase;color:var(--ink-50);}
.insight-card-n{font-family:var(--ff-d);font-size:22px;font-weight:800;color:var(--coral);}
.insight-card-body{padding:20px 22px;background:var(--white);}
.insight-row{display:flex;gap:12px;align-items:flex-start;padding:10px 0;border-bottom:1px solid var(--rule-lt);}
.insight-row:last-child{border-bottom:none;padding-bottom:0;}
.insight-dot{width:6px;height:6px;border-radius:50%;background:var(--coral);flex-shrink:0;margin-top:6px;}
.insight-row p{font-size:13px;line-height:1.7;color:var(--ink-70);font-weight:300;}
.insight-row p strong{color:var(--ink);font-weight:600;}

/* ═══════════════════════════════════════════
   IA & USER FLOWS
═══════════════════════════════════════════ */
.flow-intro{font-size:16px;line-height:1.9;font-weight:300;color:var(--ink-70);max-width:760px;margin-bottom:48px;}
.flow-intro strong{color:var(--ink);font-weight:600;}
.flow-row{display:flex;align-items:center;gap:10px 0;flex-wrap:wrap;padding-bottom:4px;}
.flow-step{background:var(--white);border:1px solid var(--rule);border-radius:var(--r-sm);padding:11px 16px;font-size:12.5px;font-weight:500;color:var(--ink);white-space:nowrap;line-height:1.2;text-align:center;flex-shrink:0;}
.flow-step.start{background:var(--coral);color:#fff;border-color:var(--coral);}
.flow-step.end{background:var(--hs-slate);color:#fff;border-color:var(--hs-slate);}
.flow-step.trust{background:var(--hs-yellow-lt);border-color:rgba(154,107,0,.25);color:#9A6B00;}
.flow-step.check{background:rgba(124,58,237,.08);border-color:rgba(124,58,237,.2);color:#7C3AED;}
.flow-arr{font-size:12px;color:var(--ink-30);padding:0 7px;flex-shrink:0;}
.flow-diagram-wrap{background:var(--bg2);border-radius:var(--r-xl);padding:36px 40px;}
.flow-split{display:grid;grid-template-columns:1fr;gap:20px;min-width:0;}
.flow-card{background:var(--white);border:1px solid var(--rule);border-radius:var(--r-lg);padding:28px 26px;min-width:0;overflow:hidden;}
.flow-row{min-width:0;}
.flow-card-label{font-family:var(--ff-m);font-size:10px;letter-spacing:.13em;text-transform:uppercase;color:var(--ink-50);margin-bottom:20px;display:flex;align-items:center;gap:8px;}
.flow-card-badge{padding:3px 9px;border-radius:100px;font-size:9px;letter-spacing:.08em;}
.flow-card-badge.b2c{background:var(--coral-lt);color:var(--coral-dk);}
.flow-card-badge.b2b{background:var(--hs-slate-lt);color:var(--hs-slate);}

.flow-vert { display:flex; flex-direction:column; }
.flow-vnode { display:flex; gap:14px; position:relative; padding-bottom:24px; }
.flow-vnode:last-child { padding-bottom:0; }
.flow-vnode::before {
  content:''; position:absolute; left:13px; top:30px; bottom:0;
  width:2px; background:var(--rule);
}
.flow-vnode:last-child::before { display:none; }
.flow-vnode-dot {
  width:28px; height:28px; border-radius:50%; background:var(--white);
  border:2px solid var(--coral); color:var(--coral);
  font-family:var(--ff-m); font-size:11px; font-weight:700;
  display:flex; align-items:center; justify-content:center; flex-shrink:0; z-index:1;
}
.flow-vnode.start .flow-vnode-dot { background:var(--coral); color:#fff; }
.flow-vnode.end .flow-vnode-dot { background:var(--hs-slate); border-color:var(--hs-slate); color:#fff; }
.flow-vnode.trust .flow-vnode-dot { border-color:#9A6B00; color:#9A6B00; }
.flow-vnode.check .flow-vnode-dot { border-color:#7C3AED; color:#7C3AED; }
.flow-vnode-body { padding-top:2px; }
.flow-vnode-title { font-family:'Lato',sans-serif; font-weight:700; font-size:13.5px; color:var(--ink); }
.flow-vnode-desc { font-size:11.5px; color:var(--ink-50); margin-top:3px; line-height:1.55; font-weight:300; }

/* ═══════════════════════════════════════════
   IN-CASE-STUDY UI MOCKUPS (Kanban / search / detail / docs)
═══════════════════════════════════════════ */
.hs-app-panel { background:var(--white); border:1px solid var(--rule); border-radius:var(--r-md); overflow:hidden; }
.hs-app-body { padding:16px; background:var(--bg); }

.hs-kanban { display:flex; gap:9px; }
.hs-kanban-col { background:var(--white); border:1px solid var(--rule); border-radius:9px; padding:9px; flex:1; min-width:0; }
.hs-kanban-col-head { font-family:var(--ff-m); font-size:8.5px; letter-spacing:.06em; text-transform:uppercase; color:var(--ink-30); margin-bottom:8px; display:flex; align-items:center; justify-content:space-between; }
.hs-kanban-col-head b { font-family:'Lato',sans-serif; font-size:10px; color:var(--ink-50); }
.hs-kanban-card { background:var(--bg); border:1px solid var(--rule); border-radius:7px; padding:8px 9px; margin-bottom:7px; }
.hs-kanban-card:last-child { margin-bottom:0; }
.hs-kanban-card-title { font-family:'Lato',sans-serif; font-size:11px; font-weight:700; color:var(--navy); line-height:1.3; }
.hs-kanban-card-meta { font-family:var(--ff-m); font-size:8.5px; color:var(--ink-30); margin-top:5px; }

.hs-search-split { display:grid; grid-template-columns:1fr 1fr; gap:10px; }
.hs-map-mock { background:linear-gradient(135deg,#DCEEE6,#EAF3EF); border-radius:9px; position:relative; min-height:170px; overflow:hidden; }
.hs-map-mock::before { content:''; position:absolute; inset:0; background-image:linear-gradient(rgba(96,177,152,.12) 1px,transparent 1px),linear-gradient(90deg,rgba(96,177,152,.12) 1px,transparent 1px); background-size:22px 22px; }
.hs-map-pin { position:absolute; width:10px; height:10px; border-radius:50% 50% 50% 0; background:var(--coral); transform:rotate(-45deg); box-shadow:0 2px 5px rgba(0,0,0,.18); }
.hs-listing-list { display:flex; flex-direction:column; gap:7px; }
.hs-listing-card { display:flex; gap:9px; background:var(--white); border:1px solid var(--rule); border-radius:8px; padding:8px; align-items:center; }
.hs-listing-thumb { width:38px; height:38px; border-radius:6px; background:linear-gradient(135deg,#E7ECEA,#DCE4E1); flex-shrink:0; }
.hs-listing-info { min-width:0; }
.hs-listing-title { font-family:'Lato',sans-serif; font-size:11px; font-weight:700; color:var(--navy); white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.hs-listing-price { font-family:var(--ff-m); font-size:9px; color:var(--coral); margin-top:2px; }

.hs-gallery-strip { display:grid; grid-template-columns:2fr 1fr 1fr; gap:6px; height:92px; margin-bottom:10px; }
.hs-gallery-strip div { background:linear-gradient(135deg,#E7ECEA,#DCE4E1); border-radius:7px; }
.hs-fact-row { display:flex; gap:16px; flex-wrap:wrap; margin-bottom:12px; }
.hs-fact { font-family:var(--ff-m); font-size:8.5px; color:var(--ink-30); }
.hs-fact b { display:block; font-family:'Lato',sans-serif; font-size:12px; color:var(--navy); font-weight:700; margin-top:3px; }

.hs-stage-row { display:flex; gap:6px; margin-bottom:12px; flex-wrap:wrap; }

/* ═══════════════════════════════════════════
   REFLECTIONS
═══════════════════════════════════════════ */
.reflect-grid{display:grid;grid-template-columns:1.2fr 1fr;gap:56px;margin-top:48px;align-items:start;}
.reflect-body p{font-size:16px;line-height:1.92;font-weight:300;color:var(--ink-70);margin-bottom:20px;}
.reflect-body p:last-child{margin-bottom:0;}
.reflect-body strong{color:var(--ink);font-weight:600;}
.reflect-takeaways{display:flex;flex-direction:column;gap:10px;}
.reflect-item{background:var(--white);border:1px solid var(--rule);border-radius:var(--r-md);padding:20px 22px;display:flex;gap:14px;align-items:flex-start;}
.reflect-num{font-family:var(--ff-m);font-size:11px;letter-spacing:.1em;color:var(--coral);flex-shrink:0;padding-top:3px;}
.reflect-item p{font-size:13.5px;line-height:1.7;color:var(--ink-70);font-weight:300;}
.reflect-item p strong{color:var(--ink);font-weight:600;}

/* ═══════════════════════════════════════════
   CROSS-FUNCTIONAL
═══════════════════════════════════════════ */
.xf-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:14px;margin-top:48px;}
.xf-card{background:var(--bg);border:1px solid var(--rule);border-radius:var(--r-lg);padding:30px 26px;}
.xf-icon{width:46px;height:46px;border-radius:13px;display:flex;align-items:center;justify-content:center;font-size:21px;margin-bottom:18px;background:var(--coral-lt);}
.xf-card h3{font-family:var(--ff-d);font-size:19px;font-weight:700;color:var(--ink);margin-bottom:9px;}
.xf-card p{font-size:13px;line-height:1.78;color:var(--ink-70);font-weight:300;}

@media(prefers-reduced-motion:reduce){
  *,*::before,*::after { animation-duration:.01ms !important; transition-duration:.01ms !important; }
}
