@font-face {
  font-family: "Evolute Akzidenz";
  src: url("./fonts/AkzidenzGrotesk-MediumExtended.otf") format("opentype");
  font-display: swap;
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Evolute DM Sans";
  src: url("./fonts/DMSans-VariableFont_opsz,wght.ttf") format("truetype");
  font-display: swap;
  font-weight: 100 900;
  font-style: normal;
}

@font-face {
  font-family: "Evolute Raleway";
  src: url("./fonts/Raleway-VariableFont_wght.ttf") format("truetype");
  font-display: swap;
  font-weight: 100 900;
  font-style: normal;
}

:root {
  --bg: #050505;
  --panel: #0e0e0e;
  --line: rgba(255, 255, 255, 0.08);
  --text: #fafafa;
  --muted: rgba(255, 255, 255, 0.7);
  --accent: #d6c7ff;
  --accent-alt: #a7c7e7;
  --accent-soft: rgba(214, 199, 255, 0.18);
  --accent-soft-alt: rgba(167, 199, 231, 0.16);
  --dot: rgba(214, 199, 255, 0.16);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: "Evolute DM Sans", sans-serif;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 18% 22%, rgba(167, 199, 231, 0.08), transparent 18%),
    radial-gradient(circle at 82% 84%, rgba(214, 199, 255, 0.06), transparent 24%),
    var(--bg);
  color: var(--text);
}

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

img {
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(5, 5, 5, 0.98);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  width: min(100%, 1188px);
  margin: 0 auto;
  min-height: 72px;
  padding: 12px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.brand img {
  display: block;
  width: auto;
  height: 36px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 2.1vw, 38px);
  margin: 0 auto;
  font-family: "Evolute Raleway", sans-serif;
  font-size: clamp(0.95rem, 1.28vw, 1.18rem);
  font-weight: 800;
  letter-spacing: 0.01em;
}

.site-nav a,
.header-cta,
.button {
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.site-nav a:hover {
  color: var(--accent);
}

.site-nav a.is-empty {
  visibility: hidden;
  pointer-events: none;
}


.header-cta {
  font-family: "Evolute DM Sans", sans-serif;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 13px;
  background: #f4f4f4;
  color: #121212;
  font-size: clamp(0.92rem, 1.25vw, 1.08rem);
  font-weight: 800;
}

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

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

main {
  overflow: hidden;
}

.hero {
  width: min(100%, 1188px);
  margin: 0 auto;
  min-height: 0;
  padding: 72px 30px 22px;
  position: relative;
  display: flex;
  align-items: flex-start;
}

.hero-copy,
.hero-art {
  opacity: 1;
  transform: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 960px;
}

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 640ms ease,
    transform 640ms ease;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  margin: 0 0 30px;
  padding: 0 16px;
  border: 1px solid rgba(214, 199, 255, 0.28);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(244, 166, 160, 0.12), rgba(214, 199, 255, 0.12));
  color: #f0e7ff;
  font-family: "Evolute Raleway", sans-serif;
  font-size: clamp(0.88rem, 1.32vw, 1.08rem);
  font-weight: 800;
  letter-spacing: 0.03em;
}

h1 {
  margin: 0;
  max-width: 14.5ch;
  font-family: "Evolute Akzidenz", sans-serif;
  font-size: clamp(3rem, 4.35vw, 4.35rem);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

h1 span {
  background: linear-gradient(135deg, var(--accent-alt), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  max-width: 40ch;
  margin: 24px 0 0;
  color: var(--muted);
  font-family: "Evolute Raleway", sans-serif;
  font-size: clamp(1.08rem, 1.5vw, 1.32rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.25;
}

.hero-pricing-note {
  display: block;
  margin-top: 0.75em;
  font-weight: 500;
}

.hero-pricing-note strong {
  color: var(--text);
  font-weight: 750;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Evolute DM Sans", sans-serif;
  min-width: 170px;
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 13px;
  font-size: clamp(0.95rem, 1.3vw, 1.1rem);
  font-weight: 800;
}

.button-primary {
  background: linear-gradient(135deg, var(--accent-alt), var(--accent));
  color: #111;
}

.button-primary:hover {
  background: linear-gradient(135deg, #b8d5f0, #e4d8ff);
  transform: translateY(-1px);
}

.button-secondary {
  background: #f4f4f4;
  color: #111;
}

.button-secondary:hover {
  background: #fff;
  transform: translateY(-1px);
}

.hero-art {
  position: absolute;
  inset: 44px -90px auto auto;
  z-index: 1;
  width: min(58vw, 740px);
  height: 650px;
  min-height: 0;
  pointer-events: none;
}

.hero-art-image {
  position: absolute;
  top: 0;
  right: 0;
  width: min(62vw, 790px);
  max-width: none;
  opacity: 0.28;
}

.logo-section {
  width: min(100%, 1188px);
  margin: 0 auto;
  padding: 0 30px 34px;
  position: relative;
  z-index: 2;
}

.logo-marquee {
  --logo-gap: 48px;
  display: flex;
  gap: var(--logo-gap);
  overflow: hidden;
  mask-image: none;
}

.logo-track {
  display: flex;
  align-items: center;
  gap: var(--logo-gap);
  min-width: max-content;
  animation: logo-scroll 40s linear infinite;
}

.logo-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 144px;
  height: 64px;
  padding: 8px;
}

.logo-card img {
  display: block;
  width: min(100%, 128px);
  height: min(100%, 42px);
  object-fit: contain;
}

.logo-image-soft {
  width: min(100%, 112px);
  height: min(100%, 36px);
}

@keyframes logo-scroll {
  from {
    transform: translateX(calc(-100% - var(--logo-gap)));
  }

  to {
    transform: translateX(0);
  }
}

@media (max-width: 1180px) {
  .site-nav {
    gap: 18px;
  }

  .hero {
    min-height: 0;
    padding: 68px 30px 22px;
  }

  .hero-art {
    width: min(68vw, 700px);
    height: 650px;
    inset: 48px -110px auto auto;
  }

  .hero-art-image {
    top: 0;
    right: 0;
    width: min(72vw, 760px);
    opacity: 0.26;
  }
}

.jobs-section {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0 0 92px;
  background:
    linear-gradient(180deg, #0a0a0a 0 660px, #050505 660px 100%);
}

.jobs-stage {
  position: relative;
  width: min(100%, 1540px);
  margin: 0 auto;
}

.jobs-mosaic {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
  gap: 4px;
  padding: 4px;
  height: 640px;
  border-radius: 24px 24px 0 0;
  background: #0a0a0a;
  overflow: hidden;
}

.jobs-mosaic::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.86) 0%,
    rgba(0, 0, 0, 0.72) 22%,
    rgba(0, 0, 0, 0.58) 48%,
    rgba(0, 0, 0, 0.34) 72%,
    rgba(0, 0, 0, 0.12) 90%,
    rgba(0, 0, 0, 0.04) 100%
  );
  pointer-events: none;
}

.jobs-tile {
  position: relative;
  overflow: hidden;
  height: 202px;
  border-radius: 18px;
  background: #111;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.28);
}

.jobs-tile-tall {
  height: 202px;
}

.jobs-tile-feature {
  height: 202px;
}

.jobs-column {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-height: 100%;
  animation: jobs-column-scroll 20s linear infinite;
}

.jobs-column-reverse {
  animation-name: jobs-column-scroll-reverse;
  animation-duration: 20s;
}

.jobs-column-track {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.jobs-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
  filter: saturate(0.94) brightness(0.94);
  transform: scale(1);
  transform-origin: center center;
}

@media (min-width: 841px) {
  .jobs-tile {
    background: #060606;
  }

  .jobs-photo {
    object-fit: contain;
    object-position: center center;
    transform: none;
  }
}

@keyframes jobs-column-scroll {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(calc(-50% - 5px));
  }
}

@keyframes jobs-column-scroll-reverse {
  from {
    transform: translateY(calc(-50% - 5px));
  }

  to {
    transform: translateY(0);
  }
}

.jobs-overlay {
  position: absolute;
  inset: 41% 0 auto 0;
  z-index: 3;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 54px;
  text-align: center;
}

