:root {
  --mosaic-green: #2fb344;
  --mosaic-teal: #008978;
  --ink: #212529;
  --body: #4f565f;
  --muted: #6c757d;
  --line: #e9ecef;
  --soft: #f7faf8;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(33, 37, 41, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: "Plus Jakarta Sans", Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.wrap {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.nav {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.logo {
  width: 132px;
  flex: 0 0 auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  font-weight: 700;
  color: #2e2e2e;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a[aria-current="page"] {
  color: var(--mosaic-green);
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--mosaic-green);
  border-radius: 9px;
  background: var(--mosaic-green);
  color: var(--white);
  padding: 0 18px;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(47, 179, 68, 0.24);
}

.button.secondary {
  background: var(--white);
  color: var(--mosaic-green);
  box-shadow: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.95fr);
  gap: 46px;
  align-items: center;
  padding: 28px 0 44px;
}

.hero h1,
.page-hero h1 {
  margin: 0 0 18px;
  font-size: clamp(2.5rem, 3.75vw, 3.35rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
  font-weight: 500;
}

.hero h1 span,
.page-hero h1 span {
  color: var(--mosaic-green);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--mosaic-green);
  font-weight: 800;
}

.lead {
  max-width: 690px;
  margin: 0 0 28px;
  color: var(--body);
  font-size: clamp(1.1rem, 1.55vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-media {
  position: relative;
}

.hero-media img {
  width: 100%;
  aspect-ratio: 1.12;
  object-fit: cover;
  border-radius: 0 0 0 76px;
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--line);
  box-shadow: var(--shadow);
}

.fact {
  min-height: 132px;
  padding: 22px;
  background: var(--white);
}

.fact b {
  display: block;
  color: var(--mosaic-green);
  font-size: 2.15rem;
  line-height: 1;
  letter-spacing: -0.04em;
}

.fact span {
  display: block;
  margin-top: 10px;
  color: var(--body);
  font-weight: 700;
}

section {
  padding: 74px 0;
}

.soft {
  background: var(--soft);
}

.section-head {
  display: grid;
  grid-template-columns: 0.42fr 1fr;
  gap: 54px;
  align-items: start;
  margin-bottom: 32px;
}

.section-head h2,
.page-hero h1 {
  margin-top: 0;
}

.section-head h2 {
  margin-bottom: 0;
  font-size: clamp(2.1rem, 4vw, 3.8rem);
  line-height: 1.06;
  letter-spacing: -0.035em;
  font-weight: 520;
}

.section-head p {
  max-width: 760px;
  margin: 0;
  color: var(--body);
  font-size: 1.08rem;
}

.grid-3,
.grid-4,
.grid-2 {
  display: grid;
  gap: 18px;
}

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

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

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

.card {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  padding: 24px;
}

.card h3 {
  margin: 0 0 10px;
  font-size: 1.28rem;
}

.card p {
  margin: 0;
  color: var(--body);
}

.assumption {
  border-left: 5px solid var(--mosaic-green);
}

.assumption p:first-child {
  margin-bottom: 16px;
  color: var(--muted);
  text-decoration: line-through;
}

.assumption strong {
  display: block;
  font-size: 1.26rem;
}

.steps {
  counter-reset: step;
}

.step {
  position: relative;
}

.step::before {
  counter-increment: step;
  content: "0" counter(step);
  display: block;
  margin-bottom: 42px;
  color: var(--mosaic-green);
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.notice {
  margin-top: 24px;
  padding: 22px 24px;
  border-radius: 18px;
  background: #eaf7ed;
  color: #1d6230;
  font-weight: 700;
}

.page-hero {
  padding: 72px 0 40px;
}

.page-hero p {
  max-width: 820px;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: start;
}

.panel {
  border-radius: 24px;
  background: var(--mosaic-green);
  color: var(--white);
  padding: 34px;
}

.panel h2 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
  font-weight: 520;
}

.panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.08rem;
}

.function-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.function {
  min-height: 164px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
}

.function h3 {
  margin: 0 0 8px;
  font-size: 1.06rem;
}

.function p {
  margin: 0;
  color: var(--body);
  font-size: 0.94rem;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--line);
}

.moment {
  min-height: 270px;
  padding: 24px;
  background: var(--white);
}

