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

:root {
  --jm-canvas: #f3f7fb;
  --jm-canvas-raised: #ffffff;
  --jm-canvas-sunken: #e7eef5;
  --jm-canvas-dark: #0f1f33;
  --jm-canvas-dark-2: #18304d;
  --jm-canvas-dark-3: #0b1727;
  --jm-ink: #122033;
  --jm-ink-soft: #506276;
  --jm-ink-muted: #77879c;
  --jm-ink-inverse: #f4f8fc;
  --jm-primary: #1a4b78;
  --jm-primary-deep: #10365a;
  --jm-primary-light: #bdd6ee;
  --jm-rose: #6e9ec7;
  --jm-hairline: rgba(18, 32, 51, 0.1);
  --jm-hairline-strong: rgba(18, 32, 51, 0.18);
  --jm-hairline-dark: rgba(244, 248, 252, 0.12);
  --jm-hairline-dark-strong: rgba(244, 248, 252, 0.24);
  --jm-shadow-1: 0 1px 2px rgba(18, 32, 51, 0.06), 0 10px 30px rgba(18, 32, 51, 0.08);
  --jm-shadow-2: 0 8px 30px rgba(18, 32, 51, 0.12), 0 32px 64px rgba(18, 32, 51, 0.18);
  --jm-radius-lg: 28px;
  --jm-radius-md: 22px;
  --jm-radius-sm: 16px;
  --jm-shell: 1400px;
  --jm-accent-copper: #bc8f66;
  --jm-accent-glow: rgba(188, 143, 102, 0.24);
  --jm-font-display: "Playfair Display", Georgia, serif;
  --jm-font-body: "Plus Jakarta Sans", system-ui, sans-serif;
  --jm-font-mono: "Roboto Mono", ui-monospace, monospace;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: var(--jm-font-body);
  background: var(--jm-canvas);
  color: var(--jm-ink);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

main section[id] {
  scroll-margin-top: 140px;
}

.jm-skip-link {
  position: absolute;
  top: -44px;
  left: 14px;
  z-index: 400;
  background: var(--jm-canvas-dark);
  color: #fff;
  padding: 10px 14px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
}

.jm-skip-link:focus {
  top: 14px;
}

.progress-shell {
  position: fixed;
  inset: 0 0 auto;
  height: 3px;
  z-index: 350;
}

.progress-bar {
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--jm-primary), var(--jm-rose));
  box-shadow: 0 0 18px rgba(26, 75, 120, 0.35);
}

.jm-shell,
.jm-header__inner {
  width: min(100%, var(--jm-shell));
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.jm-header {
  position: sticky;
  top: 0;
  z-index: 300;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(243, 247, 251, 0.84);
  border-bottom: 1px solid var(--jm-hairline);
}

.jm-header__inner {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.jm-brand {
  display: flex;
  align-items: center;
}

.jm-logo {
  font-family: var(--jm-font-display);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-decoration: none;
  color: var(--jm-primary-deep);
}

.jm-logo--footer {
  color: var(--jm-ink-inverse);
  margin-bottom: 10px;
}

.jm-brand-mark {
  display: inline-flex;
  text-decoration: none;
  isolation: isolate;
}

.jm-brand-mark__frame {
  width: min(100%, 302px);
  height: 60px;
  overflow: hidden;
  display: block;
}

.jm-brand-mark__frame--footer {
  width: min(100%, 302px);
  height: 60px;
}

.jm-brand-mark__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center 50%;
  display: block;
  filter: none;
}

.jm-badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--jm-primary);
  color: #fff;
  font-family: var(--jm-font-mono);
  font-size: 0.63rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 10px;
  width: 100%;
  align-items: center;
  overflow-x: auto;
  scroll-padding-inline: 20px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.jm-header__navgroup {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.nav-links::-webkit-scrollbar {
  display: none;
}

.jm-lang-switch {
  display: inline-flex;
  align-items: center;
  padding: 4px;
  border-radius: 999px;
  border: 1px solid var(--jm-hairline);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 8px 20px rgba(18, 32, 51, 0.06);
}

.jm-lang-switch__link {
  min-width: 42px;
  min-height: 34px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  text-decoration: none;
  color: var(--jm-ink-soft);
  font-family: var(--jm-font-mono);
  font-size: 0.73rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 160ms ease, color 160ms ease, opacity 160ms ease;
}

.jm-lang-switch__link:hover {
  color: var(--jm-ink);
}

.jm-lang-switch__link.is-active {
  background: var(--jm-primary);
  color: #fff;
}

.jm-nav-link,
.jm-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  line-height: 1;
  white-space: nowrap;
  text-decoration: none;
  touch-action: manipulation;
}

.jm-nav-link {
  font-size: 0.83rem;
  font-weight: 700;
  color: var(--jm-ink);
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--jm-hairline);
  background: rgba(255, 255, 255, 0.62);
  transition: opacity 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.jm-nav-link:hover,
.jm-nav-link.is-active {
  background: rgba(255, 255, 255, 0.95);
  border-color: var(--jm-hairline-strong);
}

.jm-cta {
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--jm-primary);
  color: #fff;
  font-size: 0.84rem;
  font-weight: 700;
}

.jm-story-hero,
.jm-story-authority,
.jm-story-intersection,
.jm-story-foundations,
.jm-hero,
.jm-section-light,
.jm-section-dark,
.jm-section-sunken,
.jm-cta-section {
  padding: 68px 0;
}

.jm-hero {
  padding-top: 76px;
}

