:root {
  --paper: #f7f5ef;
  --surface: #ffffff;
  --ink: #1d1c19;
  --muted: #69655d;
  --line: #ddd8cd;
  --accent: #6653c7;
  --accent-hover: #5542b6;
  color-scheme: light;
}

@media (prefers-color-scheme: dark) {
  :root {
    --paper: #171715;
    --surface: #20201d;
    --ink: #f1efe8;
    --muted: #aaa69d;
    --line: #393832;
    --accent: #a99bf2;
    --accent-hover: #bbb0f5;
    color-scheme: dark;
  }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font: 16px/1.6 -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; -webkit-font-smoothing: antialiased; }
a { color: var(--accent); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--accent-hover); }
a:focus-visible, .button:focus-visible { outline: 3px solid var(--accent); outline-offset: 4px; }
h1, h2, h3 { font-family: Georgia, "Times New Roman", serif; font-weight: 400; line-height: 1.08; letter-spacing: -.025em; }
h1 { max-width: 850px; margin: 0; font-size: clamp(3rem, 7vw, 5.2rem); }
h2 { max-width: 720px; margin: 0 0 20px; font-size: clamp(2.2rem, 4vw, 3.6rem); }
h3 { margin: 0 0 10px; font-size: clamp(1.35rem, 2vw, 1.75rem); }
p { max-width: 720px; margin: 0 0 18px; }
.shell { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }
.narrow { max-width: 720px; }
.site-header { width: min(1180px, calc(100% - 48px)); min-height: 76px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.wordmark { color: var(--ink); font: 400 1.6rem/1 Georgia, "Times New Roman", serif; text-decoration: none; }
.site-header nav, .site-footer nav { display: flex; flex-wrap: wrap; align-items: center; justify-content: flex-end; gap: 8px 20px; }
.site-header nav a, .site-footer nav a { color: var(--ink); font-size: .9rem; text-decoration: none; }
.site-header nav a:hover, .site-footer nav a:hover { color: var(--accent); }
.hero { padding: 112px 0 104px; }
.eyebrow { margin-bottom: 18px; color: var(--accent); font-size: .76rem; font-weight: 700; letter-spacing: .14em; }
.hero-copy { max-width: 760px; margin: 30px 0 26px; font-size: clamp(1.08rem, 2vw, 1.3rem); color: var(--muted); }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 26px 0 20px; }
.button { display: inline-block; padding: 12px 18px; border: 1px solid var(--accent); border-radius: 8px; font-weight: 650; text-decoration: none; }
.primary { background: var(--accent); color: #fff; }
.primary:hover { background: var(--accent-hover); color: #fff; }
.secondary { background: transparent; color: var(--ink); border-color: var(--line); }
.secondary:hover { border-color: var(--accent); color: var(--accent); }
.trust-line { color: var(--muted); font-size: .9rem; }
blockquote { margin: 38px 0 0; padding-left: 18px; border-left: 2px solid var(--accent); font: italic 1.15rem Georgia, "Times New Roman", serif; }
.workflow { padding: 92px 0 118px; border-top: 1px solid var(--line); }
.section-intro { margin-bottom: 76px; color: var(--muted); font-size: 1.1rem; }
.workflow-step { padding: 0 0 100px; }
.workflow-step:last-child { padding-bottom: 0; }
.step-heading { margin-bottom: 16px; color: var(--accent); font-size: .78rem; font-weight: 700; letter-spacing: .12em; }
.workflow-step p { margin-bottom: 28px; color: var(--muted); }
.workflow-step img { display: block; width: 100%; height: auto; border: 1px solid var(--line); border-radius: 7px; background: var(--surface); box-shadow: 0 8px 26px rgba(29, 28, 25, .08); }
.band { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--surface); }
.band .shell { padding-top: 92px; padding-bottom: 92px; }
.steps { display: grid; gap: 14px; margin: 36px 0 28px; padding: 0; list-style: none; }
.steps li { display: flex; align-items: center; gap: 14px; }
.steps span { display: grid; width: 30px; height: 30px; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--accent); font-size: .85rem; }
.text-link { font-weight: 650; }
.section { padding-top: 100px; padding-bottom: 100px; }
.feature-grid, .trust-grid { display: grid; gap: 1px; margin-top: 48px; background: var(--line); border: 1px solid var(--line); }
.feature-grid { grid-template-columns: repeat(3, 1fr); }
.trust-grid { grid-template-columns: repeat(4, 1fr); }
.feature-grid article, .trust-grid article { min-height: 150px; padding: 26px; background: var(--paper); }
.feature-grid h3, .trust-grid h3 { font-size: 1.35rem; }
.feature-grid p, .trust-grid p { color: var(--muted); font-size: .95rem; }
.link-row { display: flex; flex-wrap: wrap; gap: 24px; margin-top: 28px; }
.cta { padding: 106px 0; }
.site-footer { display: flex; justify-content: space-between; gap: 36px; padding-top: 34px; padding-bottom: 46px; border-top: 1px solid var(--line); }
.site-footer p { margin: 12px 0 0; color: var(--muted); font-size: .9rem; }

@media (max-width: 800px) {
  .site-header { align-items: flex-start; flex-direction: column; padding-top: 22px; padding-bottom: 22px; }
  .site-header nav { justify-content: flex-start; }
  .hero { padding-top: 78px; padding-bottom: 78px; }
  .workflow, .section { padding-top: 72px; padding-bottom: 78px; }
  .section-intro { margin-bottom: 54px; }
  .workflow-step { padding-bottom: 72px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .shell, .site-header { width: min(100% - 40px, 1180px); }
  h1 { font-size: clamp(2.7rem, 14vw, 4.2rem); }
  .hero { padding-top: 60px; padding-bottom: 62px; }
  .actions { align-items: stretch; flex-direction: column; }
  .button { text-align: center; }
  .band .shell, .cta { padding-top: 70px; padding-bottom: 70px; }
  .feature-grid, .trust-grid { grid-template-columns: 1fr; }
  .site-footer { align-items: flex-start; flex-direction: column; }
  .site-footer nav { justify-content: flex-start; }
}
