/* GLOBAL STYLES */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Lato", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #0d0518;
  color: #f7f4fb;
  line-height: 1.6;
}

/* Layout */

.page-wrapper {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  padding: 40px 16px;
}

.container {
  width: 100%;
  max-width: 900px;
  background: radial-gradient(circle at top, #5b2c83 0, #1a1029 45%, #0d0518 100%);
  border-radius: 20px;
  border: 1px solid rgba(244, 197, 66, 0.4);
  padding: 32px 24px 40px;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.7);
}

/* Typography */

h1, h2, h3, h4 {
  font-family: "Playfair Display", "Times New Roman", serif;
  color: #fdf8ff;
  margin-bottom: 12px;
}

h1 {
  font-size: 2.1rem;
  line-height: 1.2;
}

h2 {
  font-size: 1.6rem;
}

p {
  margin-bottom: 14px;
  font-size: 1rem;
}

.highlight-gold {
  color: #f4c542;
  font-weight: 700;
}

.emphasis {
  font-style: italic;
}

/* Hero / header */

.page-tagline {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: rgba(244, 197, 66, 0.8);
  margin-bottom: 10px;
}

.page-subtitle {
  color: #dcd0ff;
  font-size: 1rem;
  max-width: 650px;
  margin-bottom: 20px;
}

/* Sections */

.section {
  margin-top: 22px;
  padding-top: 14px;
  border-top: 1px solid rgba(244, 197, 66, 0.16);
}

.section h2 {
  margin-bottom: 8px;
}

.list {
  margin: 10px 0 6px 18px;
}

.list li {
  margin-bottom: 8px;
}

/* CTA Button */

.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, #f4c542, #ffe38c);
  color: #2b1a41;
  padding: 12px 26px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.45);
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.2s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.7);
  background: linear-gradient(135deg, #ffe38c, #f4c542);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  border-radius: 999px;
  border: 1px solid rgba(244, 197, 66, 0.6);
  color: #f7f4fb;
  padding: 10px 22px;
  font-size: 0.85rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-left: 10px;
}

/* Form */

.form {
  margin-top: 18px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 0.9rem;
  color: #e8ddff;
}

input[type="text"],
input[type="email"] {
  width: 100%;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(244, 197, 66, 0.4);
  background: rgba(15, 6, 32, 0.9);
  color: #f7f4fb;
  font-size: 0.95rem;
}

input::placeholder {
  color: #a89ac7;
}

.form-note {
  margin-top: 8px;
  font-size: 0.8rem;
  color: #b9aad7;
}

/* Badge / callouts */

.badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(244, 197, 66, 0.6);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(244, 197, 66, 0.9);
  margin-bottom: 12px;
}

.callout {
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  background: radial-gradient(circle at top left, rgba(244, 197, 66, 0.18), transparent 55%);
  border: 1px solid rgba(244, 197, 66, 0.25);
  font-size: 0.9rem;
}

/* Centered content (for thank you page) */

.centered {
  text-align: center;
}

.centered .btn-primary {
  margin-top: 14px;
}

/* Responsive */

@media (max-width: 768px) {
  .container {
    padding: 24px 18px 30px;
  }
  h1 {
    font-size: 1.7rem;
  }
}
