/* =================================================================
   JWS DESIGN SYSTEM v3.0 — Dark-First
   Built around the new logo (#EF3C5A coral red, faceted J mark)
   Black as primary background, cream for spotlight breathing rooms
   ================================================================= */

:root {
  /* ============ BRAND PRIMARY (from logo) ============ */
  --jws-red: #EF3C5A;
  --jws-red-deep: #C82540;
  --jws-red-bright: #FF5773;
  --jws-red-soft: rgba(239, 60, 90, 0.12);
  --jws-red-glow: rgba(239, 60, 90, 0.4);

  /* ============ DARK SCALE ============ */
  --black: #0A0A0A;          /* deepest — page background */
  --black-soft: #131313;     /* card surfaces */
  --grey-900: #1A1A1A;       /* secondary surfaces */
  --grey-800: #242424;       /* hover surfaces */
  --grey-700: #2E2E2E;       /* borders */
  --grey-600: #3D3D3D;
  --grey-500: rgba(255, 255, 255, 0.5);
  --grey-400: rgba(255, 255, 255, 0.35);
  --grey-300: rgba(255, 255, 255, 0.18);
  --grey-200: rgba(255, 255, 255, 0.10);
  --grey-100: rgba(255, 255, 255, 0.05);

  /* ============ LIGHT (for spotlight sections) ============ */
  --white: #FFFFFF;
  --white-soft: rgba(255, 255, 255, 0.9);
  --cream: #F5F1EA;
  --cream-deep: #ECE5D2;

  /* ============ ACCENTS (use sparingly) ============ */
  --yellow: #FFE600;
  --yellow-deep: #E6CF00;

  /* ============ TYPOGRAPHY ============ */
  --font-display: 'Archivo Black', system-ui, sans-serif;
  --font-body: 'IBM Plex Sans', system-ui, sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, monospace;

  /* ============ LAYOUT ============ */
  --maxw: 1280px;
  --gutter: clamp(20px, 4vw, 48px);
  --section-y: clamp(80px, 10vw, 140px);
  --radius: 0;  /* sharp edges — matches logo */
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--white);
  background: var(--black);
  line-height: 1.55;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
::selection { background: var(--jws-red); color: var(--white); }
img { max-width: 100%; height: auto; display: block; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }

/* ============ FACETED ACCENT PATTERN (echoes logo J mark) ============ */
.facet-pattern {
  position: absolute;
  pointer-events: none;
  opacity: 0.08;
}
.facet-pattern svg { width: 100%; height: 100%; display: block; }

/* ============ NAV ============ */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, background .25s ease;
}
.nav.scrolled {
  border-color: var(--grey-700);
  background: rgba(10, 10, 10, 0.95);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px; gap: 24px;
}
.logo {
  display: flex; align-items: center; gap: 0;
  transition: transform .2s ease;
  height: 36px;
}
.logo:hover { transform: scale(1.02); }
.logo img {
  height: 36px;
  width: auto;
  display: block;
}
.nav__menu { display: flex; align-items: center; gap: 32px; }
.nav__menu a {
  font-size: 14px; font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  transition: color .15s ease;
  position: relative;
  letter-spacing: 0.01em;
}
.nav__menu a:not(.nav__cta)::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -8px;
  height: 2px; background: var(--jws-red);
  transform: scaleX(0); transform-origin: left;
  transition: transform .25s ease;
}
.nav__menu a:not(.nav__cta).active { color: var(--white); }
.nav__menu a:not(.nav__cta).active::after { transform: scaleX(1); }
.nav__menu a:not(.nav__cta):hover { color: var(--white); }
.nav__menu a:not(.nav__cta):hover::after { transform: scaleX(1); }
.nav__cta {
  background: var(--jws-red); color: var(--white) !important;
  padding: 11px 22px; font-size: 13px; font-weight: 600;
  letter-spacing: 0.02em;
  transition: all .2s ease;
}
.nav__cta:hover {
  background: var(--jws-red-bright) !important;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px var(--jws-red-glow);
}
.nav__toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--white); margin: 5px 0;
  transition: transform .25s ease;
}
@media (max-width: 1024px) {
  .nav__menu {
    display: none; position: absolute; top: 76px; left: 0; right: 0;
    background: var(--black); flex-direction: column;
    padding: 20px var(--gutter) 28px; gap: 20px;
    border-bottom: 1px solid var(--grey-700);
  }
  .nav__menu.open { display: flex; }
  .nav__toggle { display: block; }
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px;
  font-size: 14px; font-weight: 600;
  letter-spacing: 0.02em;
  transition: all .2s ease; cursor: pointer;
  border: 1px solid transparent;
  font-family: var(--font-body);
  position: relative; overflow: hidden;
  text-align: center;
}
.btn--primary { background: var(--jws-red); color: var(--white); }
.btn--primary:hover {
  background: var(--jws-red-bright);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px var(--jws-red-glow);
}
.btn--ghost {
  background: transparent; color: var(--white);
  border-color: rgba(255, 255, 255, 0.25);
}
.btn--ghost:hover {
  background: var(--white); color: var(--black);
  border-color: var(--white);
}
.btn--ghost-dark {
  background: transparent; color: var(--black);
  border-color: var(--black);
}
.btn--ghost-dark:hover { background: var(--black); color: var(--white); }
.btn__arrow { transition: transform .2s ease; font-size: 1.2em; }
.btn:hover .btn__arrow { transform: translateX(4px); }

/* ============ HERO ============ */
.hero {
  padding: clamp(60px, 9vw, 120px) 0 clamp(60px, 9vw, 100px);
  position: relative; overflow: hidden;
  background: var(--black);
}
.hero::before {
  content: ''; position: absolute;
  top: -10%; right: -20%;
  width: 70vw; height: 70vw;
  background: radial-gradient(circle at center, rgba(239, 60, 90, 0.18), transparent 55%);
  pointer-events: none; z-index: 0;
  animation: drift 22s ease-in-out infinite;
}
.hero::after {
  content: ''; position: absolute;
  bottom: -30%; left: -10%;
  width: 50vw; height: 50vw;
  background: radial-gradient(circle at center, rgba(239, 60, 90, 0.08), transparent 60%);
  pointer-events: none; z-index: 0;
  animation: drift 28s ease-in-out infinite reverse;
}
.hero__facet-bg {
  position: absolute;
  top: 0; left: 0;
  width: 35%; height: 100%;
  pointer-events: none; z-index: 0;
  opacity: 0.06;
}
@keyframes drift {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-3%, 3%); }
}
.hero > .container { position: relative; z-index: 1; }

.hero__topbar {
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px; margin-bottom: 40px; flex-wrap: wrap;
}
.hero__tag {
  font-family: var(--font-mono);
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--jws-red);
  display: flex; align-items: center; gap: 14px;
  opacity: 0; animation: fadeUp .7s ease forwards;
}
.hero__tag::before {
  content: ''; width: 36px; height: 1px; background: var(--jws-red);
}
.hero__live {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--grey-500);
  display: flex; align-items: center; gap: 10px;
  opacity: 0; animation: fadeUp .7s .15s ease forwards;
}
.hero__live .dot {
  width: 8px; height: 8px;
  background: var(--jws-red); border-radius: 50%;
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% {
    opacity: 1; transform: scale(1);
    box-shadow: 0 0 0 0 rgba(239, 60, 90, 0.5);
  }
  50% {
    opacity: 0.7; transform: scale(1.2);
    box-shadow: 0 0 0 8px rgba(239, 60, 90, 0);
  }
}

.hero__h1 {
  font-family: var(--font-display);
  font-size: clamp(44px, 7.5vw, 104px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  margin: 0 0 40px;
  color: var(--white);
}
.hero__h1 .accent {
  color: var(--jws-red);
  position: relative; display: inline-block;
}
.hero__h1 .accent::after {
  content: '';
  position: absolute;
  inset: auto -2px -8px -2px;
  height: 8px; background: var(--jws-red);
  z-index: -1;
  transform: scaleX(0); transform-origin: left;
  animation: highlight 1s 1.2s cubic-bezier(.2, .7, .2, 1) forwards;
  opacity: 0.4;
}
@keyframes highlight { to { transform: scaleX(1); } }
.hero__h1 .word {
  display: inline-block;
  opacity: 0; transform: translateY(40px);
  animation: heroIn .9s cubic-bezier(.2, .7, .2, 1) forwards;
}
.hero__h1 .word:nth-child(2) { animation-delay: .12s; }
.hero__h1 .word:nth-child(3) { animation-delay: .24s; }

.hero__split {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
}
@media (max-width: 720px) { .hero__split { grid-template-columns: 1fr; gap: 32px; } }

.hero__lede {
  font-size: clamp(17px, 1.9vw, 21px);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.75);
  max-width: 620px;
  opacity: 0;
  animation: fadeUp .8s .35s ease forwards;
}
.hero__lede strong { color: var(--white); font-weight: 600; }
.hero__lede .pop { color: var(--jws-red); font-weight: 600; }

.hero__credo {
  border-left: 3px solid var(--jws-red);
  padding-left: 24px;
  opacity: 0;
  animation: fadeUp .8s .55s ease forwards;
}
.hero__credo p {
  margin: 0 0 10px;
  font-family: var(--font-mono);
  font-size: 13px; line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.hero__credo p:last-child { margin-bottom: 0; }
.hero__credo p strong { color: var(--jws-red); font-weight: 600; }

.hero__video {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--grey-900);
  overflow: hidden;
  opacity: 0; animation: fadeUp 1s .7s ease forwards;
  border: 1px solid var(--grey-700);
}
.hero__video video {
  width: 100%; height: 100%; object-fit: cover;
  filter: contrast(1.05) saturate(1.1);
}
.hero__video::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10, 10, 10, 0.85));
  z-index: 1; pointer-events: none;
}
.hero__video__caption {
  position: absolute; left: 18px; bottom: 18px;
  z-index: 2; color: var(--white);
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase;
}
.hero__video__caption strong {
  color: var(--jws-red); display: block;
  font-family: var(--font-display); font-size: 18px;
  line-height: 1; margin-bottom: 6px; letter-spacing: 0;
}
.hero__video__pulse {
  position: absolute; top: 14px; right: 14px;
  z-index: 2;
  font-family: var(--font-mono); font-size: 9px;
  color: var(--jws-red);
  letter-spacing: 0.18em;
  display: flex; align-items: center; gap: 6px;
}
.hero__video__pulse::before {
  content: ''; width: 6px; height: 6px;
  border-radius: 50%; background: var(--jws-red);
  animation: pulse 1.6s infinite;
}

.hero__ctas {
  display: flex; flex-wrap: wrap; gap: 14px;
  margin-top: 56px;
  opacity: 0; animation: fadeUp .8s .85s ease forwards;
}

/* ============ MARQUEE ============ */
.marquee {
  background: var(--jws-red); color: var(--white);
  padding: 22px 0; overflow: hidden;
  border-top: 1px solid var(--jws-red-deep);
  border-bottom: 1px solid var(--jws-red-deep);
  position: relative;
}
.marquee__track {
  display: flex; gap: 56px; white-space: nowrap;
  animation: scroll 38s linear infinite;
  will-change: transform;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.marquee__item {
  font-family: var(--font-display); font-size: 22px;
  letter-spacing: -0.01em;
  display: flex; align-items: center; gap: 24px;
  color: var(--white);
}
.marquee__item .dot {
  width: 8px; height: 8px;
  background: var(--white); flex-shrink: 0;
  transform: rotate(45deg); /* diamond — matches faceted logo */
}

/* ============ STATS BAND ============ */
.stats {
  background: var(--black-soft);
  color: var(--white);
  padding: clamp(60px, 8vw, 100px) 0 clamp(50px, 7vw, 80px);
  position: relative; overflow: hidden;
  border-top: 1px solid var(--grey-700);
  border-bottom: 1px solid var(--grey-700);
}
.stats::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}
.stats > * { position: relative; }
.stats__head {
  display: flex; justify-content: space-between; align-items: end; gap: 24px;
  margin-bottom: 56px; flex-wrap: wrap;
}
.stats__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1; margin: 0;
  color: var(--white); letter-spacing: -0.02em;
}
.stats__title em {
  font-style: normal;
  color: var(--jws-red);
}
.stats__sub {
  font-family: var(--font-mono); font-size: 12px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--grey-500);
}
.stats__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
}
@media (max-width: 720px) { .stats__grid { grid-template-columns: repeat(2, 1fr); } }

.stat {
  padding: 24px 28px 24px 0;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  padding-left: 28px;
  position: relative; cursor: pointer;
  transition: background .25s ease;
}
.stat:hover { background: rgba(255, 255, 255, 0.02); }
.stat:first-child { border-left: 0; padding-left: 0; }
.stat::before {
  content: attr(data-idx); position: absolute;
  top: 0; right: 8px;
  font-family: var(--font-mono); font-size: 10px;
  color: var(--jws-red); letter-spacing: 0.16em;
}
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(56px, 8vw, 104px);
  line-height: 0.95; letter-spacing: -0.02em;
  color: var(--white); margin: 0;
  display: flex; align-items: baseline;
  transition: color .2s ease;
}
.stat__num .num-val {
  display: inline-block;
  font-variant-numeric: tabular-nums;
  transition: color .15s ease, text-shadow .15s ease;
}
.stat__num.scrambling .num-val {
  color: var(--jws-red);
  text-shadow: 0 0 24px var(--jws-red-glow);
}
.stat__num .plus {
  color: var(--jws-red); font-size: 0.5em;
  margin-left: 4px; transform: translateY(-0.5em);
  transition: transform .3s ease;
}
.stat:hover .stat__num .plus { transform: translateY(-0.5em) rotate(15deg); }
.stat__label {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--grey-500);
  margin-top: 14px;
}
.stat__bar {
  margin-top: 14px; height: 2px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden; position: relative;
}
.stat__bar::after {
  content: ''; position: absolute; inset: 0;
  background: var(--jws-red);
  transform: scaleX(0); transform-origin: left;
  transition: transform 1.6s cubic-bezier(.2, .8, .2, 1);
}
.stat.in .stat__bar::after { transform: scaleX(1); }

