:root {
  --ink: #17151f;
  --dark: #17151f;
  --dark-text: #ffffff;
  --ink-soft: #2a2734;
  --paper: #f8f7f3;
  --paper-2: #eeebfb;
  --white: #ffffff;
  --muted: #66616e;
  --muted-light: #b9b4c2;
  --line: rgba(23, 21, 31, 0.16);
  --line-light: rgba(255, 255, 255, 0.16);
  --accent: #6546d9;
  --accent-dark: #4f34ba;
  --violet: #6546d9;
  --accent-light: #c9c1f4;
  --green: #72d5a3;
  --shadow: 0 24px 70px rgba(23, 21, 31, 0.12);
  --wide: 1560px;
  --radius: 24px;
  --header-height: 82px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 20px); }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(16px, 0.16vw + 15.5px, 17px);
  line-height: 1.58;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.nav-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }
img { display: block; max-width: 100%; }
figure { margin: 0; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  transform: translateY(-150%);
  padding: 12px 16px;
  background: var(--white);
  border-radius: 8px;
  font-weight: 800;
}
.skip-link:focus { transform: translateY(0); }

.wide-shell {
  width: min(100%, var(--wide));
  margin-inline: auto;
  padding-inline: clamp(24px, 4.2vw, 72px);
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: var(--header-height);
  transition: background .25s ease, box-shadow .25s ease, transform .25s ease;
}
.site-header.is-scrolled {
  background: var(--paper);
  box-shadow: 0 12px 40px rgba(23, 21, 31, 0.08);
  backdrop-filter: blur(16px);
}
.site-header__inner {
  width: min(100%, var(--wide));
  height: 100%;
  margin-inline: auto;
  padding-inline: clamp(24px, 4.2vw, 72px);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(24px, 3.4vw, 58px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 48px;
  font-weight: 900;
  letter-spacing: .2em;
}
.brand__mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--dark);
  overflow: hidden;
}
.brand__mark::before {
  content: "";
  width: 24px;
  height: 8px;
  background: var(--accent);
  transform: translateY(-6px);
}
.brand__mark span {
  position: absolute;
  top: 16px;
  width: 8px;
  height: 22px;
  background: var(--accent);
}
.brand__mark::after {
  content: "";
  position: absolute;
  right: 5px;
  bottom: 5px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--violet);
}
.brand__name { font-size: 18px; }
.brand__image { width: auto; max-width: 190px; height: 48px; object-fit: contain; }
.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(18px, 2.1vw, 36px);
  font-size: 14px;
  font-weight: 750;
}
.site-nav a { position: relative; padding: 16px 0; }
.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 9px;
  left: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .2s ease;
}
.site-nav a:hover::after,
.site-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.nav-toggle { display: none; }

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 13px 22px;
  border: 1px solid var(--accent);
  border-radius: 999px;
  background: var(--accent);
  color: var(--dark-text);
  font-size: 15px;
  font-weight: 850;
  line-height: 1.2;
  cursor: pointer;
  box-shadow: 0 14px 32px rgba(23, 21, 31, 0.15);
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-3px); background: var(--accent-dark); border-color: var(--accent-dark); }
.button:focus-visible,
.text-link:focus-visible,
.nav-toggle:focus-visible,
input:focus-visible,
textarea:focus-visible,
.faq-item button:focus-visible { outline: 3px solid var(--violet); outline-offset: 4px; }
.button--small { min-height: 44px; padding: 9px 18px; font-size: 13px; }
.button--full { width: 100%; justify-content: space-between; min-height: 56px; padding-inline: 22px; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
  padding: 8px 0;
  border: 0;
  border-bottom: 2px solid currentColor;
  background: none;
  color: var(--accent-dark);
  font-size: 15px;
  font-weight: 850;
  cursor: pointer;
}
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translate(4px, -2px); }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 0 0 20px;
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  line-height: 1.35;
  text-transform: uppercase;
}
.eyebrow span { flex: 0 0 auto; width: 32px; height: 2px; background: currentColor; }
.eyebrow--light { color: var(--accent-light); }

