:root { color-scheme: light; --ink: #172b42; --muted: #506378; --blue: #245be7; --line: #dbe4ed; --paper: #f6f8fb; }
* { box-sizing: border-box; }
body { margin: 0; background-color: var(--paper); background-image: radial-gradient(circle, rgba(36, 91, 231, .17) .8px, transparent 1px); background-size: 20px 20px; background-position: 10px 10px; color: var(--ink); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-underline-offset: 5px; }
a:focus-visible { outline: 3px solid var(--blue); outline-offset: 6px; }
.wrap { width: min(1200px, calc(100% - 96px)); margin-inline: auto; }
.header { min-height: 112px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 13px; text-decoration: none; font-size: 16px; font-weight: 650; }
.brand img { border-radius: 12px; }
.languages { display: flex; padding: 4px; border: 1px solid var(--line); border-radius: 30px; gap: 2px; }
.languages a { text-decoration: none; font-size: 12px; font-weight: 650; padding: 10px 14px; border-radius: 24px; }
.languages a[aria-current="page"] { background: var(--ink); color: white; }
.languages a:hover { background: #e0e7f2; color: var(--ink); }
.hero { display: grid; grid-template-columns: 1.25fr 1fr; min-height: 630px; background: #eaf0fc; border-radius: 32px; overflow: hidden; }
.hero-copy { padding: 68px 48px 62px; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
h1 { font-size: clamp(40px, 4.7vw, 65px); font-weight: 550; line-height: 1.06; letter-spacing: -.055em; margin: 0 0 30px; overflow-wrap: anywhere; }
.lead { font-size: 19px; line-height: 1.65; color: var(--muted); margin: 0 0 35px; max-width: 490px; }
.download { display: inline-flex; align-items: center; gap: 12px; padding: 16px 21px; min-height: 58px; background: var(--ink); color: white; border-radius: 14px; font-size: 15px; font-weight: 550; text-decoration: none; transition: background .15s ease; }
.download:hover { background: var(--blue); }
.download svg { width: 25px; height: 27px; flex-shrink: 0; }
.download > span:last-child { margin-left: 12px; font-size: 20px; }
.hero-image { background: #194a70; position: relative; min-width: 0; }
.hero-image img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.features { padding-top: 98px; }
h2 { max-width: 640px; font-size: clamp(30px, 3.2vw, 42px); line-height: 1.16; letter-spacing: -.035em; font-weight: 550; margin: 0 0 42px; }
.feature-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: 1fr; gap: 20px; list-style: none; margin: 0; padding: 0; }
.feature-card { min-width: 0; padding: 28px 30px 30px; background: #fff; border: 1px solid var(--line); border-radius: 22px; }
.feature-heading { display: flex; align-items: center; gap: 16px; margin-bottom: 18px; }
.feature-icon { display: grid; place-items: center; flex: 0 0 44px; height: 44px; border-radius: 13px; background: #edf3ff; color: var(--blue); }
.feature-icon svg { width: 24px; height: 24px; }
.feature-card h3 { margin: 0; font-size: 22px; line-height: 1.25; font-weight: 600; letter-spacing: -.025em; }
.feature-card p { margin: 0; color: var(--muted); font-size: 17px; line-height: 1.65; text-wrap: pretty; }
.details { margin-top: 64px; padding: 56px 0 64px; border-top: 1px solid var(--line); }
.details h2 { margin-bottom: 24px; max-width: none; }
.details-intro { max-width: 850px; }
.details-intro p { margin: 0 0 12px; font-size: 18px; line-height: 1.65; color: var(--muted); text-wrap: pretty; }
.details-intro p:last-child { margin-bottom: 0; }
.details-topics { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 36px; margin-top: 36px; }
.detail-topic { border-top: 2px solid #b6c9f4; padding-top: 20px; }
.detail-topic h3 { margin: 0 0 12px; font-size: 20px; line-height: 1.3; letter-spacing: -.02em; font-weight: 600; }
.detail-topic p { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.7; text-wrap: pretty; }
.closing { background: #eaf0fc; border-radius: 26px; padding: 48px; display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: center; }
.closing p { margin: 0; font-size: 24px; line-height: 1.5; letter-spacing: -.025em; }
.notes { padding: 49px 0 44px; color: var(--muted); font-size: 13px; line-height: 1.8; }
.notes p { margin: 0 0 15px; }
.footer { border-top: 1px solid var(--line); padding-block: 29px; display: flex; justify-content: space-between; align-items: center; gap: 24px; color: var(--muted); font-size: 13px; }
.footer p { margin: 0; }
.footer div { display: flex; gap: 28px; }
@media (min-width: 1400px) { .hero { min-height: 680px; } }
@media (max-width: 1000px) { .wrap { width: calc(100% - 48px); } .hero-copy { padding: 40px 32px; } .hero { min-height: 550px; grid-template-columns: 1.2fr 1fr; } .lead { font-size: 17px; } .feature-list { gap: 16px; } .feature-card { padding: 24px; } .feature-card h3 { font-size: 20px; } .closing { grid-template-columns: 1fr; gap: 28px; } .closing .download { justify-self: start; } }
@media (max-width: 680px) { .wrap { width: calc(100% - 32px); } .header { min-height: 88px; gap: 14px; } .brand { gap: 9px; font-size: 12px; max-width: 210px; } .brand img { width: 35px; height: 35px; border-radius: 9px; } .languages a { padding: 8px 10px; font-size: 11px; } .hero { grid-template-columns: 1fr; border-radius: 23px; } .hero-copy { padding: 40px 26px; } h1 { font-size: 43px; margin-bottom: 24px; } .lead { font-size: 17px; } .hero-image { max-height: 530px; } .hero-image img { height: auto; } .features { padding-top: 58px; } h2 { margin-bottom: 30px; } .feature-list { grid-template-columns: 1fr; grid-auto-rows: auto; gap: 14px; } .feature-card { padding: 24px; border-radius: 18px; } .feature-heading { gap: 13px; margin-bottom: 15px; } .feature-card h3 { font-size: 20px; } .feature-card p { font-size: 16px; } .details { margin-top: 36px; padding: 36px 0 40px; } .details h2 { margin-bottom: 20px; } .details-intro p { font-size: 17px; } .details-topics { grid-template-columns: 1fr; gap: 24px; margin-top: 28px; } .detail-topic { padding-top: 18px; } .closing { padding: 28px 25px; gap: 25px; border-radius: 22px; } .closing p { font-size: 21px; } .download { padding: 14px 16px; font-size: 14px; gap: 8px; } .notes { padding: 34px 0 22px; } .footer { align-items: flex-start; flex-direction: column; gap: 16px; } }
@media (prefers-reduced-motion: reduce) { * { transition: none !important; } }

/* Legal pages share the site's navigation and background. */
.legal-page { max-width: 1000px; padding-top: 20px; padding-bottom: 64px; }
.legal-back { display: inline-block; color: var(--muted); font-size: 14px; margin-bottom: 34px; text-decoration: none; }
.legal-back:hover { color: var(--blue); }
.legal-header { max-width: 850px; }
.legal-category { margin: 0 0 16px; font-size: 14px; color: var(--blue); font-weight: 600; }
.legal-header h1 { font-size: clamp(34px, 4.5vw, 54px); line-height: 1.12; margin-bottom: 22px; }
.legal-description { margin: 0 0 22px; color: var(--muted); font-size: 18px; line-height: 1.6; }
.legal-document { margin-top: 32px; background: white; border: 1px solid var(--line); border-radius: 24px; padding: 48px 56px; overflow-wrap: anywhere; }
.legal-document h2 { font-size: 28px; max-width: none; margin: 0 0 26px; line-height: 1.3; }
.legal-document p, .legal-document li { font-size: 16px; line-height: 1.8; }
.legal-document p { margin: 0 0 18px; }
.legal-clauses { padding-left: 30px; margin: 30px 0 0; }
.legal-clauses > li { padding-left: 10px; margin-bottom: 30px; scroll-margin-top: 24px; }
.legal-clauses > li::marker { color: var(--blue); font-weight: 650; }
.legal-clauses ul { margin: 0 0 18px; padding-left: 24px; }
.legal-clauses ul li { padding-left: 4px; margin-bottom: 8px; }
.legal-document section { scroll-margin-top: 24px; }
.legal-document section + section { border-top: 1px solid var(--line); margin-top: 42px; padding-top: 38px; }
@media (max-width: 680px) {
  .legal-page { padding-top: 10px; padding-bottom: 36px; }
  .legal-back { margin-bottom: 26px; }
  .legal-header h1 { font-size: 34px; }
  .legal-description { font-size: 16px; }
  .legal-document { padding: 26px 20px; border-radius: 18px; }
  .legal-document h2 { font-size: 24px; }
  .legal-document p, .legal-document li { font-size: 16px; line-height: 1.75; }
  .legal-clauses { padding-left: 24px; }
  .legal-clauses > li { padding-left: 3px; }
  .footer div { flex-wrap: wrap; gap: 12px 24px; }
}
@media print {
  body { background: white; }
  .legal-page { width: 100%; max-width: none; padding: 0; }
  body:has(.legal-page) > .header, body:has(.legal-page) > .footer, .legal-back { display: none; }
  .legal-document { border: 0; padding: 20px 0 0; }
  .legal-document h2 { break-after: avoid; }
}
