:root {
  color-scheme: light;
  --bg: #f6f4ef;
  --surface: #ffffff;
  --text: #1a1a1a;
  --muted: #5c5c5c;
  --accent: #b45309;
  --accent-strong: #92400e;
  --border: #e7e2d8;
  --shadow: 0 18px 50px rgba(26, 26, 26, 0.08);
  --radius: 18px;
  --font: "Segoe UI", system-ui, -apple-system, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  font-family: var(--font);
  background: radial-gradient(circle at top, #fff8ef 0%, var(--bg) 42%, #efe9df 100%);
  color: var(--text);
}

.pyramide-page {
  width: min(100%, 44rem);
  margin: 0 auto;
  padding: 2.5rem 1.25rem 3rem;
}

.pyramide-hero {
  text-align: center;
  padding: 2rem 0 1.5rem;
}

.pyramide-eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}

.pyramide-title {
  margin: 0 0 1rem;
  font-size: clamp(2.5rem, 8vw, 3.75rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.pyramide-lead {
  margin: 0 auto;
  max-width: 32rem;
  color: var(--muted);
  font-size: 1.125rem;
  line-height: 1.6;
}

.pyramide-section {
  margin-top: 1.5rem;
  padding: 1.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.pyramide-section--muted {
  background: rgba(255, 255, 255, 0.72);
  box-shadow: none;
}

.pyramide-section h2 {
  margin: 0 0 0.75rem;
  font-size: 1.35rem;
}

.pyramide-section p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.pyramide-features {
  margin: 1.25rem 0 0;
  padding-left: 1.2rem;
  color: var(--text);
  line-height: 1.55;
}

.pyramide-features li + li {
  margin-top: 0.45rem;
}

.pyramide-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.pyramide-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 120ms ease, background 120ms ease, color 120ms ease;
}

.pyramide-btn:hover {
  transform: translateY(-1px);
}

.pyramide-btn--primary {
  background: var(--accent);
  color: #fff;
}

.pyramide-btn--primary:hover {
  background: var(--accent-strong);
}

.pyramide-btn--secondary {
  border: 1px solid var(--border);
  color: var(--text);
  background: #fff;
}

.pyramide-note {
  margin-top: 1rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.pyramide-footer {
  margin-top: 2rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.92rem;
}

.pyramide-footer p {
  margin: 0.25rem 0;
}

@media (max-width: 520px) {
  .pyramide-actions {
    flex-direction: column;
  }

  .pyramide-btn {
    width: 100%;
  }
}
