:root {
  color-scheme: light;
  --ink: #171714;
  --muted: #6c6b63;
  --line: #deddd5;
  --paper: #f7f6f0;
  --panel: #eeede5;
  --accent: #325c4a;
  --accent-soft: #dfe8df;
  --max: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Aptos", "Segoe UI Variable Text", "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
a:hover { color: var(--accent); }

.site-header,
.site-footer,
main { width: min(calc(100% - 48px), var(--max)); margin-inline: auto; }

.site-header {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.wordmark {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  letter-spacing: -0.04em;
}

.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav a { color: var(--muted); font-size: 14px; }
.site-nav a:hover { color: var(--ink); }

.hero {
  min-height: 670px;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, .55fr);
  gap: 80px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: .14em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 840px;
  margin-bottom: 28px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(58px, 8.7vw, 126px);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: .88;
}

.hero-copy {
  max-width: 700px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(18px, 2.1vw, 25px);
  line-height: 1.45;
}

.workspace-mark {
  position: relative;
  min-height: 330px;
  border: 1px solid var(--line);
  background: var(--panel);
}

.workspace-mark::before,
.workspace-mark::after {
  content: "";
  position: absolute;
  border: 1px solid var(--ink);
  background: var(--paper);
}

.workspace-mark::before { inset: 30px 54px 110px 28px; }
.workspace-mark::after { inset: 126px 24px 34px 86px; background: var(--accent-soft); }
.workspace-mark span { position: absolute; z-index: 1; font-size: 11px; color: var(--muted); }
.workspace-mark span:first-child { left: 42px; top: 44px; }
.workspace-mark span:last-child { right: 38px; bottom: 46px; }

.section { padding: 118px 0; border-bottom: 1px solid var(--line); }
.section-heading { display: grid; grid-template-columns: 1fr 2fr; gap: 60px; margin-bottom: 74px; }

h2 {
  max-width: 800px;
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 5vw, 66px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.section-intro { max-width: 620px; color: var(--muted); font-size: 18px; }
.capability-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); }
.capability { padding: 26px 24px 36px 0; border-right: 1px solid var(--line); }
.capability + .capability { padding-left: 24px; }
.capability:last-child { border-right: 0; }
.capability-number { display: block; margin-bottom: 64px; color: var(--muted); font-size: 12px; }
h3 { margin-bottom: 12px; font-family: Georgia, "Times New Roman", serif; font-size: 23px; font-weight: 400; }
.capability p { margin-bottom: 0; color: var(--muted); font-size: 14px; }

.integration { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: end; }
.integration-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.integration-list li { padding: 20px 0; border-bottom: 1px solid var(--line); }
.independence-note { margin-top: 28px; color: var(--muted); font-size: 13px; }

.site-footer { min-height: 180px; display: flex; justify-content: space-between; align-items: center; }
.footer-links { display: flex; flex-wrap: wrap; gap: 26px; color: var(--muted); font-size: 14px; }

.legal { width: min(calc(100% - 48px), 820px); padding: 96px 0 130px; }
.legal h1 { margin-bottom: 30px; font-size: clamp(52px, 7vw, 88px); line-height: .98; }
.legal .lede { margin-bottom: 72px; color: var(--muted); font-size: 19px; }
.legal h2 { margin: 58px 0 15px; font-family: Georgia, "Times New Roman", serif; font-size: 29px; }
.legal p, .legal li { color: #3d3c37; }
.legal ul { padding-left: 22px; }
.effective { margin-top: 76px; padding-top: 24px; border-top: 1px solid var(--line); color: var(--muted); font-size: 14px; }
@media (prefers-reduced-motion: no-preference) {
  .hero > * { animation: rise .7s cubic-bezier(.2,.7,.2,1) both; }
  .hero > :last-child { animation-delay: .12s; }
  @keyframes rise { from { opacity: 0; transform: translateY(16px); } }
}

@media (max-width: 760px) {
  .site-header, .site-footer, main { width: min(calc(100% - 32px), var(--max)); }
  .site-header { min-height: 72px; }
  .site-nav a:nth-child(-n+2) { display: none; }
  .site-nav { gap: 18px; }
  .hero { min-height: auto; grid-template-columns: 1fr; gap: 54px; padding: 90px 0 70px; }
  h1 { font-size: clamp(54px, 18vw, 76px); }
  .workspace-mark { min-height: 260px; }
  .section { padding: 82px 0; }
  .section-heading, .integration { grid-template-columns: 1fr; gap: 28px; margin-bottom: 52px; }
  .capability-grid { grid-template-columns: 1fr; }
  .capability, .capability + .capability { padding: 22px 0 28px; border-right: 0; border-bottom: 1px solid var(--line); }
  .capability-number { margin-bottom: 28px; }
  .site-footer { min-height: 220px; flex-direction: column; justify-content: center; align-items: flex-start; gap: 24px; }
  .legal { width: min(calc(100% - 32px), 820px); padding: 70px 0 100px; }
}
