:root {
  --bg: #f3eafc;
  --bg-alt: #fff1e6;
  --ink: #1b1226;
  --muted: #5e516a;
  --primary: #9642f4;
  --secondary: #f34a0d;
  --card: #ffffff;
  --stroke: #e6d7fb;
  --section-base: #ffffff;
  --shadow: 0 24px 50px rgba(27, 18, 38, 0.16);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Sora", "Trebuchet MS", sans-serif;
  color: var(--ink);
  line-height: 1.6;
  background:
    radial-gradient(circle at 12% 10%, rgba(150, 66, 244, 0.18), transparent 45%),
    radial-gradient(circle at 85% 12%, rgba(243, 74, 13, 0.16), transparent 40%),
    linear-gradient(140deg, #fff3e8 0%, #f1e6ff 52%, #fff8f1 100%);
}

h1,
h2,
h3 {
  font-family: "Unbounded", "Trebuchet MS", sans-serif;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}

p {
  margin: 0 0 16px;
  color: var(--muted);
}

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

.hero {
  padding: 32px 6vw 90px;
  position: relative;
  overflow: hidden;
  background-color: #eef1ff;
  background-image: url("try_ultimate_cropped.png");
  background-position: center bottom;
  background-size: cover;
  background-repeat: no-repeat;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  position: relative;
  z-index: 2;
}

.logo {
  font-family: "Unbounded", "Trebuchet MS", sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--primary);
  background: rgba(255, 255, 255, 0.7);
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(150, 66, 244, 0.25);
  box-shadow: none;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(150, 66, 244, 0.25);
}

.hero-grid {
  margin-top: 60px;
  display: grid;
  gap: 36px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: start;
  position: relative;
  z-index: 2;
}

.hero-copy {
  background: var(--card);
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
}

.hero-title {
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 12px;
}

.hero-tagline {
  color: var(--ink);
  font-size: clamp(1.3rem, 1.6vw + 0.95rem, 2.1rem);
  font-weight: 700;
  margin: 0 0 12px;
  max-width: 24ch;
}

.hero-detail {
  font-size: 1.02rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 16px 0 10px;
}

.cta-row + .note {
  margin-top: 22px;
}

.sold-out-message {
  display: none;
  padding: 12px 16px;
  border-radius: 16px;
  background: rgba(150, 66, 244, 0.14);
  color: var(--ink);
  font-weight: 600;
  margin: 16px 0 0;
}

.sold-out .sold-out-message {
  display: block;
}

.sold-out [data-payment-link] {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 2px solid transparent;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.primary {
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 12px 26px rgba(150, 66, 244, 0.35);
}

.btn.secondary {
  background: var(--secondary);
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(243, 74, 13, 0.3);
}

.btn.ghost {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(255, 255, 255, 0.6);
}

.btn.wide {
  width: 100%;
}

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

.hero-panel {
  display: grid;
  gap: 16px;
}

.panel-card {
  background: var(--card);
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
}

.panel-title {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.7rem;
  margin-bottom: 8px;
  color: var(--muted);
}

.section {
  padding: 80px 6vw;
  background: var(--section-base);
}

.section-header {
  max-width: 640px;
  margin-bottom: 32px;
}


.mailing-card,
.waiver-card,
.map-card,
.faq-item,
.step {
  background: var(--card);
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
}

.mailchimp-form {
  display: grid;
  gap: 16px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  font-weight: 600;
  color: var(--ink);
}

.required {
  color: var(--secondary);
  font-weight: 600;
}

input[type="email"],
input[type="text"] {
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid #dcc6f7;
  font-size: 1rem;
  font-family: inherit;
  background: #faf7ff;
}

.steps {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.step {
  background: var(--card);
}

.step-number {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--primary);
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 12px;
}

.map-card {
  display: grid;
  gap: 18px;
}

.map-embed iframe {
  width: 100%;
  height: 360px;
  border-radius: 18px;
  border: 0;
}

.faq-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  padding: 40px 6vw 60px;
  background: #1d0f2b;
  color: #f7efff;
}

.footer a {
  color: inherit;
}

.footer strong {
  color: var(--primary);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.fine {
  font-size: 0.85rem;
  color: var(--muted);
}

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

.stagger > * {
  animation: rise 0.8s ease both;
}

.stagger > *:nth-child(1) {
  animation-delay: 0.05s;
}

.stagger > *:nth-child(2) {
  animation-delay: 0.12s;
}

.stagger > *:nth-child(3) {
  animation-delay: 0.2s;
}

.stagger > *:nth-child(4) {
  animation-delay: 0.28s;
}

.stagger > *:nth-child(5) {
  animation-delay: 0.36s;
}

.stagger > *:nth-child(6) {
  animation-delay: 0.44s;
}

.stagger > *:nth-child(7) {
  animation-delay: 0.52s;
}

.stagger > *:nth-child(8) {
  animation-delay: 0.6s;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 840px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    padding-top: 24px;
  }

  .hero-grid {
    margin-top: 36px;
  }

  .map-embed iframe {
    height: 280px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .stagger > *,
  .btn {
    animation: none;
    transition: none;
  }
}
