/* ═══════════════════════════════════════════
   DESIGN TOKENS
   Portfolio shell = Bricolage/Manrope/coral (Galib's site)
   JOBR brand tokens = exact values from JOBR Foundations → Color System
═══════════════════════════════════════════ */
:root {
  /* ── Portfolio shell tokens ── */
  --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);

  --coral:     #F04E38;
  --coral-dk:  #D33E2A;
  --coral-lt:  rgba(240,78,56,.10);
  --coral-xs:  rgba(240,78,56,.06);

  --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(240,78,56,.35);

  /* ═══ JOBR BRAND TOKENS — exact from Foundations/Color System ═══ */
  /* Primary · Deep Ocean */
  --jb-50:  #F5F6FC;  --jb-100: #E4E6F2;  --jb-200: #B6C2FF;  --jb-300: #6F84E8;
  --jb-400: #4659B5;  --jb-600: #263682;  --jb-800: #182049;  --jb-900: #111633;

  /* Complement · Iceberg */
  --ic-50:  #EFFBFF;  --ic-100: #BFEEFF;  --ic-200: #90E1FF;  --ic-300: #58C2E8;
  --ic-400: #47B0D6;  --ic-600: #318CAD;  --ic-800: #1F6A85;  --ic-900: #11485C;

  /* Neutrals · Moon/Black Ocean */
  --mn-50:  #F7F9FF;  --mn-100: #D7DEFF;  --mn-200: #B4BEEB;  --mn-300: #9BA8E3;
  --mn-400: #8D99D2;  --mn-600: #7E8AC1;  --mn-800: #636E9F;  --mn-900: #2F3552;

  /* Extra · Twilight (purple) */
  --tw-100: #D8B9FF; --tw-300: #914BEB; --tw-600: #552099;

  /* Extra · Bright (gold) */
  --br-300: #FFD74B; --br-600: #DBAF18;

  /* Bases · Cloud/Carbon */
  --cb-50:  #1F6A85; --cb-100: #E4EBF1; --cb-300: #94A4B4; --cb-600: #535E68; --cb-900: #14171A;

  /* Status */
  --err-600: #F04438;  --warn-600: #F79009;  --ok-600: #12B76A;

  /* Semantic aliases used throughout this page */
  --jb-primary:    var(--jb-600);
  --jb-primary-lt: rgba(38,54,130,.10);
  --jb-primary-xs: rgba(38,54,130,.06);
  --ic-primary:    var(--ic-600);
  --ic-primary-lt: rgba(49,140,173,.10);
  --shadow-jb:     0 8px 28px rgba(38,54,130,.28);

  --jb-ff: 'Bricolage Grotesque', sans-serif; /* stand-in for Roobert in this doc */
}

/* ═══════════════════════════════════════════
   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%; }

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");
}

#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;}}

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

.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}

.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); }
.eyebrow.jb-e { color:var(--jb-300); }

.section-title {
  font-family:var(--ff-d);
  font-size:clamp(34px,4.2vw,54px);
  font-weight:800; line-height:1.03;
  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;
}
.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; }
.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:100vh;
  padding-top:64px;
  background:var(--jb-900);
  position:relative; overflow:hidden;
  display:flex; flex-direction:column;
}
.cs-hero-bg { position:absolute; inset:0; pointer-events:none; }
.cs-hero-glow {
  position:absolute; width:800px; height:800px; border-radius:50%;
  background:radial-gradient(circle,rgba(70,89,181,.32) 0%,transparent 65%);
  top:-220px; right:-200px;
}
.cs-hero-glow2 {
  position:absolute; width:520px; height:520px; border-radius:50%;
  background:radial-gradient(circle,rgba(88,194,232,.20) 0%,transparent 65%);
  bottom:-120px; left:-100px;
}
.cs-hero-grid {
  position:absolute; inset:0;
  background-image:
    repeating-linear-gradient(0deg,transparent,transparent 63px,rgba(255,255,255,.035) 64px),
    repeating-linear-gradient(90deg,transparent,transparent 63px,rgba(255,255,255,.035) 64px);
}

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

.cs-breadcrumb {
  display:flex; align-items:center; gap:10px;
  font-family:var(--ff-m); font-size:10px;
  letter-spacing:.14em; text-transform:uppercase;
  color:rgba(255,255,255,.32);
  margin-bottom:36px;
}
.cs-breadcrumb a { color:rgba(255,255,255,.32); transition:color .2s; }
.cs-breadcrumb a:hover { color:var(--ic-300); }
.cs-breadcrumb span { color:rgba(255,255,255,.15); }

/* Real JOBR logo lockup, on dark */
.cs-brand-row {
  display:flex; align-items:center; gap:14px;
  margin-bottom:30px;
}
.cs-brand-mark {
  height:34px; width:auto;
  background:white; border-radius:9px;
  padding:7px 10px;
}
.cs-brand-row-label {
  font-family:var(--ff-m); font-size:10px;
  letter-spacing:.16em; text-transform:uppercase;
  color:var(--ic-300);
  display:flex; align-items:center; gap:10px;
}
.cs-brand-row-label::before { content:''; width:22px; height:1px; background:currentColor; }

.cs-hero-hl {
  font-family:var(--ff-d);
  font-size:clamp(50px,7.2vw,92px);
  font-weight:800; line-height:.95;
  letter-spacing:-.035em; color:white;
  margin-bottom:12px;
}
.cs-hero-hl .sub { color:rgba(255,255,255,.30); font-weight:700; display:block; }

.cs-hero-sub {
  font-size:16px; line-height:1.82; font-weight:300;
  color:rgba(255,255,255,.58); max-width:580px;
  margin-bottom:48px; margin-top:18px;
}

.cs-meta-strip {
  display:flex; gap:0; flex-wrap:wrap;
  border-top:1px solid rgba(255,255,255,.10);
  padding-top:32px;
}
.cs-meta-item {
  padding:0 36px 0 0; margin-right:36px;
  border-right:1px solid rgba(255,255,255,.10);
}
.cs-meta-item:last-child { border-right:none; }
.cs-meta-lbl {
  font-family:var(--ff-m); font-size:9px;
  letter-spacing:.18em; text-transform:uppercase;
  color:rgba(255,255,255,.3); margin-bottom:8px;
}
.cs-meta-val {
  font-family:var(--ff-d); font-size:15px;
  font-weight:700; color:white;
}
.cs-meta-val.ic { color:var(--ic-300); }

/* ─── Product mark cluster — real sub-brand marks ─── */
.cs-markcluster {
  position:absolute;
  right:44px; top:50%; transform:translateY(-46%);
  width:420px; height:420px;
  pointer-events:none;
}
.cs-mc-ring {
  position:absolute; top:50%; left:50%;
  transform:translate(-50%,-50%);
  border-radius:50%;
  border:1px dashed rgba(255,255,255,.10);
}
.cs-mc-ring.r1 { width:200px; height:200px; }
.cs-mc-ring.r2 { width:330px; height:330px; animation:ring-spin 32s linear infinite; }
.cs-mc-ring.r3 { width:420px; height:420px; animation:ring-spin 48s linear infinite reverse; }
@keyframes ring-spin { from{transform:translate(-50%,-50%) rotate(0deg)} to{transform:translate(-50%,-50%) rotate(360deg)} }

.cs-mc-center {
  position:absolute; top:50%; left:50%;
  transform:translate(-50%,-50%);
  width:96px; height:96px; border-radius:26px;
  background:white;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 0 0 18px rgba(255,255,255,.06), 0 20px 50px rgba(0,0,0,.35);
  z-index:2; padding:18px;
}
.cs-mc-center img { width:100%; height:100%; object-fit:contain; }

