:root {
  --ijam-black: #0b0d10;
  --ijam-ink: #171b22;
  --ijam-muted: #5d6573;
  --ijam-line: #e5e8ed;
  --ijam-soft: #f6f7f9;
  --ijam-red: #d9232e;
  --ijam-yellow: #f4be23;
  --ijam-blue: #1769d6;
  --ijam-focus: rgb(23 105 214 / 40%);
  --ijam-bg: #fff;
  --ijam-header-bg: rgb(255 255 255 / 92%);
  --ijam-chip-bg: rgb(255 255 255 / 72%);
}


* {
  box-sizing: border-box;
}

*:focus-visible {
  outline: 3px solid var(--ijam-blue);
  outline-offset: 3px;
  box-shadow: 0 0 0 4px var(--ijam-focus);
}

html {
  scroll-behavior: smooth;
}

body.ijam-site {
  margin: 0;
  background: var(--ijam-soft);
  color: var(--ijam-ink);
  font-family: Montserrat, "Open Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  transition: background 0.3s ease, color 0.3s ease;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--ijam-blue);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1rem clamp(1rem, 4vw, 4rem);
  border-bottom: 1px solid var(--ijam-line);
  background: var(--ijam-header-bg);
  backdrop-filter: blur(18px);
}

.brand img {
  display: block;
  height: 3.5rem;
  width: auto;
}

.site-nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 1.8rem);
  color: var(--ijam-black);
  font-size: 0.92rem;
  font-weight: 600;
}