.moment b {
  display: block;
  margin-bottom: 16px;
  color: var(--mosaic-green);
  font-size: 2rem;
  font-weight: 520;
}

.moment p {
  margin: 0;
  color: var(--body);
}

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

details {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
}

summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 22px;
  font-weight: 800;
}

summary::-webkit-details-marker {
  display: none;
}

details p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--body);
}

.site-footer {
  padding: 42px 0;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
}

.footer-inner img {
  width: 136px;
}

:focus-visible {
  outline: 3px solid var(--mosaic-green);
  outline-offset: 3px;
}

@media (max-width: 980px) {
  .hero,
  .section-head,
  .split {
    grid-template-columns: 1fr;
  }

  .grid-3,
  .grid-4,
  .grid-2,
  .function-list,
  .timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-media img {
    aspect-ratio: 1.55;
    border-radius: 0 0 0 44px;
  }
}

@media (max-width: 680px) {
  .wrap {
    width: min(100% - 28px, 1180px);
  }

  .nav {
    min-height: auto;
    padding: 16px 0;
    align-items: flex-start;
  }

  .nav-links {
    gap: 14px;
    flex-wrap: wrap;
    justify-content: flex-end;
    font-size: 0.92rem;
  }

  .logo {
    width: 112px;
  }

  .hero {
    padding: 46px 0 48px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2.65rem, 13vw, 4rem);
  }

  section {
    padding: 52px 0;
  }

  .quick-facts,
  .grid-3,
  .grid-4,
  .grid-2,
  .function-list,
  .timeline {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .footer-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }
}

.brand-line {
  margin: 0;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 800;
}

.copy-stack {
  display: grid;
  gap: 14px;
}

.copy-stack h3,
.copy-stack p,
.copy-stack h2 {
  margin: 0;
}

.copy-stack p {
  color: var(--body);
}

.lead-block {
  max-width: 920px;
}

.lead-block h2 {
  color: var(--mosaic-green);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
  font-weight: 520;
}

.section-head.single {
  display: block;
}

.section-head.single h2 {
  max-width: 940px;
}

.section-head.single p {
  margin-top: 12px;
}

.subsection-title {
  margin: 0 0 20px;
  font-size: 1.45rem;
}

.fellow-card {
  min-height: 180px;
}

.step-card span {
  display: block;
  margin-bottom: 28px;
  color: var(--mosaic-green);
  font-size: 2rem;
  line-height: 1;
  font-weight: 520;
  letter-spacing: -0.04em;
}

.list-card {
  display: grid;
  gap: 16px;
  font-size: 1.2rem;
  font-weight: 800;
}

.list-card p {
  margin: 0;
  color: var(--ink);
}

.timeline.timeline-wide {
  grid-template-columns: repeat(3, 1fr);
}

.timeline-wide .moment {
  min-height: 420px;
}

.moment p + p {
  margin-top: 12px;
}

.after-year {
  margin-top: 18px;
}

@media (max-width: 980px) {
  .timeline.timeline-wide {
    grid-template-columns: 1fr;
  }

  .timeline-wide .moment {
    min-height: auto;
  }
}

.brand-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 8px;
}

.logo-tile {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  padding: 10px 18px;
  color: var(--ink);
  font-weight: 900;
  letter-spacing: -0.03em;
  box-shadow: 0 8px 24px rgba(33, 37, 41, 0.06);
}

.logo-tile.image-logo {
  width: 178px;
  padding: 11px 18px;
}

.logo-tile.image-logo img {
  width: 132px;
  height: auto;
}

.logo-man {
  color: #12312f;
}

.logo-bodywise {
  color: #83386f;
}

.logo-littlejoys {
  color: #f58220;
}

.logo-root {
  color: #315f38;
}

.logo-absolute {
  color: #1f3f7a;
}

.logo-tile.image-logo.brand-logo {
  width: 148px;
  height: 58px;
  padding: 8px 14px;
}

.logo-tile.image-logo.wide-logo {
  width: 172px;
}

.logo-tile.image-logo.mw-logo {
  width: 164px;
  height: 58px;
}

.logo-tile.image-logo.brand-logo img,
.logo-tile.image-logo.mw-logo img {
  width: 100%;
  max-height: 38px;
  object-fit: contain;
}
