:root {
  --ink: #142029;
  --muted: #66727a;
  --line: #dbe1e3;
  --paper: #f4f1ea;
  --paper-strong: #fffdf8;
  --steel: #234758;
  --deep: #122b33;
  --orange: #d98626;
  --mint: #4d9f92;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans SC", sans-serif;
  letter-spacing: 0;
}

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

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  color: #fff;
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 13px;
  font-weight: 900;
}

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

.brand strong {
  font-size: 18px;
}

.brand small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 26px);
  font-size: 14px;
}

nav a {
  color: rgba(255, 255, 255, 0.86);
}

.hero {
  position: relative;
  min-height: 86vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 122px clamp(20px, 6vw, 84px) 72px;
  color: #fff;
}

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

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

.hero-shade {
  background:
    linear-gradient(90deg, rgba(8, 22, 28, 0.91) 0%, rgba(11, 30, 38, 0.76) 44%, rgba(13, 32, 38, 0.18) 100%),
    linear-gradient(0deg, rgba(9, 21, 25, 0.72) 0%, rgba(9, 21, 25, 0) 48%);
}

.hero-content {
  position: relative;
  width: min(780px, 100%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
}

.hero .eyebrow {
  color: #ffb65e;
}

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

h1,
h2,
h3,
p,
a,
li {
  overflow-wrap: anywhere;
}

h1 {
  margin-bottom: 16px;
  font-size: 94px;
  line-height: 0.95;
  font-weight: 900;
}

h2 {
  margin-bottom: 0;
  font-size: 42px;
  line-height: 1.12;
}

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

.lead {
  width: min(680px, 100%);
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 21px;
  line-height: 1.7;
}

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

.primary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 20px;
  border-radius: 6px;
  background: #ffb65e;
  color: #172027;
  font-weight: 900;
}

.section {
  padding: clamp(54px, 8vw, 96px) clamp(20px, 6vw, 84px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.44fr) minmax(0, 1fr);
  gap: 32px;
  margin-bottom: 34px;
}

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

.proof-grid article {
  min-height: 250px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-strong);
}

.proof-grid span {
  display: block;
  margin-bottom: 52px;
  color: var(--steel);
  font-size: 13px;
  font-weight: 900;
}

.proof-grid p,
.workflow-copy p,
.contact-panel p {
  color: var(--muted);
  line-height: 1.75;
}

.workflow-band {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.78fr);
  gap: clamp(28px, 6vw, 74px);
  background: #e7eef0;
}

.workflow-list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: workflow;
}

.workflow-list li {
  position: relative;
  padding: 22px 0 22px 52px;
  border-bottom: 1px solid #c7d5d8;
  color: var(--muted);
  line-height: 1.7;
}

.workflow-list li::before {
  counter-increment: workflow;
  content: counter(workflow, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 24px;
  color: var(--orange);
  font-weight: 900;
}

.workflow-list span {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 900;
}

.contact-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  gap: 34px;
  align-items: center;
  background: var(--deep);
  color: #fff;
}

.contact-panel {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.contact-panel p {
  color: rgba(255, 255, 255, 0.78);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px clamp(20px, 6vw, 84px);
  background: #101b20;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

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

  nav {
    display: none;
  }

  .hero {
    min-height: 82vh;
    padding-top: 106px;
  }

  h1 {
    font-size: 64px;
  }

  h2 {
    font-size: 34px;
  }

  .lead {
    font-size: 18px;
  }

  .section-heading,
  .workflow-band,
  .contact-band,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .proof-grid article {
    min-height: 0;
  }

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

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

  .brand small {
    display: none;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .section {
    padding-right: 28px;
    padding-left: 28px;
  }

  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 26px;
    line-height: 1.18;
  }

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

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