:root {
  --bg: #07111f;
  --bg-2: #0d1b2e;
  --text: #f4f7fb;
  --muted: #a9b7c9;
  --line: rgba(255,255,255,.12);
  --card: rgba(255,255,255,.06);
  --accent: #7fb3ff;
  --accent-2: #d7e8ff;
  --dark-text: #102033;
}
* { 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(--text); background: var(--bg); line-height: 1.6; }
a { color: inherit; text-decoration: none; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.site-header { position: sticky; top: 0; z-index: 10; background: rgba(7, 17, 31, .92); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); }
.nav { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 14px; }
.brand-logo { width: 54px; height: 54px; border-radius: 15px; object-fit: contain; border: 1px solid rgba(255,255,255,.18); box-shadow: 0 10px 26px rgba(0,0,0,.25); background: #07111f; padding: 4px; }
.brand strong { display: block; line-height: 1.1; }
.brand span { display: block; font-size: 13px; color: var(--muted); margin-top: 3px; }
nav { display: flex; align-items: center; gap: 22px; color: var(--muted); font-size: 15px; }
.nav-cta { color: var(--text); border: 1px solid var(--line); padding: 9px 14px; border-radius: 999px; }
.hero { padding: 92px 0 76px; background: radial-gradient(circle at 78% 22%, rgba(127,179,255,.24), transparent 32%), linear-gradient(180deg, #07111f 0%, #0d1b2e 100%); }
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 46px; align-items: center; }
.eyebrow { margin: 0 0 12px; color: var(--accent); font-size: 13px; text-transform: uppercase; letter-spacing: .12em; font-weight: 800; }
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(42px, 6vw, 68px); line-height: .98; letter-spacing: -0.06em; margin-bottom: 22px; }
h2 { font-size: clamp(30px, 4vw, 46px); line-height: 1.08; letter-spacing: -0.045em; margin-bottom: 22px; }
h3 { font-size: 20px; line-height: 1.2; margin-bottom: 10px; }
.hero-copy { max-width: 700px; font-size: 19px; color: var(--muted); }
.specialty { max-width: 680px; color: #d8e7f8; border-left: 3px solid var(--accent); padding-left: 16px; margin-top: 20px; }
.hero-actions, .contact-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 46px; padding: 0 18px; border-radius: 999px; font-weight: 700; border: 1px solid transparent; cursor: pointer; font-size: 15px; }
.primary { background: var(--accent-2); color: var(--dark-text); }
.secondary { border-color: var(--line); color: var(--text); }
.hero-card { background: rgba(255,255,255,.08); border: 1px solid var(--line); border-radius: 28px; padding: 32px; box-shadow: 0 30px 80px rgba(0,0,0,.25); }
.hero-logo { width: 100%; max-width: 360px; display: block; margin: 0 auto 22px; }
.logo-card { overflow: hidden; }
.hero-card ul { margin: 18px 0 0; padding-left: 20px; color: var(--muted); }
.hero-card li { margin: 10px 0; }
.section { padding: 78px 0; }
.muted { background: #eef4fb; color: #102033; }
.muted .eyebrow { color: #2d68b8; }
.cards { margin-top: 34px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card { background: var(--card); border: 1px solid var(--line); border-radius: 22px; padding: 24px; }
.card p { color: var(--muted); margin-bottom: 0; }
.industry-grid { margin-top: 28px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.industry-grid div { background: #fff; border: 1px solid #d9e3ef; border-radius: 18px; padding: 20px; font-weight: 800; min-height: 94px; display: flex; align-items: end; }
.split { display: grid; grid-template-columns: .9fr 1.1fr; gap: 40px; align-items: start; }
.text-block { color: var(--muted); font-size: 18px; border-left: 1px solid var(--line); padding-left: 30px; }
.contact-section { background: linear-gradient(180deg, #0d1b2e, #07111f); }
.contact-card { background: rgba(255,255,255,.07); border: 1px solid var(--line); border-radius: 30px; padding: 36px; }
.small-note { margin: 18px 0 0; color: var(--muted); font-size: 14px; }
.small-note a { color: var(--accent-2); text-decoration: underline; }
.site-footer { border-top: 1px solid var(--line); padding: 26px 0; color: var(--muted); font-size: 14px; }
.footer-grid { display: flex; justify-content: space-between; gap: 20px; }
.footer-grid p { margin: 0; }
@media (max-width: 860px) {
  nav { display: none; }
  .hero-grid, .cards, .industry-grid, .split { grid-template-columns: 1fr; }
  .hero { padding-top: 64px; }
  .text-block { border-left: 0; padding-left: 0; }
  .footer-grid { flex-direction: column; }
}

.note-separator { color: var(--line); margin: 0 8px; }

.button:hover {
  transform: translateY(-1px);
}

.button {
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

nav a:hover,
.small-note a:hover {
  color: var(--accent-2);
}
