
:root {
  color-scheme: light;
  --ink: #0d0d0d;
  --muted: #5d625f;
  --paper: #f5f3ee;
  --soft: #fbfaf7;
  --white: #ffffff;
  --line: #dad8d1;
  --accent: #2f6a47;
  --dark: #11110f;
  --max: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
}
a { color: inherit; }
img { display: block; max-width: 100%; height: auto; }
.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 20;
  padding: 10px 14px;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(251,250,247,.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.nav-shell {
  width: min(calc(100% - 40px), var(--max));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 760;
  text-decoration: none;
}
.wordmark img {
  width: 42px;
  height: 42px;
  border-radius: 7px;
  object-fit: contain;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  color: var(--ink);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}
.nav-links a:hover { text-decoration: underline; text-underline-offset: 5px; }
.nav-cta {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  border: 1px solid var(--ink);
  border-radius: 4px;
}
h1, h2, h3, p { margin-top: 0; letter-spacing: 0; }
h1, h2 {
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-weight: 500;
}
.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 820;
  text-transform: uppercase;
}
.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 760;
  text-decoration: none;
}
.button-primary { background: var(--ink); color: var(--white); }
.button-primary:hover { background: #2a2a28; }
.button-secondary { border-color: var(--line); background: var(--white); color: var(--ink); }
.button-secondary:hover { border-color: var(--ink); }
.hero { background: var(--soft); border-bottom: 1px solid var(--line); }
.hero-inner {
  width: min(calc(100% - 40px), var(--max));
  min-height: min(760px, calc(100svh - 72px));
  margin: 0 auto;
  padding: 84px 0 70px;
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(360px, .76fr);
  gap: 72px;
  align-items: center;
}
.hero-copy { max-width: 730px; }
h1 {
  margin-bottom: 22px;
  font-size: 104px;
  line-height: .9;
}
.hero-lede {
  max-width: 630px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 22px;
  line-height: 1.45;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.hero-note { max-width: 590px; margin: 18px 0 0; color: var(--muted); font-size: 13px; }
.product-panel {
  min-height: 520px;
  padding: 20px;
  border: 1px solid var(--line);
  background: var(--white);
  display: grid;
  align-content: space-between;
}
.panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.panel-top img { width: 60px; height: 60px; border-radius: 10px; object-fit: contain; }
.panel-status { color: var(--muted); font-size: 12px; font-weight: 760; text-transform: uppercase; }
.panel-title {
  margin: 34px 0 18px;
  font-family: Georgia, serif;
  font-size: 42px;
  line-height: 1.03;
}
.panel-text { color: var(--muted); font-size: 15px; }
.preview-list { margin-top: 44px; border-top: 1px solid var(--ink); }
.preview-row {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 14px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}
.preview-row span { color: var(--accent); font-size: 12px; font-weight: 820; }
.preview-row strong { display: block; font-size: 15px; }
.preview-row small { color: var(--muted); font-size: 13px; }
.trust-strip { background: var(--paper); border-bottom: 1px solid var(--line); }
.trust-inner {
  width: min(calc(100% - 40px), var(--max));
  min-height: 116px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr repeat(3, 1fr);
  align-items: center;
}
.trust-intro {
  max-width: 260px;
  font-family: Georgia, serif;
  font-size: 19px;
  line-height: 1.25;
}
.trust-item { min-height: 48px; padding-left: 28px; border-left: 1px solid var(--line); }
.trust-item strong, .trust-item span { display: block; }
.trust-item strong { margin-bottom: 4px; font-size: 14px; }
.trust-item span { color: var(--muted); font-size: 13px; }
.section { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; padding: 104px 0; }
.section-heading {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 58px;
}
.section-heading h2 { margin-bottom: 0; font-size: 58px; line-height: 1.02; }
.section-heading p { max-width: 620px; margin-bottom: 0; color: var(--muted); font-size: 18px; }
.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--line);
}
.capability { min-width: 0; min-height: 285px; padding: 30px 30px 34px 0; }
.capability + .capability { padding-left: 30px; border-left: 1px solid var(--line); }
.capability-index { color: var(--accent); font-size: 12px; font-weight: 850; }
.capability h3 { margin: 46px 0 14px; font-size: 21px; }
.capability p { margin-bottom: 0; color: var(--muted); }
.workflow-band { background: var(--dark); color: var(--white); }
.workflow-inner {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 104px 0;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 84px;
}
.workflow-copy h2 { max-width: 540px; margin-bottom: 22px; font-size: 58px; line-height: 1.02; }
.workflow-copy p { color: #c8c5bd; }
.workflow-list { border-top: 1px solid rgba(255,255,255,.34); }
.workflow-step {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,.22);
}
.workflow-step strong { font-size: 15px; }
.workflow-step p { margin: 5px 0 0; color: #c8c5bd; font-size: 14px; }
.step-number { color: #a4c8ae; font-weight: 850; }
.access-band {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 92px 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 36px;
  align-items: center;
}
.access-band h2 { margin-bottom: 12px; font-size: 48px; line-height: 1.05; }
.access-band p { max-width: 680px; margin-bottom: 0; color: var(--muted); }
.site-footer { background: var(--white); border-top: 1px solid var(--line); }
.footer-inner {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 38px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.footer-brand { display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: 13px; }
.footer-brand img { width: 34px; height: 34px; border-radius: 7px; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 22px; }
.footer-links a { color: var(--muted); font-size: 13px; text-underline-offset: 4px; }
:focus-visible { outline: 3px solid #6fb285; outline-offset: 4px; }

@media (max-width: 900px) {
  .nav-links a:not(.nav-cta) { display: none; }
  .hero-inner { grid-template-columns: 1fr; gap: 36px; padding-top: 62px; }
  h1 { font-size: 76px; }
  .product-panel { min-height: 420px; }
  .trust-inner { grid-template-columns: 1fr 1fr; padding: 24px 0; gap: 20px 0; }
  .trust-intro { grid-column: 1 / -1; max-width: none; }
  .trust-item { padding-left: 0; border-left: 0; }
  .trust-item:nth-child(3), .trust-item:nth-child(4) { padding-left: 18px; border-left: 1px solid var(--line); }
  .section { padding: 82px 0; }
  .section-heading, .workflow-inner { grid-template-columns: 1fr; gap: 34px; }
  .capability-grid { grid-template-columns: 1fr; }
  .capability, .capability + .capability { min-height: 0; padding: 28px 0; border-left: 0; border-top: 1px solid var(--line); }
  .capability:first-child { border-top: 0; }
  .capability h3 { margin-top: 18px; }
  .access-band { grid-template-columns: 1fr; }
  .access-band .button { justify-self: start; }
}

@media (max-width: 560px) {
  .nav-shell { width: min(calc(100% - 28px), var(--max)); min-height: 66px; }
  .wordmark { font-size: 16px; }
  .nav-cta { padding: 0 11px; font-size: 13px !important; }
  .hero-inner, .trust-inner, .section, .workflow-inner, .access-band, .footer-inner { width: min(calc(100% - 32px), var(--max)); }
  .hero-inner { padding: 48px 0 54px; }
  h1 { font-size: 54px; }
  .hero-lede { font-size: 18px; }
  .hero-actions .button { width: 100%; }
  .product-panel { min-height: 0; padding: 17px; }
  .panel-title { font-size: 34px; }
  .trust-inner { grid-template-columns: 1fr; }
  .trust-intro { grid-column: auto; }
  .trust-item, .trust-item:nth-child(3), .trust-item:nth-child(4) { padding: 13px 0 0; border-left: 0; border-top: 1px solid var(--line); }
  .section-heading h2, .workflow-copy h2, .access-band h2 { font-size: 40px; }
  .footer-inner { align-items: flex-start; flex-direction: column; }
  .footer-links { justify-content: flex-start; }
}

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