.jm-story-hero {
  padding-top: 76px;
  background:
    radial-gradient(circle at 18% 12%, rgba(120, 182, 255, 0.12), transparent 26%),
    radial-gradient(circle at 82% 78%, rgba(188, 143, 102, 0.12), transparent 24%),
    linear-gradient(180deg, #0b1727 0%, #0d1c2f 52%, #102238 100%);
}

.jm-story-hero__frame {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: stretch;
  padding: 24px;
  border-radius: 36px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at 12% 14%, rgba(120, 182, 255, 0.11), transparent 26%),
    linear-gradient(145deg, rgba(13, 28, 47, 0.96), rgba(8, 17, 29, 0.94));
  box-shadow:
    0 28px 80px rgba(5, 10, 18, 0.46),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.jm-story-hero__content {
  display: grid;
  align-content: center;
  gap: 18px;
}

.jm-story-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(244, 248, 252, 0.72);
  font-family: var(--jm-font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.jm-story-hero__title {
  margin: 0;
  display: grid;
  gap: 6px;
  color: #f7f4ef;
  font-family: var(--jm-font-display);
  font-size: clamp(2.8rem, 9vw, 6.2rem);
  font-weight: 600;
  line-height: 0.94;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.jm-story-hero__lead {
  max-width: 34ch;
  margin: 0;
  color: rgba(244, 248, 252, 0.88);
  font-size: clamp(1.1rem, 2.2vw, 1.42rem);
  line-height: 1.5;
}

.jm-story-hero__body {
  max-width: 52ch;
  margin: 0;
  color: rgba(220, 232, 244, 0.74);
  font-size: 1.02rem;
  line-height: 1.7;
}

.jm-story-hero__signature {
  margin: 6px 0 0;
  color: rgba(244, 248, 252, 0.94);
  font-family: var(--jm-font-display);
  font-size: clamp(1.12rem, 2vw, 1.38rem);
  font-style: italic;
  letter-spacing: -0.02em;
}

.jm-story-hero__signature em {
  color: #85b7f2;
  font-style: italic;
}

.jm-story-hero__media {
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.jm-story-hero__portrait {
  width: 100%;
  min-height: 340px;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.jm-story-hero__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
}

.jm-story-authority {
  padding: 72px 0 76px;
  background:
    radial-gradient(circle at 22% 8%, rgba(120, 182, 255, 0.08), transparent 22%),
    linear-gradient(180deg, #102238 0%, #0f2034 100%);
  color: var(--jm-ink-inverse);
}

.jm-story-authority .jm-story-section-head {
  max-width: 980px;
}

.jm-story-authority .jm-story-section-title {
  max-width: 20ch;
  margin-left: auto;
  margin-right: auto;
  line-height: 0.74;
}

.jm-story-authority .jm-story-section-title span {
  display: block;
}

.jm-story-authority .jm-story-section-title span + span {
  margin-top: -0.08em;
}

.jm-story-section-head {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.jm-story-section-title {
  margin: 16px 0 0;
  color: currentColor;
  font-family: var(--jm-font-display);
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 600;
  line-height: 0.94;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.jm-story-section-copy {
  max-width: 58ch;
  margin: 24px auto 0;
  color: rgba(220, 232, 244, 0.76);
  font-size: 1.02rem;
  line-height: 1.66;
  text-wrap: pretty;
}

.jm-authority-logo-groups {
  display: grid;
  gap: 18px;
  margin-top: 32px;
  align-items: stretch;
}

.jm-authority-logo-group {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 100%;
  padding: 24px 24px 28px;
  border-radius: 24px;
  border: 1px solid rgba(18, 32, 51, 0.08);
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(7, 15, 27, 0.18);
}

.jm-authority-logo-group__label {
  color: rgba(18, 32, 51, 0.46);
  font-family: var(--jm-font-mono);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.jm-authority-logo-row {
  display: grid;
  gap: 18px;
  flex: 1 1 auto;
  align-content: center;
}

.jm-authority-logo-group--fmcg .jm-authority-logo-row {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.jm-authority-logo-group--retail .jm-authority-logo-row {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.jm-authority-logo {
  --logo-scale: 1;
  margin: 0;
  width: min(100%, 220px);
  height: 110px;
  margin-inline: auto;
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background:
    radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.92), rgba(247, 249, 252, 0.88) 52%, rgba(235, 240, 246, 0.82) 100%);
  transition: background 0.3s ease, transform 0.3s ease;
}

.jm-authority-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(0%) opacity(100%);
  transform: scale(var(--logo-scale));
  transform-origin: center;
  transition: filter 0.3s ease, transform 0.3s ease;
}

.jm-authority-logo:hover img,
.jm-authority-logo:focus-within img {
  filter: grayscale(100%) opacity(70%);
}

.jm-authority-logo--pg {
  --logo-scale: 0.9;
}

.jm-authority-logo--ferrero {
  --logo-scale: 0.96;
}

.jm-authority-logo--mondelez {
  --logo-scale: 0.9;
}

.jm-authority-logo--mondelez img {
  mix-blend-mode: multiply;
}

.jm-authority-logo--hero {
  --logo-scale: 0.94;
}

.jm-authority-logo--gaes {
  --logo-scale: 0.98;
}

.jm-authority-logo--burger-king {
  --logo-scale: 0.94;
}

.jm-authority-logo--popeyes {
  --logo-scale: 1.06;
}

.jm-story-authority .jm-career-grid--intro {
  margin-top: 24px;
}

.jm-story-authority .jm-career-card {
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.jm-story-intersection {
  padding: 78px 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 247, 251, 0.94));
}

.jm-story-intersection .jm-story-kicker,
.jm-story-foundations .jm-story-kicker {
  color: var(--jm-primary);
}

.jm-story-intersection .jm-story-section-copy,
.jm-story-foundations .jm-story-section-copy {
  color: var(--jm-ink-soft);
}

.jm-story-pillar-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 34px;
}

.jm-story-pillar {
  min-height: 220px;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid var(--jm-hairline);
  background:
    radial-gradient(circle at 88% 14%, rgba(133, 183, 242, 0.1), transparent 22%),
    rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 36px rgba(18, 32, 51, 0.08);
}

.jm-story-pillar__meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.jm-story-pillar__index {
  color: rgba(26, 75, 120, 0.56);
  font-family: var(--jm-font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.jm-story-pillar__icon {
  width: 64px;
  height: 64px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 18px;
  border: 1px solid rgba(34, 76, 117, 0.14);
  background:
    radial-gradient(circle at 28% 20%, rgba(255, 255, 255, 0.9), transparent 38%),
    linear-gradient(180deg, rgba(244, 248, 252, 0.98), rgba(233, 240, 248, 0.96));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    0 14px 26px rgba(17, 31, 49, 0.08);
  color: var(--jm-primary-deep);
}

.jm-story-pillar__icon svg {
  width: 34px;
  height: 34px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.jm-story-pillar__icon--growth {
  color: #234e7e;
}

.jm-story-pillar__icon--consumer {
  color: #3a5c7f;
}

.jm-story-pillar__icon--data {
  color: #2e6e90;
}

.jm-story-pillar__icon--ai {
  color: #255f98;
}

.jm-story-pillar h3 {
  margin: 18px 0 10px;
  color: var(--jm-ink);
  font-family: var(--jm-font-display);
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 0.98;
}

.jm-story-pillar p {
  margin: 0;
  color: var(--jm-ink-soft);
  font-size: 0.97rem;
  line-height: 1.64;
}

.jm-story-quote {
  width: fit-content;
  max-width: none;
  margin: 40px auto 0;
  color: var(--jm-primary-deep);
  font-family: var(--jm-font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-style: italic;
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.04em;
  text-align: center;
  text-wrap: balance;
}

.jm-story-quote span {
  display: block;
  white-space: nowrap;
}

.jm-story-foundations {
  padding: 78px 0 70px;
  background:
    radial-gradient(circle at 14% 18%, rgba(188, 143, 102, 0.14), transparent 22%),
    radial-gradient(circle at 84% 78%, rgba(120, 182, 255, 0.12), transparent 24%),
    linear-gradient(180deg, #16304d 0%, #102238 52%, #0b1727 100%);
}

.jm-story-foundations .jm-story-kicker {
  color: rgba(189, 214, 238, 0.88);
}

.jm-story-foundations .jm-story-section-title {
  color: #f4f8fc;
}

.jm-foundation-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 32px;
}

.jm-foundation-card {
  padding: 28px 26px;
  border-radius: 26px;
  border: 1px solid var(--jm-hairline);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 38px rgba(18, 32, 51, 0.08);
}

.jm-foundation-card__eyebrow {
  color: var(--jm-primary);
  font-family: var(--jm-font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.jm-foundation-card h3 {
  margin: 16px 0 0;
  color: var(--jm-ink);
  font-family: var(--jm-font-display);
  font-size: 1.72rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.03em;
}

.jm-foundation-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.jm-foundation-list li {
  position: relative;
  padding-left: 18px;
  color: var(--jm-ink-soft);
  font-size: 0.98rem;
  line-height: 1.64;
}

.jm-foundation-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--jm-accent-copper);
  box-shadow: 0 0 0 6px var(--jm-accent-glow);
}

.jm-hero__intro {
  text-align: center;
  max-width: 960px;
  margin: 0 auto 52px;
}

.jm-hero-stage {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: stretch;
  margin: 0 auto 40px;
  padding: 20px;
  background:
    radial-gradient(circle at 12% 14%, rgba(189, 214, 238, 0.34), transparent 24%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(231, 238, 245, 0.92));
  border: 1px solid var(--jm-hairline);
  border-radius: 34px;
  box-shadow: var(--jm-shadow-2);
}

.jm-hero-stage__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: stretch;
}

.jm-hero-stage__headline {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 6px;
  text-align: center;
}

.jm-hero-stage__headline .jm-display-xl {
  margin-top: 0;
  max-width: 11.6ch;
  font-size: clamp(2.4rem, 6.6vw, 4.25rem);
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.jm-hero-title-line {
  display: inline;
}

.jm-hero-stage__summary {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 22px 12px 4px;
  border-top: 1px solid rgba(18, 32, 51, 0.08);
}

.jm-hero-stage__summary .jm-lead {
  max-width: 64ch;
  margin: 0 auto;
  text-align: center;
}

.jm-lead--hero-intro {
  font-size: clamp(1.12rem, 2vw, 1.28rem);
  font-weight: 600;
  line-height: 1.42;
}

.jm-hero-stage__copy {
  max-width: 66ch;
  margin: 12px auto 0;
  color: var(--jm-ink-soft);
  font-size: 0.99rem;
  line-height: 1.62;
  text-align: center;
}

.jm-hero-stage__summary .jm-actions {
  margin-top: 28px;
}

.jm-hero-stage__media {
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.jm-hero-stage__portrait {
  width: 100%;
  min-height: 320px;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(18, 32, 51, 0.08);
  background: #eef3f8;
}

.jm-hero-stage__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
}

.jm-eyebrow {
  font-family: var(--jm-font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--jm-ink-muted);
}

.jm-eyebrow--dark {
  color: rgba(246, 240, 250, 0.68);
}

.jm-display-xl,
.jm-display-lg,
.jm-display-md {
  font-family: var(--jm-font-display);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 0.94;
  margin: 0;
  text-wrap: balance;
}

.jm-display-xl {
  margin-top: 22px;
  font-size: clamp(2.3rem, 7vw, 5.2rem);
}

.jm-display-lg {
  margin-top: 18px;
  font-size: clamp(2.6rem, 9vw, 5.8rem);
}

.jm-display-md {
  margin-top: 18px;
  font-size: clamp(2.2rem, 8vw, 4.8rem);
}

.jm-display-xl em,
.jm-display-lg em {
  font-style: italic;
  color: var(--jm-primary);
  font-weight: 700;
}

.jm-em-light {
  color: var(--jm-primary-light);
  font-style: italic;
  font-weight: 700;
}

.jm-lead,
.jm-copy-center,
.jm-copy-light,
.jm-copy-dark {
  font-size: 1.06rem;
  line-height: 1.64;
  text-wrap: pretty;
}

.jm-lead {
  max-width: 760px;
  margin: 28px auto 0;
  color: var(--jm-ink-soft);
}

.jm-copy-center {
  max-width: 620px;
  margin: 28px auto 0;
  color: var(--jm-ink-soft);
  text-align: center;
}

.jm-copy-light {
  max-width: 760px;
  color: var(--jm-ink-soft);
}

.jm-copy-dark {
  max-width: 760px;
  color: rgba(246, 240, 250, 0.78);
}

.jm-copy-dark--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.jm-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 34px;
}

.jm-actions--center {
  justify-content: center;
}

.jm-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 54px;
  padding: 14px 26px;
  border-radius: 999px;
  border: 0;
  background: var(--jm-primary);
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.15s ease;
}

.jm-btn-primary:hover {
  opacity: 0.92;
}

.jm-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--jm-primary);
  text-decoration: none;
  font-size: 0.96rem;
  font-weight: 700;
}

.jm-link--light {
  color: var(--jm-primary-light);
}

.jm-hero-board-shell {
  position: relative;
  z-index: 2;
  margin-top: -18px;
}

.jm-hero-board {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 8px;
  background: linear-gradient(180deg, rgba(252, 253, 255, 0.98), rgba(244, 248, 252, 0.98));
  border: 1px solid rgba(205, 220, 234, 0.72);
  border-radius: var(--jm-radius-lg);
  box-shadow: var(--jm-shadow-2);
}

.jm-float-card__label {
  font-family: var(--jm-font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.jm-masonry-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  align-items: start;
}

.jm-masonry-column {
  display: grid;
  gap: 8px;
  align-content: start;
  min-width: 0;
}

.jm-tile {
  position: relative;
  height: var(--tile-height);
  overflow: hidden;
  isolation: isolate;
  border-radius: 14px;
  background: radial-gradient(circle at 25% 18%, rgba(255,255,255,0.32), transparent 32%),
    radial-gradient(circle at 78% 82%, rgba(255,255,255,0.12), transparent 28%),
    radial-gradient(ellipse at 50% 100%, rgba(0,0,0,0.42), transparent 62%),
    var(--tile-grad);
}

.jm-tile--hero-d2c,
.jm-tile--nutella-dm3,
.jm-tile--popeyes-salsas,
.jm-tile--princeland,
.jm-tile--hero-kids,
.jm-tile--dia-muertos,
.jm-tile--journeys,
.jm-tile--grand-king,
.jm-tile--taqueria-nutella,
.jm-tile--evax-fina-segura {
  background: #0a121c;
}

.jm-tile > * {
  position: relative;
  z-index: 2;
}

.jm-tile--popeyes {
  --tile-height: 312px;
  --tile-grad: linear-gradient(135deg, #0f2b46 0%, #1f4f7a 60%, #9cc8ec 100%);
  background: var(--tile-grad);
}

.jm-tile--hero-d2c {
  --tile-height: 336px;
  --tile-grad: linear-gradient(145deg, #24415c 0%, #5c8ab0 100%);
}

.jm-tile--nutella-dm3 {
  --tile-height: 324px;
  --tile-grad: linear-gradient(145deg, #16304d 0%, #7ea9d1 100%);
}

.jm-tile--popeyes-salsas {
  --tile-height: 208px;
  --tile-grad: linear-gradient(160deg, #10243a 0%, #173451 100%);
}

.jm-tile--princeland {
  --tile-height: 418px;
  --tile-grad: linear-gradient(145deg, #17314b 0%, #3f6f96 55%, #d5e6f6 100%);
}

.jm-tile--hero-kids {
  --tile-height: 468px;
  --tile-grad: linear-gradient(130deg, #14263d 0%, #2e5a86 58%, #dcecff 100%);
}

.jm-tile--dia-muertos {
  --tile-height: 386px;
  --tile-grad: linear-gradient(150deg, #0b2038 0%, #27527c 50%, #84b3df 100%);
}

.jm-tile--journeys {
  --tile-height: 266px;
  --tile-grad: linear-gradient(135deg, #203447 0%, #527994 55%, #d7e4ee 100%);
}

.jm-tile--grand-king {
  --tile-height: 248px;
  --tile-grad: linear-gradient(135deg, #1b2533 0%, #4f6478 60%, #d4dde6 100%);
}

.jm-tile--taqueria-nutella-large {
  --tile-height: 392px;
  --tile-grad: linear-gradient(140deg, #102742 0%, #2f618e 55%, #d7ebff 100%);
}

.jm-tile--taqueria-nutella-small {
  --tile-height: 344px;
  --tile-grad: linear-gradient(150deg, #35485d 0%, #90a7bd 55%, #e2ebf2 100%);
}

.jm-tile--evax-fina-segura {
  --tile-height: 344px;
  --tile-grad: linear-gradient(145deg, #2f334c 0%, #5f6c8d 54%, #d9e2eb 100%);
}

.jm-tile--hero-kids::before,
.jm-tile--hero-d2c::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  transform: none;
  filter: saturate(0.98) contrast(1.02);
}

.jm-tile--hero-kids::before {
  background:
    linear-gradient(180deg, rgba(11, 23, 39, 0.1) 0%, rgba(11, 23, 39, 0.03) 34%, rgba(11, 23, 39, 0.34) 100%),
    url("./kids snacks.jpeg") center 42% / cover no-repeat;
  opacity: 0.96;
}

.jm-tile--hero-d2c::before {
  background:
    linear-gradient(180deg, rgba(11, 23, 39, 0.08) 0%, rgba(11, 23, 39, 0.02) 30%, rgba(11, 23, 39, 0.34) 100%),
    url("./corny-ecommerce-capture-optimized.jpg") center 34% / cover no-repeat;
  opacity: 0.94;
}

.jm-tile--dia-muertos::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(11, 23, 39, 0.04) 0%, rgba(11, 23, 39, 0.01) 34%, rgba(11, 23, 39, 0.3) 100%),
    url("./nutella dia de muertos.jpeg") center 32% / cover no-repeat;
  opacity: 0.98;
}

.jm-tile--journeys::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(11, 23, 39, 0.08) 0%, rgba(11, 23, 39, 0.02) 26%, rgba(11, 23, 39, 0.38) 100%),
    url("./journeys.jpeg") center 46% / cover no-repeat;
  opacity: 0.98;
}

.jm-tile--grand-king::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(11, 23, 39, 0.08) 0%, rgba(11, 23, 39, 0.02) 28%, rgba(11, 23, 39, 0.42) 100%),
    url("./dj-mario-grand-king-optimized.jpg") center 34% / cover no-repeat;
  opacity: 0.98;
}

.jm-tile--princeland::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(11, 23, 39, 0.08) 0%, rgba(11, 23, 39, 0.02) 26%, rgba(11, 23, 39, 0.42) 100%),
    url("./princeland-optimized.jpg") center 36% / cover no-repeat;
  opacity: 0.98;
}

.jm-tile--taqueria-nutella::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(11, 23, 39, 0.06) 0%, rgba(11, 23, 39, 0.02) 28%, rgba(11, 23, 39, 0.44) 100%),
    url("./taqueria-nutella-optimized.jpg") center 44% / cover no-repeat;
  opacity: 0.98;
}

.jm-tile--taqueria-nutella-wide::before {
  background:
    linear-gradient(180deg, rgba(11, 23, 39, 0.06) 0%, rgba(11, 23, 39, 0.02) 28%, rgba(11, 23, 39, 0.44) 100%),
    url("./taqueria-nutella-optimized.jpg") center 8% / cover no-repeat;
}

.jm-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.08;
  mix-blend-mode: overlay;
  background-image: radial-gradient(rgba(0,0,0,0.7) 1px, transparent 1px);
  background-size: 3px 3px;
}

.jm-tile__monogram,
.jm-tile__format {
  position: absolute;
  top: 10px;
  padding: 3px 8px;
  border-radius: 6px;
  font-family: var(--jm-font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.jm-tile__monogram {
  left: 10px;
  background: rgba(31, 23, 40, 0.46);
  color: #fff;
}

.jm-tile__format {
  right: 10px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--jm-ink);
}

.jm-tile__format--wide {
  font-size: 0.5rem;
  letter-spacing: 0.08em;
  padding-inline: 7px;
}

.jm-tile__bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 12px;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.56) 100%);
}

.jm-tile__bottom--right {
  text-align: right;
}

.jm-tile__cap {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.72rem;
  margin-bottom: 2px;
}

.jm-tile__cap--journeys {
  max-width: 18ch;
  line-height: 1.22;
}

.jm-tile__cap--taqueria {
  margin-left: auto;
  max-width: 19ch;
  line-height: 1.18;
}

.jm-tile__cap--evax {
  max-width: 13ch;
  line-height: 1.18;
}

.jm-tile__metric {
  color: #fff;
  font-family: var(--jm-font-display);
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
}

.jm-tile__metric--compact {
  font-size: 1.24rem;
  line-height: 1.08;
}

.jm-tile__metric--journeys {
  font-size: 1.42rem;
  line-height: 1.04;
}

.jm-tile__metric--taqueria {
  font-size: 1.18rem;
  line-height: 1.08;
}

.jm-tile__metric--evax {
  font-size: 1.12rem;
  line-height: 1.08;
}

.jm-tile__video {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 24%, rgba(255, 255, 255, 0.12), transparent 30%),
    linear-gradient(160deg, rgba(16, 36, 58, 0.28), rgba(23, 52, 81, 0.48));
}

.jm-tile__video::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 23, 39, 0.1) 0%, rgba(11, 23, 39, 0.02) 24%, rgba(11, 23, 39, 0.42) 100%);
}

