:root {
  --jc-bg: #050607;
  --jc-bg-2: #0a0c0f;
  --jc-surface: rgba(255, 255, 255, 0.03);
  --jc-ink: #f5f7fa;
  --jc-muted: #8b949e;
  --jc-line: rgba(255, 255, 255, 0.09);
  --jc-accent: #ff651d;
  --jc-accent-ink: #ffffff;
  --jc-warm: #ff8a4a;
  --jc-radius: 22px;
  --jc-container: 1200px;
  --jc-font: "Manrope", system-ui, sans-serif;
  --jc-display: "Syne", "Manrope", sans-serif;
  --jc-mono: "IBM Plex Mono", ui-monospace, monospace;
  --jc-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body.jc-body {
  margin: 0;
  font-family: var(--jc-font);
  color: var(--jc-ink);
  background: var(--jc-bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.jc-container {
  width: min(100% - 2.5rem, var(--jc-container));
  margin-inline: auto;
}

.jc-kicker {
  display: inline-flex;
  margin: 0 0 1rem;
  padding: 0.42rem 0.8rem;
  border: 1px solid rgba(255, 101, 29, 0.35);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--jc-accent);
  background: rgba(255, 101, 29, 0.06);
}

.jc-h2 {
  margin: 0 0 0.9rem;
  font-family: var(--jc-display);
  font-size: clamp(2rem, 4.2vw, 3.6rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
  font-weight: 700;
}

.jc-h3 {
  margin: 0 0 0.55rem;
  font-family: var(--jc-display);
  font-size: clamp(1.15rem, 1.6vw, 1.4rem);
  letter-spacing: -0.03em;
}

.jc-lead {
  margin: 0;
  max-width: 36rem;
  color: var(--jc-muted);
  font-size: 1.05rem;
}

.jc-accent { color: var(--jc-accent); }

.jc-metric {
  font-family: var(--jc-mono);
  font-weight: 500;
  letter-spacing: -0.04em;
}

.jc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.95rem 1.45rem;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.25s var(--jc-ease), box-shadow 0.25s var(--jc-ease), background 0.25s ease;
}

.jc-btn:hover { transform: translateY(-2px); }
.jc-btn--sm { padding: 0.55rem 1rem; font-size: 0.86rem; }
.jc-btn--lg { padding: 1.05rem 1.7rem; font-size: 1rem; }

.jc-btn--primary {
  background: var(--jc-accent);
  color: var(--jc-accent-ink);
  box-shadow: 0 0 0 1px rgba(255, 101, 29, 0.2), 0 16px 50px rgba(255, 101, 29, 0.2);
}

.jc-btn--ghost {
  background: transparent;
  border-color: var(--jc-line);
  color: var(--jc-ink);
}

.jc-btn--glass {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
  color: #fff;
}

.jc-btn--secondary {
  background: #fff;
  color: #070809;
}

/* Reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--jc-ease), transform 0.8s var(--jc-ease);
}
[data-reveal].is-in {
  opacity: 1;
  transform: none;
}
[data-reveal-delay="1"] { transition-delay: 0.08s; }
[data-reveal-delay="2"] { transition-delay: 0.16s; }
[data-reveal-delay="3"] { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* Header */
.jc-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  background: transparent;
  transition: background 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}

.jc-header.is-scrolled {
  background: rgba(5, 6, 7, 0.94);
  border-bottom-color: var(--jc-line);
}

.jc-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.6rem;
}

.jc-logo__img { height: 1.8rem; width: auto; }

.jc-nav { display: flex; gap: 1.25rem; }
.jc-nav a {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.72);
}
.jc-nav a:hover { color: #fff; }

.jc-mobile-menu {
  display: none;
}

.jc-header__actions { display: flex; align-items: center; gap: 0.55rem; }

.jc-burger {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  background: transparent;
  cursor: pointer;
  z-index: 90;
}
.jc-burger span {
  display: block;
  width: 1.3rem;
  height: 2px;
  margin: 0.28rem auto;
  background: #fff;
  transition: transform 0.25s var(--jc-ease);
}

/* Hero — full bleed cinematic */
.jc-hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 0;
  overflow: hidden;
}

