:root {
  --black: #000000;
  --white: #ffffff;
  --gray: #808080;
  --line: #cccccc;
  --soft-line: #eaeaea;
  --blue: #e8eefd;
  --green: #cff665;
  --page-padding: clamp(24px, 6.25vw, 120px);
  --grid-width: min(1680px, calc(100vw - var(--page-padding) - var(--page-padding)));
  --shell: var(--grid-width);
  --grid-gap: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  min-height: 100vh;
  margin: 0;
  color: var(--black);
  overflow-x: hidden;
  background: var(--white);
  font-family: Geist, Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.35;
  letter-spacing: 0;
  text-rendering: geometricPrecision;
}

.site-grid {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 0;
  width: var(--grid-width);
  height: 100%;
  min-height: 1527px;
  pointer-events: none;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: var(--grid-gap);
}

.site-grid span {
  border-right: 1px solid #e5e5e5;
  border-left: 1px solid #e5e5e5;
}

body > * {
  position: relative;
  z-index: 1;
}

body.menu-open {
  overflow: hidden;
}

body.legal-template .site-grid {
  display: none;
}

body.legal-template .shell {
  display: block;
}

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

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

.shell {
  width: var(--shell);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: var(--grid-gap);
}

.shell > * {
  grid-column: 1 / -1;
  min-width: 0;
}

.section {
  padding: 120px 0;
}

.site-header {
  position: sticky;
  top: 24px;
  z-index: 30;
  width: var(--shell);
  height: 74px;
  margin: 24px auto 0;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: center;
  column-gap: var(--grid-gap);
  padding: 8px 8px 8px 24px;
  background: rgba(255, 255, 255, 0.5);
  border: 0;
  border-radius: 24px;
  box-shadow: 0 4px 250px 50px rgba(207, 246, 101, 0.2);
  backdrop-filter: blur(80px);
  -webkit-backdrop-filter: blur(80px);
  transition:
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 220ms ease;
  isolation: isolate;
  will-change: transform;
}

.site-header.is-hidden {
  opacity: 0;
  transform: translateY(calc(-100% - 32px));
}

.logo {
  grid-column: 1 / span 1;
  display: block;
  width: auto;
  height: 40px;
  position: relative;
  justify-self: start;
}

.logo img {
  width: auto;
  height: 40px;
  object-fit: contain;
}

.logo span {
  display: none;
}

.main-nav {
  grid-column: 4 / span 5;
  display: flex;
  justify-content: center;
  gap: 32px;
  width: 634px;
  justify-self: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 18px;
}

.main-nav a {
  display: flex;
  height: 18px;
  align-items: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 18px;
  white-space: nowrap;
}

.mobile-nav-cta {
  display: none !important;
}

.header-cta {
  grid-column: 10 / span 3;
  justify-self: end;
  width: fit-content;
  min-width: 0;
}

.button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 20px 24px;
  border: 0;
  outline: 0 solid transparent;
  border-radius: 16px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.5px;
  white-space: nowrap;
  transition:
    width 160ms ease,
    transform 160ms ease,
    background 160ms ease,
    outline-color 160ms ease;
}

.button-green {
  color: var(--black);
  background: var(--green);
}

.button-green::after {
  width: 0;
  height: 15px;
  flex: 0 0 auto;
  content: "";
  background: url("assets/picto/arrowRightBlack.svg") center / 19px 15px no-repeat;
  opacity: 0;
  transition:
    width 160ms ease,
    opacity 160ms ease;
}