/* ============ SECTION BLOCKS ============ */
section.block { padding: var(--section-y) 0; }
.block--dark { background: var(--black); }
.block--dark-2 { background: var(--black-soft); }
.block--dark-3 { background: var(--grey-900); }
.block--cream {
  background: var(--cream);
  color: var(--black);
}
.block--red { background: var(--jws-red); color: var(--white); }
.block--red .block__title, .block--red .block__lede { color: var(--white); }
.block--red .block__index { color: var(--white); }
.block--cream .block__title { color: var(--black); }
.block--cream .block__lede { color: rgba(0, 0, 0, 0.65); }
.block--cream .block__index { color: var(--jws-red); }

.block__head {
  display: grid; grid-template-columns: 1fr 2fr;
  gap: clamp(24px, 5vw, 80px);
  align-items: end;
  margin-bottom: clamp(48px, 7vw, 80px);
}
@media (max-width: 720px) { .block__head { grid-template-columns: 1fr; } }
.block__index {
  font-family: var(--font-mono); font-size: 12px;
  color: var(--jws-red);
  letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 500; margin-bottom: 16px; display: block;
}
.block__title {
  font-family: var(--font-display);
  font-size: clamp(34px, 5.5vw, 64px);
  line-height: 1; letter-spacing: -0.02em;
  margin: 0; color: var(--white);
}
.block__title em { font-style: normal; color: var(--jws-red); }
.block__lede {
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.7);
  max-width: 620px;
}

/* ============ PILLARS ============ */
.pillars {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border-top: 1px solid var(--grey-700);
  background: var(--black-soft);
}
@media (max-width: 980px) { .pillars { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .pillars { grid-template-columns: 1fr; } }
.pillar {
  padding: 36px 28px 32px;
  border-right: 1px solid var(--grey-700);
  border-bottom: 1px solid var(--grey-700);
  display: flex; flex-direction: column; gap: 18px;
  background: transparent;
  transition: all .3s ease;
  position: relative; overflow: hidden;
}
.pillar::before {
  content: ''; position: absolute; inset: auto 0 0 0;
  height: 100%; background: var(--jws-red);
  transform: translateY(100%);
  transition: transform .35s cubic-bezier(.4, 0, .2, 1);
  z-index: 0;
}
.pillar:hover::before { transform: translateY(0); }
.pillar > * { position: relative; z-index: 1; transition: color .35s ease; }
.pillar:last-child { border-right: 0; }
@media (max-width: 980px) { .pillar:nth-child(2n) { border-right: 0; } }
@media (max-width: 560px) { .pillar { border-right: 0; } }
.pillar__num {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--jws-red);
  font-weight: 500;
  transition: color .35s ease;
}
.pillar:hover .pillar__num { color: rgba(255, 255, 255, 0.7); }
.pillar__title {
  font-family: var(--font-display); font-size: 22px;
  line-height: 1.1;
  color: var(--white); margin: 0;
}
.pillar__items {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 8px;
}
.pillar__items li {
  font-size: 14px; color: rgba(255, 255, 255, 0.7);
  padding-left: 16px; position: relative;
  transition: color .35s ease;
}
.pillar__items li::before {
  content: ''; position: absolute; left: 0; top: 9px;
  width: 6px; height: 1px; background: var(--jws-red);
  transition: background .25s ease;
}
.pillar:hover .pillar__items li { color: var(--white); }
.pillar:hover .pillar__items li::before { background: var(--white); }

/* ============ FOCUS / SERVICE CARDS ============ */
.focus__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.focus__grid--4 {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 980px) { .focus__grid, .focus__grid--4 { grid-template-columns: 1fr; } }
.focus__card {
  background: var(--black-soft);
  padding: 36px 32px;
  display: flex; flex-direction: column; gap: 20px;
  border: 1px solid var(--grey-700);
  transition: all .3s ease;
  position: relative; overflow: hidden;
  min-height: 380px;
  color: var(--white);
}
.focus__card::after {
  content: ''; position: absolute; inset: auto 0 0 0;
  height: 4px; background: var(--jws-red);
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s ease;
}
.focus__card:hover {
  transform: translateY(-4px);
  border-color: var(--jws-red);
  box-shadow: 0 24px 60px rgba(239, 60, 90, 0.15);
  background: var(--grey-900);
}
.focus__card:hover::after { transform: scaleX(1); }
.focus__tag {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--jws-red); font-weight: 500;
}
.focus__title {
  font-family: var(--font-display); font-size: 28px;
  line-height: 1; color: var(--white); margin: 0;
  letter-spacing: -0.01em;
}
.focus__desc {
  font-size: 15px; line-height: 1.6;
  color: rgba(255, 255, 255, 0.7); flex: 1;
}
.focus__bullets {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 6px;
}
.focus__bullets li {
  font-family: var(--font-mono); font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.02em;
}
.focus__bullets li::before { content: '— '; color: var(--jws-red); }
.focus__cta {
  margin-top: 4px;
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; color: var(--white);
}
.focus__cta::after {
  content: '→'; transition: transform .2s ease;
  color: var(--jws-red);
}
.focus__card:hover .focus__cta::after { transform: translateX(4px); }

/* ============ INDUSTRY DATA VIZ ============ */
.dataviz {
  background: var(--black-soft);
  padding: 40px;
  border: 1px solid var(--grey-700);
  margin-top: 32px;
}
.dataviz__title {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--jws-red);
  margin: 0 0 32px;
}
.dataviz__bars {
  display: flex; flex-direction: column;
  gap: 14px;
}
.dataviz__bar {
  display: grid;
  grid-template-columns: 130px 1fr 60px;
  gap: 16px; align-items: center;
}
.dataviz__bar__label {
  font-family: var(--font-mono); font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.02em;
}
.dataviz__bar__track {
  height: 8px; background: var(--grey-700);
  position: relative; overflow: hidden;
}
.dataviz__bar__fill {
  position: absolute; top: 0; left: 0; bottom: 0;
  background: var(--jws-red);
  transform: scaleX(0); transform-origin: left;
  transition: transform 1.4s cubic-bezier(.2, .8, .2, 1);
}
.dataviz.in .dataviz__bar__fill { transform: scaleX(1); }
.dataviz__bar:nth-child(2) .dataviz__bar__fill { transition-delay: 0.05s; }
.dataviz__bar:nth-child(3) .dataviz__bar__fill { transition-delay: 0.1s; }
.dataviz__bar:nth-child(4) .dataviz__bar__fill { transition-delay: 0.15s; }
.dataviz__bar:nth-child(5) .dataviz__bar__fill { transition-delay: 0.2s; }
.dataviz__bar:nth-child(6) .dataviz__bar__fill { transition-delay: 0.25s; }
.dataviz__bar:nth-child(7) .dataviz__bar__fill { transition-delay: 0.3s; }
.dataviz__bar:nth-child(8) .dataviz__bar__fill { transition-delay: 0.35s; }
.dataviz__bar__value {
  font-family: var(--font-display); font-size: 14px;
  color: var(--white); text-align: right;
  font-variant-numeric: tabular-nums;
}
@media (max-width: 560px) {
  .dataviz__bar { grid-template-columns: 100px 1fr 50px; gap: 12px; }
  .dataviz__bar__label { font-size: 11px; }
  .dataviz { padding: 24px; }
}

/* ============ SELECTED WORK / CASE GRID ============ */
.work__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--grey-700);
  border: 1px solid var(--grey-700);
}
@media (max-width: 880px) { .work__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .work__grid { grid-template-columns: 1fr; } }
.case {
  background: var(--black-soft);
  padding: 28px 26px 26px;
  display: flex; flex-direction: column; gap: 14px;
  transition: all .25s ease;
  position: relative; min-height: 280px;
  overflow: hidden; color: var(--white);
}
.case--image {
  padding: 0; min-height: 360px;
  background: var(--black-soft);
}
.case--image .case__bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  z-index: 0;
  filter: brightness(0.95) saturate(1);
  transition: filter .4s ease, transform .8s cubic-bezier(.2,.7,.2,1);
}
.case--image:hover .case__bg {
  filter: brightness(1.15) saturate(1.2);
  transform: scale(1.04);
}
.case--image::before {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.3) 0%, rgba(10,10,10,0.4) 40%, rgba(10,10,10,0.88) 88%);
  z-index: 1;
}
.case--image > * {
  position: relative; z-index: 2;
  padding: 26px 26px 22px;
}
.case--image > *:not(:first-child) { padding-top: 0; }

.case--image .case__viewbadge {
  position: absolute; top: 26px; right: 26px;
  z-index: 3;
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.18em; color: var(--jws-red);
  display: flex; align-items: center; gap: 8px;
  padding: 0 !important;
  text-transform: uppercase;
}
.case--image .case__viewbadge::before {
  content: '◇';
  color: var(--jws-red);
  font-size: 13px;
  line-height: 1;
}

.case__sector {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  display: flex; justify-content: space-between;
}
.case__sector .pill {
  color: var(--jws-red);
  font-weight: 500;
}

/* Big-metric block: occupies vertical middle, dominates the card */
.case__outcome {
  font-family: var(--font-display);
  font-size: clamp(34px, 3vw, 48px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--white);
  margin: 28px 0 12px;
  padding: 0 26px;
  text-shadow: 0 2px 28px rgba(10, 10, 10, 0.8);
  word-wrap: break-word;
  hyphens: auto;
}
.case__outcome em {
  font-style: normal;
  color: var(--jws-red);
  display: block;
  font-size: 1.5em;
  line-height: 0.9;
  margin-bottom: 4px;
}

.case__desc {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
  flex: 1;
  text-shadow: 0 1px 12px rgba(10, 10, 10, 0.6);
}

.case__client {
  font-family: var(--font-mono); font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.04em;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 14px;
  margin-top: auto;
}

/* ============ PROOF BAND (red full-bleed) ============ */
.proof {
  background: var(--jws-red); color: var(--white);
  padding: clamp(70px, 9vw, 110px) 0;
  position: relative; overflow: hidden;
}
.proof::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 100% 32px;
  pointer-events: none;
}
.proof > * { position: relative; }
.proof__grid {
  display: grid; grid-template-columns: 1fr 2fr;
  gap: clamp(32px, 5vw, 64px); align-items: center;
}
@media (max-width: 880px) { .proof__grid { grid-template-columns: 1fr; } }
.proof__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px); line-height: 1.05;
  color: var(--white); margin: 0;
  letter-spacing: -0.01em;
}
.proof__title em { font-style: normal; color: var(--black); }
.proof__nums {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
@media (max-width: 600px) { .proof__nums { grid-template-columns: 1fr; gap: 24px; } }
.proof__num {
  border-top: 2px solid rgba(255, 255, 255, 0.3);
  padding-top: 18px;
  transition: border-color .3s ease;
}
.proof__num:hover { border-color: var(--black); }
.proof__num .big {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 80px); line-height: 1;
  margin: 0; color: var(--white);
  font-variant-numeric: tabular-nums;
}
.proof__num:hover .big { color: var(--black); }
.proof__num .lbl {
  font-family: var(--font-mono); font-size: 12px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 12px;
}

/* ============ INDUSTRIES GRID ============ */
.industries__list {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px;
  background: var(--grey-700);
  border: 1px solid var(--grey-700);
}
@media (max-width: 980px) { .industries__list { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .industries__list { grid-template-columns: repeat(2, 1fr); } }
.industry {
  background: var(--black-soft);
  padding: 22px 20px;
  display: flex; flex-direction: column; gap: 6px;
  transition: all .25s ease;
  position: relative; overflow: hidden;
  color: var(--white);
}
.industry::before {
  content: ''; position: absolute; inset: auto 0 0 0;
  height: 0; background: var(--jws-red);
  transition: height .3s ease;
}
.industry:hover::before { height: 100%; }
.industry > * { position: relative; z-index: 1; transition: color .3s ease; }
.industry__num {
  font-family: var(--font-mono); font-size: 11px;
  color: var(--jws-red); letter-spacing: 0.1em;
  transition: color .3s ease;
}
.industry__name {
  font-family: var(--font-body); font-weight: 600;
  font-size: 15px; color: var(--white);
}
.industry:hover .industry__num { color: rgba(255, 255, 255, 0.7); }

/* ============ PRODUCTS ============ */
.products__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
@media (max-width: 880px) { .products__grid { grid-template-columns: 1fr; } }
.product {
  background: var(--black-soft);
  border: 1px solid var(--grey-700);
  padding: 32px 28px;
  display: flex; flex-direction: column; gap: 16px;
  transition: all .3s ease;
  position: relative; overflow: hidden;
  min-height: 320px;
  color: var(--white);
}
.product::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(239, 60, 90, 0.12), transparent 60%);
  opacity: 0; transition: opacity .3s ease;
}
.product:hover::before { opacity: 1; }
.product:hover {
  border-color: var(--jws-red);
  transform: translateY(-3px);
}
.product > * { position: relative; }
.product--video video {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.25; z-index: 0;
  transition: opacity .35s ease;
}
.product--video:hover video { opacity: 0.55; }
.product--video::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(10, 10, 10, 0.92));
  z-index: 1;
}
.product--video > * { z-index: 2; }
.product__name {
  font-family: var(--font-display); font-size: 26px;
  color: var(--white); margin: 0; letter-spacing: -0.01em;
}
.product__cat {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--jws-red);
}
.product__desc {
  font-size: 14px; line-height: 1.55;
  color: rgba(255, 255, 255, 0.78); flex: 1;
}
.product__meta {
  display: flex; gap: 24px;
  border-top: 1px solid var(--grey-700);
  padding-top: 16px;
  font-family: var(--font-mono); font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
}
.product__meta strong {
  display: block; color: var(--jws-red);
  font-family: var(--font-display); font-size: 22px;
  font-weight: 400; margin-bottom: 2px;
}

