@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Manrope:wght@200..800&display=swap");

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --font-sans: "Inter", sans-serif;
  --font-heading: "Manrope", var(--font-sans);
  --bg: #010409;
  --bg-deep: #05070c;
  --bg-elevated: #0b1220;
  --bg-card: rgba(12, 18, 32, 0.78);
  --text: #f5f7fb;
  --text-muted: #9aa3b2;
  --text-soft: #c5cdd8;
  --accent: #2563eb;
  --accent-hover: #1d4ed8;
  --accent-soft: #60a5fa;
  --success: #34d399;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --radius: 12px;
  --radius-lg: 18px;
  --header-max: 1440px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html {
  font-family: var(--font-sans);
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: var(--font-sans);
  font-weight: 400;
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

:focus-visible {
  outline: 2px solid var(--accent-soft);
  outline-offset: 3px;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
.hero__title,
.about__title,
.about-card__title,
.services__title,
.service-card__title,
.products__title,
.capabilities__title,
.capability__title,
.industries__title,
.approach__title,
.why__title,
.page-hero__title,
.page-cta__title,
.contact__title,
.about-hero__title,
.contact-channel__title,
.contact-location__title,
.about-who__title,
.about-who-card h3,
.about-approach__title,
.about-approach-step h3,
.about-mv h3,
.about-why__title,
.about-why-item h3,
.policy-hero__title,
.policy-article h2,
.career-hero__title,
.career-hero-card h3,
.career-values__title,
.career-value h3,
.career-life__title,
.career-work__title,
.career-work-step h3,
.career-roles__title,
.career-role h3,
.career-hire__title,
.career-look-item h3,
.career-process-step h3,
.career-apply__title,
.svc-offer__title,
.svc-card h3,
.svc-industries__title,
.svc-industry h3 {
  font-family: var(--font-heading);
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 2000;
  isolation: isolate;
  background: #010409;
}

.site-header__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    ellipse 52% 140% at 62% 50%,
    rgba(37, 99, 235, 0.22) 0%,
    rgba(37, 99, 235, 0.06) 42%,
    transparent 72%
  );
}

.site-header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 14px 40px;
  min-height: 84px;
}

.site-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.site-logo img {
  display: block;
  height: 85px;
  width: auto;
  object-fit: contain;
}

.site-nav {
  margin-left: auto;
}

.site-nav__list {
  display: flex;
  align-items: center;
  gap: 32px;
}

.site-nav__item {
  position: relative;
}

.site-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1;
  white-space: nowrap;
  background: transparent;
  transition: opacity 0.2s ease;
}

.site-nav__link:hover,
.site-nav__link:focus-visible {
  opacity: 0.78;
}

.site-nav__link.is-active {
  color: #93c5fd;
  opacity: 1;
}

.site-nav__chevron {
  display: block;
  flex-shrink: 0;
  margin-top: 1px;
  transition: transform 0.2s ease;
}

.has-dropdown:hover .site-nav__chevron,
.has-dropdown.is-open .site-nav__chevron {
  transform: rotate(180deg);
}

.site-nav__dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  min-width: 220px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  background: #0b1220;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(6px);
  transition:
    opacity 0.18s ease,
    transform 0.18s ease,
    visibility 0.18s ease;
}

.has-dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 16px;
}

.has-dropdown:hover .site-nav__dropdown,
.has-dropdown:focus-within .site-nav__dropdown,
.has-dropdown.is-open .site-nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.site-nav__dropdown a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  color: #e8eef8;
  font-size: 14px;
  font-weight: 500;
}

.site-nav__dropdown a:hover,
.site-nav__dropdown a:focus-visible {
  background: rgba(37, 99, 235, 0.18);
  color: #ffffff;
}

.site-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-shrink: 0;
  padding: 12px 18px;
  border-radius: 8px;
  background: #ffffff;
  color: #000000;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1;
  white-space: nowrap;
  transition:
    background-color 0.2s ease,
    transform 0.2s ease;
}

.site-cta:hover,
.site-cta:focus-visible {
  background: #f1f3f8;
}

.site-cta svg {
  display: block;
}

.site-menu-btn {
  display: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.site-menu-btn span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: #ffffff;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.site-menu-btn.is-open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.site-menu-btn.is-open span:nth-child(2) {
  opacity: 0;
}

.site-menu-btn.is-open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

@media (max-width: 1100px) {
  .site-header__inner {
    padding: 12px 24px;
    min-height: 76px;
    gap: 16px;
  }

  .site-nav__list {
    gap: 22px;
  }

  .site-logo img {
    height: 48px;
  }
}

@media (max-width: 980px) {
  .site-menu-btn {
    display: flex;
    order: 2;
  }

  .site-cta {
    margin-left: auto;
    order: 1;
    padding: 10px 14px;
    font-size: 14px;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin: 0;
    padding: 8px 24px 20px;
    background: #010409;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition:
      opacity 0.2s ease,
      transform 0.2s ease,
      visibility 0.2s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .site-nav__link {
    width: 100%;
    justify-content: space-between;
    padding: 14px 0;
    font-size: 16px;
  }

  .site-nav__dropdown {
    position: static;
    left: auto;
    min-width: 0;
    margin: 0 0 8px;
    padding: 4px 0 4px 12px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    transform: none;
    display: none;
  }

  .has-dropdown:hover .site-nav__dropdown,
  .has-dropdown:focus-within .site-nav__dropdown {
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .has-dropdown.is-open .site-nav__dropdown {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .has-dropdown::after {
    display: none;
  }
}

@media (max-width: 520px) {
  .site-header__inner {
    padding: 10px 16px;
  }

  .site-cta {
    padding: 9px 12px;
    font-size: 13px;
  }

  .site-logo img {
    height: 42px;
  }
}

/* ========== hero ========== */

.hero {
  position: relative;
  isolation: isolate;
  padding: 56px 40px 96px;
  overflow-x: clip;
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

.hero__grid {
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(
    ellipse 70% 60% at 28% 42%,
    #000 20%,
    transparent 78%
  );
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
}

.hero__glow--left {
  width: 420px;
  height: 280px;
  left: -80px;
  top: 80px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.16), transparent 70%);
}

.hero__glow--right {
  width: 720px;
  height: 520px;
  right: -60px;
  top: 40px;
  background: radial-gradient(
    circle,
    rgba(37, 99, 235, 0.28),
    rgba(14, 165, 233, 0.08) 42%,
    transparent 72%
  );
  transition: transform 0.6s var(--ease);
}

.hero__inner {
  display: flex;
  justify-content: center;
  max-width: var(--header-max);
  margin: 0 auto;
}

.hero__copy {
  max-width: 760px;
  text-align: center;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  padding: 7px 14px 7px 8px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  background: rgba(8, 12, 22, 0.72);
  color: var(--text-soft);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  line-height: 1;
}

.hero__eyebrow-mark {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.18);
  color: var(--accent-soft);
}

.hero__title {
  margin-bottom: 18px;
  color: var(--text);
  font-size: clamp(2.15rem, 3.6vw, 3.55rem);
  font-weight: 700;
  letter-spacing: -0.038em;
  line-height: 1.08;
}

.hero__title-accent {
  color: var(--accent-soft);
  text-shadow: 0 0 28px rgba(37, 99, 235, 0.35);
}

.hero__desc {
  max-width: 52ch;
  margin: 0 auto 28px;
  color: var(--text-muted);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 36px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  transition:
    background-color 0.22s var(--ease),
    border-color 0.22s var(--ease),
    box-shadow 0.22s var(--ease),
    transform 0.22s var(--ease);
}

.btn__arrow {
  display: block;
  transition: transform 0.22s var(--ease);
}

.btn:hover .btn__arrow,
.btn:focus-visible .btn__arrow {
  transform: translateX(3px);
}

.btn--primary {
  background: #ffffff;
  color: #000000;
  box-shadow: 0 8px 28px rgba(37, 99, 235, 0.28);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  background: #f1f3f8;
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.42);
  transform: translateY(-1px);
}

.btn--ghost {
  border: 1px solid var(--border-strong);
  background: transparent;
  color: var(--text);
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.04);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  max-width: 560px;
  min-height: 54px;
  margin: 0 auto;
  padding-top: 8px;
}

.hero-stats__item {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.hero-stats__value {
  display: block;
  color: var(--text);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.hero-stats__label {
  display: block;
  margin-top: 4px;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.35;
}

.hero__visual {
  position: relative;
  min-height: 560px;
  padding: 24px 8px 28px 0;
  perspective: 1600px;
}

.hero-stage {
  position: relative;
  transform-style: preserve-3d;
  transform: rotateY(-7deg) rotateX(5deg);
  transform-origin: 58% 50%;
  transition: transform 0.45s var(--ease);
  will-change: transform;
}

.hero.is-ready .hero__copy,
.hero.is-ready .hero-stage {
  animation: hero-enter 0.8s var(--ease) both;
}

.hero.is-ready .hero-stage {
  animation-delay: 0.12s;
}

@keyframes hero-enter {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.hero.is-ready .hero-stage {
  animation-name: hero-stage-enter;
}

@keyframes hero-stage-enter {
  from {
    opacity: 0;
    transform: rotateY(-7deg) rotateX(5deg) translateY(18px);
  }
  to {
    opacity: 1;
    transform: rotateY(-7deg) rotateX(5deg);
  }
}

@media (max-width: 1180px) {
  .hero {
    padding: 40px 24px 72px;
  }

  .hero-stats {
    gap: 12px;
  }

  .hero-stats__value {
    font-size: 20px;
  }
}

@media (max-width: 980px) {
  .hero__copy {
    max-width: 640px;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 28px 16px 56px;
  }

  .hero__eyebrow {
    font-size: 10px;
    letter-spacing: 0.1em;
  }

  .hero__desc {
    font-size: 15px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
  }

  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero.is-ready .hero__copy,
  .hero.is-ready .hero-stage,
  .btn,
  .btn__arrow,
  .hero__glow--right {
    animation: none;
    transition: none;
  }

  .hero-stage {
    transform: none;
  }
}

/* ========== dashboard ========== */

.dash {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 168px minmax(0, 1fr);
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 18%),
    rgba(9, 13, 22, 0.92);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.03) inset,
    0 30px 80px rgba(0, 0, 0, 0.5),
    0 0 80px rgba(37, 99, 235, 0.12);
  backdrop-filter: blur(18px);
}

.dash__sidebar {
  display: flex;
  flex-direction: column;
  padding: 18px 12px;
  border-right: 1px solid var(--border);
  background: rgba(6, 10, 18, 0.55);
}

.dash__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 6px 22px;
}