.jm-tile__video video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}

.jm-tile--popeyes .jm-tile__video {
  background:
    linear-gradient(180deg, rgba(11, 23, 39, 0.08) 0%, rgba(11, 23, 39, 0.02) 26%, rgba(11, 23, 39, 0.42) 100%),
    radial-gradient(circle at 50% 22%, rgba(255, 255, 255, 0.12), transparent 22%),
    url("./logo popeyes-transparent.png") center 48% / 38% no-repeat,
    linear-gradient(160deg, rgba(16, 36, 58, 0.28), rgba(23, 52, 81, 0.48));
}

.jm-tile--nutella-dm3 .jm-tile__video {
  background:
    linear-gradient(180deg, rgba(11, 23, 39, 0.08) 0%, rgba(11, 23, 39, 0.02) 26%, rgba(11, 23, 39, 0.42) 100%),
    radial-gradient(circle at 50% 24%, rgba(255, 255, 255, 0.1), transparent 24%),
    url("./logo nutella-transparent.png") center 48% / 42% no-repeat,
    linear-gradient(160deg, rgba(16, 36, 58, 0.22), rgba(23, 52, 81, 0.4));
}

.jm-tile--evax-fina-segura .jm-tile__video {
  background:
    linear-gradient(180deg, rgba(11, 23, 39, 0.08) 0%, rgba(11, 23, 39, 0.02) 26%, rgba(11, 23, 39, 0.42) 100%),
    radial-gradient(circle at 50% 24%, rgba(255, 255, 255, 0.1), transparent 24%),
    url("./logo evax-transparent.png") center 46% / 44% no-repeat,
    linear-gradient(160deg, rgba(16, 36, 58, 0.22), rgba(23, 52, 81, 0.4));
}