.cs-mc-node {
  position:absolute; top:50%; left:50%;
  width:64px; height:64px;
  border-radius:18px;
  display:flex; align-items:center; justify-content:center;
  background:rgba(255,255,255,.96);
  box-shadow:0 12px 28px rgba(0,0,0,.28);
  padding:13px;
  animation:float-node 4.4s ease-in-out infinite;
}
.cs-mc-node img { width:100%; height:100%; object-fit:contain; }
@keyframes float-node{0%,100%{transform:translate(-50%,-50%) var(--pos) translateY(0)}50%{transform:translate(-50%,-50%) var(--pos) translateY(-6px)}}

.mc1 { --pos: translate(0px,-165px);  animation-delay:0s; }
.mc2 { --pos: translate(143px,-83px); animation-delay:.5s; }
.mc3 { --pos: translate(143px,83px);  animation-delay:1s; }
.mc4 { --pos: translate(0px,165px);   animation-delay:1.5s; }
.mc5 { --pos: translate(-143px,83px); animation-delay:2s; }

/* ═══════════════════════════════════════════
   QUICK STATS BAR
═══════════════════════════════════════════ */
.quick-stats { background:var(--jb-800); display:flex; border-top:3px solid var(--coral); }
.qs-cell {
  flex:1; padding:20px 32px;
  border-right:1px solid rgba(255,255,255,.12);
  display:flex; flex-direction:column;
}
.qs-cell:last-child { border-right:none; }
.qs-n {
  font-family:var(--ff-d); font-size:32px; font-weight:800;
  line-height:1; color:white; letter-spacing:-.025em;
}
.qs-n .qs-u { font-size:16px; font-weight:500; opacity:.6; }
.qs-lbl {
  font-family:var(--ff-m); font-size:9px;
  letter-spacing:.14em; text-transform:uppercase;
  color:rgba(255,255,255,.62); margin-top:5px;
}

/* ═══════════════════════════════════════════
   CONTENT SECTIONS
═══════════════════════════════════════════ */
section { padding:96px 0; }

.overview-grid {
  display:grid; grid-template-columns:58% 42%;
  gap:72px; align-items:start; margin-top:52px;
}
.overview-text p {
  font-size:16px; line-height:1.92; font-weight:300;
  color:var(--ink-70); margin-bottom:22px;
}
.overview-text p:last-child { margin-bottom:0; }
.overview-text strong { color:var(--ink); font-weight:600; }

.role-box {
  background:var(--white);
  border:1px solid var(--rule);
  border-radius:var(--r-lg);
  padding:28px;
  box-shadow:var(--shadow-sm);
}
.role-box-lbl {
  font-family:var(--ff-m); font-size:9px;
  letter-spacing:.18em; text-transform:uppercase;
  color:var(--ink-30); margin-bottom:16px;
  display:flex; align-items:center; gap:10px;
}
.role-box-lbl::before { content:''; width:14px; height:1px; background:currentColor; }
.role-item {
  display:flex; align-items:flex-start; gap:14px;
  padding:14px 0; border-bottom:1px solid var(--rule);
}
.role-item:last-child { border-bottom:none; padding-bottom:0; }
.role-icon {
  width:36px; height:36px; border-radius:10px;
  background:var(--jb-primary-lt);
  display:flex; align-items:center; justify-content:center;
  font-size:16px; flex-shrink:0;
}
.role-title { font-size:13px; font-weight:600; color:var(--ink); margin-bottom:3px; }
.role-desc { font-size:12px; color:var(--ink-50); line-height:1.55; }

/* ─ Context band ─ */
.context-band {
  background:var(--jb-900);
  padding:80px 0;
  position:relative; overflow:hidden;
}
.context-band::before {
  content:'';position:absolute;inset:0;
  background-image:
    repeating-linear-gradient(0deg,transparent,transparent 63px,rgba(255,255,255,.025) 64px),
    repeating-linear-gradient(90deg,transparent,transparent 63px,rgba(255,255,255,.025) 64px);
}
.context-inner { position:relative; z-index:1; }
.context-quote {
  font-family:var(--ff-d);
  font-size:clamp(24px,3.5vw,42px);
  font-weight:700; line-height:1.18;
  letter-spacing:-.02em; color:white;
  max-width:820px; margin:0 auto;
  text-align:center;
}
.context-quote em { color:var(--ic-300); font-style:normal; }

/* ─ Problem ─ */
.problem-grid {
  display:grid; grid-template-columns:repeat(3,1fr);
  gap:14px; margin-top:52px;
}
.problem-card {
  background:var(--white);
  border:1px solid var(--rule);
  border-radius:var(--r-lg);
  padding:32px 26px;
  position:relative; overflow:hidden;
}
.problem-card::before {
  content:''; position:absolute;
  top:0; left:0; right:0; height:3px;
  background:var(--jb-600);
}
.problem-n {
  font-family:var(--ff-d); font-size:52px; font-weight:800;
  color:var(--ink-04); line-height:1; margin-bottom:16px;
  letter-spacing:-.04em;
}
.problem-title {
  font-family:var(--ff-d); font-size:18px; font-weight:700;
  color:var(--ink); margin-bottom:10px; line-height:1.15;
}
.problem-body {
  font-size:13px; line-height:1.78; color:var(--ink-70); font-weight:300;
}

/* ─ System Architecture ─ */
.system-section { background:var(--bg2); }
.system-diagram {
  background:var(--white);
  border:1px solid var(--rule);
  border-radius:var(--r-xl);
  padding:48px;
  margin-top:52px;
  box-shadow:var(--shadow-md);
  position:relative; overflow:hidden;
}
.system-diagram::before {
  content:'';
  position:absolute; inset:0;
  background-image:
    repeating-linear-gradient(0deg,transparent,transparent 31px,var(--rule-lt) 32px),
    repeating-linear-gradient(90deg,transparent,transparent 31px,var(--rule-lt) 32px);
  opacity:.5;
}
.sd-inner { position:relative; z-index:1; }
.sd-core { text-align:center; margin-bottom:40px; }
.sd-core-chip {
  display:inline-flex; align-items:center; gap:12px;
  background:var(--jb-900); color:white;
  padding:12px 26px 12px 14px; border-radius:var(--r-md);
  font-family:var(--ff-d); font-size:16px; font-weight:700;
  box-shadow:var(--shadow-md);
}
.sd-core-chip img { height:22px; width:auto; background:white; border-radius:6px; padding:4px 6px; }
.sd-arrow {
  text-align:center;
  font-family:var(--ff-m); font-size:10px;
  letter-spacing:.12em; text-transform:uppercase;
  color:var(--ink-30); margin:8px 0;
}

.token-row { display:grid; grid-template-columns:repeat(4,1fr); gap:10px; margin-bottom:28px; }
.token-pill {
  background:var(--bg);
  border:1px solid var(--rule);
  border-radius:var(--r-sm);
  padding:10px 14px;
  display:flex; align-items:center; gap:10px;
}
.tp-swatch { width:22px; height:22px; border-radius:6px; flex-shrink:0; }
.tp-name { font-family:var(--ff-m); font-size:9px; letter-spacing:.07em; color:var(--ink-50); }
.tp-val  { font-family:var(--ff-m); font-size:10px; font-weight:500; color:var(--ink); }

.sd-products { display:grid; grid-template-columns:repeat(3,1fr); gap:10px; }
.sd-prod {
  background:var(--bg);
  border:1px solid var(--rule);
  border-radius:var(--r-md);
  padding:14px; display:flex; align-items:center; gap:12px;
  transition:all .22s;
}
.sd-prod:hover { border-color:var(--jb-600); background:var(--jb-primary-xs); transform:translateY(-2px); box-shadow:var(--shadow-sm); }
.sd-prod-icon {
  width:38px; height:38px; border-radius:10px;
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0; background:white; border:1px solid var(--rule); padding:7px;
}
.sd-prod-icon img { width:100%; height:100%; object-fit:contain; }
.sd-prod-name { font-size:12px; font-weight:600; color:var(--ink); }
.sd-prod-type { font-family:var(--ff-m); font-size:9px; letter-spacing:.06em; color:var(--ink-50); margin-top:1px; }

