:root {
  --navy: #0d1b2a;
  --blue: #3d5a80;
  --green: #2f7d66;
  --gold: #d9941f;
  --sky: #6d8fb9;
  --pale: #d9e2ec;
  --paper: #f2f4f7;
  --white: #ffffff;
  --ink: #0d1b2a;
  --muted: #5a6572;
  --line: rgba(13, 27, 42, 0.12);
  --shadow: 0 24px 70px rgba(13, 27, 42, 0.16);
  --radius: 8px;
  font-family: "Poppins", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 100;
  transform: translateY(-160%);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--navy);
  padding: 10px 14px;
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  padding: 18px 24px 0;
  transition: background 180ms ease, padding 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  padding-top: 12px;
  background: rgba(242, 244, 247, 0.92);
  box-shadow: 0 12px 34px rgba(13, 27, 42, 0.08);
  backdrop-filter: blur(18px);
}

.nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: var(--radius);
  background: rgba(13, 27, 42, 0.72);
  color: var(--white);
  padding: 10px 12px;
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled .nav {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 700;
  line-height: 1;
}

.brand img,
.footer-brand img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  padding: 4px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.nav-links a {
  color: currentColor;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  opacity: 0.86;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  opacity: 1;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.nav-cta {
  background: var(--white);
  color: var(--navy);
  padding: 10px 14px;
}

.site-header.is-scrolled .nav-cta {
  background: var(--navy);
  color: var(--white);
}

.nav-cta svg,
.button svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  color: currentColor;
  place-items: center;
}

.nav-toggle svg {
  width: 22px;
  height: 22px;
}

.hero {
  position: relative;
  min-height: 84svh;
  overflow: hidden;
  display: grid;
  align-items: end;
  background: var(--navy);
  color: var(--white);
  padding: 154px 24px 58px;
}

.hero-bg,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg {
  object-fit: cover;
  object-position: center;
  opacity: 0.98;
  filter: saturate(1.72) contrast(1.34) brightness(1.12);
}

.hero-shade {
  background:
    radial-gradient(circle at 74% 28%, rgba(47, 125, 102, 0.32) 0%, rgba(47, 125, 102, 0) 34%),
    radial-gradient(circle at 92% 68%, rgba(217, 148, 31, 0.24) 0%, rgba(217, 148, 31, 0) 32%),
    linear-gradient(90deg, rgba(7, 19, 32, 0.86) 0%, rgba(7, 19, 32, 0.66) 42%, rgba(7, 19, 32, 0.2) 100%),
    linear-gradient(180deg, rgba(13, 27, 42, 0.04) 0%, rgba(13, 27, 42, 0.36) 100%);
  mix-blend-mode: normal;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--sky);
  font-size: 13px;
  line-height: 1.35;
  font-weight: 700;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: 68px;
  line-height: 1;
  font-weight: 700;
}

.hero-copy {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 20px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  border: 1px solid transparent;
  padding: 12px 18px;
}

.button-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 14px 36px rgba(61, 90, 128, 0.3);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #466995;
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.14);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  max-width: 860px;
  margin: 46px 0 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.16);
}

.hero-proof div {
  min-height: 96px;
  padding: 18px;
  background: rgba(13, 27, 42, 0.62);
}

.hero-proof dt {
  margin: 0 0 6px;
  color: var(--white);
  font-size: 22px;
  font-weight: 700;
}

.hero-proof dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
}

.section {
  width: min(1180px, calc(100vw - 48px));
  margin: 0 auto;
  padding: 92px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 0.62fr);
  gap: 44px;
  align-items: end;
  margin-bottom: 32px;
}

.section-heading h2,
.split-copy h2,
.contact-copy h2 {
  margin: 0;
  font-size: 42px;
  line-height: 1.12;
}

.section-heading p:not(.eyebrow),
.split-copy p:not(.eyebrow),
.contact-copy p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  min-height: 310px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 24px;
  box-shadow: 0 10px 32px rgba(13, 27, 42, 0.06);
}

.icon-wrap {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: var(--pale);
  color: var(--blue);
  margin-bottom: 30px;
}

.icon-wrap svg {
  width: 24px;
  height: 24px;
}

.service-card h3,
.approach-grid h3 {
  margin: 0 0 12px;
  font-size: 20px;
  line-height: 1.25;
}

.service-card p,
.approach-grid p {
  margin: 0;
  color: var(--muted);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.7fr);
  gap: 48px;
  align-items: center;
}

.split-copy p:not(.eyebrow) {
  max-width: 620px;
  margin-top: 18px;
}

.capability-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 10px;
  box-shadow: var(--shadow);
}

.capability-row {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 60px;
  border-bottom: 1px solid var(--line);
  padding: 0 16px;
  font-weight: 700;
}

