* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  color: #17202a;
  font-family:
    Inter, "Microsoft YaHei", "PingFang SC", system-ui, -apple-system, sans-serif;
  background: #f5f7fb;
}

button {
  font: inherit;
}

.page {
  min-height: 100vh;
}

.hero {
  position: relative;
  min-height: 68vh;
  display: grid;
  align-items: center;
  padding: 72px clamp(20px, 6vw, 88px);
  overflow: hidden;
  background: linear-gradient(135deg, #f7fbff 0%, #eef6f1 48%, #fff7ed 100%);
}

.hero-media {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(23, 32, 42, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 32, 42, 0.08) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent 82%);
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(2px);
  opacity: 0.92;
}

.orb-a {
  width: 320px;
  height: 320px;
  top: 12%;
  right: 10%;
  background: radial-gradient(circle at 35% 35%, #ffffff, #7dd3fc 45%, #38bdf8);
}

.orb-b {
  width: 220px;
  height: 220px;
  right: 28%;
  bottom: 10%;
  background: radial-gradient(circle at 35% 35%, #ffffff, #fed7aa 45%, #fb923c);
}

.hero-content {
  position: relative;
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 18px;
  color: #0f766e;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  color: #111827;
  font-size: clamp(44px, 9vw, 92px);
  line-height: 1;
  letter-spacing: 0;
}

.lead {
  max-width: 620px;
  margin: 24px 0 0;
  color: #425466;
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.65;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 36px;
}

.actions button {
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: 8px;
  color: #ffffff;
  background: #111827;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(17, 24, 39, 0.22);
}

.actions button:hover {
  background: #0f766e;
}

#statusText {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  border: 1px solid rgba(15, 118, 110, 0.2);
  border-radius: 8px;
  color: #0f766e;
  background: rgba(255, 255, 255, 0.72);
}

.panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: -44px auto 0;
  padding: 0 20px 64px;
  position: relative;
}

article {
  min-height: 190px;
  padding: 26px;
  border: 1px solid rgba(17, 24, 39, 0.09);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 40px rgba(17, 24, 39, 0.08);
}

article span {
  color: #fb923c;
  font-weight: 900;
}

article h2 {
  margin: 18px 0 10px;
  color: #111827;
  font-size: 22px;
}

article p {
  margin: 0;
  color: #52616f;
  line-height: 1.7;
}

@media (max-width: 760px) {
  .hero {
    min-height: 64vh;
    padding-top: 54px;
  }

  .orb-a {
    right: -120px;
  }

  .orb-b {
    right: 18px;
    bottom: 4%;
  }

  .panel {
    grid-template-columns: 1fr;
    margin-top: 0;
    padding-top: 20px;
  }
}
