:root {
  color-scheme: light;
  font-family: Inter, Arial, Helvetica, sans-serif;
  --blump-orange: #ef4b12;
  --blump-text: #17212b;
  --blump-muted: #5c6975;
  --blump-border: #d8e0e7;
  --blump-soft: #f4f7fa;
  --blump-surface: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--blump-soft);
  color: var(--blump-text);
  line-height: 1.6;
}

a {
  color: var(--blump-orange);
  font-weight: 700;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.page {
  min-height: 100vh;
  padding: 48px 20px;
}

.document {
  width: min(920px, 100%);
  margin: 0 auto;
  background: var(--blump-surface);
  border: 1px solid var(--blump-border);
  border-radius: 10px;
  box-shadow: 0 18px 50px rgba(23, 33, 43, 0.08);
  overflow: hidden;
}

.document__header {
  padding: 36px 40px 30px;
  border-bottom: 1px solid var(--blump-border);
}

.document__logo {
  display: block;
  width: min(260px, 78vw);
  height: auto;
  margin-bottom: 28px;
}

.document__eyebrow {
  margin: 0 0 6px;
  color: var(--blump-orange);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.08;
}

.document__summary {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--blump-muted);
  font-size: 1.02rem;
}

.document__content {
  display: grid;
  gap: 26px;
  padding: 34px 40px 40px;
}

.document-section {
  display: grid;
  gap: 10px;
}

.document-section h2 {
  margin: 0;
  font-size: 1.22rem;
  line-height: 1.25;
}

.document-section p,
.document-section ul,
.document-section ol {
  margin: 0;
}

.document-section ul,
.document-section ol {
  padding-left: 22px;
}

.notice {
  padding: 16px 18px;
  background: #fff4ef;
  border: 1px solid #ffd3c2;
  border-radius: 8px;
}

.placeholder {
  min-height: 320px;
  padding: 22px;
  background: repeating-linear-gradient(
    -45deg,
    #ffffff,
    #ffffff 14px,
    #f8fafc 14px,
    #f8fafc 28px
  );
  border: 1px dashed #9fb0bf;
  border-radius: 8px;
  color: var(--blump-muted);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 6px;
  background: var(--blump-orange);
  color: #ffffff;
  font-weight: 800;
}

.button:hover {
  text-decoration: none;
}

.button--secondary {
  background: #17212b;
}

.document__footer {
  padding: 20px 40px;
  border-top: 1px solid var(--blump-border);
  color: var(--blump-muted);
  font-size: 0.9rem;
}

@media (max-width: 720px) {
  .page {
    padding: 20px 12px;
  }

  .document__header,
  .document__content,
  .document__footer {
    padding-left: 20px;
    padding-right: 20px;
  }
}
