:root {
  color-scheme: dark;
  --background: #0e0b14;
  --foreground: #fafafa;
  --muted: #a7a0b4;
  --muted-strong: #d1c9dc;
  --border: rgba(255, 255, 255, 0.1);
  --purple: #c084fc;
  --purple-strong: #a855f7;
  --pink: #db2777;
  --card: rgba(255, 255, 255, 0.035);
  --danger: #f87171;
  --danger-bg: rgba(239, 68, 68, 0.05);
  --danger-border: rgba(239, 68, 68, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--background);
}

body {
  min-height: 100%;
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: var(--foreground);
  background:
    radial-gradient(circle at 20% 0%, rgba(168, 85, 247, 0.18), transparent 34rem),
    radial-gradient(circle at 85% 18%, rgba(219, 39, 119, 0.12), transparent 30rem),
    linear-gradient(180deg, rgba(168, 85, 247, 0.06), transparent 24rem),
    var(--background);
  overflow-x: hidden;
}

a {
  color: var(--purple);
  font-weight: 500;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.page {
  width: min(100%, 64rem);
  margin: 0 auto;
  padding: 3rem 1rem 4rem;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 2.5rem;
  margin-bottom: 2rem;
  padding: 0 0.75rem 0 0;
  color: var(--foreground);
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 999px;
  transition:
    color 160ms ease,
    padding-left 160ms ease,
    background 160ms ease;
}

.back-link:hover {
  padding-left: 0.5rem;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.04);
  text-decoration: none;
}

.back-link svg,
.hero-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  flex: 0 0 auto;
}

.hero {
  margin-bottom: 3rem;
  text-align: center;
}

.hero-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  margin-bottom: 1rem;
  color: var(--purple-strong);
  background: rgba(168, 85, 247, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.16);
  border-radius: 999px;
  box-shadow: 0 0 40px rgba(168, 85, 247, 0.14);
}

.hero-icon svg {
  width: 2rem;
  height: 2rem;
}

h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.875rem, 5vw, 2.5rem);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.04em;
  background: linear-gradient(90deg, var(--purple), var(--pink));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.updated {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.content {
  color: var(--muted-strong);
  font-size: 1rem;
  line-height: 1.8;
}

section {
  margin: 0 0 2rem;
}

section:last-child {
  margin-bottom: 0;
}

h2 {
  margin: 0 0 1rem;
  color: #ffffff;
  font-size: 1.25rem;
  line-height: 1.35;
  font-weight: 700;
  letter-spacing: -0.015em;
}

p {
  margin: 0;
}

p + p,
p + ul,
ul + p {
  margin-top: 1rem;
}

ul {
  margin: 0;
  padding-left: 1.5rem;
}

li + li {
  margin-top: 0.5rem;
}

strong {
  color: #ffffff;
  font-weight: 700;
}

.notice {
  padding: 1.5rem;
  background: var(--danger-bg);
  border: 1px solid var(--danger-border);
  border-radius: 1rem;
}

.notice h2 {
  color: var(--danger);
}

.notice-title {
  margin-bottom: 0.5rem;
  color: #ffffff;
  font-weight: 600;
}

.muted-small {
  color: #9ca3af;
  font-size: 0.9rem;
}

.contact {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.company {
  margin-top: 1rem;
  color: #6b7280;
  font-size: 0.875rem;
  line-height: 1.7;
}

.document-card {
  padding: clamp(1.25rem, 3vw, 2rem);
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 1.5rem;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.2);
}

@media (min-width: 640px) {
  .page {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .page {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