.site-nav a {
  position: relative;
  padding: 0.35rem 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--ijam-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.site-nav a.is-active {
  color: var(--ijam-blue);
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem;
  border: 1px solid var(--ijam-line);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
}

.lang-switch a,
.lang-switch span {
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}

.lang-switch a:hover {
  background: var(--ijam-soft);
}

.lang-switch span {
  background: var(--ijam-black);
  color: #fff;
}

.nav-toggle {
  display: none;
  justify-self: end;
  border: 1px solid var(--ijam-line);
  border-radius: 999px;
  background: transparent;
  color: var(--ijam-black);
  padding: 0.5rem 0.8rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease;
}

.nav-toggle:hover {
  background: var(--ijam-soft);
}

.home-hero,
.split-section,
.section-block,
.trust-band,
.page-shell {
  width: min(1300px, calc(100% - 2rem));
  margin-inline: auto;
}

.home-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  padding: clamp(3rem, 7vw, 6rem) 0;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--ijam-blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.home-hero h1,
.page-hero h1 {
  max-width: 820px;
  margin: 0;
  color: var(--ijam-black);
  font-size: clamp(3rem, 8vw, 6.7rem);
  font-weight: 800;
  letter-spacing: -0.075em;
  line-height: 0.92;
}

.home-hero .lead {
  margin-top: 2rem;
  margin-bottom: 1.25rem;
  color: var(--ijam-black);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  font-weight: 700;
  line-height: 1.35;
}

.home-hero p:not(.eyebrow, .lead),
.split-section p,
.trust-band p,
.section-block > p,
.page-hero p {
  color: var(--ijam-muted);
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
}

.page-hero p:not(.eyebrow) {
  margin-top: 1.25rem;
}

.home-hero p:last-child,
.split-section p:last-child,
.trust-band p:last-child,
.section-block > p:last-child,
.page-hero p:last-child {
  margin-bottom: 0;
}

.trust-band p,
.section-block > p {
  margin-top: 1.25rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.75rem 1.1rem;
  border-radius: 999px;
  font-weight: 800;
  transition: all 0.2s ease;
}

.button.primary {
  background: var(--ijam-black);
  color: #fff;
}

.button.secondary {
  border: 1px solid var(--ijam-line);
  background: transparent;
  color: var(--ijam-black);
}

.button:hover {
  transform: translateY(-1px);
}

.hero-visual {
  align-self: start;
  position: relative;
  min-height: 420px;
  border-radius: 2rem;
  background: none;
  border: none;
  overflow: visible;
}

.chip-card {
  z-index: 1;
  position: absolute;
  inset: 14%;
  border: none;
  border-radius: 1.25rem;
  background: #fff;
  box-shadow: 0 30px 80px rgb(11 13 16 / 8%);
}

.chip-card::before,
.chip-card::after,
.chip-lines {
  content: "";
  position: absolute;
  inset: 18%;
  border: 1px solid rgb(11 13 16 / 8%);
  border-radius: 0.8rem;
}

.chip-card::after {
  inset: 30%;
}

.chip-lines {
  inset: auto 12% 16%;
  height: 1px;
  border: 0;
  background: linear-gradient(90deg, var(--ijam-red), var(--ijam-yellow), var(--ijam-blue));
}

.shape {
  position: absolute;
  z-index: 2;
  display: block;
}

.shape.triangle {
  top: 22%;
  left: 18%;
  width: 0;
  height: 0;
  border-left: 23px solid transparent;
  border-right: 23px solid transparent;
  border-bottom: 40px solid var(--ijam-red);
}

.shape.circle {
  top: 35%;
  right: 20%;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: var(--ijam-yellow);
}

.shape.square {
  right: 39%;
  bottom: 24%;
  width: 54px;
  height: 54px;
  background: var(--ijam-blue);
}

.trust-band {
  margin-bottom: clamp(3rem, 7vw, 6rem);
  padding: clamp(1.5rem, 4vw, 3rem);
  border-left: 4px solid var(--ijam-red);
  background: var(--ijam-soft);
}

.trust-band h2,
.split-section h2,
.section-block h2 {
  margin: 0;
  color: var(--ijam-black);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  padding: clamp(3rem, 7vw, 6rem) 0;
}

.dark-panel,
.why-panel {
  width: min(1160px, calc(100% - 2rem));
  margin-top: clamp(3rem, 6vw, 5rem);
  margin-bottom: clamp(3rem, 6vw, 5rem);
  padding: clamp(2rem, 5vw, 4rem);
  border: 1px solid var(--ijam-line);
  border-radius: 1.5rem;
  background: #fff;
}

.dark-panel h2,
.dark-panel p,
.why-panel h2,
.why-panel p {
  color: var(--ijam-black);
}

.dark-panel p:not(.eyebrow),
.why-panel p:not(.eyebrow) {
  color: var(--ijam-muted);
}

.section-block {
  padding: clamp(3rem, 7vw, 6rem) 0;
}

.section-block > h2,
.section-block > p {
  max-width: 760px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.js .shuffle-grid {
  opacity: 0;
}

.js .shuffle-grid.is-shuffled {
  opacity: 1;
}

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

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

.info-card,
.person-card {
  position: relative;
  min-height: 220px;
  padding: 1.5rem;
  border: 1px solid var(--ijam-line);
  border-radius: 1.2rem;
  background: #fff;
  box-shadow: 0 16px 44px rgb(11 13 16 / 4%);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.info-card:hover,
.person-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgb(11 13 16 / 8%);
}

.info-card::before {
  content: "";
  display: block;
  width: 2.6rem;
  height: 0.25rem;
  margin-bottom: 1.5rem;
  border-radius: 999px;
  background: var(--ijam-blue);
}

.accent-red::before { background: var(--ijam-red); }
.accent-yellow::before { background: var(--ijam-yellow); }
.accent-blue::before { background: var(--ijam-blue); }
.accent-black::before { background: var(--ijam-black); }

.info-card h2,
.info-card h3,
.person-card h2 {
  margin: 0 0 0.75rem;
  color: var(--ijam-black);
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.2;
}

.person-accent {
  display: block;
  width: 2.6rem;
  height: 0.25rem;
  margin-bottom: 1.5rem;
  border-radius: 999px;
}

.person-accent.accent-red {
  background: var(--ijam-red);
}

.person-accent.accent-yellow {
  background: var(--ijam-yellow);
}

.person-accent.accent-blue {
  background: var(--ijam-blue);
}

.info-card h2 a::before,
.info-card h3 a::before,
.person-card h2 a::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}

.info-card p,
.person-card p {
  margin: 0;
  color: var(--ijam-muted);
}

.person-card {
  min-height: 250px;
  overflow: visible;
  display: flex;
  flex-direction: column;
}

.person-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--ijam-line);
  color: var(--ijam-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.person-card-body p {
  margin: 0;
}

.person-card-body p + p {
  margin-top: 1rem;
}

.linkedin-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: fit-content;
  margin-top: auto;
  padding-top: 1.25rem;
  color: var(--ijam-blue);
  font-size: 0.9rem;
  font-weight: 800;
}

.linkedin-link:hover {
  color: var(--ijam-black);
}

.page-shell {
  padding: clamp(3rem, 7vw, 6rem) 0;
}