.jc-hero__stage {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.jc-hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.05);
}

.jc-hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 6, 7, 0.92) 0%, rgba(5, 6, 7, 0.55) 48%, rgba(5, 6, 7, 0.35) 100%),
    linear-gradient(180deg, rgba(5, 6, 7, 0.55) 0%, rgba(5, 6, 7, 0.2) 35%, rgba(5, 6, 7, 0.85) 100%);
}

.jc-hero__noise {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.jc-hero__content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.jc-hero__title {
  margin: 0 0 1.15rem;
  font-family: var(--jc-display);
  font-size: clamp(3rem, 8vw, 6.2rem);
  line-height: 0.92;
  letter-spacing: -0.055em;
  font-weight: 700;
}

.jc-hero__lead {
  margin: 0 0 0.85rem;
  max-width: 38rem;
  color: rgba(245, 247, 250, 0.78);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
}

.jc-hero__sub {
  margin: 0 0 1.7rem;
  max-width: 34rem;
  color: rgba(245, 247, 250, 0.62);
  font-size: 1rem;
}

.jc-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.jc-hero__scroll {
  position: absolute;
  right: clamp(1.25rem, 4vw, 3rem);
  bottom: 2rem;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 0.55rem;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.jc-hero__scroll i {
  width: 1px;
  height: 3rem;
  background: linear-gradient(180deg, var(--jc-accent), transparent);
  animation: jc-scroll-line 1.8s var(--jc-ease) infinite;
}

@keyframes jc-scroll-line {
  0% { transform: scaleY(0.35); transform-origin: top; opacity: 0.3; }
  50% { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(0.35); transform-origin: bottom; opacity: 0.3; }
}

/* Trust metrics */
.jc-trust {
  position: relative;
  z-index: 3;
  margin-top: -5.5rem;
  padding: 0 0 2.5rem;
}

.jc-trust__rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  padding: 1rem;
  border: 1px solid var(--jc-line);
  border-radius: var(--jc-radius);
  background: rgba(10, 12, 15, 0.82);
  backdrop-filter: blur(16px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.jc-trust__item {
  padding: 1.1rem 1rem;
  border-right: 1px solid var(--jc-line);
}
.jc-trust__item:last-child { border-right: 0; }

.jc-trust__item strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: clamp(1.55rem, 3vw, 2.3rem);
}

.jc-trust__item span {
  color: var(--jc-muted);
  font-size: 0.88rem;
}

.jc-trust__item--badge {
  border-radius: 14px;
  background: var(--jc-accent);
  color: #fff;
  border-right: 0;
  display: grid;
  gap: 0.45rem;
  align-content: center;
}
.jc-trust__item--badge strong,
.jc-trust__item--badge .jc-metric,
.jc-trust__item--badge span {
  color: #fff;
}
.jc-trust__logo {
  width: min(100%, 8.5rem);
  height: auto;
  margin-bottom: 0.15rem;
  object-fit: contain;
}

/* Sections */
.jc-section {
  padding: clamp(4rem, 9vw, 7.5rem) 0;
  position: relative;
}

.jc-section--ink {
  background:
    radial-gradient(ellipse 50% 40% at 100% 0%, rgba(255, 101, 29, 0.07), transparent 55%),
    var(--jc-bg-2);
}

.jc-section__head { margin-bottom: 2.4rem; }

.jc-section__head--center {
  max-width: 42rem;
  margin-inline: auto;
  text-align: center;
}
.jc-section__head--center .jc-lead {
  margin-inline: auto;
}

.jc-section__head--split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: end;
}

.jc-section__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

/* How */
.jc-how__cinema {
  position: relative;
  margin-bottom: 1.5rem;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--jc-line);
  min-height: clamp(220px, 36vw, 420px);
}

.jc-how__cinema img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.jc-lightbox--cinema,
.jc-lightbox--cinema img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  border-radius: 0;
}

.jc-cases__item .jc-lightbox,
.jc-cases__item .jc-lightbox img {
  width: 100%;
  height: 100%;
  border-radius: 0;
  aspect-ratio: auto;
}

