:root {
  --ink: #0f172a;
  --muted: #64748b;
  --line: #e2e8f0;
  --paper: #ffffff;
  --soft: #f8fafc;
  --soft-2: #eef6ff;
  --blue: #0369a1;
  --blue-2: #0ea5e9;
  --green: #047857;
  --shadow: 0 20px 55px rgba(15, 23, 42, .10);
  --radius: 24px;
}

* { 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, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.skip-link {
  position: absolute; left: -999px; top: 12px; z-index: 999; background: var(--ink); color: #fff;
  padding: 10px 14px; border-radius: 10px;
}
.skip-link:focus { left: 12px; }
.topbar {
  background: var(--ink); color: #cbd5e1; font-size: 13px;
}
.topbar .container {
  display: flex; justify-content: space-between; gap: 16px; padding: 8px 0;
}
.header {
  position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.92);
  border-bottom: 1px solid var(--line); backdrop-filter: blur(14px);
}
.navbar { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 164px; height: 42px; }
.nav-links { display: flex; align-items: center; gap: 24px; font-size: 14px; font-weight: 650; color: #334155; }
.nav-links a:hover { color: var(--blue); }
.nav-actions { display: flex; gap: 10px; align-items: center; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 44px; padding: 0 18px; border-radius: 999px;
  border: 1px solid transparent; font-weight: 750; cursor: pointer; transition: .2s ease;
}
.btn-primary { background: var(--ink); color: #fff; box-shadow: var(--shadow); }
.btn-primary:hover { transform: translateY(-1px); background: #172554; }
.btn-secondary { background: #fff; color: var(--ink); border-color: var(--line); }
.btn-secondary:hover { transform: translateY(-1px); border-color: #bae6fd; color: var(--blue); }
.menu-toggle { display: none; border: 1px solid var(--line); background: #fff; border-radius: 12px; padding: 9px 11px; }
.menu-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 5px 0; }
.hero {
  position: relative; overflow: hidden; background:
    radial-gradient(circle at 80% 12%, rgba(14, 165, 233, .18), transparent 30%),
    linear-gradient(135deg, #f8fafc 0%, #ffffff 54%, #eff6ff 100%);
  border-bottom: 1px solid var(--line);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 54px; align-items: center; padding: 92px 0; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px; border: 1px solid #bae6fd; color: var(--blue); background: #f0f9ff;
  border-radius: 999px; padding: 8px 13px; font-size: 13px; font-weight: 750; margin-bottom: 22px;
}
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(42px, 6vw, 72px); line-height: .98; letter-spacing: -2.8px; margin-bottom: 24px; }
.hero p.lead { font-size: 19px; color: #475569; max-width: 680px; margin-bottom: 34px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.trust-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 34px; max-width: 680px; }
.trust-pill { border: 1px solid var(--line); background: rgba(255,255,255,.8); border-radius: 16px; padding: 14px; font-size: 14px; color: #334155; font-weight: 650; }
.hero-card {
  background: rgba(255,255,255,.84); border: 1px solid rgba(226,232,240,.85); border-radius: 32px; padding: 22px;
  box-shadow: var(--shadow); backdrop-filter: blur(16px);
}
.dashboard { background: #0f172a; color: #fff; border-radius: 24px; padding: 24px; overflow: hidden; position: relative; }
.dashboard::after { content: ""; position: absolute; right: -90px; top: -90px; width: 220px; height: 220px; background: rgba(56, 189, 248, .16); border-radius: 999px; filter: blur(6px); }
.dash-head { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-bottom: 22px; position: relative; z-index: 1; }
.dash-title { font-weight: 800; font-size: 20px; margin: 0; }
.status { display: inline-flex; gap: 8px; align-items: center; color: #bbf7d0; background: rgba(34,197,94,.12); border: 1px solid rgba(34,197,94,.22); border-radius: 999px; padding: 7px 10px; font-size: 12px; font-weight: 750; }
.dot { width: 8px; height: 8px; background: #22c55e; border-radius: 99px; }
.metric-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; position: relative; z-index: 1; }
.metric { border: 1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.06); border-radius: 18px; padding: 18px; min-height: 114px; }
.metric span { display: block; color: #94a3b8; font-size: 12px; text-transform: uppercase; letter-spacing: .14em; font-weight: 750; }
.metric strong { display: block; font-size: 25px; margin-top: 10px; }
.metric p { color: #cbd5e1; font-size: 13px; margin: 8px 0 0; }
.section { padding: 86px 0; }
.section-soft { background: var(--soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-head { max-width: 760px; margin-bottom: 40px; }
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.kicker { color: var(--blue); text-transform: uppercase; font-size: 13px; letter-spacing: .22em; font-weight: 850; margin-bottom: 12px; }
h2 { font-size: clamp(32px, 4vw, 50px); line-height: 1.08; letter-spacing: -1.7px; margin-bottom: 18px; }
.section-head p, .page-intro p { color: #475569; font-size: 18px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: 0 8px 24px rgba(15,23,42,.05);
}
.card .icon, .iconbox { width: 48px; height: 48px; border-radius: 16px; background: #e0f2fe; color: var(--blue); display: grid; place-items: center; font-weight: 900; margin-bottom: 20px; }
.card h3 { font-size: 22px; margin-bottom: 10px; }
.card p { color: #475569; margin-bottom: 0; }
.list { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.list li { display: flex; align-items: flex-start; gap: 10px; color: #334155; }
.check { color: var(--green); font-weight: 900; line-height: 1.4; }
.banner {
  background: linear-gradient(135deg, var(--ink), #075985); color: #fff; border-radius: 32px; padding: 46px;
  display: grid; grid-template-columns: 1fr auto; gap: 28px; align-items: center; box-shadow: var(--shadow);
}
.banner p { color: #dbeafe; margin-bottom: 0; max-width: 720px; }
.page-hero { background: linear-gradient(135deg, #f8fafc 0%, #eff6ff 100%); border-bottom: 1px solid var(--line); padding: 74px 0; }
.breadcrumb { color: #64748b; font-size: 14px; margin-bottom: 16px; }
.breadcrumb a { color: var(--blue); font-weight: 700; }
.page-intro { max-width: 860px; }
.page-intro h1 { font-size: clamp(38px, 5vw, 64px); }
.content { max-width: 900px; }
.content h2 { font-size: 30px; margin-top: 38px; }
.content h3 { font-size: 22px; margin-top: 28px; }
.content p, .content li { color: #475569; }
.content a { color: var(--blue); font-weight: 750; }
.content ul { padding-left: 22px; }
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 18px; background: #fff; }
table { width: 100%; border-collapse: collapse; min-width: 640px; }
th, td { text-align: left; padding: 15px 16px; border-bottom: 1px solid var(--line); vertical-align: top; }
th { background: #f8fafc; font-size: 13px; text-transform: uppercase; letter-spacing: .08em; color: #334155; }
tr:last-child td { border-bottom: 0; }
.contact-panel { display: grid; grid-template-columns: .85fr 1.15fr; gap: 28px; align-items: start; }
.form { background: #fff; border: 1px solid var(--line); border-radius: 26px; padding: 28px; box-shadow: var(--shadow); }
.field { display: grid; gap: 7px; margin-bottom: 16px; }
.field label { font-weight: 750; color: #334155; font-size: 14px; }
.field input, .field textarea, .field select { width: 100%; border: 1px solid #cbd5e1; border-radius: 14px; padding: 13px 14px; outline: none; background: #fff; color: var(--ink); }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--blue-2); box-shadow: 0 0 0 4px rgba(14,165,233,.14); }
.field textarea { min-height: 140px; resize: vertical; }
.notice { border: 1px solid #bae6fd; background: #f0f9ff; color: #075985; border-radius: 18px; padding: 16px; font-size: 14px; }
.footer { background: #0f172a; color: #cbd5e1; padding: 58px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.2fr repeat(3, .75fr); gap: 30px; margin-bottom: 42px; }
.footer h3, .footer h4 { color: #fff; margin-bottom: 14px; }
.footer p, .footer a { color: #cbd5e1; font-size: 14px; }
.footer a:hover { color: #fff; }
.footer-links { display: grid; gap: 9px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding-top: 20px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13px; color: #94a3b8; }
.badge-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.badge { border: 1px solid var(--line); background: #fff; border-radius: 999px; padding: 8px 12px; color: #334155; font-size: 13px; font-weight: 750; }
@media (max-width: 920px) {
  .topbar .container { flex-direction: column; }
  .hero-grid, .grid-2, .contact-panel, .banner { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links, .nav-actions { display: none; }
  .menu-toggle { display: block; }
  .mobile-open .nav-links {
    display: grid; position: absolute; left: 20px; right: 20px; top: 75px; background: #fff; border: 1px solid var(--line);
    border-radius: 20px; padding: 20px; box-shadow: var(--shadow); gap: 14px;
  }
  .hero-grid { padding: 64px 0; }
}
@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1120px); }
  .grid-3, .metric-grid, .trust-row, .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 62px 0; }
  h1 { letter-spacing: -1.8px; }
  h2 { letter-spacing: -1.1px; }
  .banner { padding: 28px; border-radius: 24px; }
  .brand img { width: 148px; }
}
