:root {
  color-scheme: light;
  --page: #f6f8fb;
  --surface: #ffffff;
  --surface-soft: #eaf0f7;
  --ink: #111b2c;
  --muted: #526176;
  --line: #ced8e5;
  --accent: #145cff;
  --accent-strong: #0845ca;
  --on-accent: #f8fbff;
  --shadow: 0 24px 70px rgba(35, 63, 103, 0.13);
  --radius: 8px;
  --shell: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font-family: "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
  line-height: 1.75;
}

a {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 20;
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--accent);
  color: var(--on-accent);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid color-mix(in srgb, var(--line) 82%, transparent);
  background: color-mix(in srgb, var(--page) 90%, transparent);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: var(--shell);
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  white-space: nowrap;
}

.brand img {
  width: 190px;
  height: auto;
}

.brand span {
  padding-left: 12px;
  border-left: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
}

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

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--accent);
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  background: var(--accent);
  color: var(--on-accent);
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  background: var(--accent-strong);
  transform: translateY(-1px);
}

.button:active {
  transform: translateY(1px);
}

.button-secondary {
  background: transparent;
  color: var(--accent-strong);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: var(--surface-soft);
}

.button-inverse {
  border-color: rgba(255, 255, 255, 0.48);
  background: transparent;
  color: #ffffff;
}

.button-inverse:hover,
.button-inverse:focus-visible {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
}

a:focus-visible,
summary:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--accent) 48%, transparent);
  outline-offset: 4px;
}

.hero,
.content-section,
.final-cta {
  width: var(--shell);
  margin: 0 auto;
}

.hero {
  min-height: min(720px, calc(100dvh - 104px));
  padding: 58px 0 44px;
  display: grid;
  grid-template-columns: minmax(320px, 0.76fr) minmax(520px, 1.24fr);
  align-items: center;
  gap: clamp(34px, 5vw, 72px);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent-strong);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 10ch;
  margin: 0;
  font-size: 62px;
  line-height: 1.08;
  letter-spacing: 0;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 36em;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.8vw, 21px);
}

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

.hero-visual {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  object-position: top left;
}

.hero-copy,
.hero-visual {
  animation: page-enter 680ms cubic-bezier(0.2, 0.75, 0.25, 1) both;
}

.hero-visual {
  animation-delay: 100ms;
}

.product-live-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px !important;
  color: var(--muted) !important;
  font-size: 13px !important;
}

.product-live-note span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #0c9b72;
  box-shadow: 0 0 0 5px rgba(12, 155, 114, 0.1);
}

.visual-caption {
  margin: 0;
  padding: 14px 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.proof-rail {
  width: 100%;
  border-block: 1px solid var(--line);
  background: var(--surface);
}

.proof-rail-inner {
  width: var(--shell);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.proof-item {
  min-height: 126px;
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--line);
}

.proof-item:first-child {
  border-left: 1px solid var(--line);
}

.proof-item strong {
  font-size: 19px;
}

.proof-item span {
  color: var(--muted);
  font-size: 14px;
}

.content-section {
  padding: 112px 0;
}

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

.section-heading h2 {
  margin: 0;
  font-size: 48px;
  line-height: 1.16;
  letter-spacing: 0;
}

.section-heading p {
  max-width: 62ch;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
}

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

.feature {
  min-height: 220px;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.feature:nth-child(3n + 1) {
  grid-row: auto;
  min-height: 220px;
  background: #edf4ff;
  color: var(--ink);
}

.feature:nth-child(3n + 1) p {
  color: var(--muted);
}

.feature h3 {
  margin: 0;
  font-size: 28px;
  line-height: 1.28;
  letter-spacing: 0;
}

.feature p {
  max-width: 46ch;
  margin: 14px 0 0;
  color: var(--muted);
}

.media-split {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: clamp(40px, 7vw, 88px);
}

.media-split figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.media-split figure img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  object-position: top left;
}

.media-split--reverse {
  grid-template-columns: 0.92fr 1.08fr;
}

.media-copy h2 {
  margin: 0;
  font-size: 46px;
  line-height: 1.16;
  letter-spacing: 0;
}

.media-copy p {
  margin: 20px 0 0;
  color: var(--muted);
}

.plain-points {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.plain-points li {
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.plain-points strong {
  display: block;
  margin-bottom: 4px;
}

.process {
  counter-reset: process;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.process article {
  counter-increment: process;
  min-height: 250px;
  padding: 28px;
  border-top: 2px solid var(--accent);
  border-right: 1px solid var(--line);
}

.process article:last-child {
  border-right: 0;
}

.process article::before {
  content: counter(process, decimal-leading-zero);
  display: block;
  margin-bottom: 36px;
  color: var(--accent-strong);
  font-size: 13px;
  font-weight: 800;
}

.process h3 {
  margin: 0;
  font-size: 21px;
}

.process p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.faq-list {
  max-width: 900px;
}

.faq-list details {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  cursor: pointer;
  font-size: 19px;
  font-weight: 800;
}

.faq-list p {
  max-width: 68ch;
  margin: 14px 0 0;
  color: var(--muted);
}

.final-cta {
  margin-bottom: 88px;
  padding: clamp(36px, 7vw, 80px);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--page);
}

.final-cta h2 {
  max-width: 16ch;
  margin: 0;
  font-size: 44px;
  line-height: 1.15;
  letter-spacing: 0;
}

.final-cta p {
  max-width: 58ch;
  margin: 14px 0 0;
  color: color-mix(in srgb, var(--page) 70%, transparent);
}

.final-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.footer-shell {
  width: var(--shell);
  margin: 0 auto;
  padding: 44px 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  color: var(--muted);
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--accent);
}

@keyframes page-enter {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .main-nav a:not(.button) {
    display: none;
  }

  .hero,
  .media-split,
  .media-split--reverse {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 52px;
  }

  .hero h1 {
    font-size: 52px;
  }

  .proof-rail-inner,
  .process {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-item:nth-child(3) {
    border-left: 1px solid var(--line);
  }

  .process article:nth-child(2) {
    border-right: 0;
  }

  .process article:nth-child(n + 3) {
    border-top-color: var(--line);
  }
}

@media (max-width: 640px) {
  :root {
    --shell: min(100% - 28px, 1180px);
  }

  .nav-shell {
    min-height: 64px;
  }

  .brand img {
    width: 160px;
  }

  .brand span {
    display: none;
  }

  .main-nav {
    gap: 10px;
  }

  .hero {
    padding: 28px 0 20px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .section-heading h2,
  .media-copy h2,
  .final-cta h2 {
    font-size: 34px;
  }

  .content-section {
    padding: 78px 0;
  }

  .proof-rail-inner,
  .feature-grid,
  .process,
  .final-cta,
  .footer-shell {
    grid-template-columns: 1fr;
  }

  .proof-item,
  .proof-item:first-child,
  .proof-item:nth-child(3) {
    min-height: auto;
    border-right: 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .feature:nth-child(3n + 1) {
    grid-row: auto;
    min-height: 220px;
  }

  .process article,
  .process article:nth-child(2),
  .process article:nth-child(n + 3) {
    min-height: auto;
    border-top: 1px solid var(--line);
    border-right: 0;
  }

  .final-cta {
    margin-bottom: 48px;
  }

  .final-actions {
    justify-content: flex-start;
  }

  .footer-shell {
    padding: 34px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-delay: 0ms !important;
  }
}
