:root {
  --navy: #061d3b;
  --navy2: #0b3f72;
  --gold: #d7a316;
  --gold2: #f1c232;
  --ink: #101828;
  --body: #344054;
  --muted: #667085;
  --line: #e4e7ec;
  --bg: #f5f7fb;
  --white: #fff;
  --shadow: 0 10px 30px rgba(16, 24, 40, 0.08);
  --radius: 18px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: Inter, system-ui, sans-serif;
  background: var(--bg);
  color: var(--body);
  line-height: 1.6;
}
a { color: inherit; }

.hero {
  position: relative;
  background:
    radial-gradient(circle at 80% 10%, rgba(241, 194, 50, 0.18), transparent 28%),
    linear-gradient(145deg, #061d3b 0%, #07396d 55%, #0a5a78 100%);
  color: #fff;
  overflow: hidden;
  padding-bottom: 42px;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), transparent 85%);
}
.topnav, .hero-content, main, .footer {
  max-width: 1180px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}
.topnav {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 22px;
  padding-bottom: 22px;
  flex-wrap: wrap;
}
.brand { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--gold2), var(--gold));
  color: var(--navy);
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 13px;
}
.brand strong { display: block; font-size: 14px; }
.brand span { font-size: 11px; color: rgba(255, 255, 255, 0.58); }
.topnav-links { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.topnav-links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 999px;
}
.topnav-links a:hover { background: rgba(255, 255, 255, 0.08); color: #fff; }
.btn-outline, .btn-primary, .btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 13px;
  text-decoration: none;
  transition: 0.2s;
}
.btn-outline {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold2), var(--gold));
  color: var(--navy);
  box-shadow: 0 12px 28px rgba(241, 194, 50, 0.22);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.14);
}
.btn-primary:hover, .btn-ghost:hover, .btn-outline:hover { transform: translateY(-1px); }

.hero-content { position: relative; z-index: 2; padding: 28px 24px 0; }
.chip {
  display: inline-flex;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(241, 194, 50, 0.12);
  border: 1px solid rgba(241, 194, 50, 0.28);
  color: var(--gold2);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.05;
  letter-spacing: -2px;
  font-weight: 900;
  max-width: 900px;
  margin-bottom: 18px;
}
.hero h1 em { font-style: normal; color: var(--gold2); }
.hero p { max-width: 760px; color: rgba(255, 255, 255, 0.74); font-size: clamp(14px, 1.6vw, 18px); }
.hero p strong { color: #fff; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin: 28px 0 34px; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  overflow: hidden;
}
.hero-stats div { background: rgba(5, 20, 42, 0.48); padding: 18px; }
.hero-stats strong { display: block; font-size: 28px; color: var(--gold2); line-height: 1; }
.hero-stats span { font-size: 10px; text-transform: uppercase; letter-spacing: 0.6px; color: rgba(255, 255, 255, 0.48); font-weight: 800; }

.section { padding: 54px 24px; max-width: 1180px; margin: 0 auto; }
.section-head { display: flex; justify-content: space-between; gap: 18px; align-items: end; margin-bottom: 24px; flex-wrap: wrap; }
.eyebrow {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
h2 { font-size: clamp(24px, 3vw, 36px); color: var(--navy); font-weight: 900; letter-spacing: -1px; line-height: 1.12; }
.section-desc { color: var(--muted); max-width: 640px; margin-top: 8px; }

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  text-decoration: none;
  box-shadow: var(--shadow);
  transition: 0.2s;
  display: flex;
  flex-direction: column;
  min-height: 260px;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(16, 24, 40, 0.12); }
.card-top { display: flex; justify-content: space-between; align-items: start; margin-bottom: 14px; }
.card-icon { font-size: 28px; }
.card-tag {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 999px;
  background: #eef2f6;
  color: var(--muted);
}
.card-live .card-tag { background: #e7f7ee; color: #138a4e; }
.card-report .card-tag { background: #eaf3ff; color: #0c5db8; }
.card-demo .card-tag { background: #fff3c7; color: #7a5b00; }
.card h3 { color: var(--navy); font-size: 18px; margin-bottom: 4px; }
.card-sub { font-size: 12px; font-weight: 700; color: var(--gold); margin-bottom: 10px; }
.card-desc { font-size: 13px; color: var(--muted); flex: 1; }
.card-cta { margin-top: 16px; font-size: 12px; font-weight: 800; color: var(--navy2); }

.about-strip { padding-top: 0; }
.about-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
  background: linear-gradient(135deg, var(--navy), #07396d);
  color: #fff;
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow);
}
.about-copy .eyebrow { color: rgba(255, 255, 255, 0.7); }
.about-copy h2 { color: #fff; }
.about-copy p { color: rgba(255, 255, 255, 0.72); margin: 14px 0 22px; max-width: 620px; }
.about-links { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.about-links a {
  text-decoration: none;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 14px;
}
.about-links span { display: block; font-size: 10px; text-transform: uppercase; letter-spacing: 0.5px; color: rgba(255, 255, 255, 0.48); font-weight: 800; }
.about-links strong { color: var(--gold2); font-size: 13px; }
.about-visual {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  padding: 22px;
}
.flow {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.flow div {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 12px;
  font-weight: 800;
}
.flow span { color: var(--gold2); font-weight: 900; }
.about-visual p { font-size: 12px; color: rgba(255, 255, 255, 0.62); }

.cv-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr 1fr;
  gap: 18px;
}
.cv-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}
.cv-profile { text-align: center; }
.cv-avatar {
  width: 84px;
  height: 84px;
  border-radius: 24px;
  margin: 0 auto 14px;
  background: linear-gradient(135deg, var(--gold2), var(--gold));
  color: var(--navy);
  display: grid;
  place-items: center;
  font-size: 24px;
  font-weight: 900;
}
.cv-profile h3 { color: var(--navy); margin-bottom: 4px; }
.cv-profile > p { color: var(--muted); font-size: 13px; margin-bottom: 16px; }
.cv-contact { list-style: none; text-align: left; font-size: 13px; }
.cv-contact li { padding: 8px 0; border-top: 1px solid var(--line); }
.cv-contact a { color: var(--navy2); font-weight: 700; }
.cv-card h4 { color: var(--navy); margin-bottom: 12px; font-size: 16px; }
.cv-highlights dl div { display: grid; grid-template-columns: 110px 1fr; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--line); font-size: 13px; }
.cv-highlights dt { font-weight: 800; color: var(--navy); }
.cv-highlights dd { color: var(--muted); }

.footer {
  padding: 28px 24px 40px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--muted);
}
.footer strong { color: var(--navy); }
.footer a { color: var(--navy2); font-weight: 700; text-decoration: none; }
.footer-links { display: flex; gap: 14px; flex-wrap: wrap; }

@media (max-width: 980px) {
  .cards, .cv-grid, .about-card, .about-links { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
}