.page-hero.compact {
  max-width: 1040px;
  margin-bottom: 2rem;
}

.page-hero.compact h1 {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  overflow-wrap: anywhere;
}

.content-panel {
  max-width: 860px;
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid var(--ijam-line);
  border-radius: 1.3rem;
  background: #fff;
}

.standalone-panel {
  margin-inline: auto;
}

.prose-content {
  color: var(--ijam-muted);
  font-size: 1.05rem;
}

.prose-content h2,
.prose-content h3 {
  color: var(--ijam-black);
  line-height: 1.15;
}

.prose-content h2 {
  margin-top: 2rem;
  color: var(--ijam-blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.prose-content h3 {
  margin-top: 1.5rem;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.prose-content p,
.prose-content ul,
.prose-content ol {
  margin-bottom: 1.25rem;
}

.prose-content p:last-child,
.prose-content ul:last-child,
.prose-content ol:last-child {
  margin-bottom: 0;
}

.prose-content li {
  margin-bottom: 0.5rem;
}

.prose-content a {
  color: var(--ijam-blue);
  font-weight: 700;
}

.prose-content a:hover {
  text-decoration: underline;
}

.prose-content ul {
  padding-left: 1.25rem;
  list-style-type: disc;
}

.prose-content ol {
  padding-left: 1.25rem;
  list-style-type: decimal;
}

.site-footer {
  margin-top: clamp(3rem, 7vw, 6rem);
  background: var(--ijam-black);
  color: #fff;
}

.footer-inner,
.footer-bottom {
  width: min(1160px, calc(100% - 2rem));
  margin-inline: auto;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.8fr);
  gap: 2rem;
  padding: 3rem 0;
}

.footer-brand {
  color: #fff;
  font-size: 2rem;
  font-weight: 900;
}

.site-footer p,
.registered {
  color: rgb(255 255 255 / 70%);
  margin-top: 1rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem 1rem;
}

.footer-links a,
.footer-bottom a {
  color: rgb(255 255 255 / 78%);
  transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-bottom a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 0;
  border-top: 1px solid rgb(255 255 255 / 12%);
  color: rgb(255 255 255 / 62%);
  font-size: 0.9rem;
}

@media (width <= 980px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .nav-toggle {
    display: inline-flex;
    grid-column: 2;
  }

  .site-nav {
    display: flex;
    grid-column: 1 / -1;
    justify-self: stretch;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.7rem;
    border-top: 1px solid var(--ijam-line);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding: 0;
    visibility: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, padding 0.3s ease, visibility 0.3s;
  }

  .site-nav.is-open {
    max-height: 400px;
    opacity: 1;
    visibility: visible;
    padding: 1rem 0 0.25rem;
  }

  .home-hero,
  .split-section,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 320px;
  }

  .card-grid,
  .two-cols,
  .section-grid,
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (width <= 640px) {
  .site-header {
    gap: 0.75rem;
    padding: 0.8rem 1rem;
  }

  .brand img {
    height: 2.8rem;
  }

  .lang-switch {
    font-size: 0.72rem;
  }

  .home-hero {
    padding-top: 3rem;
  }

  .hero-actions,
  .footer-bottom {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .card-grid,
  .two-cols,
  .section-grid,
  .team-grid,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .info-card,
  .person-card {
    min-height: auto;
  }
}

.reveal-up {
  opacity: 1;
  transform: none;
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.js .reveal-up {
  opacity: 1;
  transform: none;
}

.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.brand-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--ijam-line);
  border-radius: 1.5rem;
  background: #fff;
  box-shadow: 0 16px 44px rgb(11 13 16 / 4%);
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 2rem;
  overflow: hidden;
  border: 1px solid var(--ijam-line);
  border-radius: 1.4rem;
  background: var(--ijam-line);
}

.signal-item {
  padding: clamp(1.25rem, 3vw, 2rem);
  background: #fff;
}

.signal-item strong {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--ijam-black);
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
}

.signal-item span {
  color: var(--ijam-muted);
}

.page-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.sticky-aside {
  position: sticky;
  top: 7rem;
}

.process-stack,
.designed-stack {
  display: grid;
  gap: 1rem;
}

.process-card,
.designed-card {
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid var(--ijam-line);
  border-radius: 1.25rem;
  background: #fff;
  box-shadow: 0 14px 42px rgb(11 13 16 / 4%);
}

.process-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem;
}

.step-number {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  background: var(--ijam-black);
  color: #fff;
  font-weight: 900;
}

