:root {
  color-scheme: light;
  --ink: #111417;
  --muted: #59616b;
  --line: #d7d9d2;
  --paper: #f5f3ec;
  --panel: #ffffff;
  --accent: #0f766e;
  --accent-dark: #0d3f3a;
  --warm: #b84d2c;
  --steel: #1e3f55;
  --night: #0d1114;
  --shadow: 0 20px 70px rgba(22, 25, 29, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  letter-spacing: 0;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  padding: 0 28px;
  background: rgba(247, 246, 241, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 760;
}

.mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #fff;
  background: var(--accent-dark);
  border-radius: 7px;
}

nav {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
}

.hero {
  position: relative;
  min-height: calc(100vh - 68px);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #0f1518;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 16, 18, 0.82), rgba(11, 16, 18, 0.44), rgba(11, 16, 18, 0.24)),
    url("/assets/hero-workspace.png");
  background-size: cover;
  background-position: center;
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(920px, calc(100% - 40px));
  margin: 0 0 56px clamp(20px, 7vw, 96px);
  color: #fff;
}

.eyebrow,
.section-label {
  margin: 0 0 16px;
  color: #d8c7a3;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 940px;
  margin-bottom: 18px;
  font-size: clamp(50px, 9vw, 124px);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  max-width: 860px;
  margin-bottom: 18px;
  font-size: clamp(30px, 5vw, 58px);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: 0;
}

.lede {
  max-width: 840px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.42;
}

.manifesto {
  padding: clamp(42px, 7vw, 82px) clamp(20px, 7vw, 96px);
  background: var(--night);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.manifesto p {
  max-width: 1120px;
  margin: 0;
  font-size: clamp(28px, 5vw, 58px);
  line-height: 1.04;
  font-weight: 790;
}

.hero-actions,
.pilot .button {
  margin-top: 28px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 7px;
  font-weight: 760;
}

.primary {
  color: #fff;
  background: var(--accent);
}

.secondary {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 650px;
  margin: 42px 0 0;
}

.proof-strip div {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.23);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
}

dt {
  font-size: 28px;
  font-weight: 850;
}

dd {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.section {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: clamp(24px, 6vw, 72px);
  padding: clamp(58px, 9vw, 112px) clamp(20px, 7vw, 96px);
  border-bottom: 1px solid var(--line);
}

.section p {
  max-width: 780px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.dark-band {
  background: var(--night);
  color: #fff;
}

.dark-band .section-label {
  color: #8dd7cb;
}

.big-list {
  display: grid;
  gap: 18px;
}

.big-list article {
  display: grid;
  grid-template-columns: 170px minmax(220px, 0.65fr) minmax(260px, 1fr);
  gap: 22px;
  align-items: baseline;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.big-list span {
  color: #8dd7cb;
  font-weight: 850;
  text-transform: uppercase;
  font-size: 12px;
}

.big-list h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(24px, 3vw, 38px);
}

.big-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.capability-grid article {
  min-height: 238px;
  padding: 24px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(22, 25, 29, 0.05);
}

.capability-grid h3 {
  max-width: 260px;
  margin-bottom: 14px;
}

.capability-grid p {
  font-size: 16px;
  line-height: 1.55;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.stat-grid div {
  min-height: 128px;
  padding: 22px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.stat-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--accent-dark);
  font-size: 34px;
  line-height: 1;
}

.stat-grid span {
  color: var(--muted);
  line-height: 1.35;
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

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

.cards article,
.offer-list article {
  min-height: 260px;
  padding: 24px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(22, 25, 29, 0.06);
}

.cards span {
  display: block;
  margin-bottom: 48px;
  color: var(--warm);
  font-weight: 850;
}

.flow {
  display: grid;
  grid-template-columns: repeat(6, minmax(120px, 1fr));
  gap: 10px;
}

.flow div {
  min-height: 92px;
  display: grid;
  place-items: center;
  padding: 14px;
  color: #fff;
  background: var(--steel);
  border-radius: 8px;
  font-weight: 760;
  text-align: center;
}

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

.offer-list strong {
  display: inline-block;
  margin-top: 18px;
  color: var(--accent-dark);
}

.pilot {
  background: var(--panel);
}

.pilot .primary {
  margin-top: 8px;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 30px clamp(20px, 7vw, 96px);
  color: var(--muted);
  font-size: 14px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 28px;
  align-items: start;
}

.checklist {
  margin: 0;
  padding: 0;
  list-style: none;
}

.checklist li {
  padding: 18px 0;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  font-size: 18px;
  line-height: 1.35;
}

.checklist li::before {
  content: "+";
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  margin-right: 10px;
  color: #fff;
  background: var(--accent);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.page-hero {
  min-height: 56vh;
  padding: clamp(84px, 12vw, 150px) clamp(20px, 7vw, 96px);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(11, 16, 18, 0.88), rgba(11, 16, 18, 0.5)),
    url("/assets/hero-workspace.png");
  background-size: cover;
  background-position: center;
}

.page-hero.compact {
  min-height: 48vh;
}

.page-hero h1 {
  max-width: 980px;
}

.answer-list {
  display: grid;
  gap: 18px;
  padding: clamp(44px, 7vw, 92px) clamp(20px, 7vw, 96px);
}

.answer-list article {
  padding: clamp(24px, 4vw, 44px);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.answer-list h2 {
  margin-bottom: 12px;
  font-size: clamp(26px, 4vw, 42px);
}

.answer-list p {
  max-width: 960px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

@media (max-width: 940px) {
  .section {
    grid-template-columns: 1fr;
  }

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

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

  .stat-grid,
  .split,
  .cards.three,
  .capability-grid,
  .big-list article {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding: 14px 18px;
  }

  nav {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
  }

  .hero {
    min-height: 760px;
  }

  .hero-media {
    background:
      linear-gradient(180deg, rgba(11, 16, 18, 0.34), rgba(11, 16, 18, 0.88)),
      url("/assets/hero-workspace.png");
    background-position: center;
  }

  .hero-copy {
    width: calc(100% - 32px);
    margin: 0 16px 34px;
  }

  .proof-strip,
  .cards,
  .offer-list,
  .flow {
    grid-template-columns: 1fr;
  }

  .cards article,
  .offer-list article {
    min-height: auto;
  }

  footer {
    flex-direction: column;
  }
}