.capability-row:last-of-type {
  border-bottom: 0;
}

.cap-dot {
  width: 14px;
  height: 14px;
  border-radius: 99px;
  flex: 0 0 auto;
}

.cap-dot.azure {
  background: #0078d4;
}

.cap-dot.aws {
  background: #ff9900;
}

.cap-dot.gcp {
  background: #34a853;
}

.cap-dot.open-source {
  background: var(--green);
}

.stack-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  border-top: 1px solid var(--line);
  margin-top: 10px;
  padding: 18px 16px 8px;
}

.stack-list span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid rgba(61, 90, 128, 0.2);
  border-radius: 999px;
  background: rgba(217, 226, 236, 0.5);
  color: var(--navy);
  padding: 6px 12px;
  font-size: 14px;
  font-weight: 600;
}

.open-source {
  padding-top: 36px;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.tool-card {
  display: flex;
  min-height: 520px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 24px;
  box-shadow: 0 10px 32px rgba(13, 27, 42, 0.06);
}

.tool-card-coming {
  background: linear-gradient(180deg, rgba(217, 226, 236, 0.58), rgba(255, 255, 255, 0.92));
}

.tool-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 26px;
}

.tool-card-top svg {
  width: 28px;
  height: 28px;
  color: var(--green);
}

.tool-status {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border: 1px solid rgba(47, 125, 102, 0.22);
  border-radius: 999px;
  background: rgba(47, 125, 102, 0.1);
  color: var(--green);
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.tool-card h3,
.contact-card h2 {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.2;
}

.tool-card p,
.tool-card li,
.contact-card p,
.contact-card li {
  color: var(--muted);
}

.tool-card p,
.contact-card p {
  margin: 0;
}

.tool-card ul,
.contact-card ul {
  margin: 18px 0 0;
  padding-left: 20px;
}

.tool-card li + li,
.contact-card li + li {
  margin-top: 8px;
}

.tool-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
  padding-top: 26px;
}

.tool-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  border: 1px solid rgba(61, 90, 128, 0.2);
  border-radius: var(--radius);
  color: var(--navy);
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.tool-links svg {
  width: 16px;
  height: 16px;
}

.tool-note {
  margin-top: 18px;
  font-weight: 600;
}

.approach {
  width: 100%;
  max-width: none;
  background: var(--navy);
  color: var(--white);
  padding-inline: max(24px, calc((100vw - 1180px) / 2));
}

.section-heading.dark {
  width: min(1180px, 100%);
  margin-inline: auto;
}

.section-heading.dark p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.68);
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(1180px, 100%);
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.14);
}

.approach-grid article {
  min-height: 280px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.045);
}

.approach-grid span {
  display: inline-block;
  margin-bottom: 70px;
  color: var(--sky);
  font-weight: 700;
}

.approach-grid p {
  color: rgba(255, 255, 255, 0.7);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.62fr);
  gap: 48px;
  align-items: end;
  padding-bottom: 82px;
}

.contact-copy p:not(.eyebrow) {
  max-width: 620px;
  margin-top: 18px;
}

.contact-actions {
  border-left: 1px solid var(--line);
  padding-left: 34px;
}

.contact-actions .button {
  width: 100%;
}

.contact-actions p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  align-items: center;
  gap: 22px;
  border-top: 1px solid var(--line);
  background: var(--white);
  padding: 24px max(24px, calc((100vw - 1180px) / 2));
  color: var(--muted);
  font-size: 14px;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  text-decoration: none;
}

.footer-brand {
  color: var(--ink);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.legal-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
}

.legal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100vw - 48px));
  min-height: 72px;
  margin: 0 auto;
}

.legal-main {
  width: min(860px, calc(100vw - 48px));
  margin: 0 auto;
  padding: 72px 0 84px;
}

.contact-main {
  width: min(1180px, calc(100vw - 48px));
  margin: 0 auto;
  padding: 86px 0 92px;
}

.contact-hero {
  max-width: 900px;
}

.contact-hero h1 {
  margin: 0;
  font-size: 54px;
  line-height: 1.08;
}

.contact-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 19px;
}

.contact-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) repeat(2, minmax(0, 0.82fr));
  gap: 16px;
  margin-top: 42px;
}

.contact-card {
  min-height: 300px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 24px;
  box-shadow: 0 10px 32px rgba(13, 27, 42, 0.06);
}

.contact-card .icon-wrap {
  margin-bottom: 28px;
}