.jm-tile--popeyes-salsas::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.1), transparent 24%),
    linear-gradient(160deg, rgba(16, 36, 58, 0.12), rgba(23, 52, 81, 0.22));
}

.jm-career-strip {
  padding: 10px 0 76px;
  background: var(--jm-canvas-dark);
  color: var(--jm-ink-inverse);
}

.jm-led-brands {
  padding: 68px 0 74px;
  position: relative;
  background:
    radial-gradient(circle at 18% 18%, rgba(120, 156, 191, 0.14), transparent 28%),
    radial-gradient(circle at 82% 78%, rgba(189, 214, 238, 0.12), transparent 24%),
    linear-gradient(180deg, #12263d 0%, #102238 52%, #0b1727 100%);
  border-top: 1px solid rgba(189, 214, 238, 0.12);
  border-bottom: 1px solid rgba(189, 214, 238, 0.12);
  color: var(--jm-ink-inverse);
}

.jm-led-brands__head {
  text-align: center;
  margin-bottom: 30px;
}

.jm-led-brands__title {
  margin: 0;
  color: #dce8f4;
  font-family: var(--jm-font-display);
  font-size: clamp(1.8rem, 4vw, 2.9rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.94;
  text-shadow: 0 1px 0 rgba(8, 17, 29, 0.35);
}

.jm-logo-marquee {
  --jm-logo-gap: 14px;
  --jm-logo-size: clamp(116px, 20vw, 148px);
  display: flex;
  gap: var(--jm-logo-gap);
  overflow: hidden;
  align-items: center;
  mask-image: linear-gradient(90deg, transparent 0, black 6%, black 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, black 6%, black 94%, transparent 100%);
}

.jm-logo-marquee__lane {
  display: flex;
  flex-shrink: 0;
  gap: var(--jm-logo-gap);
  min-width: max-content;
  animation: jm-logo-marquee 34s linear infinite;
}

.jm-logo-card {
  flex: 0 0 var(--jm-logo-size);
  width: var(--jm-logo-size);
  height: var(--jm-logo-size);
  padding: 0;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.98), rgba(236, 242, 248, 0.96) 54%, rgba(191, 205, 219, 0.94) 100%);
  border: 1px solid rgba(207, 222, 236, 0.34);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.62),
    0 16px 34px rgba(5, 13, 23, 0.28),
    0 2px 10px rgba(9, 22, 38, 0.24);
}

