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

/* ===== BASE ===== */
body {
  background-color: #0a0a0a;
  color: #f5f5f5;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 1.5;
}

/* ===== LAYOUT ===== */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px 48px;
  border-bottom: 1px solid #1a1a1a;
}

.site-header h1 {
  font-size: 14px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
}

.site-header nav a {
  margin-left: 32px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: #f5f5f5;
}

/* ===== MAIN WRAPPER ===== */
.hero {
  max-width: 720px;
  margin: 0 auto;
  padding: 120px 24px;
  text-align: center;
}

/* ===== HEADINGS ===== */
.hero h2 {
  font-size: 42px;
  font-weight: 400;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}

/* ===== TEXT ===== */
.hero p {
  font-size: 14px;
  color: #bdbdbd;
  margin-bottom: 32px;
}

/* ===== BUTTONS ===== */
.cta-button {
  display: inline-block;
  padding: 14px 32px;
  border: 1px solid #f5f5f5;
  color: #f5f5f5;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
}

.cta-button:hover {
  background: #f5f5f5;
  color: #0a0a0a;
}

/* ===== DISCLAIMER ===== */
.disclaimer {
  margin-top: 48px;
  font-size: 11px;
  color: #777;
}

/* ===== FOOTER ===== */
.site-footer {
  text-align: center;
  padding: 40px;
  font-size: 11px;
  color: #555;
  border-top: 1px solid #1a1a1a;
}

.logo img {
  height: 44px;
  width: auto;
  display: block;
}
