/* =========================================================================
   Logix Technology Solutions — Site Stylesheet
   Design system: "Trust & Authority" — navy / blue, Lexend + Source Sans 3
   ========================================================================= */

:root {
  /* Color tokens */
  --navy-950: #060D1A;
  --navy-900: #0B1526;
  --navy-800: #101F3A;
  --navy-700: #16294C;
  --ink: #0F172A;
  --body: #35465E;
  --muted-text: #5B6B82;
  --accent: #0369A1;
  --accent-deep: #075985;
  --blue: #2563EB;
  --cyan: #38BDF8;
  --cyan-soft: #7DD3FC;
  --bg: #F6F8FB;
  --surface: #FFFFFF;
  --surface-alt: #EEF3F8;
  --border: #E2E8F0;
  --border-dark: rgba(148, 197, 255, 0.16);
  --success: #15803D;
  --error: #DC2626;

  --grad-brand: linear-gradient(120deg, #38BDF8, #2563EB);
  --grad-cta: linear-gradient(120deg, #0EA5E9, #2563EB);

  /* Type */
  --font-head: 'Lexend', 'Segoe UI', Arial, sans-serif;
  --font-body: 'Source Sans 3', 'Segoe UI', Arial, sans-serif;

  /* Shape & motion */
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-card: 0 1px 2px rgba(15, 23, 42, 0.05), 0 8px 24px -12px rgba(15, 23, 42, 0.12);
  --shadow-lift: 0 2px 4px rgba(15, 23, 42, 0.06), 0 18px 40px -16px rgba(2, 62, 120, 0.25);
  --ease: cubic-bezier(0.33, 1, 0.68, 1);

  /* Layout */
  --container: 1180px;
  --header-h: 74px;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--body);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-deep); }