.jm-logo-card img {
  width: auto;
  height: auto;
  max-width: 70%;
  max-height: 42%;
  object-fit: contain;
  filter: saturate(1.02) contrast(1.02);
}

.jm-logo-card img[src*="logo burger king"],
.jm-logo-card img[src*="logo popeyes"],
.jm-logo-card img[src*="logo tictac"] {
  max-width: 56%;
  max-height: 56%;
}

.jm-logo-card img[src*="logo gaes"],
.jm-logo-card img[src*="logo corny"],
.jm-logo-card img[src*="logo hero temporada"],
.jm-logo-card img[src*="logo nutella"],
.jm-logo-card img[src*="logo dodot"],
.jm-logo-card img[src*="logo evax"],
.jm-logo-card img[src*="ausonia evolution"],
.jm-logo-card img[src*="logo lindor ausonia"] {
  max-width: 72%;
  max-height: 30%;
}

.jm-logo-card img[src*="hero baby"],
.jm-logo-card img[src*="logo mikado"] {
  max-width: 68%;
  max-height: 34%;
}

.jm-logo-card img[src*="hero-transparent"] {
  max-width: 100%;
  max-height: 66%;
}

.jm-logo-card img[src*="logo popeyes"] {
  max-width: 80%;
  max-height: 80%;
}

.jm-logo-card img[src*="logo gaes"] {
  max-width: 96%;
  max-height: 46%;
}

.jm-logo-card img[src*="hero baby"] {
  max-width: 92%;
  max-height: 44%;
}

.jm-logo-card img[src*="logo corny"] {
  max-width: 88%;
  max-height: 38%;
}

.jm-logo-card img[src*="logo hero temporada"] {
  max-width: 94%;
  max-height: 52%;
}

.jm-logo-card img[src*="logo nutella"] {
  max-width: 98%;
  max-height: 46%;
}

.jm-logo-card img[src*="logo tictac"] {
  max-width: 82%;
  max-height: 52%;
}

.jm-logo-card img[src*="logo tuc"] {
  max-width: 92%;
  max-height: 82%;
}

.jm-logo-card img[src*="logo mikado"] {
  max-width: 104%;
  max-height: 58%;
}

.jm-logo-card img[src*="logo petit ecolier"] {
  max-width: 94%;
  max-height: 84%;
}

.jm-logo-card img[src*="logo evax"] {
  max-width: 103%;
  max-height: 62%;
}

.jm-logo-card img[src*="ausonia evolution"] {
  max-width: 114%;
  max-height: 56%;
}

.jm-logo-card img[src*="logo lindor ausonia"] {
  max-width: 101%;
  max-height: 50%;
}

.jm-logo-card img[src*="logo principe-blue-transparent"],
.jm-logo-card img[src*="logo milka"] {
  max-width: 68%;
  max-height: 58%;
}

.jm-logo-card img[src*="logo milka"] {
  max-width: 82%;
  max-height: 68%;
}

.jm-logo-card img[src*="logo dodot"] {
  max-width: 98%;
  max-height: 62%;
}

.jm-logo-card img[src*="logo principe 2-transparent"] {
  max-width: 99%;
  max-height: 59%;
}

.jm-logo-marquee:hover .jm-logo-marquee__lane,
.jm-logo-marquee:focus-within .jm-logo-marquee__lane {
  animation-play-state: paused;
}

@keyframes jm-logo-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - var(--jm-logo-gap)));
  }
}

.jm-section-light {
  background: var(--jm-canvas);
}

.jm-section-dark {
  background: var(--jm-canvas-dark);
  color: var(--jm-ink-inverse);
}

.jm-section-sunken {
  background: var(--jm-canvas-sunken);
}

.jm-section-head {
  max-width: 980px;
  margin-bottom: 40px;
}

.jm-dark-grid,
.jm-about-grid,
.jm-card-grid,
.jm-testimonial-grid,
.jm-process-grid,
.jm-fit-grid,
.jm-faq-grid,
.jm-footer__grid,
.jm-ops-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.jm-dark-panel,
.jm-dark-panel__list,
.jm-dark-list__item,
.jm-metric-card,
.jm-feature-card,
.jm-ops-panel,
.jm-mini-stat,
.jm-career-card,
.jm-quote-card,
.jm-process-card,
.jm-fit-card,
.jm-faq-card,
.jm-carousel-card {
  border-radius: var(--jm-radius-sm);
}

.jm-dark-panel {
  padding: 26px;
  background: var(--jm-canvas-dark-3);
  border: 1px solid var(--jm-hairline-dark);
}

.jm-dark-panel__meta,
.jm-feature-card__eyebrow,
.jm-quote-card__eyebrow,
.jm-carousel-card__eyebrow {
  font-family: var(--jm-font-mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.jm-dark-panel__meta {
  color: rgba(246, 240, 250, 0.56);
}

.jm-dark-list {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.jm-dark-list__item,
.jm-fit-card {
  position: relative;
  padding: 16px 16px 16px 46px;
  line-height: 1.6;
}

.jm-dark-list__item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--jm-hairline-dark);
  color: rgba(246, 240, 250, 0.84);
  font-size: 0.98rem;
}

.jm-dark-list__item::before,
.jm-fit-card::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 18px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--jm-primary-light);
  box-shadow: 0 0 0 6px rgba(216, 198, 255, 0.14);
}

.jm-dark-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.jm-metric-card {
  padding: 22px 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--jm-hairline-dark);
}

.jm-metric-card__value {
  font-family: var(--jm-font-display);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
}

.jm-metric-card__label {
  margin-top: 6px;
  color: rgba(246, 240, 250, 0.7);
  font-size: 0.86rem;
}

.jm-card-grid {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.jm-feature-card {
  padding: 24px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--jm-hairline);
  box-shadow: var(--jm-shadow-1);
}

.jm-feature-card__eyebrow {
  color: #1a4b78;
}

.jm-carousel-card__eyebrow {
  color: var(--jm-ink-muted);
}

.jm-feature-card h4,
.jm-ops-panel h4,
.jm-process-card h4,
.jm-faq-card h4,
.jm-carousel-card h4 {
  margin: 12px 0 8px;
  font-family: var(--jm-font-display);
  font-size: 1.28rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.02;
}