.jc-how__cinema-caption {
  position: absolute;
  left: 1.2rem;
  bottom: 1.2rem;
  display: grid;
  gap: 0.2rem;
  padding: 0.9rem 1.1rem;
  border-radius: 14px;
  background: rgba(5, 6, 7, 0.72);
  border: 1px solid var(--jc-line);
  backdrop-filter: blur(10px);
}

.jc-how__cinema-caption span {
  font-family: var(--jc-mono);
  font-size: 0.75rem;
  color: var(--jc-accent);
}

.jc-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.jc-steps__item {
  padding: 1.5rem 1.3rem;
  border-top: 1px solid rgba(255, 101, 29, 0.35);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 60%);
}

.jc-steps__num {
  display: block;
  margin-bottom: 1.2rem;
  font-family: var(--jc-mono);
  font-size: 0.85rem;
  color: var(--jc-accent);
}

.jc-steps__item p { margin: 0; color: var(--jc-muted); }

.jc-equip {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-areas:
    "title title"
    "media list";
  gap: 1rem;
  align-items: stretch;
}

.jc-equip__title {
  grid-area: title;
  margin: 0;
}

.jc-equip__media {
  grid-area: media;
  min-height: 0;
  height: 100%;
}

.jc-equip__photo-link {
  display: block;
  height: 100%;
  min-height: 280px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--jc-line);
}

.jc-equip__photo {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
}

.jc-equip__list {
  grid-area: list;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
  height: 100%;
}

.jc-equip__list li {
  display: grid;
  gap: 0.7rem;
  justify-items: center;
  align-content: center;
  text-align: center;
  padding: 1.15rem 0.85rem;
  border: 1px solid var(--jc-line);
  border-radius: 16px;
  background:
    linear-gradient(165deg, rgba(255, 101, 29, 0.07), transparent 55%),
    rgba(255, 255, 255, 0.02);
  min-height: 0;
  transition: border-color 0.25s var(--jc-ease), background 0.25s var(--jc-ease), transform 0.25s var(--jc-ease);
}

.jc-equip__list li:hover {
  border-color: rgba(255, 101, 29, 0.35);
  transform: translateY(-2px);
}

.jc-equip__icon {
  display: grid;
  place-items: center;
  width: 3.1rem;
  height: 3.1rem;
  color: var(--jc-accent);
}

.jc-equip__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.jc-equip__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.jc-equip__label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--jc-ink);
}

/* Value */
.jc-value-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--jc-line);
  border: 1px solid var(--jc-line);
  border-radius: 24px;
  overflow: hidden;
}
.jc-value-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.jc-value {
  padding: 1.8rem 1.5rem;
  background: var(--jc-bg-2);
  min-height: 220px;
}

.jc-value__idx {
  display: block;
  margin-bottom: 1.4rem;
  font-family: var(--jc-mono);
  color: var(--jc-accent);
  font-size: 0.85rem;
}

.jc-value p { margin: 0; color: var(--jc-muted); }

/* Tests */
.jc-tests {
  display: grid;
  gap: 1.5rem;
}

.jc-test {
  padding: 1.25rem 0 1.75rem;
  border-bottom: 1px solid var(--jc-line);
}

.jc-test:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.jc-test__head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.85rem 1rem;
  align-items: baseline;
  margin-bottom: 1.1rem;
}

.jc-test__index {
  font-family: var(--jc-mono);
  color: var(--jc-accent);
  font-size: 0.85rem;
}

.jc-test__icon {
  width: 3.1rem;
  height: 3.1rem;
  border-radius: 0.60rem;
  padding: 0.16rem;
  box-sizing: border-box;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
  align-self: center;
}

.jc-test__head {
  align-items: center;
}

.jc-test__name {
  margin: 0;
  font-family: var(--jc-display);
  font-weight: 700;
  font-size: clamp(1.2rem, 2.2vw, 1.65rem);
  letter-spacing: -0.03em;
}

.jc-test__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  justify-content: flex-end;
}

