/* ===== Build-A-Bear inspired promotional landing page ===== */
:root {
  --navy: #07549b;
  --blue: #126fc0;
  --blue-soft: #eaf5ff;
  --yellow: #f8bd1f;
  --yellow-soft: #fff7d8;
  --red: #e84b3c;
  --pink: #f47b72;
  --cream: #fffaf2;
  --ink: #13233a;
  --muted: #6d7785;
  --line: #e3e5e8;
  --white: #ffffff;
  --radius: 18px;
}

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

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  font-family: "Nunito", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 15% 10%, rgba(248, 189, 31, 0.12), transparent 28%),
    radial-gradient(circle at 90% 30%, rgba(18, 111, 192, 0.10), transparent 30%),
    var(--cream);
  color: var(--ink);
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
}

button,
a {
  font: inherit;
}

button {
  border: 0;
}

a {
  color: inherit;
}

.page {
  min-height: 100vh;
  padding: 22px 18px 42px;
  position: relative;
  overflow: hidden;
}

.container {
  width: 100%;
  max-width: 348px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(19, 35, 58, 0.10);
}

.card-inner {
  padding: 27px 17px 20px;
  text-align: center;
}

.brand-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 12px;
}

.logo-image {
  display: block;
  width: 142px;
  height: 142px;
  object-fit: contain;
}

.offer-title {
  margin: 3px 0 15px;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.offer-title span {
  color: var(--red);
}

.progress-track {
  width: 100%;
  height: 7px;
  border-radius: 999px;
  background: #e6e7e9;
  overflow: hidden;
  margin-bottom: 19px;
}

.progress-bar {
  width: 34%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--red), var(--pink));
}

.steps {
  list-style: none;
  text-align: left;
  padding: 0 3px;
  margin-bottom: 18px;
}

.steps li {
  font-size: 12px;
  font-weight: 600;
  margin: 0 0 10px;
}

.steps li:last-child {
  margin-bottom: 0;
}

.steps li:first-child {
  color: var(--red);
  font-weight: 800;
}

.step-number {
  margin-right: 2px;
}

.cta-button {
  display: flex;
  width: 100%;
  min-height: 45px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 20px;
  padding: 11px 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, #e53d32, #ef574b);
  color: var(--white);
  text-decoration: none;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.035em;
  box-shadow: 0 9px 18px rgba(232, 75, 60, 0.28);
  transition: transform 0.18s ease, filter 0.18s ease;
}

.cta-button svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cta-button:hover {
  filter: brightness(1.04);
  transform: translateY(-1px);
}

.cta-button:active {
  transform: scale(0.985);
}

.session-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  margin-top: 13px;
  color: var(--muted);
  font-size: 10px;
}

.session-row strong {
  color: var(--ink);
  font-weight: 800;
}

.hourglass {
  font-size: 11px;
}

.activity-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 11px;
  padding: 5px 11px;
  border: 1px solid #dddfe2;
  border-radius: 999px;
  background: #fafafa;
  color: #4e5968;
  font-size: 10px;
  font-weight: 700;
}

.activity-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 2px rgba(248, 189, 31, 0.13);
}

.affiliate-note {
  margin-top: 12px;
  color: #8a929c;
  font-size: 8.5px;
  line-height: 1.35;
}

.faq-section {
  margin-top: 34px;
}

.faq-section h2 {
  text-align: center;
  font-size: 14px;
  font-weight: 900;
  margin-bottom: 16px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  font-size: 11px;
  font-weight: 700;
}

.chevron {
  color: #77808a;
  font-size: 13px;
  transition: transform 0.25s ease;
}

.faq-item.open .chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.faq-answer p {
  padding: 0 0 13px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.55;
}

.faq-item.open .faq-answer {
  max-height: 120px;
}

.footer {
  margin-top: 25px;
  text-align: center;
  color: #b24a42;
}

.footer nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer a {
  font-size: 9px;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.footer p {
  margin-top: 7px;
  color: #8b8e93;
  font-size: 9px;
}

.floating-hearts {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.floating-heart {
  position: absolute;
  animation: float 7s ease-in-out infinite;
}

.floating-heart svg {
  display: block;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.16;
  }
  50% {
    transform: translateY(-18px) rotate(8deg);
    opacity: 0.34;
  }
}

@media (min-width: 640px) {
  .page {
    padding-top: 30px;
  }

  .container {
    max-width: 360px;
  }

  .card-inner {
    padding: 30px 19px 22px;
  }

  .logo-image {
    width: 154px;
    height: 154px;
  }

  .offer-title {
    font-size: 19px;
  }

  .steps li {
    font-size: 12.5px;
  }

  .cta-button {
    min-height: 47px;
    font-size: 13.5px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
