:root {
  --bg: #081120;
  --bg-2: #0f1d37;
  --card: rgba(11, 20, 38, 0.72);
  --card-border: rgba(255, 255, 255, 0.08);
  --text: #f5f7ff;
  --muted: #a8b3c7;
  --primary: #7c5cff;
  --primary-2: #5ed0ff;
  --danger: #ff6767;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(124, 92, 255, 0.22), transparent 30%),
    radial-gradient(circle at bottom right, rgba(94, 208, 255, 0.16), transparent 24%),
    linear-gradient(135deg, var(--bg), var(--bg-2));
  overflow-x: hidden;
}

.bg-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0.5;
  pointer-events: none;
}

.orb-1 {
  width: 260px;
  height: 260px;
  top: -40px;
  left: -40px;
  background: rgba(124, 92, 255, 0.32);
}

.orb-2 {
  width: 320px;
  height: 320px;
  right: -80px;
  bottom: -100px;
  background: rgba(94, 208, 255, 0.24);
}

.page-shell {
  position: relative;
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 40px 0 56px;
}

.hero-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 28px;
  padding: 44px 48px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.hero-card-single {
  max-width: 980px;
  margin: 0 auto;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: 16px 24px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--primary-2);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

h1 {
  margin: 18px 0 14px;
  max-width: 10ch;
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.lead {
  max-width: 58ch;
  margin: 0;
  font-size: 1.06rem;
  line-height: 1.8;
  color: var(--muted);
}

.status-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-weight: 600;
}

.status-pill-danger {
  color: #ffd2d2;
  background: rgba(255, 103, 103, 0.12);
  border-color: rgba(255, 103, 103, 0.2);
}

.status-pill-link {
  text-decoration: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.status-pill-link:hover {
  transform: translateY(-2px);
  border-color: rgba(94, 208, 255, 0.45);
  box-shadow: 0 10px 24px rgba(94, 208, 255, 0.12);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--danger);
  box-shadow: 0 0 0 6px rgba(255, 103, 103, 0.14);
}

.notice-card {
  margin-top: 34px;
  max-width: 620px;
  padding: 24px 26px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.notice-card h2 {
  margin: 0 0 10px;
  font-size: 1.2rem;
}

.notice-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 420px;
  padding: 8px 0 0;
}

.hero-visual img {
  display: block;
  width: min(100%, 470px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.32));
}

@media (max-width: 960px) {
  .hero-card {
    padding: 32px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: -1;
    min-height: auto;
    padding-bottom: 10px;
  }

  .hero-visual img {
    width: min(100%, 420px);
  }

  h1 {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 20px, 1100px);
    padding: 18px 0 28px;
  }

  .hero-card {
    padding: 24px;
    border-radius: 22px;
  }

  h1 {
    font-size: clamp(2.1rem, 10vw, 3.3rem);
  }

  .lead {
    font-size: 1rem;
  }

  .notice-card {
    padding: 20px;
  }

  .hero-visual img {
    width: min(100%, 340px);
  }
}