/* ============ TRUST + TESTIMONIALS ============ */
.trust__row {
  display: flex; gap: 48px; align-items: center;
  padding: 32px 0;
  border-bottom: 1px solid var(--grey-700);
  flex-wrap: wrap;
}
.trust__label {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--grey-500);
  width: 160px; flex-shrink: 0;
}
.trust__badges {
  display: flex; gap: 16px; flex-wrap: wrap; align-items: center;
}
.trust__badge {
  font-family: var(--font-display); font-size: 14px;
  color: var(--white);
  border: 1px solid var(--grey-700);
  padding: 10px 16px;
  letter-spacing: 0.02em;
  background: var(--black-soft);
  transition: all .2s ease;
}
.trust__badge:hover {
  background: var(--jws-red); color: var(--white);
  border-color: var(--jws-red);
  transform: translateY(-2px);
}

.testimonials {
  margin-top: 48px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
@media (max-width: 880px) { .testimonials { grid-template-columns: 1fr; } }
.quote {
  padding: 28px;
  background: var(--black-soft);
  border: 1px solid var(--grey-700);
  display: flex; flex-direction: column; gap: 16px;
  min-height: 200px;
  transition: all .25s ease;
  position: relative; color: var(--white);
}
.quote:hover {
  transform: translateY(-3px);
  border-color: var(--jws-red);
}
.quote::before {
  content: ''; position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px; background: var(--jws-red);
  transform: scaleY(0); transform-origin: top;
  transition: transform .3s ease;
}
.quote:hover::before { transform: scaleY(1); }
.quote__mark {
  font-family: var(--font-display); font-size: 40px;
  color: var(--jws-red); line-height: 0.5;
}
.quote__text {
  font-size: 16px; line-height: 1.5;
  color: var(--white); flex: 1;
}
.quote__attr {
  font-family: var(--font-mono); font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--grey-500);
  border-top: 1px solid var(--grey-700);
  padding-top: 12px;
}
.quote__attr strong { color: var(--white); font-weight: 600; }

/* ============ CTA BAND (cream spotlight) ============ */
.cta {
  padding: clamp(80px, 10vw, 130px) 0;
  text-align: center;
  background: var(--cream);
  color: var(--black);
  border-top: 1px solid var(--cream-deep);
  border-bottom: 1px solid var(--cream-deep);
  position: relative; overflow: hidden;
}
.cta::before {
  content: ''; position: absolute;
  top: -30%; left: 50%; transform: translateX(-50%);
  width: 80vw; height: 80vw;
  background: radial-gradient(circle, rgba(239, 60, 90, 0.06), transparent 60%);
  pointer-events: none;
}
.cta > * { position: relative; }
.cta__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 88px);
  line-height: 1; margin: 0 0 24px;
  letter-spacing: -0.02em;
  color: var(--black);
}
.cta__title .accent { color: var(--jws-red); position: relative; }
.cta__title .accent::after {
  content: ''; position: absolute;
  left: 0; right: 0; bottom: 8px; height: 8px;
  background: var(--jws-red); z-index: -1; opacity: 0.2;
}
.cta__lede {
  font-size: clamp(16px, 1.6vw, 18px);
  color: rgba(0, 0, 0, 0.65);
  max-width: 540px; margin: 0 auto 36px;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--black);
  color: rgba(255, 255, 255, 0.65);
  padding: 64px 0 32px;
  border-top: 1px solid var(--grey-700);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 56px;
}
@media (max-width: 880px) { .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 480px) { .footer__grid { grid-template-columns: 1fr; } }
.footer__brand .logo { margin-bottom: 16px; }
.footer__brand p {
  font-size: 14px; line-height: 1.55;
  color: rgba(255, 255, 255, 0.55);
  max-width: 380px; margin: 0;
}
.footer__col h4 {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--jws-red);
  margin: 0 0 16px;
}
.footer__col ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.footer__col a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  transition: color .15s ease;
}
.footer__col a:hover { color: var(--white); }
.footer__bottom {
  border-top: 1px solid var(--grey-700);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
  font-family: var(--font-mono); font-size: 12px;
  color: var(--grey-500);
}
.footer__social { display: flex; gap: 16px; }
.footer__social a {
  color: rgba(255, 255, 255, 0.55);
  transition: color .15s ease;
}
.footer__social a:hover { color: var(--white); }

/* ============ ANIMATIONS ============ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes heroIn {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  .hero__h1 .accent::after { transform: scaleX(1); }
}
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ============ UTILITIES ============ */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

/* ============ FACETED DIVIDER (echoes logo J mark pattern) ============ */
.facet-divider {
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--jws-red) 40%,
    var(--jws-red) 60%,
    transparent 100%);
  margin: 0;
  opacity: 0.4;
}

/* ============ HERO STATS (embedded inside hero) ============ */
.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 3vw, 48px);
  margin-top: clamp(48px, 6vw, 72px);
  padding-top: clamp(32px, 4vw, 48px);
  border-top: 1px solid var(--grey-700);
  opacity: 0;
  animation: fadeUp .8s 1s ease forwards;
}
@media (max-width: 720px) {
  .hero__stats { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}
.hero__stat {
  display: flex; flex-direction: column; gap: 10px;
  position: relative;
  padding-right: 16px;
}
.hero__stat::before {
  content: attr(data-idx);
  position: absolute;
  top: -2px; right: 0;
  font-family: var(--font-mono); font-size: 10px;
  color: var(--jws-red); letter-spacing: 0.16em;
  opacity: 0.7;
}
.hero__stat .stat__num {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 60px);
  line-height: 1;
  color: var(--white);
  display: flex; align-items: baseline;
  font-variant-numeric: tabular-nums;
  transition: color .2s ease;
  margin: 0;
}
.hero__stat .stat__num .num-val {
  display: inline-block;
  transition: color .15s ease, text-shadow .15s ease;
}
.hero__stat .stat__num.scrambling .num-val {
  color: var(--jws-red);
  text-shadow: 0 0 16px var(--jws-red-glow);
}
.hero__stat .stat__num .plus {
  color: var(--jws-red);
  font-size: 0.5em;
  margin-left: 3px;
  transform: translateY(-0.5em);
}
.hero__stat__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey-500);
}

/* ============ TRUST + TESTIMONIALS BLOCK (combined single row) ============ */
.trustblock {
  padding: clamp(60px, 8vw, 100px) 0;
  background: var(--black-soft);
}
.trustblock__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}
@media (max-width: 980px) {
  .trustblock__grid { grid-template-columns: 1fr; }
}
.trustblock__compliance {
  display: flex; flex-direction: column; gap: 16px;
  padding: 28px;
  background: var(--black);
  border: 1px solid var(--grey-700);
}
.trustblock__compliance .block__index {
  margin-bottom: 4px;
}
.trustblock__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--grey-500);
}
.trustblock .trust__badges {
  margin-top: 4px;
}
.trustblock .quote {
  margin: 0;
  background: var(--black);
}

/* ============ DEPLOYMENTS RAIL (under work grid) ============ */
.deployments {
  margin-top: 48px;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px 0;
  border-top: 1px solid var(--grey-700);
  border-bottom: 1px solid var(--grey-700);
  flex-wrap: wrap;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 13px;
}
.deployments__label {
  color: var(--grey-500);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.deployments__list {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}
.deployments__item {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color .2s ease;
}
.deployments__item:hover { color: var(--jws-red); }
.deployments__sep {
  color: var(--jws-red);
  opacity: 0.5;
}
@media (max-width: 600px) {
  .deployments { flex-direction: column; gap: 12px; padding: 20px 0; }
  .deployments__list { gap: 8px 14px; font-size: 12px; }
}

/* ============ SAAS PRODUCTS — FULL-WIDTH 5TH CARD ============ */
.saas-card {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  background: var(--black-soft);
  border: 1px solid var(--grey-700);
  position: relative;
  overflow: hidden;
  transition: all .3s ease;
}
.saas-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--jws-red-soft) 0%, transparent 50%);
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
}
.saas-card:hover::before { opacity: 1; }
.saas-card::after {
  content: '';
  position: absolute; inset: auto 0 0 0;
  height: 3px; background: var(--jws-red);
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s ease;
}
.saas-card:hover::after { transform: scaleX(1); }
.saas-card > * { position: relative; z-index: 1; }

.saas-card__main {
  padding: 40px 44px;
  display: flex; flex-direction: column; gap: 18px;
  justify-content: center;
  border-right: 1px solid var(--grey-700);
}
.saas-card__title {
  font-family: var(--font-display);
  font-size: clamp(26px, 2.6vw, 36px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--white);
  margin: 0;
}
.saas-card__title em {
  font-style: normal;
  color: var(--jws-red);
}
.saas-card__desc {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  max-width: 540px;
}
.saas-card__products {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--grey-700);
}
.saas-product {
  background: var(--grey-900);
  padding: 28px 24px;
  display: flex; flex-direction: column; gap: 8px;
  justify-content: center;
  transition: all .25s ease;
  cursor: default;
  position: relative;
  overflow: hidden;
}
.saas-product::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--jws-red);
  transform: translateY(100%);
  transition: transform .3s ease;
  z-index: 0;
}
.saas-product:hover::before { transform: translateY(0); }
.saas-product > * { position: relative; z-index: 1; transition: color .25s ease; }
.saas-product__name {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1;
  color: var(--white);
  letter-spacing: -0.005em;
}
.saas-product__cat {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.06em;
}
.saas-product:hover .saas-product__cat {
  color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 880px) {
  .saas-card { grid-template-columns: 1fr; }
  .saas-card__main {
    border-right: 0;
    border-bottom: 1px solid var(--grey-700);
    padding: 32px 28px;
  }
  .saas-card__products { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .saas-product { padding: 22px 18px; }
  .saas-product__name { font-size: 18px; }
}

/* ============ PROOF BAND +SIGN ============ */
.proof__plus {
  display: inline-block;
  font-size: 0.6em;
  color: rgba(255, 255, 255, 0.7);
  margin-left: 4px;
  font-weight: 400;
  vertical-align: top;
}
.proof__num:hover .proof__plus {
  color: rgba(0, 0, 0, 0.7);
}

/* ============ CLUTCH REVIEWS — AUTO-SCROLL MARQUEE ============ */
.reviews {
  padding: clamp(60px, 8vw, 100px) 0 clamp(60px, 8vw, 100px);
  background: var(--black-soft);
  overflow: hidden;
  position: relative;
}
.reviews__head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: end;
  margin-bottom: 48px;
}
@media (max-width: 720px) {
  .reviews__head { grid-template-columns: 1fr; gap: 24px; }
}
.reviews__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}
@media (max-width: 720px) {
  .reviews__meta { align-items: flex-start; }
}
.reviews__rating {
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.reviews__stars {
  color: var(--jws-red);
  font-size: 22px;
  letter-spacing: 2px;
}
.reviews__score {
  font-family: var(--font-display);
  font-size: 34px;
  color: var(--white);
  line-height: 1;
}
.reviews__count {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--grey-500);
  margin: 0;
  letter-spacing: 0.04em;
}
.reviews__count a {
  color: var(--jws-red);
  transition: color .2s ease;
}
.reviews__count a:hover { color: var(--jws-red-bright); }

.reviews__marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(90deg, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
}
.reviews__track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: reviews-scroll 60s linear infinite;
}
.reviews__marquee:hover .reviews__track {
  animation-play-state: paused;
}
@keyframes reviews-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 12px)); }
}

.review {
  flex: 0 0 380px;
  background: var(--black);
  border: 1px solid var(--grey-700);
  padding: 26px 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 240px;
  transition: all .25s ease;
  position: relative;
  cursor: default;
}
.review::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--jws-red);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .3s ease;
}
.review:hover {
  border-color: var(--jws-red);
  background: var(--grey-900);
}
.review:hover::before { transform: scaleY(1); }

.review__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.review__stars {
  color: var(--jws-red);
  font-size: 16px;
  letter-spacing: 1px;
  flex-shrink: 0;
}
.review__stars .dim {
  color: rgba(255, 255, 255, 0.18);
}
.review__cat {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--grey-500);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.review__quote {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
  flex: 1;
}
.review__quote strong {
  color: var(--white);
  font-weight: 600;
}
.review__attr {
  border-top: 1px solid var(--grey-700);
  padding-top: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--grey-500);
  letter-spacing: 0.02em;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.review__attr strong {
  color: var(--white);
  font-weight: 600;
  font-family: var(--font-body);
  font-size: 13px;
}

@media (max-width: 480px) {
  .review { flex: 0 0 300px; }
}

/* =================================================================
   SERVICES PAGE STYLES
   ================================================================= */

/* ============ PAGE HERO (smaller than home hero) ============ */
.page-hero {
  position: relative;
  padding: clamp(48px, 7vw, 96px) 0 clamp(48px, 6vw, 80px);
  background: var(--black);
  overflow: hidden;
  border-bottom: 1px solid var(--grey-700);
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -10%; right: -15%;
  width: 55vw; height: 55vw;
  background: radial-gradient(circle at center, rgba(239, 60, 90, 0.14), transparent 55%);
  pointer-events: none; z-index: 0;
}
.page-hero__facet {
  position: absolute;
  top: 0; right: 0;
  width: 28%; height: 100%;
  opacity: 0.06;
  pointer-events: none;
}
.page-hero__facet svg {
  width: 100%; height: 100%;
}
.page-hero > .container { position: relative; z-index: 1; }

.breadcrumbs {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.breadcrumbs a {
  color: var(--grey-500);
  transition: color .15s ease;
}
.breadcrumbs a:hover { color: var(--white); }
.breadcrumbs__sep { color: var(--jws-red); }
.breadcrumbs__current { color: var(--white); }

.page-hero__index {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--jws-red);
  display: inline-block;
  margin-bottom: 24px;
}

.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6.5vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: var(--white);
  margin: 0 0 28px;
}
.page-hero__title .accent {
  color: var(--jws-red);
}

.page-hero__lede {
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.75);
  max-width: 720px;
  margin: 0 0 36px;
}