.dash__mark {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--accent);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.dash__brand strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.dash__live {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--success);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.dash__live i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 8px var(--success);
  animation: live-pulse 2.4s ease-in-out infinite;
}

@keyframes live-pulse {
  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 8px var(--success);
  }
  50% {
    opacity: 0.55;
    box-shadow: 0 0 2px var(--success);
  }
}

.dash__nav ul {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.dash-nav__item {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 8px 10px;
  border-radius: 8px;
  color: var(--text-muted);
  font-size: 12.5px;
  font-weight: 500;
  text-align: left;
  transition:
    background-color 0.18s ease,
    color 0.18s ease;
}

.dash-nav__item svg {
  flex-shrink: 0;
  opacity: 0.85;
}

.dash-nav__item:hover,
.dash-nav__item:focus-visible {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}

.dash-nav__item.is-active {
  background: rgba(37, 99, 235, 0.22);
  color: #fff;
  box-shadow: 0 0 18px rgba(37, 99, 235, 0.18);
}

.dash__main {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
  padding: 16px 16px 18px;
}

.dash__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dash__top h2 {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.dash__top-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 12px;
}

.dash__avatar {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.25);
  color: var(--accent-soft);
  font-size: 10px;
  font-weight: 700;
}

.dash__metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.metric-card {
  padding: 12px 13px 11px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease,
    transform 0.2s ease;
}

.metric-card:hover,
.metric-card:focus-within {
  border-color: rgba(96, 165, 250, 0.28);
  background: rgba(37, 99, 235, 0.08);
  transform: translateY(-1px);
}

.metric-card__label {
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 500;
}

.metric-card__value {
  display: block;
  margin: 6px 0 8px;
  color: var(--text);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.metric-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.metric-card__change {
  color: var(--success);
  font-size: 11px;
  font-weight: 600;
}

.metric-card__spark {
  width: 64px;
  height: 22px;
}

.dash__panels {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(148px, 0.7fr);
  gap: 10px;
  flex: 1;
}

.dash-panel {
  min-width: 0;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.025);
}

.dash-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.dash-panel__head h3 {
  font-size: 12.5px;
  font-weight: 600;
}

.dash-panel__head span {
  color: var(--text-muted);
  font-size: 11px;
}

.sales-chart {
  position: relative;
  height: 168px;
}

.sales-chart__svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.sales-chart__tooltip {
  position: absolute;
  z-index: 2;
  min-width: 86px;
  padding: 8px 10px;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  background: rgba(8, 12, 22, 0.94);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
  pointer-events: none;
  transform: translate(-50%, calc(-100% - 12px));
}

.sales-chart__tooltip strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
}

.sales-chart__tooltip span {
  color: var(--text-muted);
  font-size: 11px;
}

.donut {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.donut__svg {
  width: 108px;
  height: 108px;
}

.donut__legend {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 100%;
}

.donut__legend li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  color: var(--text-muted);
  font-size: 11px;
}

.donut__swatch {
  width: 7px;
  height: 7px;
  margin-right: 6px;
  border-radius: 50%;
}

.donut__legend span {
  display: inline-flex;
  align-items: center;
  color: var(--text-soft);
}

.float-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 198px;
  padding: 12px 14px;
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  background: rgba(10, 14, 24, 0.72);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(16px);
  transition:
    transform 0.25s var(--ease),
    border-color 0.2s ease;
}

.float-card:hover {
  border-color: rgba(96, 165, 250, 0.3);
  transform: translateY(-2px) scale(1.015);
}

.float-card h3 {
  margin-bottom: 2px;
  font-size: 13px;
  font-weight: 600;
}

.float-card p {
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.4;
}

.float-card__icon {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 10px;
}

.float-card__icon--ai {
  background: rgba(37, 99, 235, 0.18);
  color: #93c5fd;
}

.float-card__icon--auto {
  background: rgba(52, 211, 153, 0.14);
  color: var(--success);
}

.float-card--ai {
  top: -18px;
  right: 18px;
  animation: float-y 5.6s ease-in-out infinite;
}

.float-card--auto {
  left: 118px;
  bottom: -22px;
  animation: float-y 6.4s ease-in-out infinite;
  animation-delay: -1.4s;
}

.float-card--growth {
  right: -12px;
  bottom: 54px;
  min-width: 220px;
  animation: float-y 7s ease-in-out infinite;
  animation-delay: -2.2s;
}

.float-card__growth-copy strong {
  color: var(--success);
  font-size: 13px;
}

.float-card__spark {
  width: 84px;
  height: 28px;
  flex-shrink: 0;
}

@keyframes float-y {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}

.auto-icon {
  width: 14px;
  height: 14px;
  border: 1.6px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.auto-icon.is-done {
  width: 16px;
  height: 16px;
  border: 0;
  animation: none;
  background: none;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1180px) {
  .dash {
    grid-template-columns: 148px minmax(0, 1fr);
    min-height: 480px;
  }

  .metric-card__value {
    font-size: 16px;
  }

  .float-card--growth {
    right: 0;
  }
}

@media (max-width: 980px) {
  .dash {
    grid-template-columns: 56px minmax(0, 1fr);
  }

  .dash__brand div,
  .dash-nav__item span {
    display: none;
  }

  .dash__brand {
    justify-content: center;
    margin: 0 0 18px;
  }

  .dash-nav__item {
    justify-content: center;
    padding: 10px 0;
  }

  .float-card--growth {
    display: none;
  }
}

@media (max-width: 640px) {
  .dash {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .dash__sidebar {
    display: none;
  }

  .dash__metrics {
    grid-template-columns: 1fr;
  }

  .dash__panels {
    grid-template-columns: 1fr;
  }

  .dash-panel--donut,
  .float-card--ai,
  .float-card--auto {
    display: none;
  }

  .sales-chart {
    height: 150px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .float-card,
  .float-card--ai,
  .float-card--auto,
  .float-card--growth,
  .metric-card,
  .auto-icon,
  .dash__live i {
    animation: none;
    transition: none;
  }
}

/* ========== about ========== */

.about {
  background: #ffffff;
  color: #0f172a;
}

.about__inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.38fr) minmax(0, 0.62fr);
  gap: 56px 64px;
  align-items: start;
  max-width: var(--header-max);
  margin: 0 auto;
  padding: 96px 40px;
}

.about__copy {
  max-width: 470px;
}

.about__eyebrow {
  margin-bottom: 16px;
  color: #4a6cf7;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.about__title {
  margin-bottom: 22px;
  color: #0b1220;
  font-size: clamp(1.7rem, 2.4vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.18;
}

.about__text {
  color: #4b5563;
  font-size: 15.5px;
  font-weight: 400;
  line-height: 1.7;
}

.about__text + .about__text {
  margin-top: 16px;
}

.about__cta {
  margin-top: 24px;
}

.about__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.about-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 340px;
  padding: 28px 24px 22px;
  overflow: hidden;
  border-radius: 16px;
  background: #0b1120;
}

.about-card__icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 28px;
  border-radius: 10px;
}

.about-card__icon--blue {
  background: rgba(37, 99, 235, 0.18);
  color: #93c5fd;
}

.about-card__icon--orange {
  background: rgba(249, 115, 22, 0.18);
  color: #fdba74;
}

.about-card__icon--green {
  background: rgba(16, 185, 129, 0.18);
  color: #6ee7b7;
}

.about-card__title {
  margin-bottom: 12px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.about-card__text {
  color: #cbd5e1;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.55;
}

.about-card__index {
  margin-top: auto;
  padding-top: 36px;
  color: rgba(148, 163, 184, 0.22);
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
}

@media (max-width: 1180px) {
  .about__inner {
    gap: 40px 36px;
    padding: 80px 24px;
  }

  .about-card {
    min-height: 300px;
    padding: 24px 20px 18px;
  }

  .about-card__title {
    font-size: 16px;
  }
}

@media (max-width: 900px) {
  .about__inner {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 64px 24px;
  }

  .about__copy {
    max-width: 640px;
  }

  .about__cards {
    gap: 14px;
  }

  .about-card {
    min-height: 280px;
  }
}

@media (max-width: 700px) {
  .about__inner {
    padding: 56px 16px;
  }

  .about__cards {
    grid-template-columns: 1fr;
  }

  .about-card {
    min-height: 240px;
  }
}

/* ========== services ========== */

.services {
  background: #ffffff;
  color: #111827;
}

.services__inner {
  max-width: var(--header-max);
  margin: 0 auto;
  padding: 48px 40px 112px;
}

.services__head {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  align-items: end;
  gap: 48px 64px;
  margin-bottom: 48px;
}

.services__eyebrow {
  margin-bottom: 16px;
  color: #4a6cf7;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.services__title {
  max-width: 16ch;
  color: #0b1220;
  font-size: clamp(1.7rem, 2.4vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.18;
}

.services__intro {
  max-width: 420px;
  margin-left: auto;
  color: #6b7280;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  text-align: right;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  background: #e5e7eb;
  gap: 1px;
}

.service-card {
  padding: 36px 32px 32px;
  background: #ffffff;
}

.service-card__top {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
}

.service-card__icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 8px;
}

.service-card__icon svg {
  width: 20px;
  height: 20px;
}

.service-card__icon--blue {
  background: #eff6ff;
  color: #2563eb;
}

.service-card__icon--amber {
  background: #fffbeb;
  color: #d97706;
}

.service-card__icon--royal {
  background: #e8f0ff;
  color: #3b82f6;
}

.service-card__icon--cyan {
  background: #e0f7fa;
  color: #0891b2;
}

.service-card__icon--green {
  background: #e8f8ef;
  color: #16a34a;
}

.service-card__icon--orange {
  background: #fff1e8;
  color: #ea580c;
}

.service-card__icon--teal {
  background: #e6f7f4;
  color: #0d9488;
}

.service-card__icon--indigo {
  background: #e8eeff;
  color: #1d4ed8;
}

.service-card__title {
  padding-top: 8px;
  color: #111827;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.service-card__text {
  color: #6b7280;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.65;
}

@media (max-width: 1180px) {
  .services__inner {
    padding: 40px 24px 88px;
  }

  .services__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-card {
    padding: 28px 24px;
  }
}

@media (max-width: 800px) {
  .services__head {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 16px;
    margin-bottom: 32px;
  }

  .services__title {
    max-width: none;
  }

  .services__intro {
    margin-left: 0;
    text-align: left;
  }
}

@media (max-width: 640px) {
  .services__inner {
    padding: 32px 16px 72px;
  }

  .services__grid {
    grid-template-columns: 1fr;
  }
}

/* ========== products ========== */

.products {
  background: #05070a;
  color: #ffffff;
}

.products__inner {
  display: grid;
  grid-template-columns: minmax(260px, 0.38fr) minmax(0, 0.62fr);
  align-items: center;
  gap: 56px 48px;
  max-width: var(--header-max);
  margin: 0 auto;
  padding: 100px 40px;
}

.products__copy {
  max-width: 420px;
}

.products__eyebrow {
  margin-bottom: 16px;
  color: #94a3b8;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.products__title {
  margin-bottom: 18px;
  color: #ffffff;
  font-size: clamp(1.7rem, 2.5vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.16;
}

.products__text {
  margin-bottom: 28px;
  color: #9ca3af;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
}

.products__ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 11px 18px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 10px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  transition:
    border-color 0.2s var(--ease),
    background-color 0.2s var(--ease),
    transform 0.2s var(--ease);
}

.products__ghost svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s var(--ease);
}

