:root {
  --bg: #ffffff;
  --surface: #f7f7f5;
  --text: #151515;
  --muted: #686868;
  --line: #e7e7e3;
  --accent: #111111;
  --max: 1080px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Nunito Sans", Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.65;
}
a { color: inherit; }
img { max-width: 100%; height: auto; display: block; }
.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo { width: 178px; opacity: .82; }
.menu { display: flex; align-items: center; gap: 28px; }
.menu a { text-decoration: none; color: var(--muted); font-size: 12px; letter-spacing: .22em; text-transform: uppercase; }
.menu a:hover { color: var(--text); }
.hero { padding: 92px 0 78px; border-bottom: 1px solid var(--line); }
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 64px; align-items: end; }
.eyebrow { margin: 0 0 18px; font-size: 12px; letter-spacing: .24em; color: var(--muted); text-transform: uppercase; }
h1 { margin: 0; max-width: 820px; font-size: clamp(42px, 6vw, 76px); line-height: .98; letter-spacing: -.055em; font-weight: 800; }
.lead { margin: 28px 0 0; max-width: 650px; color: var(--muted); font-size: 20px; line-height: 1.55; }
.hero-panel { padding: 32px; background: var(--surface); border: 1px solid var(--line); }
.hero-panel p { margin: 0; color: var(--muted); }
.hero-panel strong { display: block; color: var(--text); font-size: 18px; margin-bottom: 8px; }
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 34px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 46px; padding: 0 20px; border: 1px solid var(--text); text-decoration: none; font-size: 12px; letter-spacing: .18em; text-transform: uppercase; }
.button.primary { background: var(--text); color: #fff; }
.button.secondary { background: transparent; color: var(--text); }
.section { padding: 82px 0; }
.section.alt { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-title { display: grid; grid-template-columns: 250px 1fr; gap: 40px; margin-bottom: 42px; }
.section-title.stacked { display: block; margin-bottom: 0; }
.section-title h2 { margin: 0; font-size: 12px; letter-spacing: .24em; color: var(--muted); text-transform: uppercase; font-weight: 700; }
.section-title p { margin: 0; max-width: 700px; font-size: clamp(26px, 3.2vw, 42px); line-height: 1.08; letter-spacing: -.04em; font-weight: 800; }
.section-title.stacked p { margin-top: 18px; }
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.card { background: #fff; border: 1px solid var(--line); padding: 28px; min-height: 255px; display: flex; flex-direction: column; justify-content: space-between; }
.card span { color: var(--muted); font-size: 12px; letter-spacing: .18em; }
.card h3 { margin: 24px 0 12px; font-size: 21px; line-height: 1.15; letter-spacing: -.02em; }
.card p { margin: 0; color: var(--muted); font-size: 15px; }
.split { display: grid; grid-template-columns: 360px 1fr; gap: 72px; align-items: start; }
.text-block { max-width: 720px; }
.text-block p { margin: 0 0 22px; color: var(--muted); font-size: 18px; line-height: 1.65; }
.automation-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 42px; }
.feature { border: 1px solid var(--line); padding: 28px; background: #fff; }
.feature h3 { margin: 0 0 12px; font-size: 21px; letter-spacing: -.025em; }
.feature p { margin: 0; color: var(--muted); font-size: 15px; }
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.step { padding: 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }
.step .num { font-size: 12px; letter-spacing: .18em; color: var(--muted); }
.step h3 { margin: 22px 0 10px; font-size: 22px; letter-spacing: -.025em; }
.step p { margin: 0; color: var(--muted); font-size: 15px; }
.quote-band { background: #151515; color: #fff; padding: 72px 0; }
.quote-band p { margin: 0; max-width: 850px; font-size: clamp(28px, 4vw, 52px); line-height: 1; letter-spacing: -.055em; font-weight: 800; }
.contact { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-card { background: #fff; border: 1px solid var(--line); padding: 32px; }
.contact-card p { margin: 0 0 18px; color: var(--muted); }
.contact-card a { font-weight: 700; text-decoration-thickness: 1px; text-underline-offset: 4px; }
.small { font-size: 13px; }
.footer { padding: 38px 0; border-top: 1px solid var(--line); color: var(--muted); font-size: 13px; }
.footer .container { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
@media (max-width: 880px) {
  .hero-grid, .section-title, .split, .contact { grid-template-columns: 1fr; gap: 28px; }
  .section-title.stacked { margin-bottom: 10px; }
  .cards, .process, .automation-grid { grid-template-columns: 1fr 1fr; }
  .menu { display: none; }
  .hero { padding-top: 68px; }
}
@media (max-width: 560px) {
  .container { width: min(100% - 28px, var(--max)); }
  .cards, .process, .automation-grid { grid-template-columns: 1fr; }
  .card { min-height: auto; }
  .section { padding: 58px 0; }
}