.page-hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ============ STICKY PRACTICE NAV ============ */
.practice-nav {
  position: sticky;
  top: 76px;
  z-index: 90;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-top: 1px solid var(--grey-700);
  border-bottom: 1px solid var(--grey-700);
  padding: 14px 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.practice-nav::-webkit-scrollbar { display: none; }
.practice-nav__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  white-space: nowrap;
}
.practice-nav__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--grey-500);
  flex-shrink: 0;
}
.practice-nav__link {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.7);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: all .2s ease;
  flex-shrink: 0;
}
.practice-nav__link:hover {
  color: var(--jws-red);
  border-bottom-color: var(--jws-red);
}

/* ============ PRACTICE SECTION ============ */
.practice {
  padding: clamp(72px, 9vw, 120px) 0;
  scroll-margin-top: 140px;
}

.practice__head {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  margin-bottom: 56px;
  align-items: start;
}
@media (max-width: 880px) {
  .practice__head { grid-template-columns: 1fr; }
}

.practice__num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--jws-red);
  display: inline-block;
  margin-bottom: 6px;
  padding: 4px 10px;
  border: 1px solid var(--jws-red);
}
.practice__tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  display: inline-block;
  margin-left: 12px;
  margin-bottom: 18px;
}
.practice__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--white);
  margin: 12px 0 24px;
}
.practice__title em {
  font-style: normal;
  color: var(--jws-red);
}
.practice__lede {
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
  max-width: 680px;
}

.practice__meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.practice__stat {
  background: var(--grey-900);
  border: 1px solid var(--grey-700);
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color .25s ease;
}
.practice__stat:hover { border-color: var(--jws-red); }
.practice__stat__num {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--white);
}
.practice__stat__num .plus {
  color: var(--jws-red);
  font-size: 0.6em;
  margin-left: 2px;
  vertical-align: top;
}
.practice__stat__lbl {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey-500);
  line-height: 1.4;
}

.practice__detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 60px);
  padding-top: 32px;
  border-top: 1px solid var(--grey-700);
}
@media (max-width: 880px) {
  .practice__detail { grid-template-columns: 1fr; gap: 32px; }
}

.practice__col {}

.practice__h3 {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--white);
  margin: 0 0 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--jws-red);
  display: inline-block;
}
.mt-32 { margin-top: 32px; }

.practice__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.practice__list li {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
  padding-left: 22px;
  position: relative;
}
.practice__list li::before {
  content: '—';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--jws-red);
}
.practice__list--icpcheck li::before {
  content: '✓';
  font-weight: 700;
  color: var(--jws-red);
}
.practice__list--neg li::before {
  content: '✕';
  font-weight: 700;
  color: var(--grey-500);
}
.practice__list li strong {
  color: var(--white);
  font-weight: 600;
}

.practice__tech {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.practice__tech__pill {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.85);
  background: var(--grey-900);
  border: 1px solid var(--grey-700);
  padding: 6px 12px;
  letter-spacing: 0.02em;
  transition: all .15s ease;
}
.practice__tech__pill:hover {
  background: var(--jws-red);
  color: var(--white);
  border-color: var(--jws-red);
}

/* ============ TIER CARDS (Fractional CTO pricing) ============ */
.tier {
  background: var(--black);
  border: 1px solid var(--grey-700);
  padding: 22px 24px;
  margin-bottom: 12px;
  position: relative;
  transition: all .25s ease;
}
.tier:hover {
  border-color: var(--jws-red);
  transform: translateY(-2px);
}
.tier--anchor {
  border-color: var(--jws-red);
  background: linear-gradient(135deg, rgba(239, 60, 90, 0.06), transparent 70%);
}
.tier__name {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--white);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.tier__tag {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--jws-red);
  background: rgba(239, 60, 90, 0.12);
  padding: 3px 8px;
}
.tier__price {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--jws-red);
  line-height: 1;
  margin-bottom: 10px;
}
.tier__price span {
  font-size: 0.5em;
  color: rgba(255, 255, 255, 0.55);
}
.tier__desc {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.72);
}

/* ============ AGENTIC AI STEPS ============ */
.step {
  display: flex;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--grey-700);
}
.step:last-child { border-bottom: 0; }
.step__num {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--jws-red);
  line-height: 1;
  flex-shrink: 0;
  padding-top: 2px;
}
.step__name {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--white);
  margin: 0 0 6px;
}
.step__desc {
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
}

/* ============ PRACTICE CASE STRIP ============ */
.practice__cases {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--grey-700);
}
.practice__cases__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey-500);
  display: inline-block;
  margin-bottom: 18px;
}
.practice__cases__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 720px) {
  .practice__cases__row { grid-template-columns: 1fr; }
}
.practice__case {
  position: relative;
  background: var(--black);
  border: 1px solid var(--grey-700);
  padding: 24px 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
  min-height: 200px;
  transition: all .25s ease;
  color: var(--white);
}
.practice__case::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.4) 0%, rgba(10,10,10,0.6) 50%, rgba(10,10,10,0.92) 95%);
  z-index: 1;
}
.practice__case__bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform .6s ease;
}
.practice__case:hover .practice__case__bg {
  transform: scale(1.05);
}
.practice__case:hover {
  border-color: var(--jws-red);
}
.practice__case > * { position: relative; z-index: 2; }
.practice__case__sector {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}
.practice__case__metric {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--white);
  letter-spacing: -0.01em;
  margin: 8px 0 4px;
  line-height: 1;
}
.practice__case__metric em {
  font-style: normal;
  color: var(--jws-red);
}
.practice__case__desc {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.78);
  margin-top: auto;
}

/* ============ PRACTICE CTA (inline link) ============ */
.practice__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 48px;
  padding: 16px 24px;
  background: transparent;
  border: 1px solid var(--jws-red);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all .2s ease;
}
.practice__cta:hover {
  background: var(--jws-red);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px var(--jws-red-glow);
}
.practice__cta .arrow { transition: transform .2s ease; }
.practice__cta:hover .arrow { transform: translateX(4px); }

/* ============ SAAS PORTFOLIO GRID ============ */
.saas-portfolio {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}
@media (max-width: 880px) {
  .saas-portfolio { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .saas-portfolio { grid-template-columns: 1fr; }
}
.saas-portfolio__card {
  background: var(--grey-900);
  border: 1px solid var(--grey-700);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: all .25s ease;
  position: relative;
  overflow: hidden;
}
.saas-portfolio__card::before {
  content: '';
  position: absolute; inset: auto 0 0 0;
  height: 3px;
  background: var(--jws-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.saas-portfolio__card:hover::before { transform: scaleX(1); }
.saas-portfolio__card:hover {
  border-color: var(--jws-red);
  transform: translateY(-3px);
}
.saas-portfolio__name {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--white);
  margin: 0;
  letter-spacing: -0.01em;
}
.saas-portfolio__cat {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--jws-red);
}
.saas-portfolio__desc {
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
  margin: 4px 0 0;
}

/* ============================================================
   BLOCK-TO-BLOCK SNAP SCROLL — SITEWIDE
   ============================================================
   Architecture: every snap unit must fit one viewport (≤ 824px
   at standard laptop = 100vh - 76px nav). Sections larger than
   one viewport are split into multiple snap blocks.

   The .snap-block class is the universal snap unit. Apply it to
   anything that should land cleanly at the top of viewport.
   ============================================================ */
html {
  scroll-snap-type: y proximity;
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h, 76px);
}

/* Every snap unit is a top-level child of <main> OR an individual
   case-study card. .snap-block is the universal opt-in marker. */
.snap-block,
.hero,
.page-hero,
.practice,
.proof,
.reviews,
.cta,
.cs-featured,        /* each case study card snaps individually */
.trusted-by,
footer.footer {
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

/* Every snap unit fills viewport height for snap behavior, but content is
   NOT clipped. Sized via min-height; if content slightly exceeds the
   viewport (descenders, multi-line titles), it bleeds invisibly into the
   next snap (which snap-align hides since the next section anchors at top). */
.snap-block,
.hero,
.page-hero,
.practice,
.cs-featured,
.proof,
.reviews,
.cta,
.trusted-by {
  min-height: calc(100vh - var(--nav-h, 76px));
  /* NOTE: no max-height, no overflow:hidden. Clipping was cutting red
     descenders. min-height alone gives us viewport-fitting layout
     without truncating content. */
}

/* Sections that act as PASS-THROUGH containers (they hold multiple
   snap blocks inside) should NOT snap themselves and should NOT
   have height caps. The home page big-content sections and the
   work page case-list sections fall in this bucket. */
section.passthrough,
.featured-work,
.more-work {
  scroll-snap-align: none;
  max-height: none;
  overflow: visible;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-snap-type: none; scroll-behavior: auto; }
  .snap-block, .hero, .page-hero, .practice, .cs-featured,
  .proof, .reviews, .cta, .trusted-by {
    max-height: none; overflow: visible;
  }
}

/* Mobile: snap disabled, height caps released */
@media (max-width: 720px) {
  html { scroll-snap-type: none; }
  .snap-block, .hero, .page-hero, .practice, .cs-featured,
  .proof, .reviews, .cta, .trusted-by {
    max-height: none; overflow: visible;
  }
}

/* Short viewports: proximity snap, height caps released */
@media (max-height: 720px) {
  html { scroll-snap-type: y proximity; }
  .snap-block, .hero, .page-hero, .practice, .cs-featured,
  .proof, .reviews, .cta, .trusted-by {
    max-height: none; overflow: visible;
  }
}

/* ============================================================
   ONE-VIEWPORT PILLAR LAYOUTS (services page)
   Each .practice fills the screen and the content rebuilds to fit.
   ============================================================ */
.practice {
  min-height: calc(100vh - 76px);
  padding: clamp(36px, 5vw, 56px) 0;
  display: flex;
  align-items: center;
}
.practice > .container {
  width: 100%;
}
.practice__head {
  margin-bottom: 24px;
}
.practice__title {
  margin: 6px 0 14px;
}
.practice__lede {
  font-size: clamp(14.5px, 1.2vw, 16px);
  line-height: 1.5;
}
.practice__detail {
  padding-top: 18px;
}
.practice__cta {
  margin-top: 24px;
}
/* Tighten lists to fit one viewport */
.practice__list { gap: 8px; }
.practice__list li { font-size: 13px; line-height: 1.45; }
.practice__h3 {
  font-size: 15px;
  margin-bottom: 12px;
  padding-bottom: 8px;
}
.mt-32 { margin-top: 20px; }

/* Below 720px height (rare landscape), don't enforce min-height */
@media (max-height: 720px) {
  .practice { min-height: auto; }
}

/* ============================================================
   FRACTIONAL CTO — 6 DELIVERABLES GRID (replaces pricing)
   ============================================================ */
.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 24px;
}
@media (max-width: 880px) {
  .deliverables-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .deliverables-grid { grid-template-columns: 1fr; }
}
.deliverable {
  background: var(--grey-900);
  border: 1px solid var(--grey-700);
  padding: 18px 20px;
  position: relative;
  transition: all .25s ease;
  cursor: default;
}
.deliverable:hover {
  border-color: var(--jws-red);
  transform: translateY(-2px);
}
.deliverable::before {
  content: '';
  position: absolute; inset: 0 auto 0 0;
  width: 3px;
  background: var(--jws-red);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .3s ease;
}
.deliverable:hover::before { transform: scaleY(1); }
.deliverable__icon {
  width: 28px; height: 28px;
  margin-bottom: 10px;
  color: var(--jws-red);
}
.deliverable__name {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: -0.005em;
  color: var(--white);
  margin: 0 0 6px;
  line-height: 1.2;
}
.deliverable__desc {
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* ============================================================
   AGENTIC AI — 4-PHASE METHODOLOGY (Discover/Build/Evaluate/Deploy)
   ============================================================ */
.phases {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 20px;
}
@media (max-width: 880px) {
  .phases { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .phases { grid-template-columns: 1fr; }
}
.phase {
  background: var(--grey-900);
  border: 1px solid var(--grey-700);
  padding: 18px 18px;
  position: relative;
  transition: all .25s ease;
}
.phase:hover {
  border-color: var(--jws-red);
  transform: translateY(-2px);
}
.phase__top {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--grey-700);
}
.phase__num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--jws-red);
}
.phase__name {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--white);
  margin: 0;
  letter-spacing: -0.01em;
}
.phase__sub {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--grey-500);
  letter-spacing: 0.06em;
  display: block;
  margin-top: 2px;
}
.phase__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.phase__list li {
  font-size: 12px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.78);
  padding-left: 12px;
  position: relative;
}
.phase__list li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--jws-red);
  font-weight: 700;
}

/* ============================================================
   CATALOGIQ — 3-PILLAR DELIVERABLES (Taxonomy / PIM / Operations)
   ============================================================ */
.catalog-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 20px;
}
@media (max-width: 880px) {
  .catalog-pillars { grid-template-columns: 1fr; }
}
.catalog-pillar {
  background: var(--grey-900);
  border: 1px solid var(--grey-700);
  padding: 24px 22px;
  transition: all .25s ease;
  position: relative;
}
.catalog-pillar:hover {
  border-color: var(--jws-red);
  transform: translateY(-2px);
}
.catalog-pillar::before {
  content: '';
  position: absolute; inset: auto 0 0 0;
  height: 3px;
  background: var(--jws-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.catalog-pillar:hover::before { transform: scaleX(1); }
.catalog-pillar__head {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--white);
  margin: 0 0 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--jws-red);
  display: inline-block;
}
.catalog-pillar__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.catalog-pillar__list li {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.78);
  padding-left: 14px;
  position: relative;
}
.catalog-pillar__list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--jws-red);
}
.catalog-platforms {
  margin-top: 22px;
  padding: 16px 20px;
  background: var(--black);
  border-left: 3px solid var(--jws-red);
}
.catalog-platforms__label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey-500);
  display: block;
  margin-bottom: 6px;
}
.catalog-platforms__list {
  font-family: var(--font-mono);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.02em;
}
.catalog-platforms__list span {
  color: var(--jws-red);
  margin: 0 6px;
}