.products__ghost:hover,
.products__ghost:focus-visible {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.04);
}

.products__ghost:hover svg,
.products__ghost:focus-visible svg {
  transform: translateX(3px);
}

.product-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background:
    radial-gradient(
      ellipse 70% 90% at 88% 42%,
      rgba(37, 99, 235, 0.28),
      transparent 58%
    ),
    linear-gradient(90deg, #07090e 0%, #0a1220 72%, #10203a 100%);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

.product-card__body {
  display: grid;
  grid-template-columns: minmax(220px, 0.4fr) minmax(0, 0.6fr);
  min-height: 460px;
}

.product-card__info {
  padding: 36px 28px 56px 36px;
}

.product-card__logo {
  margin-bottom: 10px;
  color: #ffffff;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
}

.product-card__tagline {
  margin-bottom: 28px;
  color: #e5e7eb;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.45;
}

.product-card__features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-card__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #f3f4f6;
  font-size: 14.5px;
  font-weight: 500;
}

.product-card__check {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #2563eb;
  color: #ffffff;
}

.product-card__check svg {
  width: 12px;
  height: 12px;
  stroke-width: 2.6;
}

.product-card__visual {
  position: relative;
  min-height: 460px;
  overflow: hidden;
}

.product-card__visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}

.product-card__fade {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(7, 10, 16, 0.55) 55%,
    rgba(7, 10, 16, 0.88)
  );
  pointer-events: none;
}

.product-card__cta {
  position: absolute;
  right: 24px;
  bottom: 28px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 11px 18px;
  border-radius: 10px;
  background: #ffffff;
  color: #000000;
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1;
  box-shadow: 0 10px 28px rgba(37, 99, 235, 0.35);
  transition:
    background-color 0.2s var(--ease),
    transform 0.2s var(--ease);
}

.product-card__cta svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s var(--ease);
}

.product-card__cta:hover,
.product-card__cta:focus-visible {
  background: #f1f3f8;
  transform: translateY(-1px);
}

.product-card__cta:hover svg,
.product-card__cta:focus-visible svg {
  transform: translateX(3px);
}

.product-card__dots {
  position: absolute;
  left: 50%;
  bottom: 18px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  transform: translateX(-50%);
}

.product-card__dots button {
  width: 22px;
  height: 4px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.45);
}

.product-card__dots button.is-active {
  width: 28px;
  background: #2563eb;
}

@media (max-width: 1180px) {
  .products__inner {
    gap: 40px;
    padding: 80px 24px;
  }

  .product-card__info {
    padding: 28px 20px 52px 24px;
  }

  .product-card__logo {
    font-size: 24px;
  }
}

@media (max-width: 900px) {
  .products__inner {
    grid-template-columns: 1fr;
    padding: 64px 24px 80px;
  }

  .products__copy {
    max-width: 560px;
  }

  .product-card__body {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .product-card__visual {
    min-height: 320px;
  }

  .product-card__info {
    padding-bottom: 28px;
  }
}

@media (max-width: 640px) {
  .products__inner {
    padding: 56px 16px 72px;
  }

  .product-card {
    border-radius: 20px;
  }

  .product-card__visual {
    min-height: 260px;
  }

  .product-card__cta {
    right: 16px;
    bottom: 22px;
  }
}

/* ========== capabilities ========== */

.capabilities {
  background: #ffffff;
  color: #0f172a;
}

.capabilities__inner {
  display: grid;
  /* grid-template-columns: minmax(240px, 0.3fr) minmax(0, 0.7fr); */
  align-items: start;
  gap: 48px 40px;
  max-width: var(--header-max);
  margin: 0 auto;
  padding: 96px 40px 72px;
}
/* 
.capabilities__copy {
  max-width: 360px;
} */

.capabilities__eyebrow {
  margin-bottom: 16px;
  color: #4a6cf7;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.capabilities__title {
  margin-bottom: 16px;
  color: #0b1220;
  font-size: clamp(1.7rem, 2.4vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.18;
}

.capabilities__text {
  margin-bottom: 24px;
  color: #6b7280;
  font-size: 15.5px;
  font-weight: 400;
  line-height: 1.7;
}

.capabilities__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 11px 18px;
  border: 1.5px solid #060d28;
  border-radius: 10px;
  color: #000000;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  transition:
    background-color 0.2s var(--ease),
    color 0.2s var(--ease),
    transform 0.2s var(--ease);
}

.capabilities__cta svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s var(--ease);
}

.capabilities__cta:hover,
.capabilities__cta:focus-visible {
  background: #4a6cf7;
  color: #ffffff;
}

.capabilities__cta:hover svg,
.capabilities__cta:focus-visible svg {
  transform: translateX(3px);
}

.capabilities__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 20px;
  padding-top: 28px;
}

.capabilities__grid::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 5px;
  height: 1px;
  background: #e5e7eb;
}

.capability {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 300px;
  text-align: center;
}

.capability__icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #ffffff;
  color: #334155;
}

.capability__icon svg {
  width: 20px;
  height: 20px;
}

.capability__title {
  margin-bottom: 8px;
  color: #0b1220;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.capability__text {
  max-width: 22ch;
  color: #6b7280;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.55;
}

.capability__rail {
  flex: 1 1 auto;
  width: 1px;
  min-height: 48px;
  margin-top: 18px;
  background: #e5e7eb;
}

.capability__node {
  z-index: 1;
  flex-shrink: 0;
  width: 11px;
  height: 11px;
  margin-bottom: 0;
  border: 2px solid currentColor;
  border-radius: 50%;
  background: #ffffff;
  transform: translateY(5px);
}

.capability__node--orange {
  color: #fb923c;
}
.capability__node--blue {
  color: #60a5fa;
}
.capability__node--green {
  color: #4ade80;
}
.capability__node--gold {
  color: #fbbf24;
}
.capability__node--sky {
  color: #38bdf8;
}
.capability__node--royal {
  color: #3b82f6;
}

@media (max-width: 1180px) {
  .capabilities__inner {
    gap: 36px 24px;
    padding: 80px 24px 56px;
  }

  .capabilities__grid {
    gap: 14px;
  }

  .capability__title {
    font-size: 13.5px;
  }

  .capability__text {
    font-size: 12px;
  }
}

@media (max-width: 900px) {
  .capabilities__inner {
    grid-template-columns: 1fr;
    padding: 64px 24px 48px;
  }

  .capabilities__copy {
    max-width: 560px;
  }

  .capabilities__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding-top: 8px;
  }

  .capability {
    min-height: 260px;
  }
}

@media (max-width: 640px) {
  .capabilities__inner {
    padding: 56px 16px 40px;
  }

  .capabilities__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .capabilities__grid::after {
    display: none;
  }

  .capability {
    min-height: 0;
    padding-bottom: 8px;
  }

  .capability__rail,
  .capability__node {
    display: none;
  }
}

/* ========== industries ========== */

.industries {
  position: relative;
  isolation: isolate;
  background: #05070c;
  color: #ffffff;
}

.industries__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    ellipse 55% 80% at 12% 20%,
    rgba(74, 144, 226, 0.16),
    transparent 62%
  );
}

.industries__inner {
  position: relative;
  max-width: var(--header-max);
  margin: 0 auto;
  padding: 88px 40px 36px;
}

.industries__row {
  display: flex;
  align-items: center;
  gap: 0;
}

