:root {
  --ink: #101828;
  --muted: #475467;
  --line: #d0d5dd;
  --soft: #f2f4f7;
  --surface: #ffffff;
  --accent: #2e5aac;
  --accent-dark: #1f4288;
  --teal: #0e9384;
  --max: 1160px;
  --radius: 18px;
}
* { 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(--ink); background: var(--surface); line-height: 1.6; }
a { color: inherit; }
img { max-width: 100%; }
.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.skip-link { position: absolute; left: -9999px; top: 10px; z-index: 999; background: var(--ink); color: #fff; padding: 10px 14px; border-radius: 8px; }
.skip-link:focus { left: 10px; }
.site-header { position: sticky; top: 0; z-index: 30; border-bottom: 1px solid rgba(208,213,221,.8); background: rgba(255,255,255,.92); backdrop-filter: blur(14px); }
.nav-wrap { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; text-decoration: none; letter-spacing: -.02em; }
.brand-mark { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 10px; background: linear-gradient(135deg, var(--accent), var(--teal)); color: white; font-weight: 900; }
.primary-nav { display: flex; gap: 28px; align-items: center; }
.primary-nav a, .site-footer nav a { color: var(--muted); text-decoration: none; font-weight: 600; }
.primary-nav a:hover, .site-footer nav a:hover { color: var(--accent); }
.menu-toggle { display: none; border: 1px solid var(--line); background: white; border-radius: 10px; padding: 8px 12px; font: inherit; }
.hero { padding: 96px 0 84px; background: radial-gradient(circle at 86% 20%, rgba(46,90,172,.13), transparent 34%), radial-gradient(circle at 8% 10%, rgba(14,147,132,.10), transparent 30%), #fbfcfe; border-bottom: 1px solid var(--line); }
.hero-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 72px; align-items: center; }
.eyebrow { margin: 0 0 12px; color: var(--accent); text-transform: uppercase; letter-spacing: .12em; font-size: .78rem; font-weight: 800; }
h1, h2, h3 { line-height: 1.15; margin-top: 0; letter-spacing: -.035em; }
h1 { font-size: clamp(2.6rem, 5vw, 5rem); margin-bottom: 24px; max-width: 12ch; }
h2 { font-size: clamp(2rem, 3vw, 3.1rem); margin-bottom: 20px; }
h3 { font-size: 1.15rem; margin-bottom: 8px; }
.lead { font-size: 1.2rem; color: var(--muted); max-width: 62ch; }
.lead-sm { font-size: 1.08rem; color: var(--muted); }
.actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 20px; border-radius: 12px; text-decoration: none; font-weight: 750; }
.button.primary { background: var(--accent); color: white; }
.button.primary:hover { background: var(--accent-dark); }
.button.secondary { border: 1px solid var(--line); background: white; }
.hero-card { padding: 30px; border: 1px solid rgba(208,213,221,.9); border-radius: 24px; background: rgba(255,255,255,.92); box-shadow: 0 22px 60px rgba(16,24,40,.10); }
.status { display: inline-flex; align-items: center; gap: 8px; padding: 6px 10px; border-radius: 999px; background: #ecfdf3; color: #027a48; font-size: .82rem; font-weight: 750; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: #12b76a; }
.card-kicker { margin: 28px 0 6px; color: var(--muted); font-size: .85rem; }
.hero-card dl { margin: 24px 0 0; }
.hero-card dl div { padding: 14px 0; border-top: 1px solid var(--line); }
.hero-card dt { color: var(--muted); font-size: .84rem; }
.hero-card dd { margin: 2px 0 0; font-weight: 700; }
.section { padding: 88px 0; }
.section-alt { background: var(--soft); }
.content-grid, .product-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 72px; align-items: start; }
.facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 34px; }
.facts div { padding: 18px; border: 1px solid var(--line); border-radius: 14px; background: #fff; }
.facts strong, .facts span { display: block; }
.facts strong { font-size: .82rem; color: var(--muted); margin-bottom: 6px; }
.feature-list { display: grid; gap: 14px; }
.feature-list article { position: relative; padding: 24px 24px 24px 78px; background: white; border: 1px solid var(--line); border-radius: 16px; }
.feature-number { position: absolute; left: 24px; top: 24px; color: var(--accent); font-weight: 800; }
.feature-list p { margin-bottom: 0; color: var(--muted); }
.section-heading { max-width: 680px; margin-bottom: 32px; }
.section-heading p:last-child { color: var(--muted); }
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.contact-card { display: block; padding: 22px; border: 1px solid var(--line); border-radius: 16px; text-decoration: none; background: #fff; transition: transform .2s ease, border-color .2s ease; }
.contact-card:hover { transform: translateY(-3px); border-color: var(--accent); }
.contact-card span, .contact-card strong { display: block; }
.contact-card span { color: var(--muted); font-size: .9rem; margin-bottom: 8px; }
.contact-card strong { color: var(--accent); }
.site-footer { padding: 50px 0; background: var(--ink); color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: start; }
.footer-brand { color: #fff; margin-bottom: 14px; }
.site-footer p { color: #98a2b3; }
.site-footer nav { display: grid; grid-template-columns: repeat(2, max-content); gap: 10px 24px; justify-content: end; }
.site-footer nav a { color: #d0d5dd; }
.copyright { grid-column: 1 / -1; padding-top: 24px; border-top: 1px solid #344054; margin: 0; }
.legal-main { min-height: 70vh; }
.legal-hero { padding: 74px 0 38px; background: var(--soft); border-bottom: 1px solid var(--line); }
.legal-content { padding: 56px 0 88px; }
.legal-content article { max-width: 820px; }
.legal-content h2 { margin-top: 38px; font-size: 1.55rem; }
.legal-content h3 { margin-top: 26px; }
.legal-content p, .legal-content li { color: #344054; }
.notice { padding: 16px 18px; border-left: 4px solid var(--accent); background: #eff4ff; border-radius: 0 10px 10px 0; }
@media (max-width: 860px) {
  .hero-grid, .content-grid, .product-grid { grid-template-columns: 1fr; gap: 42px; }
  .facts, .contact-grid { grid-template-columns: 1fr; }
  .primary-nav { display: none; position: absolute; top: 72px; left: 20px; right: 20px; padding: 18px; border: 1px solid var(--line); background: white; border-radius: 14px; box-shadow: 0 18px 40px rgba(16,24,40,.12); flex-direction: column; align-items: stretch; }
  .primary-nav.open { display: flex; }
  .menu-toggle { display: inline-flex; }
  .footer-grid { grid-template-columns: 1fr; }
  .site-footer nav { justify-content: start; grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .hero { padding-top: 70px; }
  .section { padding: 66px 0; }
  h1 { font-size: 2.55rem; }
  .hero-card { padding: 22px; }
}