.service-marker {
  position: relative;
  align-self: start;
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  color: var(--ijam-black);
  font-size: 0.78rem;
  font-weight: 900;
}

.service-marker::after {
  content: attr(data-code);
}

.marker-circle {
  border-radius: 999px;
}

.marker-square {
  border-radius: 0.35rem;
}

.marker-triangle {
  position: relative;
  width: 0;
  height: 0;
  border-right: 1.6rem solid transparent;
  border-bottom: 3rem solid var(--ijam-red);
  border-left: 1.6rem solid transparent;
  color: #fff;
  font-size: 0;
}

.marker-triangle::after {
  position: absolute;
  top: 1.15rem;
  left: 50%;
  font-size: 0.72rem;
  font-weight: 900;
  transform: translateX(-50%);
}

.marker-red {
  background: var(--ijam-red);
}

.marker-blue {
  background: var(--ijam-blue);
  color: #fff;
}

.marker-yellow {
  background: var(--ijam-yellow);
}

.marker-triangle.marker-red {
  background: transparent;
}

.process-card h2,
.designed-card h2,
.designed-card h3 {
  margin: 0 0 0.65rem;
  color: var(--ijam-blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.15;
  text-transform: uppercase;
}

.process-card p,
.designed-card p {
  margin: 0;
  color: var(--ijam-muted);
}

.outcome-panel {
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid var(--ijam-line);
  border-radius: 1.5rem;
  background: #fff;
  color: var(--ijam-black);
}

.outcome-panel h2 {
  color: var(--ijam-black);
}

.outcome-panel p.eyebrow {
  color: var(--ijam-blue);
}

.outcome-panel p,
.outcome-panel li {
  color: var(--ijam-muted);
}

.outcome-panel ul {
  margin: 1.25rem 0 0;
  padding-left: 1.2rem;
}

.label-card {
  min-height: 260px;
}

.label-card.xsgrant-card::before { background: var(--ijam-red); }
.label-card.opsteady-card::before { background: var(--ijam-yellow); }

.label-logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1rem;
  color: var(--ijam-black);
  font-size: clamp(1.6rem, 2vw, 2rem);
  font-weight: 900;
  letter-spacing: -0.04em;
}

.label-summary {
  margin-bottom: 1rem;
  color: var(--ijam-black) !important;
  font-weight: 700;
}

.label-points {
  margin: 1.25rem 0 0;
  padding-left: 1.2rem;
  list-style-type: disc;
  list-style-position: outside;
  color: var(--ijam-muted);
}

.label-points li {
  margin-bottom: 0.5rem;
}

.label-points li + li {
  margin-top: 0.65rem;
}

