:root {
  --ink: #101c22;
  --muted: #617078;
  --paper: #f7f8f6;
  --panel: #ffffff;
  --line: #dce4e2;
  --navy: #102026;
  --navy-soft: #172c34;
  --teal: #08796f;
  --teal-light: #4fc2b5;
  --amber: #d8922f;
  --coral: #c95e4a;
  --shadow: 0 18px 50px rgba(16, 32, 38, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Manrope, Arial, sans-serif;
  line-height: 1.6;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px clamp(20px, 5vw, 64px);
  color: #fff;
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(247, 248, 246, 0.95);
  box-shadow: 0 12px 30px rgba(16, 32, 38, 0.08);
  color: var(--ink);
  backdrop-filter: blur(16px);
}

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

.brand-mark {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border-radius: 9px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.16);
}

.brand strong,
.brand small {
  display: block;
  white-space: nowrap;
}

.brand strong {
  font-size: 0.98rem;
  line-height: 1.1;
}

.brand small {
  color: currentColor;
  font-size: 0.72rem;
  opacity: 0.76;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.5vw, 20px);
  font-size: 0.86rem;
  font-weight: 800;
}

.main-nav a {
  opacity: 0.86;
  white-space: nowrap;
}

.main-nav a:hover {
  opacity: 1;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 8px;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
}

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

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 18, 23, 0.94) 0%, rgba(8, 18, 23, 0.75) 52%, rgba(8, 18, 23, 0.16) 100%),
    linear-gradient(0deg, rgba(8, 18, 23, 0.45), rgba(8, 18, 23, 0.08));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(930px, calc(100% - 40px));
  margin-left: clamp(20px, 7vw, 92px);
  padding-top: 94px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--amber);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 920px;
  margin-bottom: 24px;
  font-size: clamp(2.62rem, 5.1vw, 5.15rem);
  line-height: 1.01;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 3.4vw, 3.45rem);
  line-height: 1.06;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.14rem;
  line-height: 1.25;
}

.hero-copy {
  max-width: 790px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.04rem, 1.6vw, 1.22rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 12px 20px;
  font-weight: 800;
}

.button.primary {
  background: var(--amber);
  color: #21170a;
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.68);
  color: #fff;
}

.tech-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 840px;
}

.tech-strip span {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
  font-weight: 800;
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(76px, 10vw, 126px) 0;
}

.section-heading {
  max-width: 860px;
  margin-bottom: 36px;
}

.section-heading p,
.section-copy p,
.service-card p,
.product-card p,
.process-list span,
.case-card span,
.partner-grid span,
.engagement-grid span,
.cta-band p,
.site-footer span {
  color: var(--muted);
}

.partner-band,
.capability-band,
.engagement-band {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 78px);
  align-items: start;
  padding: clamp(76px, 9vw, 116px) clamp(20px, 6vw, 72px);
}

.partner-band,
.engagement-band {
  background: #eef5f3;
}

.partner-grid,
.engagement-grid,
.capability-grid {
  display: grid;
  gap: 16px;
}

.partner-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.partner-grid article,
.engagement-grid article,
.capability-grid article,
.service-card,
.product-card,
.case-card,
.about-panel,
.contact-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.partner-grid article,
.engagement-grid article {
  min-height: 188px;
  padding: 24px;
}

.partner-grid strong,
.partner-grid span,
.engagement-grid strong,
.engagement-grid span,
.case-card strong,
.case-card span {
  display: block;
}

.partner-grid strong,
.engagement-grid strong,
.case-card strong {
  margin-bottom: 10px;
}

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

.service-card {
  min-height: 286px;
  padding: 24px;
}

.card-icon {
  display: inline-grid;
  width: 48px;
  height: 48px;
  margin-bottom: 26px;
  place-items: center;
  border-radius: 8px;
  background: #eaf4f2;
  color: var(--teal);
  font-size: 0.86rem;
  font-weight: 800;
}

.visual-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 1)),
    linear-gradient(135deg, rgba(8, 121, 111, 0.18), rgba(216, 146, 47, 0.16));
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  min-height: 340px;
  padding: 22px;
}

.product-screen {
  display: grid;
  gap: 10px;
  height: 128px;
  margin-bottom: 22px;
  border: 1px solid #cbd8d5;
  border-radius: 8px;
  padding: 18px;
  background: #102026;
}

.product-screen span {
  display: block;
  border-radius: 8px;
  background: #4fc2b5;
}

.product-screen span:nth-child(2) {
  width: 70%;
  background: #d8922f;
}

.product-screen span:nth-child(3) {
  width: 48%;
  background: rgba(255, 255, 255, 0.55);
}

.product-screen.finance {
  background: #eef5f3;
}

.product-screen.finance span {
  background: var(--teal);
}

.product-screen.communication {
  background: #f7eee2;
}

.product-screen.communication span {
  background: var(--coral);
}

.product-screen.automation {
  background: #eef0f2;
}

.product-screen.automation span {
  background: #36464d;
}

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

.capability-band h2 {
  max-width: 620px;
}

.capability-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.capability-grid article {
  min-height: 250px;
  padding: 24px;
  background: var(--navy-soft);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.capability-grid strong,
.capability-grid span {
  display: block;
}

.capability-grid strong {
  margin-bottom: 18px;
  color: #fff;
}

.capability-grid span {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.72);
}

.industry-grid,
.process-list,
.case-grid,
.engagement-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.industry-grid span {
  min-height: 86px;
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background: var(--panel);
  color: var(--ink);
  font-weight: 800;
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  min-height: 184px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: var(--panel);
}

.process-list strong,
.process-list span {
  display: block;
}

.process-list strong {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1.05rem;
}

.case-card {
  min-height: 180px;
  padding: 24px;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
}

.about-panel {
  display: grid;
  gap: 14px;
  padding: clamp(24px, 4vw, 36px);
}

.about-panel strong,
.about-panel span {
  display: block;
}

.about-panel strong {
  color: var(--teal);
  font-size: 0.8rem;
  text-transform: uppercase;
}

.about-panel span {
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-weight: 800;
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.52fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
  padding: clamp(76px, 9vw, 112px) clamp(20px, 6vw, 72px);
  background: #eef5f3;
}

.contact-panel {
  display: grid;
  gap: 14px;
  padding: 26px;
}

.contact-panel a {
  display: block;
  overflow-wrap: anywhere;
  color: var(--teal);
  font-size: 1.15rem;
  font-weight: 800;
}

.contact-panel span {
  color: var(--muted);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto auto;
  gap: 24px;
  align-items: center;
  padding: 30px clamp(20px, 5vw, 64px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--navy);
  color: #fff;
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 800;
}

@media (max-width: 1120px) {
  .main-nav {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 78px;
    left: 20px;
    right: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--panel);
    color: var(--ink);
    box-shadow: var(--shadow);
  }

  .site-header.is-open .main-nav {
    display: flex;
  }

  .partner-band,
  .capability-band,
  .engagement-band,
  .about-section,
  .cta-band,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .product-grid,
  .capability-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .partner-grid,
  .industry-grid,
  .process-list,
  .case-grid,
  .engagement-grid {
    grid-template-columns: 1fr;
  }
}

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

  .brand small {
    display: none;
  }

  .hero {
    min-height: 94vh;
  }

  .hero-content {
    width: calc(100% - 32px);
    margin-left: 16px;
    padding-top: 84px;
  }

  h1 {
    font-size: 2.44rem;
  }

  .service-grid,
  .product-grid,
  .capability-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .product-card,
  .process-list li {
    min-height: auto;
  }
}
