.page-shell {
  min-height: 100vh;
  overflow: hidden;
}

.hero {
  position: relative;
  padding: 28px 24px 72px;
}

.hero::before,
.hero::after {
  content: '';
  position: absolute;
  inset: auto;
  width: 360px;
  height: 360px;
  border-radius: 36px;
  transform: rotate(35deg);
  pointer-events: none;
}

.hero::before {
  top: -140px;
  right: 120px;
  background: linear-gradient(145deg, rgba(73, 179, 211, 0.18), rgba(47, 115, 188, 0.05));
}

.hero::after {
  right: -140px;
  bottom: 40px;
  background: linear-gradient(145deg, rgba(47, 115, 188, 0.12), rgba(220, 239, 250, 0.26));
}

.topbar,
.hero-content,
.section-grid {
  width: min(100%, var(--container-width));
  margin: 0 auto;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 60px;
}

.topbar-links {
  display: inline-flex;
  gap: 24px;
  color: var(--color-text-muted);
  font-weight: 700;
}

.hero-content {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.9fr);
  gap: 42px;
  align-items: center;
}

.hero-copy h1 {
  margin: 18px 0 20px;
  max-width: 12ch;
  font-size: clamp(2.7rem, 5vw, 4.9rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.hero-copy p {
  max-width: 56ch;
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.8;
  color: var(--color-text-muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-panel {
  position: relative;
  padding: 26px;
  border-radius: 34px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(240, 248, 252, 0.82));
  border: 1px solid rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
}

.hero-panel::before,
.hero-panel::after {
  content: '';
  position: absolute;
  border-radius: 28px;
  transform: rotate(34deg);
}

.hero-panel::before {
  width: 120px;
  height: 120px;
  top: -34px;
  right: 42px;
  background: rgba(73, 179, 211, 0.14);
}

.hero-panel::after {
  width: 160px;
  height: 160px;
  right: -44px;
  bottom: -52px;
  background: rgba(47, 115, 188, 0.08);
}

.status-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 18px;
}

.status-card {
  position: relative;
  z-index: 1;
  padding: 22px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--color-border);
}

.status-card-main {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(160deg, rgba(47, 115, 188, 0.96), rgba(73, 179, 211, 0.88));
  color: #ffffff;
}

.card-label {
  display: block;
  margin-bottom: 10px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.82;
}

.status-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.5rem;
  letter-spacing: -0.04em;
}

.status-card p {
  margin: 0;
  line-height: 1.7;
  color: inherit;
  opacity: 0.9;
}

.section {
  padding: 0 24px 84px;
}

.section-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.feature-card {
  padding: 30px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(47, 115, 188, 0.08);
  box-shadow: var(--shadow-soft);
}

.feature-index {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--color-secondary);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.feature-card h2 {
  margin: 0 0 12px;
  font-size: 1.4rem;
  letter-spacing: -0.04em;
}

.feature-card p {
  margin: 0;
  line-height: 1.8;
  color: var(--color-text-muted);
}

@media (max-width: 980px) {
  .hero-content,
  .section-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    max-width: 14ch;
  }
}

@media (max-width: 720px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 40px;
  }

  .topbar-links {
    flex-direction: column;
    gap: 14px;
  }

  .status-grid {
    grid-template-columns: 1fr;
  }

  .hero,
  .section {
    padding-left: 18px;
    padding-right: 18px;
  }
}