.industries__copy {
  flex: 0 0 220px;
  padding-right: 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.industries__eyebrow {
  margin-bottom: 14px;
  color: #93c5fd;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.industries__title {
  max-width: 11ch;
  color: #ffffff;
  font-size: clamp(1.55rem, 2.1vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.industries__list {
  display: flex;
  flex: 1;
  min-width: 0;
}

.industry-item {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 0;
  padding: 8px 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.industry-item:last-child {
  border-right: 0;
}

.industry-item__icon {
  display: grid;
  place-items: center;
  color: #bfdbfe;
}

.industry-item__icon svg {
  width: 26px;
  height: 26px;
}

.industry-item h3 {
  max-width: 10ch;
  color: #e5eef8;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.35;
}

.industries__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: max-content;
  min-height: 46px;
  margin: 36px auto 0;
  padding: 11px 22px;
  border: 1px solid rgba(96, 165, 250, 0.45);
  border-radius: 10px;
  background: rgba(8, 12, 22, 0.72);
  color: #ffffff;
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1;
  transition:
    border-color 0.2s var(--ease),
    background-color 0.2s var(--ease),
    transform 0.2s var(--ease);
}

.industries__cta svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s var(--ease);
}

.industries__cta:hover,
.industries__cta:focus-visible {
  border-color: rgba(147, 197, 253, 0.8);
  background: rgba(37, 99, 235, 0.16);
}

.industries__cta:hover svg,
.industries__cta:focus-visible svg {
  transform: translateX(3px);
}

@media (max-width: 1180px) {
  .industries__inner {
    padding: 72px 24px 28px;
  }

  .industries__copy {
    flex-basis: 180px;
    padding-right: 18px;
  }

  .industry-item {
    padding: 8px 6px;
  }

  .industry-item h3 {
    font-size: 11px;
  }
}

@media (max-width: 900px) {
  .industries__row {
    flex-direction: column;
    align-items: stretch;
    gap: 28px;
  }

  .industries__copy {
    flex-basis: auto;
    padding-right: 0;
    border-right: 0;
  }

  .industries__title {
    max-width: none;
  }

  .industries__list {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .industry-item {
    padding: 18px 10px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .industry-item:nth-child(5n) {
    border-right: 0;
  }

  .industry-item:nth-child(n + 6) {
    border-bottom: 0;
  }
}

@media (max-width: 640px) {
  .industries__inner {
    padding: 56px 16px 20px;
  }

  .industries__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .industry-item:nth-child(5n) {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
  }

  .industry-item:nth-child(2n) {
    border-right: 0;
  }

  .industry-item:nth-child(n + 6) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .industry-item:nth-last-child(-n + 2) {
    border-bottom: 0;
  }
}

/* ========== approach ========== */

.approach {
  background: #f7f8fb;
  color: #0f172a;
}

.approach__inner {
  display: grid;
  /* grid-template-columns: minmax(220px, 0.24fr) minmax(0, 0.76fr); */
  align-items: center;
  gap: 36px 28px;
  max-width: var(--header-max);
  margin: 0 auto;
  padding: 88px 40px;
}

/* .approach__copy {
  max-width: 280px;
} */

.approach__eyebrow {
  margin-bottom: 14px;
  color: #4a6cf7;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.approach__title {
  margin-bottom: 14px;
  color: #0b1220;
  font-size: clamp(1.55rem, 2.2vw, 2.05rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.18;
}

.approach__text {
  color: #6b7280;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.65;
}

.approach__steps {
  display: grid;
  grid-template-columns:
    minmax(0, 1fr) auto
    minmax(0, 1fr) auto
    minmax(0, 1fr) auto
    minmax(0, 1fr) auto
    minmax(0, 1fr) auto
    minmax(0, 1fr);
  align-items: stretch;
  list-style: none;
}

.approach-step {
  display: flex;
  flex-direction: column;
  min-height: 220px;
  padding: 20px 18px 22px;
  border: 1px solid #e8ecf2;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

.approach-step__icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 16px;
  border: 1.5px solid #4a6cf7;
  border-radius: 8px;
  color: #4a6cf7;
  background: #ffffff;
}

.approach-step__icon svg {
  width: 18px;
  height: 18px;
}

.approach-step h3 {
  margin-bottom: 8px;
  color: #0b1220;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.approach-step p {
  color: #6b7280;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.55;
}

.approach-step__arrow {
  display: grid;
  place-items: center;
  padding: 0 4px;
  color: #93c5fd;
}

.approach-step__arrow svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 1180px) {
  .approach__inner {
    gap: 28px 18px;
    padding: 72px 24px;
  }

  .approach-step {
    min-height: 210px;
    padding: 16px 14px 18px;
  }

  .approach-step h3 {
    font-size: 14px;
  }

  .approach-step p {
    font-size: 12px;
  }
}

@media (max-width: 900px) {
  .approach__inner {
    grid-template-columns: 1fr;
    padding: 64px 24px;
  }

  .approach__copy {
    max-width: 560px;
  }

  .approach__steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }

  .approach-step__arrow {
    display: none;
  }

  .approach-step {
    min-height: 0;
  }
}

@media (max-width: 640px) {
  .approach__inner {
    padding: 56px 16px;
  }

  .approach__steps {
    grid-template-columns: 1fr;
  }
}

/* ========== why ========== */

.why {
  position: relative;
  isolation: isolate;
  background: #05070c;
  color: #ffffff;
}

.why__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      ellipse 42% 70% at 8% 30%,
      rgba(14, 165, 233, 0.14),
      transparent 62%
    ),
    radial-gradient(
      ellipse 50% 80% at 72% 40%,
      rgba(37, 99, 235, 0.1),
      transparent 70%
    );
}

.why__inner {
  position: relative;
  display: grid;
  /* grid-template-columns: minmax(240px, 0.28fr) minmax(0, 0.72fr); */
  align-items: start;
  gap: 48px 40px;
  max-width: var(--header-max);
  margin: 0 auto;
  padding: 96px 40px;
}

/* .why__copy {
  max-width: 320px;
} */

.why__eyebrow {
  margin-bottom: 16px;
  color: #60a5fa;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.why__title {
  margin-bottom: 16px;
  color: #ffffff;
  font-size: clamp(1.7rem, 2.4vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.18;
}

.why__text {
  color: #a1a1aa;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
}

.why__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 24px 20px;
}

.why-item {
  min-width: 0;
}

.why-item__icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  color: #ffffff;
}

.why-item__icon svg {
  width: 28px;
  height: 28px;
}

.why-item__icon--amber {
  color: #fbbf24;
  filter: drop-shadow(0 0 14px rgba(251, 191, 36, 0.7));
}

.why-item__icon--teal {
  color: #5eead4;
  filter: drop-shadow(0 0 14px rgba(45, 212, 191, 0.7));
}

.why-item__icon--blue {
  color: #93c5fd;
  filter: drop-shadow(0 0 14px rgba(96, 165, 250, 0.7));
}

.why-item__icon--orange {
  color: #fb923c;
  filter: drop-shadow(0 0 14px rgba(251, 146, 60, 0.7));
}

.why-item__icon--green {
  color: #86efac;
  filter: drop-shadow(0 0 14px rgba(74, 222, 128, 0.65));
}

.why-item__icon--sky {
  color: #7dd3fc;
  filter: drop-shadow(0 0 14px rgba(56, 189, 248, 0.7));
}

.why-item h3 {
  margin-bottom: 10px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.why-item p {
  color: #a1a1aa;
  font-size: 13.5px;
  font-weight: 400;
  line-height: 1.6;
}

@media (max-width: 1180px) {
  .why__inner {
    gap: 36px 24px;
    padding: 80px 24px;
  }

  .why__grid {
    gap: 20px 14px;
  }

  .why-item h3 {
    font-size: 14px;
  }

  .why-item p {
    font-size: 12.5px;
  }
}

@media (max-width: 900px) {
  .why__inner {
    grid-template-columns: 1fr;
    padding: 64px 24px;
  }

  .why__copy {
    max-width: 560px;
  }

  .why__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px 20px;
  }
}

@media (max-width: 640px) {
  .why__inner {
    padding: 56px 16px;
  }

  .why__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* ========== footer ========== */

.site-footer {
  background: #05070a;
  color: #e5e7eb;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer__inner {
  max-width: var(--header-max);
  margin: 0 auto;
  padding: 40px 0px 40px;
}

.site-footer__grid {
  display: grid;
  grid-template-columns:
    minmax(220px, 1.4fr) repeat(3, minmax(110px, 0.7fr))
    minmax(130px, 0.75fr) minmax(220px, 1.1fr);
  gap: 36px 28px;
  align-items: start;
  padding-bottom: 48px;
}

.footer-brand__logo {
  display: inline-flex;
  margin-bottom: 18px;
}

.footer-brand__logo img {
  display: block;
  height: 80px;
  width: auto;
  object-fit: contain;
}

.footer-brand__motto {
  max-width: 28ch;
  margin-bottom: 12px;
  color: #f3f4f6;
  font-size: 14.5px;
  font-weight: 500;
  line-height: 1.55;
}

.footer-brand__lines {
  color: #9ca3af;
  font-size: 13px;
  line-height: 1.55;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.footer-social a {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #1a2030;
  color: #ffffff;
  transition:
    background-color 0.2s var(--ease),
    color 0.2s var(--ease);
}

.footer-social a svg {
  width: 14px;
  height: 14px;
}

.footer-social a:hover,
.footer-social a:focus-visible {
  background: #2563eb;
  color: #ffffff;
}

.footer-nav h3,
.footer-contact h3 {
  margin-bottom: 16px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.footer-nav ul,
.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav a {
  color: #cfd6e4;
  font-size: 14px;
  font-weight: 400;
  transition: color 0.2s var(--ease);
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: #60a5fa;
}

.footer-contact {
  padding-left: 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  text-align: left;
}

.footer-emails {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-email span {
  display: block;
  margin-bottom: 4px;
  color: #9aa3b2;
  font-size: 13px;
  font-weight: 400;
}

.footer-email a {
  color: #e8edf5;
  font-size: 14.5px;
  font-weight: 700;
  line-height: 1.4;
  word-break: break-word;
}

.footer-email a:hover,
.footer-email a:focus-visible {
  color: #93c5fd;
}

.site-footer__copy {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #9ca3af;
  font-size: 13px;
  text-align: center;
}

@media (max-width: 1180px) {
  .site-footer__inner {
    padding: 64px 24px 24px;
  }

  .site-footer__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px 24px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-contact {
    padding-left: 0;
    border-left: 0;
  }
}

@media (max-width: 700px) {
  .site-footer__inner {
    padding: 56px 16px 20px;
  }

  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand,
  .footer-contact {
    grid-column: 1 / -1;
  }
}

/* ========== about hero ========== */

.about-hero {
  background: #f7f8fb;
  color: #0b1220;
}

.about-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.4fr) minmax(0, 0.6fr);
  gap: 48px 72px;
  align-items: center;
  max-width: var(--header-max);
  margin: 0 auto;
  padding: 72px 40px 96px;
}

.about-hero__copy {
  max-width: 460px;
}

.about-hero__eyebrow {
  margin-bottom: 20px;
  color: #0b1220;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.about-hero__title {
  margin-bottom: 22px;
  color: #0b1220;
  font-size: clamp(2.05rem, 3.5vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.12;
}

.about-hero__desc {
  max-width: 40ch;
  margin-bottom: 32px;
  color: #4b5563;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
}

.about-hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 14px 22px;
  border-radius: 4px;
  background: #0b1220;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(11, 18, 32, 0.16);
  transition:
    background-color 0.2s var(--ease),
    transform 0.2s var(--ease),
    box-shadow 0.2s var(--ease);
}

.about-hero__cta svg {
  display: block;
}

.about-hero__cta:hover,
.about-hero__cta:focus-visible {
  background: #000000;
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(11, 18, 32, 0.22);
}

.about-hero__media {
  min-width: 0;
}

.about-hero__media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center;
  border-radius: 18px;
}

@media (max-width: 1180px) {
  .about-hero__inner {
    gap: 36px 40px;
    padding: 56px 24px 80px;
  }

  .about-hero__title {
    font-size: clamp(1.85rem, 3vw, 2.6rem);
  }
}

@media (max-width: 900px) {
  .about-hero__inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 48px 24px 64px;
  }

  .about-hero__copy {
    max-width: 640px;
  }

  .about-hero__media img {
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 640px) {
  .about-hero__inner {
    padding: 40px 16px 56px;
  }

  .about-hero__cta {
    width: 100%;
  }
}

/* ========== about who ========== */

.about-who {
  background: #f9fafb;
  color: #0b1220;
}

.about-who__inner {
  max-width: var(--header-max);
  margin: 0 auto;
  padding: 88px 40px;
}

.about-who__top {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
  gap: 48px 56px;
  align-items: start;
  margin-bottom: 56px;
}

.about-who__copy {
  padding-right: 28px;
  border-right: 1px solid #e5e7eb;
}

.about-who__eyebrow {
  margin-bottom: 16px;
  color: #2563eb;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.about-who__title {
  margin-bottom: 20px;
  color: #0b1220;
  font-size: clamp(1.85rem, 3vw, 2.7rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.about-who__text {
  max-width: 42ch;
  color: #4b5563;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
}

.about-who__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px 28px;
}

.about-who-card__icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  border-radius: 12px;
  background: #eff6ff;
  color: #2563eb;
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.08);
}