ul { padding-left: 1.2rem; }
h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.18;
  letter-spacing: -0.015em;
  margin: 0 0 0.6em;
  font-weight: 600;
}
h1 { font-size: clamp(2.1rem, 4.6vw, 3.35rem); }
h2 { font-size: clamp(1.65rem, 3vw, 2.35rem); }
h3 { font-size: 1.22rem; }
p { margin: 0 0 1.1em; }
strong { color: var(--ink); }
:focus-visible { outline: 3px solid var(--cyan); outline-offset: 2px; border-radius: 4px; }
::selection { background: #BAE6FD; color: var(--ink); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 88px 0; }
.section-tight { padding: 64px 0; }
.section-alt { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 300;
  background: var(--ink); color: #fff; padding: 10px 18px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; color: #fff; }

/* ---------- Eyebrow / section headings ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head);
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 14px;
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; border-radius: 2px;
  background: var(--grad-brand); flex: none;
}
.on-dark .eyebrow, .eyebrow.on-dark { color: var(--cyan-soft); }

.section-head { max-width: 720px; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head .lead, .lead { font-size: 1.16rem; color: var(--muted-text); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-head); font-weight: 600; font-size: 0.98rem;
  padding: 14px 28px; border-radius: 999px; border: 1px solid transparent;
  cursor: pointer; text-decoration: none; line-height: 1.2;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background-color 0.2s, border-color 0.2s, color 0.2s;
}
.btn svg { width: 17px; height: 17px; flex: none; }
.btn:active { transform: translateY(1px) scale(0.99); }
.btn-primary {
  background: var(--grad-cta); color: #fff;
  box-shadow: 0 8px 20px -8px rgba(14, 116, 233, 0.55);
}
.btn-primary:hover { color: #fff; box-shadow: 0 12px 28px -8px rgba(14, 116, 233, 0.65); transform: translateY(-2px); }
.btn-outline { border-color: #C7D4E4; color: var(--ink); background: transparent; }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-light { background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.22); color: #fff; backdrop-filter: blur(6px); }
.btn-light:hover { background: rgba(255, 255, 255, 0.16); color: #fff; }
.btn-sm { padding: 10px 20px; font-size: 0.9rem; }
.btn-lg { padding: 16px 34px; font-size: 1.05rem; }

/* ---------- Topbar ---------- */
.topbar {
  background: var(--navy-950); color: #93A5C1;
  font-size: 0.82rem; font-family: var(--font-head); font-weight: 400;
  border-bottom: 1px solid rgba(148, 197, 255, 0.08);
}
.topbar-inner { display: flex; justify-content: space-between; gap: 16px; padding-top: 7px; padding-bottom: 7px; }
.topbar p { margin: 0; white-space: nowrap; }
.topbar a { color: #B9C8DE; }
.topbar a:hover { color: var(--cyan-soft); }
.topbar-gov { letter-spacing: 0.02em; }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(11, 21, 38, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-dark);
  transition: box-shadow 0.25s;
}
.site-header.is-scrolled { box-shadow: 0 10px 30px -12px rgba(2, 8, 20, 0.6); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: var(--header-h); }

.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark { width: 42px; height: 42px; flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name {
  font-family: var(--font-head); font-weight: 700; font-size: 1.32rem;
  letter-spacing: 0.24em; color: #fff;
}
.brand-sub {
  font-family: var(--font-head); font-weight: 500; font-size: 0.6rem;
  letter-spacing: 0.26em; text-transform: uppercase; color: var(--cyan-soft);
  margin-top: 3px;
}

.nav-list { display: flex; align-items: center; gap: 6px; list-style: none; margin: 0; padding: 0; }
.nav-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-head); font-weight: 500; font-size: 0.95rem;
  color: #C4D2E7; padding: 10px 14px; border-radius: 8px;
  background: none; border: 0; cursor: pointer;
  transition: color 0.2s, background-color 0.2s;
}
.nav-link:hover { color: #fff; background: rgba(148, 197, 255, 0.1); }
.nav-link.is-active { color: #fff; }
.nav-link.is-active:not(.nav-drop-toggle)::after,
.nav-link.nav-drop-toggle.is-active::after { content: none; }
.nav-list > li { position: relative; }
.nav-list > li > .nav-link.is-active { box-shadow: inset 0 -2px 0 var(--cyan); border-radius: 8px 8px 2px 2px; }
.nav-cta { margin-left: 10px; }
.chev { width: 13px; height: 13px; transition: transform 0.2s; }
.has-dropdown.open .chev, .has-dropdown:hover .chev { transform: rotate(180deg); }

.dropdown {
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(8px);
  width: 560px; padding: 18px;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: 0 24px 60px -20px rgba(8, 20, 40, 0.35);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.22s var(--ease), transform 0.22s var(--ease), visibility 0.22s;
}
.has-dropdown:hover .dropdown, .has-dropdown.open .dropdown, .has-dropdown:focus-within .dropdown {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.dropdown-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px 14px; }
.dropdown-grid a {
  display: block; padding: 9px 12px; border-radius: 8px;
  color: var(--ink); font-family: var(--font-head); font-weight: 500; font-size: 0.9rem;
}
.dropdown-grid a:hover { background: var(--surface-alt); color: var(--accent); }
.dropdown-all {
  display: inline-flex; align-items: center; gap: 8px;
  margin: 12px 12px 0; font-family: var(--font-head); font-weight: 600; font-size: 0.88rem;
}
.dropdown-all svg { width: 14px; height: 14px; }

.nav-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 46px; height: 46px; padding: 10px;
  background: rgba(148, 197, 255, 0.1); border: 1px solid var(--border-dark); border-radius: 10px;
  cursor: pointer;
}
.nav-toggle span { display: block; height: 2px; border-radius: 2px; background: #DCE7F5; transition: transform 0.25s var(--ease), opacity 0.2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Dark hero (home) ---------- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(900px 480px at 82% -10%, rgba(37, 99, 235, 0.34), transparent 62%),
    radial-gradient(720px 420px at -8% 108%, rgba(3, 105, 161, 0.3), transparent 60%),
    var(--navy-900);
  color: #C9D6EA;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(148, 197, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 197, 255, 0.055) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 20%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 20%, #000 30%, transparent 75%);
}
.hero-inner { position: relative; display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr); gap: 56px; align-items: center; padding: 96px 24px 92px; }
.hero h1 { color: #fff; margin-bottom: 20px; }
.hero h1 .grad { background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero .lead { color: #A7B8D4; font-size: 1.2rem; max-width: 34em; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-head); font-size: 0.8rem; font-weight: 500; letter-spacing: 0.06em;
  color: var(--cyan-soft);
  border: 1px solid rgba(125, 211, 252, 0.35); border-radius: 999px;
  padding: 7px 16px; margin-bottom: 26px;
  background: rgba(56, 189, 248, 0.08);
}
.hero-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 10px var(--cyan); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

.hero-stats {
  position: relative;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--border-dark);
  border-top: 1px solid var(--border-dark);
}
.hero-stat { background: rgba(6, 13, 26, 0.55); padding: 26px 18px; text-align: center; }
.hero-stat .num {
  font-family: var(--font-head); font-weight: 700; font-size: 1.9rem; color: #fff; display: block;
  letter-spacing: -0.01em;
}
.hero-stat .num em { font-style: normal; color: var(--cyan); }
.hero-stat .lbl { font-size: 0.86rem; color: #8CA0BE; font-family: var(--font-head); font-weight: 400; letter-spacing: 0.04em; }

/* Hero visual — abstract analytics panel */
.hero-visual { position: relative; }
.hero-panel {
  position: relative;
  background: linear-gradient(160deg, rgba(22, 41, 76, 0.85), rgba(11, 21, 38, 0.92));
  border: 1px solid rgba(148, 197, 255, 0.2);
  border-radius: 20px;
  padding: 26px;
  box-shadow: 0 40px 80px -30px rgba(2, 8, 20, 0.8);
  backdrop-filter: blur(8px);
}
.hero-panel-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.hero-panel-head .t { font-family: var(--font-head); font-weight: 600; font-size: 0.92rem; color: #E4EDF9; }
.hero-panel-head .s { font-size: 0.75rem; color: #7C92B4; }
.hero-pill { font-family: var(--font-head); font-size: 0.7rem; font-weight: 600; color: #4ADE80; background: rgba(74, 222, 128, 0.12); border: 1px solid rgba(74, 222, 128, 0.3); padding: 4px 10px; border-radius: 999px; }
.hero-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 18px; }
.hero-kpi { background: rgba(148, 197, 255, 0.07); border: 1px solid rgba(148, 197, 255, 0.12); border-radius: 12px; padding: 12px 14px; }
.hero-kpi .v { font-family: var(--font-head); font-weight: 700; font-size: 1.14rem; color: #fff; }
.hero-kpi .k { font-size: 0.7rem; color: #7C92B4; letter-spacing: 0.04em; text-transform: uppercase; font-family: var(--font-head); }
.hero-bars { display: flex; align-items: flex-end; gap: 9px; height: 110px; padding-top: 8px; }
.hero-bars i {
  flex: 1; border-radius: 6px 6px 2px 2px;
  background: linear-gradient(180deg, rgba(56, 189, 248, 0.9), rgba(37, 99, 235, 0.55));
  min-height: 12%;
  animation: barGrow 1s var(--ease) both;
  transform-origin: bottom;
}
.hero-bars i:nth-child(even) { background: linear-gradient(180deg, rgba(125, 211, 252, 0.55), rgba(37, 99, 235, 0.35)); }
@keyframes barGrow { from { transform: scaleY(0); } to { transform: scaleY(1); } }
.hero-glow {
  position: absolute; inset: auto -40px -60px auto; width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.35), transparent 65%);
  filter: blur(10px); pointer-events: none;
}
.hero-chip {
  position: absolute; z-index: 2; display: inline-flex; align-items: center; gap: 8px;
  background: rgba(11, 21, 38, 0.92); border: 1px solid rgba(148, 197, 255, 0.25);
  border-radius: 12px; padding: 10px 14px;
  font-family: var(--font-head); font-size: 0.78rem; font-weight: 500; color: #DCE7F5;
  box-shadow: 0 18px 40px -16px rgba(2, 8, 20, 0.8);
}
.hero-chip svg { width: 16px; height: 16px; color: var(--cyan); }
.hero-chip.c1 { top: -18px; left: -26px; }
.hero-chip.c2 { bottom: -16px; right: 18px; }

/* ---------- Client strip ---------- */
.clients { padding: 34px 0; background: var(--surface); border-bottom: 1px solid var(--border); }
.clients-label { text-align: center; font-family: var(--font-head); font-size: 0.76rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted-text); margin: 0 0 18px; }
.clients-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 40px; }
.clients-row span {
  font-family: var(--font-head); font-weight: 600; font-size: 0.95rem; color: #8B9BB4;
  letter-spacing: 0.02em; white-space: nowrap;
}

/* ---------- Cards / grids ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }

.card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 30px 28px; box-shadow: var(--shadow-card);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s;
}
a.card { display: block; color: inherit; }
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lift); border-color: #BFDBFE; }
.card h3 { margin-bottom: 8px; }
.card p { margin-bottom: 0; font-size: 0.99rem; color: var(--muted-text); }
.card .card-link {
  display: inline-flex; align-items: center; gap: 7px; margin-top: 16px;
  font-family: var(--font-head); font-weight: 600; font-size: 0.88rem; color: var(--accent);
}
.card .card-link svg { width: 14px; height: 14px; transition: transform 0.2s; }
.card:hover .card-link svg { transform: translateX(4px); }

.icon-tile {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #E0F2FE, #DBEAFE);
  border: 1px solid #BFDBFE;
  margin-bottom: 18px;
}
.icon-tile svg { width: 26px; height: 26px; color: var(--accent); }

/* ---------- Split sections ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split .visual { position: relative; }

.check-list { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 13px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 1.02rem; }
.check-list li svg { width: 21px; height: 21px; flex: none; color: var(--accent); margin-top: 2px; }
.check-list li strong { display: block; }

/* Feature list (numbered steps) */
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.step {
  counter-increment: step; position: relative;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 26px 24px; box-shadow: var(--shadow-card);
}
.step::before {
  content: "0" counter(step);
  font-family: var(--font-head); font-weight: 700; font-size: 0.9rem;
  color: var(--accent);
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 12px;
  background: linear-gradient(135deg, #E0F2FE, #DBEAFE); border: 1px solid #BFDBFE;
  margin-bottom: 16px;
}
.step h3 { font-size: 1.06rem; }
.step p { font-size: 0.94rem; color: var(--muted-text); margin: 0; }

/* ---------- Dark band (gov callout, CTA) ---------- */
.band {
  position: relative; overflow: hidden; border-radius: 24px;
  background:
    radial-gradient(640px 320px at 88% 0%, rgba(37, 99, 235, 0.4), transparent 60%),
    radial-gradient(520px 300px at 0% 100%, rgba(3, 105, 161, 0.35), transparent 60%),
    var(--navy-900);
  color: #B9C8DE; padding: 56px;
}
.band::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(148, 197, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 197, 255, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 80% 90% at 70% 20%, #000 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 90% at 70% 20%, #000 20%, transparent 75%);
  pointer-events: none;
}
.band > * { position: relative; }
.band h2 { color: #fff; }
.band .lead { color: #A7B8D4; }

.gov-band-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 48px; align-items: center; }
.id-chips { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 0; padding: 0; list-style: none; }
.id-chips li {
  background: rgba(148, 197, 255, 0.07); border: 1px solid rgba(148, 197, 255, 0.18);
  border-radius: 12px; padding: 14px 16px;
}
.id-chips .k { display: block; font-family: var(--font-head); font-size: 0.68rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: #7C92B4; margin-bottom: 4px; }
.id-chips .v { font-family: var(--font-head); font-weight: 600; font-size: 1.0rem; color: #fff; letter-spacing: 0.02em; }

.cta-band { text-align: center; }
.cta-band h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); max-width: 21em; margin-left: auto; margin-right: auto; }
.cta-band .lead { max-width: 38em; margin: 0 auto 8px; }
.cta-band .hero-actions { justify-content: center; }

/* ---------- Chip grid (industries) ---------- */
.chip-grid { display: flex; flex-wrap: wrap; gap: 12px; padding: 0; margin: 0; list-style: none; }
.chip-grid li {
  font-family: var(--font-head); font-weight: 500; font-size: 0.92rem; color: var(--ink);
  background: var(--surface); border: 1px solid var(--border); border-radius: 999px;
  padding: 10px 20px; box-shadow: var(--shadow-card);
}

/* ---------- Inner page hero ---------- */
.page-hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(720px 380px at 85% -20%, rgba(37, 99, 235, 0.35), transparent 62%),
    radial-gradient(560px 320px at -5% 120%, rgba(3, 105, 161, 0.28), transparent 60%),
    var(--navy-900);
  color: #A7B8D4;
  padding: 78px 0 70px;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(148, 197, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 197, 255, 0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse 90% 90% at 50% 0%, #000 25%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 90% 90% at 50% 0%, #000 25%, transparent 78%);
}
.page-hero .container { position: relative; }
.page-hero h1 { color: #fff; max-width: 18em; }
.page-hero .lead { max-width: 44em; margin-bottom: 0; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; margin: 0 0 22px; padding: 0; font-family: var(--font-head); font-size: 0.82rem; }
.breadcrumbs a { color: #8CA0BE; }
.breadcrumbs a:hover { color: var(--cyan-soft); }
.breadcrumbs li + li::before { content: "/"; margin-right: 8px; color: #46587A; }
.breadcrumbs [aria-current] { color: var(--cyan-soft); }

/* ---------- Government page ---------- */
.id-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.id-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 24px 26px; box-shadow: var(--shadow-card);
}
.id-card .k { font-family: var(--font-head); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted-text); display: block; margin-bottom: 6px; }
.id-card .v { font-family: var(--font-head); font-weight: 600; font-size: 1.18rem; color: var(--ink); letter-spacing: 0.01em; }
.id-card .n { font-size: 0.85rem; color: var(--muted-text); margin: 6px 0 0; }

.table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); box-shadow: var(--shadow-card); }
table.data {
  width: 100%; border-collapse: collapse; font-size: 0.97rem; min-width: 560px;
}
table.data th, table.data td { text-align: left; padding: 15px 20px; border-bottom: 1px solid var(--border); }
table.data th {
  font-family: var(--font-head); font-weight: 600; font-size: 0.8rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted-text); background: var(--surface-alt);
}
table.data tr:last-child td { border-bottom: 0; }
table.data td:first-child { font-family: var(--font-head); font-weight: 600; color: var(--ink); white-space: nowrap; }

.pp-card { border-left: 4px solid; border-image: linear-gradient(180deg, #38BDF8, #2563EB) 1; }
.pp-card h3 { font-size: 1.05rem; }
.pp-card .tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 14px; }
.pp-card .tags span {
  font-family: var(--font-head); font-size: 0.72rem; font-weight: 500;
  background: var(--surface-alt); border: 1px solid var(--border); border-radius: 999px;
  color: var(--body); padding: 4px 11px;
}

/* ---------- About ---------- */
.timeline { list-style: none; margin: 0; padding: 0; position: relative; }
.timeline::before { content: ""; position: absolute; left: 9px; top: 6px; bottom: 6px; width: 2px; background: linear-gradient(180deg, #38BDF8, #2563EB); border-radius: 2px; }
.timeline li { position: relative; padding: 0 0 30px 42px; }
.timeline li:last-child { padding-bottom: 0; }
.timeline li::before {
  content: ""; position: absolute; left: 2px; top: 5px; width: 16px; height: 16px;
  border-radius: 50%; background: var(--surface); border: 3px solid var(--accent);
}
.timeline .year { font-family: var(--font-head); font-weight: 700; color: var(--accent); font-size: 0.95rem; letter-spacing: 0.06em; display: block; margin-bottom: 4px; }
.timeline p { margin: 0; font-size: 0.99rem; }

.leader-card { display: flex; gap: 24px; align-items: center; }
.leader-avatar {
  width: 84px; height: 84px; flex: none; border-radius: 50%;
  background: var(--grad-brand); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 700; font-size: 1.7rem; letter-spacing: 0.04em;
}
.leader-card .role { font-family: var(--font-head); font-size: 0.85rem; font-weight: 500; color: var(--accent); letter-spacing: 0.05em; text-transform: uppercase; }

/* ---------- FAQ accordion ---------- */
.accordion { display: grid; gap: 14px; }
.accordion details {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card); overflow: hidden;
}
.accordion summary {
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 19px 24px; font-family: var(--font-head); font-weight: 600; color: var(--ink); font-size: 1.02rem;
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after {
  content: ""; width: 12px; height: 12px; flex: none;
  border-right: 2px solid var(--accent); border-bottom: 2px solid var(--accent);
  transform: rotate(45deg); transition: transform 0.25s var(--ease); margin-right: 4px;
}
.accordion details[open] summary::after { transform: rotate(225deg); }
.accordion details[open] summary { border-bottom: 1px solid var(--border); }
.accordion .acc-body { padding: 18px 24px 22px; }
.accordion .acc-body p:last-child { margin-bottom: 0; }

/* ---------- Insights ---------- */
.insight-card { display: flex; flex-direction: column; }
.insight-card .cat {
  align-self: flex-start;
  font-family: var(--font-head); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent); background: #E0F2FE; border-radius: 999px; padding: 5px 12px; margin-bottom: 16px;
}
.insight-card time { font-size: 0.85rem; color: var(--muted-text); margin-top: 14px; display: block; }
.article-body { max-width: 760px; }
.article-body h2 { font-size: 1.5rem; margin-top: 1.6em; }
.article-body h3 { margin-top: 1.4em; }
.article-body ul { margin-bottom: 1.2em; }
.article-meta { display: flex; gap: 14px; align-items: center; color: #8CA0BE; font-size: 0.9rem; font-family: var(--font-head); }

/* ---------- Forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { display: flex; flex-direction: column; gap: 7px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-family: var(--font-head); font-weight: 500; font-size: 0.9rem; color: var(--ink); }
.form-field label .req { color: var(--error); }
.form-field input, .form-field select, .form-field textarea {
  font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  background: var(--surface); border: 1px solid #CBD8E6; border-radius: var(--radius-sm);
  padding: 13px 15px; width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-field textarea { resize: vertical; min-height: 140px; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px rgba(3, 105, 161, 0.14);
}
.form-hint { font-size: 0.83rem; color: var(--muted-text); }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

.alert { border-radius: var(--radius-sm); padding: 16px 20px; margin-bottom: 26px; font-size: 0.98rem; border: 1px solid; }
.alert-success { background: #F0FDF4; border-color: #BBF7D0; color: var(--success); }
.alert-error { background: #FEF2F2; border-color: #FECACA; color: var(--error); }
.alert p { margin: 0; }

.contact-aside { background: var(--navy-900); color: #B9C8DE; border-radius: var(--radius); padding: 36px; position: relative; overflow: hidden; }
.contact-aside h3 { color: #fff; }
.contact-aside ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 18px; }
.contact-aside li { display: flex; gap: 14px; align-items: flex-start; }
.contact-aside li svg { width: 20px; height: 20px; flex: none; color: var(--cyan); margin-top: 3px; }
.contact-aside a { color: #DCE7F5; }
.contact-aside a:hover { color: var(--cyan-soft); }
.contact-aside .k { display: block; font-family: var(--font-head); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: #7C92B4; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-950); color: #93A5C1;
  padding: 72px 0 0; margin-top: 0;
  border-top: 1px solid rgba(148, 197, 255, 0.08);
  font-size: 0.95rem;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 0.9fr 1fr; gap: 48px; padding-bottom: 54px; }
.footer-blurb { margin: 18px 0 20px; max-width: 34em; }
.footer-gov-ids { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.footer-gov-ids li {
  font-family: var(--font-head); font-size: 0.74rem; font-weight: 400;
  border: 1px solid rgba(148, 197, 255, 0.18); border-radius: 999px; padding: 5px 12px;
  color: #B9C8DE;
}
.footer-gov-ids strong { color: var(--cyan-soft); font-weight: 600; margin-right: 4px; }
.footer-col h3 {
  color: #fff; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-col a { color: #93A5C1; }
.footer-col a:hover { color: var(--cyan-soft); }
.footer-contact li { line-height: 1.5; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; gap: 18px; flex-wrap: wrap;
  border-top: 1px solid rgba(148, 197, 255, 0.1);
  padding: 22px 0; font-size: 0.86rem;
}
.footer-bottom p { margin: 0; }
.footer-legal { list-style: none; display: flex; gap: 24px; margin: 0; padding: 0; }
.footer-legal a { color: #93A5C1; }
.footer-legal a:hover { color: var(--cyan-soft); }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .hero-inner { grid-template-columns: 1fr; padding-top: 72px; padding-bottom: 72px; gap: 48px; }
  .hero-visual { max-width: 560px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1024px) {
  .topbar-gov { display: none; }
  .topbar-inner { justify-content: center; }
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed; inset: calc(var(--header-h)) 0 auto 0; z-index: 90;
    background: var(--navy-950);
    border-bottom: 1px solid var(--border-dark);
    max-height: calc(100dvh - var(--header-h)); overflow-y: auto;
    transform: translateY(-12px); opacity: 0; visibility: hidden; pointer-events: none;
    transition: transform 0.28s var(--ease), opacity 0.28s var(--ease), visibility 0.28s;
  }
  body.nav-open .main-nav { transform: none; opacity: 1; visibility: visible; pointer-events: auto; }
  .nav-list { flex-direction: column; align-items: stretch; gap: 2px; padding: 18px 24px 28px; }
  .nav-link { width: 100%; justify-content: space-between; padding: 14px 12px; font-size: 1.02rem; border-radius: 10px; }
  .nav-list > li > .nav-link.is-active { box-shadow: inset 3px 0 0 var(--cyan); border-radius: 4px 10px 10px 4px; }
  .dropdown {
    position: static; transform: none; width: 100%; opacity: 1; visibility: hidden; pointer-events: none;
    background: transparent; border: 0; box-shadow: none; padding: 0 0 6px 14px; display: none;
  }
  .has-dropdown.open .dropdown { display: block; visibility: visible; pointer-events: auto; }
  .dropdown-grid { grid-template-columns: 1fr; }
  .dropdown-grid a { color: #C4D2E7; padding: 10px 12px; }
  .dropdown-grid a:hover { background: rgba(148, 197, 255, 0.08); color: #fff; }
  .dropdown-all { color: var(--cyan-soft); margin: 8px 12px 4px; }
  .nav-cta { margin: 14px 0 0; }
  .nav-cta .btn { width: 100%; }
}

@media (max-width: 860px) {
  .section { padding: 64px 0; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .gov-band-grid { grid-template-columns: 1fr; gap: 36px; }
  .band { padding: 40px 28px; }
  .id-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { justify-content: center; text-align: center; }
}

@media (max-width: 560px) {
  .grid-4 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .hero-chip.c1 { left: 0; }
  .hero-chip.c2 { right: 0; }
  .leader-card { flex-direction: column; align-items: flex-start; }
  .container { padding: 0 18px; }
}
