@font-face {
  font-family: "Inter";
  src: url("../assets/fonts/static/Inter_18pt-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../assets/fonts/static/Inter_18pt-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../assets/fonts/static/Inter_18pt-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
:root {
  --bg: #0d1118;
  --surface: #111827;
  --surface-strong: #0f1723;
  --text: #e8edf7;
  --muted: #9cadc6;
  --accent: #7bb7ff;
  --accent-strong: #94c8ff;
  --border: #1f2937;
  --shadow: 0 22px 50px rgba(0, 0, 0, 0.32);
  --panel: #0f1723;
}

[data-theme=light] {
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-strong: #ffffff;
  --text: #0f172a;
  --muted: #4b5563;
  --accent: #1f7dd8;
  --accent-strong: #105ea8;
  --border: #e5e7eb;
  --shadow: none;
  --panel: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  padding-top: 76px;
}

[data-theme=light] body {
  color: var(--muted);
}

h1, h2, h3, h4, h5, h6 {
  color: var(--text);
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  color: var(--accent-strong);
}

a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 22px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 30;
}

.site-header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 15px;
  position: relative;
}

.brand {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.16);
  pointer-events: auto;
  cursor: pointer;
}

[data-theme=light] .brand {
  box-shadow: 0 5px 14px rgba(15, 23, 42, 0.1);
}

nav ul {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 4px 14px;
  margin: 0;
  list-style: none;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
}

[data-theme=light] nav ul {
  box-shadow: 0 5px 14px rgba(15, 23, 42, 0.1);
}

nav a {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}

nav a:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.theme-toggle {
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.16);
  transition: transform 0.15s ease, border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

[data-theme=light] .theme-toggle {
  box-shadow: 0 5px 14px rgba(15, 23, 42, 0.1);
}

.theme-toggle:hover {
  transform: translateY(-1px);
  border-color: var(--accent);
}

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

.lang-switch {
  position: relative;
}

.lang-switch::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 10px;
}

.lang-switch__trigger {
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.16);
  transition: transform 0.15s ease, border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}

[data-theme=light] .lang-switch__trigger {
  box-shadow: 0 5px 14px rgba(15, 23, 42, 0.1);
}

.lang-switch__trigger:hover {
  transform: translateY(-1px);
  border-color: var(--accent);
}

.lang-switch__menu {
  position: absolute;
  top: 100%;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.22);
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.12s ease, transform 0.12s ease;
  z-index: 5;
}

.lang-switch:hover .lang-switch__menu,
.lang-switch:focus-within .lang-switch__menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.lang-switch__menu button {
  min-width: 110px;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--surface-strong);
  color: var(--text);
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.12s ease, background 0.12s ease;
  text-align: left;
}

.lang-switch__menu button:hover,
.lang-switch__menu button:focus-visible {
  border-color: var(--accent);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.16);
  transition: transform 0.15s ease, border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
  align-items: center;
  justify-content: center;
}

[data-theme=light] .menu-toggle {
  box-shadow: 0 5px 14px rgba(15, 23, 42, 0.1);
}

.menu-toggle:hover {
  transform: translateY(-1px);
  border-color: var(--accent);
}

.menu-toggle__icon {
  position: relative;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  display: block;
}

.menu-toggle__icon::before,
.menu-toggle__icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.menu-toggle__icon::before {
  top: -6px;
}

.menu-toggle__icon::after {
  top: 6px;
}

.menu-toggle.is-open .menu-toggle__icon {
  background: transparent;
}

.menu-toggle.is-open .menu-toggle__icon::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle.is-open .menu-toggle__icon::after {
  top: 0;
  transform: rotate(-45deg);
  opacity: 1;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 80px;
  background: var(--surface-strong);
}

.hero__content {
  position: relative;
  display: grid;
  gap: 28px;
  max-width: 920px;
  z-index: 1;
}

.hero--wide .hero__content {
  max-width: 920px;
  margin: 0 auto;
}
.hero--wide .hero p {
  max-width: none;
}

.hero--narrow .hero__content {
  max-width: 720px;
}

.pill, .eyebrow {
  display: none;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  line-height: 1.15;
}

.hero__content h1 {
  overflow-wrap: anywhere;
  hyphens: auto;
}

.hero p {
  margin: 0;
  max-width: 820px;
  color: var(--muted);
  font-size: 1.05rem;
}

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

.alt-shell {
  padding: 80px 0;
}

.services {
  text-align: center;
  padding: 80px 0 28px;
}

.services h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 2.6rem);
  letter-spacing: -0.01em;
}

.alt-list {
  display: grid;
  gap: 80px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 22px;
  justify-items: start;
}