.about-who-card__icon svg {
  width: 22px;
  height: 22px;
}

.about-who-card h3 {
  margin-bottom: 8px;
  color: #0b1220;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.about-who-card p {
  color: #6b7280;
  font-size: 14px;
  line-height: 1.6;
}

.about-who-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 22px 12px;
  border: 1px solid #eef2f7;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
}

.about-who-stat {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 22px;
}

.about-who-stat + .about-who-stat {
  border-left: 1px solid #e5e7eb;
}

.about-who-stat__icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 12px;
  background: #eff6ff;
  color: #2563eb;
}

.about-who-stat__icon svg {
  width: 20px;
  height: 20px;
}

.about-who-stat strong {
  display: block;
  color: #2563eb;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.about-who-stat strong.is-plain {
  color: #0b1220;
}

.about-who-stat span {
  display: block;
  color: #6b7280;
  font-size: 13px;
  line-height: 1.4;
}

@media (max-width: 1180px) {
  .about-who__inner {
    padding: 72px 24px;
  }

  .about-who__top {
    gap: 36px 32px;
    margin-bottom: 40px;
  }
}

@media (max-width: 900px) {
  .about-who__top {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .about-who__copy {
    padding-right: 0;
    border-right: 0;
    padding-bottom: 28px;
    border-bottom: 1px solid #e5e7eb;
  }

  .about-who-stats {
    grid-template-columns: 1fr 1fr;
    padding: 12px;
  }

  .about-who-stat + .about-who-stat {
    border-left: 0;
  }

  .about-who-stat:nth-child(odd) {
    border-right: 1px solid #e5e7eb;
  }

  .about-who-stat:nth-child(-n + 2) {
    border-bottom: 1px solid #e5e7eb;
  }
}

@media (max-width: 640px) {
  .about-who__inner {
    padding: 56px 16px;
  }

  .about-who__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about-who-stats {
    grid-template-columns: 1fr;
  }

  .about-who-stat:nth-child(odd) {
    border-right: 0;
  }

  .about-who-stat:nth-child(-n + 2) {
    border-bottom: 0;
  }

  .about-who-stat + .about-who-stat {
    border-top: 1px solid #e5e7eb;
  }
}

/* ========== about approach ========== */

.about-approach {
  background: #ffffff;
  color: #0b1220;
}

.about-approach__inner {
  max-width: var(--header-max);
  margin: 0 auto;
  padding: 96px 40px;
}

.about-approach__head {
  margin-bottom: 56px;
}

.about-approach__eyebrow {
  margin-bottom: 14px;
  color: #2563eb;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.about-approach__title {
  max-width: 18ch;
  color: #0b1220;
  font-size: clamp(1.85rem, 3vw, 2.7rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.about-approach__steps {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0 16px;
  margin-bottom: 64px;
}

.about-approach-step {
  position: relative;
  text-align: center;
  padding: 0 8px;
}

.about-approach-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 28px;
  left: calc(50% + 30px);
  width: calc(100% - 60px);
  border-top: 2px dotted #d1d5db;
  pointer-events: none;
}

.about-approach-step:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 100%;
  z-index: 1;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2563eb;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.about-approach-step__icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: #eff6ff;
  color: #2563eb;
}

.about-approach-step__icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.6;
}

.about-approach-step__num {
  display: block;
  margin-bottom: 6px;
  color: #2563eb;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.about-approach-step h3 {
  margin-bottom: 8px;
  color: #0b1220;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.about-approach-step p {
  color: #6b7280;
  font-size: 13.5px;
  line-height: 1.55;
}

.about-mv {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 36px 40px;
  border-radius: 18px;
  background: #f3f4f6;
}

.about-mv__item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 8px 8px 8px 0;
}

.about-mv__item + .about-mv__item {
  padding-left: 36px;
  border-left: 1px solid #e5e7eb;
}

.about-mv__icon {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #eff6ff;
  color: #2563eb;
}

.about-mv__icon svg {
  width: 32px;
  height: 32px;
  stroke-width: 1.6;
}

.about-mv h3 {
  margin-bottom: 8px;
  color: #0b1220;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.about-mv p {
  color: #6b7280;
  font-size: 15px;
  line-height: 1.65;
}

@media (max-width: 1180px) {
  .about-approach__inner {
    padding: 80px 24px;
  }

  .about-mv {
    padding: 28px 24px;
  }
}

@media (max-width: 980px) {
  .about-approach__steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 36px 16px;
  }

  .about-approach-step:nth-child(3)::before,
  .about-approach-step:nth-child(3)::after,
  .about-approach-step:last-child::before,
  .about-approach-step:last-child::after {
    display: none;
  }
}

@media (max-width: 700px) {
  .about-approach__inner {
    padding: 64px 16px;
  }

  .about-approach__steps {
    grid-template-columns: 1fr 1fr;
    gap: 32px 12px;
    margin-bottom: 40px;
  }

  .about-approach-step::before,
  .about-approach-step::after {
    display: none;
  }

  .about-mv {
    grid-template-columns: 1fr;
    padding: 24px 20px;
  }

  .about-mv__item + .about-mv__item {
    padding-left: 0;
    padding-top: 24px;
    border-left: 0;
    border-top: 1px solid #e5e7eb;
  }
}

/* ========== about why ========== */

.about-why {
  background: #f9fafb;
  color: #0b1220;
}

.about-why__inner {
  max-width: var(--header-max);
  margin: 0 auto;
  padding: 96px 40px;
}

.about-why__head {
  margin-bottom: 56px;
}

.about-why__eyebrow {
  margin-bottom: 14px;
  color: #2563eb;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.about-why__title {
  max-width: 18ch;
  color: #0b1220;
  font-size: clamp(1.85rem, 3vw, 2.7rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.about-why__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.about-why-item {
  position: relative;
  text-align: center;
  padding: 8px 18px;
}

.about-why-item + .about-why-item::before {
  content: "";
  position: absolute;
  top: 12%;
  bottom: 12%;
  left: 0;
  width: 1px;
  background: #e5e7eb;
}

.about-why-item__icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin: 0 auto 18px;
  color: #2563eb;
}

.about-why-item__icon svg {
  width: 32px;
  height: 32px;
  stroke-width: 1.6;
}

.about-why-item h3 {
  margin-bottom: 10px;
  color: #0b1220;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.about-why-item p {
  color: #6b7280;
  font-size: 14px;
  line-height: 1.6;
}

@media (max-width: 1180px) {
  .about-why__inner {
    padding: 80px 24px;
  }

  .about-why__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 36px 0;
  }

  .about-why-item:nth-child(3n + 1)::before {
    display: none;
  }

  .about-why-item + .about-why-item::before {
    top: 0;
    bottom: 0;
  }
}

@media (max-width: 700px) {
  .about-why__inner {
    padding: 64px 16px;
  }

  .about-why__grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px 0;
  }

  .about-why-item + .about-why-item::before,
  .about-why-item:nth-child(3n + 1)::before {
    display: block;
  }

  .about-why-item:nth-child(odd)::before {
    display: none;
  }
}

.page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 72px 40px 88px;
  background: #010409;
  color: #ffffff;
}

.page-hero__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      ellipse 48% 80% at 18% 20%,
      rgba(37, 99, 235, 0.22),
      transparent 62%
    ),
    radial-gradient(
      ellipse 40% 70% at 82% 70%,
      rgba(14, 165, 233, 0.12),
      transparent 68%
    );
}

.page-hero__inner {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.page-hero__eyebrow {
  display: inline-flex;
  margin-bottom: 18px;
  color: #93c5fd;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.page-hero__title {
  margin-bottom: 18px;
  color: #ffffff;
  font-size: clamp(2rem, 3.4vw, 3.1rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.12;
}

.page-hero__desc {
  max-width: 58ch;
  margin: 0 auto;
  color: #9aa3b2;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
}

/* ========== about extras ========== */

.about-stats {
  background: #ffffff;
  border-top: 1px solid #eef2f7;
}

.about-stats__inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  max-width: var(--header-max);
  margin: 0 auto;
  padding: 0 40px 88px;
}

.about-stat {
  padding: 22px 20px;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  background: #f8fafc;
}

.about-stat strong {
  display: block;
  margin-bottom: 6px;
  color: #0b1220;
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.about-stat span {
  color: #6b7280;
  font-size: 14px;
  line-height: 1.4;
}

.about-mission {
  background: #f7f8fb;
}

.about-mission__inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  max-width: var(--header-max);
  margin: 0 auto;
  padding: 88px 40px;
}

.about-mission__card {
  padding: 28px 24px;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  background: #ffffff;
}

.about-mission__card h3 {
  margin-bottom: 10px;
  color: #0b1220;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.about-mission__card p {
  color: #6b7280;
  font-size: 15px;
  line-height: 1.65;
}

/* ========== page cta ========== */

.page-cta {
  background: #0b1220;
  color: #ffffff;
}

.page-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: var(--header-max);
  margin: 0 auto;
  padding: 64px 40px;
}

.page-cta__title {
  margin-bottom: 8px;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.035em;
}

