:root {
  --bg: #fff;
  --text: #111827;
  --muted: #4b5563;
  --brand: #5a29dd;
  --brand-dark: #2f1671;
  --accent: #ffcc00;
  --aqua: #91e4ec;
  --soft: #f5f2ff;
  --border: #ddd3ff;
  --shadow: 0 1rem 2.5rem rgba(47, 22, 113, .16);
  --radius: 1rem;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--text); background: var(--bg); font: 1.0625rem/1.65 Arial, Helvetica, sans-serif; }
img { max-width: 100%; height: auto; }
a { color: var(--brand); text-underline-offset: .18em; }
a:hover { color: var(--brand-dark); }
a:focus-visible { outline: 4px solid #2b2a28; outline-offset: 4px; }
.container { width: min(1120px, calc(100% - 2rem)); margin-inline: auto; }
.skip-link { position: absolute; left: 1rem; top: 0; z-index: 100; transform: translateY(-130%); padding: .75rem 1rem; border-radius: 0 0 .5rem .5rem; color: #fff; background: var(--text); }
.skip-link:focus { transform: translateY(0); }
.site-header { position: sticky; top: 0; z-index: 10; background: #fff; border-bottom: 1px solid var(--border); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding: .75rem 0; }
.brand { display: inline-flex; align-items: center; gap: .75rem; color: var(--text); font-weight: 700; text-decoration: none; }
.brand-logo { width: 3.5rem; height: 3.5rem; border-radius: .75rem; object-fit: cover; box-shadow: 0 .35rem 1rem rgba(43,42,40,.16); }
.nav { display: flex; flex-wrap: wrap; align-items: center; justify-content: flex-end; gap: .45rem; }
.nav a { padding: .55rem .75rem; border-radius: 999px; font-weight: 700; text-decoration: none; }
.nav a:hover { background: var(--soft); }
.nav .language { color: #fff; background: var(--brand); }
.nav .language:hover { color: #fff; background: var(--brand-dark); }
.language { display: inline-flex; align-items: center; gap: .45rem; }
.flag-icon { font-size: 1.25em; line-height: 1; }
.hero { padding: clamp(3.5rem, 9vw, 7rem) 0; background: linear-gradient(135deg, var(--soft), #fff 58%); }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(18rem, .65fr); align-items: center; gap: 2.5rem; }
.eyebrow { margin: 0 0 .75rem; color: var(--brand-dark); font-size: .86rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
h1, h2, h3 { line-height: 1.18; margin-top: 0; }
h1 { max-width: 13ch; margin-bottom: 1rem; font-size: clamp(2.65rem, 7vw, 5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
h3 { font-size: 1.3rem; }
.lead { max-width: 48rem; color: var(--muted); font-size: 1.2rem; }
.tagline { display: inline-block; margin: 1rem 0 0; padding: .5rem .8rem; border-left: .45rem solid var(--accent); color: var(--brand-dark); background: #fff; font-size: 1.12rem; font-weight: 800; }
.hero-card { padding: 1.5rem; border: 1px solid var(--border); border-top: .55rem solid var(--accent); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow); }
.hero-card img { display: block; width: 7rem; height: 7rem; margin-bottom: 1rem; border-radius: 1.25rem; object-fit: cover; }
.hero-card p:last-child { margin-bottom: 0; }
.buttons { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.6rem; }
.button { display: inline-block; padding: .85rem 1.25rem; border: 2px solid var(--brand); border-radius: 999px; color: #fff; background: var(--brand); font-weight: 800; text-decoration: none; box-shadow: 0 .55rem 1.25rem rgba(47,22,113,.18); }
.button:hover { color: #fff; background: var(--brand-dark); }
.button-secondary { color: var(--brand); background: #fff; box-shadow: none; }
.button-secondary:hover { color: var(--brand-dark); background: var(--soft); }
.section { padding: clamp(3.25rem, 7vw, 5.5rem) 0; }
.section-soft { background: var(--soft); }
.intro { max-width: 800px; }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2rem; }
.card { padding: 1.35rem; border: 1px solid var(--border); border-radius: var(--radius); background: #fff; }
.card p { margin-bottom: 0; color: var(--muted); }
.card strong { color: var(--brand-dark); }
.context-flow { display: flex; flex-wrap: wrap; gap: .65rem; margin: 1.5rem 0 0; padding: 0; list-style: none; }
.context-flow li { padding: .65rem .9rem; border: 1px solid var(--border); border-radius: 999px; background: #fff; font-weight: 700; }
.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(18rem, .72fr); gap: 2rem; align-items: start; }
.panel { padding: clamp(1.4rem, 4vw, 2.2rem); border: 1px solid var(--border); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow); }
.panel-accent { border-left: .65rem solid var(--accent); }
.check-list { padding-left: 1.25rem; }
.check-list li + li { margin-top: .7rem; }
.notice { padding: 1rem 1.15rem; border-left: .5rem solid var(--aqua); background: var(--soft); }
.cta { color: #fff; background: linear-gradient(135deg, var(--brand-dark), var(--brand)); }
.cta h2 { color: #fff; }
.cta p { max-width: 760px; color: rgba(255,255,255,.92); }
.cta .button { border-color: #fff; color: var(--brand-dark); background: #fff; }
.cta .button:hover { color: var(--brand-dark); background: var(--soft); }
.cta .button-secondary { color: #fff; background: transparent; }
.cta .button-secondary:hover { color: var(--brand-dark); background: #fff; }
.site-footer { padding: 2.2rem 0; color: #fff; background: var(--brand-dark); }
.footer-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; }
.site-footer p { margin: 0; }
.site-footer a { color: #fff; }
@media (max-width: 860px) {
  .site-header { position: static; }
  .header-inner { align-items: flex-start; flex-direction: column; }
  .nav { justify-content: flex-start; }
  .hero-grid, .split, .grid { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