.jm-feature-card p,
.jm-ops-panel p,
.jm-career-card span,
.jm-quote-card p,
.jm-process-card p,
.jm-faq-card p,
.jm-carousel-card p {
  color: var(--jm-ink-soft);
  font-size: 0.97rem;
  line-height: 1.64;
}

.jm-ops-panel {
  padding: 26px;
  margin-top: 28px;
  background: #fff;
  border: 1px solid var(--jm-hairline);
  box-shadow: var(--jm-shadow-1);
}

.jm-ops-panel__stats {
  display: grid;
  gap: 12px;
}

.jm-mini-stat {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  background: var(--jm-canvas-sunken);
  border: 1px solid var(--jm-hairline);
}

.jm-mini-stat span {
  font-family: var(--jm-font-mono);
  font-size: 0.68rem;
  color: var(--jm-ink-muted);
}

.jm-mini-stat strong {
  font-size: 0.94rem;
}

.jm-about__media {
  max-width: 520px;
}

.jm-portrait-frame {
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid var(--jm-hairline-dark);
  box-shadow: var(--jm-shadow-1);
}

.jm-career-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 28px;
}

.jm-career-grid--intro {
  margin-top: 0;
}

.jm-career-card {
  min-height: 156px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.jm-career-card strong {
  display: block;
  margin-bottom: 0;
  color: #f4f7fb;
  font-family: var(--jm-font-display);
  font-size: 1.24rem;
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 600;
}

.jm-career-card span {
  display: block;
  color: rgba(237, 244, 250, 0.82);
  font-size: 0.98rem;
  line-height: 1.58;
}

.jm-quote-card {
  position: relative;
  margin-top: 42px;
  padding: 54px 24px 24px;
  text-align: center;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--jm-hairline);
  box-shadow: var(--jm-shadow-1);
  overflow: visible;
}

.jm-quote-card__avatar {
  position: absolute;
  top: 0;
  left: 50%;
  width: 82px;
  height: 82px;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 24%, rgba(255, 255, 255, 0.98), rgba(232, 239, 246, 0.96) 58%, rgba(193, 206, 220, 0.9) 100%);
  border: 1px solid rgba(194, 207, 223, 0.8);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    0 14px 28px rgba(11, 20, 34, 0.12);
}

.jm-quote-card__avatar svg {
  width: 34px;
  height: 34px;
  stroke: #56708e;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.jm-quote-card__avatar img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 34%;
  border-radius: 50%;
}

.jm-quote-card__role {
  font-family: var(--jm-font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1a4b78;
}

.jm-quote-card__company {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(26, 75, 120, 0.06);
  border: 1px solid rgba(26, 75, 120, 0.1);
}

.jm-quote-card__company--pg {
  min-height: 38px;
  padding: 4px 10px;
}

.jm-quote-card__company--hero {
  min-height: 34px;
  padding: 6px 8px;
}

.jm-quote-card__company--amplifon {
  min-height: 40px;
  padding: 5px 10px;
  isolation: isolate;
}

.jm-quote-card__company img {
  display: block;
  width: auto;
  height: 18px;
  object-fit: contain;
}

.jm-quote-card__company img.jm-quote-card__company-logo--ferrero {
  height: 20px;
}

.jm-quote-card__company img.jm-quote-card__company-logo--nes {
  height: 26px;
}

.jm-quote-card__company img.jm-quote-card__company-logo--dvj {
  height: 24px;
}

.jm-quote-card__company img.jm-quote-card__company-logo--idilia {
  height: 20px;
}

.jm-quote-card__company img.jm-quote-card__company-logo--epsilon {
  height: 22px;
}

.jm-quote-card__company img.jm-quote-card__company-logo--amplifon {
  height: 48px;
  mix-blend-mode: multiply;
}

.jm-quote-card__company img.jm-quote-card__company-logo--hero {
  width: 68px;
  height: auto;
  max-width: none;
}

.jm-quote-card__company img.jm-quote-card__company-logo--pg {
  width: 34px;
  height: 34px;
  max-width: none;
}

.jm-quote-card__name {
  margin-top: 16px;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--jm-ink);
}

.jm-testimonial-carousel {
  padding-top: 10px;
}

.jm-testimonial-card {
  flex: 0 0 min(84vw, 360px);
  scroll-snap-align: start;
  min-height: 320px;
}

.jm-process-card {
  position: relative;
  padding: 21px;
  min-height: 214px;
  background:
    radial-gradient(circle at top right, rgba(86, 127, 168, 0.14), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.028));
  border: 1px solid var(--jm-hairline-dark);
  overflow: hidden;
}

.jm-process-card__num {
  font-family: var(--jm-font-mono);
  font-size: 0.86rem;
  letter-spacing: 0.1em;
  color: var(--jm-primary-light);
  margin-bottom: 10px;
}

.jm-process-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.jm-process-card__icon {
  position: relative;
  width: 72px;
  height: 72px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 21px;
  color: #ecf6ff;
  background:
    linear-gradient(160deg, rgba(42, 80, 118, 0.96), rgba(18, 39, 63, 0.98));
  border: 1px solid rgba(166, 197, 226, 0.2);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 14px 28px rgba(6, 14, 25, 0.28);
}

.jm-process-card__icon::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 16px;
  background: radial-gradient(circle at 30% 28%, rgba(169, 210, 244, 0.18), transparent 58%);
  pointer-events: none;
}

.jm-process-card__icon svg {
  position: relative;
  z-index: 1;
  width: 42px;
  height: 42px;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.jm-process-card__icon--diagnostico {
  color: #d9efff;
}

.jm-process-card__icon--foco {
  color: #edf7ff;
}

.jm-process-card__icon--activacion {
  color: #deefff;
}

.jm-process-card__icon--seguimiento {
  color: #eaf6ff;
}

.jm-process-card h4 {
  margin-top: 15px;
}

.jm-carousel-head {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 18px;
}

.jm-carousel-head p {
  margin: 0;
  color: var(--jm-ink-soft);
  font-size: 0.92rem;
}

.jm-carousel-nav {
  display: flex;
  gap: 10px;
}

.jm-carousel-btn {
  width: 44px;
  height: 44px;
  border: 1px solid var(--jm-hairline);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--jm-ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.jm-carousel-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 4px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.jm-carousel-track::-webkit-scrollbar {
  display: none;
}

.jm-carousel-card {
  flex: 0 0 min(84vw, 340px);
  scroll-snap-align: start;
  padding: 24px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--jm-hairline);
  box-shadow: var(--jm-shadow-1);
}

.jm-fit-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--jm-hairline-dark);
  color: rgba(246, 240, 250, 0.84);
}

.jm-faq-card {
  padding: 24px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--jm-hairline);
  box-shadow: var(--jm-shadow-1);
}

.jm-faq-list {
  display: grid;
  gap: 12px;
}

.jm-faq-item {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--jm-hairline);
  border-radius: var(--jm-radius-sm);
  box-shadow: var(--jm-shadow-1);
  overflow: hidden;
}

.jm-faq-item summary {
  list-style: none;
}

.jm-faq-item summary::-webkit-details-marker {
  display: none;
}

.jm-faq-question {
  position: relative;
  display: block;
  width: 100%;
  padding: 22px 58px 22px 24px;
  cursor: pointer;
  font-family: var(--jm-font-display);
  font-size: 1.14rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.08;
  color: var(--jm-ink);
}