/* ─ Verticals ─ */
.verticals-section { background:var(--white); padding:96px 0; }
.verticals-header {
  display:flex; align-items:flex-end; justify-content:space-between;
  margin-bottom:52px; gap:24px; flex-wrap:wrap;
}
.verticals-meta {
  font-size:15px; line-height:1.75; font-weight:300;
  color:var(--ink-70); max-width:380px;
}

.vertical-list { display:flex; flex-direction:column; gap:4px; }
.vertical-item {
  background:var(--bg);
  border:1px solid var(--rule);
  border-radius:4px;
  overflow:hidden;
  transition:all .25s;
  position:relative;
}
.vertical-item:first-child { border-radius:var(--r-lg) var(--r-lg) 4px 4px; }
.vertical-item:last-child  { border-radius:4px 4px var(--r-lg) var(--r-lg); }
.vertical-item::before {
  content:''; position:absolute;
  left:0; top:0; bottom:0; width:4px;
  transition:background .3s;
}
.vertical-item.v-live::before  { background:var(--ic-600); }
.vertical-item.v-new::before   { background:var(--jb-600); }

.vi-header {
  display:grid; grid-template-columns:280px 1fr auto;
  gap:28px; align-items:center;
  padding:22px 28px 22px 36px;
  cursor:pointer;
  transition:background .2s;
}
.vi-header:hover { background:var(--white); }

.vi-icon-wrap { display:flex; align-items:center; gap:16px; }
.vi-icon {
  width:48px; height:48px; border-radius:14px;
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0; background:white; border:1px solid var(--rule); padding:10px;
}
.vi-icon img { width:100%; height:100%; object-fit:contain; }
.vi-name { font-size:16px; font-weight:600; color:var(--ink); margin-bottom:3px; }
.vi-type { font-family:var(--ff-m); font-size:10px; letter-spacing:.07em; color:var(--ink-50); }
.vi-desc { font-size:13px; line-height:1.68; color:var(--ink-70); font-weight:300; }

.vi-right { display:flex; flex-direction:column; align-items:flex-end; gap:8px; }
.vi-status {
  font-family:var(--ff-m); font-size:9px;
  letter-spacing:.12em; text-transform:uppercase;
  padding:4px 10px; border-radius:100px;
}
.vi-status.live { background:var(--ic-primary-lt); color:var(--ic-800); }
.vi-status.new  { background:var(--jb-primary-xs); color:var(--jb-600); border:1px solid rgba(38,54,130,.18); }
.vi-period { font-family:var(--ff-m); font-size:10px; color:var(--ink-30); }

.vi-detail { max-height:0; overflow:hidden; border-radius:inherit; transition:max-height .4s cubic-bezier(.22,.68,0,1.2); }
.vi-detail.open { max-height:600px; }
.vi-detail-inner {
  padding:0 36px 28px 36px;
  display:grid; grid-template-columns:1fr 1fr 1fr;
  gap:24px; border-top:1px solid var(--rule);
  margin:0 28px; padding-top:24px;
}
.vi-d-block-lbl {
  font-family:var(--ff-m); font-size:9px;
  letter-spacing:.15em; text-transform:uppercase;
  color:var(--ink-30); margin-bottom:10px;
  display:flex; align-items:center; gap:8px;
}
.vi-d-block-lbl::before { content:''; width:10px; height:1px; background:currentColor; }
.vi-d-item {
  display:flex; align-items:flex-start; gap:8px;
  font-size:12px; color:var(--ink-70); line-height:1.55;
  margin-bottom:7px;
}
.vi-d-pip { width:5px; height:5px; border-radius:50%; background:var(--jb-400); flex-shrink:0; margin-top:4px; }

/* ─ Admin Panel — controls every vertical ─ */
.admin-section { background:var(--jb-900); position:relative; overflow:hidden; }
.admin-section::before {
  content:'';position:absolute;inset:0;
  background-image:
    repeating-linear-gradient(0deg,transparent,transparent 63px,rgba(255,255,255,.02) 64px),
    repeating-linear-gradient(90deg,transparent,transparent 63px,rgba(255,255,255,.02) 64px);
}
.admin-glow {
  position:absolute; width:600px; height:600px; border-radius:50%;
  background:radial-gradient(circle,rgba(70,89,181,.22) 0%,transparent 65%);
  top:-150px; left:-150px; pointer-events:none;
}
.admin-inner { position:relative; z-index:1; }

.admin-panel-grid {
  display:grid; grid-template-columns:0.85fr 1.15fr;
  gap:56px; align-items:center; margin-top:52px;
}
.admin-copy-eyebrow {
  display:inline-flex; align-items:center; gap:8px;
  background:rgba(88,194,232,.12); border:1px solid rgba(88,194,232,.25);
  color:var(--ic-300);
  padding:6px 14px; border-radius:100px;
  font-family:var(--ff-m); font-size:10px; letter-spacing:.1em; text-transform:uppercase;
  margin-bottom:22px;
}
.admin-copy-title {
  font-family:var(--ff-d); font-size:clamp(28px,3.2vw,40px);
  font-weight:800; color:white; line-height:1.06; letter-spacing:-.025em;
  margin-bottom:18px;
}
.admin-copy-title em { color:var(--ic-300); font-style:normal; }
.admin-copy-body {
  font-size:14px; line-height:1.85; color:rgba(255,255,255,.6); font-weight:300;
  margin-bottom:26px;
}
.admin-copy-body strong { color:white; font-weight:600; }

.admin-feature-list { display:flex; flex-direction:column; gap:16px; }
.admin-feature-item { display:flex; align-items:flex-start; gap:14px; }
.admin-feature-icon {
  width:34px; height:34px; border-radius:50%; flex-shrink:0;
  background:rgba(88,194,232,.14); border:1px solid rgba(88,194,232,.25);
  display:flex; align-items:center; justify-content:center; font-size:14px;
}
.admin-feature-title { font-size:13px; font-weight:600; color:white; margin-bottom:2px; }
.admin-feature-desc { font-size:12px; color:rgba(255,255,255,.45); line-height:1.6; }

