:root {
  color-scheme: dark;
  font-family:
    "Segoe UI",
    "Yu Gothic UI",
    "Hiragino Sans",
    Meiryo,
    sans-serif;
  background: #05070b;
  color: #f8fafc;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 20% 10%, rgba(20, 184, 166, 0.2), transparent 28%),
    radial-gradient(circle at 82% 0%, rgba(244, 114, 182, 0.18), transparent 32%),
    linear-gradient(180deg, #07111f 0%, #05070b 48%, #090b13 100%);
}

a {
  color: inherit;
}

.page-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 40px 0 64px;
}

.hero {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 36px;
  align-items: center;
  min-height: min(760px, calc(100vh - 72px));
  padding-bottom: 28px;
}

.hero-media {
  overflow: hidden;
  border: 1px solid rgba(125, 211, 252, 0.34);
  border-radius: 8px;
  aspect-ratio: 1;
  background: #020617;
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.42),
    0 0 34px rgba(45, 212, 191, 0.2);
}

.hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-copy {
  display: grid;
  gap: 18px;
}

.eyebrow {
  width: fit-content;
  margin: 0;
  border: 1px solid rgba(45, 212, 191, 0.42);
  border-radius: 999px;
  padding: 6px 12px;
  color: #99f6e4;
  background: rgba(13, 148, 136, 0.16);
  font-size: 13px;
  font-weight: 800;
}

h1,
h2,
p {
  margin: 0;
}

h1 {
  font-size: clamp(48px, 8vw, 86px);
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: 0;
}

h2 {
  font-size: 20px;
  line-height: 1.35;
}

.lead {
  max-width: 640px;
  color: #dbeafe;
  font-size: 18px;
  line-height: 1.9;
}

.actions,
.link-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.primary-action,
.secondary-action,
.text-link,
.link-list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 8px;
  padding: 0 16px;
  font-weight: 850;
  text-decoration: none;
}

.primary-action {
  color: #021314;
  background: #2dd4bf;
  box-shadow: 0 12px 28px rgba(45, 212, 191, 0.24);
}

.secondary-action,
.link-list a {
  border: 1px solid rgba(125, 211, 252, 0.36);
  color: #e0f2fe;
  background: rgba(15, 23, 42, 0.56);
}

.fine-print {
  color: #94a3b8;
  font-size: 13px;
}

.notice,
.links,
article {
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 8px;
  background: rgba(15, 23, 42, 0.68);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.22);
}

.notice,
.links {
  display: grid;
  gap: 10px;
  margin-top: 16px;
  padding: 18px;
}

.notice {
  border-color: rgba(251, 191, 36, 0.28);
  background: rgba(69, 26, 3, 0.3);
}

.notice p,
.links p,
article p,
li {
  color: #cbd5e1;
  line-height: 1.8;
}

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

article {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 18px;
}

ol {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 22px;
}

.text-link {
  width: fit-content;
  color: #021314;
  background: #67e8f9;
}

.report-shell {
  max-width: 960px;
}

.report-hero {
  display: grid;
  gap: 18px;
  padding: 38px 0 18px;
}

.report-card {
  display: grid;
  gap: 16px;
  margin-top: 16px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 8px;
  padding: 18px;
  background: rgba(15, 23, 42, 0.72);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.22);
}

.report-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.report-card label {
  display: grid;
  gap: 7px;
  color: #e0f2fe;
  font-size: 14px;
  font-weight: 800;
}

.report-card input,
.report-card select,
.report-card textarea {
  width: 100%;
  border: 1px solid rgba(125, 211, 252, 0.26);
  border-radius: 8px;
  padding: 11px 12px;
  color: #f8fafc;
  background: rgba(2, 6, 23, 0.62);
  font: inherit;
  font-weight: 600;
}

.report-card textarea {
  resize: vertical;
}

.report-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 820px) {
  .page-shell {
    width: min(100% - 20px, 620px);
    padding-top: 18px;
  }

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

  .hero {
    gap: 22px;
    min-height: auto;
  }

  .hero-media {
    width: min(78vw, 320px);
  }

  h1 {
    font-size: 50px;
  }
}