h1, h2, h3, p { overflow-wrap: anywhere; }
h1, h2, h3 { margin: 0; letter-spacing: -.045em; }
h1 { font-size: clamp(48px, 5.2vw, 78px); line-height: .98; }
h2 { font-size: clamp(36px, 3.7vw, 58px); line-height: 1.06; }
h3 { line-height: 1.12; }

.hero {
  position: relative;
  min-height: min(790px, 92svh);
  padding: calc(var(--header-height) + 42px) 0 52px;
  background: var(--paper);
  overflow: hidden;
}
.hero__ambient { position: absolute; border-radius: 50%; filter: blur(1px); pointer-events: none; }
.hero__ambient--one {
  top: 110px;
  left: -180px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(141, 124, 255, .24);
}
.hero__ambient--two {
  right: -80px;
  bottom: 70px;
  width: 250px;
  height: 250px;
  background: rgba(255, 107, 53, .12);
}
.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(420px, .94fr);
  align-items: center;
  gap: clamp(42px, 5vw, 82px);
}
.hero__copy { padding-top: 14px; }
.hero h1 { max-width: 1000px; }
.hero__accent {
  max-width: 740px;
  margin: 24px 0 0;
  color: var(--accent-dark);
  font-size: clamp(19px, 1.25vw, 24px);
  font-weight: 780;
  line-height: 1.28;
  letter-spacing: -.02em;
}
.hero__description {
  max-width: 700px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(16px, .35vw + 15px, 19px);
  line-height: 1.58;
}
.hero__actions { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; margin-top: 28px; }
.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  color: #484350;
  font-size: 14px;
  font-weight: 760;
}
.hero__badges li { display: flex; align-items: center; gap: 8px; }
.hero__badges span { color: #128553; }
.hero__media {
  position: relative;
  min-height: 570px;
  border-radius: 30px 30px 30px 94px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(23, 21, 31, .78));
  pointer-events: none;
}
.hero__media img { width: 100%; height: 100%; min-height: 570px; object-fit: cover; }
.hero__media figcaption {
  position: absolute;
  z-index: 2;
  right: 36px;
  bottom: 36px;
  left: 36px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: start;
  color: var(--dark-text);
}
.hero__caption-index {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
}
.hero__media strong { display: block; font-size: 18px; line-height: 1.25; }
.hero__media figcaption p { margin: 7px 0 0; color: rgba(255,255,255,.78); font-size: 15px; line-height: 1.5; }

