@font-face {
  font-family: "Geist";
  src: url("assets/fonts/geist-variable.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Happy Times";
  src: url("assets/fonts/happy-time.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Happy Times Swash";
  src: url("assets/fonts/happy-time-three.otf") format("opentype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

:root {
  --ink: #222222;
  --muted: #56616d;
  --paper: #ffffff;
  --panel: #f3f2f0;
  --dark: #1f1f1f;
  --line: #e9ecef;
  --shadow: 0 28px 80px rgba(22, 22, 22, 0.12);
  --radius: 8px;
  --sans: "Geist", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  border-top: 8px solid var(--dark);
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.site-header {
  width: min(calc(100% - 96px), 1960px);
  min-height: 88px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.4vw, 40px);
  position: relative;
  z-index: 10;
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: clamp(188px, 15vw, 288px);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.1vw, 36px);
  margin-right: auto;
  font-size: clamp(15px, 1vw, 18px);
  font-weight: 760;
}

.main-nav > a,
.header-actions > a:not(.button) {
  color: #232323;
  font: inherit;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: clamp(18px, 1.8vw, 30px);
  font-size: clamp(15px, 1vw, 18px);
  font-weight: 760;
}

.button {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 24px;
  font-size: clamp(15px, 1vw, 18px);
  font-weight: 800;
}

.button-dark {
  background: var(--dark);
  border-color: var(--dark);
  color: #ffffff;
}

.button-light {
  background: #ffffff;
  border-color: #ffffff;
  color: #111111;
}

.button-glass {
  min-width: 214px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.28);
  color: #ffffff;
  backdrop-filter: blur(10px);
}

.menu-toggle {
  width: 44px;
  height: 44px;
  display: none;
  place-items: center;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  padding: 11px;
}

.menu-toggle span {
  width: 100%;
  height: 2px;
  background: var(--ink);
}

.hero {
  width: min(calc(100% - 72px), 1960px);
  height: clamp(560px, 45.8vw, 936px);
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
  border-radius: 8px;
  padding: clamp(42px, 5.2vw, 72px);
  background: var(--dark);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(18, 16, 13, 0.99) 0%, rgba(18, 16, 13, 0.97) 42%, rgba(18, 16, 13, 0.86) 60%, rgba(18, 16, 13, 0.28) 79%, rgba(18, 16, 13, 0.06) 100%),
    linear-gradient(180deg, rgba(18, 16, 13, 0.02) 0%, rgba(18, 16, 13, 0.17) 52%, rgba(18, 16, 13, 0.62) 100%);
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-copy {
  max-width: min(850px, 64vw);
  color: #ffffff;
}

.hero-copy h1 {
  max-width: 840px;
  margin: 0 0 clamp(22px, 2.1vw, 32px);
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: clamp(50px, 5.05vw, 96px);
  font-weight: 400;
  line-height: 0.89;
  letter-spacing: 0;
}

.hero-copy h1 span,
.hero-copy h1 em {
  display: block;
}

.hero-copy h1 em {
  font-style: italic;
}

.hero-copy p {
  max-width: 790px;
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(19px, 1.55vw, 30px);
  font-weight: 520;
  line-height: 1.32;
}

.hero-actions {
  margin-top: clamp(28px, 3vw, 44px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.trusted-section,
.statement-section,
.pillar-section,
.impact-heading-section,
.impact-card-section,
.challenge-section,
.system-section,
.practice-section,
.founders-section,
.faq-section {
  width: min(calc(100% - 96px), 1500px);
  margin: 0 auto;
}

.trusted-section {
  padding: clamp(58px, 6vw, 92px) 0 clamp(46px, 5vw, 76px);
  text-align: center;
}

.trusted-section p {
  margin: 0 0 clamp(38px, 4vw, 58px);
  color: #56616d;
  font-size: clamp(17px, 1.3vw, 23px);
  font-weight: 700;
}

.brand-strip {
  display: grid;
  grid-template-columns: repeat(9, minmax(80px, 1fr));
  align-items: center;
  gap: clamp(26px, 3vw, 56px);
}

.brand-strip img {
  width: 100%;
  max-width: 150px;
  max-height: 78px;
  justify-self: center;
  object-fit: contain;
  filter: none;
  opacity: 1;
}

.brand-strip .logo-tall {
  max-width: 86px;
}

.brand-strip .logo-wide {
  max-width: 172px;
}

.statement-section {
  padding: clamp(74px, 7vw, 126px) 0;
  text-align: center;
}

.statement-section h2 {
  max-width: 900px;
  margin: 0 auto;
  color: #242424;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: clamp(42px, 4.2vw, 72px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0;
}

.statement-section p {
  max-width: 900px;
  margin: clamp(22px, 2.4vw, 34px) auto 0;
  color: #56616d;
  font-size: clamp(20px, 1.7vw, 28px);
  font-weight: 560;
  line-height: 1.42;
  letter-spacing: 0;
}

.pillar-section {
  padding: 0 0 clamp(80px, 7vw, 130px);
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
}

.pillar-grid article {
  min-height: 320px;
  padding: clamp(26px, 2.4vw, 38px);
  border-radius: 8px;
  background: #f3f2f0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid rgba(36, 36, 36, 0.04);
}

.pillar-grid article:nth-child(1) {
  background: #e7f5e9;
}

.pillar-grid article:nth-child(2) {
  background: #dcedfb;
}

.pillar-grid article:nth-child(3) {
  background: #fff2c6;
}

.pillar-grid article:nth-child(4) {
  background: #ead1dc;
}

.pillar-grid span {
  margin-bottom: auto;
  color: rgba(36, 36, 36, 0.74);
  font-size: clamp(34px, 3vw, 48px);
  font-weight: 850;
  line-height: 1;
}

.pillar-grid h3 {
  margin: clamp(58px, 5vw, 86px) 0 12px;
  color: #252525;
  font-size: clamp(24px, 1.8vw, 32px);
  line-height: 1.08;
  font-weight: 850;
  letter-spacing: 0;
}

.pillar-grid p {
  margin: 0;
  color: #535353;
  font-size: clamp(18px, 1.35vw, 25px);
  font-weight: 520;
  line-height: 1.28;
  letter-spacing: 0;
}

.impact-heading-section {
  padding: clamp(72px, 7vw, 126px) 0;
  text-align: center;
}

.impact-heading-section h2 {
  max-width: 980px;
  margin: 0 auto;
  color: #242424;
  font-family: "Happy Times", Georgia, "Times New Roman", Times, serif;
  font-size: clamp(46px, 5vw, 84px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0;
}

.impact-heading-section em {
  font-family: "Happy Times Swash", "Happy Times", Georgia, "Times New Roman", Times, serif;
  font-style: italic;
}

.impact-card-section {
  padding: 0 0 clamp(86px, 8vw, 140px);
}

.impact-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 2.4vw, 34px);
}

.impact-card-grid article {
  min-height: clamp(520px, 42vw, 650px);
  padding: clamp(34px, 3.2vw, 48px);
  border-radius: 8px;
  background: #f3f2f0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.impact-card-visual {
  min-height: clamp(230px, 20vw, 320px);
  overflow: hidden;
  border-radius: 8px;
  background: #ffffff;
}

.impact-card-visual img {
  width: 100%;
  height: clamp(230px, 20vw, 320px);
  object-fit: cover;
  object-position: center;
}

.impact-card-copy img {
  width: min(230px, 82%);
  height: 54px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: clamp(20px, 2vw, 30px);
}

.impact-card-copy p {
  max-width: 460px;
  margin: 0 0 clamp(18px, 1.8vw, 26px);
  color: #505050;
  font-size: clamp(21px, 1.55vw, 29px);
  font-weight: 520;
  line-height: 1.28;
  letter-spacing: 0;
}

.impact-card-copy a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: fit-content;
  min-height: 48px;
  margin-top: 2px;
  padding: 0 18px;
  border-radius: 8px;
  background: #1f1f1f;
  color: #ffffff;
  font-size: 16px;
  font-weight: 850;
  line-height: 1;
  transition: transform 160ms ease, background-color 160ms ease;
}

.impact-card-copy a:hover,
.impact-card-copy a:focus-visible {
  background: #2b2b2b;
  transform: translateY(-1px);
}

.impact-card-copy a span {
  font-size: 20px;
  line-height: 1;
}

.challenge-section {
  padding: 0 0 clamp(90px, 8vw, 150px);
  display: grid;
  grid-template-columns: minmax(430px, 0.72fr) minmax(0, 1fr);
  gap: clamp(18px, 2vw, 28px);
  align-items: stretch;
}

.challenge-intro {
  min-height: 100%;
  position: relative;
  overflow: hidden;
  padding: clamp(42px, 4vw, 62px);
  border-radius: 8px;
  background: #1f1f1f;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.challenge-intro::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20, 19, 17, 0.58), rgba(20, 19, 17, 0.92)),
    linear-gradient(90deg, rgba(20, 19, 17, 0.82), rgba(20, 19, 17, 0.34)),
    url("assets/challenge-bg.jpg") center / cover no-repeat;
  opacity: 0.9;
  transform: scale(1.02);
  pointer-events: none;
}

.challenge-intro::after {
  content: "";
  position: absolute;
  top: -110px;
  right: -120px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  box-shadow:
    -110px 160px 0 -1px rgba(255, 255, 255, 0.04),
    -210px 300px 0 -2px rgba(255, 255, 255, 0.035);
  pointer-events: none;
}

.challenge-intro > * {
  position: relative;
  z-index: 1;
}

.challenge-intro h2 {
  max-width: 640px;
  margin: 0;
  font-family: "Happy Times", Georgia, "Times New Roman", Times, serif;
  font-size: clamp(52px, 5.2vw, 94px);
  line-height: 1.04;
  font-weight: 400;
  letter-spacing: 0;
}

.challenge-intro p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(20px, 1.55vw, 28px);
  line-height: 1.42;
  font-weight: 540;
}

.challenge-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(14px, 1.5vw, 22px);
}

