:root {
  --bg: #07101d;
  --bg-soft: #0e1a2d;
  --paper: #f5f3ef;
  --panel: rgba(9, 16, 29, 0.78);
  --panel-soft: rgba(255, 255, 255, 0.05);
  --line: rgba(255, 255, 255, 0.1);
  --text: #edf2f7;
  --muted: #9fb0c2;
  --heading: #ffffff;
  --teal: #5eead4;
  --violet: #a78bfa;
  --amber: #f59e0b;
  --ink: #0f172a;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  color: var(--text);
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 14% 12%, rgba(94, 234, 212, 0.16), transparent 22%),
    radial-gradient(circle at 84% 14%, rgba(245, 158, 11, 0.16), transparent 20%),
    radial-gradient(circle at 72% 84%, rgba(167, 139, 250, 0.16), transparent 24%),
    linear-gradient(180deg, #040914, #08111e 58%, #0e1a2d);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.024) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: radial-gradient(circle at center, black, transparent 82%);
}

a {
  color: inherit;
}

.shell {
  position: relative;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 44px 0 72px;
}

.hero {
  position: relative;
  display: grid;
  gap: 28px;
  padding: 36px;
  border-radius: 36px;
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(11, 19, 33, 0.9), rgba(14, 23, 40, 0.72)),
    rgba(255, 255, 255, 0.02);
  overflow: hidden;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto auto -140px -80px;
  width: 320px;
  height: 320px;
  border-radius: 999px;
  background: rgba(94, 234, 212, 0.18);
  filter: blur(50px);
}

.hero::before {
  content: "";
  position: absolute;
  inset: -90px -40px auto auto;
  width: 280px;
  height: 280px;
  border-radius: 999px;
  background: rgba(167, 139, 250, 0.18);
  filter: blur(54px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo {
  width: 58px;
  height: 58px;
  flex: none;
}

.brand-meta {
  display: grid;
  gap: 4px;
}

.brand-title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.brand-copy {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-title {
  max-width: 11ch;
  margin: 0;
  font-family: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  font-size: clamp(3.2rem, 7vw, 5.8rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
  color: var(--heading);
}

.hero-copy {
  max-width: 42ch;
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.9;
  color: var(--muted);
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--panel-soft);
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-grid {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.section-card {
  padding: 24px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background:
    linear-gradient(160deg, rgba(11, 18, 31, 0.9), rgba(16, 27, 44, 0.74)),
    rgba(255, 255, 255, 0.02);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.18);
}

.section-card h2 {
  margin: 0 0 14px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}

.section-card h3 {
  margin: 0 0 12px;
  font-family: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  letter-spacing: -0.04em;
}

.section-card p,
.section-card li {
  color: var(--muted);
  line-height: 1.8;
}

.section-card ul {
  padding-left: 18px;
  margin: 0;
}

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

.notice {
  display: grid;
  gap: 8px;
  padding: 18px 20px;
  border-radius: 24px;
  border: 1px solid rgba(94, 234, 212, 0.24);
  background: rgba(94, 234, 212, 0.08);
}

.notice strong {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
}

.table {
  display: grid;
  gap: 12px;
}

.row {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
}

.row strong {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.92);
}

.footer {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.95rem;
  line-height: 1.8;
}

@media (max-width: 820px) {
  .shell {
    width: min(100% - 28px, 1120px);
    padding: 24px 0 48px;
  }

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

  .two-col,
  .row {
    grid-template-columns: 1fr;
  }
}