/* ============================================================
   SAAS PORTFOLIO — 6 product cards (revamped)
   ============================================================ */
.saas-portfolio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 0;
}
@media (max-width: 880px) {
  .saas-portfolio { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .saas-portfolio { grid-template-columns: 1fr; }
}
.saas-portfolio__card {
  background: var(--grey-900);
  border: 1px solid var(--grey-700);
  padding: 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: all .25s ease;
  position: relative;
  overflow: hidden;
  min-height: 168px;
}
.saas-portfolio__card::before {
  content: '';
  position: absolute; inset: 0 0 auto 0;
  height: 3px;
  background: var(--jws-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.saas-portfolio__card:hover::before { transform: scaleX(1); }
.saas-portfolio__card:hover {
  border-color: var(--jws-red);
  transform: translateY(-3px);
}
.saas-portfolio__flag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--grey-500);
  text-transform: uppercase;
}
.saas-portfolio__name {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--white);
  margin: 0;
  letter-spacing: -0.01em;
}
.saas-portfolio__cat {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--jws-red);
  text-transform: uppercase;
}
.saas-portfolio__desc {
  font-size: 12.5px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.74);
  margin: 4px 0 0;
}

/* ============================================================
   COMPRESS SAAS PILLAR section to one viewport
   ============================================================ */
#saas-products .practice__head { margin-bottom: 20px; }
#saas-products .practice__detail {
  margin-top: 24px;
  padding-top: 20px;
}

/* =================================================================
   WORK PAGE STYLES
   ================================================================= */

/* ============ FILTER PILLS ============ */
.work-filter {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--grey-700);
}
.work-filter__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey-500);
  margin-right: 6px;
}
.work-filter__pill {
  background: transparent;
  border: 1px solid var(--grey-700);
  color: rgba(255, 255, 255, 0.75);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  padding: 8px 14px;
  cursor: pointer;
  transition: all .2s ease;
}
.work-filter__pill:hover {
  border-color: var(--jws-red);
  color: var(--jws-red);
}
.work-filter__pill.active {
  background: var(--jws-red);
  border-color: var(--jws-red);
  color: var(--white);
}

/* ============ FEATURED CASE STUDY (large-format alternating rows) ============ */
.featured-work {
  padding: 0;
}
.featured-work > .container {
  max-width: none;
  padding: 0;
}
.featured-work .block__head {
  padding: clamp(48px, 7vw, 96px) clamp(20px, 4vw, 40px) clamp(36px, 5vw, 64px);
  max-width: 1400px;
  margin: 0 auto;
}

.cs-featured {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 0;
  margin-bottom: 0;
  background: var(--black-soft);
  border: 1px solid var(--grey-700);
  position: relative;
  overflow: hidden;
  transition: border-color .25s ease;
  min-height: calc(100vh - 76px);
  align-items: stretch;
}
.cs-featured + .cs-featured { margin-top: 0; }
.cs-featured:hover { border-color: var(--jws-red); }
.cs-featured:last-child { margin-bottom: 0; }
.cs-featured--reverse { grid-template-columns: 1.1fr 0.9fr; }
.cs-featured--reverse .cs-featured__bg { order: 2; }
.cs-featured--reverse .cs-featured__content { order: 1; }
@media (max-height: 720px) {
  .cs-featured { min-height: auto; }
}

@media (max-width: 880px) {
  .cs-featured,
  .cs-featured--reverse { grid-template-columns: 1fr; }
  .cs-featured--reverse .cs-featured__bg { order: 0; }
  .cs-featured--reverse .cs-featured__content { order: 0; }
}

.cs-featured__bg {
  position: relative;
  min-height: 320px;
  background: var(--black);
  overflow: hidden;
}
.cs-featured__bg img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.2,.7,.2,1);
}
.cs-featured:hover .cs-featured__bg img {
  transform: scale(1.05);
}
.cs-featured__bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.2) 0%, rgba(10,10,10,0.4) 100%);
  pointer-events: none;
}

.cs-featured__content {
  padding: clamp(24px, 3.2vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
}

.cs-featured__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.cs-featured__num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--jws-red);
  padding: 4px 8px;
  border: 1px solid var(--jws-red);
}
.cs-featured__sector {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}
.cs-featured__pill {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--jws-red);
  background: rgba(239, 60, 90, 0.12);
  padding: 4px 8px;
}

.cs-featured__title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.1vw, 30px);
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: var(--white);
  margin: 0;
}

.cs-featured__lede {
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

.cs-featured__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 18px 0;
  border-top: 1px solid var(--grey-700);
  border-bottom: 1px solid var(--grey-700);
  margin: 4px 0;
}
@media (max-width: 480px) {
  .cs-featured__metrics { grid-template-columns: 1fr; gap: 14px; }
}
.cs-featured__metric {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cs-featured__metric__num {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--jws-red);
}
.cs-featured__metric__lbl {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-500);
  line-height: 1.3;
}

.cs-featured__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--jws-red);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: gap .2s ease;
}
.cs-featured__cta:hover { gap: 14px; }
.cs-featured__cta .arrow { transition: transform .2s ease; }

/* ============ MORE-WORK COMPACT GRID (7 cards) ============ */
.more-work {
  padding: clamp(72px, 9vw, 120px) 0;
}
.cs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 880px) {
  .cs-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 580px) {
  .cs-grid { grid-template-columns: 1fr; }
}

.cs-card {
  position: relative;
  min-height: 320px;
  background: var(--black);
  border: 1px solid var(--grey-700);
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: all .25s ease;
  color: var(--white);
}
.cs-card:hover {
  border-color: var(--jws-red);
  transform: translateY(-3px);
}

.cs-card__bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.95);
  transition: filter .3s ease, transform .8s cubic-bezier(.2,.7,.2,1);
}
.cs-card:hover .cs-card__bg {
  filter: brightness(1.1) saturate(1.2);
  transform: scale(1.04);
}
.cs-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.4) 0%, rgba(10,10,10,0.5) 40%, rgba(10,10,10,0.93) 90%);
  z-index: 1;
}
.cs-card > * { position: relative; z-index: 2; padding: 22px 22px 0; }
.cs-card > *:not(:first-child) { padding-top: 0; }
.cs-card > *:last-child { padding-bottom: 20px; }

.cs-card__viewbadge {
  position: absolute; top: 22px; right: 22px; z-index: 3;
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.18em; color: var(--jws-red);
  text-transform: uppercase;
  display: flex; align-items: center; gap: 8px;
  padding: 0 !important;
}
.cs-card__viewbadge::before {
  content: '◇'; color: var(--jws-red); font-size: 12px;
}
.cs-card__sector {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  display: flex; justify-content: space-between;
  padding-right: 100px !important;
}
.cs-card__sector .pill { color: var(--jws-red); }
.cs-card__outcome {
  font-family: var(--font-display);
  font-size: clamp(26px, 2.4vw, 36px);
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--white);
  margin: 24px 0 10px;
  text-shadow: 0 2px 16px rgba(10, 10, 10, 0.8);
}
.cs-card__outcome em {
  font-style: normal;
  color: var(--jws-red);
}
.cs-card__desc {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
  flex: 1;
}
.cs-card__client {
  font-family: var(--font-mono); font-size: 10.5px;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.55);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 14px;
  padding-top: 14px !important;
  padding-bottom: 0 !important;
}

/* ============ TRUSTED-BY (Logo wall as named list grouped by region) ============ */
.trusted-by {
  padding: clamp(72px, 9vw, 120px) 0;
}
.trusted-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
@media (max-width: 720px) {
  .trusted-grid { grid-template-columns: 1fr; }
}
.trusted-region {
  background: var(--grey-900);
  border: 1px solid var(--grey-700);
  padding: 24px 24px 20px;
  transition: border-color .25s ease;
}
.trusted-region:hover { border-color: var(--jws-red); }
.trusted-region__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--jws-red);
  display: block;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--grey-700);
}
.trusted-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.trusted-list__item {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  padding: 6px 12px;
  background: var(--black);
  border: 1px solid var(--grey-700);
  letter-spacing: 0.01em;
  transition: all .2s ease;
  cursor: default;
}
.trusted-list__item:hover {
  border-color: var(--jws-red);
  color: var(--white);
}


/* =================================================================
   WORK PAGE — DENSE LOGO WALL (replaces regional sectioning)
   ================================================================= */
.logo-wall {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0;
  border-top: 1px solid var(--grey-700);
  border-left: 1px solid var(--grey-700);
}
.logo-wall__item {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  padding: 32px 18px;
  background: var(--black-soft);
  border-right: 1px solid var(--grey-700);
  border-bottom: 1px solid var(--grey-700);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 90px;
  transition: all .25s ease;
  cursor: default;
  position: relative;
  overflow: hidden;
}
.logo-wall__item::before {
  content: '';
  position: absolute; inset: auto 0 0 0;
  height: 3px;
  background: var(--jws-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.logo-wall__item:hover::before { transform: scaleX(1); }
.logo-wall__item:hover {
  background: var(--grey-900);
  color: var(--white);
}
.logo-wall__item:last-child {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--jws-red);
  background: var(--black);
}

.logo-wall__note {
  margin-top: 32px;
  padding: 20px 24px;
  background: var(--black-soft);
  border-left: 3px solid var(--jws-red);
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}
.logo-wall__note strong {
  color: var(--white);
  font-weight: 600;
}

/* =================================================================
   WORK PAGE — TIGHTEN BLOCK FLOW
   Snap to section anchors only (hero, Section A header, Section B header, 
   Trusted-by, CTA). Individual case studies flow naturally within each
   section instead of snapping each one — keeps reading comfortable.
   ================================================================= */
.featured-work {
  scroll-snap-align: start;
  scroll-snap-stop: normal;
  scroll-margin-top: 76px;
}

/* ============================================================
   FINAL FIT-TO-VIEWPORT COMPRESSION
   For viewports in the 800-1000px range (standard laptops), the
   pillar sections need slight additional compression to avoid overflow.
   ============================================================ */
@media (min-height: 800px) and (max-height: 1000px) {
  .practice__head {
    margin-bottom: 18px;
  }
  .practice__title {
    font-size: clamp(28px, 3.8vw, 48px);
    line-height: 0.95;
  }
  .practice__lede {
    font-size: 14px;
    line-height: 1.45;
  }
  .practice__detail {
    padding-top: 14px;
  }
  .deliverables-grid,
  .phases,
  .catalog-pillars,
  .saas-portfolio {
    gap: 10px;
  }
  .deliverable {
    padding: 14px 16px;
  }
  .deliverable__name {
    font-size: 13px;
  }
  .deliverable__desc {
    font-size: 11.5px;
    line-height: 1.4;
  }
  .deliverable__icon {
    width: 22px; height: 22px;
    margin-bottom: 6px;
  }
  .phase {
    padding: 14px 14px;
  }
  .phase__top {
    margin-bottom: 8px;
    padding-bottom: 8px;
  }
  .phase__list li {
    font-size: 11.5px;
    line-height: 1.4;
  }
  .catalog-pillar {
    padding: 18px 18px;
  }
  .catalog-pillar__head {
    font-size: 16px;
    margin-bottom: 10px;
    padding-bottom: 6px;
  }
  .catalog-pillar__list li {
    font-size: 12px;
    line-height: 1.4;
  }
  .catalog-platforms {
    margin-top: 14px;
    padding: 12px 16px;
  }
  .saas-portfolio__card {
    padding: 16px 18px;
    min-height: 140px;
  }
  .saas-portfolio__name {
    font-size: 18px;
  }
  .saas-portfolio__desc {
    font-size: 11.5px;
    line-height: 1.4;
  }
  .practice__cta {
    margin-top: 18px;
    padding: 12px 20px;
    font-size: 13px;
  }
  .practice__stat {
    padding: 16px 18px;
  }
  .practice__stat__num {
    font-size: clamp(22px, 2.4vw, 30px);
  }
}

/* ============================================================
   SNAP-BLOCK INTRO CARDS (section header viewports)
   Used when a section's header gets its own snap block so users
   land on the intro before the content rows start.
   ============================================================ */
.snap-block--intro {
  padding: clamp(60px, 9vw, 120px) 0;
  display: flex;
  align-items: center;
  background: inherit;
}
.snap-block--intro .container { width: 100%; }

.snap-block--cta-inline {
  padding: clamp(28px, 4vw, 56px) 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.snap-block--wall {
  padding: clamp(40px, 6vw, 72px) 0;
  display: flex;
  align-items: center;
}
.snap-block--wall .container { width: 100%; }

/* Tighten logo wall so it fits inside one snap block */
.snap-block--wall .logo-wall {
  grid-template-columns: repeat(6, 1fr);
}
.snap-block--wall .logo-wall__item {
  min-height: 70px;
  padding: 20px 14px;
  font-size: 13px;
}
.snap-block--wall .logo-wall__note {
  margin-top: 20px;
  padding: 14px 18px;
  font-size: 13px;
}

@media (max-width: 880px) {
  .snap-block--wall .logo-wall { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) {
  .snap-block--wall .logo-wall { grid-template-columns: repeat(2, 1fr); }
}

/* When .cs-featured is forced into one viewport, its inner content
   needs to fit without scroll. Tighten everything inside. */
.cs-featured__content {
  padding: clamp(28px, 3.5vw, 44px);
  gap: 12px;
  justify-content: center;
}
.cs-featured__title {
  font-size: clamp(22px, 2.2vw, 32px);
  line-height: 1.1;
}
.cs-featured__lede {
  font-size: 13.5px;
  line-height: 1.55;
}
.cs-featured__metrics {
  padding: 14px 0;
  margin: 2px 0;
}
.cs-featured__metric__num {
  font-size: clamp(22px, 2.4vw, 32px);
}

/* ============================================================
   HOME PAGE — split case grid (3 columns per snap block)
   ============================================================ */
.work__grid--3 {
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 880px) {
  .work__grid--3 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 580px) {
  .work__grid--3 { grid-template-columns: 1fr; }
}

/* Snap blocks on home page get vertical centering and a fit-viewport feel */
section.passthrough > .snap-block {
  padding: clamp(36px, 5vw, 64px) 0;
  display: flex;
  align-items: center;
}
section.passthrough > .snap-block > .container { width: 100%; }

/* Compress focus__card / case content inside snap blocks
   so 4 cards fit comfortably in one viewport */
.snap-block .focus__grid--4 {
  gap: 12px;
}
.snap-block .focus__card {
  padding: 20px 22px;
}
.snap-block .focus__title {
  font-size: 19px;
  margin-bottom: 8px;
}
.snap-block .focus__desc {
  font-size: 13px;
  line-height: 1.45;
  margin-bottom: 10px;
}
.snap-block .focus__bullets li {
  font-size: 12.5px;
  line-height: 1.4;
}
.snap-block .block__head {
  margin-bottom: 24px;
}

/* Make hero fit within viewport too */
.hero {
  min-height: calc(100vh - 76px);
  max-height: calc(100vh - 76px);
  padding-top: clamp(36px, 5vw, 64px);
  padding-bottom: clamp(36px, 5vw, 64px);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero > .container { width: 100%; }
@media (max-width: 720px), (max-height: 720px) {
  .hero { min-height: auto; max-height: none; overflow: visible; }
}

/* =================================================================
   INDUSTRIES PAGE STYLES
   ================================================================= */

/* Each industry section is a snap block, fills viewport for snap behavior */
.industry {
  min-height: calc(100vh - 76px);
  padding: clamp(48px, 6vw, 72px) 0 clamp(56px, 6vw, 72px);
  display: flex;
  align-items: center;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}
.industry > .container {
  width: 100%;
}

/* Industry head: title + lede on left, 2 stats on right */
.industry__head {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(24px, 4vw, 56px);
  margin-bottom: 28px;
  align-items: start;
}
@media (max-width: 880px) {
  .industry__head { grid-template-columns: 1fr; }
}

.industry__num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--jws-red);
  display: inline-block;
  margin-bottom: 6px;
  padding: 4px 10px;
  border: 1px solid var(--jws-red);
}
.industry__tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  display: inline-block;
  margin-left: 12px;
  margin-bottom: 14px;
}
.industry__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--white);
  margin: 8px 0 16px;
}
.industry__title em {
  font-style: normal;
  color: var(--jws-red);
}
.industry__lede {
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.78);
  max-width: 680px;
  margin: 0;
}

