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

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #060608;
  color: #f4f1e8;
  line-height: 1.7;
}

a {
  color: inherit;
  text-decoration: none;
}

.hero {
  background: radial-gradient(circle at top, #f5e6c8 0, #8c6b3f 40%, #060608 85%);
  color: #1b1207;
  text-align: center;
  padding: 5rem 1.5rem 4rem;
}

.hero-inner {
  max-width: 760px;
  margin: 0 auto;
  background: rgba(244, 237, 224, 0.85);
  border-radius: 1.5rem;
  padding: 2.5rem 2rem;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6);
}

.hero h1 {
  font-size: 2.5rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 0.5rem;
}

.hero-subtitle {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  margin: 0 0 1.5rem;
}

.hero-text {
  font-size: 1rem;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.hero-note {
  font-size: 0.85rem;
  opacity: 0.8;
}

.btn {
  display: inline-block;
  padding: 0.7rem 1.6rem;
  border-radius: 999px;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease, color 0.12s ease;
}

.btn.primary {
  background: #24140a;
  color: #f8f3e6;
  border-color: #8c6b3f;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.btn.secondary {
  background: #f5e6c8;
  color: #24140a;
  border-color: #8c6b3f;
}

.btn.ghost {
  background: transparent;
  color: #24140a;
  border-color: #b3945b;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
}

main {
  max-width: 960px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 3rem;
}

.section {
  margin-bottom: 3rem;
  background: linear-gradient(135deg, rgba(29, 21, 12, 0.95), rgba(11, 8, 5, 0.98));
  border-radius: 1.25rem;
  padding: 2rem 1.75rem;
  border: 1px solid rgba(187, 151, 86, 0.45);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.6);
}

.section h2 {
  font-size: 1.6rem;
  margin-top: 0;
  margin-bottom: 0.75rem;
  border-bottom: 1px solid rgba(187, 151, 86, 0.6);
  padding-bottom: 0.5rem;
}

.section p {
  margin: 0.6rem 0;
}

.pathways .path {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px dashed rgba(187, 151, 86, 0.45);
}

.path h3 {
  margin: 0 0 0.25rem;
  font-size: 1.25rem;
}

.path-tagline {
  margin: 0 0 0.5rem;
  font-style: italic;
  font-size: 0.95rem;
  color: #e6d3ac;
}

.path-meta {
  font-size: 0.9rem;
  color: #d4c3a0;
}

.tier-list {
  padding-left: 1.2rem;
  margin: 1rem 0;
}

.tier-list li {
  margin: 0.35rem 0;
}

.center {
  text-align: center;
  margin-top: 1rem;
}

.newsletter-form {
  margin-top: 1rem;
}

.newsletter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.newsletter-form input[type="email"] {
  flex: 1 1 180px;
  padding: 0.6rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(187, 151, 86, 0.7);
  background: rgba(6, 6, 8, 0.6);
  color: #f4f1e8;
}

.newsletter-form input[type="email"]::placeholder {
  color: #b6a98a;
}

.newsletter-form button {
  border: none;
}

.hint {
  font-size: 0.8rem;
  opacity: 0.75;
  margin-top: 0.25rem;
}

details {
  margin: 0.5rem 0;
  padding: 0.6rem 0.75rem;
  border-radius: 0.75rem;
  background: rgba(20, 14, 7, 0.95);
  border: 1px solid rgba(187, 151, 86, 0.4);
}

details summary {
  cursor: pointer;
  font-weight: 600;
}

details[open] {
  background: rgba(26, 18, 9, 0.98);
}

.footer {
  text-align: center;
  padding: 1.5rem;
  font-size: 0.85rem;
  color: #a79776;
  border-top: 1px solid rgba(187, 151, 86, 0.35);
  background: #050406;
}

@media (min-width: 768px) {
  .hero h1 {
    font-size: 3rem;
  }
  .hero-inner {
    padding: 3rem;
  }
}