.jobs-overlay h2 {
  margin: 0;
  max-width: 10ch;
  color: #fff;
  font-family: "Evolute Akzidenz", sans-serif;
  font-size: clamp(2.9rem, 4.8vw, 4.6rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
}

.jobs-overlay p {
  margin: 18px 0 0;
  max-width: 31ch;
  color: rgba(255, 255, 255, 0.92);
  font-family: "Evolute DM Sans", sans-serif;
  font-size: clamp(1.08rem, 1.68vw, 1.48rem);
  line-height: 1.22;
  font-weight: 600;
}

.jobs-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 18px;
}

.jobs-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 11px;
  font-family: "Evolute DM Sans", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
}

.jobs-button-dark {
  background: rgba(34, 34, 34, 0.94);
  color: #fff;
}

.jobs-button-light {
  background: rgba(255, 255, 255, 0.96);
  color: #101010;
}

.jobs-bottom-panel {
  padding: 28px 34px 34px;
  border-radius: 0 0 30px 30px;
  background: #ffffff;
  box-shadow: 0 1px 0 rgba(16, 16, 16, 0.05) inset;
}

.jobs-bottom-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.jobs-bottom-title-row {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.jobs-bottom-title-row h3 {
  margin: 0;
  color: #090909;
  font-family: "Evolute DM Sans", sans-serif;
  font-size: clamp(2rem, 2.4vw, 2.8rem);
  line-height: 1;
  font-weight: 700;
}

.jobs-bottom-link {
  color: #090909;
  font-family: "Evolute DM Sans", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
}

.jobs-bottom-tags {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.jobs-bottom-tag,
.jobs-bottom-tags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: #f1f1f1;
  color: #111;
  font-family: "Evolute DM Sans", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  opacity: 1;
}

.jobs-bottom-tag:link,
.jobs-bottom-tag:visited,
.jobs-bottom-tag:hover,
.jobs-bottom-tag:active,
.jobs-bottom-tag:focus {
  color: #111;
  background: #f1f1f1;
  text-decoration: none;
  opacity: 1;
}

.jobs-bottom-panel p {
  margin: 28px 0 0;
  padding-top: 28px;
  border-top: 1px solid rgba(16, 16, 16, 0.08);
  color: rgba(17, 17, 17, 0.78);
  font-family: "Evolute DM Sans", sans-serif;
  font-size: clamp(1.25rem, 1.8vw, 1.72rem);
  line-height: 1.32;
}

.method-section {
  background: #050505;
  padding: 64px 28px 12px;
}

.method-card {
  width: min(100%, 1540px);
  margin: 0 auto;
  padding: 14px;
  border-radius: 32px;
  background: linear-gradient(180deg, #ffffff, #f9f7f4);
  box-shadow: 0 24px 80px rgba(12, 12, 12, 0.08);
}

.method-main {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 16px;
  align-items: start;
}

.method-copy,
.method-media,
.method-stat {
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(16, 16, 16, 0.06);
}

.method-copy {
  padding: 22px 22px 20px;
}

.method-copy h2 {
  margin: 0;
  max-width: 10.5ch;
  color: #090909;
  font-family: "Evolute Akzidenz", sans-serif;
  font-size: clamp(2.15rem, 4.3vw, 4rem);
  line-height: 0.97;
  letter-spacing: -0.05em;
}

.method-copy p {
  margin: 18px 0 0;
  max-width: none;
  color: rgba(18, 18, 18, 0.7);
  font-family: "Evolute DM Sans", sans-serif;
  font-size: clamp(0.92rem, 1.18vw, 1.08rem);
  line-height: 1.22;
}

.method-copy-line {
  display: block;
  white-space: nowrap;
}

.method-copy-line--meta {
  margin-top: 4px;
  font-size: 0.88em;
  line-height: 1.2;
}

.method-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  margin-top: 22px;
  padding: 0 20px;
  border-radius: 12px;
  background: linear-gradient(135deg, #a7c7e7, #d6c7ff);
  color: #121212;
  font-family: "Evolute DM Sans", sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
}

.method-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 22px;
  margin-top: 24px;
}

.method-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(18, 18, 18, 0.72);
  font-family: "Evolute DM Sans", sans-serif;
  font-size: 0.94rem;
}

.method-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  color: #090909;
  font-size: 1.05rem;
  font-weight: 700;
}

.method-media {
  overflow: hidden;
  padding: 7px;
  background: #efebe6;
}

.method-video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  min-height: 0;
  border-radius: 22px;
  object-fit: contain;
  background: #d9d0c2;
}

.method-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.method-stat {
  padding: 18px 16px;
  text-align: center;
}

.method-stat strong {
  display: block;
  color: #090909;
  font-family: "Evolute DM Sans", sans-serif;
  font-size: clamp(1.85rem, 3.6vw, 2.7rem);
  line-height: 1;
}

.method-stat span {
  display: block;
  margin-top: 6px;
  color: rgba(18, 18, 18, 0.64);
  font-family: "Evolute DM Sans", sans-serif;
  font-size: 0.92rem;
}

.mind-network-section {
  position: relative;
  min-height: clamp(860px, 72vw, 1080px);
  padding: clamp(94px, 8vw, 132px) 28px clamp(90px, 8vw, 132px);
  overflow: hidden;
  background: #f7f4f0;
  color: #050505;
  isolation: isolate;
}

.mind-network-section::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 16%, rgba(255, 255, 255, 0.7), transparent 24%),
    radial-gradient(circle at 80% 78%, rgba(255, 255, 255, 0.5), transparent 26%);
}

.mind-network-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.mind-network-content {
  position: relative;
  z-index: 2;
  width: min(100%, 1320px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.mind-network-content h2 {
  max-width: 16ch;
  margin: 0;
  color: #090909;
  font-family: "Evolute Akzidenz", sans-serif;
  font-size: clamp(2.15rem, 4.3vw, 4rem);
  line-height: 0.97;
  letter-spacing: -0.05em;
}

.mind-network-content p {
  max-width: 29ch;
  margin: 42px 0 0;
  color: rgba(5, 5, 5, 0.62);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.45vw, 2.8rem);
  line-height: 1.12;
}

.mind-venn {
  position: relative;
  width: min(100%, 900px);
  aspect-ratio: 1.5 / 1;
  margin: clamp(38px, 5vw, 62px) auto 0;
  color: #111;
}

.mind-venn::before {
  content: "";
  position: absolute;
  inset: 9% 13% 7%;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 48%, rgba(5, 5, 5, 0.08), transparent 34%),
    radial-gradient(circle at 34% 68%, rgba(214, 199, 255, 0.16), transparent 28%),
    radial-gradient(circle at 66% 68%, rgba(167, 199, 231, 0.16), transparent 30%);
  filter: blur(18px);
  opacity: 0.9;
}

.mind-venn-circle {
  position: absolute;
  width: 42%;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 3px solid currentColor;
  border-radius: 50%;
  background: rgba(247, 244, 240, 0.16);
  box-shadow:
    inset 0 0 38px rgba(255, 255, 255, 0.34),
    0 18px 44px rgba(5, 5, 5, 0.08);
  mix-blend-mode: multiply;
}

.mind-venn-circle span {
  max-width: 10ch;
  color: rgba(5, 5, 5, 0.82);
  font-family: "Evolute Sora", "Evolute DM Sans", sans-serif;
  font-size: clamp(1.02rem, 1.72vw, 1.78rem);
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.22;
  text-transform: uppercase;
}

.mind-venn-neuro {
  top: 0;
  left: 29%;
  color: rgba(244, 166, 160, 0.74);
}

.mind-venn-therapy {
  left: 16%;
  bottom: 2%;
  color: rgba(214, 199, 255, 0.78);
}

.mind-venn-coaching {
  right: 16%;
  bottom: 2%;
  color: rgba(167, 199, 231, 0.8);
}

.mind-venn-core {
  position: absolute;
  top: 51%;
  left: 50%;
  z-index: 4;
  width: clamp(72px, 8.5vw, 112px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(167, 199, 231, 0.72), rgba(214, 199, 255, 0.78)),
    #0a0a0a;
  box-shadow:
    0 18px 42px rgba(5, 5, 5, 0.22),
    0 0 0 1px rgba(255, 255, 255, 0.58) inset;
  transform: translate(-50%, -50%);
}

.mind-venn-core img {
  width: 58%;
  height: 58%;
  object-fit: contain;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.18));
}

.mind-flow-diagram {
  position: relative;
  width: min(100%, 690px);
  height: 420px;
  margin: clamp(38px, 5vw, 62px) auto 0;
  color: #111;
  font-family: "Evolute DM Sans", sans-serif;
}