.industry__meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.industry__stat {
  background: var(--grey-900);
  border: 1px solid var(--grey-700);
  padding: 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: border-color .25s ease;
}
.industry__stat:hover { border-color: var(--jws-red); }
.industry__stat__num {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--white);
}
.industry__stat__num .plus {
  color: var(--jws-red);
  font-size: 0.6em;
  margin-left: 2px;
}
.industry__stat__lbl {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-500);
  line-height: 1.3;
}

/* Cases — 3 mini-cards in a row */
.industry__cases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 22px;
}
@media (max-width: 880px) {
  .industry__cases { grid-template-columns: 1fr; gap: 10px; }
}

.industry__case {
  position: relative;
  background: var(--black);
  border: 1px solid var(--grey-700);
  padding: 18px 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow: hidden;
  min-height: 175px;
  transition: all .25s ease;
  color: var(--white);
}
.industry__case::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.45) 0%, rgba(10,10,10,0.6) 50%, rgba(10,10,10,0.92) 95%);
  z-index: 1;
}
.industry__case__bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform .6s ease;
}
.industry__case:hover .industry__case__bg {
  transform: scale(1.05);
}
.industry__case:hover {
  border-color: var(--jws-red);
}
.industry__case > * { position: relative; z-index: 2; }
.industry__case--placeholder {
  background: var(--grey-900);
}
.industry__case--placeholder::before { display: none; }
.industry__case__sector {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}
.industry__case__metric {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--white);
  letter-spacing: -0.01em;
  margin: 6px 0 4px;
  line-height: 1;
}
.industry__case__metric em {
  font-style: normal;
  color: var(--jws-red);
}
.industry__case__desc {
  font-size: 12px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.78);
  margin-top: auto;
}

/* Footer: capabilities pill row */
.industry__footer {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  padding-top: 16px;
  border-top: 1px solid var(--grey-700);
  margin-bottom: 18px;
}
.industry__footer__label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey-500);
  flex-shrink: 0;
}
.industry__footer__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.industry__footer__pills span {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: rgba(255, 255, 255, 0.82);
  background: var(--grey-900);
  border: 1px solid var(--grey-700);
  padding: 5px 10px;
  letter-spacing: 0.02em;
  transition: all .15s ease;
}
.industry__footer__pills span:hover {
  background: var(--jws-red);
  color: var(--white);
  border-color: var(--jws-red);
}

.industry__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: transparent;
  border: 1px solid var(--jws-red);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all .2s ease;
}
.industry__cta:hover {
  background: var(--jws-red);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px var(--jws-red-glow);
}
.industry__cta .arrow { transition: transform .2s ease; }
.industry__cta:hover .arrow { transform: translateX(4px); }

/* Short viewports: release height caps */
@media (max-height: 720px) {
  .industry { max-height: none; min-height: auto; overflow: visible; }
}
@media (max-width: 720px) {
  .industry { max-height: none; min-height: auto; overflow: visible; }
}

/* =================================================================
   SCROLL REVEAL + MICRO-ANIMATIONS
   Animations enhance, never hide. Content starts visible (opacity:1)
   with only a small vertical offset; .is-in slides it home. This
   means even mid-animation or during snap, text is fully readable.
   ================================================================= */

/* === Industry block animations === */
.industry .industry__head > div > *,
.industry .industry__head > .industry__meta,
.industry .industry__cases > *,
.industry .industry__footer,
.industry .industry__cta {
  opacity: 1;
  transform: translateY(12px);
  transition: transform .6s cubic-bezier(.16,.84,.3,1);
  will-change: transform;
}
.industry.is-in .industry__head > div > .industry__num,
.industry.is-in .industry__head > div > .industry__tag {
  transform: translateY(0);
  transition-delay: 50ms;
}
.industry.is-in .industry__head > div > .industry__title {
  transform: translateY(0);
  transition-delay: 100ms;
}
.industry.is-in .industry__head > div > .industry__lede {
  transform: translateY(0);
  transition-delay: 180ms;
}
.industry.is-in .industry__head > .industry__meta {
  transform: translateY(0);
  transition-delay: 240ms;
}
.industry.is-in .industry__cases > *:nth-child(1) {
  transform: translateY(0);
  transition-delay: 280ms;
}
.industry.is-in .industry__cases > *:nth-child(2) {
  transform: translateY(0);
  transition-delay: 340ms;
}
.industry.is-in .industry__cases > *:nth-child(3) {
  transform: translateY(0);
  transition-delay: 400ms;
}
.industry.is-in .industry__footer {
  transform: translateY(0);
  transition-delay: 460ms;
}
.industry.is-in .industry__cta {
  transform: translateY(0);
  transition-delay: 520ms;
}

/* Red accent shimmer — runs once, but text always visible underneath.
   We use a single layer: text colored red as baseline, gradient sweep
   on top via background-clip with a fallback color so it's never invisible. */
.industry__title em {
  color: var(--jws-red); /* always-visible fallback */
  background: linear-gradient(110deg, var(--jws-red) 0%, var(--jws-red) 30%, #ff8090 50%, var(--jws-red) 70%, var(--jws-red) 100%);
  background-size: 200% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  background-position: 100% 0;
}
.industry.is-in .industry__title em {
  animation: shimmer-sweep 1.6s cubic-bezier(.4,0,.2,1) 300ms forwards;
}
@keyframes shimmer-sweep {
  0%   { background-position: 100% 0; }
  100% { background-position: 0 0; }
}

/* Industry SVG case backgrounds: scale only, never fade out */
.industry__case__bg {
  transform: scale(1.04);
  transition: transform 1.2s cubic-bezier(.16,.84,.3,1);
}
.industry.is-in .industry__case__bg {
  transform: scale(1);
}
.industry.is-in .industry__cases > *:nth-child(1) .industry__case__bg { transition-delay: 320ms; }
.industry.is-in .industry__cases > *:nth-child(2) .industry__case__bg { transition-delay: 380ms; }
.industry.is-in .industry__cases > *:nth-child(3) .industry__case__bg { transition-delay: 440ms; }

/* Capability pills: subtle slide, always visible */
.industry__footer__pills span {
  opacity: 1;
  transform: translateY(6px);
  transition: transform .4s cubic-bezier(.16,.84,.3,1),
              background .15s ease,
              color .15s ease,
              border-color .15s ease;
}
.industry.is-in .industry__footer__pills span { transform: translateY(0); }
.industry.is-in .industry__footer__pills span:nth-child(1) { transition-delay: 500ms; }
.industry.is-in .industry__footer__pills span:nth-child(2) { transition-delay: 540ms; }
.industry.is-in .industry__footer__pills span:nth-child(3) { transition-delay: 580ms; }
.industry.is-in .industry__footer__pills span:nth-child(4) { transition-delay: 620ms; }
.industry.is-in .industry__footer__pills span:nth-child(5) { transition-delay: 660ms; }
.industry.is-in .industry__footer__pills span:nth-child(6) { transition-delay: 700ms; }

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .industry .industry__head > div > *,
  .industry .industry__head > .industry__meta,
  .industry .industry__cases > *,
  .industry .industry__footer,
  .industry .industry__cta,
  .industry__footer__pills span,
  .industry__case__bg {
    transform: none !important;
    animation: none !important;
    transition: none !important;
  }
  .industry__title em {
    background: none !important;
    -webkit-text-fill-color: var(--jws-red) !important;
    color: var(--jws-red) !important;
  }
}

/* =================================================================
   ABOUT PAGE
   ================================================================= */

/* Each story section snaps as its own viewport block */
.story {
  min-height: calc(100vh - 76px);
  padding: clamp(48px, 6vw, 72px) 0;
  display: flex;
  align-items: center;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  background: var(--black-soft);
}
.story--dark { background: var(--black-soft); }
.story--dark-2 { background: var(--black); }
.story > .container { width: 100%; }

/* Two-column layout: head on left, body on right */
.story__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}
@media (max-width: 880px) {
  .story__grid { grid-template-columns: 1fr; gap: 24px; }
}

.story__index {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--jws-red);
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 16px;
  padding: 4px 10px;
  border: 1px solid var(--jws-red);
}
.story__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--white);
  margin: 4px 0 0;
}
.story__title em {
  font-style: normal;
  color: var(--jws-red);
}

.story__body {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.story__lede {
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
}
.story__body p:not(.story__lede) {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.74);
  margin: 0;
}
.story__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--jws-red);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-top: 8px;
  transition: gap .2s ease;
}
.story__cta:hover { gap: 14px; }

/* === Origin: milestone strip === */
.story__milestones {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 12px;
  border-top: 1px solid var(--grey-700);
  padding-top: 18px;
}
@media (max-width: 580px) {
  .story__milestones { grid-template-columns: 1fr 1fr; }
}
.story__milestone {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 14px;
  background: var(--grey-900);
  border: 1px solid var(--grey-700);
  transition: border-color .2s ease;
}
.story__milestone:hover { border-color: var(--jws-red); }
.story__milestone__year {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--jws-red);
  letter-spacing: -0.01em;
}
.story__milestone__lbl {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.4;
}

/* === Founders cards === */
.founders {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 8px;
}
@media (max-width: 880px) {
  .founders { grid-template-columns: 1fr; }
}
.founder {
  background: var(--grey-900);
  border: 1px solid var(--grey-700);
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color .25s ease, transform .25s ease;
  position: relative;
  overflow: hidden;
}
.founder:hover {
  border-color: var(--jws-red);
  transform: translateY(-2px);
}
.founder::before {
  content: '';
  position: absolute; inset: 0 auto 0 0;
  width: 3px;
  background: var(--jws-red);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .3s ease;
}
.founder:hover::before { transform: scaleY(1); }
.founder__role {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.15em;
  color: var(--jws-red);
  text-transform: uppercase;
}
.founder__name {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--white);
  margin: 0;
  letter-spacing: -0.01em;
}
.founder__bio {
  font-size: 12.5px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.74);
  margin: 0;
}
.founder__photo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--grey-700);
  margin-bottom: 4px;
  flex-shrink: 0;
  transition: border-color .25s ease;
}
.founder__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.founder:hover .founder__photo {
  border-color: var(--jws-red);
}
a.founder {
  text-decoration: none;
  color: inherit;
  display: flex;
}

/* === Delivery grid (4 cards, 2x2) === */
.delivery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 8px;
}
@media (max-width: 880px) {
  .delivery-grid { grid-template-columns: 1fr; }
}
.delivery-card {
  background: var(--grey-900);
  border: 1px solid var(--grey-700);
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color .25s ease, transform .25s ease;
  position: relative;
  overflow: hidden;
}
.delivery-card:hover {
  border-color: var(--jws-red);
  transform: translateY(-2px);
}
.delivery-card::before {
  content: '';
  position: absolute; inset: auto 0 0 0;
  height: 3px;
  background: var(--jws-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.delivery-card:hover::before { transform: scaleX(1); }
.delivery-card__icon {
  width: 26px; height: 26px;
  color: var(--jws-red);
  margin-bottom: 4px;
}
.delivery-card__h {
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--white);
  margin: 0;
  letter-spacing: -0.005em;
  line-height: 1.2;
}
.delivery-card__d {
  font-size: 12.5px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.74);
  margin: 0;
}