.alt-card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 28px;
  width: min(920px, 100%);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.14), inset 2px 0 0 var(--accent);
}

.alt-card:nth-of-type(even) {
  justify-self: end;
}

[data-theme=light] .alt-card {
  border-color: #e5e7eb;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08), inset 2px 0 0 var(--accent);
}

.references {
  padding: 48px 0px;
  text-align: center;
  background: rgba(31, 125, 216, 0.08);
}

.approach {
  padding: 80px 0;
  background: var(--bg);
}

[data-theme=light] .approach {
  background: #ffffff;
}

.approach .container {
  position: relative;
}

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

.approach__card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px;
  position: relative;
  overflow: hidden;
}

[data-theme=light] .approach__card {
  background: #ffffff;
  border-color: #e5e7eb;
}

.approach__card h3,
.approach__card h4 {
  margin-top: 0;
  margin-bottom: 8px;
}

.approach__card p {
  margin: 0 0 10px 0;
}

.approach__card--gradient,
.approach__card--ribbon,
.approach__card--full {
  /* no-op: modifiers disabled per new layout */
}

.approach__principles {
  list-style: none;
  padding: 0;
  margin: 16px 0 0 0;
  position: relative;
}

.approach__principles::before {
  content: "";
  position: absolute;
  left: 13px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, rgba(148, 200, 255, 0.65), rgba(16, 94, 168, 0.2));
  opacity: 0.8;
}

.approach__principles li {
  position: relative;
  padding-left: 36px;
  margin: 0 0 16px 0;
}

.approach__principles li:last-of-type {
  margin-bottom: 0;
}

.approach__principles li::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--panel);
  border: 3px solid var(--accent);
  box-shadow: 0 0 0 6px rgba(31, 125, 216, 0.1);
}

[data-theme=light] .approach__principles li::before {
  background: #ffffff;
  box-shadow: 0 0 0 6px rgba(31, 125, 216, 0.12);
}

.approach__principles h4 {
  margin: 0 0 6px 0;
  font-size: 1.05rem;
}

.approach__principles p {
  margin: 0;
  color: var(--muted);
}

.approach__principles + h3 {
  margin-top: 28px;
}

.references .references-title {
  margin: 0 0 12px 0;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
}

[data-theme=dark] .references .references-title {
  color: #ffffff;
}

.success-stories {
  padding: 80px 0;
  background: rgba(31, 125, 216, 0.08);
}

[data-theme=dark] .success-stories .section-head h2 {
  color: #ffffff;
}

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

.success-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
  display: grid;
  gap: 10px;
  min-height: 100%;
}

[data-theme=light] .success-card {
  background: #ffffff;
  border-color: #e5e7eb;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.success-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(31, 125, 216, 0.12);
  color: var(--accent-strong);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
}
.success-icon img {
  width: 24px;
  height: 24px;
  filter: brightness(0) saturate(100%) invert(73%) sepia(36%) saturate(1450%) hue-rotate(186deg) brightness(102%) contrast(101%);
}

[data-theme=light] .success-icon img {
  filter: brightness(0) saturate(100%) invert(42%) sepia(85%) saturate(1450%) hue-rotate(186deg) brightness(95%) contrast(95%);
}

.success-card h3 {
  margin: 0;
  font-size: 1.2rem;
}

.success-card p {
  margin: 0;
  color: var(--muted);
}

.success-card .button {
  justify-self: start;
  gap: 8px;
}

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

.logo-tile {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

[data-theme=dark] .logo-tile {
  background: #ffffff;
  border-color: #e5e7eb;
}

.logo-tile img {
  max-width: 120px;
  max-height: 48px;
  object-fit: contain;
  filter: grayscale(10%);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid var(--border);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
  background: var(--surface);
  color: var(--text);
}

.button.icon {
  gap: 8px;
}

.button.icon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.button:hover {
  transform: translateY(-1px);
  border-color: var(--accent);
}

.button.primary {
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
  box-shadow: none;
}

.button.primary:hover {
  background: var(--accent-strong);
  border-color: var(--accent-strong);
}

.button.ghost {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

.contact-panel {
  background: var(--surface-strong);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  display: grid;
  gap: 14px;
}

[data-theme=light] .contact-panel {
  background: #f6f7fb;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.contact-actions .button {
  border-radius: 999px;
  padding: 12px 18px;
}

.contact-actions .button.ghost {
  background: rgba(31, 125, 216, 0.08);
  border-color: var(--accent);
}

.muted {
  color: var(--muted);
}

.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;
}

main section {
  padding: 80px 0;
}

div.section-head {
  margin-bottom: 16px;
}
div.section-head h2.customer-head {
  margin: 0px;
  font-size: clamp(1.5rem, 2.4vw, 1.5rem);
  color: var(--accent);
}

.section-head h2.centered {
  text-align: center;
  color: var(--accent);
}

[data-theme=dark] .section-head h2.centered {
  color: #ffffff;
}

#contact .section-head h2 {
  color: var(--text);
}

