:root {
  --bg: #0d243a;
  --panel: #123859;
  --panel-2: #0f2f4c;
  --text: #f5fbff;
  --muted: #c2def7;
  --accent: #7cf4c6;
  --accent-2: #71d7ff;
  --border: rgba(255,255,255,0.16);
  --shadow: 0 18px 60px rgba(0,0,0,0.32);
  --radius: 14px;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: 'Segoe UI','Inter',system-ui,-apple-system,sans-serif;
  background:
    radial-gradient(circle at 20% 20%, rgba(124,244,198,0.16) 0, transparent 32%),
    radial-gradient(circle at 80% 10%, rgba(113,215,255,0.18) 0, transparent 30%),
    linear-gradient(135deg, #0d243a 0%, #0f2e49 50%, #0c1f34 100%);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
main { padding: 32px 6vw 96px; }
.topbar {
  position: sticky; top: 0; z-index: 10;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 18px 6vw;
  background: rgba(13,36,58,0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.brand { display: flex; align-items: center; gap: 12px; font-weight: 700; letter-spacing: 0.3px; }
.brand-mark {
  width: 40px; height: 40px; border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: grid; place-items: center; color: #052033; font-weight: 800; box-shadow: var(--shadow);
}
.brand-name { font-size: 18px; }
.brand-tagline { font-size: 12px; color: var(--muted); }
.nav-links { display: flex; gap: 18px; align-items: center; font-size: 15px; }
.nav-links a { padding: 10px 12px; border-radius: 10px; transition: all 0.2s ease; color: var(--muted); }
.nav-links a:hover { color: var(--text); background: rgba(255,255,255,0.08); }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 16px; border-radius: 12px; font-weight: 600;
  border: 1px solid var(--border); color: var(--text);
  transition: all 0.2s ease;
}
.btn.small { padding: 10px 14px; }
.btn.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #052033;
  border-color: transparent;
  box-shadow: 0 14px 34px rgba(113,215,255,0.35);
}
.btn.ghost { background: rgba(255,255,255,0.12); }
.btn:hover { transform: translateY(-1px); border-color: rgba(255,255,255,0.22); }
section { margin: 48px auto; max-width: 1100px; }
h1, h2, h3 { margin: 12px 0; line-height: 1.2; }
p { color: var(--muted); margin: 10px 0 0; }
.eyebrow { letter-spacing: 0.18em; text-transform: uppercase; font-size: 12px; color: #8ae8ff; margin: 0 0 8px; }
.lede { font-size: 18px; color: #e3f3ff; }
.hero {
  display: grid; gap: 24px; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  background: linear-gradient(120deg, rgba(124,244,198,0.16), rgba(113,215,255,0.18));
  padding: 32px; border-radius: 24px; border: 1px solid var(--border); box-shadow: var(--shadow);
}
.hero-panel { background: var(--panel); border: 1px solid var(--border); border-radius: 18px; padding: 18px; box-shadow: var(--shadow); }
.panel-title { font-weight: 700; margin-bottom: 4px; }
.panel-list { list-style: none; padding: 0; margin: 12px 0 0; display: grid; gap: 12px; }
.panel-list li { background: var(--panel-2); border: 1px solid var(--border); border-radius: 12px; padding: 12px; }
.panel-list span { font-weight: 700; color: #e7faff; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.chip { background: rgba(255,255,255,0.14); border: 1px solid var(--border); padding: 8px 12px; border-radius: 999px; font-size: 13px; color: #f1fbff; }
.section-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
.card { background: var(--panel); border: 1px solid var(--border); padding: 16px; border-radius: 16px; box-shadow: var(--shadow); }
.card h3 { margin-top: 6px; }
.list { padding-left: 18px; color: var(--muted); margin: 10px 0 0; }
.pillars .card { background: var(--panel-2); }
.stats { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 12px; }
.stat { background: rgba(255,255,255,0.1); border: 1px solid var(--border); padding: 12px 14px; border-radius: 12px; }
.stat strong { display: block; font-size: 20px; color: #f5fbff; }
.columns { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; }
.cta-card {
  background: linear-gradient(135deg, #13446a, #0f3150);
  padding: 24px; border-radius: 18px; border: 1px solid var(--border); display: grid; gap: 12px; box-shadow: var(--shadow);
}
.footer { max-width: 1100px; margin: 0 auto 48px; padding: 24px 6vw 0; border-top: 1px solid var(--border); color: var(--muted); }
.footer-links { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 6px; }
.tag { display: inline-block; background: rgba(113,215,255,0.16); color: #f0fbff; padding: 6px 10px; border-radius: 999px; font-size: 12px; border: 1px solid rgba(113,215,255,0.3); }
.process { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; }
.process-step { background: var(--panel); border: 1px solid var(--border); padding: 14px; border-radius: 14px; }
.use-cases { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 16px; }
.form { background: var(--panel); border: 1px solid var(--border); padding: 18px; border-radius: 16px; display: grid; gap: 12px; max-width: 620px; box-shadow: var(--shadow); }
.form label { font-weight: 600; color: #e9f6ff; }
.form input, .form textarea { width: 100%; padding: 12px; border-radius: 12px; border: 1px solid var(--border); background: var(--panel-2); color: var(--text); font-size: 15px; }
.form textarea { min-height: 120px; resize: vertical; }
.badge { display: inline-flex; align-items: center; gap: 6px; padding: 8px 10px; border-radius: 10px; background: rgba(124,244,198,0.16); color: #e9fff5; font-weight: 600; border: 1px solid rgba(124,244,198,0.4); }
@media (max-width: 680px) {
  .nav-links { display: none; }
  .topbar { flex-wrap: wrap; }
}
