* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #ffffff;
  color: #000000;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  padding: 60px;
  position: relative;
}

.container {
  max-width: 720px;
}

.name {
  font-size: 32px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.about {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 50px;
}

.about p + p {
  margin-top: 10px;
}

.whitepaper-block {
  margin-bottom: 70px;
  max-width: 360px;
}

.whitepaper-title {
  font-size: 18px;
  margin-bottom: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

label {
  display: block;
  margin-bottom: 4px;
  font-size: 13px;
  letter-spacing: 0.02em;
}

input {
  width: 100%;
  padding: 6px 8px;
  border: 1px solid #000;
  background: #fff;
  font-size: 14px;
  margin-bottom: 14px;
}

.download-btn {
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid #000;
  background: #fff;
  font-size: 14px;
  cursor: pointer;
  letter-spacing: 0.03em;
  transition: opacity 0.2s ease;
}

.download-btn:hover {
  opacity: 0.7;
}

.term-sheet-link {
  position: fixed;
  bottom: 30px;
  right: 30px;
  font-family: "Courier New", Courier, "Lucida Console", monospace;
  font-size: 16px;
  text-decoration: underline;
  color: #000;
  cursor: pointer;
}

.term-sheet-link:hover {
  opacity: 0.7;
}

.ascii-glyph {
  font-family: "Courier New", Courier, monospace;
  font-size: 12px;
  margin-top: 40px;
  opacity: 0.7;
}

.footer {
  position: fixed;
  bottom: 10px;
  left: 30px;
  font-size: 11px;
  font-family: "Courier New", Courier, monospace;
  opacity: 0.55;
}

.classification-banner {
  font-family: "Courier New", monospace;
  font-size: 12px;
  opacity: 0.55;
  margin-bottom: 20px;
}

.build-number {
  font-family: "Courier New", monospace;
  font-size: 12px;
  opacity: 0.55;
  margin-top: -10px;
  margin-bottom: 40px;
}

.logo-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
  font-size: 32px; /* ensures the row has heading weight */
}

.logo-glyph {
  font-family: "Courier New", Courier, monospace;
  font-size: 20px;
  opacity: 0.85;
}

.logo-text {
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
}