.capability-band {
  overflow: hidden;
  padding: 17px 0;
  background: var(--dark);
  color: var(--dark-text);
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.capability-track {
  display: flex;
  width: max-content;
  animation: ticker 32s linear infinite;
}
.capability-track span {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  padding-right: 28px;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.capability-track i { color: var(--accent); font-style: normal; }
@keyframes ticker { to { transform: translateX(-50%); } }

.section { padding: clamp(72px, 7vw, 112px) 0; }
.section-intro--split {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(340px, .68fr);
  align-items: end;
  gap: clamp(42px, 6vw, 90px);
}
.section-intro h2 { max-width: 1050px; }
.section-intro > p {
  max-width: 600px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, .25vw + 15px, 18px);
  line-height: 1.58;
}
.section-intro--light { color: var(--white); }
.section-intro--light > p { color: var(--muted-light); }

.section--problems { background: var(--paper); }
.problem-list { margin-top: clamp(42px, 5vw, 68px); border-top: 1px solid var(--line); }
.problem-card {
  display: grid;
  grid-template-columns: 72px minmax(300px, 1fr) minmax(280px, .72fr);
  gap: clamp(24px, 3vw, 52px);
  align-items: start;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  transition: padding .25s ease, background .25s ease;
}
.problem-card:hover { padding-inline: 24px; background: rgba(255,255,255,.52); }
.problem-card__number { color: var(--accent-dark); font-size: 14px; font-weight: 900; letter-spacing: .12em; }
.problem-card h3 { font-size: clamp(23px, 1.7vw, 31px); }
.problem-card p { max-width: 700px; margin: 10px 0 0; color: var(--muted); font-size: 16px; }
.problem-card__result {
  display: grid;
  gap: 10px;
  padding-left: clamp(20px, 3vw, 48px);
  border-left: 1px solid var(--line);
}
.problem-card__result span { color: var(--accent-dark); font-size: 12px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.problem-card__result strong { font-size: 17px; line-height: 1.48; }

.section--solutions { position: relative; background: var(--dark); color: var(--dark-text); overflow: hidden; }
.section--solutions::before {
  content: "";
  position: absolute;
  top: -260px;
  right: -160px;
  width: 680px;
  height: 680px;
  border: 1px solid rgba(141,124,255,.18);
  border-radius: 50%;
}
.solution-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: clamp(44px, 5vw, 68px);
}
.solution-card {
  display: flex;
  min-height: 370px;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(26px, 2.5vw, 38px);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: rgba(255,255,255,.035);
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}
.solution-card:hover { transform: translateY(-8px); background: rgba(255,255,255,.075); border-color: rgba(255,255,255,.32); }
.solution-card__top { display: flex; align-items: flex-start; justify-content: space-between; }
.solution-card__index { color: var(--muted-light); font-size: 13px; font-weight: 900; letter-spacing: .12em; }
.solution-card__icon {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: var(--accent);
}
.solution-card__icon svg { width: 40px; fill: none; stroke: var(--white); stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.solution-card__label { color: var(--accent-light); font-size: 11px; font-weight: 900; letter-spacing: .13em; }
.solution-card h3 { margin: 18px 0 13px; font-size: clamp(25px, 1.9vw, 34px); }
.solution-card p { margin: 0; color: var(--muted-light); font-size: 16px; line-height: 1.58; }

.story-section { padding: clamp(62px, 6vw, 92px) 0; background: var(--paper-2); }
.story-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(400px, .9fr); align-items: center; gap: clamp(44px, 6vw, 90px); }
.story-media { position: relative; }
.story-media img { width: 100%; height: clamp(470px, 40vw, 620px); object-fit: cover; border-radius: 30px 30px 110px 30px; }
.story-media figcaption {
  position: absolute;
  right: -42px;
  bottom: 46px;
  width: min(390px, 72%);
  padding: 26px;
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.story-media strong { display: block; margin-bottom: 6px; font-size: 18px; }
.story-media span { display: block; color: var(--muted); font-size: 15px; line-height: 1.55; }
.story-copy h2 { max-width: 780px; }
.story-copy > p:not(.eyebrow) { max-width: 720px; margin: 30px 0 34px; color: var(--muted); font-size: clamp(17px, .35vw + 15px, 20px); }

.section--projects { background: var(--paper); }
.project-list { display: grid; gap: 24px; margin-top: clamp(46px, 5vw, 72px); }
.project-card {
  display: grid;
  grid-template-columns: minmax(420px, .92fr) minmax(0, 1.08fr);
  min-height: 430px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--white);
  box-shadow: 0 18px 60px rgba(23,21,31,.07);
}
.project-card:nth-child(even) .project-card__media { order: 2; }
.project-card__media { position: relative; overflow: hidden; }
.project-card__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(23,21,31,.55)); }
.project-card__media img { width: 100%; height: 100%; min-height: 430px; object-fit: cover; transition: transform .6s ease; }
.project-card:hover .project-card__media img { transform: scale(1.035); }
.project-card__media > span {
  position: absolute;
  z-index: 2;
  left: 30px;
  bottom: 28px;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 999px;
  color: var(--dark-text);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
}
.project-card__content { display: flex; flex-direction: column; justify-content: center; padding: clamp(32px, 4vw, 58px); }
.project-card__number { color: var(--accent-dark); font-size: 13px; font-weight: 900; letter-spacing: .13em; }
.project-card h3 { margin-top: 20px; font-size: clamp(28px, 2.5vw, 43px); }
.project-card p { max-width: 720px; margin: 16px 0 0; color: var(--muted); font-size: 16px; }
.project-card ul { display: flex; flex-wrap: wrap; gap: 10px; margin: 24px 0 0; padding: 0; list-style: none; }
.project-card li { display: flex; align-items: center; gap: 8px; padding: 10px 14px; border-radius: 999px; background: var(--paper); font-size: 14px; font-weight: 780; }
.project-card li span { color: #128553; }

.section--process { background: var(--paper-2); }
.process-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(520px, 1.1fr); gap: clamp(50px, 7vw, 100px); align-items: start; }
.process-copy { position: sticky; top: calc(var(--header-height) + 40px); }
.process-copy__intro { max-width: 680px; margin: 20px 0 28px; color: var(--muted); font-size: 17px; }
.process-copy figure { overflow: hidden; border-radius: 26px 26px 90px 26px; }
.process-copy img { width: 100%; height: 310px; object-fit: cover; }
.process-steps { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.process-steps li { display: grid; grid-template-columns: 62px 1fr; gap: 24px; padding: 28px 0; border-bottom: 1px solid var(--line); }
.process-steps > li > span { color: var(--accent-dark); font-size: 14px; font-weight: 900; letter-spacing: .12em; }
.process-steps h3 { font-size: clamp(23px, 1.7vw, 31px); }
.process-steps p { max-width: 700px; margin: 10px 0 0; color: var(--muted); font-size: 16px; }

.section--faq { background: var(--paper); }
.faq-grid { display: grid; grid-template-columns: minmax(360px, .78fr) minmax(0, 1.22fr); gap: clamp(50px, 7vw, 100px); }
.faq-intro { position: sticky; top: calc(var(--header-height) + 40px); align-self: start; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item button {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr 44px;
  align-items: center;
  gap: 30px;
  padding: 24px 0;
  border: 0;
  background: transparent;
  text-align: left;
  font-size: clamp(18px, 1.3vw, 24px);
  font-weight: 820;
  line-height: 1.3;
  cursor: pointer;
}
.faq-item button i { position: relative; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 50%; }
.faq-item button i::before,
.faq-item button i::after { content: ""; position: absolute; top: 50%; left: 50%; width: 14px; height: 2px; background: var(--ink); transform: translate(-50%, -50%); transition: transform .2s ease; }
.faq-item button i::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item.is-open button i::after { transform: translate(-50%, -50%) rotate(0); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s ease; }
.faq-answer > p { min-height: 0; overflow: hidden; margin: 0; color: var(--muted); font-size: 16px; }
.faq-item.is-open .faq-answer { grid-template-rows: 1fr; }
.faq-item.is-open .faq-answer > p { padding: 0 76px 30px 0; }

.contact-section { padding: clamp(72px, 7vw, 112px) 0; background: var(--dark); color: var(--dark-text); }
.contact-grid { display: grid; grid-template-columns: minmax(0, .92fr) minmax(500px, .88fr); gap: clamp(50px, 7vw, 100px); align-items: start; }
.contact-copy h2 { max-width: 850px; }
.contact-copy > p:not(.eyebrow) { max-width: 680px; margin: 22px 0 28px; color: var(--muted-light); font-size: 17px; }
.contact-copy ul { display: grid; gap: 13px; margin: 0; padding: 0; list-style: none; color: #d5d0dd; font-size: 16px; }
.contact-copy li { display: flex; gap: 11px; }
.contact-copy li span { color: var(--green); }
.contact-panel { position: relative; min-height: 560px; padding: clamp(26px, 3vw, 42px); border-radius: 30px; background: var(--white); color: var(--ink); box-shadow: 0 32px 90px rgba(0,0,0,.3); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-panel label { display: grid; gap: 9px; margin-bottom: 20px; font-size: 14px; font-weight: 850; }
.contact-panel label > span { color: var(--accent-dark); }
.contact-panel label small { color: var(--muted); font-size: 12px; font-weight: 650; }
input, textarea {
  width: 100%;
  min-height: 54px;
  padding: 14px 16px;
  border: 1px solid rgba(23,21,31,.22);
  border-radius: 12px;
  background: #fbfaf8;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.45;
  transition: border-color .2s ease, box-shadow .2s ease;
}
input:hover, textarea:hover { border-color: rgba(23,21,31,.42); }
input:focus, textarea:focus { border-color: var(--violet); box-shadow: 0 0 0 4px rgba(141,124,255,.14); outline: 0; }
textarea { min-height: 150px; resize: vertical; }
input[aria-invalid="true"], textarea[aria-invalid="true"] { border-color: #c73535; box-shadow: 0 0 0 4px rgba(199,53,53,.10); }
.consent-check { grid-template-columns: 24px 1fr; align-items: start; gap: 12px !important; margin: 0 0 22px !important; font-weight: 560 !important; line-height: 1.5; }
.consent-check input { width: 22px; min-height: 22px; height: 22px; margin: 1px 0 0; accent-color: var(--accent); }
.consent-check span { color: var(--muted) !important; }
.consent-check a { color: var(--ink); font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }
.consent-check b { color: var(--accent-dark); }
.form-note { margin: 15px 0 0; color: var(--muted); font-size: 13px; text-align: center; }
.form-status { min-height: 0; margin-bottom: 0; color: #ad2424; font-size: 14px; font-weight: 700; }
.form-status:not(:empty) { min-height: 24px; margin-bottom: 12px; }
.honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.form-success { position: absolute; inset: 0; display: grid; align-content: center; justify-items: start; padding: clamp(32px, 5vw, 70px); border-radius: inherit; background: var(--white); }
.form-success[hidden] { display: none; }
.form-success__icon { display: grid; place-items: center; width: 72px; height: 72px; border-radius: 50%; background: #e7f8ef; color: #128553; font-size: 30px; font-weight: 900; }
.form-success h3 { margin-top: 28px; font-size: clamp(34px, 3vw, 52px); }
.form-success p { max-width: 520px; margin: 18px 0 28px; color: var(--muted); font-size: 18px; }

.site-footer { padding: 56px 0 30px; background: var(--dark); color: var(--dark-text); border-top: 1px solid rgba(255,255,255,.08); }
.site-footer__grid { display: grid; grid-template-columns: 1.5fr .75fr .75fr 1fr; gap: clamp(32px, 5vw, 90px); align-items: start; }
.brand--footer .brand__mark { background: var(--white); }
.brand--footer .brand__mark::before,
.brand--footer .brand__mark span { background: var(--accent); }
.brand--footer .brand__name { color: var(--white); }
.footer-brand p { max-width: 440px; margin: 22px 0 0; color: #aaa5b1; font-size: 15px; }
.footer-contact, .footer-links { display: grid; gap: 10px; }
.footer-contact > span, .footer-links > span { margin-bottom: 8px; color: #75707c; font-size: 11px; font-weight: 900; letter-spacing: .14em; }
.footer-contact a, .footer-links a { color: #d8d3dc; font-size: 14px; }
.footer-contact a:hover, .footer-links a:hover { color: var(--accent); }
.footer-meta { display: grid; gap: 18px; justify-items: end; color: #aaa5b1; font-size: 13px; text-align: right; }

.legal-page { padding: calc(var(--header-height) + 60px) 0 88px; }
.legal-hero { max-width: 1080px; }
.legal-hero h1 { font-size: clamp(42px, 4.8vw, 68px); }
.legal-hero > p:not(.eyebrow) { max-width: 840px; margin: 22px 0 0; color: var(--muted); font-size: 18px; }
.legal-notice { margin-top: 34px; padding: 20px 24px; border-left: 4px solid var(--accent); background: var(--white); color: var(--muted); }
.legal-content { display: grid; gap: 0; max-width: 1100px; margin-top: 70px; border-top: 1px solid var(--line); }
.legal-content section { padding: 34px 0; border-bottom: 1px solid var(--line); }
.legal-content h2 { font-size: clamp(26px, 2.3vw, 38px); }
.legal-content p { max-width: 900px; margin: 14px 0 0; color: var(--muted); }
.legal-company { margin-top: 50px; padding: 28px; border-radius: 18px; background: var(--paper-2); }
.legal-company strong { display: block; margin-bottom: 8px; }

.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.65,.2,1); }
.reveal--delay { transition-delay: .12s; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1240px) {
  :root { --header-height: 78px; }
  .header-cta { display: none; }
  .site-header__inner { grid-template-columns: auto 1fr; }
  .hero__grid { grid-template-columns: 1fr .82fr; gap: 54px; }
  .hero__media, .hero__media img { min-height: 540px; }
  .project-card { grid-template-columns: .9fr 1.1fr; }
  .site-footer__grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-meta { grid-column: 1 / -1; grid-template-columns: 1fr auto; justify-items: start end; text-align: left; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.1); }
}

@media (max-width: 980px) {
  .site-header__inner { grid-template-columns: auto auto; justify-content: space-between; }
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-height: 48px;
    padding: 8px 0;
    border: 0;
    background: transparent;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    cursor: pointer;
  }
  .nav-toggle i, .nav-toggle i::before, .nav-toggle i::after { display: block; width: 24px; height: 2px; background: var(--ink); transition: transform .2s ease, opacity .2s ease; }
  .nav-toggle i { position: relative; }
  .nav-toggle i::before, .nav-toggle i::after { content: ""; position: absolute; left: 0; }
  .nav-toggle i::before { top: -7px; }
  .nav-toggle i::after { top: 7px; }
  .nav-toggle[aria-expanded="true"] i { background: transparent; }
  .nav-toggle[aria-expanded="true"] i::before { top: 0; transform: rotate(45deg); }
  .nav-toggle[aria-expanded="true"] i::after { top: 0; transform: rotate(-45deg); }
  .site-nav {
    position: fixed;
    inset: var(--header-height) 0 auto;
    display: grid;
    gap: 0;
    padding: 14px clamp(24px, 4vw, 76px) 30px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 40px rgba(23,21,31,.1);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform .25s ease, opacity .25s ease;
  }
  .site-nav.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .site-nav a { padding: 17px 0; border-bottom: 1px solid var(--line); font-size: 18px; }
  .site-nav a:last-child { border-bottom: 0; }
  .site-nav a::after { display: none; }
  .hero { min-height: auto; }
  .hero__grid, .section-intro--split, .story-grid, .process-grid, .faq-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero__copy { max-width: 920px; }
  .hero__media { min-height: 560px; }
  .hero__media img { min-height: 560px; }
  .section-intro--split { align-items: start; gap: 30px; }
  .section-intro > p { max-width: 780px; }
  .problem-card { grid-template-columns: 64px 1fr; }
  .problem-card__result { grid-column: 2; padding: 20px 0 0; border-left: 0; border-top: 1px solid var(--line); }
  .solution-grid { grid-template-columns: 1fr; }
  .solution-card { min-height: 390px; }
  .story-media figcaption { right: 24px; }
  .project-card, .project-card:nth-child(even) { grid-template-columns: 1fr; }
  .project-card:nth-child(even) .project-card__media { order: 0; }
  .project-card__media img { min-height: 460px; max-height: 560px; }
  .process-copy, .faq-intro { position: static; }
  .process-copy figure { max-width: 760px; }
  .faq-grid { gap: 56px; }
  .contact-grid { gap: 58px; }
  .contact-panel { min-height: 0; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  :root { --header-height: 72px; --radius: 18px; }
  body { font-size: 16px; }
  .wide-shell, .site-header__inner { padding-inline: 20px; }
  .brand { gap: 10px; }
  .brand__mark { width: 38px; height: 38px; border-radius: 12px; }
  .brand__name { font-size: 16px; }
  .brand__image { max-width: 150px; height: 40px; }
  .nav-toggle span { display: none; }
  h1 { font-size: clamp(42px, 12vw, 56px); line-height: 1; }
  h2 { font-size: clamp(34px, 9.5vw, 46px); }
  .eyebrow { margin-bottom: 20px; font-size: 11px; }
  .hero { padding-top: calc(var(--header-height) + 42px); padding-bottom: 42px; }
  .hero__grid { gap: 40px; }
  .hero__accent { margin-top: 20px; font-size: 19px; }
  .hero__description { margin-top: 16px; font-size: 16px; }
  .hero__actions { align-items: stretch; flex-direction: column; gap: 14px; margin-top: 30px; }
  .hero__actions .button { width: 100%; }
  .hero__actions .text-link { align-self: flex-start; }
  .hero__badges { display: grid; gap: 8px; margin-top: 26px; }
  .hero__media, .hero__media img { min-height: 410px; }
  .hero__media { border-radius: 24px 24px 24px 70px; }
  .hero__media figcaption { right: 20px; bottom: 22px; left: 20px; grid-template-columns: 42px 1fr; gap: 14px; }
  .hero__caption-index { width: 42px; height: 42px; }
  .hero__media strong { font-size: 17px; }
  .hero__media figcaption p { font-size: 13px; }
  .capability-band { padding: 17px 0; }
  .section { padding: 64px 0; }
  .section-intro--split { gap: 22px; }
  .section-intro > p { font-size: 16px; }
  .problem-list { margin-top: 46px; }
  .problem-card { grid-template-columns: 1fr; gap: 10px; padding: 30px 0; }
  .problem-card:hover { padding-inline: 0; background: transparent; }
  .problem-card__result { grid-column: auto; margin-top: 12px; }
  .solution-grid { margin-top: 46px; }
  .solution-card { min-height: 350px; padding: 26px; }
  .solution-card__icon { width: 60px; height: 60px; border-radius: 17px; }
  .solution-card__icon svg { width: 34px; }
  .story-section { padding: 48px 0 64px; }
  .story-grid { gap: 54px; }
  .story-media img { height: 410px; border-radius: 22px 22px 70px 22px; }
  .story-media figcaption { right: 14px; bottom: -28px; width: calc(100% - 28px); padding: 20px; }
  .story-copy { padding-top: 20px; }
  .story-copy > p:not(.eyebrow) { font-size: 16px; }
  .project-list { margin-top: 48px; }
  .project-card { min-height: 0; border-radius: 22px; }
  .project-card__media img { min-height: 300px; height: 300px; }
  .project-card__content { padding: 30px 24px 34px; }
  .project-card h3 { font-size: 29px; }
  .project-card p { font-size: 16px; }
  .project-card ul { display: grid; }
  .project-card li { width: fit-content; }
  .process-grid { gap: 48px; }
  .process-copy__intro { font-size: 16px; }
  .process-copy img { height: 300px; }
  .process-steps li { grid-template-columns: 48px 1fr; gap: 16px; padding: 30px 0; }
  .process-steps h3 { font-size: 23px; }
  .faq-grid { gap: 44px; }
  .faq-item button { grid-template-columns: 1fr 40px; gap: 14px; padding: 21px 0; font-size: 18px; }
  .faq-item button i { width: 38px; height: 38px; }
  .faq-item.is-open .faq-answer > p { padding-right: 0; }
  .contact-section { padding: 64px 0; }
  .contact-copy > p:not(.eyebrow) { font-size: 16px; }
  .contact-panel { padding: 24px 20px; border-radius: 22px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .button--full { min-height: 58px; }
  .site-footer { padding-top: 54px; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-brand { grid-column: auto; }
  .footer-meta { grid-column: auto; grid-template-columns: 1fr; justify-items: start; padding-top: 28px; }
  .legal-page { padding-top: calc(var(--header-height) + 52px); }
  .legal-hero > p:not(.eyebrow) { font-size: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