.section-head h2 {
  margin: 0 0 8px 0;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
}

.section-head p {
  margin: 8px 0 0 0;
  color: var(--muted);
  max-width: 860px;
}

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

.card, .panel {
  background: transparent;
  border: 1px solid var(--border);
  border-left: 4px solid var(--border);
  border-radius: 10px;
  padding: 16px;
  box-shadow: none;
}

.card--accent {
  border-left-color: var(--accent);
}

.card--success {
  border-left-color: #36b37e;
}

.card--danger {
  border-left-color: #e55353;
}

.success-card {
  border-left: 1px solid var(--border);
}

[data-theme=light] .success-card {
  border-left: 1px solid #e5e7eb;
}

.card h3, .panel h3 {
  margin-top: 0;
  margin-bottom: 10px;
}

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

.stat-card {
  border-radius: 14px;
  display: grid;
  gap: 6px;
  min-height: 100%;
  border-left: 1px solid var(--border);
}

.stat-value {
  margin: 0 0 6px 0;
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--accent-strong);
  line-height: 1.15;
}

.stat-label {
  margin: 0;
  color: var(--muted);
  max-width: 28ch;
}

ul.clean {
  list-style: disc outside;
  padding: 0 0 0 22px;
  margin: 0 0 16px 0;
  display: grid;
  gap: 10px;
}

ul.clean li {
  padding-left: 0;
  position: relative;
  border-left: none;
}

ul.clean.list-bulleted {
  list-style: disc outside;
  padding-left: 22px;
  gap: 8px;
  display: block;
}

ul.clean.list-bulleted li {
  line-height: 1.4;
  margin-bottom: 6px;
}

ul.clean.with-checks li {
  padding-left: 28px;
  list-style: none;
}

ul.clean.with-checks li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 0.9em;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 2px solid var(--accent);
  background: transparent;
}

[data-theme=light] ul.clean.with-checks li::before {
  border-color: var(--accent);
}

.stack {
  display: grid;
  gap: 16px;
}

.callout {
  background: transparent;
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: 10px;
  padding: 16px;
  box-shadow: none;
}

.section-label {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.content-narrow {
  max-width: 920px;
}

.list-tight {
  list-style: none;
  padding: 0;
  margin: 20px 0 !important;
  display: grid;
  gap: 8px;
}

.people-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  align-items: start;
}

.person-card img {
  width: 72px;
  height: 72px;
  border-radius: 100%;
  object-fit: cover;
  border: 1px solid var(--border);
}

.person-meta {
  display: grid;
  gap: 6px;
}

.person-card {
  border-left: 4px solid var(--accent);
}

.footer {
  border-top: 1px solid var(--border);
  padding: 28px 0;
  background: rgba(0, 0, 0, 0.2);
}

[data-theme=light] .footer {
  background: rgba(255, 255, 255, 0.85);
}

.footer .inner {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer a {
  color: var(--muted);
}

.footer a:hover {
  color: var(--accent);
}

.case-section {
  margin-top: 32px;
}

.case-section .section-head {
  margin-bottom: 0;
}

.case-section .section-head h2 {
  margin-bottom: 6px;
}

.case-section p {
  margin-top: 6px;
}

.case-bottom {
  margin: 32px auto 64px;
}

.case-bottom hr {
  border: 0;
  border-top: 1px solid #e0e0e0;
  margin-bottom: 20px;
}

.hero-subhead {
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 8px;
  color: inherit;
}

.external-link-icon {
  display: inline-block;
  margin-right: 6px;
  font-size: 0.95em;
  color: inherit;
}

.case-illustration {
  display: block;
  width: 100%;
  max-width: 760px;
  margin: 32px auto 0;
  border-radius: 14px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
}

@media (max-width: 900px) {
  .site-header .inner {
    gap: 12px;
  }
  nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 0 22px 12px;
    display: none;
    z-index: 25;
  }
  nav.is-open {
    display: block;
  }
  nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 12px;
    width: 100%;
  }
  nav ul li {
    width: 100%;
  }
  nav a {
    display: block;
    width: 100%;
    padding: 10px 0;
  }
  .menu-toggle {
    display: inline-flex;
  }
  .hero {
    padding: 80px 0;
  }
}

/*# sourceMappingURL=main.css.map */
