*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: #e5e7eb;
  background:
    radial-gradient(1200px 700px at 10% -10%, rgba(96, 165, 250, 0.3), transparent 60%),
    radial-gradient(1000px 550px at 90% 0%, rgba(167, 139, 250, 0.25), transparent 58%),
    linear-gradient(160deg, #0b1020 0%, #111a34 45%, #0d1326 100%);
}

.page {
  width: min(94vw, 860px);
  padding: 2rem 1rem;
}

.hero {
  position: relative;
  overflow: hidden;
  text-align: center;
  border-radius: 26px;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: linear-gradient(
    165deg,
    rgba(255, 255, 255, 0.12),
    rgba(255, 255, 255, 0.03)
  );
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow:
    0 28px 70px rgba(2, 8, 23, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto -20% -45% auto;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.22), rgba(56, 189, 248, 0));
  pointer-events: none;
}

.title {
  position: relative;
  margin: 0;
  padding: 0.25rem 0 1.25rem;
  font-size: clamp(1.7rem, 5vw, 3.1rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.15;
  color: #f9fafb;
  text-shadow: 0 8px 35px rgba(0, 0, 0, 0.5);
}

.image-shell {
  border-radius: 18px;
  padding: clamp(0.4rem, 1.5vw, 0.8rem);
  background: linear-gradient(
    135deg,
    rgba(148, 163, 184, 0.5),
    rgba(203, 213, 225, 0.2) 35%,
    rgba(14, 165, 233, 0.35)
  );
  box-shadow:
    0 18px 30px rgba(2, 6, 23, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.hero-image {
  width: 100%;
  max-width: 740px;
  margin: 0 auto;
  border-radius: 13px;
  display: block;
  object-fit: cover;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

@media (max-width: 640px) {
  .hero {
    border-radius: 18px;
    padding: 1rem;
  }

  .title {
    padding-bottom: 0.9rem;
  }
}