.jm-faq-question::after,
.jm-faq-question::before {
  content: "";
  position: absolute;
  right: 24px;
  top: 50%;
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: #1a4b78;
  transform: translateY(-50%);
  transition: transform 180ms ease, opacity 180ms ease;
}

.jm-faq-question::before {
  transform: translateY(-50%) rotate(90deg);
}

.jm-faq-item[open] .jm-faq-question::before {
  opacity: 0;
  transform: translateY(-50%) rotate(90deg) scaleX(0.35);
}

.jm-faq-answer {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--jm-ink-soft);
  font-size: 0.95rem;
  line-height: 1.7;
}

.jm-cta-section {
  background: var(--jm-canvas-dark);
}

.jm-cta-shell {
  text-align: center;
}

.jm-contact-title {
  width: fit-content;
  max-width: none;
  margin: 0 auto 22px;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.02;
  color: var(--jm-ink-inverse);
  text-wrap: normal;
}

.jm-contact-title span {
  display: block;
  white-space: nowrap;
}

.jm-footer {
  padding: 56px 0 28px;
  background: var(--jm-canvas);
}

.jm-footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.jm-footer__minimal {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: center;
  justify-content: space-between;
  padding-top: 6px;
  border-top: 1px solid var(--jm-hairline);
}

.jm-footer__legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 18px;
}

.jm-footer__legal a {
  text-decoration: none;
  color: var(--jm-ink-soft);
  font-size: 0.88rem;
}

.jm-footer__legal a:hover {
  color: var(--jm-ink);
}

.jm-whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  padding: 0;
  border-radius: 50%;
  text-decoration: none;
  color: #ffffff;
  background: linear-gradient(135deg, #25d366 0%, #149b48 100%);
  box-shadow:
    0 18px 36px rgba(13, 34, 21, 0.24),
    0 2px 10px rgba(13, 34, 21, 0.18);
  transition: transform 160ms ease, box-shadow 160ms ease, opacity 160ms ease;
}

.jm-whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow:
    0 22px 42px rgba(13, 34, 21, 0.26),
    0 2px 12px rgba(13, 34, 21, 0.22);
}

.jm-whatsapp-float__icon {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.jm-whatsapp-float__icon svg {
  width: 22px;
  height: 22px;
}

.jm-whatsapp-float__icon path {
  fill: currentColor;
}

.jm-footer__grid {
  padding-bottom: 32px;
  border-bottom: 1px solid var(--jm-hairline);
}

.jm-footer__copy {
  max-width: 380px;
  color: var(--jm-ink-soft);
  font-size: 0.92rem;
  line-height: 1.7;
}

.jm-footer__title {
  margin-bottom: 12px;
  font-family: var(--jm-font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--jm-ink-muted);
}

.jm-footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.jm-footer__list a {
  text-decoration: none;
  color: var(--jm-ink-soft);
  font-size: 0.9rem;
}

.jm-footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 20px;
  font-size: 0.78rem;
  color: var(--jm-ink-muted);
}

.jm-legal-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 14% 12%, rgba(189, 214, 238, 0.24), transparent 22%),
    linear-gradient(180deg, #f4f7fb 0%, #e9eef5 100%);
}

.jm-legal-wrap {
  max-width: 920px;
  margin: 0 auto;
  padding: 32px 24px 80px;
}

.jm-legal-header {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 36px;
}

.jm-legal-card {
  padding: 28px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--jm-hairline);
  border-radius: 28px;
  box-shadow: var(--jm-shadow-2);
}

.jm-legal-note {
  margin: 18px 0 0;
  padding: 14px 16px;
  background: rgba(26, 75, 120, 0.06);
  border: 1px solid rgba(26, 75, 120, 0.12);
  border-radius: 14px;
  color: var(--jm-ink-soft);
  font-size: 0.92rem;
  line-height: 1.65;
}

.jm-legal-section {
  margin-top: 26px;
}

