:root {
  --ink: #101416;
  --muted: #5f6b70;
  --line: #dfe5e2;
  --paper: #f7f9f8;
  --soft: #eef3f0;
  --white: #ffffff;
  --green: #76b900;
  --green-dark: #4f7f00;
  --steel: #253039;
  --blue: #0f5573;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 94px;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: #060a0c;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  color: var(--white);
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-logo {
  display: inline-grid;
  place-items: center;
  width: 88px;
  height: 88px;
  overflow: visible;
  transform: translateY(-1px);
}

.brand-logo img {
  display: block;
  width: 118px;
  height: 118px;
  object-fit: contain;
}

.brand-text {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  margin-left: 24px;
  color: var(--white);
  font-size: 21px;
  font-weight: 900;
  line-height: 1;
  transform: translateY(14px);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 700;
  transform: translateY(14px);
}

.main-nav a {
  padding: 8px 0;
}

.main-nav a:hover,
.nav-highlight {
  color: var(--white);
}

.nav-highlight {
  border-bottom: 3px solid var(--green);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(3, 7, 9, 0.94) 0%, rgba(3, 7, 9, 0.8) 38%, rgba(3, 7, 9, 0.28) 78%),
    linear-gradient(0deg, rgba(3, 7, 9, 0.7), rgba(3, 7, 9, 0.08));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(780px, calc(100% - 36px));
  margin-left: clamp(18px, 6vw, 84px);
  padding-top: 74px;
}

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

.eyebrow.dark {
  color: var(--green-dark);
}

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(40px, 5.6vw, 72px);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.15;
}

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

.hero-copy {
  max-width: 650px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(17px, 2vw, 21px);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-weight: 800;
}

.button.primary {
  color: #0f170c;
  background: var(--green);
}

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

.button.outline-dark {
  color: var(--ink);
  border-color: #aab6b0;
  background: transparent;
}

.dark-button {
  color: #0f170c;
}

.section,
.intro-band,
.brands-section,
.process-section,
.contact-section,
.ai-feature {
  padding: clamp(58px, 8vw, 110px) clamp(18px, 4vw, 56px);
}

.section.compact {
  padding-top: clamp(44px, 6vw, 82px);
}

.section-inner {
  width: min(1160px, 100%);
  margin: 0 auto;
}

.intro-band {
  background: var(--white);
}

.split,
.process,
.contact-layout,
.industry-layout,
.ai-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

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

.copy-stack p,
.process li,
.contact-section p {
  font-size: 18px;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

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

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

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

.solution-card {
  min-height: 280px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(26, 36, 42, 0.08);
}

.product-card {
  padding: 0;
  overflow: hidden;
}

.product-card h3,
.product-card p {
  padding-inline: 24px;
}

.product-card h3 {
  margin-top: 22px;
}

.product-card p {
  padding-bottom: 24px;
}

.product-image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #081012;
}

.card-icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 34px;
  margin-bottom: 36px;
  color: #0f170c;
  background: var(--green);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 900;
}

.solution-card p {
  margin-bottom: 0;
}

.brands-section {
  background: var(--white);
}

.brand-wall {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  padding-top: 14px;
}

.logo-tile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 146px;
  width: auto;
  height: 86px;
  padding: 18px 24px;
  color: var(--steel);
  background: var(--white);
  border: 2px solid #d0dad5;
  border-radius: 8px;
  box-shadow: 0 18px 38px rgba(26, 36, 42, 0.1);
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
}

.logo-tile img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.logo-wordmark {
  display: block;
  max-width: 150px;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.05;
  text-align: center;
  text-transform: uppercase;
}

.logo-nvidia {
  color: #0f170c;
  background: var(--green);
  border-color: var(--green);
}

.logo-amd {
  color: var(--white);
  background: #111;
  border-color: #111;
}

.logo-intel,
.logo-dell,
.logo-hp {
  color: #ffffff;
  background: #0f75bc;
  border-color: #0f75bc;
}

.logo-lenovo {
  color: #ffffff;
  background: #e2231a;
  border-color: #e2231a;
}

.logo-samsung {
  color: #ffffff;
  background: #1428a0;
  border-color: #1428a0;
}