.jc-tag {
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 101, 29, 0.2);
  background: rgba(255, 101, 29, 0.06);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--jc-accent);
}

.jc-test__cols {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 1.4rem;
  align-items: start;
}

.jc-test__media-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.jc-test__label {
  margin: 0 0 0.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--jc-muted);
}

.jc-list { margin: 0; padding-left: 1.05rem; color: var(--jc-muted); }
.jc-list--lg { display: grid; gap: 0.75rem; margin-top: 1.2rem; max-width: 44rem; }

.jc-test__impact {
  margin: 1rem 0 0;
  color: rgba(245, 247, 250, 0.85);
  display: grid;
  gap: 0.85rem;
}

.jc-test__impact p {
  margin: 0;
  line-height: 1.5;
}

.jc-test__media { margin: 0; }
.jc-test__media img,
.jc-test__video {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid var(--jc-line);
  background: #0b0d10;
  display: block;
}
.jc-test__video {
  object-fit: cover;
  background: #000;
  cursor: pointer;
}

.jc-player {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--jc-line);
}

.jc-player__poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  z-index: 1;
}

.jc-player.is-playing .jc-player__poster {
  opacity: 0;
  visibility: hidden;
}

.jc-player .jc-test__video {
  border: 0;
  border-radius: 0;
}

.jc-player__btn {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  width: 4.4rem;
  height: 4.4rem;
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 101, 29, 0.95);
  color: #fff;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.4);
  cursor: pointer;
  transition: opacity 0.25s ease, transform 0.25s ease, background 0.25s ease;
}

.jc-player__btn:hover {
  transform: translate(-50%, -50%) scale(1.06);
  background: #ff651d;
}

.jc-player__icon {
  display: none;
  line-height: 0;
}

.jc-player:not(.is-playing) .jc-player__icon--play { display: block; }
.jc-player.is-playing .jc-player__icon--pause { display: block; }

.jc-player.is-playing .jc-player__btn {
  opacity: 0.38;
  background: rgba(5, 6, 7, 0.55);
  box-shadow: none;
}

.jc-player.is-playing:hover .jc-player__btn,
.jc-player.is-playing:focus-within .jc-player__btn {
  opacity: 0.72;
}

.jc-player__icon--play { margin-left: 0.15rem; }

.jc-lightbox {
  position: relative;
  display: block;
  cursor: zoom-in;
  overflow: hidden;
  border-radius: 16px;
}
.jc-lightbox img {
  transition: transform 0.45s var(--jc-ease), filter 0.3s ease;
}
.jc-lightbox:hover img {
  transform: scale(1.03);
  filter: brightness(1.05);
}
.jc-lightbox__hint {
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(5, 6, 7, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  pointer-events: none;
}
.jc-test__media figcaption {
  margin-top: 0.4rem;
  font-size: 0.72rem;
  color: var(--jc-muted);
}

.jc-tests__more {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

.jc-tests__toggle {
  gap: 0.65rem;
}

.jc-tests__chev {
  display: inline-block;
  width: 0.55rem;
  height: 0.55rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.25s var(--jc-ease);
}

.jc-tests.is-expanded + .jc-tests__more .jc-tests__chev,
body:has(.jc-tests:not([data-tests-collapsed])) .jc-tests__chev {
  transform: rotate(-135deg);
}

.jc-tests__toggle[aria-expanded="true"] .jc-tests__chev {
  transform: rotate(-135deg);
}

/* Profile */
.jc-profile {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2rem;
}

.jc-profile__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: end;
}

.jc-profile__card img {
  width: 100%;
  max-width: 280px;
  margin-inline: auto;
  display: block;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.55));
}

.jc-skills {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.jc-skill {
  padding: 0.85rem 0.6rem;
  border: 1px solid var(--jc-line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
  text-align: center;
}

.jc-skill__link {
  display: block;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}

.jc-skill__img { width: 100%; height: 58px; object-fit: contain; margin-bottom: 0.3rem; }
.jc-skill__name {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--jc-muted);
  margin-bottom: 0.25rem;
}
.jc-skill .jc-metric { font-size: 1.35rem; color: var(--jc-accent); }

.jc-cv {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 1.5rem;
  padding: 1.3rem;
  border: 1px solid var(--jc-line);
  border-radius: 20px;
}

.jc-cv__videos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
}