/* === Principles list === */
.principles {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.principle {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 18px;
  padding: 16px 18px;
  background: var(--grey-900);
  border: 1px solid var(--grey-700);
  transition: border-color .25s ease;
  align-items: start;
}
.principle:hover { border-color: var(--jws-red); }
.principle__num {
  font-family: var(--font-mono);
  font-size: 28px;
  font-weight: 600;
  color: var(--jws-red);
  letter-spacing: -0.02em;
  line-height: 1;
}
.principle__h {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--white);
  margin: 0 0 6px;
  letter-spacing: -0.005em;
  line-height: 1.2;
}
.principle__d {
  font-size: 12.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.74);
  margin: 0;
}

/* === Forward grid (3 cards) === */
.forward-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 8px;
}
@media (max-width: 880px) {
  .forward-grid { grid-template-columns: 1fr; }
}
.forward-card {
  background: var(--grey-900);
  border: 1px solid var(--grey-700);
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color .25s ease, transform .25s ease;
  position: relative;
  overflow: hidden;
}
.forward-card:hover {
  border-color: var(--jws-red);
  transform: translateY(-2px);
}
.forward-card::before {
  content: '';
  position: absolute; inset: 0 auto 0 0;
  width: 3px;
  background: var(--jws-red);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .3s ease;
}
.forward-card:hover::before { transform: scaleY(1); }
.forward-card__tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--jws-red);
  text-transform: uppercase;
}
.forward-card__h {
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--white);
  margin: 0;
  letter-spacing: -0.005em;
  line-height: 1.2;
}
.forward-card__d {
  font-size: 12.5px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.74);
  margin: 0;
  flex: 1;
}
.forward-card__cta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--jws-red);
  margin-top: 4px;
  transition: letter-spacing .2s ease;
}
.forward-card__cta:hover { letter-spacing: 0.14em; }

/* Mobile / short-viewport release */
@media (max-width: 720px), (max-height: 720px) {
  .story { min-height: auto; }
}

/* =================================================================
   ABOUT PAGE — ANIMATIONS (matches approved Industries pattern)
   Content always visible. Only subtle slide + shimmer on entry.
   ================================================================= */
.story .story__head > *,
.story .story__body > *,
.story .story__milestones > *,
.story .founders > *,
.story .delivery-grid > *,
.story .principles > *,
.story .forward-grid > * {
  opacity: 1;
  transform: translateY(12px);
  transition: transform .6s cubic-bezier(.16,.84,.3,1);
}
.story.is-in .story__head > * { transform: translateY(0); transition-delay: 80ms; }
.story.is-in .story__head > .story__title { transition-delay: 140ms; }

.story.is-in .story__body > * { transform: translateY(0); }
.story.is-in .story__body > .story__lede { transition-delay: 220ms; }
.story.is-in .story__body > p:not(.story__lede) { transition-delay: 280ms; }
.story.is-in .story__body > .story__milestones { transition-delay: 340ms; }
.story.is-in .story__body > .founders { transition-delay: 320ms; }
.story.is-in .story__body > .delivery-grid { transition-delay: 320ms; }
.story.is-in .story__body > .principles { transition-delay: 280ms; }
.story.is-in .story__body > .forward-grid { transition-delay: 320ms; }
.story.is-in .story__body > .story__cta { transition-delay: 460ms; }

/* Staggers for inner grids */
.story.is-in .story__milestones > *:nth-child(1) { transition-delay: 380ms; }
.story.is-in .story__milestones > *:nth-child(2) { transition-delay: 440ms; }
.story.is-in .story__milestones > *:nth-child(3) { transition-delay: 500ms; }
.story.is-in .story__milestones > *:nth-child(4) { transition-delay: 560ms; }

.story.is-in .founders > *:nth-child(1) { transition-delay: 360ms; }
.story.is-in .founders > *:nth-child(2) { transition-delay: 440ms; }
.story.is-in .founders > *:nth-child(3) { transition-delay: 520ms; }

.story.is-in .delivery-grid > *:nth-child(1) { transition-delay: 360ms; }
.story.is-in .delivery-grid > *:nth-child(2) { transition-delay: 420ms; }
.story.is-in .delivery-grid > *:nth-child(3) { transition-delay: 480ms; }
.story.is-in .delivery-grid > *:nth-child(4) { transition-delay: 540ms; }

.story.is-in .principles > *:nth-child(1) { transition-delay: 320ms; }
.story.is-in .principles > *:nth-child(2) { transition-delay: 400ms; }
.story.is-in .principles > *:nth-child(3) { transition-delay: 480ms; }
.story.is-in .principles > *:nth-child(4) { transition-delay: 560ms; }

.story.is-in .forward-grid > *:nth-child(1) { transition-delay: 360ms; }
.story.is-in .forward-grid > *:nth-child(2) { transition-delay: 440ms; }
.story.is-in .forward-grid > *:nth-child(3) { transition-delay: 520ms; }

/* Red accent shimmer on story titles — same as industries, with fallback color */
.story__title em {
  color: var(--jws-red); /* always-visible fallback */
  background: linear-gradient(110deg, var(--jws-red) 0%, var(--jws-red) 30%, #ff8090 50%, var(--jws-red) 70%, var(--jws-red) 100%);
  background-size: 200% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  background-position: 100% 0;
}
.story.is-in .story__title em {
  animation: shimmer-sweep 1.6s cubic-bezier(.4,0,.2,1) 300ms forwards;
}

/* Reduced motion fallback */
@media (prefers-reduced-motion: reduce) {
  .story .story__head > *,
  .story .story__body > *,
  .story .story__milestones > *,
  .story .founders > *,
  .story .delivery-grid > *,
  .story .principles > *,
  .story .forward-grid > * {
    transform: none !important;
    transition: none !important;
    animation: none !important;
  }
  .story__title em {
    background: none !important;
    -webkit-text-fill-color: var(--jws-red) !important;
    color: var(--jws-red) !important;
  }
}



/* ================================================================
   COFFEE BREAK — Blog index
   ================================================================ */

/* No snap on coffee break page */
html.cb-page {
  scroll-snap-type: none !important;
}
html.cb-page .snap-block,
html.cb-page .page-hero,
html.cb-page footer.footer {
  scroll-snap-align: none !important;
  scroll-snap-stop: unset !important;
  min-height: auto !important;
}

/* --- Compact hero bar --- */
.cb-hero-bar {
  padding: 64px 0 48px;
  border-bottom: 1px solid var(--grey-700);
  background: var(--black-soft);
}
.cb-hero-bar .container {
  max-width: 1200px;
}
.cb-eyebrow {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  color: var(--jws-red);
  text-transform: uppercase;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.cb-rss-link {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.38);
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.12);
  padding: 3px 10px;
  transition: color .2s, border-color .2s;
}
.cb-rss-link:hover { color: var(--jws-red); border-color: var(--jws-red); }
.cb-hero-bar h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.05;
  color: var(--white);
  margin: 0 0 12px;
}
.cb-hero-bar h1 em { color: var(--jws-red); font-style: normal; }
.cb-hero-bar p {
  font-size: 15px;
  color: rgba(255,255,255,0.52);
  max-width: 520px;
  margin: 0 0 28px;
  line-height: 1.5;
}
.cb-controls {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.cb-search-wrap {
  position: relative;
  flex: 0 0 300px;
}
.cb-search-wrap svg {
  position: absolute;
  left: 12px; top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: rgba(255,255,255,0.3);
}
#blog-search {
  width: 100%;
  background: var(--grey-900);
  border: 1px solid var(--grey-700);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 13px;
  padding: 10px 14px 10px 38px;
  outline: none;
  transition: border-color .2s;
  box-sizing: border-box;
}
#blog-search::placeholder { color: rgba(255,255,255,0.3); }
#blog-search:focus { border-color: var(--jws-red); }
.cb-filters {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.filter-btn {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: transparent;
  border: 1px solid var(--grey-700);
  color: rgba(255,255,255,0.45);
  padding: 8px 16px;
  cursor: pointer;
  transition: all .2s;
}
.filter-btn:hover { border-color: rgba(255,255,255,0.35); color: var(--white); }
.filter-btn.active {
  background: var(--jws-red);
  border-color: var(--jws-red);
  color: var(--white);
}

/* --- Featured post card --- */
.cb-featured {
  display: block;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
  background: var(--black-soft);
  min-height: 440px;
  border-bottom: 1px solid var(--grey-700);
}
.cb-featured__bg {
  position: absolute; inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
}
.cb-featured__bg img {
  width: 50%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
  mix-blend-mode: screen;
  filter: saturate(0.6);
}
.cb-featured__bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--black-soft) 40%, transparent 80%);
}
.cb-featured__content {
  position: relative;
  z-index: 1;
  padding: 60px 0;
  max-width: 580px;
}
.cb-featured__label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--jws-red);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.cb-featured__label::before { content: '★ FEATURED · '; }
.cb-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.cb-tag {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 9px;
  border: 1px solid var(--grey-700);
  color: rgba(255,255,255,0.45);
}
.cb-tag--type {
  border-color: var(--jws-red);
  color: var(--jws-red);
}
.cb-featured__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.1;
  color: var(--white);
  margin: 0 0 14px;
}
.cb-featured__excerpt {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin: 0 0 28px;
}
.cb-featured__stat {
  margin-bottom: 28px;
}
.cb-featured__stat-val {
  font-family: var(--font-display);
  font-size: 40px;
  color: var(--jws-red);
  line-height: 1;
}
.cb-featured__stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.38);
  margin-top: 2px;
}
.cb-featured__meta {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.35);
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 20px;
}
.cb-featured__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  border-bottom: 1px solid var(--jws-red);
  padding-bottom: 2px;
  transition: color .2s;
}
.cb-featured:hover .cb-featured__cta { color: var(--jws-red); }

/* --- Post grid --- */
.cb-grid-section {
  padding: 56px 0 80px;
}
.cb-section-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--grey-700);
  padding-bottom: 14px;
  margin-bottom: 32px;
}
.cb-section-bar__label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}
.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 1024px) { .posts-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .posts-grid { grid-template-columns: 1fr; } }

.post-card {
  background: var(--grey-900);
  border: 1px solid var(--grey-700);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
  transition: border-color .25s ease, transform .25s ease;
}
.post-card::before {
  content: '';
  position: absolute; inset: 0 auto 0 0;
  width: 3px;
  background: var(--jws-red);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .3s ease;
  z-index: 1;
}
.post-card:hover { border-color: var(--jws-red); transform: translateY(-3px); }
.post-card:hover::before { transform: scaleY(1); }

/* Card thumbnail */
.post-card__thumb {
  height: 160px;
  background: var(--black-soft);
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}
.post-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  mix-blend-mode: screen;
  filter: saturate(0.7);
  transition: opacity .3s, transform .3s;
}
.post-card:hover .post-card__thumb img {
  opacity: 0.75;
  transform: scale(1.04);
}
.post-card__thumb--gradient {
  background: var(--black-soft);
}
/* Sector colour accents for cards without SVGs */
.post-card__thumb--fb     { background: linear-gradient(135deg, #1a0f06 0%, #3d1a08 100%); }
.post-card__thumb--sports { background: linear-gradient(135deg, #050d1a 0%, #0a2040 100%); }
.post-card__thumb--invest { background: linear-gradient(135deg, #0d0d1a 0%, #1a1030 100%); }

/* Sector label overlay on thumb */
.post-card__thumb-label {
  position: absolute;
  bottom: 10px; left: 12px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  background: rgba(0,0,0,0.5);
  padding: 2px 7px;
}

/* Card body */
.post-card__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.post-card__top {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.post-card__title {
  font-family: var(--font-display);
  font-size: 17px;
  line-height: 1.2;
  color: var(--white);
  margin: 0;
  letter-spacing: -0.01em;
}
.post-card__excerpt {
  font-size: 12.5px;
  line-height: 1.55;
  color: rgba(255,255,255,0.52);
  margin: 0;
  flex: 1;
}
.post-card__stat {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.post-card__stat-val {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--jws-red);
  line-height: 1;
}
.post-card__stat-label {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  line-height: 1.3;
}
.post-card__foot {
  display: flex;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.3);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 12px;
  margin-top: auto;
  flex-wrap: wrap;
  align-items: center;
}

/* No results */
.cb-no-results {
  grid-column: 1/-1;
  text-align: center;
  padding: 60px 20px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.25);
  text-transform: uppercase;
}

/* Mobile hero */
@media (max-width: 760px) {
  .cb-featured__bg img { width: 100%; opacity: 0.08; }
  .cb-featured__content { padding: 40px 0; }
  .cb-controls { flex-direction: column; align-items: flex-start; }
  .cb-search-wrap { flex: 0 0 100%; width: 100%; }
}


/* ================================================================
   BLOG POST PAGE
   ================================================================ */
html.post-page {
  scroll-snap-type: none !important;
}
html.post-page .snap-block,
html.post-page .page-hero,
html.post-page footer.footer {
  scroll-snap-align: none !important;
  scroll-snap-stop: unset !important;
  min-height: auto !important;
}
.post-hero {
  padding: 80px 0 0;
  background: var(--black-soft);
}
.post-hero__breadcrumb {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
  margin-bottom: 28px;
}
.post-hero__breadcrumb a { color: rgba(255,255,255,0.3); text-decoration: none; }
.post-hero__breadcrumb a:hover { color: var(--jws-red); }
.post-hero__breadcrumb span { margin: 0 8px; }
.post-hero__title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.05;
  color: var(--white);
  margin: 0 0 18px;
  max-width: 820px;
}
.post-hero__sub {
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  max-width: 600px;
  line-height: 1.6;
  margin: 0 0 28px;
}
.post-hero__meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.38);
  margin-bottom: 48px;
}
.post-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--grey-700);
  border-top: 1px solid var(--grey-700);
}
@media (max-width: 760px) { .post-metrics { grid-template-columns: repeat(2,1fr); } }
.post-metric {
  background: var(--black);
  padding: 24px 28px;
}
.post-metric__val {
  font-family: var(--font-display);
  font-size: 30px;
  color: var(--jws-red);
  line-height: 1;
  margin-bottom: 6px;
}
.post-metric__label {
  font-size: 12px;
  color: rgba(255,255,255,0.42);
  line-height: 1.4;
}
.post-body {
  max-width: 780px;
  margin: 0 auto;
  padding: 64px 24px 80px;
}
.post-body h2 {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--white);
  margin: 48px 0 16px;
  padding-top: 48px;
  border-top: 1px solid var(--grey-700);
}
.post-body h2:first-child { border-top: none; padding-top: 0; margin-top: 0; }
.post-body p {
  font-size: 15.5px;
  color: rgba(255,255,255,0.7);
  line-height: 1.78;
  margin: 0 0 20px;
}
.post-body ul { margin: 0 0 24px; padding-left: 0; list-style: none; }
.post-body ul li {
  font-size: 15px;
  color: rgba(255,255,255,0.62);
  line-height: 1.65;
  padding: 9px 0 9px 22px;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.post-body ul li::before { content: '→'; position: absolute; left: 0; color: var(--jws-red); font-size: 12px; }
.post-callout {
  background: var(--grey-900);
  border-left: 3px solid var(--jws-red);
  padding: 20px 24px;
  margin: 32px 0;
  font-size: 15px;
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
  font-style: italic;
}
.post-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0 32px;
  font-size: 13px;
}
.post-table th {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--jws-red);
  padding: 10px 16px;
  text-align: left;
  background: var(--grey-900);
  border-bottom: 1px solid var(--grey-700);
}
.post-table td {
  padding: 10px 16px;
  color: rgba(255,255,255,0.62);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.post-table tr:last-child td { border-bottom: none; }
.post-author-block {
  background: var(--grey-900);
  border: 1px solid var(--grey-700);
  padding: 24px;
  margin-top: 60px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.post-author-block__photo {
  width: 52px; height: 52px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--grey-700);
}
.post-author-block__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.post-author-block__name { font-family: var(--font-display); font-size: 16px; color: var(--white); margin: 0 0 3px; }
.post-author-block__role {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--jws-red); margin-bottom: 8px;
}
.post-author-block__bio { font-size: 13px; color: rgba(255,255,255,0.48); line-height: 1.5; margin: 0; }
.post-share {
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--grey-700);
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.post-share__label {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.15em;
  text-transform: uppercase; color: rgba(255,255,255,0.3);
}
.post-share__link {
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.45); text-decoration: none;
  border: 1px solid var(--grey-700); padding: 7px 14px; transition: all .2s;
}
.post-share__link:hover { color: var(--white); border-color: rgba(255,255,255,0.35); }
.post-related {
  padding: 56px 0 80px;
  border-top: 1px solid var(--grey-700);
}
.post-related__head {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 28px;
}


