:root {
  --primary: #5D2A7A;
  --accent: #00B894;
  --surface: #FBF7FF;
  --ink: #121826;
  --muted: #5b6474;
  --line: #dfe5ef;
  --white: #ffffff;
  --shadow: 0 18px 48px rgba(18, 24, 38, .12);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif; color: var(--ink); background: #fff; letter-spacing: 0; }
a { color: inherit; }
.wrap { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.site-header { position: sticky; top: 0; z-index: 20; background: rgba(255,255,255,.94); border-bottom: 1px solid var(--line); backdrop-filter: blur(14px); }
.nav { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; text-decoration: none; }
.brand-mark { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 8px; color: #fff; background: linear-gradient(135deg, var(--primary), var(--accent)); box-shadow: var(--shadow); }
.nav-links { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; justify-content: flex-end; }
.nav-links a { min-height: 38px; display: inline-flex; align-items: center; padding: 8px 11px; border-radius: 8px; color: var(--muted); text-decoration: none; font-weight: 700; font-size: 14px; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--primary); background: var(--surface); }
.hero { background: linear-gradient(180deg, var(--surface), #fff); border-bottom: 1px solid var(--line); }
.hero-grid { min-height: 640px; display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 44px; padding: 58px 0; }
.subhero { background: linear-gradient(135deg, var(--surface), #fff); border-bottom: 1px solid var(--line); }
.subhero .wrap { padding: 74px 0 48px; }
.eyebrow { display: inline-flex; align-items: center; color: var(--primary); font-size: 12px; font-weight: 900; letter-spacing: 0; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; }
h1 { max-width: 800px; font-size: clamp(40px, 6vw, 72px); line-height: .98; margin-bottom: 18px; letter-spacing: 0; }
h2 { font-size: clamp(28px, 4vw, 44px); line-height: 1.04; margin-bottom: 12px; letter-spacing: 0; }
h3 { font-size: 20px; line-height: 1.18; margin-bottom: 8px; letter-spacing: 0; }
.lead { max-width: 720px; font-size: clamp(18px, 2vw, 22px); line-height: 1.55; color: var(--muted); }
p { color: var(--muted); line-height: 1.7; }
.actions, .cta-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.btn { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; padding: 12px 18px; border: 1px solid var(--line); border-radius: 8px; background: #fff; color: var(--primary); font-weight: 900; text-decoration: none; box-shadow: 0 8px 22px rgba(18, 24, 38, .06); }
.btn.primary { background: var(--primary); border-color: var(--primary); color: #fff; }
.btn.accent { background: var(--accent); border-color: var(--accent); color: #101418; }
.hero-media { position: relative; }
.hero-media img { display: block; width: 100%; height: auto; border-radius: 8px; box-shadow: var(--shadow); border: 1px solid rgba(255,255,255,.8); }
.facts { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; margin-top: 28px; }
.fact { min-height: 86px; padding: 14px; border: 1px solid var(--line); border-radius: 8px; background: #fff; }
.fact b { display: block; font-size: 22px; color: var(--primary); }
.fact span { color: var(--muted); font-size: 13px; font-weight: 700; }
section { padding: 62px 0; }
.section-head { display: flex; justify-content: space-between; gap: 28px; align-items: end; margin-bottom: 24px; }
.section-head p { max-width: 470px; }
.grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.feature-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card, .table-card, .checklist { border: 1px solid var(--line); border-radius: 8px; background: #fff; padding: 22px; box-shadow: 0 12px 32px rgba(18,24,38,.05); }
.card.compact { min-height: 190px; }
.tag { display: inline-flex; margin-bottom: 14px; padding: 6px 9px; border-radius: 8px; background: var(--surface); color: var(--primary); font-size: 12px; font-weight: 900; text-transform: uppercase; }
.text-link { font-weight: 900; color: var(--primary); text-decoration: none; }
.split { background: var(--surface); }
.split-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 24px; align-items: start; }
.checklist { display: grid; gap: 12px; }
.checklist div { position: relative; padding-left: 28px; font-weight: 800; color: #202738; }
.checklist div:before { content: ""; position: absolute; left: 0; top: 7px; width: 14px; height: 14px; border-radius: 4px; background: var(--accent); }
.checklist.wide { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.steps { display: grid; gap: 14px; }
.step { display: grid; grid-template-columns: 42px 1fr; gap: 16px; align-items: start; padding: 18px; border: 1px solid var(--line); border-radius: 8px; background: #fff; }
.step span { width: 42px; height: 42px; border-radius: 8px; background: linear-gradient(135deg, var(--primary), var(--accent)); }
table { width: 100%; border-collapse: collapse; }
th, td { text-align: left; padding: 14px 12px; border-bottom: 1px solid var(--line); vertical-align: top; }
th { color: var(--primary); font-size: 13px; text-transform: uppercase; }
.cta-band { background: #101418; color: #fff; }
.cta-grid { display: grid; grid-template-columns: 1fr auto; gap: 28px; align-items: center; }
.cta-band h2, .cta-band p { color: #fff; }
.cta-band p { opacity: .78; max-width: 680px; }
.footer { padding: 30px 0; border-top: 1px solid var(--line); background: #fff; }
.footer-grid { display: flex; justify-content: space-between; gap: 18px; align-items: center; flex-wrap: wrap; }
.footer p { margin: 0; font-size: 14px; }
@media (max-width: 860px) {
  .nav { align-items: flex-start; flex-direction: column; padding: 14px 0; }
  .nav-links { justify-content: flex-start; }
  .hero-grid, .split-grid, .cta-grid { grid-template-columns: 1fr; }
  .hero-grid { min-height: auto; padding: 44px 0; }
  .grid, .feature-grid, .facts, .checklist.wide { grid-template-columns: 1fr; }
  .section-head { display: block; }
  h1 { font-size: 42px; }
}