.button-green:hover,
.button-green:focus-visible {
  background: linear-gradient(90deg, #edfcc5 0%, var(--green) 60%);
  outline: 2px solid var(--black);
}

.button-green:hover::after,
.button-green:focus-visible::after {
  width: 19px;
  opacity: 1;
}

.button-dark {
  color: var(--white);
  background: var(--black);
}

.button-dark::after {
  width: 0;
  height: 15px;
  flex: 0 0 auto;
  content: "";
  background: url("assets/picto/arrowRight.svg") center / 19px 15px no-repeat;
  opacity: 0;
  transition:
    width 160ms ease,
    opacity 160ms ease;
}

.button-dark:hover,
.button-dark:focus-visible {
  background: linear-gradient(90deg, #4d4d4d 0%, #333333 60%);
}

.button-dark:hover::after,
.button-dark:focus-visible::after {
  width: 19px;
  opacity: 1;
}

.menu-toggle {
  display: none;
}

.hero {
  display: grid;
  align-items: start;
  padding: 96px 0 0;
}

.hero-inner {
  width: var(--shell);
}

.hero-inner > * {
  grid-column: 1 / span 7;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
.section-heading h2,
.approach-title h2,
.work-heading h2,
.offers-heading h2 {
  margin-bottom: 0;
  font-size: clamp(58px, 5vw, 96px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -4px;
}

.section-heading h2,
.approach-title h2,
.work-heading h2,
.offers-heading h2 {
  font-size: 60px;
  line-height: 1;
}

.hero p {
  width: min(761px, 100%);
  margin: 24px 0 40px;
  color: var(--gray);
  font-size: clamp(22px, 1.46vw, 28px);
  font-weight: 400;
  letter-spacing: -1px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-benefits {
  padding-top: 96px;
}

.hero-benefits .shell {
  align-items: start;
}

.capability-strip {
  width: 100%;
  min-height: 268px;
  border: 1px solid var(--line);
  border-right: 0;
  border-left: 0;
  padding: 48px var(--page-padding);
  background: rgba(255, 255, 255, 0.92);
}

.capability-grid {
  width: var(--grid-width);
  display: grid;
  margin-inline: auto;
  grid-template-columns: repeat(4, 300px);
  justify-content: space-between;
  gap: 56px;
}

.capability {
  width: 300px;
  min-height: 172px;
}

.capability span,
.timeline-step span {
  display: block;
  margin-bottom: 22px;
  color: var(--gray);
  font-size: 30px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -2px;
}

.capability h2,
.timeline-step h3 {
  margin-bottom: 22px;
  font-size: 28px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -2px;
}

.capability p,
.timeline-step p {
  margin-bottom: 0;
  color: var(--gray);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -1px;
}

.expertise.section {
  padding-top: 240px;
  padding-bottom: 120px;
}

.expertise .capability-strip {
  margin-top: 96px;
}

.section-heading {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 32px;
  min-height: 218px;
}

.section-heading > .tag,
.section-heading > .heading-grid {
  grid-column: 1 / -1;
}

.tag {
  display: flex;
  flex: 0 0 auto;
  width: fit-content;
  height: 49px;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  margin: 0;
  padding: 0 16px;
  color: var(--black);
  background: var(--blue);
  border: 0;
  border-radius: 36px;
  font-family: Geist, Inter, "Segoe UI", Arial, sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}

.heading-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: end;
  column-gap: var(--grid-gap);
  row-gap: 32px;
}

.heading-grid h2 {
  grid-column: 1 / span 6;
}

.heading-grid p {
  grid-column: 7 / span 5;
}

.heading-grid p,
.approach-title p,
.work-heading p {
  margin-bottom: 0;
  color: var(--gray);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
  max-width: 650px;
}

.benefit-grid {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: var(--grid-gap);
  margin-top: 112px;
}

.hero-benefits .benefit-grid {
  min-height: 272px;
  margin-top: 0;
}

.hero-benefits .benefit-card {
  grid-column: span 3;
}

.benefit-card {
  grid-column: span 3;
}

.benefit-card {
  height: 272px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 32px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: solid 1px var(--line);
}

.icon-pill {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  margin-bottom: 24px;
  background: var(--blue);
  border-radius: 112px;
}

.icon-pill img {
  width: 32px;
  height: 32px;
}

.benefit-card h3 {
  margin-bottom: 12px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.5px;
}

.benefit-card p {
  max-width: 280px;
  margin-bottom: 0;
  color: var(--gray);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.5px;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: var(--grid-gap);
  align-items: start;
}

.approach-title {
  grid-column: 1 / span 6;
  position: sticky;
  top: 132px;
}

.timeline {
  grid-column: 7 / span 6;
}

.approach-title .tag {
  margin-bottom: 36px;
}

.approach-title h2 {
  margin-bottom: 16px;
}

.timeline {
  --timeline-progress: 0;

  position: relative;
  display: grid;
  gap: 56px;
  padding: 48px 40px;
}

.timeline::before {
  position: absolute;
  top: 48px;
  bottom: 48px;
  left: 51px;
  width: 3px;
  content: "";
  background: var(--line);
  transform: translateX(-1px);
}

.timeline-progress {
  position: absolute;
  top: 48px;
  bottom: 48px;
  left: 51px;
  width: 3px;
  pointer-events: none;
  transform: translateX(-1px);
}

.timeline-progress::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 3px;
  height: calc(var(--timeline-progress) * 100%);
  background: var(--black);
}

.timeline-progress span {
  position: absolute;
  top: calc(var(--timeline-progress) * 100%);
  left: 50%;
  width: 18px;
  height: 18px;
  background: var(--black);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  will-change: top;
}

.timeline-step {
  position: relative;
  max-width: 343px;
  min-height: 200px;
  padding-left: 72px;
  opacity: 0.3;
  transition: opacity 220ms ease;
}

.timeline-step.reveal.is-visible {
  opacity: 0.3;
}

.timeline-step.is-active,
.timeline-step.reveal.is-visible.is-active {
  opacity: 1;
}

.work-heading {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: end;
  column-gap: var(--grid-gap);
  row-gap: 40px;
  margin-bottom: 152px;
}

.work-heading .tag,
.offers-heading .tag {
  margin-bottom: 40px;
}

.work-heading .tag {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.work-heading h2 {
  grid-column: 1 / span 5;
  width: min(692px, 100%);
  margin-bottom: 0;
}

.work-heading p {
  grid-column: 6 / span 5;
}

.work-list {
  display: grid;
  grid-column: 1 / -1;
  gap: 80px;
}

.work-row {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: start;
  column-gap: var(--grid-gap);
  row-gap: 40px;
}

.work-copy {
  grid-column: 1 / span 5;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px 82px;
  align-items: start;
}

.work-copy > span {
  color: var(--gray);
  font-size: 42px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -2px;
}

.work-copy h3 {
  margin-bottom: 18px;
  font-size: 42px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -2px;
}

.project-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
}

.project-link:hover {
  color: var(--gray);
}

.project-link img {
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  transition: transform 160ms ease;
}

.project-link:hover img,
.project-link:focus-visible img {
  transform: translate(3px, -3px);
}

.work-copy p {
  margin-bottom: 0;
  color: var(--black);
  font-size: 20px;
  font-weight: 500;
}



.work-copy > p,
.pill-row {
  grid-column: 2;
}

.work-copy > p {
  width: min(496px, 100%);
  color: var(--gray);
  font-weight: 400;
  font-size: 18px;
  max-width: 400px;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill-row span {
  display: inline-flex;
  flex: 0 0 auto;
  width: fit-content;
  height: 36px;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 8px 16px;
  color: var(--black);
  background: linear-gradient(
    90deg,
    rgb(239, 236, 248) 0%,
    rgb(248, 248, 248) 50%,
    var(--blue) 100%
  );
  border: 0;
  border-radius: 8px;
  font-family: Geist, Inter, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.5px;
  white-space: nowrap;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.image-frame {
  grid-column: 6 / span 7;
  aspect-ratio: 973 / 548;
  min-height: 360px;
  border-radius: 16px;
  overflow: hidden;
  border: solid var(--gray) 1px;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-frame-scroll {
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.image-frame-scroll img {
  height: auto;
  object-fit: contain;
}

.offers-heading {
  grid-column: 1 / span 7;
  margin-bottom: 80px;
}

.offer-grid {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: var(--grid-gap);
}

.offer-card {
  grid-column: span 4;
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 32px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.offer-main {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 32px;
}

.offer-top {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.offer-card h3 {
  margin-bottom: 0;
  font-size: 34px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -2px;
}

.offer-top p {
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
}

.offer-divider {
  width: 100%;
  height: 1px;
  background: var(--line);
}

.offer-details {
  display: flex;
  width: min(387px, 100%);
  flex-direction: column;
  gap: 40px;
}

.price {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price span {
  display: block;
  color: var(--gray);
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.5px;
}

.price strong {
  display: block;
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -2px;
}

.offer-card ul {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.offer-card li {
  position: relative;
  min-height: 20px;
  padding-left: 28px;
  color: var(--black);
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
}

.offer-card li::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  content: "";
  background: var(--blue);
  border-radius: 48px;
}

.offer-card li::after {
  position: absolute;
  top: 6px;
  left: 5px;
  width: 10px;
  height: 7px;
  content: "";
  background: url("assets/picto/check.svg") center / contain no-repeat;
}

.offer-card .button {
  width: 100%;
  flex: 0 0 auto;
  font-size: 18px;
}

.site-footer {
  position: relative;
  z-index: 2;
  min-height: 430px;
  padding: 56px 0 24px;
  background: var(--blue);
  border-top: 1px solid var(--line);
  overflow: hidden;
}

.footer-layout {
  position: static;
  min-height: 350px;
  row-gap: 56px;
}

.footer-layout > *:not(.footer-logo) {
  position: relative;
  z-index: 1;
}

.footer-logo {
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: min(520px, 34vw);
  height: auto;
  opacity: 0.38;
  pointer-events: none;
}

.footer-logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer-main {
  grid-column: 1 / span 5;
  align-self: start;
}

.footer-main > span {
  display: block;
  margin-bottom: 22px;
  color: #4f5f28;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
}

.footer-main h2 {
  max-width: 660px;
  margin-bottom: 32px;
  color: var(--black);
  font-size: clamp(42px, 3.2vw, 62px);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: -3px;
}

.footer-main .button {
  width: fit-content;
}

.footer-links {
  grid-column: 7 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
  align-self: start;
}

.footer-group {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-group h3 {
  margin: 0;
  color: #4f5f28;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
}

.footer-group a,
.footer-group span {
  width: fit-content;
  max-width: 100%;
  color: var(--black);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.25;
}

.footer-group span {
  color: #5d6a39;
}

.footer-bottom a {
  width: fit-content;
}

.footer-group a:hover,
.footer-group a:focus-visible,
.footer-bottom a:hover,
.footer-bottom a:focus-visible,
.main-nav a:hover,
.main-nav a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
  color: #666666;
  border-top: 1px solid rgba(38, 38, 38, 0.2);
  font-size: 14px;
}

.footer-bottom div {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-end;
}

.about-hero {
  padding: 132px 0 160px;
}

.about-hero-inner {
  row-gap: 40px;
}

.about-hero-inner .tag {
  grid-column: 1 / span 2;
}

.about-hero-inner h1 {
  grid-column: 1 / span 10;
  max-width: 1320px;
}

.about-hero-inner p {
  grid-column: 7 / span 5;
  max-width: 650px;
  margin: 0;
  color: var(--gray);
  font-size: 20px;
  line-height: 1.35;
}


.about-statement-grid {
  align-items: start;
}

.about-index {
  grid-column: 1 / span 1;
  color: var(--gray);
  font-size: 42px;
  line-height: 1;
  letter-spacing: -2px;
}

.about-statement-copy {
  grid-column: 1 / span 8;
}

.about-profile-placeholder {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.08)),
    rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(38, 38, 38, 0.2);
  border-radius: 50%;
}

.about-statement-copy .tag,
.about-collaboration-heading .tag,
.about-cta-inner .tag {
  margin-bottom: 40px;
}

.about-statement-copy h2,
.about-collaboration-heading h2,
.about-cta-inner h2 {
  margin-bottom: 40px;
  font-size: 60px;
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -3px;
}

.about-statement-copy p {
  max-width: 550px;
  margin: 0 0 20px;
  color: #4f4f4f;
  font-size: 20px;
  line-height: 1.45;
}

.about-card-grid {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: var(--grid-gap);
}

.about-card {
  grid-column: span 4;
  padding: 24px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 32px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.about-card > span {
  display: block;
  margin-bottom: 24px;
  color: var(--gray);
  font-size: 18px;
}

.about-card h3 {
  margin-bottom: 20px;
  font-size: 34px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -2px;
}

.about-card p {
  max-width: 390px;
  margin: 0;
  color: var(--gray);
  font-size: 18px;
  line-height: 1.4;
}

.about-collaboration {
  background: #f7f7f7;
}

.about-collaboration-grid {
  align-items: start;
}

.about-collaboration-heading {
  grid-column: 1 / span 6;
  position: sticky;
  top: 132px;
}

.about-collaboration-list {
  grid-column: 7 / span 6;
}

.about-collaboration-list article {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  min-height: 190px;
  padding: 32px 0;
  border-top: 1px solid var(--line);
}

.about-collaboration-list article:last-child {
  border-bottom: 1px solid var(--line);
}

.about-collaboration-list article > span {
  color: var(--gray);
  font-size: 18px;
}

.about-collaboration-list h3 {
  margin-bottom: 16px;
  font-size: 30px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -1px;
}

.about-collaboration-list p {
  max-width: 480px;
  margin: 0;
  color: var(--gray);
  font-size: 18px;
  line-height: 1.4;
}

.about-cta-inner {
  text-align: center;
}

.about-cta-inner .tag,
.about-cta-inner .button {
  justify-self: center;
}

.about-cta-inner h2 {
  grid-column: 4 / span 6;
  justify-self: center;
}

.about-cta-inner .button {
  margin-top: 16px;
}

.legal-header {
  position: relative;
  z-index: 2;
  width: var(--shell);
  height: 74px;
  margin: 24px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 24px;
  background: rgba(255, 255, 255, 0.72);
  border-radius: 24px;
  backdrop-filter: blur(40px);
}

.legal-page {
  position: relative;
  z-index: 1;
  padding: 120px 0;
}

.legal-content {
  grid-column: 2 / span 8;
  max-width: 920px;
}

.legal-content > h1 {
  margin: 40px 0 96px;
  font-size: clamp(56px, 7vw, 96px);
  font-weight: 400;
  line-height: 0.95;
}

.legal-content section {
  padding: 32px 0;
  border-top: 1px solid var(--line);
}

.legal-content h2 {
  margin-bottom: 18px;
  font-size: 28px;
  font-weight: 500;
}

.legal-content p {
  max-width: 760px;
  margin-bottom: 14px;
  color: var(--gray);
  font-size: 18px;
  line-height: 1.55;
}

.legal-content a {
  color: var(--black);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 420ms ease,
    transform 420ms ease;
}

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (max-width: 1480px) {
  :root {
    --page-padding: 32px;
  }

  .site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}

@media (max-width: 1100px) {
  .menu-toggle {
    margin-right: 8px;
  }

  .menu-toggle {
    position: relative;
    display: flex;
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 16px;
    padding: 0;
    background: var(--black);
    cursor: pointer;
  }

  .menu-toggle span {
    position: absolute;
    left: 50%;
    display: block;
    width: 20px;
    height: 2px;
    background: var(--white);
    border-radius: 999px;
    transform: translateX(-50%);
    transition:
      opacity 160ms ease,
      transform 160ms ease;
  }

  .menu-toggle span:first-child {
    transform: translate(-50%, -4px);
  }

  .menu-toggle span:last-child {
    transform: translate(-50%, 4px);
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translate(-50%, 0) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translate(-50%, 0) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    top: 112px;
    left: 50%;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    justify-content: stretch;
    justify-items: stretch;
    width: min(var(--shell), calc(100vw - 32px));
    max-height: calc(100dvh - 128px);
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.12);
    opacity: 0;
    overflow: auto;
    pointer-events: none;
    transform: translate(-50%, -10px);
    transition:
      opacity 160ms ease,
      transform 160ms ease;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
  }

  .main-nav a {
    width: 100%;
    height: auto;
    min-height: 56px;
    align-items: center;
    justify-content: flex-start;
    justify-self: stretch;
    padding: 18px 12px;
    border-bottom: 1px solid var(--soft-line);
    text-align: left;
  }

  .mobile-nav-cta {
    display: inline-flex !important;
    justify-content: center;
    margin-top: 4px;
    color: var(--white);
    background: var(--black);
    border-bottom: 0;
    border-radius: 16px;
  }

  .main-nav a:last-child,
  .main-nav .mobile-nav-cta {
    border-bottom: 0;
  }

  .header-cta {
    display: none;
  }

  body.menu-open .site-header {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1100px) {
  .section {
    padding: 96px 0;
  }

  .hero {
    min-height: auto;
    padding: 132px 0 64px;
  }

  .hero-inner > * {
    grid-column: 1 / span 8;
  }

  .hero-benefits {
    padding-top: 80px;
  }

  .capability-strip {
    padding-inline: var(--page-padding);
  }

  .capability-grid,
  .benefit-grid,
  .offer-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .heading-grid,
  .approach-grid,
  .work-row {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .capability,
  .benefit-card,
  .offer-card {
    grid-column: span 6;
    width: auto;
  }

  .hero-benefits .benefit-card {
    grid-column: span 6;
  }

  .benefit-card {
    height: auto;
    min-height: 240px;
  }

  .heading-grid h2,
  .heading-grid p,
  .work-heading h2,
  .work-heading p,
  .approach-title,
  .timeline,
  .work-heading,
  .offers-heading,
  .work-copy,
  .image-frame {
    grid-column: 1 / -1;
  }

  .approach-title {
    position: static;
  }

  .approach-grid {
    row-gap: 72px;
  }

  .work-heading,
  .offers-heading {
    margin-bottom: 80px;
  }

  .work-copy {
    max-width: none;
  }

  .work-row {
    row-gap: 48px;
  }

  .offer-card {
    height: auto;
    min-height: 726px;
  }

  .offer-details {
    width: 100%;
  }

  .footer-logo {
    width: min(42vw, 481px);
  }

  .footer-main {
    grid-column: 1 / span 6;
  }

  .footer-links {
    grid-column: 7 / -1;
    gap: 28px;
  }

  .about-hero-inner h1,
  .about-hero-inner p,
  .about-statement-copy,
  .about-collaboration-heading,
  .about-collaboration-list {
    grid-column: 1 / -1;
  }

  .about-statement-grid,
  .about-collaboration-grid {
    row-gap: 64px;
  }

  .about-collaboration-heading {
    position: static;
  }

  .about-card {
    grid-column: span 6;
  }
}

@media (max-width: 820px) {
  .offer-card {
    grid-column: 1 / -1;
    max-width: 620px;
    width: 100%;
    min-height: auto;
    justify-self: center;
  }

  .site-footer {
    height: auto;
    min-height: 0;
    padding: 48px 0 180px;
  }

  .footer-layout {
    height: auto;
    grid-template-rows: auto;
    row-gap: 32px;
  }

  .footer-main,
  .footer-links,
  .footer-bottom {
    grid-column: 1 / -1;
    grid-row: auto;
  }

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

  .footer-logo {
    width: min(80vw, 360px);
    height: auto;
  }

  .footer-logo img {
    height: auto;
  }
}

@media (max-width: 720px) {
  :root {
    --page-padding: 16px;
  }

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

  .site-grid span:nth-child(n + 7) {
    display: none;
  }

  .shell {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    column-gap: 16px;
  }

  .section {
    padding: 72px 0;
  }

  .site-header {
    top: 12px;
    height: 66px;
    margin-top: 12px;
    padding: 8px 8px 8px 16px;
    border-radius: 20px;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    column-gap: 16px;
  }

  .main-nav {
    top: 90px;
    width: calc(100vw - 32px);
    max-height: calc(100dvh - 106px);
    border-radius: 20px;
  }

  .legal-header {
    width: var(--shell);
    height: 66px;
    margin-top: 12px;
    padding: 8px 16px;
    border-radius: 20px;
  }

  .legal-page {
    padding: 80px 0;
  }

  .legal-content {
    grid-column: 1 / -1;
  }

  .legal-content > h1 {
    margin: 32px 0 64px;
    font-size: 52px;
  }

  .legal-content h2 {
    font-size: 24px;
  }

  .legal-content p {
    font-size: 16px;
  }

  .logo {
    grid-column: 1 / span 1;
    margin-left: 0;
  }

  .menu-toggle {
    margin-right: 0;
  }

  .hero {
    min-height: auto;
    padding: 112px 0 48px;
  }

  h1,
  .section-heading h2,
  .approach-title h2,
  .work-heading h2,
  .offers-heading h2 {
    font-size: clamp(44px, 13vw, 58px);
    line-height: 0.94;
  }

  .section-heading h2 br,
  .approach-title h2 br,
  .work-heading h2 br,
  .offers-heading h2 br {
    display: none;
  }

  .hero p,
  .heading-grid p,
  .approach-title p,
  .work-heading p {
    font-size: 18px;
    line-height: 1.35;
  }

  .button-row,
  .button {
    width: 100%;
  }

  .capability-strip {
    padding: 40px var(--page-padding);
    min-height: 0;
  }

  .expertise.section {
    padding-top: 72px;
  }

  .expertise .capability-strip {
    margin-top: 72px;
  }

  .capability-grid,
  .benefit-grid,
  .offer-grid,
  .heading-grid,
  .work-heading,
  .approach-grid,
  .work-row,
  .section-heading {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    column-gap: 16px;
  }

  .hero-inner > *,
  .capability,
  .offer-card {
    grid-column: 1 / -1;
    width: auto;
  }

  .benefit-card {
    grid-column: span 6;
  }

  .hero-benefits .benefit-card {
    grid-column: 1 / -1;
  }

  .hero-benefits {
    padding-top: 56px;
  }

  .benefit-grid,
  .capability-grid {
    gap: 16px;
  }

  .benefit-card {
    height: auto;
    min-height: 220px;
  }

  .capability h2,
  .timeline-step h3 {
    font-size: 28px;
  }

  .capability {
    min-height: auto;
    padding-block: 16px;
  }

  .section-heading {
    min-height: 0;
  }

  .timeline {
    padding: 24px 0 24px 12px;
    gap: 40px;
  }

  .timeline::before,
  .timeline-progress {
    top: 24px;
    bottom: 24px;
    left: 23px;
  }

  .timeline-step {
    max-width: none;
    min-height: 170px;
    padding-left: 58px;
  }

  .work-copy {
    grid-template-columns: 1fr;
    gap: 22px;
    max-width: none;
  }

  .work-copy > span {
    font-size: 32px;
  }

  .work-copy h3 {
    font-size: 36px;
  }

  .work-copy > p,
  .pill-row {
    grid-column: auto;
  }

  .image-frame {
    width: 100%;
    min-height: 220px;
  }

  .work-list {
    gap: 72px;
  }

  .pill-row span {
    max-width: 100%;
    font-size: 15px;
  }

  .offer-card {
    height: auto;
    min-height: auto;
    padding: 16px;
  }

  .offer-top {
    gap: 20px;
  }

  .offer-main {
    gap: 24px;
  }

  .offer-details {
    gap: 28px;
  }

  .offer-card h3 {
    font-size: 30px;
  }

  .offer-card li {
    font-size: 16px;
    line-height: 1.25;
  }

  .tag {
    height: 44px;
    font-size: 18px;
  }

  .about-hero {
    padding: 112px 0 88px;
  }

  .about-hero-inner {
    row-gap: 28px;
  }

  .about-hero-inner .tag,
  .about-hero-inner h1,
  .about-hero-inner p,
  .about-statement-copy,
  .about-collaboration-heading,
  .about-collaboration-list,
  .about-cta-inner h2 {
    grid-column: 1 / -1;
  }

  .about-index {
    grid-column: 1 / -1;
    font-size: 32px;
  }

  .about-statement-grid,
  .about-collaboration-grid {
    row-gap: 40px;
  }

  .about-statement-copy h2,
  .about-collaboration-heading h2,
  .about-cta-inner h2 {
    margin-bottom: 28px;
    font-size: clamp(42px, 12vw, 56px);
    letter-spacing: -2px;
  }

  .about-statement-copy p,
  .about-hero-inner p {
    font-size: 18px;
  }

  .about-card-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 16px;
  }

  .about-card {
    grid-column: 1 / -1;
    min-height: 330px;
  }

  .about-card > span {
    margin-bottom: 88px;
  }

  .about-collaboration-list article {
    grid-template-columns: 42px 1fr;
    min-height: 170px;
  }

  .about-cta {
    padding: 96px 0;
  }

  .site-footer {
    min-height: 500px;
    padding: 48px 0 190px;
  }

  .footer-layout {
    height: auto;
    grid-template-rows: auto;
    row-gap: 32px;
  }

  .footer-logo,
  .footer-main,
  .footer-links,
  .footer-bottom {
    grid-column: 1 / -1;
  }

  .footer-logo {
    width: min(88vw, 340px);
    height: auto;
  }

  .footer-main h2 {
    margin-bottom: 24px;
    font-size: clamp(38px, 11vw, 50px);
    letter-spacing: -2px;
  }

  .footer-main .button {
    width: 100%;
  }

  .footer-links {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }

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

  .footer-bottom div {
    justify-content: flex-start;
  }
}
