:root {
  color-scheme: light;
  --bg: #f7faff;
  --surface: #eef5ff;
  --surface-2: #e6efff;
  --ink: #0b1a33;
  --ink-2: #1e2d4d;
  --muted: #5a6e8a;
  --border: #d7e3f6;
  --accent: #2f7bf6;
  --accent-strong: #1f5fd1;
  --accent-2: #59a5ff;
  --shadow: 0 24px 48px rgba(22, 61, 117, 0.12);
  --radius: 18px;
  --max-width: 1200px;
  font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

img {
  max-width: 100%;
}

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

.container {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding: 0 24px;
}

.announcement {
  background: var(--ink);
  color: #fff;
}

.announcement-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 10px 0;
  font-size: 14px;
}

.announcement-link {
  color: #fff;
  font-weight: 600;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-logo {
  height: 136px;
  width: auto;
  display: block;
}

.brand-text {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.5px;
  display: none;
}

.main-nav {
  flex: 1;
}

.nav-list {
  display: flex;
  gap: 18px;
  list-style: none;
  justify-content: center;
  font-size: 14px;
  color: var(--muted);
}

.nav-list a:hover {
  color: var(--ink);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 24px rgba(11, 94, 215, 0.2);
}

.btn-primary:hover {
  background: var(--accent-strong);
}

.btn-secondary {
  border-color: var(--border);
  color: var(--ink);
  background: #fff;
}

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-ghost {
  border-color: var(--border);
  color: var(--ink);
  background: transparent;
}

.hero {
  background: linear-gradient(120deg, #eff4ff 0%, #ffffff 45%, #f4fbfb 100%);
  padding: 84px 0 40px;
}

.hero-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1.4px;
  color: var(--accent-2);
  font-weight: 600;
  margin-bottom: 12px;
}

.hero h1 {
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1.1;
  margin-bottom: 18px;
}

.hero-subtitle {
  color: var(--muted);
  font-size: 18px;
  margin-bottom: 24px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.hero-meta {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 14px;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px;
  min-height: 260px;
  width: min(420px, 100%);
  display: grid;
  gap: 18px;
  border: 1px solid var(--border);
}

.hero-card .metric {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--muted);
}

.hero-card .metric strong {
  color: var(--ink);
  font-size: 20px;
}

.stats {
  padding: 40px 0;
  background: var(--surface);
}

.stats-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.stat-card {
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: 0 12px 24px rgba(11, 31, 51, 0.05);
}

.stat-card p {
  color: var(--muted);
  font-size: 14px;
}

.section {
  padding: 70px 0;
}

.section-alt {
  background: var(--surface-2);
}

.section-header {
  margin-bottom: 32px;
}

.section-header h2 {
  font-size: clamp(26px, 3vw, 36px);
  margin-bottom: 8px;
}

.section-header p {
  color: var(--muted);
  max-width: 720px;
}

.card-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card {
  background: #fff;
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: 0 12px 24px rgba(11, 31, 51, 0.06);
  display: grid;
  gap: 12px;
}

#industries .card {
  position: relative;
  overflow: hidden;
}

#industries .card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      135deg,
      rgba(11, 94, 215, 0.08) 0,
      rgba(11, 94, 215, 0.08) 6px,
      rgba(11, 94, 215, 0) 6px,
      rgba(11, 94, 215, 0) 16px
    ),
    radial-gradient(
      circle at top right,
      rgba(11, 31, 51, 0.08),
      rgba(11, 31, 51, 0) 55%
    );
  pointer-events: none;
}

.card p {
  color: var(--muted);
  font-size: 14px;
}

.split {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.split-content p {
  color: var(--muted);
  margin-bottom: 16px;
}

.split-content ul {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.split-content li {
  padding-left: 18px;
  position: relative;
}

.split-content li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-2);
}

.split-media {
  background: linear-gradient(135deg, #0b1f33, #0b5ed7);
  color: #fff;
  border-radius: var(--radius);
  padding: 28px;
  min-height: 260px;
  display: grid;
  align-content: center;
  gap: 16px;
}

.split-media span {
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.split-media h3 {
  font-size: 24px;
}

.list-grid {
  display: grid;
  gap: 16px;
}

.list-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: #fff;
  border-radius: 14px;
  padding: 16px;
  border: 1px solid var(--border);
}

.list-item span {
  color: var(--accent-2);
  font-weight: 600;
}

.news-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.news-card {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 20px;
  display: grid;
  gap: 10px;
}

.news-card p {
  color: var(--muted);
  font-size: 14px;
}

.cta-panel {
  background: linear-gradient(120deg, #0b5ed7 0%, #0b1f33 100%);
  color: #fff;
  border-radius: var(--radius);
  padding: 40px;
  display: grid;
  gap: 16px;
}

.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.site-footer {
  background: #0b1f33;
  color: #dfe7f3;
  padding: 60px 0 24px;
}

.footer-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  margin-bottom: 24px;
}

.footer-grid h4 {
  color: #fff;
  margin-bottom: 12px;
}

.footer-grid ul {
  list-style: none;
  display: grid;
  gap: 8px;
  font-size: 14px;
}

.footer-grid a {
  color: #dfe7f3;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 16px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  font-size: 12px;
  color: #c6d3e6;
}

.footer-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 840px) {
  .nav-list {
    display: none;
  }
}
