:root {
  color-scheme: dark;
  --bg: #101114;
  --panel: rgba(24, 26, 32, 0.82);
  --panel-strong: #1b1d24;
  --text: #f8f6ef;
  --muted: #c9c0ae;
  --line: rgba(255, 255, 255, 0.14);
  --orange: #ff8a21;
  --orange-deep: #dc5f17;
  --green: #48d389;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
  background:
    linear-gradient(135deg, rgba(255, 138, 33, 0.22), transparent 32%),
    radial-gradient(circle at 76% 18%, rgba(72, 211, 137, 0.16), transparent 28%),
    var(--bg);
  color: var(--text);
}

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

.page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 40px;
}

.hero {
  min-height: calc(100vh - 120px);
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--line);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 52px;
}

.brand,
.nav-links {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand {
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  color: #19110a;
}

.nav-links a {
  color: var(--muted);
  font-size: 14px;
}

.nav-links a:hover {
  color: var(--text);
}

.hero-grid {
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: 42px;
  padding: 56px 0;
}

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

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

.lead {
  max-width: 640px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 8px;
  font-weight: 800;
}

.primary-action {
  background: var(--orange);
  color: #201208;
}

.secondary-action {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: end center;
  min-height: 520px;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent),
    linear-gradient(135deg, #242833, #14161c 64%);
  border: 1px solid var(--line);
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: auto 10% 7% 10%;
  height: 18%;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.35);
  filter: blur(18px);
}

.hero-visual img {
  position: relative;
  width: min(82%, 460px);
  max-height: 500px;
  object-fit: contain;
  object-position: bottom center;
}

.status-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding-top: 28px;
}

.status-panel article {
  min-height: 160px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.status-panel span {
  color: var(--green);
  font-weight: 900;
}

.status-panel h2 {
  margin: 18px 0 10px;
  font-size: 21px;
}

.status-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

@media (max-width: 860px) {
  .hero-grid,
  .status-panel {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    padding: 36px 0;
  }

  .hero-visual {
    min-height: 420px;
    order: -1;
  }
}

@media (max-width: 560px) {
  .page-shell {
    width: min(100% - 24px, 1180px);
    padding-top: 18px;
  }

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

  h1 {
    font-size: 40px;
  }

  .lead {
    font-size: 16px;
  }
}