.page-cta__text {
  color: #9aa3b2;
  font-size: 15px;
  line-height: 1.6;
}

/* ========== contact channels ========== */

.contact-channels {
  background: #ffffff;
  color: #0b1220;
}

.contact-channels__inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  max-width: var(--header-max);
  margin: 0 auto;
  padding: 56px 40px 48px;
}

.contact-channel {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 220px;
  padding: 28px 24px 24px;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  background: #ffffff;
}

.contact-channel__icon {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin-bottom: 22px;
  color: #0b1220;
}

.contact-channel__icon svg {
  width: 22px;
  height: 22px;
}

.contact-channel__title {
  margin-bottom: 12px;
  color: #0b1220;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.contact-channel__text {
  color: #6b7280;
  font-size: 14.5px;
  font-weight: 400;
  line-height: 1.55;
}

.contact-channel__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 22px;
  color: #0b1220;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  transition: opacity 0.2s var(--ease);
}

.contact-channel__cta svg {
  display: block;
}

.contact-channel__cta:hover,
.contact-channel__cta:focus-visible {
  opacity: 0.7;
}

@media (max-width: 1180px) {
  .contact-channels__inner {
    padding: 48px 24px 40px;
  }
}

@media (max-width: 900px) {
  .contact-channels__inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .contact-channels__inner {
    grid-template-columns: 1fr;
    padding: 40px 16px 32px;
  }
}

/* ========== contact ========== */

.contact {
  background: #f3f4f6;
  color: #0f172a;
}

.contact__inner {
  max-width: var(--header-max);
  margin: 0 auto;
  padding: 24px 40px 96px;
}

.contact__panel {
  display: grid;
  grid-template-columns: minmax(240px, 0.42fr) minmax(0, 0.58fr);
  gap: 40px 56px;
  align-items: start;
  padding: 48px 44px;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  background: #f7f8fa;
}

.contact__copy {
  max-width: 420px;
  padding-top: 8px;
}

.contact__eyebrow {
  margin-bottom: 14px;
  color: #4b5563;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.contact__title {
  margin-bottom: 16px;
  color: #0b1220;
  font-size: clamp(1.9rem, 2.8vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.contact__rule {
  display: block;
  width: 48px;
  height: 1px;
  margin-bottom: 18px;
  background: #d1d5db;
}

.contact__intro {
  margin-bottom: 36px;
  color: #6b7280;
  font-size: 15.5px;
  line-height: 1.7;
}

.contact-meta {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.contact-meta__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-meta__icon {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  margin-top: 2px;
  color: #0b1220;
}

.contact-meta__icon svg {
  width: 20px;
  height: 20px;
}

.contact-meta__item strong {
  display: block;
  margin-bottom: 4px;
  color: #0b1220;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.contact-meta__item span {
  display: block;
  color: #6b7280;
  font-size: 14px;
  line-height: 1.5;
}

.contact-form-card {
  padding: 28px 28px 32px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #ffffff;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 16px;
}

.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-form__field--full {
  grid-column: 1 / -1;
}

.contact-form label {
  color: #0b1220;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
}

.contact-form label span {
  color: #0b1220;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #e5e7eb;
  border-radius: 4px;
  background: #ffffff;
  color: #0b1220;
  font: inherit;
  font-size: 14.5px;
  outline: none;
  transition:
    border-color 0.2s var(--ease),
    box-shadow 0.2s var(--ease);
}

.contact-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2.5 4.5L6 8L9.5 4.5' stroke='%236b7280' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.contact-form textarea {
  min-height: 132px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #9ca3af;
  box-shadow: 0 0 0 3px rgba(15, 23, 42, 0.06);
}

.contact-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  grid-column: 1 / -1;
  justify-self: start;
  min-height: 46px;
  margin-top: 6px;
  padding: 12px 20px;
  border-radius: 4px;
  background: #0b1220;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 8px 20px rgba(11, 18, 32, 0.14);
  transition:
    background-color 0.2s var(--ease),
    transform 0.2s var(--ease);
}

.contact-form__submit svg {
  display: block;
}

.contact-form__submit:hover,
.contact-form__submit:focus-visible {
  background: #000000;
  transform: translateY(-1px);
}

.contact-success {
  display: none;
  padding: 28px 8px;
}

.contact.is-sent .contact-form {
  display: none;
}

.contact.is-sent .contact-success {
  display: block;
}

.contact-success h3 {
  margin-bottom: 8px;
  color: #0b1220;
  font-size: 20px;
}

.contact-success p {
  color: #4b5563;
  font-size: 15px;
  line-height: 1.6;
}

/* ========== contact location ========== */

.contact-location {
  position: relative;
  z-index: 0;
  background: #f8f8f8;
  color: #0b1220;
  border-top: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
}

.contact-location__inner {
  display: grid;
  grid-template-columns: minmax(240px, 0.35fr) minmax(0, 0.65fr);
  gap: 48px 64px;
  align-items: center;
  max-width: var(--header-max);
  margin: 0 auto;
  padding: 88px 40px;
}

.contact-location__copy {
  max-width: 360px;
}

.contact-location__eyebrow {
  margin-bottom: 14px;
  color: #9ca3af;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.contact-location__title {
  margin-bottom: 16px;
  color: #0b1220;
  font-size: clamp(1.9rem, 2.8vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.contact-location__rule {
  display: block;
  width: 48px;
  height: 1px;
  margin-bottom: 28px;
  background: #d1d5db;
}

.contact-location__list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.contact-location__list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-location__icon {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  color: #6b7280;
}

.contact-location__icon svg {
  width: 18px;
  height: 18px;
}

.contact-location__list p,
.contact-location__list a {
  color: #4b5563;
  font-size: 15px;
  line-height: 1.65;
}

.contact-location__list a:hover,
.contact-location__list a:focus-visible {
  color: #0b1220;
}

.contact-location__map-wrap {
  min-width: 0;
}

.contact-location__map {
  position: relative;
  z-index: 0;
  isolation: isolate;
  width: 100%;
  height: 420px;
  overflow: hidden;
  border-radius: 12px;
  background: #ececec;
}

.contact-map__pin {
  background: none;
  border: 0;
}

.contact-location__map .leaflet-control-zoom a {
  width: 30px;
  height: 30px;
  line-height: 30px;
  border: 1px solid #e5e7eb;
  color: #0b1220;
  background: #ffffff;
}

.contact-location__map .leaflet-bar {
  border: 0;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
}

@media (max-width: 1180px) {
  .page-hero,
  .about-stats__inner,
  .about-mission__inner,
  .page-cta__inner,
  .contact__inner,
  .contact-channels__inner,
  .contact-location__inner {
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (max-width: 900px) {
  .about-stats__inner,
  .about-mission__inner,
  .contact__panel,
  .contact-location__inner {
    grid-template-columns: 1fr;
  }

  .contact__panel {
    gap: 32px;
    padding: 32px 24px;
  }

  .contact-location__inner {
    gap: 32px;
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .contact-location__map {
    height: 320px;
  }

  .page-cta__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .page-hero {
    padding-top: 56px;
    padding-bottom: 64px;
  }
}

@media (max-width: 700px) {
  .about-stats__inner {
    grid-template-columns: 1fr 1fr;
    padding-bottom: 56px;
  }

  .about-mission__inner,
  .page-cta__inner {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .contact__inner {
    padding: 8px 16px 56px;
  }

  .contact__panel {
    padding: 24px 16px;
  }

  .contact-form-card {
    padding: 20px 16px 24px;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .page-hero,
  .about-stats__inner,
  .about-mission__inner,
  .page-cta__inner,
  .contact-location__inner {
    padding-left: 16px;
    padding-right: 16px;
  }

  .contact-location__inner {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .contact-location__map {
    height: 260px;
  }
}

/* ========== policy pages ========== */

.policy-hero {
  background: #f8f9fa;
  color: #0b1220;
}

.policy-hero__inner {
  max-width: var(--header-max);
  margin: 0 auto;
  padding: 56px 40px 28px;
}

.policy-hero__eyebrow {
  margin-bottom: 14px;
  color: #2563eb;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.policy-hero__title {
  margin-bottom: 10px;
  color: #0b1220;
  font-size: clamp(2rem, 3.4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.12;
}

.policy-hero__meta {
  margin-bottom: 22px;
  color: #6b7280;
  font-size: 14px;
}

.policy-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.policy-tabs a {
  padding: 8px 14px;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  background: #ffffff;
  color: #4b5563;
  font-size: 13px;
  font-weight: 600;
}

.policy-tabs a.is-active,
.policy-tabs a:hover,
.policy-tabs a:focus-visible {
  border-color: #2563eb;
  background: #eff6ff;
  color: #2563eb;
}

.policy {
  background: #f8f9fa;
  color: #0f172a;
}

.policy__inner {
  max-width: var(--header-max);
  margin: 0 auto;
  padding: 0 40px 96px;
}

.policy__shell {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  align-items: start;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(15, 23, 42, 0.08);
}

.policy-nav {
  position: sticky;
  top: 110px;
  align-self: start;
  max-height: calc(100vh - 130px);
  overflow-y: auto;
  padding: 28px 18px 24px;
  border-right: 1px solid #eef2f7;
}

.policy-nav h3 {
  margin-bottom: 14px;
  padding: 0 10px;
  color: #0b1220;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.policy-nav ul {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 24px;
}

.policy-nav a {
  display: block;
  padding: 8px 10px;
  border-radius: 8px;
  color: #4b5563;
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.4;
  transition:
    background-color 0.2s var(--ease),
    color 0.2s var(--ease);
}

.policy-nav a:hover,
.policy-nav a:focus-visible {
  background: #f8fafc;
  color: #2563eb;
}

.policy-nav a.is-active {
  background: #eff6ff;
  color: #2563eb;
  font-weight: 700;
}

.policy-help {
  padding: 18px 16px;
  border-radius: 12px;
  background: #f8f9fa;
}

.policy-help__icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 12px;
  border-radius: 10px;
  background: #eff6ff;
  color: #2563eb;
}

.policy-help__icon svg {
  width: 18px;
  height: 18px;
}

.policy-help h4 {
  margin-bottom: 6px;
  color: #0b1220;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
}

.policy-help p {
  margin-bottom: 12px;
  color: #6b7280;
  font-size: 13px;
  line-height: 1.55;
}

.policy-help a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #2563eb;
  font-size: 13.5px;
  font-weight: 700;
}

.policy-article {
  min-width: 0;
  padding: 36px 44px 48px;
}

.policy-block {
  padding: 28px 0;
  border-bottom: 1px solid #e8e8e8;
  scroll-margin-top: 120px;
}

.policy-block:first-child {
  padding-top: 0;
}

.policy-block:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.policy-block h2 {
  margin-bottom: 14px;
  color: #0b1220;
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.policy-block h3 {
  margin: 16px 0 8px;
  color: #111827;
  font-size: 1rem;
  font-weight: 700;
}

.policy-block p,
.policy-block li {
  color: #4b5563;
  font-size: 15.5px;
  line-height: 1.75;
}

.policy-block p + p {
  margin-top: 12px;
}

.policy-block ul {
  margin: 12px 0 4px;
}

.policy-block li {
  position: relative;
  padding-left: 18px;
}

.policy-block li + li {
  margin-top: 8px;
}

.policy-block li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #2563eb;
}

.policy-block a {
  color: #2563eb;
  font-weight: 600;
}

.policy-block a:hover,
.policy-block a:focus-visible {
  text-decoration: underline;
}

.policy-use-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.policy-use-card {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 14px 16px;
  border-radius: 12px;
  background: #f8f9fa;
}

.policy-use-card span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  color: #2563eb;
}

.policy-use-card svg {
  width: 18px;
  height: 18px;
}

.policy-use-card p {
  color: #374151;
  font-size: 13.5px;
  line-height: 1.5;
}

.policy-callout {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 12px;
  background: #eff6ff;
  color: #1e40af;
}

.policy-callout svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  color: #2563eb;
}

.policy-callout p {
  color: #1e3a8a;
  font-size: 14px;
  line-height: 1.6;
}

@media (max-width: 1100px) {
  .policy-use-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 980px) {
  .policy-hero__inner,
  .policy__inner {
    padding-left: 24px;
    padding-right: 24px;
  }

  .policy__shell {
    grid-template-columns: 1fr;
  }

  .policy-nav {
    position: static;
    max-height: none;
    border-right: 0;
    border-bottom: 1px solid #eef2f7;
  }

  .policy-article {
    padding: 28px 24px 36px;
  }
}

@media (max-width: 640px) {
  .policy-hero__inner,
  .policy__inner {
    padding-left: 16px;
    padding-right: 16px;
  }

  .policy-use-grid {
    grid-template-columns: 1fr;
  }

  .policy-article {
    padding: 24px 16px 32px;
  }
}

/* ========== careers ========== */

.career-hero {
  --career-blue: #1e40af;
  --career-blue-hover: #1e3a8a;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #ffffff;
  color: #0b1220;
}

.career-hero__grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(
    rgba(37, 99, 235, 0.18) 1.15px,
    transparent 1.4px
  );
  background-size: 22px 22px;
  mask-image: radial-gradient(
    ellipse 85% 80% at 70% 45%,
    #000 18%,
    transparent 78%
  );
}

.career-hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 1.05fr);
  gap: 48px;
  align-items: center;
  max-width: var(--header-max);
  margin: 0 auto;
  padding: 72px 40px 88px;
}

.career-hero__eyebrow {
  margin-bottom: 18px;
  color: var(--career-blue);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.career-hero__title {
  margin-bottom: 18px;
  color: #0b1220;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.career-hero__desc {
  max-width: 46ch;
  margin-bottom: 28px;
  color: #6b7280;
  font-size: 16px;
  line-height: 1.75;
}

.career-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.career-hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  transition:
    background-color 0.2s var(--ease),
    color 0.2s var(--ease),
    border-color 0.2s var(--ease),
    transform 0.2s var(--ease);
}

.career-hero__btn svg {
  display: block;
}

.career-hero__btn--primary {
  background: var(--career-blue);
  color: #ffffff;
}

.career-hero__btn--primary:hover,
.career-hero__btn--primary:focus-visible {
  background: var(--career-blue-hover);
  transform: translateY(-1px);
}

.career-hero__btn--ghost {
  border: 1.5px solid var(--career-blue);
  background: #ffffff;
  color: var(--career-blue);
}

.career-hero__btn--ghost:hover,
.career-hero__btn--ghost:focus-visible {
  background: #eff6ff;
  transform: translateY(-1px);
}

.career-hero__visual {
  position: relative;
  min-height: 380px;
  display: grid;
  place-items: center;
  padding: 24px 8px 36px;
}

.career-hero__dots {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(
    rgba(37, 99, 235, 0.22) 1.2px,
    transparent 1.45px
  );
  background-size: 20px 20px;
  mask-image: radial-gradient(
    ellipse 90% 80% at 50% 50%,
    #000 20%,
    transparent 78%
  );
}

.career-hero__network {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.7;
}

.career-hero__cube {
  position: absolute;
  z-index: 0;
  filter: drop-shadow(0 8px 14px rgba(15, 23, 42, 0.08));
}

.career-hero__cube--1 {
  width: 36px;
  top: 10px;
  left: 4%;
}

.career-hero__cube--2 {
  width: 26px;
  top: 6px;
  right: 14%;
}

.career-hero__cube--3 {
  width: 32px;
  bottom: 18px;
  left: 0;
}

.career-hero__cube--4 {
  width: 22px;
  bottom: 8px;
  right: 4%;
}

.career-hero__cube--5 {
  width: 20px;
  top: 46%;
  right: -2%;
}

.career-hero__flow {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 580px;
  padding-bottom: 56px;
}

.career-hero__cards {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  width: 100%;
}

.career-hero__connectors {
  position: absolute;
  left: 0;
  top: 0;
  overflow: visible;
  pointer-events: none;
  z-index: 3;
}

.career-hero__path {
  fill: none;
  stroke: #2563eb;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.career-hero-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 210px;
  padding: 28px 10px 22px;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.1);
}

.career-hero-card__icon {
  display: grid;
  place-items: center;
  color: #2563eb;
}

.career-hero-card__icon svg {
  width: 36px;
  height: 36px;
  stroke-width: 1.85;
}

.career-hero-card h3 {
  color: #1f2937;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

@media (max-width: 1100px) {
  .career-hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 56px 24px 72px;
  }

  .career-hero__visual {
    min-height: 320px;
  }

  .career-hero__flow {
    max-width: 540px;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .career-hero__inner {
    padding: 48px 16px 56px;
  }

  .career-hero__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .career-hero-card {
    min-height: 160px;
    padding: 20px 12px 16px;
  }

  .career-hero__connectors,
  .career-hero__cube,
  .career-hero__network {
    display: none;
  }

  .career-hero__flow {
    padding-bottom: 0;
  }

  .career-hero__btn {
    width: 100%;
    justify-content: center;
  }
}

.career-values {
  background: #ffffff;
  color: #0b1220;
}

.career-values__inner {
  max-width: var(--header-max);
  margin: 0 auto;
  padding: 88px 40px;
}

.career-values__head {
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: center;
}

.career-values__eyebrow {
  margin-bottom: 14px;
  color: #1e40af;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.career-values__title {
  margin-bottom: 14px;
  color: #0b1220;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.12;
}

.career-values__desc {
  color: #6b7280;
  font-size: 16px;
  line-height: 1.7;
}

.career-apply__eyebrow {
  margin-bottom: 12px;
  color: #2563eb;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.career-apply__title {
  color: #0b1220;
  font-size: clamp(1.7rem, 2.6vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.18;
}

.career-values__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.career-value {
  padding: 28px 24px 30px;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  background: #ffffff;
}

.career-value__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 22px;
}

.career-value__icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #eff6ff;
  color: #1e40af;
}

.career-value__icon svg {
  width: 20px;
  height: 20px;
}

.career-value__num {
  color: #1e40af;
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}

.career-value h3 {
  margin-bottom: 10px;
  color: #0b1220;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.career-value p {
  color: #6b7280;
  font-size: 14.5px;
  line-height: 1.65;
}

.career-life {
  background: #ffffff;
  color: #0b1220;
}

.career-life__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.4fr) minmax(0, 0.6fr);
  gap: 56px;
  align-items: center;
  max-width: var(--header-max);
  margin: 0 auto;
  padding: 88px 40px;
}

