:root {
  color-scheme: light;
  --orange-600: #f26b1d;
  --orange-700: #d95713;
  --orange-100: #fff0e5;
  --ink: #1f2933;
  --muted: #667085;
  --line: #e7e1dc;
  --paper: #fffaf6;
  --white: #ffffff;
  --teal: #167a7f;
  --shadow: 0 16px 40px rgba(31, 41, 51, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 14px clamp(18px, 5vw, 72px);
  border-bottom: 1px solid rgba(231, 225, 220, 0.88);
  background: rgba(255, 250, 246, 0.94);
  backdrop-filter: blur(14px);
}

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

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

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

.brand strong {
  font-size: 17px;
  line-height: 1.2;
}

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  border-radius: 8px;
  padding: 9px 12px;
  color: #344054;
  font-size: 14px;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: var(--orange-100);
  color: var(--orange-700);
  outline: none;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 10px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.section {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 84px 0;
}

.section.compact {
  padding-top: 64px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
  min-height: calc(100vh - 72px);
  padding-top: 42px;
}

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

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

h1 {
  max-width: 720px;
  margin-bottom: 20px;
  font-size: clamp(40px, 7vw, 76px);
  line-height: 1.04;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.16;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
}

.hero-text {
  max-width: 640px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 18px;
}

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

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 11px 18px;
  font-weight: 700;
}

.button.primary {
  background: var(--orange-600);
  color: var(--white);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--orange-700);
  outline: none;
}

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

.button.secondary:hover,
.button.secondary:focus-visible {
  border-color: var(--orange-600);
  color: var(--orange-700);
  outline: none;
}

.hero-panel {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(242, 107, 29, 0.14), rgba(22, 122, 127, 0.1)),
    var(--white);
  box-shadow: var(--shadow);
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 26px;
}

.signal-grid span {
  min-height: 112px;
  border: 1px solid rgba(242, 107, 29, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(242, 107, 29, 0.12) 1px, transparent 1px),
    linear-gradient(rgba(22, 122, 127, 0.1) 1px, transparent 1px),
    rgba(255, 255, 255, 0.72);
  background-size: 18px 18px;
}

.hero-panel dl {
  position: absolute;
  right: 26px;
  bottom: 26px;
  left: 26px;
  display: grid;
  gap: 12px;
  margin: 0;
}

.hero-panel dl div,
.service-card,
.feature-item,
.timeline li {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
}

.hero-panel dl div {
  padding: 14px 16px;
}

.hero-panel dt {
  font-weight: 800;
}

.hero-panel dd {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 28px;
}

.section-heading h2 {
  margin-bottom: 0;
}

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

.service-card {
  min-height: 238px;
  padding: 22px;
}

.card-index {
  display: inline-block;
  margin-bottom: 20px;
  color: var(--orange-700);
  font-size: 13px;
  font-weight: 800;
}

.service-card p,
.feature-item span,
.timeline p,
.contact-band p,
address {
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: clamp(28px, 5vw, 64px);
}

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

.feature-item {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 18px;
  padding: 18px 20px;
}

.feature-item strong {
  color: var(--orange-700);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline li {
  min-height: 174px;
  padding: 20px;
}

.timeline span {
  display: block;
  margin-bottom: 12px;
  color: var(--teal);
  font-weight: 800;
}

.scenario-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-content: flex-start;
}

.scenario-tags span {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 12px 15px;
  color: #344054;
  font-weight: 700;
}

.contact-band {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 390px);
  gap: 28px;
  width: min(1120px, calc(100% - 36px));
  margin: 22px auto 64px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  padding: clamp(28px, 5vw, 48px);
}

.contact-band h2 {
  margin-bottom: 12px;
}

.contact-band p,
.contact-band address {
  color: rgba(255, 255, 255, 0.76);
}

address {
  display: grid;
  gap: 10px;
  font-style: normal;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
  border-top: 1px solid var(--line);
  padding: 24px 18px;
  color: var(--muted);
  font-size: 14px;
  text-align: center;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--orange-700);
  outline: none;
}

@media (max-width: 920px) {
  .hero,
  .split,
  .contact-band {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
  }

  .hero-panel {
    min-height: 380px;
  }

  .card-grid,
  .timeline {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 66px;
    padding: 12px 18px;
  }

  .brand small {
    display: none;
  }

  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: 65px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    padding: 8px;
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 12px;
  }

  .section {
    width: min(100% - 28px, 1120px);
    padding: 56px 0;
  }

  .hero {
    padding-top: 36px;
  }

  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 28px;
  }

  .hero-text {
    font-size: 16px;
  }

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

  .hero-panel {
    min-height: 330px;
  }

  .signal-grid {
    gap: 10px;
    padding: 18px;
  }

  .signal-grid span {
    min-height: 90px;
  }

  .hero-panel dl {
    right: 18px;
    bottom: 18px;
    left: 18px;
  }

  .card-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .service-card,
  .timeline li {
    min-height: 0;
  }

  .feature-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .contact-band {
    width: min(100% - 28px, 1120px);
    margin-bottom: 42px;
  }
}