.jm-legal-section h2 {
  margin: 0 0 10px;
  font-family: var(--jm-font-display);
  font-size: 1.34rem;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.jm-legal-section p,
.jm-legal-section li {
  color: var(--jm-ink-soft);
  font-size: 0.96rem;
  line-height: 1.72;
}

.jm-legal-section ul {
  margin: 12px 0 0;
  padding-left: 20px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 640px) {
  .jm-shell,
  .jm-header__inner {
    padding-left: 24px;
    padding-right: 24px;
  }

  .jm-brand-mark__frame,
  .jm-brand-mark__frame--footer {
    width: 314px;
    height: 62px;
  }

  .jm-btn-primary {
    width: auto;
  }

  .jm-actions {
    flex-direction: row;
    justify-content: center;
  }

  .jm-masonry-hero {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .jm-dark-metrics,
  .jm-process-grid,
  .jm-faq-grid,
  .jm-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .jm-testimonial-grid,
  .jm-fit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .jm-logo-marquee {
    --jm-logo-gap: 16px;
    --jm-logo-size: clamp(124px, 15vw, 156px);
  }

}

@media (min-width: 768px) {
  .jm-story-authority .jm-story-section-title span {
    white-space: nowrap;
  }

  .jm-story-hero__frame {
    grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
    gap: 30px;
    padding: 30px;
  }

  .jm-story-hero__content {
    padding: 8px 6px 8px 4px;
  }

  .jm-story-hero__portrait {
    min-height: 520px;
  }

  .jm-authority-logo-groups {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .jm-story-pillar-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .jm-hero-board-shell {
    margin-top: -22px;
  }

  .jm-footer__minimal {
    flex-direction: row;
    align-items: center;
  }

  .jm-footer__legal {
    justify-content: flex-end;
  }

  .jm-header__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .jm-header__navgroup {
    width: auto;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
  }

  .nav-links {
    width: auto;
    overflow: visible;
    justify-content: flex-end;
    gap: 18px;
  }

  .jm-nav-link {
    padding: 0;
    border: 0;
    background: transparent;
    min-height: 44px;
  }

  .jm-nav-link:hover,
  .jm-nav-link.is-active {
    background: transparent;
    opacity: 0.7;
  }

  .jm-cta {
    min-height: 44px;
    padding: 11px 22px;
  }

  .jm-lang-switch {
    flex-shrink: 0;
  }

  .jm-footer__brand {
    align-items: flex-start;
  }

  .jm-dark-grid,
  .jm-about-grid,
  .jm-ops-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

  .jm-hero-stage {
    gap: 24px;
    padding: 24px;
  }

  .jm-hero-stage__top {
    grid-template-columns: minmax(0, 1.24fr) minmax(260px, 0.76fr);
    gap: 26px;
  }

  .jm-hero-stage__headline {
    padding: 12px 8px 12px 12px;
    text-align: left;
    justify-content: flex-start;
  }

  .jm-hero-stage__headline .jm-display-xl {
    max-width: none;
    font-size: clamp(2.55rem, 4.5vw, 3.7rem);
  }

  .jm-hero-title-line {
    white-space: nowrap;
  }

  .jm-hero-stage__portrait {
    max-width: 86%;
    margin-left: auto;
  }

  .jm-hero-stage__summary {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    max-width: 980px;
    margin: 0 auto;
    padding: 24px 16px 2px;
  }

  .jm-hero-stage__summary .jm-lead {
    max-width: 64ch;
    margin: 0 auto;
    text-align: center;
  }

  .jm-hero-stage__copy {
    max-width: 66ch;
    margin: 12px auto 0;
    text-align: center;
  }

  .jm-hero-stage__summary .jm-actions {
    justify-content: center;
  }

  .jm-testimonial-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .jm-carousel-head {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .jm-carousel-card {
    flex-basis: min(44vw, 360px);
  }
}

@media (max-width: 539px) {
  .jm-authority-logo-group--fmcg .jm-authority-logo-row,
  .jm-authority-logo-group--retail .jm-authority-logo-row {
    grid-template-columns: 1fr;
  }

  .jm-authority-logo {
    width: min(100%, 240px);
    height: 96px;
  }
}

@media (min-width: 900px) {
  .jm-career-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .jm-story-hero,
  .jm-story-authority,
  .jm-story-intersection,
  .jm-story-foundations {
    padding: 92px 0;
  }

  .jm-story-hero {
    padding-top: 88px;
  }

  .jm-story-hero__frame {
    grid-template-columns: minmax(0, 1.16fr) minmax(320px, 0.84fr);
    gap: 36px;
    padding: 36px;
  }

  .jm-story-hero__title {
    font-size: clamp(3.7rem, 6vw, 6.4rem);
  }

  .jm-story-hero__lead {
    font-size: 1.34rem;
  }

  .jm-story-hero__body {
    font-size: 1.04rem;
  }

  .jm-story-hero__portrait {
    min-height: 600px;
  }

  .jm-story-pillar-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .jm-authority-logo-group--retail .jm-authority-logo-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .jm-story-authority .jm-career-grid {
    margin-top: 28px;
  }

  .jm-hero-board-shell {
    margin-top: -30px;
  }

  .jm-hero,
  .jm-section-light,
  .jm-section-dark,
  .jm-section-sunken,
  .jm-cta-section {
    padding: 92px 0;
  }

  .jm-hero {
    padding-top: 84px;
  }

  .jm-career-strip {
    padding: 12px 0 72px;
  }

  .jm-led-brands {
    padding: 58px 0 64px;
  }

  .jm-hero-stage {
    padding: 28px;
  }

  .jm-hero-stage__top {
    grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.7fr);
  }

  .jm-hero-stage__headline {
    padding: 18px 16px 18px 18px;
  }

  .jm-hero-stage__headline .jm-display-xl {
    max-width: none;
    font-size: clamp(2.8rem, 4.15vw, 3.85rem);
  }

  .jm-lead--hero-intro {
    font-size: clamp(1.2rem, 1.55vw, 1.42rem);
  }

  .jm-hero-stage__copy {
    font-size: 1rem;
  }

  .jm-hero-stage__portrait {
    min-height: 440px;
    max-width: 84%;
    margin-left: auto;
  }

  .jm-masonry-hero {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .jm-process-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .jm-career-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .jm-logo-marquee {
    --jm-logo-gap: 18px;
    --jm-logo-size: 156px;
  }

  .jm-fit-grid,
  .jm-faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .jm-footer__grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }

  .jm-footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (prefers-reduced-motion: reduce) {
  .jm-logo-marquee {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    overflow: visible;
    mask-image: none;
    -webkit-mask-image: none;
  }

  .jm-logo-marquee__lane {
    display: contents;
    animation: none;
  }

  .jm-logo-marquee__lane[aria-hidden="true"] {
    display: none;
  }

  .jm-logo-card {
    flex-basis: auto;
  }
}

@media (max-width: 639px) {
  .jm-story-hero,
  .jm-story-authority,
  .jm-story-intersection,
  .jm-story-foundations {
    padding: 56px 0;
  }

  .jm-story-hero {
    padding-top: 64px;
  }

  .jm-story-hero__frame {
    padding: 18px;
    gap: 22px;
  }

  .jm-story-hero__title {
    font-size: clamp(2.55rem, 13vw, 3.8rem);
    gap: 4px;
  }

  .jm-story-hero__lead {
    font-size: 1rem;
  }

  .jm-story-hero__body {
    font-size: 0.95rem;
  }

  .jm-story-section-title {
    font-size: clamp(1.65rem, 8.6vw, 2.3rem);
    line-height: 0.88;
  }

  .jm-story-section-copy {
    font-size: 0.96rem;
  }

  .jm-authority-logo {
    min-width: calc(50% - 6px);
    padding: 12px 14px;
  }

  .jm-story-pillar,
  .jm-foundation-card {
    padding: 22px 20px;
  }

  .jm-story-pillar__icon {
    width: 60px;
    height: 60px;
  }

  .jm-story-pillar__icon svg {
    width: 31px;
    height: 31px;
  }

  .jm-story-quote {
    width: 100%;
    max-width: 100%;
    font-size: clamp(1.5rem, 8.2vw, 2.2rem);
    line-height: 0.94;
  }

  .jm-story-quote span {
    white-space: normal;
  }

  main section[id] {
    scroll-margin-top: 112px;
  }

  .jm-hero,
  .jm-section-light,
  .jm-section-dark,
  .jm-section-sunken,
  .jm-cta-section {
    padding: 56px 0;
  }

  .jm-hero {
    padding-top: 64px;
  }

  .jm-display-xl {
    font-size: clamp(2.15rem, 10vw, 3.25rem);
  }

  .jm-faq-question {
    padding: 18px 52px 18px 20px;
    font-size: 1.02rem;
  }

  .jm-faq-answer {
    padding: 0 20px 18px;
  }

  .jm-brand-mark__frame,
  .jm-brand-mark__frame--footer {
    width: min(100%, 196px);
    height: 38px;
  }

  .jm-header__inner {
    gap: 8px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .jm-header__navgroup {
    width: 100%;
    gap: 8px;
  }

  .nav-links {
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    gap: 8px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 2px;
    scroll-padding-inline: 20px;
    -webkit-overflow-scrolling: touch;
  }

  .jm-nav-link,
  .jm-cta {
    width: auto;
    min-height: 44px;
    padding: 10px 16px;
    white-space: nowrap;
    text-align: center;
    line-height: 1;
    flex: 0 0 auto;
  }

  .jm-cta.nav-cta {
    width: auto;
  }

  .jm-lang-switch {
    align-self: flex-start;
  }

  .jm-lang-switch__link {
    min-width: 40px;
    padding: 0 10px;
  }

  .jm-story-authority .jm-story-section-head {
    max-width: 100%;
  }

  .jm-story-authority .jm-story-section-title {
    max-width: 100%;
    font-size: clamp(2rem, 10vw, 2.9rem);
    line-height: 0.98;
  }

  .jm-story-authority .jm-story-section-title span + span {
    margin-top: 0.06em;
  }

  .jm-story-foundations .jm-story-section-title {
    max-width: 11ch;
    margin-inline: auto;
    font-size: clamp(1.7rem, 8.8vw, 2.4rem);
    line-height: 0.98;
  }

  .jm-contact-title {
    width: 100%;
    max-width: 100%;
    margin-bottom: 18px;
    font-size: clamp(1.65rem, 8vw, 2.3rem);
    line-height: 0.94;
  }

  .jm-contact-title span {
    white-space: normal;
  }

  .jm-actions--center {
    gap: 16px;
  }

  .jm-tile__monogram,
  .jm-tile__format {
    top: 12px;
  }

  .jm-tile__bottom {
    padding: 14px;
  }

  .jm-footer__brand {
    align-items: center;
  }

  .jm-footer__minimal {
    text-align: center;
  }

  .jm-footer__copy {
    text-align: center;
  }

  .jm-whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 56px;
    height: 56px;
  }
}

@media (max-width: 420px) {
  .jm-whatsapp-float {
    width: 52px;
    height: 52px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
