:root {
  --bg: #07111f;
  --bg-soft: #0b1628;
  --panel: rgba(13, 27, 47, 0.88);
  --panel-strong: #10213a;
  --panel-muted: #0d1b31;
  --line: rgba(132, 167, 214, 0.18);
  --line-strong: rgba(145, 195, 255, 0.32);
  --text: #eef5ff;
  --muted: #a7b7cf;
  --muted-strong: #c8d7ea;
  --accent: #1ea0ff;
  --accent-strong: #0f7fe0;
  --accent-soft: rgba(30, 160, 255, 0.12);
  --success: #6ec8ff;
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.38);
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background:
    radial-gradient(circle at top right, rgba(30, 160, 255, 0.12), transparent 32%),
    radial-gradient(circle at top left, rgba(15, 127, 224, 0.1), transparent 30%),
    linear-gradient(180deg, #081223 0%, #07111f 35%, #050d18 100%);
  color: var(--text);
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
  opacity: 0.55;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  padding: 0.8rem 1rem;
  background: var(--accent);
  color: #04111e;
  border-radius: 0 0 10px 10px;
  font-weight: 700;
  z-index: 999;
}

.skip-link:focus {
  top: 0;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  background: rgba(6, 12, 22, 0.78);
  border-bottom: 1px solid rgba(123, 157, 201, 0.12);
}

.nav-wrap {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.brand-mark {
  width: 52px;
  height: 52px;
  object-fit: contain;
  filter: drop-shadow(0 8px 22px rgba(11, 109, 204, 0.22));
}

.brand-text-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.brand-tag {
  color: var(--muted);
  font-size: 0.82rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.site-nav a {
  color: var(--muted-strong);
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.active {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.site-nav .nav-cta {
  background: linear-gradient(180deg, rgba(30, 160, 255, 0.18), rgba(30, 160, 255, 0.1));
  border: 1px solid rgba(94, 180, 255, 0.28);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
  border-radius: 999px;
}

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
}

.hero {
  padding: 5.5rem 0 4rem;
}

.page-hero {
  padding: 4.5rem 0 2.2rem;
}

.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 15%, rgba(49, 161, 255, 0.16), transparent 22%);
  pointer-events: none;
}

.hero-grid,
.split-grid,
.footer-grid,
.page-hero-inner {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: center;
}

.hero-copy h1,
.page-hero h1,
.section-head h2,
.cta-banner h2,
.split-grid h2,
.card h2,
.card h3 {
  margin-top: 0;
}

.hero-copy h1,
.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.3rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  max-width: 12ch;
  margin-bottom: 1.15rem;
}

.hero-text,
.page-hero p,
.section-head p,
.card p,
.split-grid p,
.footer-copy {
  color: var(--muted-strong);
}

.hero-text {
  max-width: 62ch;
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 1.6rem;
}

.hero-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.hero-points li,
.check-list li {
  position: relative;
  padding-left: 1.5rem;
}

.hero-points li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--success), var(--accent));
  box-shadow: 0 0 0 6px rgba(30, 160, 255, 0.1);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #8fcfff;
  margin-bottom: 1rem;
}

.eyebrow::before {
  content: "";
  width: 12px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.card {
  background: linear-gradient(180deg, rgba(15, 29, 51, 0.94), rgba(10, 20, 35, 0.94));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  box-shadow: var(--shadow);
}

.hero-panel {
  padding: 1.75rem;
}

.hero-panel h2 {
  font-size: 1.4rem;
  line-height: 1.2;
  margin: 0 0 0.8rem;
}

.hero-logo {
  width: min(430px, 100%);
  margin: 0 auto 1.35rem;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.2rem;
}

.mini-grid div {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 0.95rem;
}

.mini-grid strong,
.full-logo {
  margin-bottom: 0.35rem;
}

.mini-grid span {
  color: var(--muted);
  font-size: 0.94rem;
}

.section {
  padding: 2rem 0 4rem;
}

.section-alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.section-head {
  max-width: 760px;
  margin-bottom: 1.6rem;
}

.section-head.narrow,
.page-hero-inner.narrow {
  max-width: 760px;
}

.section-head h2,
.page-hero h1,
.split-grid h2 {
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.card-grid {
  display: grid;
  gap: 1.15rem;
}

.cols-1 { grid-template-columns: 1fr; }
.cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.feature-card,
.focus-card,
.stat-card,
.service-card,
.value-card {
  height: 100%;
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
  align-items: start;
}

.equal-split {
  align-items: stretch;
}

.list-card,
.contact-card,
.centered-card {
  height: 100%;
}

.centered-card {
  display: grid;
  place-items: center;
}

.full-logo {
  width: min(560px, 100%);
}

.check-list,
.process-list,
.footer-links {
  margin: 0;
  padding: 0;
}

.check-list {
  list-style: none;
  display: grid;
  gap: 0.95rem;
}

.check-list.compact {
  gap: 0.8rem;
  margin-top: 1rem;
}

.process-list {
  padding-left: 1.2rem;
  color: var(--muted-strong);
  display: grid;
  gap: 0.95rem;
}

.process-list strong {
  color: var(--text);
}

.muted-card {
  background: linear-gradient(180deg, rgba(14, 23, 39, 0.96), rgba(8, 16, 27, 0.96));
}

.contact-card h2 {
  margin-bottom: 0.8rem;
}

.inline-link {
  color: #8fd6ff;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.78rem 1.15rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button-primary {
  color: #04111e;
  background: linear-gradient(180deg, #53bcff 0%, #1ea0ff 100%);
  box-shadow: 0 14px 30px rgba(14, 126, 222, 0.22);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line-strong);
}

.cta-section {
  padding-top: 0;
}

.cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.3rem;
  padding: 1.8rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(95, 185, 255, 0.22);
  background: linear-gradient(135deg, rgba(13, 35, 61, 0.96), rgba(10, 21, 39, 0.96));
  box-shadow: var(--shadow);
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(3, 8, 15, 0.76);
  padding: 2.2rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.7fr;
  gap: 1.4rem;
}

.footer-brand {
  margin-bottom: 0.9rem;
}

.footer-links {
  list-style: none;
  display: grid;
  gap: 0.55rem;
  color: var(--muted-strong);
}

.footer-links a:hover,
.footer-links a:focus-visible,
.inline-link:hover,
.inline-link:focus-visible {
  color: #cfeeff;
}

.page-hero-inner {
  max-width: 860px;
}

.about-media {
  min-height: 100%;
}

@media (max-width: 1080px) {
  .hero-grid,
  .split-grid,
  .footer-grid,
  .cols-4,
  .cols-3,
  .cols-2 {
    grid-template-columns: 1fr;
  }

  .hero-copy h1,
  .page-hero h1 {
    max-width: none;
  }

  .cta-banner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 820px) {
  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.65rem);
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem;
    border-radius: 18px;
    background: rgba(8, 16, 28, 0.96);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 0.9rem 1rem;
    border-radius: 14px;
  }

  .brand-name {
    font-size: 1.08rem;
  }

  .hero {
    padding-top: 4.25rem;
  }

  .hero-points {
    grid-template-columns: 1fr;
  }

  .mini-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 1.1rem), var(--container));
  }

  .brand-tag {
    display: none;
  }

  .brand-mark {
    width: 46px;
    height: 46px;
  }

  .hero-copy h1,
  .page-hero h1 {
    font-size: 2.25rem;
  }

  .section {
    padding: 1.6rem 0 3.2rem;
  }

  .card,
  .cta-banner {
    padding: 1.2rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }
}