.jc-cv__videos img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 12px;
}

.jc-track {
  padding: 1.6rem;
  border-radius: 20px;
  border: 1px solid var(--jc-line);
  background:
    radial-gradient(ellipse 40% 60% at 100% 0%, rgba(255, 101, 29, 0.12), transparent 55%),
    #000;
}

/* Proof */
.jc-cases {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.7rem;
  margin-bottom: 1.5rem;
}

.jc-logos {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  align-items: stretch;
}

.jc-logos__item {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 5.2rem;
  padding: 0.85rem 0.9rem;
  border: 1px solid var(--jc-line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
}

.jc-logos__item img {
  width: auto;
  max-width: 100%;
  max-height: 3.4rem;
  object-fit: contain;
}

.jc-cases__item {
  margin: 0;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--jc-line);
  aspect-ratio: 1;
}

.jc-cases__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--jc-ease);
}

.jc-cases__item:hover img { transform: scale(1.05); }

.jc-award {
  display: block;
  margin-bottom: 1.6rem;
  padding: 1rem 1.2rem;
  border-radius: 18px;
  background: var(--jc-accent);
  color: #fff;
  font-weight: 700;
}

.jc-award--text { grid-template-columns: 1fr; }

.jc-award img {
  width: 100%;
  max-height: 72px;
  object-fit: contain;
}
.jc-award p { margin: 0; color: #fff; font-weight: 600; }
.jc-award strong { color: #fff; }

.jc-quotes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.jc-quote {
  position: relative;
  margin: 0;
  padding: 1.6rem 1.4rem 1.4rem;
  border: 1px solid var(--jc-line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.02);
}

.jc-quote__org {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.85rem;
  padding: 0.35rem 0.7rem;
  border: 1px solid var(--jc-line);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--jc-accent);
}

.jc-quote__logo {
  display: block;
  max-width: 8.5rem;
  max-height: 3rem;
  width: auto;
  height: auto;
  object-fit: contain;
  margin-bottom: 0.85rem;
}

.jc-quote__mark {
  position: absolute;
  top: 0.2rem;
  left: 0.9rem;
  font-family: var(--jc-display);
  font-size: 4rem;
  line-height: 1;
  color: rgba(255, 101, 29, 0.35);
}

.jc-quote p { margin: 0 0 1rem; position: relative; }
.jc-quote footer { display: grid; gap: 0.15rem; }
.jc-quote span { color: var(--jc-muted); font-size: 0.9rem; }

/* Pricing */
.jc-pricing {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.jc-plan {
  display: grid;
  gap: 1rem;
  align-content: start;
  padding: 1.7rem;
  border: 1px solid var(--jc-line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.02);
  transition:
    border-color 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.jc-plan:hover {
  border-color: rgba(255, 101, 29, 0.55);
  background:
    linear-gradient(180deg, rgba(255, 101, 29, 0.1), transparent 45%),
    rgba(255, 255, 255, 0.02);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.jc-plan__label {
  margin: 0;
  font-family: var(--jc-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--jc-accent);
}

.jc-plan > p { margin: 0; color: var(--jc-muted); }

.jc-plan__calc {
  display: grid;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--jc-line);
}

.jc-qty { display: inline-flex; align-items: center; gap: 0.35rem; }
.jc-qty button {
  width: 2.2rem;
  height: 2.2rem;
  border: 1px solid var(--jc-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-size: 1.15rem;
  cursor: pointer;
}
.jc-qty input {
  width: 4.4rem;
  height: 2.2rem;
  border: 1px solid var(--jc-line);
  border-radius: 8px;
  text-align: center;
  font: inherit;
  font-weight: 700;
  background: #000;
  color: #fff;
  -moz-appearance: textfield;
  appearance: textfield;
}

.jc-qty input::-webkit-outer-spin-button,
.jc-qty input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.jc-plan__formula { margin: 0; font-size: 1.05rem; }
.jc-plan__per { color: var(--jc-muted); font-size: 0.88rem; }
.jc-plan__note { margin: 0; font-weight: 700; color: var(--jc-accent); }

.jc-pricing__enterprise {
  margin: 1.5rem 0 0;
  color: var(--jc-muted);
}
.jc-pricing__enterprise a {
  color: var(--jc-accent);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Demo */
.jc-demo {
  background:
    radial-gradient(ellipse 50% 45% at 90% 10%, rgba(255, 101, 29, 0.14), transparent 55%),
    #030405;
}

.jc-demo__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: start;
}

.jc-form {
  display: grid;
  gap: 0.85rem;
  padding: 1.4rem;
  border-radius: 20px;
  border: 1px solid var(--jc-line);
  background: rgba(255, 255, 255, 0.03);
}

.jc-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.jc-form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.88rem;
  font-weight: 600;
}

.jc-form input,
.jc-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 0.85rem 0.95rem;
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  font: inherit;
}

.jc-form input:focus,
.jc-form textarea:focus {
  outline: 2px solid var(--jc-accent);
  outline-offset: 1px;
}

.jc-form__status { margin: 0; font-weight: 600; }
.jc-form__status.is-ok { color: #ffc9a8; }
.jc-form__status.is-error { color: #ffb4b4; }

/* About */
.jc-about {
  padding: clamp(4rem, 9vw, 7rem) 0;
  background:
    radial-gradient(ellipse 45% 40% at 85% 15%, rgba(255, 101, 29, 0.08), transparent 55%),
    var(--jc-bg-2);
  border-top: 1px solid var(--jc-line);
}

.jc-about__grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.jc-about__people {
  display: grid;
  gap: 1rem;
}

.jc-about__title {
  margin: 0 0 1.2rem;
  max-width: 22ch;
  font-family: var(--jc-display);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.jc-about__text {
  display: grid;
  gap: 0.9rem;
  max-width: 38rem;
  color: var(--jc-muted);
}
.jc-about__text p { margin: 0; }

.jc-about__offices {
  display: flex;
  gap: 2.2rem;
  margin-top: 1.8rem;
}
.jc-about__offices strong { display: block; font-size: 1.05rem; }
.jc-about__offices span { color: var(--jc-muted); font-size: 0.9rem; }

.jc-about__mail {
  margin: 1.2rem 0 0;
}
.jc-about__mail a {
  color: var(--jc-ink);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.jc-founder {
  padding: 1.5rem;
  border-radius: 20px;
  border: 1px solid var(--jc-line);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.jc-founder__photo {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 0.60rem;
  margin: 0 0 1.1rem;
}

.jc-founder__label {
  margin: 0 0 0.55rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--jc-warm);
}

.jc-founder__name {
  margin: 0 0 0.55rem;
  font-family: var(--jc-display);
  font-size: 1.55rem;
  letter-spacing: -0.03em;
}

.jc-founder__role {
  margin: 0;
  color: var(--jc-muted);
  font-weight: 600;
}

.jc-founder__bio { margin: 0 0 1rem; color: var(--jc-muted); }
.jc-founder__mail { color: var(--jc-accent); font-weight: 700; }

.jc-about__cta {
  text-align: center;
  padding-top: 1.4rem;
  border-top: 1px solid var(--jc-line);
}
.jc-about__cta .jc-h2 { margin-bottom: 1.25rem; }

/* Footer */
.jc-footer {
  padding: 2.5rem 0 2rem;
  background: #030405;
  border-top: 1px solid var(--jc-line);
  color: rgba(255, 255, 255, 0.72);
}

.jc-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.jc-footer__lead {
  margin: 1rem 0 0;
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.5);
}

.jc-footer__title {
  margin: 0 0 0.85rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.jc-footer__col { display: grid; gap: 0.55rem; align-content: start; }
.jc-footer__col a:hover { color: var(--jc-accent); }
.jc-footer__col p { margin: 0; color: rgba(255, 255, 255, 0.5); }

.jc-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.42);
}
.jc-footer__bottom p { margin: 0; }

@media (max-width: 980px) {
  .jc-nav--desktop { display: none; }
  .jc-burger { display: inline-block; }

  body.nav-open {
    overflow: hidden;
  }

  body.nav-open .jc-header {
    background: #050607;
    border-bottom-color: transparent;
  }

  .jc-mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 70;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
    padding: 5.5rem 1.5rem 2rem;
    background: #050607;
  }

  body.nav-open .jc-mobile-menu {
    display: flex;
  }

  .jc-mobile-menu[hidden] {
    display: none !important;
  }

  body.nav-open .jc-mobile-menu[hidden] {
    display: flex !important;
  }

  .jc-mobile-menu__nav {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
  }

  .jc-mobile-menu__nav a {
    padding: 0.95rem 0.2rem;
    font-family: var(--jc-display);
    font-size: clamp(1.7rem, 8vw, 2.4rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .jc-mobile-menu__nav a:last-child {
    border-bottom: 0;
  }

  .jc-mobile-menu__cta {
    display: grid;
    gap: 0.75rem;
    margin-top: 1rem;
  }

  body.nav-open .jc-burger span:first-child {
    transform: translateY(3px) rotate(45deg);
  }

  body.nav-open .jc-burger span:last-child {
    transform: translateY(-3px) rotate(-45deg);
  }

  .jc-header__actions .jc-btn--ghost { display: none; }

  .jc-trust__rail,
  .jc-section__head--split,
  .jc-steps,
  .jc-equip,
  .jc-value-grid,
  .jc-test__cols,
  .jc-profile,
  .jc-cv,
  .jc-cases,
  .jc-quotes,
  .jc-pricing,
  .jc-demo__grid,
  .jc-about__grid,
  .jc-footer__grid,
  .jc-skills,
  .jc-form__row,
  .jc-award {
    grid-template-columns: 1fr;
  }

  .jc-equip {
    grid-template-areas:
      "title"
      "media"
      "list";
  }

  .jc-equip__photo-link {
    min-height: 220px;
  }

  .jc-trust__item { border-right: 0; border-bottom: 1px solid var(--jc-line); }
  .jc-trust__item:last-child { border-bottom: 0; }
  .jc-skills { grid-template-columns: repeat(2, 1fr); }
  .jc-cases { grid-template-columns: 1fr 1fr; }
  .jc-logos { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .jc-cv__videos { grid-template-columns: 1fr 1fr 1fr; }
  .jc-hero__scroll { display: none; }
  .jc-test__media-pair,
  .jc-profile__cards,
  .jc-value-grid--3 {
    grid-template-columns: 1fr 1fr;
  }

  .jc-trust {
    margin-top: -2.5rem;
  }

  .jc-equip__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .jc-container { width: min(100% - 1.4rem, var(--jc-container)); }
  .jc-test__head {
    grid-template-columns: auto 1fr auto;
    align-items: center;
  }
  .jc-test__tags {
    grid-column: 3;
    justify-content: flex-end;
    align-self: center;
  }
  .jc-test__name {
    min-width: 0;
  }
  .jc-header__actions .jc-btn--sm { display: none; }
  .jc-cv__videos { grid-template-columns: 1fr; }
  .jc-about__offices { flex-direction: column; gap: 1rem; }
  .jc-equip__list {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  /* Mobile: show "Why it matters" text before measures list. */
  .jc-test__copy {
    display: flex;
    flex-direction: column;
  }
  .jc-test__label--why {
    order: 1;
    margin: 0 0 0.4rem;
  }
  .jc-test__impact {
    order: 2;
    margin: 0 0 0.75rem;
    line-height: 1.45;
  }
  .jc-test__copy h4.jc-test__label:not(.jc-test__label--why) {
    order: 3;
    margin: 0 0 0.35rem;
  }
  .jc-test__copy ul.jc-list {
    order: 4;
    margin: 0;
    padding-left: 1.05rem;
  }
  .jc-test__copy ul.jc-list li + li {
    margin-top: 0.18rem;
  }
}