.logo-wd {
  color: #ffffff;
  background: #0067b1;
  border-color: #0067b1;
}

.ai-feature {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(8, 13, 15, 0.97), rgba(28, 42, 48, 0.96)),
    var(--steel);
}

.ai-copy p {
  max-width: 640px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.ai-panel {
  display: grid;
  gap: 12px;
  align-self: stretch;
}

.metric-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.metric-row strong {
  color: var(--white);
  text-align: right;
}

.section#industries,
.process-section,
.contact-section {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(16, 20, 22, 0.96), rgba(25, 39, 47, 0.96)),
    var(--steel);
}

.section#industries h2,
.process-section h2,
.contact-section h2 {
  color: var(--white);
}

.section#industries .eyebrow.dark,
.process-section .eyebrow.dark,
.contact-section .eyebrow.dark {
  color: var(--green);
}

.section#industries p,
.process-section p,
.contact-section p {
  color: rgba(255, 255, 255, 0.82);
}

.industry-layout {
  align-items: center;
}

.industry-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.industry-list span {
  display: block;
  padding: 16px 18px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  font-weight: 700;
}

.steps {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.steps li {
  counter-increment: step;
  position: relative;
  padding: 18px 18px 18px 62px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.steps li::before {
  content: counter(step);
  position: absolute;
  left: 18px;
  top: 17px;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: #0f170c;
  background: var(--green);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 800;
}

.contact-layout {
  align-items: center;
}

.contact-actions {
  justify-content: flex-end;
}

.contact-details {
  display: grid;
  gap: 8px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  font-weight: 800;
}

.contact-details a {
  color: rgba(255, 255, 255, 0.92);
  border-bottom: 2px solid rgba(118, 185, 0, 0.65);
}

.contact-cta {
  margin-top: 24px;
  justify-content: flex-start;
}

.contact-mark {
  justify-self: end;
  display: grid;
  justify-items: center;
  gap: 0;
  width: min(430px, 100%);
}

.contact-mark img {
  display: block;
  width: min(360px, 92%);
  height: auto;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px clamp(18px, 4vw, 56px);
  color: rgba(255, 255, 255, 0.72);
  background: #0c1113;
  font-size: 14px;
}

@media (max-width: 980px) {
  .site-header {
    position: absolute;
    flex-direction: column;
    align-items: flex-start;
  }

  .main-nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero {
    min-height: 860px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(3, 7, 9, 0.9), rgba(3, 7, 9, 0.55)),
      linear-gradient(0deg, rgba(3, 7, 9, 0.86), rgba(3, 7, 9, 0.16));
  }

  .hero-content {
    margin: 0 auto;
    padding-top: 150px;
  }

  .split,
  .process,
  .contact-layout,
  .industry-layout,
  .ai-layout {
    grid-template-columns: 1fr;
  }

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

  .contact-actions,
  .contact-mark {
    justify-content: flex-start;
    justify-self: start;
  }
}

@media (min-width: 621px) and (max-width: 980px) {
  .site-header {
    position: fixed;
    flex-direction: row;
    align-items: center;
  }

  .main-nav {
    width: auto;
    overflow-x: visible;
    padding-bottom: 0;
  }

  .hero-content {
    padding-top: 74px;
  }

  .contact-layout {
    grid-template-columns: minmax(0, 1.25fr) minmax(220px, 0.75fr);
  }

  .contact-mark {
    justify-self: end;
  }
}

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

  .main-nav {
    gap: 16px;
    font-size: 13px;
  }

  .hero {
    min-height: 850px;
  }

  .hero-content {
    padding-top: 170px;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .solution-grid,
  .solution-grid.three,
  .solution-grid.product-grid,
  .industry-list {
    grid-template-columns: 1fr;
  }

  .brand-wall {
    gap: 12px;
  }

  .logo-tile {
    min-width: calc(50% - 6px);
    height: 72px;
    padding: 16px 18px;
  }

  .solution-card {
    min-height: 0;
  }

  .metric-row {
    display: grid;
  }

  .metric-row strong {
    text-align: left;
  }

  .site-footer {
    flex-direction: column;
  }
}
