:root {
  --ink: #1f3749;
  --ink-deep: #132735;
  --accent: #4f7895;
  --accent-soft: #dce8ef;
  --paper: #fbfcfd;
  --mist: #f1f5f7;
  --line: #d8e1e6;
  --text: #26343e;
  --muted: #64737d;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(24, 48, 64, .09);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; color: var(--text); background: var(--paper); line-height: 1.65; }
a { color: var(--ink); text-decoration-thickness: 1px; text-underline-offset: 3px; }
.wrap { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.narrow { width: min(780px, calc(100% - 40px)); }
.site-header { position: sticky; top: 0; z-index: 20; background: rgba(251,252,253,.92); border-bottom: 1px solid rgba(216,225,230,.9); backdrop-filter: blur(12px); }
.nav-wrap { min-height: 66px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; background: var(--ink); color: white; font-weight: 800; font-size: .78rem; letter-spacing: .05em; text-decoration: none; }
nav { display: flex; flex-wrap: wrap; gap: 22px; }
nav a { font-size: .88rem; font-weight: 650; color: var(--muted); text-decoration: none; }
nav a:hover { color: var(--ink); }
.hero { padding: 92px 0 78px; background: radial-gradient(circle at 85% 10%, #e4edf2 0, transparent 34%), linear-gradient(180deg,#fbfcfd 0,#f5f8fa 100%); }
.hero-grid { display: grid; grid-template-columns: minmax(0,1.35fr) minmax(280px,.65fr); gap: 64px; align-items: center; }
.eyebrow,.section-kicker { text-transform: uppercase; letter-spacing: .16em; font-size: .76rem; font-weight: 800; color: var(--accent); margin: 0 0 10px; }
h1 { margin: 0; color: var(--ink-deep); font-size: clamp(3rem,8vw,5.9rem); line-height: .94; letter-spacing: -.055em; }
.lede { font-size: clamp(1.25rem,2.2vw,1.65rem); color: var(--ink); max-width: 760px; margin: 28px 0 16px; line-height: 1.35; font-weight: 620; }
.intro { max-width: 720px; font-size: 1.04rem; color: var(--muted); }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button { display: inline-block; padding: 12px 18px; border-radius: 999px; text-decoration: none; font-weight: 750; font-size: .92rem; }
.button.primary { background: var(--ink); color: white; }
.button.secondary { border: 1px solid var(--line); background: white; }
.fact-card { background: rgba(255,255,255,.76); border: 1px solid var(--line); border-radius: 22px; padding: 28px; box-shadow: var(--shadow); }
.fact-card p { margin: 0 0 16px; font-size: .93rem; }
.fact-card p:last-child { margin-bottom: 0; }
.fact-label { color: var(--accent); font-weight: 800; text-transform: uppercase; letter-spacing: .12em; font-size: .72rem !important; }
.section { padding: 82px 0; }
.section.alt { background: var(--mist); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
h2 { color: var(--ink-deep); font-size: clamp(2rem,4vw,3.1rem); line-height: 1.08; letter-spacing: -.035em; margin: 0 0 24px; }
.section p { font-size: 1.02rem; }
.timeline { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 16px; margin-top: 32px; }
.timeline article { background: white; border: 1px solid var(--line); border-radius: 16px; padding: 22px; }
.timeline span,.doc-type { color: var(--accent); font-size: .76rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.timeline h3 { color: var(--ink); font-size: 1.05rem; margin: 7px 0 7px; }
.timeline p { margin: 0; color: var(--muted); font-size: .93rem; }
.small-note { color: var(--muted); font-size: .9rem !important; margin-top: 22px; }
.proposal-section { background: var(--ink-deep); color: #dbe5eb; }
.proposal-section h2 { color: white; }
.proposal-section .section-kicker { color: #93b9d1; }
.proposal-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 58px; }
.callout { border-left: 1px solid rgba(255,255,255,.25); padding-left: 34px; }
.quote { color: white; font-size: 1.32rem !important; font-weight: 650; line-height: 1.42; }
.doc-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 18px; margin-top: 30px; }
.doc-card { display: flex; flex-direction: column; gap: 10px; padding: 26px; background: white; border: 1px solid var(--line); border-radius: 18px; text-decoration: none; box-shadow: 0 8px 28px rgba(24,48,64,.04); transition: transform .15s ease, box-shadow .15s ease; }
.doc-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.doc-card strong { font-size: 1.08rem; color: var(--ink-deep); }
.doc-card span:last-child { color: var(--muted); font-size: .92rem; }
.contact-section { text-align: center; }
.contact-links { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; font-weight: 700; }
.privacy-note { color: var(--muted); font-size: .86rem !important; margin-top: 32px; }
footer { padding: 25px 0; border-top: 1px solid var(--line); color: var(--muted); font-size: .82rem; }
.footer-wrap { display: flex; justify-content: space-between; gap: 20px; }
@media (max-width: 760px) {
  nav { display: none; }
  .hero { padding: 64px 0 54px; }
  .hero-grid,.proposal-grid,.timeline,.doc-grid { grid-template-columns: 1fr; }
  .hero-grid,.proposal-grid { gap: 34px; }
  .callout { border-left: 0; border-top: 1px solid rgba(255,255,255,.25); padding: 24px 0 0; }
  .section { padding: 62px 0; }
  .footer-wrap { flex-direction: column; gap: 4px; }
}
@media print { .site-header,.actions { display:none; } }