.career-life__copy {
  max-width: 420px;
}

.career-life__eyebrow {
  margin-bottom: 16px;
  color: #1e40af;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.career-life__title {
  margin-bottom: 16px;
  color: #0b1220;
  font-size: clamp(1.9rem, 3vw, 2.55rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.career-life__desc {
  margin-bottom: 28px;
  color: #555555;
  font-size: 16px;
  line-height: 1.75;
}

.career-life__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #1e40af;
  font-size: 15px;
  font-weight: 700;
}

.career-life__cta svg {
  display: block;
}

.career-life__cta:hover,
.career-life__cta:focus-visible {
  text-decoration: underline;
}

.career-life__collage {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
  min-height: 460px;
}

.career-life__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
}

.career-life__img--tall {
  grid-column: 1;
  grid-row: 1 / 3;
  min-height: 460px;
  object-position: center 40%;
}

.career-life__img--top,
.career-life__img--bottom {
  min-height: 0;
}

.career-work {
  background: #f4f7fd;
  color: #0b1220;
}

.career-work__inner {
  max-width: var(--header-max);
  margin: 0 auto;
  padding: 88px 40px;
}

.career-work__head {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}

.career-work__eyebrow {
  margin-bottom: 14px;
  color: #1e40af;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.career-work__title {
  color: #0b1220;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.career-work__steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.career-work__steps::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 12.5%;
  right: 12.5%;
  z-index: 0;
  border-top: 2px dashed #1e40af;
}

.career-work-step {
  position: relative;
  z-index: 1;
  text-align: center;
}

.career-work-step__icon {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: #1e40af;
  color: #ffffff;
}

.career-work-step__icon svg {
  width: 28px;
  height: 28px;
  stroke-width: 1.8;
}

.career-work-step h3 {
  margin-bottom: 10px;
  color: #0b1220;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.career-work-step p {
  max-width: 26ch;
  margin: 0 auto;
  color: #555555;
  font-size: 15px;
  line-height: 1.65;
}

.career-roles {
  background: #ffffff;
  color: #0b1220;
}

.career-roles__inner {
  max-width: var(--header-max);
  margin: 0 auto;
  padding: 88px 40px;
  text-align: center;
}

.career-roles__head {
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
}

