:root {
  color-scheme: light;
  --brick: #d12e24;
  --cream: #f5e1d1;
  --shadow: rgba(209, 46, 36, 0.14);
  --shadow-strong: rgba(209, 46, 36, 0.22);
  --shadow-subtle: rgba(209, 46, 36, 0.08);
  --divider: rgba(209, 46, 36, 0.15);
  --red: #d12e24;
  --ember: #d12e24;
  --bg: #050505;
  --bg-2: #0a0a0a;
  --bg-3: #121210;
  --ink: #f4f0e8;
  --grey: #8b8b8b;
  --acid: #d7ff38;
  --line: rgba(244, 240, 232, 0.12);
  --font-display: "Archivo", system-ui, sans-serif;
  --font-mono: "Space Mono", monospace;
  --pad: clamp(18px, 3.5vw, 63px);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  background: var(--cream);
}
html.lenis,
html.lenis body {
  height: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}
body {
  background: var(--cream);
  color: var(--brick);
  font-family: var(--font-display);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.is-locked {
  overflow: hidden;
  height: 100vh;
}
@media (pointer: fine) {
  body,
  body a,
  body button,
  body [data-cursor] {
    cursor:
      url(/assets/hand-cursor.svg) 20 3,
      auto;
  }
}
img,
video {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}
::selection {
  background: var(--brick);
  color: var(--cream);
}
h1,
h2,
h3 {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 0.9;
  font-stretch: 72%;
}
.mono {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.mono.dim {
  color: var(--grey);
}
.mono.acid {
  color: var(--acid);
}
.noise {
  position: fixed;
  top: -50%;
  right: -50%;
  bottom: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  pointer-events: none;
  z-index: 9000;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: noiseShift 0.45s steps(4) infinite;
}
.noise:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent 0 3px,
    rgba(0, 0, 0, 0.25) 3px 4px
  );
  opacity: 0.15;
}
@keyframes noiseShift {
  0% {
    transform: translate(0);
  }
  25% {
    transform: translate(-2%, 1%);
  }
  50% {
    transform: translate(1%, -2%);
  }
  75% {
    transform: translate(-1%, 2%);
  }
  to {
    transform: translate(2%, -1%);
  }
}
.ph-panel {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: var(--bg-3);
}
.ph-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ph-fallback {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 16px;
  background:
    radial-gradient(
      120% 80% at 15% 0%,
      rgba(209, 46, 36, 0.06),
      transparent 50%
    ),
    linear-gradient(155deg, #161614, #0a0a09 55%, #11100d);
}
.ph-fallback:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image:
    linear-gradient(rgba(244, 240, 232, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 240, 232, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
}
.ph-fallback:after {
  content: "";
  position: absolute;
  width: 55%;
  aspect-ratio: 1;
  right: -12%;
  top: -12%;
  border: 1px solid rgba(244, 240, 232, 0.12);
  border-radius: 50%;
}
.ph-fallback span {
  position: relative;
}
.ph-fallback .ph-initials {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-stretch: 70%;
  font-size: clamp(60px, 8vw, 120px);
  color: #f4f0e81a;
}
.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 10001;
  border-radius: 50%;
}
.cursor-dot {
  width: 5px;
  height: 5px;
  background: var(--ink);
}
.cursor-ring {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(244, 240, 232, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    width 0.25s,
    height 0.25s,
    background 0.25s,
    border-color 0.25s;
}
.cursor-ring .cursor-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  color: #000;
  opacity: 0;
  transition: opacity 0.15s;
}
.cursor-ring.is-hover {
  width: 60px;
  height: 60px;
  border-color: var(--ink);
}
.cursor-ring.has-label {
  width: 76px;
  height: 76px;
  background: var(--brick);
  border-color: var(--brick);
}
.cursor-ring.has-label .cursor-label {
  opacity: 1;
}
@media (pointer: coarse) {
  .cursor-dot,
  .cursor-ring {
    display: none;
  }
}
html,
body,
#root,
main {
  overflow-x: clip !important;
  max-width: 100% !important;
}
.intro-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10000;
  background: #030303;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
.intro-overlay .wordmark {
  font-size: clamp(38.72px, 7.92vw, 105.6px);
  font-weight: 900;
  font-stretch: 68%;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 0.9;
  text-align: center;
}
.intro-overlay .wordmark .tone-b {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--ink);
}
.intro-overlay .wordmark .lab {
  display: block;
  font-size: 0.22em;
  letter-spacing: 0.5em;
  font-stretch: 100%;
  font-weight: 400;
  color: var(--grey);
  margin-top: 14px;
}
.intro-overlay .enter-btn {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 1px solid var(--line);
  padding: 16px 28px;
  opacity: 0;
  transition:
    border-color 0.3s,
    color 0.3s;
  position: relative;
}
.intro-overlay .enter-btn:hover {
  border-color: var(--acid);
  color: var(--acid);
}
.intro-overlay .corner {
  position: absolute;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey);
}
.intro-overlay .corner.tl {
  top: 22px;
  left: 22px;
}
.intro-overlay .corner.tr {
  top: 22px;
  right: 22px;
}
.intro-overlay .corner.bl {
  bottom: 22px;
  left: 22px;
}
.intro-overlay .corner.br {
  bottom: 22px;
  right: 22px;
}
.hero-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 800;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: clamp(0.88rem, 1.76vw, 1.76rem);
  color: var(--brick);
}
.hero-wordmark {
  color: var(--brick);
  font-weight: 900;
  font-stretch: 68%;
  font-size: clamp(17.6px, 1.58vw, 22.88px);
  text-transform: uppercase;
  letter-spacing: -0.04em;
}
.hero-wordmark .wordmark-sub {
  font-size: 0.45em;
  font-weight: 700;
  letter-spacing: 0.18em;
  font-stretch: 100%;
  vertical-align: middle;
  margin-left: 6px;
}
.hero-icons {
  display: flex;
  gap: clamp(0.7rem, 1.23vw, 1.14rem);
  align-items: center;
  color: var(--brick);
}
.hero-icons svg {
  width: 26px;
  height: 26px;
  display: block;
}
.hero-icons a,
.hero-icons button {
  color: var(--brick);
  transition:
    opacity 0.25s,
    transform 0.25s;
}
.hero-icons a:hover,
.hero-icons button:hover {
  opacity: 0.7;
  transform: translateY(-1px);
}
.menu-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9700;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.menu-drawer nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.menu-drawer a {
  font-size: clamp(29.92px, 5.28vw, 63.36px);
  font-weight: 900;
  font-stretch: 72%;
  text-transform: uppercase;
  color: var(--brick);
  transition: opacity 0.25s;
}
.menu-drawer a:hover {
  opacity: 0.6;
}
.menu-drawer a sup {
  font-size: 0.3em;
  margin-right: 12px;
  vertical-align: super;
}
.menu-drawer .close-menu {
  position: absolute;
  top: 26px;
  right: 26px;
  color: var(--brick);
  font-size: 12px;
  letter-spacing: 0.2em;
}
.menu-drawer .drawer-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-top: 16px;
}
.menu-drawer .drawer-meta a {
  font-size: 12px;
  font-weight: 400;
  font-stretch: 100%;
  color: var(--brick);
  opacity: 0.5;
}
.about-hero {
  position: relative;
  min-height: 100vh;
  background: var(--cream);
  color: var(--brick);
  overflow: hidden;
}
.hero-inner {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 6rem 2rem 2rem;
  width: 100%;
}
.hero-headline-wrap {
  position: relative;
  width: fit-content;
  margin: 0 auto;
  overflow: hidden;
}
.hero-title {
  position: relative;
  z-index: 2;
  line-height: 0.85;
  letter-spacing: -0.05em;
  font-weight: 900;
  font-stretch: 75%;
  text-transform: uppercase;
  color: var(--brick);
  width: max-content;
  max-width: 100%;
  white-space: nowrap;
}
.hero-title-line {
  display: block;
  overflow: hidden;
  padding-top: 0.05em;
}
.hero-title-line > span {
  display: inline-block;
}
.hero-title-line.l1 {
  font-size: clamp(3.87rem, 13.2vw, 16.28rem);
}
.hero-title-line.l2 {
  font-size: clamp(2.55rem, 8.49vw, 10.56rem);
}
.hero-title-line.dynamic {
  overflow: visible;
  height: 1em;
  line-height: 0.92;
}
.hero-title-line.dynamic > span {
  will-change: opacity, transform, filter;
}
.hero-sticker {
  position: absolute;
  pointer-events: none;
  z-index: 10;
  will-change: transform;
  filter: drop-shadow(6px 8px 0 var(--shadow));
}
.megaphone-sticker {
  width: clamp(123.2px, 13.2vw, 264px);
  rotate: -10deg;
}
.paper-plane-sticker {
  width: clamp(132px, 14.08vw, 281.6px);
  transform: scaleX(-1) rotate(8deg);
}
.hero-copy {
  position: relative;
  z-index: 2;
  max-width: clamp(598.4px, 68.64vw, 924px);
  margin-top: 4rem;
  margin-bottom: 1rem;
  color: var(--brick);
  font-size: clamp(0.69rem, 0.88vw, 0.99rem);
  line-height: 1.45;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.055em;
  font-stretch: 92%;
  text-align: center;
  opacity: 0.78;
  padding: 0 clamp(7.04px, 1.76vw, 28.16px);
}
.hero-cta {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: clamp(10.56px, 1.76vw, 19.36px);
  margin-top: clamp(21.12px, 3.5vh, 38.72px);
  flex-wrap: wrap;
}
.hero-cta__btn {
  font-family: var(--font-mono);
  font-size: clamp(8.8px, 0.75vw, 10.56px);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: clamp(12.32px, 2vh, 19.36px) clamp(21.12px, 3.08vw, 42.24px);
  display: inline-block;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    opacity 0.3s ease;
  will-change: transform;
}
.hero-cta__btn:hover {
  transform: translateY(-3px) rotate(-0.5deg);
}
.hero-cta__btn--primary {
  background: var(--brick);
  color: var(--cream);
  box-shadow: 4px 6px 0 var(--shadow);
}
.hero-cta__btn--primary:hover {
  box-shadow: 6px 8px 0 var(--shadow-strong);
}
.hero-cta__btn--secondary {
  background: transparent;
  color: var(--brick);
  border: 2px solid var(--brick);
}
.hero-cta__btn--secondary:hover {
  opacity: 0.7;
  box-shadow: 4px 6px 0 var(--shadow-subtle);
}
@media (max-width: 900px) {
  .megaphone-sticker {
    width: clamp(88px, 11.44vw, 176px);
  }
  .paper-plane-sticker {
    width: clamp(96.8px, 12.32vw, 202.4px);
  }
}
@media (max-width: 600px) {
  .hero-inner {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }
  .hero-title-line.l1 {
    font-size: 11.88vw;
  }
  .hero-title-line.l2 {
    font-size: 7.74vw;
  }
  .megaphone-sticker {
    width: clamp(63.36px, 17.6vw, 114.4px);
    transform: translate(-30%, -20%) rotate(-10deg);
  }
  .paper-plane-sticker {
    width: clamp(70.4px, 19.36vw, 127.6px);
    transform: translate(26%, 24%) scaleX(-1) rotate(-8deg);
  }
  .hero-copy {
    max-width: 92vw;
    line-height: 1.38;
    font-size: clamp(0.62rem, 2.82vw, 0.77rem);
  }
}
.njn {
  background: var(--cream);
  color: var(--brick);
  overflow: visible;
  padding: clamp(24px, 4vh, 48px) var(--pad) clamp(16px, 3vh, 32px);
  min-height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: clamp(24px, 4vh, 48px);
}
.njn-text {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
}
.njn-topline {
  font-weight: 800;
  font-stretch: 88%;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: clamp(0.62rem, 0.88vw, 0.86rem);
  max-width: 56ch;
}
.njn-headline {
  font-size: clamp(2.29rem, 7.22vw, 7.48rem);
  line-height: 0.88;
  letter-spacing: -0.035em;
  font-weight: 900;
  font-stretch: 75%;
  color: var(--brick);
  overflow: visible;
  padding-top: 0.06em;
  padding-left: 0.05em;
  padding-right: 0.05em;
  margin-top: clamp(12.32px, 2vh, 22.88px);
  white-space: nowrap;
}
.njn-headline > span {
  display: block;
  overflow: hidden;
  padding-bottom: 0.08em;
}
.njn-support {
  margin-top: clamp(10px, 1.5vh, 18px);
  display: flex;
  flex-direction: column;
  gap: clamp(6px, 1vh, 12px);
  align-items: center;
}
.njn-support .q {
  font-weight: 800;
  font-stretch: 86%;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: clamp(0.79rem, 1.32vw, 1.23rem);
  white-space: nowrap;
  line-height: 1.2;
}
.njn-support .job {
  font-family: var(--font-mono);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: clamp(0.81rem, 1.32vw, 1.28rem);
  transform: rotate(-1.4deg);
}
.njn-support .luck {
  font-size: clamp(0.63rem, 0.84vw, 0.81rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  opacity: 0.7;
  margin-top: 4px;
}
.njn-illustration {
  width: 100%;
  max-width: 1320px;
  margin: clamp(16px, 3vh, 32px) auto 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.njn-illustration img {
  width: 100%;
  max-height: 54vh;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}
.njn-illustration-fallback {
  width: 100%;
  aspect-ratio: 1585 / 794;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed var(--brick);
  border-radius: 6px;
}
.njn-illustration-fallback .mono {
  color: var(--brick);
  letter-spacing: 0.3em;
}
@media (max-width: 700px) {
  .njn-support .q {
    white-space: normal;
  }
  .njn-headline {
    font-size: 7.39vw;
    white-space: normal;
  }
}
@media (max-width: 600px) {
  .njn-headline {
    font-size: 7.39vw;
  }
}
.bd {
  position: relative;
  height: 1050vh;
  background: var(--cream);
  margin-top: -2px;
}
.bd-scene {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  overflow: visible;
  background: var(--cream);
}
.bd-tagline {
  position: absolute;
  top: clamp(24.64px, 4.5vh, 49.28px);
  left: 50%;
  transform: translate(-50%);
  z-index: 20;
  white-space: nowrap;
  font-family: var(--font-mono);
  font-size: clamp(0.48rem, 0.7vw, 0.72rem);
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brick);
  opacity: 0;
}
.bd-cloud {
  position: absolute;
  pointer-events: none;
  will-change: transform;
  -webkit-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
}
.bd-cloud--far {
  z-index: 2;
}
.bd-cloud--mid {
  z-index: 3;
}
.bd-cloud--near-back {
  z-index: 4;
}
.bd-cloud--near-front {
  z-index: 9;
}
.bd-bomb {
  position: absolute;
  top: 0;
  width: clamp(140.8px, 14.08vw, 281.6px);
  z-index: 5;
  will-change: transform;
  pointer-events: none;
  -webkit-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  filter: none;
  transform-origin: 50% 28%;
}
.bd-bomb-trail {
  position: absolute;
  top: 0;
  width: clamp(140.8px, 14.08vw, 281.6px);
  pointer-events: none;
  z-index: 4;
  opacity: 0;
  filter: blur(6px) opacity(0.25);
  transform-origin: 50% 28%;
  will-change: transform, opacity;
}
.bd-scroll-prompt {
  position: absolute;
  bottom: clamp(21.12px, 4vh, 44px);
  left: 50%;
  transform: translate(-50%);
  z-index: 25;
  font-family: var(--font-mono);
  font-size: clamp(8.8px, 0.88vw, 11.44px);
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brick);
  pointer-events: none;
  text-align: center;
}
.bd-card {
  position: absolute;
  z-index: 6;
  width: clamp(211.2px, 26.4vw, 404.8px);
  aspect-ratio: 2 / 3;
  background: var(--cream);
  border: 2.5px solid var(--brick);
  border-radius: clamp(15.84px, 1.94vw, 26.4px);
  padding: clamp(21.12px, 2.82vw, 40.48px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  will-change: transform, opacity;
  transform-origin: 50% 0%;
  box-shadow: 8px 10px 0 var(--shadow);
}
.bd-card__label {
  font-size: clamp(0.84rem, 1.32vw, 1.32rem);
  font-weight: 900;
  font-stretch: 72%;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--brick);
  white-space: pre-line;
}
.bd-card__detail {
  font-size: clamp(0.63rem, 0.84vw, 0.81rem);
  font-weight: 800;
  font-stretch: 90%;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.5;
  color: var(--brick);
  opacity: 0.72;
  max-width: 26ch;
}
.bd-card:hover {
  box-shadow: 10px 12px 0 var(--shadow-strong);
}
.bd-card__illustration {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  padding: clamp(3.52px, 0.53vw, 7.04px) 0;
  position: relative;
  z-index: 2;
}
.bd-card__illustration-img {
  width: 110%;
  max-width: none;
  height: auto;
  display: block;
  pointer-events: none;
  -webkit-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
}
@media (max-width: 600px) {
  .bd-card__illustration-img {
    width: 100%;
  }
}
@media (max-width: 900px) {
  .bd {
    height: 800vh;
  }
}
@media (max-width: 600px) {
  .bd {
    height: 700vh;
  }
  .bd-bomb {
    width: 22vw;
  }
  .bd-card {
    width: clamp(228.8px, 70.4vw, 299.2px);
  }
}
.mic {
  background: var(--cream);
  color: var(--brick);
  overflow: visible;
  min-height: 100vh;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  padding: clamp(52.8px, 8vh, 96.8px) var(--pad) clamp(52.8px, 8vh, 88px);
}
.mic-copy {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(8.8px, 1.6vh, 15.84px);
}
.mic-topline {
  font-weight: 800;
  font-stretch: 88%;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: clamp(0.62rem, 0.88vw, 0.86rem);
}
.mic-headline {
  font-size: clamp(2.82rem, 7.74vw, 8.36rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
  font-weight: 900;
  font-stretch: 75%;
  text-transform: uppercase;
  color: var(--brick);
}
.mic-support {
  font-weight: 800;
  font-stretch: 88%;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: clamp(0.75rem, 1.23vw, 1.14rem);
  max-width: 40ch;
}
.mic-closing {
  font-size: clamp(0.58rem, 0.79vw, 0.75rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  opacity: 0.7;
  max-width: 60ch;
}
.mic-stage {
  position: relative;
  width: 100%;
  min-height: clamp(440px, 65vh, 704px);
  margin-top: clamp(21.12px, 3vh, 42.24px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}
.mic-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.mic-bg-row {
  position: absolute;
  white-space: nowrap;
  will-change: transform;
  pointer-events: none;
  line-height: 1;
}
.mic-bg-row span {
  font-size: clamp(3.96rem, 12.32vw, 14.96rem);
  font-weight: 900;
  font-stretch: 74%;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  line-height: 0.88;
  color: var(--brick);
  opacity: 0.22;
  display: block;
}
.mic-bg-row.top {
  top: 30%;
}
.mic-bg-row.bottom {
  top: 56%;
}
.mic-button-wrap {
  position: relative;
  z-index: 4;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.mic-pulse {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.6);
  width: clamp(176px, 21.12vw, 352px);
  height: clamp(176px, 21.12vw, 352px);
  border-radius: 50%;
  background: radial-gradient(circle, var(--brick) 0%, transparent 70%);
  opacity: 0;
  pointer-events: none;
  z-index: 2;
}
.mic-button {
  position: relative;
  width: clamp(246.4px, 29.92vw, 545.6px);
  aspect-ratio: 269 / 324;
  height: auto;
  background: none;
  border: 0;
  padding: 0;
  pointer-events: auto;
  cursor: pointer;
  will-change: transform;
  transform-origin: center bottom;
  -webkit-tap-highlight-color: transparent;
}
.mic-button:focus-visible {
  outline: 2.5px solid var(--brick);
  outline-offset: 8px;
  border-radius: 20px;
}
.mic-btn-art {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  user-select: none;
}
.mic-btn-art.open {
  opacity: 1;
}
.mic-btn-art.pressed {
  opacity: 0;
}
.mic-shadow {
  margin-top: clamp(-12.32px, -1.32vw, -7.04px);
  width: clamp(176px, 24.64vw, 440px);
  height: clamp(17.6px, 2.64vw, 38.72px);
  border-radius: 50%;
  background: radial-gradient(
    ellipse at center,
    var(--shadow-strong),
    transparent 68%
  );
  transform-origin: center;
  will-change: transform, opacity;
}
.mic-prompt {
  font-family: var(--font-mono);
  font-size: clamp(7.92px, 0.79vw, 10.56px);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brick);
  opacity: 0.7;
  margin-top: 18px;
  will-change: transform, color;
  animation: micPromptPulse 2s ease-in-out infinite;
}
@keyframes micPromptPulse {
  0%,
  to {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 0.95;
    transform: scale(1.02);
  }
}
@media (max-width: 600px) {
  .mic-bg-row span {
    font-size: 17.6vw;
  }
  .mic-bg-row.top {
    top: 28%;
  }
  .mic-bg-row.bottom {
    top: 58%;
  }
  .mic-button {
    width: 72vw;
  }
  .mic-shadow {
    width: 62vw;
  }
}
.sec-marker {
  display: flex;
  align-items: baseline;
  gap: 18px;
}
.sec-marker .num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--brick);
  letter-spacing: 0.2em;
}
.sec-h {
  font-size: clamp(35.2px, 6.6vw, 96.8px);
  margin-top: 16px;
}
.sec-h .line {
  display: block;
  overflow: hidden;
}
.sec-h .inner {
  display: inline-block;
}
.impact-services {
  position: relative;
  z-index: 5;
}
.is-red-block {
  background: var(--brick);
  color: var(--cream);
  padding: clamp(52.8px, 10vh, 123.2px) var(--pad) clamp(88px, 16vh, 176px);
}
.is-statement {
  text-align: center;
  padding-bottom: clamp(52.8px, 10vh, 105.6px);
}
.is-label {
  font-size: clamp(3.34rem, 9.68vw, 10.56rem);
  font-weight: 900;
  font-stretch: 72%;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  line-height: 0.85;
  color: var(--cream);
}
.is-tagline {
  margin-top: clamp(8.8px, 1.5vh, 17.6px);
  font-family: var(--font-mono);
  font-size: clamp(8.8px, 0.79vw, 10.56px);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.65;
}
.is-intro {
  text-align: center;
  max-width: 820px;
  margin: 0 auto clamp(52.8px, 10vh, 105.6px);
}
.is-heading {
  font-size: clamp(1.76rem, 4.4vw, 3.96rem);
  font-weight: 900;
  font-stretch: 72%;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 0.92;
  color: var(--cream);
}
.is-subhead {
  margin-top: clamp(14.08px, 2.5vh, 24.64px);
  font-size: clamp(0.69rem, 0.88vw, 0.88rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.55;
  color: var(--cream);
  opacity: 0.6;
  max-width: 60ch;
  margin-left: auto;
  margin-right: auto;
}
.is-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
}
.is-col {
  padding: clamp(24.64px, 3.08vw, 38.72px);
  border-left: 1px solid rgba(245, 225, 209, 0.2);
}
.is-col:first-child {
  border-left: none;
  padding-left: 0;
}
.is-col:last-child {
  padding-right: 0;
}
.is-col__num {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--cream);
  opacity: 0.45;
  display: block;
  margin-bottom: clamp(12.32px, 2vh, 21.12px);
}
.is-col__title {
  font-size: clamp(1.06rem, 1.76vw, 1.76rem);
  font-weight: 900;
  font-stretch: 72%;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--cream);
}
.mess-section {
  --brand-red: #d12e24;
  --brand-cream: #f5e1d1;
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  background: var(--brand-cream);
  color: var(--brand-red);
  overflow: hidden;
  font-family: var(--font-display), sans-serif;
}
.mess-inner {
  position: relative;
  width: min(100%, 1440px);
  min-height: 100vh;
  margin: 0 auto;
  padding: clamp(63.36px, 10vh, 105.6px) 72px clamp(28.16px, 5vh, 49.28px) 92px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.mess-heading {
  font-size: 64px;
  line-height: 62px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--brand-red);
  width: 585px;
  margin-bottom: clamp(31.68px, 5vh, 52.8px);
}
.mess-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.mess-row {
  height: 84px;
  display: flex;
  align-items: center;
  border-bottom: 2px solid rgba(209, 46, 36, 0.5);
}
.mess-row:nth-child(1) {
  width: 902px;
  max-width: calc(100% - 320px);
  border-top: 2px solid rgba(209, 46, 36, 0.5);
}
.mess-row:nth-child(2) {
  width: 902px;
  max-width: calc(100% - 320px);
}
.mess-row:nth-child(3) {
  width: 941px;
  max-width: calc(100% - 280px);
}
.mess-row:nth-child(4) {
  width: 977px;
  max-width: calc(100% - 240px);
}
.mess-row:nth-child(5) {
  width: 977px;
  max-width: calc(100% - 240px);
}
.mess-row-number {
  flex: 0 0 127px;
  padding-left: 20px;
  font-size: 16px;
  line-height: 28px;
  font-weight: 900;
  letter-spacing: 0.5px;
  color: var(--brand-red);
  opacity: 0.5;
  text-transform: uppercase;
}
.mess-row-text {
  font-size: 20px;
  line-height: 18px;
  font-weight: 900;
  letter-spacing: 0.5px;
  color: var(--brand-red);
  text-transform: uppercase;
  white-space: nowrap;
}
.mess-closer {
  font-size: 64px;
  line-height: 62px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--brand-red);
  width: 932px;
  max-width: 75vw;
  margin-top: clamp(24.64px, 4vh, 42.24px);
  white-space: nowrap;
}
.mess-illustration {
  position: absolute;
  width: 245px;
  height: auto;
  right: clamp(36.96px, 3.52vw, 63.36px);
  bottom: 24px;
  transform: none;
  pointer-events: none;
  z-index: 1;
  will-change: transform, opacity;
}
.mess-illustration__img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  -webkit-user-select: none;
  user-select: none;
  filter: drop-shadow(5px 6px 0 var(--shadow));
}
@media (max-width: 1400px) and (min-width: 901px) {
  .mess-inner {
    padding-left: clamp(35.2px, 4.4vw, 80.96px);
    padding-right: clamp(35.2px, 4.4vw, 63.36px);
  }
  .mess-heading,
  .mess-closer {
    font-size: clamp(42.24px, 3.96vw, 56.32px);
    line-height: 0.96;
    white-space: normal !important;
  }
  .mess-heading {
    width: auto;
    max-width: 585px;
  }
  .mess-closer {
    width: auto;
    max-width: 760px;
    margin-top: clamp(24.64px, 4vh, 42.24px);
  }
  .mess-row {
    width: clamp(484px, 48.4vw, 668.8px) !important;
    max-width: calc(100% - 280px) !important;
    height: auto !important;
    min-height: 68px;
    padding: 16px 0;
    border-top: 2px solid rgba(209, 46, 36, 0.5);
  }
  .mess-row-text {
    flex: 1;
    font-size: 18px;
    white-space: normal;
    padding-right: 20px;
  }
  .mess-illustration {
    right: clamp(17.6px, 2.64vw, 52.8px);
    width: clamp(158.4px, 15.84vw, 221.76px);
    bottom: 0;
    top: auto;
    transform: none;
  }
}
@media (max-width: 900px) {
  .mess-section {
    width: 100%;
    margin-left: 0;
  }
  .mess-inner {
    padding: 60px 24px 80px;
    min-height: auto;
  }
  .mess-heading {
    font-size: clamp(31.68px, 8.8vw, 45.76px);
    line-height: 0.96;
    width: 100%;
    margin-bottom: 40px;
  }
  .mess-list {
    width: 100%;
  }
  .mess-row {
    width: 100% !important;
    max-width: none !important;
    min-height: auto;
    padding: 20px 0;
    display: flex;
    align-items: baseline;
    height: auto !important;
    border-top: 2px solid rgba(209, 46, 36, 0.5);
  }
  .mess-row-number {
    flex: 0 0 45px;
    padding-left: 0;
    font-size: 14px;
    line-height: 1;
  }
  .mess-row-text {
    flex: 1;
    font-size: 16px;
    line-height: 1.35;
    white-space: normal;
  }
  .mess-closer {
    font-size: clamp(31.68px, 8.8vw, 45.76px);
    line-height: 0.96;
    width: 100% !important;
    max-width: none;
    margin-top: 40px;
    white-space: normal !important;
  }
  .mess-illustration {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    margin: 40px auto 0;
    width: 180px;
    height: auto;
  }
}
.proc {
  background: var(--cream);
  color: var(--brick);
  padding: clamp(88px, 16vh, 176px) var(--pad);
  border-top: 1px solid var(--divider);
}
.proc-heading {
  font-size: clamp(1.58rem, 3.96vw, 3.96rem);
  font-weight: 900;
  font-stretch: 72%;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 0.92;
  color: var(--brick);
  max-width: 22ch;
}
.proc-steps {
  position: relative;
  margin-top: clamp(42.24px, 8vh, 84.48px);
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-left: clamp(28.16px, 3.52vw, 49.28px);
}
.proc-line {
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  height: 100%;
  background: var(--divider);
}
.proc-line__fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--brick);
  transform-origin: top;
  transform: scaleY(0);
}
.proc-step {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: clamp(10.56px, 1.76vw, 21.12px);
  padding: clamp(21.12px, 3.5vh, 38.72px) 0;
  border-top: 1px solid var(--divider);
}
.proc-step:first-of-type {
  border-top: none;
}
.proc-step__num {
  font-family: var(--font-mono);
  font-size: clamp(19.36px, 2.46vw, 33.44px);
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--brick);
  opacity: 0.35;
  padding-top: 4px;
}
.proc-step__title {
  font-size: clamp(1.14rem, 2.11vw, 2.11rem);
  font-weight: 900;
  font-stretch: 72%;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--brick);
}
.proc-step__body {
  margin-top: clamp(7.04px, 1.2vh, 12.32px);
  font-size: clamp(0.72rem, 0.88vw, 0.88rem);
  font-weight: 600;
  line-height: 1.55;
  color: var(--brick);
  opacity: 0.6;
  max-width: 44ch;
}
.wk {
  background: var(--cream);
  color: var(--brick);
  padding: clamp(88px, 16vh, 176px) var(--pad);
  border-top: 1px solid var(--divider);
}
.wk-heading {
  font-size: clamp(1.76rem, 4.4vw, 4.4rem);
  font-weight: 900;
  font-stretch: 72%;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 0.92;
  color: var(--brick);
  max-width: 16ch;
}
.wk-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(17.6px, 2.64vw, 35.2px);
  margin-top: clamp(42.24px, 8vh, 84.48px);
  max-width: 1200px;
}
.wk-card {
  border: 2px solid var(--brick);
  border-radius: clamp(12.32px, 1.58vw, 21.12px);
  padding: clamp(24.64px, 3.08vw, 42.24px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: clamp(211.2px, 32vh, 334.4px);
  transition:
    transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.35s ease;
  will-change: transform;
}
.wk-card:hover {
  transform: translateY(-6px);
  box-shadow: 8px 10px 0 var(--shadow);
}
.wk-card__cat {
  font-family: var(--font-mono);
  font-size: clamp(8.8px, 0.79vw, 10.56px);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brick);
  opacity: 0.5;
}
.wk-card__outcome {
  margin-top: clamp(17.6px, 3vh, 31.68px);
  font-size: clamp(0.97rem, 1.41vw, 1.32rem);
  font-weight: 800;
  font-stretch: 82%;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.25;
  color: var(--brick);
  flex: 1;
}
.wk-card__cta {
  margin-top: clamp(17.6px, 3vh, 28.16px);
  font-family: var(--font-mono);
  font-size: clamp(8.8px, 0.79vw, 10.56px);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brick);
  transition: opacity 0.25s;
  display: inline-block;
}
.wk-card__cta:hover {
  opacity: 0.6;
}
@media (max-width: 820px) {
  .mess-section,
  .proc,
  .wk,
  .cta-final,
  .njn {
    min-height: auto;
  }
}
.bd-impact-cloud-wrap {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%);
  z-index: 11;
  width: 100vw;
  height: auto;
  opacity: 0;
  transform-origin: 50% 100%;
  will-change: transform, opacity;
}
.bd-impact-cloud-img {
  width: 100%;
  height: auto;
  display: block;
  pointer-events: none;
  -webkit-user-select: none;
  user-select: none;
}
.cta-final {
  background: var(--cream);
  color: var(--brick);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
  padding: clamp(100px, 10vh, 180px) var(--pad);
  border-top: 1px solid var(--divider);
  text-align: center;
}
.cta-final__heading {
  font-size: clamp(2.8rem, 8vw, 9rem);
  font-weight: 900;
  font-stretch: 72%;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  line-height: 0.88;
  color: var(--brick);
}
.cta-final__sub {
  margin-top: clamp(18px, 2.5vh, 32px);
  font-size: clamp(0.88rem, 1.2vw, 1.15rem);
  font-weight: 700;
  font-stretch: 90%;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.5;
  color: var(--brick);
  opacity: 0.65;
  max-width: 50ch;
  margin-left: auto;
  margin-right: auto;
}
.cta-final__buttons {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2vw, 24px);
  margin-top: clamp(36px, 6vh, 60px);
  flex-wrap: wrap;
}
.cta-final__btn {
  font-family: var(--font-mono);
  font-size: clamp(10px, 0.9vw, 12px);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: clamp(16px, 2.2vh, 24px) clamp(28px, 4vw, 52px);
  display: inline-block;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease,
    box-shadow 0.3s ease;
}
.cta-final__btn:hover {
  transform: translateY(-2px);
}
.cta-final__btn--primary {
  background: var(--brick);
  color: var(--cream);
}
.cta-final__btn--primary:hover {
  box-shadow: 6px 8px 0 var(--shadow-strong);
}
.cta-final__btn--secondary {
  background: transparent;
  color: var(--brick);
  border: 2px solid var(--brick);
}
.cta-final__btn--secondary:hover {
  opacity: 0.7;
}
.cta-final__meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: clamp(80px, 14vh, 180px);
  flex-wrap: wrap;
  gap: 24px;
  text-align: left;
}
.cta-final__email {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brick);
  display: block;
  transition: opacity 0.25s;
}
.cta-final__email:hover {
  opacity: 0.6;
}
.cta-final__location {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brick);
  opacity: 0.5;
  display: block;
  margin-top: 4px;
}
.cta-final__socials {
  display: flex;
  gap: 22px;
}
.cta-final__socials a {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brick);
  transition: opacity 0.25s;
}
.cta-final__socials a:hover {
  opacity: 0.6;
}
.cta-final__footer {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brick);
  opacity: 0.4;
}
.mic-sketch-callout {
  position: absolute;
  top: -85px;
  right: 68%;
  left: auto;
  z-index: 10;
  pointer-events: none;
  transform-origin: bottom right;
}
.mic-clickme-img {
  width: clamp(290px, 29vw, 380px);
  height: auto;
  display: block;
}
@keyframes sketchPop {
  0% {
    transform: scale(0) rotate(-25deg);
    opacity: 0;
  }
  50% {
    transform: scale(1.25) rotate(7deg);
    opacity: 1;
  }
  70% {
    transform: scale(0.88) rotate(-4deg);
  }
  85% {
    transform: scale(1.06) rotate(2deg);
  }
  to {
    transform: scale(1) rotate(0);
    opacity: 1;
  }
}
@keyframes sketchFloat {
  0% {
    transform: translate(0) rotate(0) scale(1);
  }
  to {
    transform: translate(-10px, -12px) rotate(4deg) scale(1.04);
  }
}
@media (max-width: 768px) {
  .mic-sketch-callout {
    top: -65px !important;
    left: 50% !important;
    right: auto !important;
    margin-left: -95px !important;
    width: auto !important;
    display: block !important;
  }
  .mic-clickme-img {
    width: clamp(110px, 32vw, 145px) !important;
  }
}
@media (max-width: 820px) {
  .mess-inner {
    padding: 0 clamp(16px, 4vw, 24px) !important;
  }
  .mess-fold {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    min-height: 100vh !important;
    padding: clamp(60px, 10vh, 100px) 0 !important;
    width: 100% !important;
  }
  .mess-fold--1 {
    gap: 20px !important;
  }
  .mess-fold--2 {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    padding: clamp(30px, 5vh, 60px) 0 !important;
    min-height: 100vh !important;
    min-height: 100dvh !important;
  }
  .mess-fold--2 .mess-closer {
    font-size: clamp(28px, 7.5vw, 38px) !important;
    line-height: 0.96 !important;
    margin: 0 0 clamp(12px, 2.5vh, 20px) 0 !important;
    width: 100% !important;
    flex: 0 0 auto !important;
  }
  .mess-fold--2 .mess-illustration {
    margin: 0 auto !important;
    flex: 0 0 auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
  }
  .mess-fold--2 .mess-illustration__img {
    max-height: 52vh !important;
    max-height: 52dvh !important;
    width: auto !important;
    max-width: 76vw !important;
    display: block !important;
    margin: 0 auto !important;
  }
  body {
    overflow-x: clip !important;
    width: 100% !important;
    max-width: 100vw !important;
  }
  .njn {
    min-height: 100vh !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    padding-top: clamp(60px, 10vh, 100px) !important;
    padding-bottom: clamp(60px, 10vh, 100px) !important;
  }
  .bd-impact-cloud-wrap {
    width: auto !important;
    height: 50vh !important;
    min-width: 100vw;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    bottom: 0;
  }
  .bd-impact-cloud-img {
    height: 50vh !important;
    width: auto !important;
    max-width: none !important;
  }
  .wk {
    padding-top: clamp(36px, 6vh, 60px) !important;
    padding-bottom: clamp(60px, 8vh, 100px) !important;
    min-height: 100vh !important;
    min-height: 100dvh !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    box-sizing: border-box !important;
  }
  .wk-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
    margin-top: clamp(10px, 2vh, 18px) !important;
  }
  .wk-card {
    justify-content: center !important;
    min-height: 180px !important;
    gap: 12px !important;
    padding: clamp(14px, 2.5vw, 22px) !important;
  }
  .is-grid {
    grid-template-columns: 1fr;
  }
  .is-col {
    border-left: none;
    border-top: 1px solid rgba(245, 225, 209, 0.2);
    padding: clamp(28px, 4vh, 40px) 0;
  }
  .is-col:first-child {
    border-top: none;
    padding-top: 0;
  }
}
@media (max-width: 600px) {
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-cta__btn {
    text-align: center;
  }
  .proc-steps {
    padding-left: 18px;
  }
  .proc-step {
    grid-template-columns: 36px 1fr;
    gap: 12px;
  }
  .cta-final__buttons {
    flex-direction: column;
    align-items: stretch;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }
  .cta-final__btn {
    text-align: center;
  }
  .cta-final__meta {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
  }
}
.mess-fold {
  display: contents;
}
.hero-icons {
  display: none !important;
}
.cta-final__socials {
  display: none !important;
}