.labels-directory {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.label-link-card {
  display: block;
  padding: clamp(1.5rem, 3vw, 2rem);
  border: 1px solid var(--ijam-line);
  border-radius: 1.2rem;
  background: #fff;
  box-shadow: 0 16px 44px rgb(11 13 16 / 4%);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.label-link-card:hover {
  transform: translateY(-4px);
  border-color: rgb(23 105 214 / 20%);
  box-shadow: 0 20px 48px rgb(11 13 16 / 8%);
}

.label-link-eyebrow {
  display: inline-block;
  margin-bottom: 0.85rem;
  color: var(--ijam-blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.label-link-card h3 {
  margin: 0;
  color: var(--ijam-black);
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1.15;
}

.label-link-card p {
  margin: 0.85rem 0 1.4rem;
  color: var(--ijam-muted);
}

.label-link-action {
  color: var(--ijam-black);
  font-weight: 800;
}

.team-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.5fr);
  gap: 1rem;
  align-items: stretch;
}

.team-proof {
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border: 1px solid var(--ijam-line);
  border-radius: 1.25rem;
  background: #fff;
  color: var(--ijam-black);
}

.team-proof strong {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--ijam-blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.15;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.team-proof span {
  color: var(--ijam-muted);
}

.career-layout .prose-content h2 {
  margin-bottom: 1.5rem;
}

.career-layout .section-grid {
  grid-template-columns: 1fr;
  margin-top: 0;
}

.career-layout .info-card {
  min-height: 0;
}

.value-pill {
  padding: 1rem;
  border: 1px solid var(--ijam-line);
  border-radius: 1rem;
  background: #fff;
  color: var(--ijam-black);
  font-weight: 800;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 760px);
  gap: 1rem;
  align-items: start;
  max-width: 980px;
  justify-content: center;
  margin-inline: auto;
}

.contact-card {
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid var(--ijam-line);
  border-radius: 1.6rem;
  background: #fff;
  color: var(--ijam-black);
  box-shadow: 0 20px 60px rgb(11 13 16 / 4%);
  text-align: center;
}

.contact-card a {
  color: var(--ijam-black);
  font-weight: 900;
}

.contact-card p:not(.eyebrow) {
  color: var(--ijam-muted);
  max-width: 42rem;
  margin-inline: auto;
  text-wrap: balance;
}

.contact-card .button {
  margin-top: 1.5rem;
  background: var(--ijam-black);
  color: #fff;
}

.contact-detail {
  display: grid;
  gap: 1rem;
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid var(--ijam-line);
  border-radius: 1.6rem;
  background: rgb(255 255 255 / 64%);
}

.contact-detail strong {
  display: block;
  color: var(--ijam-black);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-detail span,
.contact-detail a {
  color: var(--ijam-muted);
  font-weight: 700;
}

@media (width <= 980px) {
  .signal-grid,
  .page-layout,
  .team-intro-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .sticky-aside {
    position: static;
  }
}

@media (width <= 640px) {
  .process-card {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal-up {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.blue-dot {
  color: var(--ijam-blue);
}

.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150%;
  height: 150%;
  background:
    radial-gradient(circle at 30% 30%, rgb(217 35 46 / 8%), transparent 40%),
    radial-gradient(circle at 70% 30%, rgb(244 190 35 / 8%), transparent 40%),
    radial-gradient(circle at 50% 70%, rgb(23 105 214 / 8%), transparent 50%),
    radial-gradient(circle at center, rgb(255 255 255 / 100%) 0%, rgb(255 255 255 / 0%) 60%);
  z-index: 0;
  pointer-events: none;
}

.impact-section {
  width: min(1300px, calc(100% - 2rem));
  margin: clamp(4rem, 8vw, 7rem) auto;
  display: grid;
  grid-template-columns: minmax(300px, 0.35fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 3rem);
  align-items: start;
}

.impact-intro h2 {
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--ijam-black);
  margin-top: 1rem;
}

.impact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
  gap: 1.5rem;
}

.impact-card {
  border-radius: 1.25rem;
  padding: 2rem 1.5rem;
  box-shadow: 0 10px 40px rgb(11 13 16 / 3%);
  border: 1px solid var(--ijam-line);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}

.impact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgb(11 13 16 / 8%);
}

.impact-card.accent-red {
  background: var(--ijam-red);
  border-color: var(--ijam-red);
}

.impact-card.accent-blue {
  background: var(--ijam-blue);
  border-color: var(--ijam-blue);
}

.impact-card.accent-yellow {
  background: var(--ijam-yellow);
  border-color: var(--ijam-yellow);
}

.impact-card.accent-black {
  background: var(--ijam-black);
  border-color: var(--ijam-black);
}

.impact-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.impact-card p {
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

.impact-card.accent-red h3,
.impact-card.accent-blue h3,
.impact-card.accent-black h3,
.impact-card.accent-red p,
.impact-card.accent-blue p,
.impact-card.accent-black p {
  color: rgb(255 255 255 / 96%);
}

.impact-card.accent-yellow h3,
.impact-card.accent-yellow p {
  color: var(--ijam-black);
}

.why-panel {
  background: var(--ijam-black);
  color: #fff;
  border: none;
  border-radius: 2rem;
  padding: clamp(3rem, 7vw, 5rem);
}

.why-panel h2 {
  color: #fff;
}

.why-panel p.eyebrow {
  color: rgb(255 255 255 / 60%);
}

.why-panel p:not(.eyebrow) {
  color: rgb(255 255 255 / 80%);
}

.why-panel .button.secondary {
  border-color: rgb(255 255 255 / 20%);
  color: #fff;
}

.labels-teaser .labels-intro h2 {
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-top: 0.5rem;
}

.labels-teaser .labels-intro {
  margin-bottom: 2.5rem;
}

.labels-teaser .labels-intro p {
  margin-top: 1rem;
}

.block-action {
  margin-top: 1.5rem;
}

@media (width <= 1024px) {
  .impact-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .impact-section {
    grid-template-columns: 1fr;
  }
}

@media (width <= 640px) {
  .impact-cards {
    grid-template-columns: 1fr;
  }
}