.career-roles__eyebrow {
  margin-bottom: 14px;
  color: #1e40af;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.career-roles__title {
  margin-bottom: 28px;
  color: #0b1220;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.career-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 4px;
}

.career-filters button {
  padding: 8px 16px;
  border-radius: 999px;
  background: transparent;
  color: #0b1220;
  font-size: 14px;
  font-weight: 600;
}

.career-filters button:hover,
.career-filters button:focus-visible {
  color: #1e40af;
}

.career-filters button.is-active {
  background: #1e40af;
  color: #ffffff;
}

.career-roles__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.career-role {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px 24px 24px;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  background: #ffffff;
}

.career-role[hidden] {
  display: none;
}

.career-role__tag {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #eff6ff;
  color: #1e40af;
  font-size: 12px;
  font-weight: 700;
}

.career-role h3 {
  margin-bottom: 8px;
  color: #0b1220;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.career-role__meta {
  margin-bottom: 12px;
  color: #6b7280;
  font-size: 13.5px;
}

.career-role > p:not(.career-role__meta) {
  flex: 1;
  margin-bottom: 20px;
  color: #6b7280;
  font-size: 14.5px;
  line-height: 1.65;
}

.career-role__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #1e40af;
  font-size: 14px;
  font-weight: 700;
}

.career-role__cta:hover,
.career-role__cta:focus-visible {
  text-decoration: underline;
}

.career-roles__empty {
  margin: 8px 0 0;
  color: #6b7280;
  font-size: 15px;
  text-align: center;
}

.career-roles__more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  margin: 36px auto 0;
  padding: 12px 20px;
  border: 1.5px solid #1e40af;
  border-radius: 10px;
  background: #ffffff;
  color: #1e40af;
  font-size: 14px;
  font-weight: 700;
}

.career-roles__list {
  text-align: left;
}

.career-roles__more:hover,
.career-roles__more:focus-visible {
  background: #eff6ff;
}

.career-hire {
  background: #f5f6f8;
  color: #0b1220;
}

.career-hire__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: var(--header-max);
  margin: 0 auto;
  padding: 88px 40px;
}

.career-hire__look {
  padding-right: 48px;
  border-right: 1px solid #e5e7eb;
}

.career-hire__process {
  padding-left: 48px;
  text-align: center;
}

.career-hire__eyebrow {
  margin-bottom: 14px;
  color: #1e40af;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.career-hire__title {
  margin-bottom: 36px;
  color: #0b1220;
  font-size: clamp(1.55rem, 2.2vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.2;
}

.career-look__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 24px;
}

.career-look-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  text-align: left;
}

.career-look-item__icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 10px;
  background: #eff6ff;
  color: #1e40af;
}

.career-look-item__icon svg {
  width: 18px;
  height: 18px;
}

.career-look-item h3 {
  margin-bottom: 4px;
  color: #0b1220;
  font-size: 15px;
  font-weight: 800;
}

.career-look-item p {
  color: #555555;
  font-size: 13.5px;
  line-height: 1.55;
}

.career-process__steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.career-process__rail {
  position: absolute;
  top: 28px;
  left: 0;
  right: 0;
  height: 0;
  pointer-events: none;
}

.career-process__rail::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  border-top: 1.5px dashed #d1d5db;
}

.career-process__rail span {
  position: absolute;
  top: 0;
  width: 8px;
  height: 8px;
  margin: -4px 0 0 -4px;
  border-radius: 50%;
  background: #1e40af;
}

.career-process__rail span:nth-child(1) {
  left: 20%;
}
.career-process__rail span:nth-child(2) {
  left: 40%;
}
.career-process__rail span:nth-child(3) {
  left: 60%;
}
.career-process__rail span:nth-child(4) {
  left: 80%;
}

.career-process-step {
  position: relative;
  z-index: 1;
  text-align: center;
}

.career-process-step__icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: #eff6ff;
  color: #1e40af;
}

.career-process-step__icon svg {
  width: 22px;
  height: 22px;
}

.career-process-step__num {
  display: block;
  margin-bottom: 6px;
  color: #1e40af;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}

.career-process-step h3 {
  margin-bottom: 6px;
  color: #0b1220;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.3;
}

.career-process-step p {
  color: #555555;
  font-size: 12.5px;
  line-height: 1.5;
}

.career-apply,
#roles,
#apply {
  scroll-margin-top: 96px;
}

.career-apply {
  background: #ffffff;
  color: #0b1220;
}

.career-apply__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 48px;
  align-items: start;
  max-width: var(--header-max);
  margin: 0 auto;
  padding: 88px 40px;
}

.career-apply__rule {
  display: block;
  width: 48px;
  height: 3px;
  margin: 18px 0;
  border-radius: 999px;
  background: #2563eb;
}

.career-apply__intro {
  margin-bottom: 28px;
  color: #6b7280;
  font-size: 15.5px;
  line-height: 1.7;
}

.career-apply__meta {
  display: grid;
  gap: 18px;
}

.career-apply__meta li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.career-apply__meta span:first-child {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 10px;
  background: #eff6ff;
  color: #2563eb;
}

.career-apply__meta svg {
  width: 18px;
  height: 18px;
}

.career-apply__meta strong {
  display: block;
  margin-bottom: 4px;
  color: #0b1220;
  font-size: 14px;
}

.career-apply__meta div a,
.career-apply__meta div span {
  color: #4b5563;
  font-size: 14px;
}

.career-apply__meta a:hover,
.career-apply__meta a:focus-visible {
  color: #2563eb;
}

.career-apply.is-sent .contact-form {
  display: none;
}

.career-apply.is-sent .contact-success {
  display: block;
}

@media (max-width: 1180px) {
  .career-hire__inner {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .career-hire__look {
    padding-right: 0;
    border-right: 0;
    padding-bottom: 48px;
    border-bottom: 1px solid #e5e7eb;
  }

  .career-hire__process {
    padding-left: 0;
  }
}

@media (max-width: 1100px) {
  .career-values__grid,
  .career-roles__list {
    grid-template-columns: 1fr 1fr;
  }

  .career-life__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .career-life__copy {
    max-width: none;
  }
}

@media (max-width: 980px) {
  .career-values__inner,
  .career-life__inner,
  .career-work__inner,
  .career-roles__inner,
  .career-hire__inner,
  .career-apply__inner {
    padding-left: 24px;
    padding-right: 24px;
  }

  .career-work__steps {
    grid-template-columns: 1fr 1fr;
    gap: 36px 24px;
  }

  .career-work__steps::before {
    display: none;
  }

  .career-roles__list {
    grid-template-columns: 1fr 1fr;
  }

  .career-apply__inner {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .career-values__inner,
  .career-life__inner,
  .career-work__inner,
  .career-roles__inner,
  .career-hire__inner,
  .career-apply__inner {
    padding: 56px 16px;
  }

  .career-look__grid,
  .career-process__steps {
    grid-template-columns: 1fr;
  }

  .career-process__rail {
    display: none;
  }

  .career-work__steps {
    grid-template-columns: 1fr;
  }

  .career-life__collage {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    min-height: 0;
  }

  .career-life__img--tall {
    grid-column: 1;
    grid-row: auto;
    min-height: 280px;
  }

  .career-values__grid,
  .career-roles__list {
    grid-template-columns: 1fr;
  }

  .career-role {
    padding: 22px 18px;
  }
}

/* ========== services page ========== */

.svc-offer {
  background: #f7f8fb;
  color: #0b1220;
}

.svc-offer__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.3fr) minmax(0, 0.7fr);
  gap: 48px 56px;
  align-items: start;
  max-width: var(--header-max);
  margin: 0 auto;
  padding: 96px 40px;
}

.svc-offer__copy {
  padding-top: 8px;
}

.svc-offer__eyebrow,
.svc-industries__eyebrow {
  margin-bottom: 16px;
  color: #2563eb;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.svc-offer__title {
  margin-bottom: 18px;
  color: #0b1220;
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.12;
}

.svc-industries__title {
  margin-bottom: 16px;
  color: #0b1220;
  font-size: clamp(1.85rem, 3vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.svc-offer__text {
  max-width: 34ch;
  margin-bottom: 28px;
  color: #6b7280;
  font-size: 15px;
  line-height: 1.7;
}

.svc-offer__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 22px;
  border: 1.5px solid #2563eb;
  border-radius: 10px;
  color: #2563eb;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  transition:
    background-color 0.2s var(--ease),
    color 0.2s var(--ease);
}

.svc-offer__cta:hover,
.svc-offer__cta:focus-visible {
  background: #2563eb;
  color: #ffffff;
}

.svc-offer__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.svc-card {
  min-height: 220px;
  padding: 28px 22px 24px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

.svc-card__icon {
  display: inline-flex;
  margin-bottom: 18px;
  color: #2563eb;
}

.svc-card__icon svg {
  width: 28px;
  height: 28px;
  stroke-width: 1.7;
}

.svc-card h3 {
  margin-bottom: 10px;
  color: #0b1220;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.35;
}

.svc-card p {
  color: #6b7280;
  font-size: 13.5px;
  line-height: 1.6;
}

.svc-industries {
  background: #f9fafb;
  color: #0b1220;
}

.svc-industries__inner {
  max-width: var(--header-max);
  margin: 0 auto;
  padding: 88px 40px;
}

.svc-industries__head {
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: center;
}

.svc-industries__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.svc-industry {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 140px;
  padding: 22px 18px;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  background: #ffffff;
}

.svc-industry span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #eff6ff;
  color: #2563eb;
}

.svc-industry svg {
  width: 20px;
  height: 20px;
}

.svc-industry h3 {
  color: #0b1220;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.35;
}

@media (max-width: 1180px) {
  .svc-offer__inner,
  .svc-industries__inner {
    padding: 72px 24px;
  }

  .svc-offer__inner {
    grid-template-columns: minmax(0, 0.34fr) minmax(0, 0.66fr);
    gap: 36px 32px;
  }

  .svc-offer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .svc-industries__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .svc-offer__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .svc-offer__text {
    max-width: 52ch;
  }
}

@media (max-width: 800px) {
  .svc-industries__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .svc-offer__inner,
  .svc-industries__inner {
    padding: 56px 16px;
  }

  .svc-offer__grid,
  .svc-industries__grid {
    grid-template-columns: 1fr;
  }

  .svc-offer__cta {
    width: 100%;
    justify-content: center;
  }
}
