:root {
  --ink: #0b1220;
  --muted: #556070;
  --line: #dfe5ee;
  --paper: #ffffff;
  --soft: #f5f7fa;
  --navy: #071f49;
  --blue: #0b6fe8;
  --teal: #0f9f9a;
  --orange: #ff7900;
  --green: #47785f;
  --shadow: 0 18px 45px rgba(7, 31, 73, 0.1);
  --radius: 8px;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 16px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--ink);
  color: #fff;
}

.skip-link:focus {
  left: 16px;
}

.site-shell {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(223, 229, 238, 0.9);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  text-decoration: none;
}

.brand img {
  width: 410px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  font-weight: 650;
}

.site-nav a {
  text-decoration: none;
  color: #243044;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--blue);
}

.nav-cta {
  padding: 10px 14px;
  color: #fff !important;
  background: var(--ink);
  border-radius: 999px;
}

.hero {
  min-height: 600px;
  display: grid;
  align-items: center;
  color: #fff;
  background-image:
    linear-gradient(90deg, rgba(5, 12, 24, 0.88) 0%, rgba(5, 12, 24, 0.7) 42%, rgba(5, 12, 24, 0.18) 100%),
    url("../technology-workspace-hero.png");
  background-position: center;
  background-size: cover;
}

.hero-inner {
  padding: 76px 0 54px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #69dfd7;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 900px;
  margin-bottom: 20px;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 690px;
  margin-bottom: 26px;
  color: #e8eef7;
  font-size: 18px;
  line-height: 1.55;
}

.hero-actions,
.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  color: #fff;
  background: var(--blue);
}

.button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.08);
}

.button.dark {
  color: #fff;
  background: var(--ink);
}

.button.light {
  color: var(--ink);
  border-color: var(--line);
  background: #fff;
}

.proof-band {
  background: var(--navy);
  color: #fff;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.proof-item {
  min-height: 150px;
  padding: 30px 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.proof-item:first-child {
  border-left: 0;
}

.proof-item strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-size: 32px;
  line-height: 1;
}

.proof-item span {
  color: #c8d6ea;
  font-size: 14px;
}

.section {
  padding: 86px 0;
}

.section.alt {
  background: var(--soft);
}

.section-header {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-header.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section h2,
.page-hero h1 {
  margin-bottom: 16px;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.02;
  letter-spacing: 0;
}

.section-header p,
.page-lead,
.large-copy {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.service-grid,
.product-grid,
.case-grid,
.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service,
.product,
.case-note,
.capability,
.process-step,
.contact-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.service,
.product,
.case-note,
.capability {
  padding: 26px;
}

.service h3,
.product h3,
.case-note h3,
.capability h3,
.process-step h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.2;
}

.service p,
.product p,
.case-note p,
.capability p,
.process-step p {
  margin-bottom: 0;
  color: var(--muted);
}

.service-marker {
  width: 38px;
  height: 5px;
  margin-bottom: 22px;
  border-radius: 999px;
  background: var(--orange);
}

.service:nth-child(2) .service-marker,
.service:nth-child(5) .service-marker {
  background: var(--blue);
}

.service:nth-child(3) .service-marker,
.service:nth-child(6) .service-marker {
  background: var(--teal);
}

.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 54px;
  align-items: start;
}

.quote-panel {
  padding: 34px;
  color: #fff;
  background: var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.quote-panel p {
  margin-bottom: 22px;
  font-size: 24px;
  line-height: 1.35;
}

.quote-panel span {
  color: #afbfda;
}

.stack-list {
  display: grid;
  gap: 14px;
}

.stack-list span,
.pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 34px;
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #263449;
  background: #fff;
  font-size: 14px;
  font-weight: 700;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cta-band {
  padding: 74px 0;
  color: #fff;
  background: var(--ink);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cta-inner h2 {
  max-width: 720px;
  margin-bottom: 0;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.04;
}

.page-hero {
  padding: 82px 0 58px;
  background: var(--soft);
}

.page-hero .site-shell {
  display: grid;
  grid-template-columns: minmax(0, 780px) 1fr;
  gap: 48px;
  align-items: end;
}

.page-kicker {
  align-self: stretch;
  display: grid;
  align-content: end;
  padding: 26px;
  border-left: 5px solid var(--orange);
  color: #334155;
  background: #fff;
  border-radius: var(--radius);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.process-step {
  padding: 22px;
}

.process-step span {
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 850;
}

.product {
  position: relative;
  overflow: hidden;
  min-height: 300px;
}

.product-status {
  display: inline-flex;
  margin-bottom: 28px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #fff;
  background: var(--green);
  font-size: 12px;
  font-weight: 800;
}

.product h3 {
  font-size: 28px;
}

.product::after {
  content: "";
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 68px;
  height: 68px;
  border: 10px solid rgba(11, 111, 232, 0.12);
  border-radius: 50%;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
  align-items: stretch;
}

.contact-panel {
  padding: 32px;
}

.email-display {
  display: block;
  margin: 20px 0;
  padding: 16px;
  border: 1px dashed #b9c3d1;
  border-radius: var(--radius);
  color: var(--navy);
  background: #f8fafc;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  overflow-wrap: anywhere;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #263449;
  font-size: 14px;
  font-weight: 750;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 13px;
  border: 1px solid #cfd8e5;
  border-radius: var(--radius);
  color: var(--ink);
  background: #fff;
  font: inherit;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(11, 111, 232, 0.18);
  border-color: var(--blue);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.small-note {
  color: var(--muted);
  font-size: 14px;
}

.site-footer {
  padding: 34px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: #fff;
  font-size: 14px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-links {
  display: flex;
  gap: 18px;
}

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

@media (max-width: 900px) {
  .nav-wrap {
    align-items: flex-start;
    flex-direction: column;
    padding: 18px 0;
  }

  .site-nav {
    width: 100%;
    flex-wrap: wrap;
    overflow: visible;
    padding-bottom: 0;
  }

  .hero {
    min-height: 620px;
    background-position: 62% center;
  }

  .hero-inner {
    padding-top: 96px;
  }

  .proof-grid,
  .service-grid,
  .product-grid,
  .case-grid,
  .capability-grid,
  .process-grid,
  .form-row,
  .split,
  .page-hero .site-shell,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .proof-item {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }

  .proof-item:first-child {
    border-top: 0;
  }

  .cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .site-shell {
    width: min(100% - 32px, var(--max));
  }

  .brand img {
    width: 300px;
  }

  .site-nav {
    gap: 10px 14px;
    font-size: 13px;
  }

  .nav-cta {
    width: 100%;
    justify-content: center;
    margin-top: 2px;
    padding: 10px 12px;
    text-align: center;
  }

  .hero {
    min-height: 650px;
    background-image:
      linear-gradient(180deg, rgba(5, 12, 24, 0.86) 0%, rgba(5, 12, 24, 0.78) 54%, rgba(5, 12, 24, 0.46) 100%),
      url("../technology-workspace-hero.png");
    background-position: 66% center;
  }

  .hero-inner {
    padding: 86px 0 54px;
  }

  h1 {
    font-size: 46px;
  }

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

  .section,
  .page-hero {
    padding: 58px 0;
  }

  .section h2,
  .page-hero h1 {
    font-size: 36px;
  }

  .service,
  .product,
  .case-note,
  .capability,
  .contact-panel {
    padding: 22px;
  }

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