.mind-flow-item {
  position: absolute;
  z-index: 2;
  min-height: 46px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 8px 14px;
  border: 1px solid rgba(5, 5, 5, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  color: #111;
  font-family: "Evolute DM Sans", sans-serif;
  font-size: clamp(0.96rem, 1.3vw, 1.08rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.18;
  text-align: left;
  box-shadow: 0 7px 18px rgba(5, 5, 5, 0.025);
}

.mind-flow-icon {
  flex: 0 0 auto;
  width: 22px;
  display: inline-flex;
  justify-content: center;
  color: #000;
  filter: grayscale(1) brightness(0);
  font-size: 1.05em;
  font-weight: 600;
  line-height: 1;
}

.mind-flow-svg {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.mind-flow-svg marker path {
  fill: none;
  stroke: rgba(5, 5, 5, 0.18);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mind-flow-path {
  fill: none;
  stroke: rgba(5, 5, 5, 0.15);
  stroke-width: 1.6;
  stroke-linecap: square;
  stroke-linejoin: miter;
  marker-end: url("#mind-flow-arrow");
}

.mind-flow-item--frameworks {
  top: 0;
  left: 3%;
  width: 200px;
}

.mind-flow-item--playbooks {
  top: 48px;
  right: 5%;
  width: 230px;
}

.mind-flow-item--tactics {
  top: 152px;
  left: 3%;
  width: 340px;
}

.mind-flow-item--community {
  top: 262px;
  right: 5%;
  width: 300px;
}

.mind-flow-item--mentors {
  bottom: 0;
  left: 8%;
  width: 235px;
}

.mind-network-actions {
  display: flex;
  justify-content: center;
  margin-top: 58px;
}

.mind-network-button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 12px;
  background: linear-gradient(135deg, #a7c7e7 0%, #d6c7ff 100%);
  color: #090909;
  font-family: "Evolute DM Sans", sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0;
  transition:
    box-shadow 180ms ease,
    transform 180ms ease;
  box-shadow:
    0 18px 34px rgba(81, 94, 132, 0.18),
    0 1px 0 rgba(255, 255, 255, 0.6) inset;
}

.mind-network-button:hover {
  transform: translateY(-1px);
  box-shadow:
    0 22px 40px rgba(81, 94, 132, 0.24),
    0 1px 0 rgba(255, 255, 255, 0.68) inset;
}

.team-section {
  padding: 94px 30px 112px;
  background: #f7f4f0;
  color: #090909;
}

.team-intro {
  max-width: 820px;
  margin: 0 auto 52px;
  text-align: center;
}

.team-intro h2 {
  margin: 0;
  font-family: "Evolute DM Sans", sans-serif;
  font-size: clamp(2.5rem, 4.2vw, 4.1rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.96;
}

.team-intro p {
  max-width: 34ch;
  margin: 24px auto 0;
  color: rgba(9, 9, 9, 0.66);
  font-family: "Evolute Raleway", sans-serif;
  font-size: clamp(1.1rem, 1.7vw, 1.45rem);
  font-weight: 600;
  line-height: 1.22;
}

.team-grid {
  width: min(100%, 980px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  border-radius: 28px;
}

.team-card {
  position: relative;
  min-width: 0;
  min-height: 0;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 0;
  background: #181818;
}

.team-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 5, 5, 0) 38%, rgba(5, 5, 5, 0.1) 56%, rgba(5, 5, 5, 0.86) 100%);
  pointer-events: none;
}

.team-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: none;
}

.team-card:nth-child(1) .team-photo {
  object-position: 44% center;
}

.team-card:nth-child(2) .team-photo {
  object-position: 54% center;
}

.team-card:nth-child(3) .team-photo {
  object-position: 50% 40%;
}

.team-card-content {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  padding: 32px 34px 30px;
  color: #fff;
}

.team-card-kicker,
.team-card-role {
  margin: 0;
  font-family: "Evolute Raleway", sans-serif;
}

.team-card-kicker {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  font-weight: 700;
}

.team-card h3 {
  margin: 10px 0 0;
  font-family: "Evolute Raleway", sans-serif;
  font-size: clamp(1.9rem, 2.45vw, 2.7rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
}

.team-card-role {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  font-weight: 400;
}

.team-core-card {
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
  padding: clamp(24px, 4vw, 50px);
  background: #050505;
}

.team-core-card::after {
  z-index: 0;
  background:
    radial-gradient(circle at center, rgba(214, 199, 255, 0.18), transparent 62%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.08), rgba(5, 5, 5, 0.5));
}

.team-core-dots {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 0;
  width: 92%;
  height: 92%;
  object-fit: contain;
  opacity: 0.76;
  filter: brightness(1.28) contrast(1.05);
  transform: translate(-50%, -50%);
}

.team-core-text {
  position: relative;
  z-index: 2;
  width: min(86%, 520px);
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-family: "Evolute Raleway", sans-serif;
  font-size: clamp(1.16rem, 1.58vw, 1.72rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.12;
  text-align: center;
}

.team-core-text span {
  display: block;
  white-space: nowrap;
}

.faq-section {
  padding: 132px 30px 136px;
  background: #f7f4f0;
  color: #090909;
}

.faq-layout {
  width: min(100%, 1540px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(540px, 1.28fr);
  align-items: start;
  gap: clamp(48px, 8vw, 140px);
}

.faq-intro h2 {
  margin: 0;
  font-family: "Evolute Akzidenz", sans-serif;
  font-size: clamp(2.7rem, 4.1vw, 4.35rem);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.92;
}

.faq-intro p {
  max-width: 32ch;
  margin: 22px 0 0;
  color: rgba(9, 9, 9, 0.62);
  font-family: "Evolute DM Sans", sans-serif;
  font-size: clamp(1.05rem, 1.45vw, 1.3rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.22;
}

.faq-cta {
  min-height: 52px;
  margin-top: 26px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  background: #242424;
  color: #fff;
  font-family: "Evolute DM Sans", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
}

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

.faq-item {
  overflow: hidden;
  border: 1px solid rgba(9, 9, 9, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.64);
}

.faq-item summary {
  min-height: 76px;
  padding: 20px 62px 20px 24px;
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
  font-family: "Evolute DM Sans", sans-serif;
  font-size: clamp(1.1rem, 1.65vw, 1.48rem);
  font-weight: 650;
  letter-spacing: -0.04em;
  line-height: 1.08;
  list-style: none;
}

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

.faq-item summary::after {
  position: absolute;
  right: 24px;
  top: 50%;
  width: 10px;
  height: 10px;
  content: "";
  border-right: 2px solid rgba(9, 9, 9, 0.42);
  border-bottom: 2px solid rgba(9, 9, 9, 0.42);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 180ms ease;
}

.faq-item[open] summary::after {
  transform: translateY(-30%) rotate(225deg);
}

.faq-answer {
  padding: 0 24px 24px;
}

.faq-answer p {
  max-width: 66ch;
  margin: 0;
  color: rgba(9, 9, 9, 0.64);
  font-family: "Evolute DM Sans", sans-serif;
  font-size: clamp(1rem, 1.28vw, 1.16rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.42;
}

.webinar-cta-section {
  padding: 0 30px 124px;
  background: #f7f4f0;
}

.webinar-cta-card {
  width: min(100%, 1540px);
  height: clamp(380px, 29vw, 480px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  overflow: hidden;
  border-radius: 28px;
  background: #050505;
  box-shadow: 0 18px 42px rgba(20, 13, 25, 0.1);
}

.webinar-cta-copy {
  position: relative;
  z-index: 2;
  padding: 58px clamp(34px, 5vw, 82px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  color: #fff;
}

.webinar-cta-kicker {
  margin: 0 0 18px;
  color: var(--accent);
  font-family: "Evolute DM Sans", sans-serif;
  font-size: 0.88rem;
  font-weight: 750;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.webinar-cta-copy h2 {
  max-width: 12ch;
  margin: 0;
  font-family: "Evolute Akzidenz", sans-serif;
  font-size: clamp(2.3rem, 3.45vw, 3.55rem);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.9;
}

.webinar-cta-copy > p:not(.webinar-cta-kicker) {
  max-width: 37ch;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-family: "Evolute DM Sans", sans-serif;
  font-size: clamp(1.02rem, 1.45vw, 1.25rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.25;
}

.webinar-cta-button {
  min-height: 54px;
  margin-top: 30px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(105deg, var(--accent-alt), var(--accent));
  color: #0b0b0b;
  font-family: "Evolute DM Sans", sans-serif;
  font-size: 1rem;
  font-weight: 750;
  letter-spacing: -0.025em;
  text-decoration: none;
}

.webinar-cta-media {
  position: relative;
  min-height: 0;
  overflow: hidden;
  background: #111;
}

.webinar-cta-media::before {
  position: absolute;
  z-index: 2;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, #050505 0%, rgba(5, 5, 5, 0.84) 10%, rgba(5, 5, 5, 0.26) 40%, rgba(5, 5, 5, 0) 67%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.34));
}

.webinar-cta-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.webinar-cta-video--background {
  inset: -10%;
  width: 120%;
  height: 120%;
  z-index: 0;
  object-fit: cover;
  object-position: center 32%;
  filter: blur(26px) brightness(0.46) saturate(0.82);
  opacity: 0.72;
}

.webinar-cta-video--foreground {
  z-index: 1;
  object-fit: contain;
  object-position: right center;
}

.community-section {
  padding: 220px 30px 120px;
  background: #ffffff;
  color: #090909;
}

.community-intro {
  width: min(100%, 1580px);
  margin: 0 auto 70px;
  text-align: center;
}

.community-intro h2 {
  margin: 0;
  font-family: "Evolute DM Sans", sans-serif;
  font-size: clamp(2.25rem, 3.2vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.96;
}

.community-draft-note {
  margin: 14px 0 0;
  color: rgba(9, 9, 9, 0.46);
  font-family: "Evolute DM Sans", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.community-grid {
  width: min(100%, 1580px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.community-card {
  min-height: 0;
  aspect-ratio: 1.36 / 1;
  padding: 42px 46px 38px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border-radius: 28px;
  background: #090909;
  color: #fff;
}

.community-quote {
  max-width: 21ch;
  margin: 0;
  font-family: "Evolute DM Sans", sans-serif;
  font-size: clamp(1.25rem, 1.65vw, 1.65rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.12;
}

.community-author {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 36px;
}

.community-author img {
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
  border-radius: 12px;
  object-fit: cover;
}

.community-author h3,
.community-author p {
  margin: 0;
  font-family: "Evolute DM Sans", sans-serif;
}

.community-author h3 {
  font-size: clamp(1.05rem, 1.3vw, 1.25rem);
  font-weight: 700;
  letter-spacing: -0.035em;
}

.community-author p {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.62);
  font-size: clamp(0.86rem, 1vw, 0.98rem);
  font-weight: 500;
}

.concept-section {
  padding: 12px 28px 112px;
  background: #f7f4f0;
  color: #090909;
}

.concept-intro {
  width: min(100%, 1580px);
  margin: 0 auto 48px;
  text-align: center;
}

.concept-intro h2 {
  margin: 0;
  font-family: "Evolute Akzidenz", sans-serif;
  font-size: clamp(2.35rem, 3.45vw, 3.65rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.concept-intro p {
  max-width: 48ch;
  margin: 20px auto 0;
  color: rgba(9, 9, 9, 0.58);
  font-family: "Evolute DM Sans", sans-serif;
  font-size: clamp(1.1rem, 1.65vw, 1.45rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.18;
}

.concept-card {
  width: min(100%, 1540px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(300px, 0.92fr) minmax(420px, 1.08fr);
  gap: 14px;
  padding: 14px;
  overflow: hidden;
  border-radius: 28px;
  background: #050505;
  color: #fff;
}

.concept-copy {
  position: relative;
  z-index: 1;
  padding: 22px 20px 20px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.concept-badge {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  margin: 0;
  padding: 0 16px;
  border: 1px solid rgba(214, 199, 255, 0.24);
  border-radius: 999px;
  background: rgba(214, 199, 255, 0.1);
  color: #d6c7ff;
  font-family: "Evolute DM Sans", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.concept-copy h3 {
  max-width: none;
  margin: 16px 0 0;
  font-family: "Evolute Akzidenz", sans-serif;
  font-size: clamp(1.6rem, 2vw, 2.2rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.92;
  white-space: nowrap;
}

.concept-description {
  max-width: 31ch;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-family: "Evolute DM Sans", sans-serif;
  font-size: clamp(0.94rem, 1.04vw, 1.02rem);
  font-weight: 500;
  line-height: 1.28;
}

.concept-description-block {
  display: block;
}

.concept-description-block + .concept-description-block {
  margin-top: 0.8em;
}

.concept-details {
  margin: 16px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  list-style: none;
  color: rgba(255, 255, 255, 0.88);
  font-family: "Evolute DM Sans", sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
}

.concept-details li::before {
  content: "•";
  margin-right: 8px;
  color: #d6c7ff;
}

.concept-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 20px;
  padding: 0 18px;
  border-radius: 12px;
  background: linear-gradient(105deg, #a7c7e7, #d6c7ff);
  color: #090909;
  font-family: "Evolute DM Sans", sans-serif;
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  text-decoration: none;
}

.concept-gallery {
  position: relative;
  min-width: 0;
  height: 220px;
  padding: 0;
  align-self: center;
  display: grid;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 10px;
  overflow: hidden;
}

.concept-gallery::before,
.concept-gallery::after {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  content: "";
  pointer-events: none;
}

.concept-gallery::before {
  left: 0;
  width: 146px;
  background: linear-gradient(90deg, #050505 0%, rgba(5, 5, 5, 0.88) 28%, rgba(5, 5, 5, 0.42) 65%, rgba(5, 5, 5, 0) 100%);
}

.concept-gallery::after {
  right: 0;
  width: 28px;
  background: linear-gradient(270deg, rgba(5, 5, 5, 0.2) 0%, rgba(5, 5, 5, 0) 100%);
}

.concept-carousel-row {
  min-width: 100%;
  display: flex;
  align-items: stretch;
  gap: 10px;
  animation: concept-carousel-forward 10s linear infinite;
  will-change: transform;
}

.concept-carousel-row--reverse {
  animation-name: concept-carousel-reverse;
}

.concept-carousel-track {
  min-width: max-content;
  display: flex;
  gap: 10px;
}

.concept-photo {
  width: 118px;
  min-height: 0;
  height: 100%;
  flex: 0 0 auto;
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  background: #161616;
}

.concept-photo img,
.concept-photo video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

@keyframes concept-carousel-forward {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 7px));
  }
}

@keyframes concept-carousel-reverse {
  from {
    transform: translateX(calc(-50% - 7px));
  }

  to {
    transform: translateX(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .concept-carousel-row {
    animation-play-state: paused;
  }
}

@media (max-width: 1180px) {
  .jobs-mosaic {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    height: 520px;
  }

  .jobs-column:nth-child(4) {
    display: none;
  }

  .community-section {
    padding-top: 150px;
  }

  .community-grid {
    width: min(100%, 1100px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .community-card {
    aspect-ratio: 1.8 / 1;
  }

  .faq-section {
    padding-top: 108px;
    padding-bottom: 112px;
  }

  .faq-layout {
    grid-template-columns: minmax(250px, 0.78fr) minmax(460px, 1.22fr);
    gap: 48px;
  }

  .webinar-cta-section {
    padding-bottom: 104px;
  }

  .webinar-cta-card {
    height: clamp(360px, 34vw, 420px);
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  }

  .concept-section {
    padding-top: 128px;
  }

  .concept-card {
    grid-template-columns: minmax(300px, 0.92fr) minmax(390px, 1.08fr);
  }

  .concept-copy {
    padding: 22px 18px 20px;
  }
}

@media (min-width: 841px) and (max-width: 1180px) {
  .jobs-mosaic {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    height: 600px;
  }

  .jobs-column:nth-child(4) {
    display: flex;
  }
}

@media (max-width: 840px) {
  .site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    width: 100%;
  }

  .header-inner {
    min-height: 104px;
    padding: 26px 18px;
    flex-wrap: nowrap;
    gap: 12px;
  }

  .site-nav {
    display: none;
  }

  .brand {
    max-width: none;
  }

  .brand img {
    width: min(100%, 132px);
    height: auto;
  }

  .header-cta {
    display: none;
  }

  .mobile-menu-toggle {
    display: inline-flex;
    width: 44px;
    height: 44px;
    margin-left: auto;
    padding: 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 7px;
    border: 0;
    background: transparent;
    color: #fff;
    cursor: pointer;
  }

  .mobile-menu-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    border-radius: 14px;
    background: currentColor;
    transition: transform 180ms ease;
  }

  .site-header.is-menu-open .header-inner {
    flex-wrap: wrap;
  }

  .site-header.is-menu-open .site-nav {
    display: flex;
    order: 3;
    width: 100%;
    margin-top: 10px;
    padding-top: 14px;
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
    border-top: 1px solid var(--line);
    font-size: 1rem;
  }

  .site-header.is-menu-open .header-cta {
    display: inline-flex;
    order: 4;
    width: 100%;
    min-height: 52px;
    margin-top: 6px;
    padding: 0 16px;
    border-radius: 14px;
    font-size: 0.98rem;
  }

  .site-header.is-menu-open .mobile-menu-toggle span:first-child {
    transform: translateY(4.5px) rotate(45deg);
  }

  .site-header.is-menu-open .mobile-menu-toggle span:last-child {
    transform: translateY(-4.5px) rotate(-45deg);
  }

  .hero {
    min-height: 0;
    padding: 38px 18px 52px;
  }

  .hero-badge {
    display: flex;
    width: 100%;
    max-width: 100%;
    min-height: 0;
    margin-bottom: 24px;
    padding: 9px 14px;
    justify-content: center;
    overflow: visible;
    font-size: clamp(0.74rem, 3.35vw, 0.86rem);
    line-height: 1.18;
    text-align: center;
    white-space: normal;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.5rem, 10.3vw, 3.35rem);
    line-height: 0.94;
    min-height: 5.64em;
  }

  .hero-subtitle {
    max-width: 31ch;
    margin-top: 24px;
    font-size: clamp(1rem, 4vw, 1.2rem);
  }

  .hero-actions {
    gap: 12px;
    margin-top: 28px;
  }

  .button {
    width: auto;
    flex: 1 1 0;
    min-width: 0;
    min-height: 56px;
    padding: 0 12px;
    border-radius: 14px;
    font-size: 0.94rem;
  }

  .hero-art {
    inset: 68px -148px auto auto;
    width: 112vw;
    height: 620px;
  }

  .hero-art-image {
    top: 0;
    right: 0;
    width: 140%;
    opacity: 0.24;
  }

  .logo-section {
    padding: 0 18px 26px;
  }

  .logo-marquee,
  .logo-track {
    --logo-gap: 28px;
    gap: var(--logo-gap);
  }

  .logo-track {
    animation-duration: 32s;
  }

  .logo-card {
    width: 112px;
    height: 54px;
    padding: 7px;
  }

  .logo-card img {
    width: min(100%, 96px);
    height: min(100%, 32px);
  }

  .logo-image-soft {
    width: min(100%, 84px);
    height: min(100%, 28px);
  }

  .jobs-section {
    padding: 0 0 56px;
    background:
      linear-gradient(180deg, #0a0a0a 0 450px, #050505 450px 100%);
  }

  .jobs-mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 8px;
    height: 496px;
    border-radius: 18px 18px 0 0;
  }

  .jobs-column:nth-child(3),
  .jobs-column:nth-child(4) {
    display: none;
  }

  .jobs-mosaic::before {
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.78) 0%,
      rgba(0, 0, 0, 0.58) 22%,
      rgba(0, 0, 0, 0.38) 48%,
      rgba(0, 0, 0, 0.18) 76%,
      rgba(0, 0, 0, 0.04) 100%
    );
  }

  .jobs-tile,
  .jobs-tile-tall,
  .jobs-tile-feature {
    height: 152px;
    border-radius: 18px;
  }

  .jobs-column,
  .jobs-column-track {
    gap: 8px;
  }

  .jobs-photo {
    object-position: center 18%;
    transform: scale(1.04);
    filter: saturate(0.96) brightness(0.98);
  }

  .jobs-photo[src*="francy-v2"] {
    object-fit: contain;
    object-position: center center;
    transform: scale(1);
  }

  .jobs-photo[src*="sebastian-v2"] {
    object-position: center 18%;
  }

  .jobs-photo[src*="camila1"] {
    object-position: center 18%;
  }

  .jobs-photo[src*="juanpablo1"] {
    object-position: center 20%;
  }

  .jobs-photo[src*="isidora2"] {
    object-position: center 28%;
  }

  .jobs-photo[src*="rafael-v2"] {
    object-position: center 18%;
  }

  .jobs-photo[src*="maria-alejandra-v2"] {
    object-position: center 18%;
  }

  .jobs-photo[src*="andres-v2"] {
    object-position: center 18%;
  }

  .jobs-overlay {
    inset: 42% 0 auto 0;
    padding: 0 14px;
  }

  .jobs-overlay h2 {
    font-size: clamp(1.75rem, 7.2vw, 2.35rem);
    max-width: 8ch;
  }

  .jobs-overlay p {
    margin-top: 12px;
    max-width: 22ch;
    font-size: 0.9rem;
    line-height: 1.2;
    max-width: 17ch;
  }

  .jobs-actions {
    width: 100%;
    margin-top: 12px;
    gap: 8px;
  }

  .jobs-button {
    flex: 1 1 132px;
    min-height: 44px;
    padding: 0 12px;
    font-size: 0.78rem;
  }

  .jobs-bottom-panel {
    padding: 20px 18px 22px;
    border-radius: 0 0 24px 24px;
  }

  .jobs-bottom-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .jobs-bottom-title-row {
    gap: 14px;
  }

  .jobs-bottom-title-row h3 {
    font-size: 1.7rem;
  }

  .jobs-bottom-link {
    font-size: 1rem;
  }

  .jobs-bottom-tag,
  .jobs-bottom-tags span {
    min-height: 38px;
    padding: 0 14px;
    font-size: 0.92rem;
  }

  .jobs-bottom-panel p {
    margin-top: 18px;
    padding-top: 18px;
    font-size: 1rem;
  }

  .method-section {
    padding: 38px 18px 50px;
  }

  .method-card {
    padding: 10px;
    border-radius: 24px;
  }

  .method-main {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .method-copy {
    padding: 20px 16px 18px;
  }

  .method-copy h2 {
    font-size: clamp(1.95rem, 9.4vw, 2.8rem);
    max-width: 10ch;
  }

  .method-copy p {
    max-width: 100%;
    margin-top: 16px;
    font-size: 0.96rem;
    line-height: 1.24;
  }

  .method-copy-line {
    white-space: normal;
  }

  .method-copy-line--meta {
    margin-top: 5px;
    font-size: 0.84em;
  }

  .method-features {
    grid-template-columns: 1fr 1fr;
    gap: 12px 14px;
    margin-top: 20px;
  }

  .method-feature {
    min-width: 0;
    align-items: flex-start;
    font-size: 0.9rem;
  }

  .method-feature span:last-child {
    min-width: 0;
  }

  .method-video {
    aspect-ratio: 16 / 11;
  }

  .method-stats {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .team-section {
    padding: 54px 18px 64px;
  }

  .team-intro {
    margin-bottom: 26px;
  }

  .team-intro h2 {
    font-size: clamp(2.25rem, 10vw, 3rem);
  }

  .team-intro p {
    max-width: 29ch;
    margin-top: 16px;
    font-size: 1rem;
  }

  .team-grid {
    width: min(100%, 440px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    overflow: hidden;
    border-radius: 24px;
    background: #111;
  }

  .team-card {
    min-height: 0;
    aspect-ratio: 1 / 1;
    border-radius: 0;
  }

  .team-card::after {
    background: linear-gradient(180deg, rgba(5, 5, 5, 0) 34%, rgba(5, 5, 5, 0.18) 56%, rgba(5, 5, 5, 0.9) 100%);
  }

  .team-card-content {
    padding: 0 12px 7px;
  }

  .team-card-kicker {
    font-size: 0.72rem;
  }

  .team-card h3 {
    margin-top: 0;
    font-family: "Evolute Raleway", sans-serif;
    font-size: clamp(0.88rem, 4vw, 1rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.64);
    letter-spacing: -0.02em;
    line-height: 1;
    white-space: nowrap;
    transform: translateY(4px);
  }

  .team-card-role {
    margin-top: 1px;
    display: inline-block;
    font-family: "Evolute Raleway", sans-serif;
    font-size: 0.56rem;
    color: rgba(255, 255, 255, 0.62);
    line-height: 1.14;
    letter-spacing: -0.03em;
    max-width: none;
    white-space: nowrap;
    font-weight: 400;
  }

  .team-card:nth-child(1) .team-photo,
  .team-card:nth-child(2) .team-photo,
  .team-card:nth-child(3) .team-photo {
    transform-origin: center top;
  }

  .team-card:nth-child(1) .team-photo {
    transform: translateY(-10px) scale(1.12);
  }

  .team-card:nth-child(2) .team-photo {
    transform: scale(1.08);
    object-position: center 0%;
  }

  .team-card:nth-child(3) .team-photo {
    transform: translateY(-16px) scale(1.09);
  }

  .team-core-card {
    align-items: flex-end;
    padding: 12px 12px 16px;
  }

  .team-core-dots {
    width: 86%;
    height: 86%;
    opacity: 0.72;
  }

  .team-core-text {
    width: 88%;
    font-size: clamp(0.56rem, 2.2vw, 0.72rem);
    letter-spacing: -0.045em;
    line-height: 1.22;
  }

  .faq-section {
    padding: 74px 18px;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .faq-intro h2 {
    font-size: clamp(2.35rem, 10vw, 3.1rem);
  }

  .faq-intro p {
    max-width: 31ch;
    margin-top: 16px;
    font-size: 1rem;
  }

  .faq-cta {
    min-height: 48px;
    margin-top: 22px;
    padding: 0 18px;
    font-size: 0.94rem;
  }

  .faq-list {
    gap: 10px;
  }

  .faq-item {
    border-radius: 10px;
  }

  .faq-item summary {
    min-height: 66px;
    padding: 17px 50px 17px 18px;
    font-size: 1.04rem;
  }

  .faq-item summary::after {
    right: 20px;
  }

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

  .faq-answer p {
    font-size: 0.95rem;
    line-height: 1.38;
  }

  .webinar-cta-section {
    padding: 0 18px 74px;
  }

  .webinar-cta-card {
    height: auto;
    grid-template-columns: 1fr;
    border-radius: 24px;
  }

  .webinar-cta-copy {
    min-height: 312px;
    padding: 34px 24px 30px;
  }

  .webinar-cta-kicker {
    margin-bottom: 14px;
    font-size: 0.76rem;
  }

  .webinar-cta-copy h2 {
    max-width: 12ch;
    font-size: clamp(2.35rem, 11vw, 3.35rem);
  }

  .webinar-cta-copy > p:not(.webinar-cta-kicker) {
    max-width: 31ch;
    margin-top: 16px;
    font-size: 1rem;
  }

  .webinar-cta-button {
    min-height: 50px;
    margin-top: 24px;
    padding: 0 20px;
    font-size: 0.96rem;
  }

  .webinar-cta-media {
    height: 330px;
  }

  .webinar-cta-media::before {
    background:
      linear-gradient(180deg, #050505 0%, rgba(5, 5, 5, 0.56) 24%, rgba(5, 5, 5, 0) 58%),
      linear-gradient(90deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0));
  }

  .webinar-cta-video--foreground {
    object-position: center;
  }

  .community-section {
    padding: 64px 18px;
  }

  .community-intro {
    margin-bottom: 34px;
  }

  .community-intro h2 {
    font-size: clamp(2.2rem, 9.7vw, 3rem);
  }

  .community-draft-note {
    margin-top: 12px;
    font-size: 0.68rem;
    line-height: 1.35;
  }

  .community-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .community-section {
    padding-left: 24px;
    padding-right: 24px;
  }

  .community-card {
    min-height: 214px;
    aspect-ratio: auto;
    padding: 22px 22px 8px;
    border-radius: 22px;
    justify-content: flex-start;
  }

  .community-quote {
    max-width: 21ch;
    font-size: clamp(1rem, 4.6vw, 1.16rem);
    font-weight: 500;
    line-height: 1.18;
  }

  .community-author {
    gap: 12px;
    margin-top: 14px;
  }

  .community-author img {
    width: 58px;
    height: 58px;
    flex-basis: 58px;
    border-radius: 10px;
  }

  .community-author h3 {
    font-size: 1rem;
    font-weight: 600;
  }

  .community-author p {
    margin-top: 3px;
    font-size: 0.82rem;
    font-weight: 400;
  }

  .concept-section {
    padding: 62px 18px 68px;
  }

  .concept-intro {
    margin-bottom: 34px;
  }

  .concept-intro h2 {
    font-size: clamp(2.1rem, 9.3vw, 2.85rem);
  }

  .concept-intro p {
    max-width: 31ch;
    margin-top: 14px;
    font-size: 1rem;
  }

  .concept-card {
    min-height: 0;
    grid-template-columns: 1fr;
    border-radius: 24px;
  }

  .concept-copy {
    padding: 28px 22px 0;
  }

  .concept-badge {
    padding: 9px 14px;
    font-size: 0.86rem;
  }

  .concept-copy h3 {
    margin-top: 22px;
    font-size: clamp(2.25rem, 10vw, 3rem);
    white-space: normal;
  }

  .concept-description {
    margin-top: 16px;
    font-size: 0.98rem;
  }

  .concept-details {
    margin-top: 22px;
    gap: 8px 16px;
    font-size: 0.92rem;
  }

  .concept-details li::before {
    margin-right: 5px;
  }

  .concept-cta {
    margin-top: 20px;
    padding: 14px 18px;
    border-radius: 10px;
    font-size: 0.96rem;
  }

  .concept-gallery {
    height: 228px;
    margin-top: 26px;
    padding: 0;
    gap: 10px;
  }

  .concept-carousel-row,
  .concept-carousel-track {
    gap: 10px;
  }

  .concept-gallery::before {
    width: 19%;
  }

  .concept-photo {
    width: 118px;
    border-radius: 16px;
  }

}

@media (max-width: 480px) {
  .header-inner {
    min-height: 88px;
    padding: 20px 18px;
  }

  .hero {
    padding-top: 30px;
    padding-bottom: 44px;
  }

  .hero-badge {
    margin-bottom: 20px;
    font-size: 0.78rem;
  }

  h1 {
    font-size: clamp(2.35rem, 10.2vw, 2.85rem);
  }

  .hero-subtitle {
    margin-top: 20px;
    font-size: 1rem;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 24px;
  }

  .button {
    min-height: 52px;
    font-size: 0.9rem;
  }

  .hero-art {
    inset: 60px -132px auto auto;
    width: 108vw;
    height: 560px;
  }

  .jobs-section {
    background: linear-gradient(180deg, #0a0a0a 0 424px, #050505 424px 100%);
  }

  .jobs-mosaic {
    height: 400px;
  }

  .jobs-tile,
  .jobs-tile-tall,
  .jobs-tile-feature {
    height: 120px;
  }

  .jobs-overlay {
    inset: 43% 0 auto 0;
  }

  .jobs-overlay h2 {
    font-size: clamp(1.7rem, 7.5vw, 2.1rem);
  }

  .jobs-overlay p {
    max-width: 23ch;
    font-size: 0.84rem;
  }

  .jobs-button {
    flex-basis: 138px;
    font-size: 0.76rem;
  }

  .method-section {
    padding-top: 30px;
    padding-bottom: 42px;
  }

  .method-features {
    gap: 12px;
  }

  .method-feature {
    font-size: 0.86rem;
  }

  .method-stat {
    padding: 16px 14px;
  }

  .community-card {
    min-height: 214px;
    padding: 22px 20px 8px;
  }

  .community-quote {
    font-size: clamp(1rem, 4.6vw, 1.16rem);
    line-height: 1.18;
  }

  .community-author {
    margin-top: 14px;
  }

  .concept-section {
    padding-top: 54px;
    padding-bottom: 58px;
  }

  .concept-copy {
    padding: 24px 18px 0;
  }

  .concept-gallery {
    height: 216px;
    margin-top: 22px;
  }

  .team-section {
    padding-top: 48px;
    padding-bottom: 56px;
  }

  .faq-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .webinar-cta-copy {
    min-height: 292px;
    padding: 30px 20px 26px;
  }

  .webinar-cta-media {
    height: 300px;
  }

}

@media (max-width: 840px) {
  .mind-network-section {
    min-height: 780px;
    padding: 86px 22px 90px;
  }

  .mind-network-content h2 {
    max-width: 10ch;
    font-size: clamp(1.95rem, 9.4vw, 2.8rem);
  }

  .mind-venn {
    width: min(100%, 620px);
    margin-top: 34px;
  }

  .mind-venn-circle {
    border-width: 2px;
  }

  .mind-venn-circle span {
    font-size: clamp(0.66rem, 2.8vw, 1rem);
    letter-spacing: 0.08em;
  }

  .mind-venn-core {
    width: clamp(54px, 14vw, 76px);
  }

  .mind-flow-diagram {
    width: min(100%, 560px);
    height: 390px;
    margin-top: 34px;
  }

  .mind-flow-item {
    min-height: 44px;
    padding: 8px 13px;
    border-radius: 14px;
    font-size: clamp(0.88rem, 2.5vw, 1rem);
  }

  .mind-flow-item--frameworks {
    left: 4%;
    width: 190px;
  }

  .mind-flow-item--playbooks {
    right: 4%;
    width: 210px;
  }

  .mind-flow-item--tactics {
    left: 4%;
    width: 310px;
  }

  .mind-flow-item--community {
    right: 4%;
    width: 275px;
  }

  .mind-flow-item--mentors {
    left: 8%;
    width: 220px;
  }

  .mind-network-content p {
    max-width: 23ch;
    margin-top: 24px;
    font-size: clamp(1.25rem, 6vw, 1.95rem);
  }

  .mind-network-actions {
    margin-top: 38px;
  }

  .mind-network-button {
    min-height: 50px;
    font-size: 0.98rem;
  }
}

@media (max-width: 480px) {
  .mind-network-section {
    min-height: 680px;
    padding: 74px 16px 70px;
  }

  .mind-network-content h2 {
    font-size: clamp(1.95rem, 9.4vw, 2.8rem);
  }

  .mind-venn {
    width: min(100%, 390px);
    aspect-ratio: 1.05 / 1;
    margin-top: 28px;
  }

  .mind-venn-circle {
    width: 52%;
  }

  .mind-venn-neuro {
    left: 24%;
  }

  .mind-venn-therapy {
    left: 2%;
    bottom: 0;
  }

  .mind-venn-coaching {
    right: 2%;
    bottom: 0;
  }

  .mind-venn-circle span {
    font-size: clamp(0.58rem, 2.7vw, 0.74rem);
  }

  .mind-venn-core {
    top: 53%;
    width: 50px;
  }

  .mind-flow-diagram {
    width: min(100%, 257px);
    height: 286px;
    margin-top: 24px;
  }

  .mind-flow-item {
    min-height: 34px;
    gap: 6px;
    padding: 5px 8px;
    border-radius: 10px;
    font-size: 0.68rem;
  }

  .mind-flow-icon {
    width: 13px;
    font-size: 0.88em;
  }

  .mind-flow-item--frameworks {
    top: 0;
    left: 0;
    width: 104px;
  }

  .mind-flow-item--playbooks {
    top: 34px;
    right: 0;
    width: 112px;
  }

  .mind-flow-item--tactics {
    top: 100px;
    left: 0;
    width: 164px;
  }

  .mind-flow-item--community {
    top: 182px;
    right: 0;
    width: 148px;
  }

  .mind-flow-item--mentors {
    bottom: 0;
    left: 0;
    width: 122px;
  }

  .mind-network-content p {
    margin-top: 24px;
    font-size: 1.2rem;
  }

  .mind-network-actions {
    margin-top: 30px;
  }
}

.site-footer {
  padding: clamp(86px, 10vw, 150px) 28px 34px;
  background: #050505;
  color: #fff;
}

.site-footer-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
}

.site-footer-cta h2 {
  margin: 0;
  background: linear-gradient(90deg, #f4a6a0 0%, #ffd3b3 34%, #f4a6a0 66%, #ffd3b3 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-family: "Evolute DM Sans", sans-serif;
  font-size: clamp(2rem, 3.4vw, 3.75rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.035em;
  white-space: nowrap;
}

.site-footer-cta h2 strong {
  font-weight: 900;
}

.site-footer-subtitle {
  max-width: 760px;
  margin: -10px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-family: "Evolute DM Sans", sans-serif;
  line-height: 1.22;
}

.site-footer-subtitle span {
  display: block;
}

.site-footer-subtitle-main {
  font-size: clamp(1.08rem, 1.55vw, 1.55rem);
  font-weight: 650;
}

.site-footer-subtitle-formula {
  margin-top: 4px;
  background: linear-gradient(90deg, #f4a6a0, var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  font-family: "Evolute Raleway", sans-serif;
  font-size: clamp(0.95rem, 1.22vw, 1.16rem);
  font-weight: 500;
  letter-spacing: 0.01em;
  color: transparent;
}

.site-footer-subtitle-close {
  margin-top: 18px;
  font-size: clamp(1rem, 1.28vw, 1.24rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.84);
}

.site-footer-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 34px;
  border-radius: 999px;
  background: #fff;
  color: #050505;
  font-family: "Evolute DM Sans", sans-serif;
  font-size: clamp(1rem, 1.25vw, 1.22rem);
  font-weight: 800;
  text-decoration: none;
}

.site-footer-brand {
  width: min(100%, 1540px);
  margin: clamp(110px, 14vw, 210px) auto 0;
}

.site-footer-brand img {
  display: block;
  width: min(42vw, 520px);
  height: auto;
}

.site-footer-brand p {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-family: "Evolute Raleway", sans-serif;
  font-size: clamp(1.25rem, 2.2vw, 2.25rem);
  font-weight: 700;
  line-height: 1.14;
}

.site-footer-highlight {
  background: linear-gradient(135deg, var(--accent-alt), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.site-footer-bottom {
  width: min(100%, 1540px);
  margin: clamp(52px, 7vw, 92px) auto 0;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.76);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  color: rgba(255, 255, 255, 0.78);
  font-family: "Evolute Raleway", sans-serif;
  font-size: clamp(0.92rem, 1.18vw, 1.28rem);
}

.site-footer-bottom p {
  margin: 0;
}

.site-footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: clamp(18px, 3vw, 46px);
}

.site-footer-bottom a {
  color: inherit;
  text-decoration: none;
}

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

@media (max-width: 760px) {
  .site-footer {
    padding: 72px 20px 32px;
  }

  .site-footer-cta {
    gap: 22px;
  }

  .site-footer-cta h2 {
    font-size: clamp(2rem, 10.4vw, 3.15rem);
    white-space: normal;
  }

  .site-footer-subtitle {
    max-width: 320px;
    margin-top: -6px;
  }

  .site-footer-subtitle-main {
    font-size: 1.02rem;
  }

  .site-footer-subtitle-formula {
    font-size: 0.88rem;
  }

  .site-footer-subtitle-close {
    margin-top: 14px;
    font-size: 0.95rem;
  }

  .site-footer-button {
    min-height: 52px;
    padding: 0 28px;
    font-size: 1rem;
  }

  .site-footer-brand {
    margin-top: 96px;
  }

  .site-footer-brand img {
    width: min(82vw, 360px);
  }

  .site-footer-brand p {
    max-width: 340px;
    margin-top: 20px;
    font-size: clamp(1.08rem, 5.4vw, 1.42rem);
  }

  .site-footer-bottom {
    margin-top: 48px;
    padding-top: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    font-size: 0.94rem;
  }

  .site-footer-bottom nav {
    flex-direction: column;
    justify-content: flex-start;
    gap: 12px;
  }
}

/* Evolute model redesign start */
.evolute-model-section {
  min-height: auto;
  padding: clamp(82px, 7vw, 124px) 28px clamp(86px, 7vw, 124px);
}

.evolute-model-layout {
  position: relative;
  z-index: 2;
  width: min(100%, 1320px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(620px, 1.45fr);
  align-items: center;
  gap: clamp(42px, 5.4vw, 86px);
}

.evolute-model-copy {
  max-width: 430px;
  color: #050505;
}

.evolute-model-copy h2 {
  margin: 0;
  color: #050505;
  font-family: "Evolute Akzidenz", sans-serif;
  font-size: clamp(3.4rem, 6.3vw, 6.35rem);
  line-height: 0.94;
  letter-spacing: -0.055em;
}

.evolute-model-copy h2::after {
  content: "";
  width: 72px;
  height: 2px;
  display: block;
  margin-top: clamp(22px, 2vw, 30px);
  background: #050505;
}

.evolute-model-copy p {
  margin: 0;
  color: #050505;
  font-family: "Evolute DM Sans", sans-serif;
  letter-spacing: -0.02em;
}

.evolute-model-lead {
  max-width: 22ch;
  margin-top: clamp(30px, 3vw, 44px) !important;
  font-size: clamp(1.18rem, 1.8vw, 1.58rem);
  line-height: 1.28;
  font-weight: 500;
}

.evolute-model-body {
  max-width: 34ch;
  margin-top: clamp(28px, 3vw, 42px) !important;
  font-size: clamp(0.98rem, 1.15vw, 1.16rem);
  line-height: 1.48;
  font-weight: 400;
}

.evolute-model-visual {
  --map-size: clamp(560px, 53vw, 760px);
  --node-size: clamp(112px, 10.4vw, 150px);
  --center-size: clamp(148px, 13vw, 202px);
  position: relative;
  width: min(100%, var(--map-size));
  margin: 0 auto;
  padding-bottom: clamp(94px, 8vw, 118px);
}

.evolute-model-map {
  position: relative;
  width: var(--map-size);
  max-width: 100%;
  aspect-ratio: 1;
  margin: 0 auto;
}

.evolute-model-rings {
  position: absolute;
  inset: 4%;
  border: 1.6px solid rgba(5, 5, 5, 0.74);
  border-radius: 50%;
  background:
    repeating-radial-gradient(
      circle at center,
      transparent 0,
      transparent 42px,
      rgba(5, 5, 5, 0.11) 43px,
      transparent 44px
    );
}

.evolute-model-axis {
  position: absolute;
  z-index: 1;
  opacity: 0.62;
  pointer-events: none;
}

.evolute-model-axis-x {
  top: 50%;
  left: -4%;
  width: 108%;
  border-top: 1px dashed rgba(5, 5, 5, 0.45);
}

.evolute-model-axis-x::before,
.evolute-model-axis-x::after {
  content: "";
  position: absolute;
  top: -5px;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

.evolute-model-axis-x::before {
  left: 0;
  border-right: 9px solid #050505;
}

.evolute-model-axis-x::after {
  right: 0;
  border-left: 9px solid #050505;
}

.evolute-model-axis-y {
  left: 50%;
  top: 4%;
  height: 92%;
  border-left: 1px dashed rgba(5, 5, 5, 0.35);
}

.evolute-model-center {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 50%;
  width: var(--center-size);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 2px solid #050505;
  border-radius: 50%;
  background: rgba(247, 244, 240, 0.84);
  transform: translate(-50%, -50%);
}

.evolute-model-center img {
  width: 68%;
  height: auto;
  display: block;
  filter: invert(1);
}

.evolute-model-node {
  position: absolute;
  z-index: 5;
  width: var(--node-size);
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 20px 16px 15px;
  border-radius: 50%;
  background: #050505;
  color: #fff;
  font-family: "Evolute DM Sans", sans-serif;
  text-align: center;
  box-shadow:
    0 12px 24px rgba(5, 5, 5, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.14) inset;
  transform: translate(-50%, -50%);
}

.evolute-model-node::after {
  content: "";
  position: absolute;
  inset: -19%;
  z-index: -1;
  border: 2px solid rgba(5, 5, 5, 0.82);
  border-radius: 50%;
  clip-path: polygon(0 0, 100% 0, 100% 52%, 0 52%);
  opacity: 0.42;
  transform: rotate(32deg);
}

.evolute-model-number {
  position: absolute;
  top: -17px;
  left: 50%;
  width: clamp(34px, 3.2vw, 42px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1.7px solid #050505;
  border-radius: 50%;
  background: #fff;
  color: #050505;
  font-size: clamp(1rem, 1.4vw, 1.22rem);
  font-weight: 800;
  line-height: 1;
  transform: translateX(-50%);
}

.evolute-model-node strong {
  max-width: 10ch;
  color: #fff;
  font-size: clamp(0.78rem, 1.05vw, 1rem);
  font-weight: 700;
  line-height: 1.15;
}

.evolute-model-node small {
  max-width: 13ch;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(0.62rem, 0.78vw, 0.76rem);
  line-height: 1.2;
}

.evolute-model-node-1 {
  top: 4%;
  left: 50%;
}

.evolute-model-node-2 {
  top: 24%;
  left: 86%;
}

.evolute-model-node-3 {
  top: 72%;
  left: 86%;
}

.evolute-model-node-4 {
  top: 96%;
  left: 50%;
}

.evolute-model-node-5 {
  top: 72%;
  left: 14%;
}

.evolute-model-node-6 {
  top: 24%;
  left: 14%;
}

.evolute-model-statement {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(560px, 82%);
  padding: 16px 22px 18px;
  border: 1.8px solid #050505;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.72);
  color: #050505;
  font-family: "Evolute DM Sans", sans-serif;
  text-align: center;
  transform: translateX(-50%);
}

.evolute-model-statement p {
  margin: 0;
  color: #050505;
  font-size: clamp(1.03rem, 1.55vw, 1.35rem);
  line-height: 1.22;
  letter-spacing: -0.02em;
}

.evolute-model-statement p + p {
  margin-top: 4px;
}

@media (max-width: 980px) {
  .evolute-model-layout {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .evolute-model-copy {
    max-width: 620px;
    margin: 0 auto;
    text-align: center;
  }

  .evolute-model-copy h2::after {
    margin-right: auto;
    margin-left: auto;
  }

  .evolute-model-lead,
  .evolute-model-body {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .evolute-model-visual {
    --map-size: min(84vw, 620px);
    --node-size: clamp(92px, 15vw, 128px);
    --center-size: clamp(128px, 20vw, 174px);
  }
}

@media (max-width: 620px) {
  .evolute-model-section {
    padding: 70px 14px 82px;
  }

  .evolute-model-copy {
    text-align: center;
  }

  .evolute-model-copy h2 {
    font-size: clamp(3rem, 15vw, 4.9rem);
  }

  .evolute-model-lead {
    max-width: 25ch;
    font-size: clamp(1.06rem, 5vw, 1.28rem);
  }

  .evolute-model-body {
    max-width: 31ch;
    font-size: 0.94rem;
    line-height: 1.45;
  }

  .evolute-model-visual {
    --map-size: min(96vw, 430px);
    --node-size: clamp(72px, 22vw, 94px);
    --center-size: clamp(104px, 28vw, 126px);
    padding-bottom: 106px;
  }

  .evolute-model-rings {
    inset: 7%;
  }

  .evolute-model-axis-x {
    left: -1%;
    width: 102%;
  }

  .evolute-model-node {
    gap: 3px;
    padding: 17px 8px 10px;
  }

  .evolute-model-node strong {
    max-width: 9ch;
    font-size: clamp(0.6rem, 2.75vw, 0.74rem);
    line-height: 1.1;
  }

  .evolute-model-node small {
    max-width: 10ch;
    font-size: clamp(0.5rem, 2.25vw, 0.62rem);
    line-height: 1.12;
  }

  .evolute-model-number {
    top: -13px;
    width: 28px;
    font-size: 0.82rem;
  }

  .evolute-model-node-1 {
    top: 5%;
  }

  .evolute-model-node-2 {
    top: 25%;
    left: 87%;
  }

  .evolute-model-node-3 {
    top: 71%;
    left: 87%;
  }

  .evolute-model-node-4 {
    top: 94%;
  }

  .evolute-model-node-5 {
    top: 71%;
    left: 13%;
  }

  .evolute-model-node-6 {
    top: 25%;
    left: 13%;
  }

  .evolute-model-statement {
    width: min(92vw, 360px);
    padding: 13px 16px 15px;
    border-radius: 8px;
  }

  .evolute-model-statement p {
    font-size: clamp(0.94rem, 4.3vw, 1.1rem);
  }
}

@media (max-width: 380px) {
  .evolute-model-visual {
    --map-size: min(98vw, 350px);
    --node-size: 70px;
    --center-size: 96px;
  }

  .evolute-model-node strong {
    font-size: 0.58rem;
  }

  .evolute-model-node small {
    font-size: 0.48rem;
  }
}
/* Evolute model redesign end */

/* Evolute model quick fixes */
.evolute-model-node::after {
  display: none;
}

.evolute-model-visual {
  padding-bottom: clamp(150px, 12vw, 190px);
}

.evolute-model-statement {
  bottom: clamp(6px, 1vw, 12px);
}

@media (max-width: 620px) {
  .evolute-model-visual {
    padding-bottom: 150px;
  }

  .evolute-model-statement {
    bottom: 8px;
  }
}
/* Evolute model quick fixes end */
