:root {
  --orange: #f05a1a;
  --orange-dark: #b83d0f;
  --ink: #1f252d;
  --muted: #66707f;
  --line: #d8dee7;
  --soft: #f4f7fa;
  --green: #1f7a5c;
  --blue: #1c5f8f;
  --paper: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

.text-link {
  color: var(--orange-dark);
  font-weight: 800;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  min-width: 170px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--orange);
  color: white;
  font-weight: 800;
  font-style: italic;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 22px;
  letter-spacing: 0;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
}

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

.main-nav a:hover,
.footer-links a:hover {
  color: var(--orange-dark);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.header-cta,
.button.primary {
  color: white;
  background: var(--orange);
}

.button.secondary {
  color: var(--ink);
  background: white;
  border-color: var(--line);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  min-height: calc(100vh - 72px);
  padding: clamp(34px, 6vw, 74px) clamp(18px, 4vw, 56px) 46px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, #ffffff 0%, #ffffff 58%, #eef4f8 58%, #eef4f8 100%);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--orange-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 820px;
  margin-bottom: 20px;
  font-size: clamp(42px, 7vw, 78px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.hero-text {
  max-width: 680px;
  color: var(--muted);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 32px;
}

.trust-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 720px;
  margin: 0;
}

.trust-metrics div {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.trust-metrics dt {
  font-size: 22px;
  font-weight: 800;
}

.trust-metrics dd {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.hero-media {
  display: grid;
  gap: 14px;
}

.hero-product,
.media-strip img,
.capability-panel {
  width: 100%;
  display: block;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  object-fit: cover;
}

.hero-product {
  aspect-ratio: 4 / 3;
}

.media-strip {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 14px;
}

.media-strip img,
.capability-panel {
  height: 130px;
}

.capability-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px;
  color: var(--ink);
}

.capability-panel strong {
  margin-bottom: 8px;
  font-size: 17px;
}

.capability-panel span {
  color: var(--muted);
  font-size: 13px;
}

.capability-panel.dark {
  border-color: #102331;
  color: white;
  background: #102331;
}

.capability-panel.dark span {
  color: #c8d5df;
}

.section {
  padding: clamp(46px, 7vw, 82px) clamp(18px, 4vw, 56px);
}

.band {
  background: var(--soft);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 28px;
}

.section-heading > p {
  max-width: 590px;
  margin-bottom: 0;
  color: var(--muted);
}

.section-heading.compact {
  display: block;
  max-width: 760px;
}

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

.category-grid article,
.steps article {
  min-height: 180px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.category-grid p,
.steps p,
.contact-copy p,
.form-note {
  color: var(--muted);
}

.toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 16px;
}

.toolbar label,
.rfq-form label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 11px 12px;
  color: var(--ink);
  font: inherit;
  background: white;
}

.toolbar input {
  width: min(380px, 80vw);
}

.toolbar select {
  width: 220px;
}

.inventory-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.inventory-table {
  width: 100%;
  min-width: 980px;
  border-collapse: collapse;
  background: white;
}

.inventory-table th,
.inventory-table td {
  padding: 13px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: middle;
  font-size: 14px;
}

.inventory-table th {
  color: #4d5866;
  background: #f7f9fb;
  font-size: 12px;
  text-transform: uppercase;
}

.inventory-table tbody tr:hover {
  background: #fff8f4;
}

.part-number {
  font-weight: 800;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 9px;
  border-radius: 999px;
  color: white;
  font-size: 12px;
  font-weight: 800;
}

.tag.Memory {
  background: var(--blue);
}

.tag.Server {
  background: #334155;
}

.tag.Industrial {
  background: var(--green);
}

.rfq-link {
  color: var(--orange-dark);
  border: 0;
  background: transparent;
  font-weight: 800;
  cursor: pointer;
}

.process-section {
  background: #102331;
  color: white;
}

.process-section .eyebrow {
  color: #ffb28a;
}

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

.steps article {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
}

.steps span {
  color: #ffb28a;
  font-weight: 800;
}

.steps p {
  color: #c8d5df;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1fr);
  gap: clamp(28px, 5vw, 70px);
}

.contact-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.rfq-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.form-note {
  margin: 0;
  font-size: 12px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
  background: #f7f9fb;
}

.site-footer p {
  margin: 4px 0 0;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 18px;
  color: var(--muted);
}

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

  .main-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    background: #ffffff;
  }

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

@media (max-width: 640px) {
  .header-cta {
    display: none;
  }

  h1 {
    font-size: 40px;
  }

  .trust-metrics,
  .category-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .section-heading {
    display: block;
  }

  .media-strip {
    grid-template-columns: 1fr;
  }

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