/* ================================================================
   CONTACT PAGE
   ================================================================ */
.contact-hero { padding: 80px 0 64px; border-bottom: 1px solid var(--grey-700); background: var(--black-soft); }
.contact-hero__index { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.28); margin-bottom: 20px; }
.contact-hero h1 { font-family: var(--font-display); font-size: clamp(40px, 5.5vw, 68px); line-height: 1.05; color: var(--white); margin: 0 0 16px; }
.contact-hero h1 em { color: var(--jws-red); font-style: normal; }
.contact-hero p { font-size: 16px; color: rgba(255,255,255,0.52); max-width: 520px; line-height: 1.55; margin: 0; }

.contact-body { padding: 64px 0 80px; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 48px; } }

/* Form */
.contact-form__label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  display: block;
  margin-bottom: 8px;
}
.contact-form__row { margin-bottom: 20px; }
.contact-form__row--half { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .contact-form__row--half { grid-template-columns: 1fr; } }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  background: var(--grey-900);
  border: 1px solid var(--grey-700);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  padding: 13px 16px;
  outline: none;
  transition: border-color .2s;
  box-sizing: border-box;
  appearance: none;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(255,255,255,0.28); }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: var(--jws-red); }
.contact-form select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.4)' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.contact-form select option { background: #1a1a1a; }
.contact-form textarea { min-height: 120px; resize: vertical; line-height: 1.55; }
.contact-form__submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--jws-red);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  padding: 15px 32px;
  cursor: pointer;
  transition: opacity .2s, transform .15s;
  margin-top: 8px;
  width: 100%;
  justify-content: center;
}
.contact-form__submit:hover { opacity: 0.88; transform: translateY(-1px); }
.contact-form__submit:active { transform: translateY(0); }
.contact-form__note { font-size: 11.5px; color: rgba(255,255,255,0.28); margin-top: 12px; line-height: 1.5; text-align: center; }

/* Success state */
.contact-form__success {
  display: none;
  background: var(--grey-900);
  border: 1px solid var(--grey-700);
  border-left: 3px solid var(--jws-red);
  padding: 28px 24px;
  margin-top: 20px;
}
.contact-form__success-title { font-family: var(--font-display); font-size: 18px; color: var(--white); margin: 0 0 8px; }
.contact-form__success-body { font-size: 13.5px; color: rgba(255,255,255,0.55); margin: 0; line-height: 1.5; }

/* Sidebar */
.contact-sidebar { position: sticky; top: 100px; }
.contact-info-block { margin-bottom: 40px; }
.contact-info-block__label {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--jws-red);
  margin-bottom: 12px;
}
.contact-info-block__items { list-style: none; padding: 0; margin: 0; }
.contact-info-block__items li {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  line-height: 1.4;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.contact-info-block__items li:last-child { border-bottom: none; }
.contact-info-block__items a { color: rgba(255,255,255,0.65); text-decoration: none; transition: color .2s; }
.contact-info-block__items a:hover { color: var(--jws-red); }
.contact-info-block__icon { color: var(--jws-red); font-style: normal; flex-shrink: 0; margin-top: 1px; }

.contact-response-card {
  background: var(--grey-900);
  border: 1px solid var(--grey-700);
  padding: 24px;
  margin-bottom: 24px;
}
.contact-response-card__head {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--grey-700);
}
.contact-response-card__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: 13px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.contact-response-card__row:last-child { border-bottom: none; }
.contact-response-card__type { color: rgba(255,255,255,0.5); }
.contact-response-card__time { font-family: var(--font-mono); font-size: 11px; color: var(--jws-red); letter-spacing: 0.06em; }

.contact-founders {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}
.contact-founder-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--grey-900);
  border: 1px solid var(--grey-700);
  padding: 8px 12px 8px 8px;
  flex: 1;
  text-decoration: none;
  transition: border-color .2s;
}
.contact-founder-chip:hover { border-color: var(--jws-red); }
.contact-founder-chip__photo { width: 32px; height: 32px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.contact-founder-chip__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.contact-founder-chip__name { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.08em; color: rgba(255,255,255,0.55); }
.contact-founder-chip__role { font-size: 9.5px; color: rgba(255,255,255,0.3); }



/* ================================================================
   CONVERSION LANDING PAGES (no nav, single CTA)
   ================================================================ */
.lp-body { background: var(--black); }
.lp-body * { box-sizing: border-box; }

/* Minimal nav bar */
.lp-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px; height: 64px;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.lp-nav__logo img { height: 36px; width: auto; display: block; }
.lp-nav__cta {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--white); text-decoration: none;
  background: var(--jws-red); padding: 10px 22px; transition: opacity .2s;
}
.lp-nav__cta:hover { opacity: 0.88; }
@media (max-width: 600px) { .lp-nav { padding: 0 20px; } }

/* Hero */
.lp-hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 120px 0 80px; position: relative; overflow: hidden;
}
.lp-hero__bg {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 60% 50% at 70% 50%, rgba(240,78,110,0.07) 0%, transparent 70%);
}
.lp-hero__eyebrow {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--jws-red); margin-bottom: 24px;
  display: flex; align-items: center; gap: 10px;
}
.lp-hero__eyebrow::before { content: ''; display: block; width: 32px; height: 1px; background: var(--jws-red); }
.lp-hero__title {
  font-family: var(--font-display);
  font-size: clamp(38px, 5.5vw, 72px);
  line-height: 1.04; color: var(--white); margin: 0 0 20px; max-width: 820px;
}
.lp-hero__title em { color: var(--jws-red); font-style: normal; }
.lp-hero__sub {
  font-size: 17px; color: rgba(255,255,255,0.58);
  max-width: 560px; line-height: 1.6; margin: 0 0 36px;
}
.lp-hero__cta-group { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.lp-cta-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--jws-red); color: var(--white);
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.12em;
  text-transform: uppercase; text-decoration: none;
  padding: 16px 32px; transition: opacity .2s, transform .15s;
}
.lp-cta-primary:hover { opacity: 0.88; transform: translateY(-1px); }
.lp-cta-ghost {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.5); text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.25); padding-bottom: 2px; transition: color .2s;
}
.lp-cta-ghost:hover { color: var(--white); }
.lp-hero__proof {
  margin-top: 52px;
  display: flex; gap: 0; flex-wrap: wrap;
  border: 1px solid var(--grey-700);
  max-width: 680px;
}
.lp-proof-stat {
  padding: 20px 28px; flex: 1; min-width: 120px;
  border-right: 1px solid var(--grey-700);
}
.lp-proof-stat:last-child { border-right: none; }
.lp-proof-stat__val {
  font-family: var(--font-display); font-size: 28px;
  color: var(--jws-red); line-height: 1; margin-bottom: 4px;
}
.lp-proof-stat__label { font-size: 11px; color: rgba(255,255,255,0.38); line-height: 1.3; }

/* Problem / Solution sections */
.lp-section { padding: 80px 0; }
.lp-section--alt { background: var(--black-soft); }
.lp-section__label {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--jws-red); margin-bottom: 20px;
}
.lp-section__title {
  font-family: var(--font-display); font-size: clamp(26px, 3.5vw, 40px);
  color: var(--white); line-height: 1.1; margin: 0 0 16px; max-width: 600px;
}
.lp-section__body {
  font-size: 15.5px; color: rgba(255,255,255,0.6);
  line-height: 1.7; max-width: 600px; margin: 0 0 32px;
}

/* Problem list */
.lp-problem-list { list-style: none; padding: 0; margin: 0 0 0; max-width: 560px; }
.lp-problem-list li {
  font-size: 15px; color: rgba(255,255,255,0.65);
  padding: 12px 0 12px 24px; position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.05); line-height: 1.5;
}
.lp-problem-list li:last-child { border-bottom: none; }
.lp-problem-list li::before {
  content: '→'; position: absolute; left: 0;
  color: var(--jws-red); font-size: 12px; top: 14px;
}

/* 2-col grid for sections */
.lp-grid-2 {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
@media (max-width: 860px) { .lp-grid-2 { grid-template-columns: 1fr; gap: 40px; } }

/* Deliverables / what-you-get cards */
.lp-deliverables {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1px;
  background: var(--grey-700); margin-top: 48px;
}
@media (max-width: 800px) { .lp-deliverables { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 500px) { .lp-deliverables { grid-template-columns: 1fr; } }
.lp-deliverable {
  background: var(--black-soft); padding: 28px 24px;
}
.lp-deliverable__icon { font-size: 20px; margin-bottom: 12px; }
.lp-deliverable__title {
  font-family: var(--font-display); font-size: 16px; color: var(--white);
  margin: 0 0 8px;
}
.lp-deliverable__body { font-size: 13px; color: rgba(255,255,255,0.48); line-height: 1.5; margin: 0; }

/* Social proof / case study pull */
.lp-proof-card {
  background: var(--grey-900); border: 1px solid var(--grey-700);
  border-left: 3px solid var(--jws-red); padding: 28px;
}
.lp-proof-card__quote {
  font-size: 15px; color: rgba(255,255,255,0.72); line-height: 1.65;
  font-style: italic; margin: 0 0 20px;
}
.lp-proof-card__meta {
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.08em;
  color: rgba(255,255,255,0.35); text-transform: uppercase;
}
.lp-proof-card__metric {
  font-family: var(--font-display); font-size: 36px; color: var(--jws-red);
  line-height: 1; margin-bottom: 4px;
}
.lp-proof-card__metric-label { font-size: 12px; color: rgba(255,255,255,0.38); }

/* Pricing / engagement model */
.lp-pricing {
  background: var(--grey-900); border: 1px solid var(--grey-700);
  padding: 36px; max-width: 520px;
}
.lp-pricing__head {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(255,255,255,0.3);
  margin-bottom: 16px; padding-bottom: 16px; border-bottom: 1px solid var(--grey-700);
}
.lp-pricing__val {
  font-family: var(--font-display); font-size: 40px; color: var(--white); line-height: 1; margin-bottom: 4px;
}
.lp-pricing__period { font-size: 13px; color: rgba(255,255,255,0.4); margin-bottom: 24px; }
.lp-pricing__features { list-style: none; padding: 0; margin: 0 0 28px; }
.lp-pricing__features li {
  font-size: 14px; color: rgba(255,255,255,0.65);
  padding: 9px 0 9px 20px; position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.lp-pricing__features li:last-child { border-bottom: none; }
.lp-pricing__features li::before { content: '✓'; position: absolute; left: 0; color: var(--jws-red); font-size: 11px; }

/* Final CTA band */
.lp-final-cta {
  padding: 100px 0; text-align: center;
  background: var(--black-soft); border-top: 1px solid var(--grey-700);
}
.lp-final-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 52px); color: var(--white);
  line-height: 1.1; margin: 0 0 16px;
}
.lp-final-cta h2 em { color: var(--jws-red); font-style: normal; }
.lp-final-cta p {
  font-size: 15px; color: rgba(255,255,255,0.5);
  max-width: 440px; margin: 0 auto 36px; line-height: 1.6;
}
.lp-final-cta__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* LP footer — minimal */
.lp-footer {
  padding: 24px 40px; border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.lp-footer__copy { font-size: 12px; color: rgba(255,255,255,0.25); }
.lp-footer__links { display: flex; gap: 20px; }
.lp-footer__links a { font-size: 12px; color: rgba(255,255,255,0.35); text-decoration: none; }
.lp-footer__links a:hover { color: var(--white); }
@media (max-width: 600px) { .lp-footer { padding: 20px; flex-direction: column; align-items: flex-start; } }