.challenge-grid article {
  min-height: clamp(132px, 9.6vw, 172px);
  padding: clamp(22px, 2vw, 32px);
  border: 1px solid rgba(36, 36, 36, 0.04);
  border-radius: 8px;
  background: #f3f2f0;
  display: grid;
  grid-template-columns: clamp(56px, 4.6vw, 78px) minmax(0, 1fr) 34px;
  gap: clamp(18px, 2vw, 30px);
  align-items: center;
  cursor: pointer;
  outline: 0;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease,
    filter 220ms ease;
}

.challenge-grid article:hover,
.challenge-grid article:focus-visible,
.challenge-grid article.is-active {
  border-color: rgba(36, 36, 36, 0.11);
  box-shadow: 0 18px 46px rgba(31, 31, 31, 0.13);
  filter: saturate(1.04);
  transform: translateY(-5px) scale(1.01);
}

.challenge-grid article:active {
  transform: translateY(-2px) scale(1.006);
}

.challenge-grid article:nth-child(1) {
  background: linear-gradient(90deg, #e9f8ec 0%, #f7fcf8 100%);
  color: #242424;
}

.challenge-grid article:nth-child(2) {
  background: linear-gradient(90deg, #e7def1 0%, #fbf8ff 100%);
}

.challenge-grid article:nth-child(3) {
  background: linear-gradient(90deg, #dceefc 0%, #f5fbff 100%);
}

.challenge-grid article:nth-child(4) {
  background: linear-gradient(90deg, #fff1c9 0%, #fffaf0 100%);
}

.challenge-grid article:nth-child(5) {
  background: linear-gradient(90deg, #ead2dd 0%, #fff7fb 100%);
}

.challenge-grid article:nth-child(6) {
  background: linear-gradient(90deg, #edc0b6 0%, #fff4f1 100%);
}

.challenge-grid span {
  width: clamp(56px, 4.6vw, 78px);
  aspect-ratio: 1;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.64);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;
}

.challenge-grid article:hover span,
.challenge-grid article:focus-visible span,
.challenge-grid article.is-active span {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.72), 0 10px 22px rgba(31, 31, 31, 0.08);
  transform: scale(1.04);
}

.challenge-grid h3 {
  margin: 0 0 18px;
  color: inherit;
  font-size: clamp(24px, 1.8vw, 32px);
  line-height: 1.08;
  font-weight: 850;
  letter-spacing: 0;
}

.challenge-grid p {
  margin: 0;
  color: #535353;
  font-size: clamp(17px, 1.3vw, 22px);
  line-height: 1.38;
  font-weight: 540;
}

.challenge-grid b {
  justify-self: end;
  color: rgba(36, 36, 36, 0.38);
  font-size: clamp(26px, 2vw, 34px);
  line-height: 1;
  transition: transform 520ms ease, color 520ms ease;
}

.challenge-grid article.is-visible b {
  color: rgba(36, 36, 36, 0.5);
  transform: translateX(4px);
}

.challenge-grid article:hover b,
.challenge-grid article:focus-visible b,
.challenge-grid article.is-active b {
  color: rgba(36, 36, 36, 0.82);
  transform: translateX(12px);
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 760ms ease,
    transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.challenge-grid article.scroll-reveal {
  transform: translateY(18px) scale(0.985);
}

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

@media (prefers-reduced-motion: reduce) {
  .scroll-reveal,
  .challenge-grid article.scroll-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .challenge-grid article.is-visible b {
    transform: none;
  }

  .challenge-grid article:hover,
  .challenge-grid article:focus-visible,
  .challenge-grid article.is-active,
  .challenge-grid article:active {
    transform: none;
  }
}

.system-section {
  padding: clamp(82px, 8vw, 140px) 0 clamp(110px, 9vw, 170px);
}

.system-intro,
.metrics-intro {
  max-width: 1260px;
  margin: 0 auto clamp(60px, 6vw, 92px);
  text-align: center;
}

.system-intro h2,
.metrics-intro h2 {
  max-width: 1180px;
  margin: 0 auto clamp(26px, 2.8vw, 42px);
  color: #24262a;
  font-family: "Happy Times", Georgia, serif;
  font-size: clamp(56px, 5.6vw, 104px);
  line-height: 1.03;
  font-weight: 400;
  letter-spacing: 0;
}

.system-intro p,
.metrics-intro p {
  max-width: 1180px;
  margin: 0 auto;
  color: #5a6470;
  font-size: clamp(21px, 1.75vw, 30px);
  line-height: 1.42;
  font-weight: 560;
}

.system-use-grid {
  margin: 0 auto clamp(96px, 9vw, 150px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(26px, 4vw, 68px);
}

.system-use-grid article {
  min-width: 0;
}

.system-use-grid span {
  width: clamp(78px, 7vw, 112px);
  aspect-ratio: 1;
  margin-bottom: clamp(34px, 3.8vw, 58px);
  display: grid;
  place-items: center;
  border: 1px solid #e1e6ec;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(31, 31, 31, 0.08);
  color: #24262a;
  font-size: clamp(34px, 3vw, 48px);
  font-weight: 850;
  line-height: 1;
}

.system-use-grid h3 {
  margin: 0 0 18px;
  color: #24262a;
  font-size: clamp(23px, 1.65vw, 31px);
  line-height: 1.12;
  font-weight: 880;
  letter-spacing: 0;
}

.system-use-grid p {
  max-width: 360px;
  margin: 0;
  color: #555d66;
  font-size: clamp(18px, 1.35vw, 24px);
  line-height: 1.36;
  font-weight: 520;
}

.system-loop {
  --loop-size: min(650px, 52vw);
  width: min(100%, 1120px);
  min-height: 780px;
  margin: 0 auto clamp(96px, 9vw, 150px);
  position: relative;
}

.loop-orbit {
  width: var(--loop-size);
  aspect-ratio: 1;
  position: absolute;
  left: 50%;
  top: 54%;
  border-radius: 50%;
  background:
    conic-gradient(
      from -6deg,
      #6bb8ed 0deg 64deg,
      transparent 64deg 78deg,
      #76af87 78deg 144deg,
      transparent 144deg 158deg,
      #f7a22f 158deg 218deg,
      transparent 218deg 232deg,
      #df897f 232deg 298deg,
      transparent 298deg 312deg,
      #aa78a2 312deg 360deg
    );
  -webkit-mask: radial-gradient(circle, transparent 0 52%, #000 53% 62%, transparent 63%);
  mask: radial-gradient(circle, transparent 0 52%, #000 53% 62%, transparent 63%);
  transform: translate(-50%, -50%);
}

.loop-center {
  width: min(190px, calc(var(--loop-size) * 0.3));
  aspect-ratio: 1;
  position: absolute;
  left: 50%;
  top: 54%;
  display: grid;
  place-items: center;
  border: 1px solid #e1eef8;
  border-radius: 50%;
  background:
    radial-gradient(circle, #ffffff 0 58%, transparent 59%),
    repeating-radial-gradient(circle, #e1eef8 0 1px, transparent 1px 32px);
  transform: translate(-50%, -50%);
}

.loop-center strong {
  color: #242424;
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
}

.loop-card {
  width: clamp(300px, 27vw, 370px);
  min-height: 146px;
  position: absolute;
  z-index: 1;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  padding: 26px 30px;
  border-radius: 8px;
  background: #e5f2fc;
}

.loop-card span {
  width: 58px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #6bb8ed;
  color: #ffffff;
  font-size: 22px;
  font-weight: 850;
  line-height: 1;
}

.loop-card h3 {
  margin: 0 0 12px;
  color: #24262a;
  font-size: clamp(24px, 1.9vw, 32px);
  line-height: 1.08;
  font-weight: 880;
  letter-spacing: 0;
}

.loop-card p {
  margin: 0;
  color: #4f5964;
  font-size: clamp(18px, 1.35vw, 24px);
  line-height: 1.24;
  font-weight: 540;
}

.loop-card-1 {
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

.loop-card-2 {
  right: 20px;
  top: 190px;
  background: #e5f0ea;
}

.loop-card-2 span {
  background: #70ad82;
}

.loop-card-3 {
  right: 170px;
  bottom: 38px;
  background: #fff0d2;
}

.loop-card-3 span {
  background: #f8a22f;
}

.loop-card-4 {
  left: 170px;
  bottom: 38px;
  background: #f8dfdb;
}

.loop-card-4 span {
  background: #df897f;
}

.loop-card-5 {
  left: 0;
  top: 190px;
  background: #eaddea;
}

.loop-card-5 span {
  background: #aa78a2;
}

.practice-section {
  padding: clamp(74px, 7vw, 126px) 0 clamp(110px, 9vw, 160px);
}

.practice-header {
  margin-bottom: clamp(44px, 5vw, 82px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.practice-header h2 {
  margin: 0;
  color: #242424;
  font-family: "Happy Times", Georgia, "Times New Roman", Times, serif;
  font-size: clamp(46px, 5vw, 78px);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: 0;
}

.practice-header a {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex: 0 0 auto;
  padding: 0 22px;
  border: 1px solid #e3e5e8;
  border-radius: 8px;
  background: #ffffff;
  color: #1f1f1f;
  font-size: 18px;
  font-weight: 850;
  line-height: 1;
}

.practice-header a span {
  font-size: 22px;
}

.practice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 2.4vw, 34px);
}

.practice-grid article {
  min-height: 500px;
  padding: 24px;
  border: 1px solid #eceff2;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 4px 18px rgba(21, 21, 21, 0.06);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.practice-grid img {
  width: 100%;
  aspect-ratio: 1.6 / 1;
  border-radius: 8px;
  object-fit: cover;
  object-position: center;
  margin-bottom: 30px;
}

.practice-grid span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  border: 1px solid #dfe2e5;
  border-radius: 999px;
  color: #5a5f65;
  font-size: 16px;
  font-weight: 560;
  line-height: 1;
}

.practice-grid h3 {
  margin: 22px 0 14px;
  color: #242424;
  font-size: clamp(25px, 2vw, 34px);
  line-height: 1.12;
  font-weight: 850;
  letter-spacing: 0;
}

.practice-grid p {
  margin: 0;
  color: #535d68;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 520;
}

.practice-using {
  width: 100%;
  margin-top: auto;
  padding-top: 26px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
}

.practice-using img {
  width: auto;
  max-width: 170px;
  height: 28px;
  margin: 0;
  border-radius: 0;
  object-fit: contain;
  object-position: left center;
}

.founders-section {
  padding: clamp(76px, 8vw, 140px) 0 clamp(110px, 9vw, 170px);
}

.founders-heading {
  margin-bottom: clamp(54px, 6vw, 92px);
  text-align: center;
}

.founders-heading h2 {
  max-width: 1120px;
  margin: 0 auto clamp(26px, 3vw, 42px);
  color: #24262a;
  font-family: "Happy Times", Georgia, "Times New Roman", Times, serif;
  font-size: clamp(76px, 8.4vw, 152px);
  line-height: 0.98;
  font-weight: 400;
  letter-spacing: 0;
}

.founders-heading p {
  max-width: 1180px;
  margin: 0 auto;
  color: #5a6470;
  font-size: clamp(22px, 2vw, 36px);
  line-height: 1.42;
  font-weight: 560;
}

.founder-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 2.4vw, 34px);
}

.founder-card {
  min-height: 640px;
  padding: clamp(26px, 2.6vw, 40px);
  border-radius: 8px;
  background: #f3f9ff;
  text-align: center;
}

.founder-photo {
  height: clamp(330px, 30vw, 450px);
  position: relative;
  margin-bottom: clamp(28px, 3vw, 44px);
  display: grid;
  place-items: center;
}

.founder-mark {
  width: min(390px, 88%);
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 0;
  transform: translate(-50%, -50%);
}

.founder-portrait {
  width: min(255px, 62%);
  position: relative;
  z-index: 1;
  border-radius: 50%;
}

.founder-linkedin {
  width: 48px;
  aspect-ratio: 1;
  position: absolute;
  right: 16%;
  bottom: 8%;
  z-index: 2;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #ffffff;
  color: #1f1f1f;
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
}

.founder-card h3 {
  margin: 0 0 16px;
  color: #202226;
  font-size: clamp(30px, 2.5vw, 42px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: 0;
}

.founder-card p {
  max-width: 410px;
  margin: 0 auto 24px;
  color: #5a6470;
  font-size: clamp(18px, 1.3vw, 24px);
  line-height: 1.36;
  font-weight: 560;
}

.founder-profile {
  display: inline-flex;
  color: #07145d;
  border-bottom: 1px solid currentColor;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.2;
}

.founder-card-blue .founder-profile {
  color: #07145d;
}

.founder-card-orange {
  background: #fff9ee;
}

.founder-card-orange .founder-profile {
  color: #07145d;
  border-color: #f8a22f;
}

.founder-card-purple {
  background: #f8f6fb;
}

.founder-card-purple .founder-profile {
  color: #07145d;
  border-color: #aa78a2;
}

.faq-section {
  padding: clamp(72px, 7vw, 128px) 0 clamp(76px, 7vw, 120px);
  display: grid;
  grid-template-columns: minmax(300px, 0.76fr) minmax(0, 1.4fr);
  gap: clamp(48px, 7vw, 120px);
  align-items: start;
}

.faq-intro {
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.faq-intro h2 {
  max-width: 500px;
  margin: 0;
  color: #222429;
  font-size: clamp(56px, 6.2vw, 112px);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: 0;
}

.faq-intro p {
  margin: 0 0 32px;
  color: #5d6875;
  font-size: clamp(18px, 1.4vw, 24px);
  line-height: 1.4;
  font-weight: 560;
}

.faq-intro a {
  min-height: 58px;
  padding: 0 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 1px solid #d9dee4;
  border-radius: 8px;
  color: #222429;
  background: #ffffff;
  font-size: 18px;
  font-weight: 900;
}

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

.faq-item {
  overflow: hidden;
  border-radius: 8px;
  background: #f4f9fd;
}

.faq-item button {
  width: 100%;
  min-height: 88px;
  padding: 24px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 0;
  background: transparent;
  color: #24262a;
  text-align: left;
  font: inherit;
  cursor: pointer;
}

.faq-item button span {
  font-size: clamp(18px, 1.45vw, 24px);
  line-height: 1.2;
  font-weight: 900;
}

.faq-item button b {
  width: 28px;
  aspect-ratio: 1;
  position: relative;
  flex: 0 0 auto;
}

.faq-item button b::before,
.faq-item button b::after {
  content: "";
  width: 100%;
  height: 3px;
  position: absolute;
  inset: 50% auto auto 0;
  border-radius: 999px;
  background: #222429;
  transform: translateY(-50%);
  transition: transform 180ms ease;
}

.faq-item button b::after {
  transform: translateY(-50%) rotate(90deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 220ms ease, padding 220ms ease;
}

.faq-answer p {
  max-width: 760px;
  margin: 0;
  padding: 0 30px 28px;
  color: #5d6875;
  font-size: clamp(17px, 1.2vw, 21px);
  line-height: 1.5;
  font-weight: 560;
}

.faq-item.is-open .faq-answer {
  max-height: 180px;
}

.faq-item.is-open button b::after {
  transform: translateY(-50%) rotate(0deg);
}

.closing-cta-section {
  width: min(calc(100% - 32px), 1960px);
  margin: 0 auto clamp(24px, 3vw, 56px);
}

.closing-cta {
  min-height: clamp(520px, 43vw, 830px);
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  border-radius: 8px;
  padding: clamp(42px, 7vw, 96px);
  text-align: center;
  background: #1f1f1f;
}

.closing-cta::before,
.closing-cta::after {
  content: "";
  position: absolute;
  inset: 0;
}

.closing-cta::before {
  background: url("assets/consult-placeholder.png") center / cover no-repeat;
  filter: blur(2px);
  opacity: 0.85;
  transform: scale(1.04);
}

.closing-cta::after {
  background:
    radial-gradient(circle at center, rgba(28, 27, 24, 0.2), rgba(28, 27, 24, 0.74) 62%, rgba(15, 15, 14, 0.88)),
    linear-gradient(180deg, rgba(17, 17, 16, 0.32), rgba(17, 17, 16, 0.82));
}

.closing-cta-copy {
  width: min(1120px, 100%);
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
}

.closing-cta h2 {
  margin: 0;
  color: #ffffff;
  font-family: "Happy Times Swash", "Happy Times", Georgia, serif;
  font-size: clamp(56px, 6vw, 112px);
  font-style: italic;
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: 0;
  text-wrap: balance;
}

.closing-cta h2 em {
  color: #e5f5ff;
  font-style: inherit;
}

.closing-cta p {
  max-width: 1120px;
  margin: clamp(34px, 4vw, 62px) auto 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(21px, 1.7vw, 34px);
  line-height: 1.38;
  font-weight: 720;
}

.closing-cta-actions {
  margin-top: clamp(34px, 3.8vw, 58px);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.closing-cta-actions .button {
  min-width: 190px;
  min-height: 70px;
  padding: 0 30px;
  color: #07145d;
  font-size: clamp(20px, 1.35vw, 26px);
  font-weight: 900;
}

.closing-cta-actions .button-glass {
  min-width: 188px;
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(255, 255, 255, 0.35);
  color: #07145d;
}

.closing-cta-cursor {
  width: 26px;
  height: 34px;
  margin-top: clamp(28px, 3vw, 52px);
  position: relative;
  display: block;
  transform: rotate(-18deg);
}

.closing-cta-cursor::before {
  content: "";
  width: 18px;
  height: 28px;
  position: absolute;
  left: 3px;
  top: 0;
  background: #ffffff;
  clip-path: polygon(0 0, 100% 55%, 58% 62%, 82% 100%, 63% 100%, 42% 66%, 0 93%);
  filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.55));
}

.closing-cta-cursor::after {
  content: "";
  width: 9px;
  height: 17px;
  position: absolute;
  left: 8px;
  top: 5px;
  background: #202124;
  clip-path: polygon(0 0, 100% 55%, 52% 61%, 82% 100%, 63% 100%, 37% 65%, 0 88%);
}

.site-footer {
  width: min(calc(100% - 96px), 1500px);
  margin: 0 auto;
  padding: clamp(70px, 7vw, 100px) 0 56px;
  border-top: 1px solid #dfe6ee;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(300px, 1.35fr) repeat(3, minmax(150px, 0.72fr));
  gap: clamp(44px, 7vw, 110px);
  align-items: start;
}

.footer-brand img {
  width: min(420px, 100%);
  margin-bottom: 30px;
}

.footer-brand p {
  max-width: 350px;
  margin: 0;
  color: #5d6875;
  font-size: clamp(20px, 1.55vw, 26px);
  line-height: 1.42;
  font-weight: 500;
}

.footer-brand p + p {
  margin-top: 42px;
}

.footer-demo {
  min-height: 62px;
  margin: clamp(58px, 6vw, 88px) 0 0;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d7dde6;
  border-radius: 8px;
  color: #24262a;
  background: #ffffff;
  font-size: clamp(18px, 1.35vw, 24px);
  font-weight: 900;
}

.footer-column {
  display: grid;
  gap: 18px;
}

.footer-column h2 {
  margin: 0 0 18px;
  color: #24262a;
  font-size: clamp(20px, 1.4vw, 26px);
  line-height: 1.2;
  font-weight: 900;
}

.footer-column a {
  color: #5d6875;
  font-size: clamp(19px, 1.45vw, 26px);
  line-height: 1.28;
  font-weight: 520;
}

.footer-bottom {
  margin-top: clamp(86px, 9vw, 150px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  color: #7a8592;
  font-size: clamp(18px, 1.25vw, 24px);
  line-height: 1.4;
  font-weight: 500;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom div {
  display: flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 1040px) {
  .site-header {
    width: min(calc(100% - 48px), 1960px);
  }

  .main-nav,
  .header-actions {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  body.nav-open .main-nav,
  body.nav-open .header-actions {
    position: fixed;
    left: 24px;
    right: 24px;
    z-index: 50;
    display: flex;
    background: #ffffff;
    border: 1px solid var(--line);
  }

  body.nav-open .main-nav {
    top: 92px;
    flex-direction: column;
    align-items: stretch;
    padding: 22px;
    border-radius: 8px 8px 0 0;
  }

  body.nav-open .header-actions {
    top: 462px;
    align-items: flex-start;
    padding: 0 22px 22px;
    border-top: 0;
    border-radius: 0 0 8px 8px;
  }

  .hero {
    width: min(calc(100% - 40px), 1960px);
    height: clamp(560px, 76vh, 720px);
    padding: 42px;
  }

  .hero-copy {
    max-width: 720px;
  }

  .trusted-section,
  .statement-section,
  .pillar-section,
  .impact-heading-section,
  .impact-card-section,
  .challenge-section,
  .system-section,
  .practice-section,
  .founders-section,
  .faq-section {
    width: min(calc(100% - 48px), 1500px);
  }

  .brand-strip {
    grid-template-columns: repeat(3, minmax(100px, 1fr));
  }

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

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

  .impact-card-grid article {
    min-height: 420px;
  }

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

  .challenge-intro {
    min-height: 420px;
  }

  .system-loop {
    --loop-size: min(470px, 82vw);
    min-height: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    padding-top: calc(var(--loop-size) + 36px);
  }

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

  .loop-orbit {
    top: 0;
    transform: translateX(-50%);
  }

  .loop-center {
    top: calc(var(--loop-size) / 2);
    transform: translate(-50%, -50%);
  }

  .loop-card,
  .loop-card-1,
  .loop-card-2,
  .loop-card-3,
  .loop-card-4,
  .loop-card-5 {
    width: auto;
    min-height: 140px;
    position: relative;
    inset: auto;
    transform: none;
  }

  .practice-grid {
    grid-template-columns: 1fr;
  }

  .practice-grid article {
    min-height: auto;
  }

  .founders-heading,
  .founder-grid,
  .faq-section {
    grid-template-columns: 1fr;
  }

  .faq-intro {
    min-height: 0;
    gap: 40px;
  }

  .closing-cta-section {
    width: min(calc(100% - 48px), 1960px);
  }

  .site-footer {
    width: min(calc(100% - 48px), 1500px);
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

}

@media (max-width: 680px) {
  body {
    border-top-width: 6px;
  }

  .site-header {
    width: min(calc(100% - 28px), 1960px);
    min-height: 76px;
  }

  .brand img {
    width: min(190px, 62vw);
  }

  .hero {
    width: min(calc(100% - 24px), 1960px);
    height: min(680px, calc(100vh - 104px));
    min-height: 580px;
    padding: 24px;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(18, 16, 13, 0.18) 0%, rgba(18, 16, 13, 0.52) 34%, rgba(18, 16, 13, 0.9) 100%),
      linear-gradient(90deg, rgba(18, 16, 13, 0.74), rgba(18, 16, 13, 0.2));
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-copy h1 {
    font-size: clamp(42px, 12.5vw, 58px);
    line-height: 0.92;
  }

  .hero-copy p {
    font-size: 18px;
  }

  .hero-actions {
    align-items: stretch;
    gap: 12px;
  }

  .button {
    min-height: 52px;
  }

  .trusted-section,
  .statement-section,
  .pillar-section,
  .impact-heading-section,
  .impact-card-section,
  .challenge-section,
  .system-section,
  .practice-section,
  .founders-section,
  .faq-section {
    width: min(calc(100% - 28px), 1500px);
  }

  .brand-strip {
    grid-template-columns: repeat(2, minmax(110px, 1fr));
  }

  .pillar-grid {
    grid-template-columns: 1fr;
  }

  .pillar-grid article {
    min-height: 260px;
  }

  .impact-card-grid article {
    min-height: 360px;
    padding: 26px;
  }

  .impact-card-visual {
    min-height: 160px;
  }

  .challenge-grid {
    grid-template-columns: 1fr;
  }

  .challenge-intro,
  .challenge-grid article {
    min-height: auto;
  }

  .system-loop {
    --loop-size: min(300px, 82vw);
    grid-template-columns: 1fr;
    gap: 14px;
    padding-top: calc(var(--loop-size) + 28px);
  }

  .system-use-grid {
    grid-template-columns: 1fr;
  }

  .system-use-grid span {
    margin-bottom: 24px;
  }

  .loop-card {
    grid-template-columns: 50px minmax(0, 1fr);
    padding: 22px;
  }

  .loop-card span {
    width: 50px;
  }

  .practice-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .founders-heading h2 {
    font-size: clamp(46px, 13vw, 68px);
  }

  .founder-card {
    min-height: auto;
  }

  .closing-cta-section {
    width: min(calc(100% - 24px), 1960px);
  }

  .closing-cta {
    min-height: 560px;
    padding: 34px 22px;
  }

  .closing-cta h2 {
    font-size: clamp(42px, 12vw, 60px);
  }

  .closing-cta p {
    font-size: 18px;
  }

  .closing-cta-actions {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
  }

  .closing-cta-actions .button {
    width: 100%;
    min-height: 58px;
  }

  .site-footer {
    width: min(calc(100% - 28px), 1500px);
    padding-top: 54px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .footer-brand img {
    width: min(310px, 100%);
  }

  .footer-demo {
    width: 100%;
    margin-top: 36px;
  }

  .footer-brand p + p {
    margin-top: 30px;
  }

  .footer-bottom {
    margin-top: 64px;
  }

  .footer-bottom div {
    flex-wrap: wrap;
  }
}