/* Screenshot frame — browser chrome wrapper */
.shot-frame {
  background:var(--white);
  border-radius:var(--r-xl);
  overflow:hidden;
  box-shadow:0 30px 80px rgba(0,0,0,.45), 0 8px 24px rgba(0,0,0,.3);
  border:1px solid rgba(255,255,255,.08);
}
.shot-chrome {
  background:#EEF0F4;
  padding:11px 16px;
  display:flex; align-items:center; gap:7px;
}
.shot-dot { width:9px; height:9px; border-radius:50%; }
.shot-dot.r { background:#FF5F57; }
.shot-dot.y { background:#FFBD2E; }
.shot-dot.g { background:#28CA41; }
.shot-chrome-url {
  margin-left:10px; flex:1;
  background:white; border-radius:100px;
  padding:5px 14px;
  font-family:var(--ff-m); font-size:9px; color:var(--ink-30);
}
.shot-frame img { width:100%; height:auto; display:block; }

/* --- Deeper Product Screens: Admin / POS / Market+Driver / Wallet+Trade --- */
.admin-detail-section { background:var(--white); }
.pos-section { background:var(--bg2); }
.market-driver-section { background:var(--white); }
.wallet-trade-section { background:var(--bg2); }

.ws-desc {
  font-size:15px; line-height:1.75; font-weight:300;
  color:var(--ink-70); max-width:620px; margin-top:14px;
}
.ws-block { margin-top:48px; display:flex; flex-direction:column; gap:14px; }
.ws-row2  { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.ws-cap   { margin-top:14px; padding:0 4px; display:flex; align-items:flex-start; justify-content:space-between; gap:12px; }
.ws-cap-title { font-family:var(--ff-d); font-size:16px; font-weight:700; color:var(--ink); line-height:1.2; }
.ws-cap-desc  { font-size:12px; color:var(--ink-50); margin-top:3px; line-height:1.55; font-weight:300; }
.ws-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(--ink-04); color:var(--ink-50);
}

.ws-img-ph {
  width:100%; border-radius:var(--r-lg); overflow:hidden;
  background:linear-gradient(135deg, var(--ws-tint, var(--jb-primary-lt)) 0%, var(--bg) 100%);
  border:1px solid var(--rule);
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  gap:10px; text-align:center; padding:36px; position:relative;
}
.ws-img-ph::before {
  content:''; position:absolute; inset:0; border-radius:var(--r-lg);
  background:repeating-linear-gradient(-45deg,transparent,transparent 11px,var(--ws-tint, var(--jb-primary-lt)) 11px,var(--ws-tint, var(--jb-primary-lt)) 12px);
  pointer-events:none;
}
.ws-img-ph-ico {
  width:44px; height:44px; border-radius:50%;
  background:var(--ws-tint, var(--jb-primary-lt));
  display:flex; align-items:center; justify-content:center;
  position:relative; z-index:1; margin-bottom:4px;
}
.ws-img-ph-ico svg { width:20px; height:20px; opacity:.8; color:var(--ws-accent, var(--jb-600)); }
.ws-img-ph-label {
  font-family:var(--ff-m); font-size:11px; letter-spacing:.10em; text-transform:uppercase;
  color:var(--ws-accent, var(--jb-600)); font-weight:500; position:relative; z-index:1;
}
.ws-img-ph-size { font-family:var(--ff-m); font-size:10px; color:var(--ink-30); letter-spacing:.06em; position:relative; z-index:1; }
.ws-img-ph-hint { font-size:12px; color:var(--ink-50); max-width:380px; line-height:1.55; position:relative; z-index:1; }
.ws-img-ph.has-img { padding:0; border-style:solid; background:var(--bg); }
.ws-img-ph.has-img::before { display:none; }
.ws-img-ph.has-img img { width:100%; height:100%; display:block; object-fit:cover; position:relative; z-index:1; }

.wallet-trade-section .section-title .accent { color:var(--tw-600); }

/* --- How I Worked --- */
.method-section { background:var(--bg2); }
.method-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:14px; margin-top:48px; }
.method-card {
  background:var(--white); border:1px solid var(--rule); border-radius:var(--r-lg);
  padding:32px 26px; position:relative; overflow:hidden;
  transition:transform .3s cubic-bezier(.22,.68,0,1.2), box-shadow .3s;
}
.method-card::before {
  content:''; position:absolute; top:0; left:0; right:0; height:3px;
  background:var(--jb-600); transform:scaleX(0); transform-origin:left; transition:transform .35s;
}
.method-card:hover { transform:translateY(-7px); box-shadow:var(--shadow-lg); }
.method-card:hover::before { transform:scaleX(1); }
.method-n { font-family:var(--ff-m); font-size:10px; letter-spacing:.15em; text-transform:uppercase; color:var(--jb-600); margin-bottom:14px; }
.method-card h3 { font-family:var(--ff-d); font-size:20px; font-weight:700; color:var(--ink); margin-bottom:8px; line-height:1.2; }
.method-card p  { font-size:13px; line-height:1.72; font-weight:300; color:var(--ink-70); }

/* eyebrow color modifiers for additional brand families */
.eyebrow.ic-e { color:var(--ic-600); }
.eyebrow.mn-e { color:var(--mn-800); }
.eyebrow.tw-e { color:var(--tw-600); }
.eyebrow.br-e { color:var(--br-600); }

/* ─ Design System Deep Dive — Foundation File Redesign ─ */
.ds-section { background:var(--bg); }

.ds-intro-row {
  display:flex; align-items:flex-end; justify-content:space-between;
  gap:24px; flex-wrap:wrap; margin-bottom:52px;
}
.ds-intro-meta {
  font-size:15px; line-height:1.75; font-weight:300;
  color:var(--ink-70); max-width:380px;
}
.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 img { width:18px; height:18px; object-fit:contain; border-radius:4px; }
.ds-filetag b { color:var(--ink); font-weight:600; }

/* ── Foundation modules — stacked full-width "spec sheet" blocks ── */
.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:160px; 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;
}

/* ── Compact card-grid variant: 2–3 cards instead of stacked full-width ── */
.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(--jb-200); 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-mini-card .ramp-row { grid-template-columns:repeat(4,1fr); }
.ds-mini-card .ramp-swatch { border-radius:7px; padding:7px; }

/* Typography mini cards */
.ds-type-card-glyph {
  font-family:var(--ff-d); font-size:46px; font-weight:700;
  color:var(--jb-600); line-height:1; letter-spacing:-.02em;
  margin-bottom:14px;
}
.ds-type-card-meta { font-family:var(--ff-m); font-size:10px; color:var(--ink-50); line-height:1.7; }
.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:var(--ff-d); font-size:15px; color:var(--ink); }
.ds-weight-lbl { font-family:var(--ff-m); font-size:9px; color:var(--ink-30); letter-spacing:.05em; }

/* ── Color & Type hero content (Module 1) — scoped .cts- to avoid collisions ── */
.cts-swatch-row {
  display:flex; align-items:center; justify-content:center;
  gap:28px; margin-bottom:20px; flex-wrap:wrap; position:relative;
}
.cts-swatch-col {
  position:relative;
  display:flex; flex-direction:column; align-items:center;
}
/* All swatches same base, lg is larger */
.cts-swatch { border-radius:20px; box-shadow:var(--shadow-md); }
.cts-swatch-col.sm .cts-swatch { width:80px; height:80px; border-radius:16px; }
.cts-swatch-col.lg .cts-swatch { width:148px; height:148px; }

/* Pill floats above the swatch with fixed spacing — no overlap */
.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:var(--ok-600); background:rgba(18,183,106,.12); padding:2px 6px; border-radius:999px;
}
.cts-pill .cts-wcag.fail { color:var(--warn-600); background:rgba(220,104,3,.12); }

/* Role label sits below swatch */
.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:18px; }
  .cts-swatch-col.lg .cts-swatch { width:100px; height:100px; }
  .cts-swatch-col.sm .cts-swatch { width:64px; height:64px; }
}

/* Color ramps inside module */
.ramp-block { margin-top:0; padding-top:22px; border-top:1px solid var(--rule); }
.ramp-block:first-of-type { border-top:1px solid var(--rule); }
.ramp-label-row { display:flex; align-items:baseline; gap:10px; margin-bottom:10px; }
.ramp-cat { font-family:var(--ff-m); font-size:9px; letter-spacing:.1em; text-transform:uppercase; color:var(--ink-30); }
.ramp-name { font-size:13px; font-weight:600; color:var(--ink); }
.ramp-row { display:grid; grid-template-columns:repeat(8,1fr); gap:6px; }
.ramp-swatch {
  aspect-ratio:1; border-radius:8px;
  display:flex; flex-direction:column; align-items:flex-start; justify-content:space-between;
  padding:8px; position:relative;
  transition:transform .18s;
}
.ramp-swatch:hover { transform:translateY(-3px); }
.ramp-swatch .rs-step {
  font-family:var(--ff-m); font-size:9px; font-weight:500; letter-spacing:.02em;
}
.ramp-swatch .rs-val {
  font-family:var(--ff-m); font-size:7px; letter-spacing:.01em;
  opacity:.0; transition:opacity .15s;
}
.ramp-swatch:hover .rs-val, .ramp-swatch.touched .rs-val { opacity:.9; }

