@font-face {
  font-family: "Sora";
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
  src: url("/static/fonts/sora-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191,
    U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Space Grotesk";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/static/fonts/space-grotesk-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191,
    U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("/static/fonts/inter-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191,
    U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 700 800;
  font-display: swap;
  src: url("/static/fonts/manrope-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191,
    U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --bg: #f4f7fb;
  --surface: #ffffff;
  --text: #121826;
  --muted: #5b667a;
  --primary: #0f4be2;
  --primary-strong: #0935a4;
  --primary-soft: #dce8ff;
  --ink: #0a1020;
  --border: #dbe2ef;
  --footer: #15243e;
  --footer-muted: #89a0c3;
  --header-bg: #0a1222;
  --header-bg-mid: #101c33;
  --header-border: rgb(146 176 227 / 24%);
  --header-text: #edf4ff;
  --header-muted: #9fb2d2;
  --header-glow: rgb(84 170 255 / 26%);
  --header-accent: #63d3ff;
  --header-accent-strong: #338dff;
  --header-focus: #8fd5ff;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Space Grotesk', 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

.skip-link {
  position: absolute;
  left: 0.75rem;
  top: -120px;
  z-index: 200;
  border-radius: 0.5rem;
  background: #0f4be2;
  color: #fff;
  padding: 0.6rem 0.78rem;
  font-size: 0.88rem;
  font-weight: 600;
  transition: top 140ms ease;
}

.skip-link:focus {
  top: 0.75rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(1120px, calc(100% - 2.5rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 120;
  padding: 0;
}

.site-header::before {
  content: none;
}

.site-header .container {
  width: 100%;
  max-width: none;
  padding: 0;
}

.nav-shell {
  width: 100%;
  border: 1px solid #d8e1ec;
  border-radius: 0;
  background: rgb(255 255 255 / 78%);
  box-shadow: 0 4px 16px rgb(16 33 61 / 8%);
  backdrop-filter: blur(8px);
  overflow: visible;
  animation: nav-enter 200ms ease-out both;
}

.nav-shell::before {
  content: none;
}

.nav-shell::after {
  content: none;
}

.nav-wrap {
  padding: 0 0.9rem;
}

.nav-main {
  min-height: 64px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.75rem;
  align-items: center;
}

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

.brand-copy {
  display: inline-flex;
}

.brand-name {
  color: #1f2d3d;
  font-family: 'Sora', 'Segoe UI', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
  line-height: 1;
}

.nav-desktop {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 0.2rem;
  padding: 0;
}

.nav-item,
.dropdown-toggle {
  color: #3d4f65;
  font-family: 'Space Grotesk', 'Segoe UI', sans-serif;
  font-weight: 500;
  font-size: 0.88rem;
  letter-spacing: 0;
  text-transform: none;
  padding: 0.5rem 0.7rem;
  border-radius: 6px;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.nav-item:hover,
.nav-item:focus-visible,
.nav-item[aria-current='page'],
.dropdown-toggle:hover,
.dropdown-toggle:focus-visible,
.dropdown-toggle[aria-current='page'],
.dropdown.open .dropdown-toggle,
.dropdown.has-current .dropdown-toggle {
  color: #1f2d3d;
  background: #eef3f8;
  box-shadow: inset 0 0 0 1px #dde6f0;
}

.dropdown {
  position: relative;
}

.dropdown-toggle {
  border: 0;
  margin: 0;
  cursor: pointer;
  background: transparent;
  display: inline-flex;
  align-items: center;
  gap: 0.36rem;
}

.dropdown-caret {
  font-size: 0.95rem;
  line-height: 1;
  transform: translateY(-1px);
  transition: transform 180ms ease;
}

.dropdown.open .dropdown-caret {
  transform: translateY(-1px) rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 0.45rem);
  right: 0;
  left: auto;
  transform: none;
  width: min(240px, calc(100vw - 1rem));
  background: #ffffff;
  border-radius: 8px;
  border: 1px solid #d8e2ec;
  box-shadow: 0 10px 30px rgb(16 33 61 / 14%);
  padding: 0;
  display: none;
  min-width: 0;
  overflow: hidden;
}

.dropdown.open .dropdown-menu {
  display: block;
}

.dropdown-list {
  list-style: none;
  margin: 0;
  padding: 0.35rem 0.55rem;
}

.dropdown-list li + li {
  margin-top: 0.32rem;
}

.dropdown-list a {
  display: inline-block;
  padding: 0;
  color: #2e425a;
  font-size: 0.84rem;
  font-weight: 500;
  line-height: 1.3;
  transition: color 140ms ease, font-size 140ms ease;
}

.dropdown-list a:hover,
.dropdown-list a:focus-visible {
  color: #0f4be2;
  font-size: 0.97rem;
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 0;
}

.mobile-toggle {
  display: none;
  position: relative;
  width: 42px;
  height: 42px;
  border: 1px solid #c0d0e4;
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #eef4fc);
  padding: 0;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 180ms ease, border-color 180ms ease;
}

.mobile-toggle span {
  position: absolute;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #2a466c;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.mobile-toggle span:nth-child(1) {
  transform: translateY(-6px);
}

.mobile-toggle span:nth-child(3) {
  transform: translateY(6px);
}

.mobile-toggle[aria-expanded='true'] span:nth-child(1) {
  transform: rotate(45deg);
}

.mobile-toggle[aria-expanded='true'] span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle[aria-expanded='true'] span:nth-child(3) {
  transform: rotate(-45deg);
}

.mobile-menu {
  display: none;
  border-top: 1px solid #e0e8f1;
  background: #ffffff;
  padding: 0.35rem 0.9rem 0.85rem;
}

.mobile-menu[hidden] {
  display: none !important;
}

.mobile-menu-label {
  margin: 0.3rem 0 0.15rem;
  color: #60748d;
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.mobile-menu a,
.mobile-services summary {
  display: block;
  color: #33485f;
  font-size: 0.88rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid #e3ebf3;
}

.mobile-services {
  margin: 0;
}

.mobile-services summary {
  cursor: pointer;
  list-style: none;
}

.mobile-services summary::-webkit-details-marker {
  display: none;
}

.mobile-services ul {
  list-style: none;
  padding: 0 0 0 0.9rem;
  margin: 0 0 0.3rem;
}

.mobile-services li a {
  font-size: 0.8rem;
  color: #556a82;
  padding-top: 0.55rem;
  padding-bottom: 0.55rem;
}

.mobile-menu.open {
  display: block;
  animation: mobile-menu-enter 220ms ease both;
}

@keyframes mobile-menu-enter {
  from {
    opacity: 0;
    transform: translateY(-6px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.nav-item:focus-visible,
.dropdown-toggle:focus-visible,
.dropdown-menu a:focus-visible,
.mobile-toggle:focus-visible,
.mobile-menu a:focus-visible,
.mobile-services summary:focus-visible {
  outline: 2px solid #4c78ab;
  outline-offset: 2px;
}

:where(a, button, input, select, textarea, summary):focus-visible {
  outline: 2px solid #0f4be2;
  outline-offset: 2px;
}

@keyframes nav-enter {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

main {
  min-height: calc(100vh - 220px);
}

#main-content {
  scroll-margin-top: 5.5rem;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 6.5rem 0 4.8rem;
  background: radial-gradient(circle at 12% 20%, #2b4d8f 0%, #14264d 20%, #0a1020 50%, #070b16 100%);
  color: #f4f8ff;
}

.hero::after {
  content: '';
  position: absolute;
  right: -160px;
  top: -130px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgb(63 124 255 / 36%) 0%, rgb(63 124 255 / 0%) 70%);
  pointer-events: none;
}

.contact-hero {
  isolation: isolate;
  background:
    radial-gradient(86% 92% at 6% 8%, rgb(122 193 255 / 22%) 0%, rgb(122 193 255 / 0%) 58%),
    radial-gradient(64% 76% at 88% 16%, rgb(97 172 255 / 18%) 0%, rgb(97 172 255 / 0%) 54%),
    radial-gradient(72% 84% at 78% 90%, rgb(79 154 247 / 14%) 0%, rgb(79 154 247 / 0%) 62%),
    linear-gradient(146deg, #041226 0%, #081a37 42%, #0b244a 100%);
}

.contact-hero::before {
  content: '';
  position: absolute;
  inset: -8% -6%;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(124deg, rgb(160 220 255 / 0%) 18%, rgb(160 220 255 / 16%) 40%, rgb(160 220 255 / 0%) 66%),
    linear-gradient(148deg, rgb(132 201 255 / 0%) 26%, rgb(132 201 255 / 11%) 47%, rgb(132 201 255 / 0%) 70%),
    radial-gradient(52% 58% at 22% 36%, rgb(184 228 255 / 20%) 0%, rgb(184 228 255 / 0%) 72%),
    radial-gradient(46% 52% at 76% 64%, rgb(153 211 255 / 14%) 0%, rgb(153 211 255 / 0%) 70%),
    linear-gradient(180deg, rgb(8 20 42 / 0%) 44%, rgb(6 16 34 / 52%) 88%, rgb(5 12 26 / 74%) 100%);
  opacity: 0.72;
}

.contact-hero::after {
  right: -40px;
  top: 28px;
  width: 290px;
  height: 290px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 30% 30%, rgb(202 235 255 / 36%) 0%, rgb(130 198 255 / 18%) 36%, rgb(130 198 255 / 0%) 76%);
  opacity: 0.62;
  filter: blur(2px);
}

.contact-hero .hero-grid {
  z-index: 2;
}

.contact-hero .eyebrow {
  color: #acd0ff;
}

.contact-hero .hero-card {
  background: rgb(8 22 44 / 68%);
  border-color: rgb(191 220 255 / 28%);
  box-shadow: 0 18px 36px rgb(4 14 30 / 32%);
}

.contact-hero .hero-card h2 {
  color: #eaf3ff;
}

.contact-hero .hero-card ul {
  color: #cfe0fb;
}

.methodology-hero {
  isolation: isolate;
  background:
    linear-gradient(134deg, rgb(84 170 255 / 8%) 0%, rgb(84 170 255 / 0%) 28%),
    linear-gradient(134deg, rgb(63 124 255 / 0%) 30%, rgb(63 124 255 / 10%) 56%, rgb(63 124 255 / 0%) 78%),
    linear-gradient(163deg, #01040c 0%, #040a18 30%, #081528 60%, #0f274c 100%);
}

.methodology-hero::before {
  content: '';
  position: absolute;
  inset: -18% -14% -16% -18%;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(148deg, rgb(99 211 255 / 10%) 0%, rgb(99 211 255 / 3%) 34%, rgb(99 211 255 / 0%) 68%),
    linear-gradient(148deg, rgb(84 170 255 / 0%) 14%, rgb(84 170 255 / 14%) 44%, rgb(84 170 255 / 0%) 76%),
    linear-gradient(180deg, rgb(15 75 226 / 0%) 10%, rgb(15 75 226 / 16%) 44%, rgb(7 18 38 / 70%) 70%, rgb(3 8 18 / 95%) 100%);
  clip-path: polygon(0 2%, 100% 0, 100% 54%, 86% 60%, 66% 70%, 44% 82%, 22% 92%, 0 100%);
  transform: translateY(2%);
  mix-blend-mode: screen;
  opacity: 0.62;
}

.methodology-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  width: auto;
  height: auto;
  right: auto;
  top: auto;
  border-radius: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(121deg, transparent 0 28%, rgb(99 211 255 / 10%) 28.3% 28.7%, transparent 29.4% 100%),
    linear-gradient(121deg, transparent 0 40%, rgb(84 170 255 / 8%) 40.2% 40.6%, transparent 41.3% 100%),
    linear-gradient(121deg, transparent 0 54%, rgb(63 124 255 / 8%) 54.2% 54.6%, transparent 55.2% 100%),
    linear-gradient(121deg, transparent 0 68%, rgb(63 124 255 / 6%) 68.1% 68.4%, transparent 69% 100%),
    linear-gradient(121deg, transparent 0 80%, rgb(99 211 255 / 6%) 80.1% 80.3%, transparent 80.8% 100%),
    linear-gradient(180deg, rgb(7 18 38 / 0%) 30%, rgb(6 16 34 / 28%) 62%, rgb(4 9 21 / 58%) 100%);
  opacity: 0.34;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 2rem;
  grid-template-columns: 1.4fr 1fr;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
  font-size: 0.76rem;
  color: #9bc0ff;
  margin: 0 0 0.75rem;
}

.hero h1 {
  margin: 0;
  font-family: 'Sora', 'Segoe UI', sans-serif;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.15;
  max-width: 14ch;
}

.hero p {
  margin: 1.1rem 0 1.8rem;
  max-width: 54ch;
  color: #d3e0fa;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 0.62rem;
  padding: 0.74rem 1.1rem;
  font-weight: 600;
  font-size: 0.92rem;
}

.btn:focus-visible {
  box-shadow: 0 0 0 3px rgb(15 75 226 / 30%);
}

.btn-primary {
  background: linear-gradient(120deg, var(--primary), #2c74ff);
  color: #fff;
}

.btn-secondary {
  border-color: rgb(229 238 255 / 36%);
  color: #dbe8ff;
}

.hero-card {
  background: rgb(11 19 37 / 70%);
  border: 1px solid rgb(194 215 255 / 20%);
  border-radius: 0.95rem;
  padding: 1.3rem;
}

.hero-card h2 {
  margin: 0 0 0.75rem;
  font-size: 1.05rem;
  color: #dce9ff;
  font-family: 'Sora', 'Segoe UI', sans-serif;
}

.hero-card ul {
  margin: 0;
  padding: 0 0 0 1rem;
  color: #b8caea;
  font-size: 0.91rem;
}

.content-section {
  padding: 3.3rem 0;
}

.content-section.alt {
  background: #edf2fa;
}

.section-title {
  margin: 0 0 0.6rem;
  font-family: 'Sora', 'Segoe UI', sans-serif;
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
}

.section-lead {
  margin: 0;
  color: var(--muted);
  max-width: 67ch;
}

.grid-3 {
  margin-top: 1.3rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  border: 1px solid var(--border);
  border-radius: 0.9rem;
  background: #fff;
  padding: 1.1rem;
}

.card h3 {
  margin: 0 0 0.5rem;
  font-family: 'Sora', 'Segoe UI', sans-serif;
  font-size: 1.04rem;
}

.card p,
.card li {
  color: #4b5569;
  font-size: 0.94rem;
}

.card ul {
  margin: 0;
  padding: 0 0 0 1rem;
}

.text-content h2,
.text-content h3 {
  font-family: 'Sora', 'Segoe UI', sans-serif;
  margin-bottom: 0.35rem;
}

.text-content p,
.text-content li {
  color: #394457;
  font-size: 0.95rem;
}

.text-content ul {
  margin: 0 0 1rem;
  padding: 0 0 0 1rem;
}

.form-grid {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: 1fr 1fr;
}

.form-grid .full {
  grid-column: 1 / -1;
}

.form-status {
  margin: 0 0 0.9rem;
  border-radius: 0.75rem;
  border: 1px solid #d8e2ef;
  background: #f6f9ff;
  padding: 0.76rem 0.9rem;
  color: #33485f;
}

.form-status a {
  text-decoration: underline;
}

.form-status-success {
  border-color: #b8ddc8;
  background: #edf9f2;
  color: #1f5c39;
}

.form-status-error {
  border-color: #ebc2c2;
  background: #fff4f4;
  color: #8a1f1f;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 0.6rem;
  font: inherit;
  font-size: 0.94rem;
  padding: 0.72rem 0.76rem;
  background: #fff;
}

input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  border-color: #9db8e8;
  box-shadow: 0 0 0 3px rgb(15 75 226 / 16%);
  outline: 2px solid transparent;
}

textarea {
  resize: vertical;
}

label {
  display: block;
  font-size: 0.82rem;
  margin-bottom: 0.35rem;
  color: #374255;
  font-weight: 600;
}

.site-footer {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgb(105 153 242 / 22%) 0%, rgb(105 153 242 / 0%) 30%),
    radial-gradient(circle at 12% 0%, rgb(192 216 255 / 18%) 0%, rgb(192 216 255 / 0%) 26%),
    radial-gradient(circle at 18% 100%, rgb(69 115 198 / 18%) 0%, rgb(69 115 198 / 0%) 32%),
    linear-gradient(135deg, #213a61 0%, #192d4c 44%, #13223a 100%);
  color: #fff;
  padding: 3.25rem 0 1.85rem;
  border-top: 1px solid rgb(255 255 255 / 12%);
}

.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgb(255 255 255 / 0.05) 1px, transparent 1px),
    linear-gradient(rgb(255 255 255 / 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.16;
  pointer-events: none;
}

.site-footer::after {
  content: '';
  position: absolute;
  inset: auto -8rem -10rem auto;
  width: 26rem;
  height: 26rem;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgb(178 208 255 / 20%) 0%, rgb(178 208 255 / 0%) 68%);
  pointer-events: none;
}

.footer-shell {
  position: relative;
  z-index: 1;
}

.footer-topbar {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  align-items: center;
  margin-bottom: 2rem;
  padding: 1.5rem 1.6rem;
  border-radius: 1.4rem;
  background:
    linear-gradient(180deg, rgb(255 255 255 / 0.12), rgb(255 255 255 / 0.05)),
    radial-gradient(circle at right center, rgb(167 200 255 / 15%) 0%, rgb(167 200 255 / 0%) 34%);
  border: 1px solid rgb(199 220 255 / 18%);
  box-shadow: 0 22px 48px rgb(8 19 42 / 24%);
  backdrop-filter: blur(16px);
}

.footer-heading {
  margin: 0;
  max-width: 24ch;
  font-family: 'Sora', 'Segoe UI', sans-serif;
  font-size: clamp(1.45rem, 2.3vw, 2rem);
  line-height: 1.1;
  color: #f8fbff;
}

.footer-topcopy {
  margin: 0;
  max-width: 48rem;
  color: #b7cae8;
  font-size: 0.96rem;
  line-height: 1.7;
}

.footer-grid {
  display: grid;
  gap: 1.8rem;
  grid-template-columns: minmax(0, 1.4fr) minmax(180px, 0.8fr) minmax(180px, 0.8fr);
  padding: 0.5rem 0 0;
}

.footer-title {
  margin: 0 0 0.95rem;
  font-family: 'Sora', 'Segoe UI', sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #d3e4ff;
}

.footer-company {
  max-width: 30rem;
}

.footer-brand {
  margin: 0 0 0.75rem;
  font-family: 'Sora', 'Segoe UI', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #f8fbff;
}

.footer-copy,
.footer-link {
  color: var(--footer-muted);
  font-size: 0.94rem;
  line-height: 1.7;
}

.footer-copy {
  margin: 0;
}

.footer-link {
  display: block;
  padding: 0.34rem 0;
  transition: color 160ms ease, transform 160ms ease;
}

.footer-link:hover,
.footer-link:focus-visible {
  color: #f3f7ff;
  transform: translateX(2px);
}

.footer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.2rem;
}

.footer-tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.42rem 0.78rem;
  border-radius: 999px;
  background: rgb(255 255 255 / 0.08);
  border: 1px solid rgb(214 229 255 / 14%);
  color: #dbe8ff;
  font-size: 0.8rem;
  font-weight: 600;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgb(255 255 255 / 12%);
  color: #9db0cd;
  font-size: 0.82rem;
}

.footer-bottom p {
  margin: 0;
}

@media (max-width: 980px) {
  .nav-wrap {
    padding: 0 0.8rem;
  }

  .nav-main {
    min-height: 58px;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.5rem;
  }

  .nav-desktop {
    display: none;
  }

  .mobile-toggle {
    display: inline-flex;
  }

  .mobile-menu {
    padding: 0.34rem 0.92rem 0.92rem;
  }

  .hero {
    padding-top: 5.6rem;
  }

  .methodology-hero::before {
    inset: -12% -34% -14% -30%;
    opacity: 0.5;
  }

  .methodology-hero::after {
    opacity: 0.28;
  }

  .hero-grid,
  .footer-topbar,
  .footer-grid,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    justify-content: flex-start;
  }

  .site-footer .footer-shell {
    padding-inline: 0.35rem;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(1120px, calc(100% - 1.5rem));
  }

  .nav-wrap {
    padding: 0 0.72rem;
  }

  .nav-main {
    min-height: 54px;
  }

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

  .mobile-menu {
    padding: 0.3rem 0.82rem 0.82rem;
  }

  .content-section {
    padding: 2.35rem 0;
  }

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

  .site-footer {
    padding-top: 2.6rem;
  }

  .footer-topbar {
    padding: 1.25rem;
  }

  .footer-heading {
    max-width: none;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer .footer-shell {
    padding-inline: 0.5rem;
  }
}

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

@media (forced-colors: active) {
  :where(a, button, input, select, textarea, summary):focus-visible {
    outline: 2px solid Highlight;
  }

  .btn,
  .mobile-toggle,
  .dropdown-toggle,
  input,
  select,
  textarea {
    border: 1px solid ButtonText;
  }
}
*,:after,:before{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(59,130,246,.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }::backdrop{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(59,130,246,.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }/*! tailwindcss v3.4.19 | MIT License | https://tailwindcss.com*/*,:after,:before{box-sizing:border-box;border:0 solid #e5e7eb}:after,:before{--tw-content:""}:host,html{line-height:1.5;-webkit-text-size-adjust:100%;-moz-tab-size:4;-o-tab-size:4;tab-size:4;font-family:ui-sans-serif,system-ui,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;font-feature-settings:normal;font-variation-settings:normal;-webkit-tap-highlight-color:transparent}body{margin:0;line-height:inherit}hr{height:0;color:inherit;border-top-width:1px}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,pre,samp{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-feature-settings:normal;font-variation-settings:normal;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}button,input,optgroup,select,textarea{font-family:inherit;font-feature-settings:inherit;font-variation-settings:inherit;font-size:100%;font-weight:inherit;line-height:inherit;letter-spacing:inherit;color:inherit;margin:0;padding:0}button,select{text-transform:none}button,input:where([type=button]),input:where([type=reset]),input:where([type=submit]){-webkit-appearance:button;background-color:transparent;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dd,dl,figure,h1,h2,h3,h4,h5,h6,hr,p,pre{margin:0}fieldset{margin:0}fieldset,legend{padding:0}menu,ol,ul{list-style:none;margin:0;padding:0}dialog{padding:0}textarea{resize:vertical}input::-moz-placeholder,textarea::-moz-placeholder{opacity:1;color:#9ca3af}input::placeholder,textarea::placeholder{opacity:1;color:#9ca3af}[role=button],button{cursor:pointer}:disabled{cursor:default}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle}img,video{max-width:100%;height:auto}[hidden]:where(:not([hidden=until-found])){display:none}input:where(:not([type])),input:where([type=date]),input:where([type=datetime-local]),input:where([type=email]),input:where([type=month]),input:where([type=number]),input:where([type=password]),input:where([type=search]),input:where([type=tel]),input:where([type=text]),input:where([type=time]),input:where([type=url]),input:where([type=week]),select,select:where([multiple]),textarea{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#fff;border-color:#6b7280;border-width:1px;border-radius:0;padding:.5rem .75rem;font-size:1rem;line-height:1.5rem;--tw-shadow:0 0 #0000}input:where(:not([type])):focus,input:where([type=date]):focus,input:where([type=datetime-local]):focus,input:where([type=email]):focus,input:where([type=month]):focus,input:where([type=number]):focus,input:where([type=password]):focus,input:where([type=search]):focus,input:where([type=tel]):focus,input:where([type=text]):focus,input:where([type=time]):focus,input:where([type=url]):focus,input:where([type=week]):focus,select:focus,select:where([multiple]):focus,textarea:focus{outline:2px solid transparent;outline-offset:2px;--tw-ring-inset:var(--tw-empty,/*!*/ /*!*/);--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:#2563eb;--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);border-color:#2563eb}input::-moz-placeholder,textarea::-moz-placeholder{color:#6b7280;opacity:1}input::placeholder,textarea::placeholder{color:#6b7280;opacity:1}::-webkit-datetime-edit-fields-wrapper{padding:0}::-webkit-date-and-time-value{min-height:1.5em;text-align:inherit}::-webkit-datetime-edit{display:inline-flex}::-webkit-datetime-edit,::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-meridiem-field,::-webkit-datetime-edit-millisecond-field,::-webkit-datetime-edit-minute-field,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-second-field,::-webkit-datetime-edit-year-field{padding-top:0;padding-bottom:0}select{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3E%3C/svg%3E");background-position:right .5rem center;background-repeat:no-repeat;background-size:1.5em 1.5em;padding-right:2.5rem;-webkit-print-color-adjust:exact;print-color-adjust:exact}select:where([multiple]),select:where([size]:not([size="1"])){background-image:none;background-position:0 0;background-repeat:unset;background-size:initial;padding-right:.75rem;-webkit-print-color-adjust:unset;print-color-adjust:unset}input:where([type=checkbox]),input:where([type=radio]){-webkit-appearance:none;-moz-appearance:none;appearance:none;padding:0;-webkit-print-color-adjust:exact;print-color-adjust:exact;display:inline-block;vertical-align:middle;background-origin:border-box;-webkit-user-select:none;-moz-user-select:none;user-select:none;flex-shrink:0;height:1rem;width:1rem;color:#2563eb;background-color:#fff;border-color:#6b7280;border-width:1px;--tw-shadow:0 0 #0000}input:where([type=checkbox]){border-radius:0}input:where([type=radio]){border-radius:100%}input:where([type=checkbox]):focus,input:where([type=radio]):focus{outline:2px solid transparent;outline-offset:2px;--tw-ring-inset:var(--tw-empty,/*!*/ /*!*/);--tw-ring-offset-width:2px;--tw-ring-offset-color:#fff;--tw-ring-color:#2563eb;--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}input:where([type=checkbox]):checked,input:where([type=radio]):checked{border-color:transparent;background-color:currentColor;background-size:100% 100%;background-position:50%;background-repeat:no-repeat}input:where([type=checkbox]):checked{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 16 16'%3E%3Cpath d='M12.207 4.793a1 1 0 0 1 0 1.414l-5 5a1 1 0 0 1-1.414 0l-2-2a1 1 0 0 1 1.414-1.414L6.5 9.086l4.293-4.293a1 1 0 0 1 1.414 0'/%3E%3C/svg%3E")}@media (forced-colors:active) {input:where([type=checkbox]):checked{-webkit-appearance:auto;-moz-appearance:auto;appearance:auto}}input:where([type=radio]):checked{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 16 16'%3E%3Ccircle cx='8' cy='8' r='3'/%3E%3C/svg%3E")}@media (forced-colors:active) {input:where([type=radio]):checked{-webkit-appearance:auto;-moz-appearance:auto;appearance:auto}}input:where([type=checkbox]):checked:focus,input:where([type=checkbox]):checked:hover,input:where([type=radio]):checked:focus,input:where([type=radio]):checked:hover{border-color:transparent;background-color:currentColor}input:where([type=checkbox]):indeterminate{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3E%3Cpath stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 8h8'/%3E%3C/svg%3E");border-color:transparent;background-color:currentColor;background-size:100% 100%;background-position:50%;background-repeat:no-repeat}@media (forced-colors:active) {input:where([type=checkbox]):indeterminate{-webkit-appearance:auto;-moz-appearance:auto;appearance:auto}}input:where([type=checkbox]):indeterminate:focus,input:where([type=checkbox]):indeterminate:hover{border-color:transparent;background-color:currentColor}input:where([type=file]){background:unset;border-color:inherit;border-width:0;border-radius:0;padding:0;font-size:unset;line-height:inherit}input:where([type=file]):focus{outline:1px solid ButtonText;outline:1px auto -webkit-focus-ring-color}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0}.pointer-events-none{pointer-events:none}.absolute{position:absolute}.relative{position:relative}.inset-0{inset:0}.inset-x-0{left:0;right:0}.-right-10{right:-2.5rem}.-right-20{right:-5rem}.-top-10{top:-2.5rem}.-top-20{top:-5rem}.top-0{top:0}.isolate{isolation:isolate}.z-10{z-index:10}.mx-auto{margin-left:auto;margin-right:auto}.mb-10{margin-bottom:2.5rem}.mb-12{margin-bottom:3rem}.mb-16{margin-bottom:4rem}.mb-24{margin-bottom:6rem}.mb-3{margin-bottom:.75rem}.mb-4{margin-bottom:1rem}.mb-6{margin-bottom:1.5rem}.mb-8{margin-bottom:2rem}.ml-2{margin-left:.5rem}.mt-8{margin-top:2rem}.mt-auto{margin-top:auto}.block{display:block}.flex{display:flex}.inline-flex{display:inline-flex}.grid{display:grid}.hidden{display:none}.h-1{height:.25rem}.h-14{height:3.5rem}.h-16{height:4rem}.h-20{height:5rem}.h-28{height:7rem}.h-3\.5{height:.875rem}.h-4{height:1rem}.h-8{height:2rem}.h-\[600px\]{height:600px}.min-h-screen{min-height:100vh}.w-14{width:3.5rem}.w-16{width:4rem}.w-3\.5{width:.875rem}.w-4{width:1rem}.w-8{width:2rem}.w-\[600px\]{width:600px}.w-full{width:100%}.max-w-2xl{max-width:42rem}.max-w-3xl{max-width:48rem}.max-w-5xl{max-width:64rem}.max-w-7xl{max-width:80rem}.max-w-xl{max-width:36rem}.flex-shrink-0{flex-shrink:0}.transform{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.flex-col{flex-direction:column}.flex-wrap{flex-wrap:wrap}.items-start{align-items:flex-start}.items-center{align-items:center}.justify-center{justify-content:center}.gap-2{gap:.5rem}.gap-20{gap:5rem}.gap-5{gap:1.25rem}.gap-8{gap:2rem}.space-y-12>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-top:calc(3rem*(1 - var(--tw-space-y-reverse)));margin-bottom:calc(3rem*var(--tw-space-y-reverse))}.overflow-hidden{overflow:hidden}.rounded-2xl{border-radius:1rem}.rounded-3xl{border-radius:1.5rem}.rounded-\[2\.5rem\]{border-radius:2.5rem}.rounded-full{border-radius:.75rem}.rounded-lg{border-radius:.25rem}.rounded-xl{border-radius:.5rem}.border{border-width:1px}.border-2{border-width:2px}.border-t{border-top-width:1px}.border-blue-500{--tw-border-opacity:1;border-color:rgb(59 130 246/var(--tw-border-opacity,1))}.border-blue-500\/10{border-color:rgba(59,130,246,.1)}.border-blue-500\/5{border-color:rgba(59,130,246,.05)}.border-outline-variant\/10{border-color:rgba(195,198,214,.1)}.border-outline-variant\/30{border-color:rgba(195,198,214,.3)}.border-slate-700{--tw-border-opacity:1;border-color:rgb(51 65 85/var(--tw-border-opacity,1))}.bg-\[\#e3ebf8\]{--tw-bg-opacity:1;background-color:rgb(227 235 248/var(--tw-bg-opacity,1))}.bg-green-500\/60{background-color:rgba(34,197,94,.6)}.bg-primary{--tw-bg-opacity:1;background-color:rgb(0 61 155/var(--tw-bg-opacity,1))}.bg-primary\/5{background-color:rgba(0,61,155,.05)}.bg-red-500\/60{background-color:rgba(239,68,68,.6)}.bg-slate-50{--tw-bg-opacity:1;background-color:rgb(248 250 252/var(--tw-bg-opacity,1))}.bg-slate-800{--tw-bg-opacity:1;background-color:rgb(30 41 59/var(--tw-bg-opacity,1))}.bg-surface{--tw-bg-opacity:1;background-color:rgb(248 249 251/var(--tw-bg-opacity,1))}.bg-white{--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity,1))}.bg-yellow-500\/60{background-color:rgba(234,179,8,.6)}.bg-\[linear-gradient\(180deg\2c \#09132a_0\%\2c rgba\(15\2c 23\2c 42\2c 0\.96\)_12\%\2c rgba\(44\2c 63\2c 98\2c 0\.72\)_34\%\2c rgba\(118\2c 138\2c 173\2c 0\.38\)_58\%\2c rgba\(227\2c 235\2c 248\2c 0\.96\)_82\%\2c \#e3ebf8_100\%\)\]{background-image:linear-gradient(180deg,#09132a,rgba(15,23,42,.96) 12%,rgba(44,63,98,.72) 34%,rgba(118,138,173,.38) 58%,rgba(227,235,248,.96) 82%,#e3ebf8)}.bg-\[linear-gradient\(180deg\2c \#1c2a44_0\%\2c \#0f172a_18\%\2c \#0f172a_100\%\)\]{background-image:linear-gradient(180deg,#1c2a44,#0f172a 18%,#0f172a)}.bg-\[linear-gradient\(180deg\2c rgba\(227\2c 235\2c 248\2c 0\.62\)_0\%\2c rgba\(227\2c 235\2c 248\2c 0\)_78\%\)\]{background-image:linear-gradient(180deg,rgba(227,235,248,.62),rgba(227,235,248,0) 78%)}.bg-gradient-to-br{background-image:linear-gradient(to bottom right,var(--tw-gradient-stops))}.from-primary{--tw-gradient-from:#003d9b var(--tw-gradient-from-position);--tw-gradient-to:rgba(0,61,155,0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to)}.to-primary-container{--tw-gradient-to:#0052cc var(--tw-gradient-to-position)}.p-10{padding:2.5rem}.p-12{padding:3rem}.px-10{padding-left:2.5rem;padding-right:2.5rem}.px-12{padding-left:3rem;padding-right:3rem}.px-8{padding-left:2rem;padding-right:2rem}.py-32{padding-top:8rem;padding-bottom:8rem}.py-5{padding-top:1.25rem;padding-bottom:1.25rem}.pb-24{padding-bottom:6rem}.pb-32{padding-bottom:8rem}.pt-2{padding-top:.5rem}.pt-24{padding-top:6rem}.pt-32{padding-top:8rem}.pt-6{padding-top:1.5rem}.text-center{text-align:center}.font-mono{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace}.text-4xl{font-size:2.25rem;line-height:2.5rem}.text-5xl{font-size:3rem;line-height:1}.text-\[10px\]{font-size:10px}.text-lg{font-size:1.125rem;line-height:1.75rem}.text-sm{font-size:.875rem;line-height:1.25rem}.text-xl{font-size:1.25rem;line-height:1.75rem}.text-xs{font-size:.75rem;line-height:1rem}.font-bold{font-weight:700}.font-extrabold{font-weight:800}.font-semibold{font-weight:600}.uppercase{text-transform:uppercase}.italic{font-style:italic}.leading-8{line-height:2rem}.leading-\[1\.1\]{line-height:1.1}.leading-relaxed{line-height:1.625}.tracking-\[0\.15em\]{letter-spacing:.15em}.tracking-\[0\.2em\]{letter-spacing:.2em}.tracking-tight{letter-spacing:-.025em}.tracking-widest{letter-spacing:.1em}.text-blue-300{--tw-text-opacity:1;color:rgb(147 197 253/var(--tw-text-opacity,1))}.text-blue-400{--tw-text-opacity:1;color:rgb(96 165 250/var(--tw-text-opacity,1))}.text-blue-500{--tw-text-opacity:1;color:rgb(59 130 246/var(--tw-text-opacity,1))}.text-current{color:currentColor}.text-on-primary{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity,1))}.text-on-surface{--tw-text-opacity:1;color:rgb(25 28 30/var(--tw-text-opacity,1))}.text-on-surface-variant{--tw-text-opacity:1;color:rgb(67 70 84/var(--tw-text-opacity,1))}.text-primary{--tw-text-opacity:1;color:rgb(0 61 155/var(--tw-text-opacity,1))}.text-primary-fixed{--tw-text-opacity:1;color:rgb(218 226 255/var(--tw-text-opacity,1))}.text-slate-200{--tw-text-opacity:1;color:rgb(226 232 240/var(--tw-text-opacity,1))}.text-slate-300{--tw-text-opacity:1;color:rgb(203 213 225/var(--tw-text-opacity,1))}.text-slate-400{--tw-text-opacity:1;color:rgb(148 163 184/var(--tw-text-opacity,1))}.text-white{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity,1))}.opacity-100{opacity:1}.opacity-60{opacity:.6}.opacity-90{opacity:.9}.shadow-2xl{--tw-shadow:0 25px 50px -12px rgba(0,0,0,.25);--tw-shadow-colored:0 25px 50px -12px var(--tw-shadow-color)}.shadow-2xl,.shadow-\[0_10px_30px_rgba\(15\2c 23\2c 42\2c 0\.08\)\]{box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.shadow-\[0_10px_30px_rgba\(15\2c 23\2c 42\2c 0\.08\)\]{--tw-shadow:0 10px 30px rgba(15,23,42,.08);--tw-shadow-colored:0 10px 30px var(--tw-shadow-color)}.shadow-\[0_35px_60px_-15px_rgba\(0\2c 0\2c 0\2c 0\.6\)\]{--tw-shadow:0 35px 60px -15px rgba(0,0,0,.6);--tw-shadow-colored:0 35px 60px -15px var(--tw-shadow-color)}.shadow-\[0_35px_60px_-15px_rgba\(0\2c 0\2c 0\2c 0\.6\)\],.shadow-lg{box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.shadow-lg{--tw-shadow:0 10px 15px -3px rgba(0,0,0,.1),0 4px 6px -4px rgba(0,0,0,.1);--tw-shadow-colored:0 10px 15px -3px var(--tw-shadow-color),0 4px 6px -4px var(--tw-shadow-color)}.shadow-xl{--tw-shadow:0 20px 25px -5px rgba(0,0,0,.1),0 8px 10px -6px rgba(0,0,0,.1);--tw-shadow-colored:0 20px 25px -5px var(--tw-shadow-color),0 8px 10px -6px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.shadow-blue-500\/10{--tw-shadow-color:rgba(59,130,246,.1);--tw-shadow:var(--tw-shadow-colored)}.blur{--tw-blur:blur(8px)}.blur,.filter{filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.transition-all{transition-property:all;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.duration-300{transition-duration:.3s}.duration-500{transition-duration:.5s}body{font-family:Inter,Segoe UI,sans-serif;background-color:#f8f9fb;color:#191c1e}h1,h2,h3,h4{font-family:Manrope,Segoe UI,sans-serif}.grid-pattern{background-image:radial-gradient(circle,#003d9b10 1px,transparent 0);background-size:40px 40px}.hover\:scale-105:hover{--tw-scale-x:1.05;--tw-scale-y:1.05}.hover\:scale-105:hover,.hover\:scale-\[1\.02\]:hover{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.hover\:scale-\[1\.02\]:hover{--tw-scale-x:1.02;--tw-scale-y:1.02}.hover\:border-primary\/20:hover{border-color:rgba(0,61,155,.2)}.hover\:bg-primary-container:hover{--tw-bg-opacity:1;background-color:rgb(0 82 204/var(--tw-bg-opacity,1))}.hover\:bg-slate-100:hover{--tw-bg-opacity:1;background-color:rgb(241 245 249/var(--tw-bg-opacity,1))}.hover\:shadow-2xl:hover{--tw-shadow:0 25px 50px -12px rgba(0,0,0,.25);--tw-shadow-colored:0 25px 50px -12px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.active\:scale-95:active{--tw-scale-x:.95;--tw-scale-y:.95}.active\:scale-95:active,.group:hover .group-hover\:scale-110{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.group:hover .group-hover\:scale-110{--tw-scale-x:1.1;--tw-scale-y:1.1}.group:hover .group-hover\:bg-primary{--tw-bg-opacity:1;background-color:rgb(0 61 155/var(--tw-bg-opacity,1))}.group:hover .group-hover\:text-white{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity,1))}@media (min-width:768px){.md\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.md\:text-5xl{font-size:3rem;line-height:1}}@media (min-width:1024px){.lg\:block{display:block}.lg\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.lg\:grid-cols-4{grid-template-columns:repeat(4,minmax(0,1fr))}.lg\:p-24{padding:6rem}.lg\:text-5xl{font-size:3rem;line-height:1}.lg\:text-6xl{font-size:3.75rem;line-height:1}.lg\:text-7xl{font-size:4.5rem;line-height:1}.lg\:text-xl{font-size:1.25rem;line-height:1.75rem}}