:root {
  --base-blue: #0052ff;
  --base-blue-soft: #4d83ff;
  --ink: #f7f9ff;
  --muted: #b8c3df;
  --panel: rgba(255, 255, 255, 0.075);
  --panel-strong: rgba(255, 255, 255, 0.11);
  --stroke: rgba(255, 255, 255, 0.18);
  --shadow: 0 28px 80px rgba(0, 82, 255, 0.22);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 78% 18%, rgba(0, 82, 255, 0.42), transparent 28rem),
    radial-gradient(circle at 4% 78%, rgba(0, 82, 255, 0.28), transparent 34rem),
    linear-gradient(135deg, #02040a 0%, #071022 42%, #02040a 100%);
  color: var(--ink);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0 42%, rgba(0, 82, 255, 0.08) 42% 43%, transparent 43% 100%),
    radial-gradient(circle at 50% 100%, rgba(0, 82, 255, 0.18), transparent 42%);
  opacity: 0.9;
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1.12fr);
  gap: 42px;
  align-items: center;
  min-height: 78vh;
}

.hero-copy {
  padding: 26px 0;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--base-blue-soft);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  max-width: 650px;
  font-size: clamp(3.4rem, 10vw, 7.8rem);
  line-height: 0.9;
  letter-spacing: -0.08em;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.lead {
  max-width: 590px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  line-height: 1.6;
}

.status-card {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin-top: 16px;
  padding: 12px 16px;
  border: 1px solid rgba(77, 131, 255, 0.75);
  border-radius: 999px;
  background: rgba(0, 82, 255, 0.11);
  box-shadow: 0 0 32px rgba(0, 82, 255, 0.35);
  color: #ffffff;
  font-weight: 700;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #34d36f;
  box-shadow: 0 0 18px rgba(52, 211, 111, 0.8);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 999px;
  color: #ffffff;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--base-blue);
  box-shadow: 0 16px 42px rgba(0, 82, 255, 0.32);
}

.button.secondary {
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.065);
}

.hero-visual {
  margin: 0;
  border: 1px solid rgba(77, 131, 255, 0.26);
  border-radius: 34px;
  background: var(--panel);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-visual img {
  display: block;
  width: 100%;
  height: auto;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 38px;
}

.panel,
.notice {
  border: 1px solid var(--stroke);
  border-radius: 28px;
  background: var(--panel);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.24);
}

.panel {
  padding: clamp(22px, 4vw, 34px);
}

.large-panel {
  grid-column: 1 / -1;
  background: var(--panel-strong);
}

.panel p,
.panel li,
.notice p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.panel p:last-child,
.notice p:last-child {
  margin-bottom: 0;
}

ul {
  margin: 0;
  padding-left: 1.1em;
}

li + li {
  margin-top: 9px;
}

.notice {
  margin-top: 18px;
  padding: 18px 22px;
}

.notice p {
  font-size: 0.88rem;
}

@media (max-width: 920px) {
  .page-shell {
    width: min(100% - 28px, 680px);
    padding-top: 30px;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 24px;
    min-height: auto;
  }

  .hero-copy {
    padding: 12px 0 0;
  }

  .hero-visual {
    border-radius: 26px;
  }
}

@media (max-width: 640px) {
  .content-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: clamp(3.2rem, 19vw, 5.2rem);
  }

  .actions,
  .button {
    width: 100%;
  }
}