/* Typography module */
.type-top-row {
  display:grid; grid-template-columns:auto 1fr; gap:32px; align-items:center;
  padding:24px; background:var(--bg); border:1px solid var(--rule);
  border-radius:var(--r-lg); margin-bottom:24px;
}
.type-glyph {
  font-family:var(--ff-d); font-size:56px; font-weight:700;
  color:var(--jb-600); line-height:1; letter-spacing:-.02em;
}
.type-charset {
  font-family:var(--ff-d); font-size:13px; color:var(--ink-50);
  line-height:1.7; word-break:break-all;
}
.type-charset .tc-name { font-size:11px; font-weight:700; color:var(--ink); margin-bottom:4px; display:block; font-family:var(--ff-b); }

.type-scale-grid { display:flex; flex-direction:column; }
.type-spec-row {
  display:grid; grid-template-columns:80px 1fr 90px;
  align-items:baseline; gap:16px;
  padding:13px 0; border-bottom:1px solid var(--rule);
}
.type-spec-row:last-child { border-bottom:none; }
.type-spec-lbl {
  font-family:var(--ff-m); font-size:9px; letter-spacing:.08em;
  color:var(--ink-30); text-transform:uppercase;
}
.type-spec-sample { font-family:var(--ff-d); color:var(--ink); white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.type-spec-meta { font-family:var(--ff-m); font-size:10px; color:var(--ink-30); text-align:right; }

/* ── Component library — real rendered UI, not icons ── */
.btn-showcase {
  background:var(--bg);
  border:1px solid var(--rule);
  border-radius:var(--r-lg);
  padding:26px 28px;
  margin-bottom:24px;
}
.btn-showcase-head { margin-bottom:20px; }
.btn-variant-grid {
  display:grid; grid-template-columns:repeat(7,1fr);
  gap:14px; margin-bottom:18px;
}
.btn-variant-col { display:flex; flex-direction:column; gap:8px; align-items:flex-start; }
.bv-lbl {
  font-family:var(--ff-m); font-size:8px; letter-spacing:.08em; text-transform:uppercase;
  color:var(--ink-30); margin-bottom:2px;
}
.btn-variant-col .live-btn { width:100%; justify-content:center; }

.btn-state-keys {
  display:flex; gap:18px; padding-top:16px; border-top:1px solid var(--rule);
  margin-bottom:18px;
}
.btn-state-key {
  display:flex; align-items:center; gap:6px;
  font-family:var(--ff-m); font-size:9px; letter-spacing:.06em; color:var(--ink-50);
}
.bsk-dot { width:7px; height:7px; border-radius:50%; }
.bsk-dot.d1 { background:var(--jb-600); }
.bsk-dot.d2 { background:var(--jb-800); }
.bsk-dot.d3 { background:var(--mn-200); }

.btn-size-row { display:flex; align-items:center; gap:10px; flex-wrap:wrap; }

.complib-tabs {
  display:flex; gap:6px; flex-wrap:wrap; margin-bottom:24px;
}
.complib-tab {
  font-family:var(--ff-m); font-size:9px; letter-spacing:.08em; text-transform:uppercase;
  padding:6px 13px; border-radius:100px;
  background:var(--bg); border:1px solid var(--rule); color:var(--ink-50);
}
.complib-tab.active { background:var(--jb-primary-lt); border-color:rgba(38,54,130,.2); color:var(--jb-600); }

.complib-grid {
  display:grid; grid-template-columns:1.2fr 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;
}

/* Live mini components, styled with real tokens — every shape fully rounded (pill) */

/* ── Buttons — matches JOBR Foundations → Buttons spec ──
   Variants: Primary / Secondary / Tertiary / Link / Underlined / Alternate A / Alternate B
   States: Default / Hover / Focused / Disabled — shown on Light surface */
.live-btn-row { display:flex; flex-wrap:wrap; gap:8px; align-items:center; }
.live-btn {
  font-family:var(--ff-b); font-size:12px; font-weight:600;
  padding:10px 18px 10px 16px; border-radius:100px; border:1.5px solid transparent;
  cursor:default; display:inline-flex; align-items:center; gap:6px;
  line-height:1;
}
.live-btn .lb-arrow { font-size:11px; }

/* Primary — solid Deep Ocean */
.live-btn.primary        { background:var(--jb-600); color:#fff; }
.live-btn.primary.hover  { background:var(--jb-800); }
.live-btn.primary.focus  { background:var(--jb-600); box-shadow:0 0 0 4px var(--jb-primary-lt); }
.live-btn.primary.disabled { background:var(--jb-200); color:var(--jb-50); }

/* Secondary — outline Deep Ocean */
.live-btn.secondary       { background:transparent; color:var(--jb-600); border-color:var(--jb-300); }
.live-btn.secondary.hover { background:var(--jb-primary-xs); border-color:var(--jb-600); }
.live-btn.secondary.disabled { color:var(--mn-300); border-color:var(--mn-200); }

/* Tertiary — soft tinted fill */
.live-btn.tertiary       { background:var(--jb-primary-lt); color:var(--jb-600); }
.live-btn.tertiary.hover { background:var(--jb-100); }
.live-btn.tertiary.disabled { background:var(--mn-50); color:var(--mn-300); }

/* Link — text only, no padding-box */
.live-btn.link {
  background:transparent; color:var(--jb-600); padding:10px 4px;
}
.live-btn.link.hover { color:var(--jb-800); }
.live-btn.link.disabled { color:var(--mn-300); }

/* Underlined — text + persistent underline */
.live-btn.underlined {
  background:transparent; color:var(--jb-600); padding:10px 4px;
  text-decoration:underline; text-underline-offset:3px;
}
.live-btn.underlined.disabled { color:var(--mn-300); }

/* Alternate A — Iceberg outline */
.live-btn.alt-a       { background:transparent; color:var(--ic-800); border-color:var(--ic-300); }
.live-btn.alt-a.hover { background:var(--ic-primary-lt); border-color:var(--ic-600); }

/* Alternate B — Iceberg soft fill */
.live-btn.alt-b       { background:var(--ic-primary-lt); color:var(--ic-800); }
.live-btn.alt-b.hover { background:var(--ic-100); }

/* Button size variants */
.live-btn.sz-micro { font-size:10px; padding:6px 13px 6px 12px; }
.live-btn.sz-small  { font-size:11px; padding:8px 16px 8px 14px; }
.live-btn.sz-medium { font-size:13px; padding:11px 20px 11px 18px; }
.live-btn.sz-large  { font-size:14px; padding:13px 24px 13px 22px; }

.live-btn-matrix { display:flex; flex-direction:column; gap:9px; }
.live-btn-state-row { display:flex; align-items:center; gap:10px; }
.live-btn-state-lbl {
  font-family:var(--ff-m); font-size:8px; letter-spacing:.06em; text-transform:uppercase;
  color:var(--ink-30); width:50px; flex-shrink:0;
}

.live-input {
  font-family:var(--ff-b); font-size:12px;
  background:var(--white); border:1.5px solid var(--rule);
  border-radius:100px; padding:11px 16px; color:var(--ink-30);
}
.live-input.focus { border-color:var(--jb-400); box-shadow:0 0 0 3px var(--jb-primary-lt); color:var(--ink); }

.live-badge-row { display:flex; flex-wrap:wrap; gap:7px; }
.live-badge {
  font-family:var(--ff-m); font-size:9px; letter-spacing:.06em; font-weight:500;
  padding:4px 12px; border-radius:100px;
}
.live-badge.ok    { background:#ECFDF3; color:var(--ok-600); }
.live-badge.warn  { background:#FFFAEB; color:var(--warn-600); }
.live-badge.err   { background:#FEF3F2; color:var(--err-600); }
.live-badge.info  { background:var(--ic-primary-lt); color:var(--ic-800); }
.live-badge.brand { background:var(--jb-primary-lt); color:var(--jb-600); }

.live-card {
  background:var(--white); border:1px solid var(--rule);
  border-radius:100px; padding:10px 18px 10px 10px; display:flex; align-items:center; gap:12px;
}
.live-card-avatar {
  width:34px; height:34px; border-radius:50%; flex-shrink:0;
  background:linear-gradient(135deg,var(--jb-400),var(--ic-400));
}
.live-card-name { font-size:12px; font-weight:600; color:var(--ink); }
.live-card-sub { font-family:var(--ff-m); font-size:9px; color:var(--ink-50); margin-top:2px; }

.live-toggle-row { display:flex; align-items:center; gap:10px; }
.live-toggle {
  width:36px; height:20px; border-radius:100px; position:relative; flex-shrink:0;
}
.live-toggle.on { background:var(--jb-600); }
.live-toggle.off { background:var(--mn-200); }
.live-toggle::after {
  content:''; position:absolute; top:2px; width:16px; height:16px; border-radius:50%; background:white;
}
.live-toggle.on::after { right:2px; }
.live-toggle.off::after { left:2px; }
.live-toggle-lbl { font-size:11px; color:var(--ink-70); }

.live-progress { background:var(--mn-100); border-radius:100px; height:6px; overflow:hidden; }
.live-progress-fill { height:100%; border-radius:100px; background:var(--jb-600); }

.live-table { width:100%; border-collapse:separate; border-spacing:0 6px; font-family:var(--ff-m); font-size:10px; }
.live-table th {
  text-align:left; padding:0 12px 6px; color:var(--ink-30);
  letter-spacing:.05em; text-transform:uppercase; font-weight:500;
}
.live-table td { padding:9px 12px; color:var(--ink-70); background:var(--white); }
.live-table td:first-child { border-radius:100px 0 0 100px; }
.live-table td:last-child { border-radius:0 100px 100px 0; }

.live-alert {
  display:flex; align-items:center; gap:10px;
  padding:12px 18px; border-radius:100px;
  background:var(--jb-primary-lt); border:1px solid rgba(38,54,130,.15);
}
.live-alert-dot { width:7px; height:7px; border-radius:50%; background:var(--jb-600); flex-shrink:0; }
.live-alert-text { font-size:11px; line-height:1.55; color:var(--jb-800); }

.live-tab-row { display:flex; gap:2px; background:var(--mn-50); border-radius:100px; padding:3px; }
.live-tab-item {
  flex:1; text-align:center; font-family:var(--ff-m); font-size:9px; letter-spacing:.05em;
  padding:7px 0; border-radius:100px; color:var(--ink-50);
}
.live-tab-item.active { background:white; color:var(--jb-600); font-weight:600; box-shadow:var(--shadow-sm); }

.live-chip-row { display:flex; flex-wrap:wrap; gap:6px; }
.live-chip {
  font-family:var(--ff-b); font-size:11px; color:var(--ink-70);
  background:white; border:1px solid var(--rule); border-radius:100px;
  padding:5px 12px; display:flex; align-items:center; gap:6px;
}
.live-chip .lc-x { color:var(--ink-30); font-size:13px; line-height:1; }

.live-checkbox-row { display:flex; flex-direction:column; gap:9px; }
.live-checkbox-item { display:flex; align-items:center; gap:9px; font-size:12px; color:var(--ink-70); }
.live-checkbox {
  width:16px; height:16px; border-radius:50%; flex-shrink:0;
  display:flex; align-items:center; justify-content:center;
}
.live-checkbox.checked { background:var(--jb-600); color:white; font-size:10px; }
.live-checkbox.unchecked { border:1.5px solid var(--rule); }

.live-avatar-stack { display:flex; }
.live-avatar-stack .live-card-avatar { margin-left:-8px; border:2px solid white; }
.live-avatar-stack .live-card-avatar:first-child { margin-left:0; }

.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; }

/* Accessibility closing strip */
.ds-a11y-strip {
  display:grid; grid-template-columns:auto 1fr auto; gap:28px; align-items:center;
  background:var(--jb-900); border-radius:var(--r-xl);
  padding:32px 36px; margin-top:14px;
}
.ds-a11y-stat { text-align:center; }
.ds-a11y-stat .ts-n { color:var(--ic-300); font-size:38px; }
.ds-a11y-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-a11y-text { font-size:13px; line-height:1.7; color:rgba(255,255,255,.65); font-weight:300; max-width:480px; }
.ds-a11y-text strong { color:white; font-weight:600; }
.ds-a11y-badges { display:flex; flex-direction:column; gap:8px; }
.ds-a11y-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;
}

.tier-stat { display:flex; align-items:baseline; gap:6px; margin-top:16px; }
.ts-n {
  font-family:var(--ff-d); font-size:44px; font-weight:800;
  color:var(--jb-600); letter-spacing:-.03em; line-height:1;
}
.ts-lbl { font-size:14px; color:var(--ink-70); font-weight:300; }


/* ─ Process ─ */
.process-section { background:var(--white); }
.process-track {
  display:grid; grid-template-columns:repeat(5,1fr);
  gap:0; margin-top:52px; position:relative;
}
.process-track::before {
  content:''; position:absolute;
  top:28px; left:10%; right:10%; height:2px;
  background:var(--rule); z-index:0;
}
.process-step {
  display:flex; flex-direction:column; align-items:center;
  text-align:center; position:relative; z-index:1; padding:0 8px;
}
.ps-node {
  width:56px; height:56px; border-radius:50%;
  background:var(--white); border:2px solid var(--rule);
  display:flex; align-items:center; justify-content:center;
  font-size:22px; margin-bottom:16px;
  box-shadow:var(--shadow-sm);
  transition:all .25s;
}
.process-step:hover .ps-node {
  border-color:var(--jb-600);
  background:var(--jb-primary-lt);
  transform:translateY(-4px);
  box-shadow:var(--shadow-jb);
}
.ps-n {
  font-family:var(--ff-m); font-size:9px;
  letter-spacing:.14em; text-transform:uppercase;
  color:var(--jb-600); margin-bottom:6px;
}
.ps-title { font-family:var(--ff-d); font-size:14px; font-weight:700; color:var(--ink); margin-bottom:6px; line-height:1.2; }
.ps-body { font-size:11px; line-height:1.65; color:var(--ink-50); font-weight:300; }

/* ─ Handoff ─ */
.handoff-section { background:var(--bg2); }
.handoff-grid { display:grid; grid-template-columns:1fr 1fr 1fr; gap:14px; margin-top:52px; }
.handoff-card {
  background:var(--white); border:1px solid var(--rule);
  border-radius:var(--r-lg); padding:32px 26px;
  transition:all .25s;
}
.handoff-card:hover { transform:translateY(-5px); box-shadow:var(--shadow-lg); }
.hc-icon {
  width:44px; height:44px; border-radius:12px;
  background:var(--jb-primary-lt);
  display:flex; align-items:center; justify-content:center;
  font-size:20px; margin-bottom:18px;
}
.hc-title { font-family:var(--ff-d); font-size:18px; font-weight:700; color:var(--ink); margin-bottom:10px; }
.hc-body { font-size:13px; line-height:1.75; color:var(--ink-70); font-weight:300; }
.hc-chips { display:flex; flex-wrap:wrap; gap:6px; margin-top:16px; }
.hc-chip {
  background:var(--bg); border:1px solid var(--rule);
  border-radius:100px; padding:4px 10px;
  font-family:var(--ff-m); font-size:9px; letter-spacing:.07em; color:var(--ink-50);
}

/* ─ Impact ─ */
.impact-section { background:var(--jb-900); padding:96px 0; position:relative; overflow:hidden; }
.impact-section::before {
  content:'';position:absolute;inset:0;
  background-image:
    repeating-linear-gradient(0deg,transparent,transparent 63px,rgba(255,255,255,.025) 64px),
    repeating-linear-gradient(90deg,transparent,transparent 63px,rgba(255,255,255,.025) 64px);
}
.impact-grid {
  display:grid; grid-template-columns:repeat(4,1fr);
  gap:1px; background:rgba(255,255,255,.08);
  border-radius:var(--r-xl); overflow:hidden;
  position:relative; z-index:1; margin-top:52px;
}
.imp-cell { background:var(--jb-900); padding:40px 32px; transition:background .25s; }
.imp-cell:hover { background:rgba(255,255,255,.04); }
.imp-n {
  font-family:var(--ff-d); font-size:52px; font-weight:800;
  color:var(--ic-300); line-height:1; letter-spacing:-.025em; margin-bottom:12px; display:block;
}
.imp-lbl { font-size:14px; font-weight:600; color:rgba(255,255,255,.82); margin-bottom:8px; }
.imp-desc { font-size:12px; line-height:1.68; color:rgba(255,255,255,.38); font-weight:300; }

/* ─ Learnings ─ */
.learnings-section { background:var(--white); }
.learnings-grid { display:grid; grid-template-columns:1fr 1fr; gap:14px; margin-top:52px; }
.learning-card {
  background:var(--bg); border:1px solid var(--rule);
  border-radius:var(--r-lg); padding:32px 28px; display:flex; gap:20px;
}
.lc-num {
  font-family:var(--ff-d); font-size:42px; font-weight:800;
  color:rgba(13,12,9,.08); line-height:1; flex-shrink:0;
  letter-spacing:-.03em; min-width:52px;
}
.lc-title { font-family:var(--ff-d); font-size:18px; font-weight:700; color:var(--ink); margin-bottom:10px; line-height:1.1; }
.lc-body { font-size:13px; line-height:1.78; color:var(--ink-70); font-weight:300; }

/* ─ Next ─ */
.next-section { background:var(--bg); padding:72px 0; }
.next-inner { display:flex; align-items:center; justify-content:space-between; gap:24px; flex-wrap:wrap; }
.next-label {
  font-family:var(--ff-m); font-size:10px;
  letter-spacing:.18em; text-transform:uppercase;
  color:var(--ink-30); margin-bottom:10px;
  display:flex; align-items:center; gap:10px;
}
.next-label::before { content:''; width:14px; height:1px; background:currentColor; }
.next-title { font-family:var(--ff-d); font-size:clamp(28px,3vw,40px); font-weight:800; color:var(--ink); letter-spacing:-.025em; }

.btn-primary {
  background:var(--coral); color:#fff;
  padding:15px 30px; border-radius:100px;
  font-size:14px; font-weight:600;
  display:inline-flex; align-items:center; gap:9px;
  transition:all .25s; box-shadow:var(--shadow-coral);
}
.btn-primary:hover { background:var(--coral-dk); transform:translateY(-2px); box-shadow:0 12px 36px rgba(240,78,56,.4); }
.btn-secondary {
  background:transparent; color:var(--ink-70);
  border:1.5px solid var(--ink-15);
  padding:15px 30px; border-radius:100px;
  font-size:14px; font-weight:500;
  display:inline-flex; align-items:center; gap:9px;
  transition:all .25s;
}
.btn-secondary:hover { border-color:var(--ink); color:var(--ink); transform:translateY(-2px); }

/* ═══════════════════════════════════════════
   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); }

/* ═══════════════════════════════════════════
   PROBLEM → SOLUTION SNAPSHOT
═══════════════════════════════════════════ */
.ps-snapshot-section { background:var(--white); }

/* Outer wrapper: problem | arrow | solution */
.ps-snapshot-grid {
  display:grid;
  grid-template-columns:1fr 56px 1fr;
  gap:0; margin-top:52px; align-items:stretch;
}

/* Shared card base */
.ps-snap-card {
  border:1px solid var(--rule);
  border-radius:var(--r-xl);
  padding:44px 40px 40px;
  display:flex; flex-direction:column;
  position:relative; overflow:hidden;
}

/* Problem — dark, high-contrast */
.ps-snap-card.is-problem {
  background:var(--ink);
}
.ps-snap-card.is-problem::before {
  content:'';
  position:absolute; inset:0;
  background-image:
    repeating-linear-gradient(0deg,transparent,transparent 31px,rgba(255,255,255,.03) 32px),
    repeating-linear-gradient(90deg,transparent,transparent 31px,rgba(255,255,255,.03) 32px);
}

/* Solution — light accent */
.ps-snap-card.is-solution {
  background:var(--bg);
  border-color:var(--rule);
}

/* Label row */
.ps-snap-label {
  font-family:var(--ff-m); font-size:10px;
  letter-spacing:.18em; text-transform:uppercase;
  display:inline-flex; align-items:center; gap:8px;
  margin-bottom:18px; position:relative; z-index:1;
}
.ps-snap-label::before {
  content:''; width:16px; height:1px; background:currentColor;
}
.ps-snap-card.is-problem .ps-snap-label { color:rgba(255,255,255,.35); }
.ps-snap-card.is-solution .ps-snap-label { color:var(--jb-primary); }

/* Title */
.ps-snap-title {
  font-family:var(--ff-d);
  font-size:clamp(20px,2.4vw,28px);
  font-weight:800; line-height:1.12;
  letter-spacing:-.02em;
  position:relative; z-index:1;
}
.ps-snap-card.is-problem .ps-snap-title { color:white; }
.ps-snap-card.is-solution .ps-snap-title { color:var(--ink); }

/* Divider */
.ps-snap-rule {
  border:none; border-top:1px solid;
  margin:24px 0;
  position:relative; z-index:1;
}
.ps-snap-card.is-problem .ps-snap-rule { border-color:rgba(255,255,255,.10); }
.ps-snap-card.is-solution .ps-snap-rule { border-color:var(--rule); }

/* Body */
.ps-snap-body {
  font-size:13px; line-height:1.82;
  font-weight:300; flex:1;
  position:relative; z-index:1;
}
.ps-snap-card.is-problem .ps-snap-body { color:rgba(255,255,255,.55); }
.ps-snap-card.is-solution .ps-snap-body { color:var(--ink-70); }

/* Consequence tags on problem */
.ps-snap-tags {
  display:flex; flex-wrap:wrap; gap:7px;
  margin-top:24px; position:relative; z-index:1;
}
.ps-snap-tag {
  background:rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.12);
  border-radius:100px; padding:5px 12px;
  font-family:var(--ff-m); font-size:9px;
  letter-spacing:.08em; text-transform:uppercase;
  color:rgba(255,255,255,.45);
}

/* Outcome metrics on solution */
.ps-snap-metrics {
  display:grid; grid-template-columns:1fr 1fr 1fr;
  gap:10px; margin-top:24px;
  position:relative; z-index:1;
}
.ps-snap-metric {
  background:var(--white);
  border:1px solid var(--rule);
  border-radius:var(--r-md);
  padding:14px 12px;
  text-align:center;
}
.ps-snap-metric-n {
  font-family:var(--ff-d); font-size:22px;
  font-weight:800; color:var(--jb-600);
  line-height:1; letter-spacing:-.02em;
  margin-bottom:4px;
}
.ps-snap-metric-lbl {
  font-family:var(--ff-m); font-size:8px;
  letter-spacing:.08em; text-transform:uppercase;
  color:var(--ink-50); line-height:1.4;
}

/* Arrow bridge between cards */
.ps-snap-bridge {
  display:flex; align-items:center; justify-content:center;
  position:relative; z-index:2;
}
.ps-snap-arrow {
  width:44px; height:44px; border-radius:50%;
  background:var(--white);
  border:1px solid var(--rule);
  display:flex; align-items:center; justify-content:center;
  box-shadow:var(--shadow-md);
  font-size:16px; color:var(--ink);
  flex-shrink:0;
  font-family:var(--ff-b); font-weight:600;
}

@media(max-width:900px){
  .ps-snapshot-grid {
    grid-template-columns:1fr;
    gap:3px;
  }
  .ps-snap-bridge { display:none; }
  .ps-snap-metrics { grid-template-columns:1fr 1fr 1fr; }
}

/* ═══════════════════════════════════════════
   RESEARCH TIME ALLOCATION — redesigned
═══════════════════════════════════════════ */
.research-block {
  margin-top:56px; padding-top:52px;
  border-top:1px solid var(--rule);
}
.research-block-head {
  display:flex; align-items:flex-end; justify-content:space-between;
  gap:24px; flex-wrap:wrap; margin-bottom:36px;
}
.research-block-title {
  font-family:var(--ff-d);
  font-size:clamp(26px,3.2vw,38px);
  font-weight:800; letter-spacing:-.025em;
  line-height:1.05; color:var(--ink);
  margin-bottom:10px;
}
.research-block-sub {
  font-size:14px; color:var(--ink-50);
  line-height:1.7; font-weight:300; max-width:400px;
}
.research-total-pill {
  display:inline-flex; align-items:center; gap:8px;
  background:var(--jb-primary-lt);
  border:1px solid rgba(38,54,130,.18);
  color:var(--jb-primary);
  padding:8px 16px; border-radius:100px;
  font-family:var(--ff-m); font-size:10px;
  letter-spacing:.1em; text-transform:uppercase;
  white-space:nowrap; flex-shrink:0;
}
.research-total-pip {
  width:6px; height:6px; border-radius:50%;
  background:currentColor;
}
.research-grid {
  display:flex; flex-direction:column; gap:6px;
}
.research-row {
  background:var(--white);
  border:1px solid var(--rule);
  border-radius:var(--r-lg);
  padding:28px 32px;
  display:grid;
  grid-template-columns:220px 1fr 160px;
  gap:28px; align-items:center;
  position:relative; overflow:hidden;
  transition:transform .25s cubic-bezier(.22,.68,0,1.2), box-shadow .25s;
}
.research-row::before {
  content:''; position:absolute;
  left:0; top:0; bottom:0; width:3px;
  background:var(--jb-600);
  transform:scaleY(0); transform-origin:bottom;
  transition:transform .28s; border-radius:3px;
}
.research-row:hover { transform:translateX(5px); box-shadow:var(--shadow-md); }
.research-row:hover::before { transform:scaleY(1); }
.research-num-row {
  display:flex; align-items:baseline; gap:6px; margin-bottom:5px;
}
.research-pct {
  font-family:var(--ff-d); font-size:52px;
  font-weight:800; color:var(--jb-600);
  line-height:1; letter-spacing:-.035em;
}
.research-pct-sup {
  font-family:var(--ff-m); font-size:12px;
  letter-spacing:.1em; color:var(--ink-30);
  text-transform:uppercase;
}
.research-lbl {
  font-family:var(--ff-d); font-size:15px;
  font-weight:700; color:var(--ink); line-height:1.2;
}
.research-bar-wrap { display:flex; flex-direction:column; gap:8px; }
.research-bar-bg {
  height:8px; border-radius:100px;
  background:var(--ink-08); overflow:hidden;
}
.research-bar-fill {
  height:100%; border-radius:100px;
  background:linear-gradient(90deg, var(--jb-600) 0%, var(--ic-400) 100%);
  transform-origin:left; transform:scaleX(0);
  transition:transform 1s cubic-bezier(.22,.68,0,1.2);
}
.research-bar-fill.animate { transform:scaleX(1); }
.research-bar-markers {
  display:flex; justify-content:space-between; padding:0 2px;
}
.research-bar-tick {
  font-family:var(--ff-m); font-size:9px;
  letter-spacing:.05em; color:var(--ink-30);
}
.research-desc {
  font-size:12px; line-height:1.75;
  color:var(--ink-50); font-weight:300;
}
@media(max-width:900px) {
  .research-row { grid-template-columns:1fr; gap:16px; }
  .research-block-head { flex-direction:column; align-items:flex-start; }
}

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media(max-width:1024px){
  .cs-markcluster { display:none; }
  .overview-grid { grid-template-columns:1fr; gap:48px; }
  .sd-products { grid-template-columns:repeat(2,1fr); }
  .token-row { grid-template-columns:repeat(2,1fr); }
  .ramp-row { grid-template-columns:repeat(4,1fr); }
  .complib-grid { grid-template-columns:1fr 1fr; }
  .type-top-row { grid-template-columns:1fr; text-align:left; }
  .ds-card-grid { grid-template-columns:1fr 1fr; }
  .btn-variant-grid { grid-template-columns:repeat(4,1fr); }
  .method-grid { grid-template-columns:1fr 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-body { padding:60px 24px 48px; }
  .quick-stats { flex-wrap:wrap; }
  .qs-cell { flex:1 1 50%; }
  .problem-grid { grid-template-columns:1fr; }
  .ps-snapshot-grid { grid-template-columns:1fr; }
  .research-grid { grid-template-columns:1fr; gap:36px; }
  .ds-module { padding:30px 24px 28px; }
  .ds-module-stat { text-align:left; }
  .ds-card-grid, .ds-card-grid.cols-2 { grid-template-columns:1fr; }
  .complib-grid { grid-template-columns:1fr; }
  .ds-a11y-strip { grid-template-columns:1fr; text-align:center; }
  .ds-a11y-text { max-width:none; }
  .process-track { grid-template-columns:1fr; gap:0; }
  .process-step { flex-direction:row; align-items:flex-start; text-align:left; gap:14px; position:relative; padding:0 0 32px 0; }
  .process-step:last-child { padding-bottom:0; }
  .process-step::before {
    content:''; position:absolute; left:27px; top:56px; bottom:-32px; width:2px;
    background:var(--rule); z-index:0;
  }
  .process-step:last-child::before { content:none; }
  .ps-node { margin-bottom:0; }
  .handoff-grid { grid-template-columns:1fr; }
  .impact-grid { grid-template-columns:repeat(2,1fr); }
  .learnings-grid { grid-template-columns:1fr; }
  .vi-header { grid-template-columns:1fr; gap:12px; }
  .vi-detail-inner { grid-template-columns:1fr 1fr; }
  .cs-meta-strip { gap:24px; flex-wrap:wrap; }
  .cs-meta-item { border-right:none; padding-right:0; margin-right:0; }
  .btn-variant-grid { grid-template-columns:repeat(3,1fr); }
  .admin-panel-grid { grid-template-columns:1fr; }
  .ws-row2 { grid-template-columns:1fr; }
  .method-grid { grid-template-columns:1fr; }
  footer { padding:28px 24px; }
}
@media(max-width:600px){
  section { padding:64px 0; }
  .cs-hero-hl { font-size:48px; }
  .quick-stats { flex-direction:column; }
  .qs-cell { border-right:none; border-bottom:1px solid rgba(255,255,255,.15); }
  .qs-cell:last-child { border-bottom:none; }
  .sd-products { grid-template-columns:1fr; }
  .impact-grid { grid-template-columns:1fr 1fr; }
  .vi-detail-inner { grid-template-columns:1fr; }
  .ramp-row { grid-template-columns:repeat(4,1fr); }
  .ds-mini-card .ramp-row { grid-template-columns:repeat(4,1fr); }
  .type-spec-row { grid-template-columns:60px 1fr; }
  .type-spec-meta { display:none; }
  .btn-variant-grid { grid-template-columns:repeat(2,1fr); }
  .next-inner { flex-direction:column; align-items:flex-start; }
  footer { flex-direction:column; align-items:flex-start; }
}


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