.contact-email {
  color: var(--navy);
  font-size: 24px;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.contact-email + p {
  margin-top: 16px;
}

.legal-main h1 {
  margin: 0;
  font-size: 48px;
  line-height: 1.1;
}

.legal-main h2 {
  margin: 42px 0 12px;
  font-size: 24px;
  line-height: 1.25;
}

.legal-main h3 {
  margin: 28px 0 8px;
  font-size: 18px;
}

.legal-main p,
.legal-main li {
  color: var(--muted);
}

.legal-main a {
  color: var(--blue);
  font-weight: 600;
}

.legal-main ul {
  padding-left: 22px;
}

.legal-meta {
  margin: 14px 0 0;
  color: var(--sky);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
}

.policy-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.policy-table th,
.policy-table td {
  border-bottom: 1px solid var(--line);
  padding: 14px;
  text-align: left;
  vertical-align: top;
}

.policy-table tr:last-child th,
.policy-table tr:last-child td {
  border-bottom: 0;
}

.policy-table th {
  color: var(--ink);
  font-size: 14px;
}

.policy-table td {
  color: var(--muted);
}

.not-found {
  display: grid;
  place-items: center;
  min-height: 100svh;
  padding: 32px;
  text-align: center;
}

.not-found img {
  margin-bottom: 20px;
}

.not-found h1 {
  margin: 0;
  font-size: 42px;
  line-height: 1.12;
}

.not-found p {
  margin: 12px 0 26px;
  color: var(--muted);
}

@media (max-width: 980px) {
  .site-header {
    padding-inline: 14px;
  }

  .nav {
    grid-template-columns: auto auto;
    justify-content: space-between;
    width: 100%;
  }

  .nav-toggle {
    display: grid;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-links.is-open {
    position: absolute;
    top: 76px;
    left: 14px;
    right: 14px;
    display: grid;
    justify-items: start;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    color: var(--ink);
    padding: 8px;
    box-shadow: var(--shadow);
  }

  .nav-links.is-open a {
    width: 100%;
    border-radius: 6px;
    padding: 14px;
  }

  .nav-links.is-open a:hover,
  .nav-links.is-open a:focus-visible {
    background: var(--paper);
  }

  .hero {
    min-height: 86svh;
    padding: 138px 24px 46px;
  }

  .hero h1 {
    font-size: 52px;
  }

  .hero-copy {
    font-size: 18px;
  }

  .section-heading,
  .split-section,
  .contact-section,
  .contact-detail-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .card-grid,
  .tools-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-card {
    min-height: 260px;
  }

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

  .approach-grid article {
    min-height: auto;
  }

  .approach-grid span {
    margin-bottom: 28px;
  }

  .contact-actions {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 28px 0 0;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 15px;
  }

  .site-header {
    padding-top: 10px;
  }

  .brand span {
    max-width: 142px;
    line-height: 1.15;
  }

  .hero {
    min-height: 82svh;
    padding: 128px 18px 34px;
  }

  .hero-bg {
    object-position: 64% center;
  }

  .hero-shade {
    background:
      radial-gradient(circle at 74% 22%, rgba(47, 125, 102, 0.24) 0%, rgba(47, 125, 102, 0) 34%),
      linear-gradient(90deg, rgba(7, 19, 32, 0.92) 0%, rgba(7, 19, 32, 0.78) 100%),
      linear-gradient(180deg, rgba(13, 27, 42, 0.1) 0%, rgba(13, 27, 42, 0.44) 100%);
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-copy {
    font-size: 17px;
  }

  .eyebrow {
    font-size: 12px;
  }

  .button,
  .hero-actions,
  .hero-actions a {
    width: 100%;
  }

  .hero-proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tool-card {
    min-height: auto;
  }

  .contact-hero h1 {
    font-size: 44px;
  }

  .contact-detail-grid {
    margin-top: 34px;
  }

  .section {
    width: calc(100vw - 36px);
    padding: 64px 0;
  }

  .section-heading h2,
  .split-copy h2,
  .contact-copy h2 {
    font-size: 31px;
  }

  .card-grid,
  .tools-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .approach {
    padding-inline: 18px;
  }

  .approach-grid article {
    padding: 24px;
  }

  .site-footer {
    padding: 22px 18px;
  }

  .legal-nav,
  .legal-main,
  .contact-main {
    width: calc(100vw - 36px);
  }

  .legal-main,
  .contact-main {
    padding: 52px 0 66px;
  }

  .legal-main h1,
  .contact-hero h1 {
    font-size: 38px;
  }

  .contact-hero p:not(.eyebrow) {
    font-size: 17px;
  }

  .policy-table,
  .policy-table tbody,
  .policy-table tr,
  .policy-table th,
  .policy-table td {
    display: block;
  }

  .policy-table thead {
    display: none;
  }

  .policy-table th,
  .policy-table td {
    border-bottom: 0;
  }

  .policy-table tr {
    border-bottom: 1px solid var(--line);
    padding: 10px 0;
  }

  .policy-table tr:last-child {
    border-bottom: 0;
  }
}
