/* ============================================
   RETURN90 — 5 DAY RETURN CHALLENGE
   Design System & Landing Page Styles
   ============================================ */

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:       #0a0a0a;
  --off-black:   #111111;
  --dark:        #1a1a1a;
  --mid:         #2c2c2c;
  --border:      #2e2e2e;
  --muted:       #888888;
  --ivory:       #f5f2eb;
  --white:       #ffffff;
  --accent:      #e8b84b;       /* gold */
  --accent-dark: #c9952a;
  --accent-glow: rgba(232,184,75,0.18);
  --danger:      #e84b4b;

  --font-body:   'Inter', sans-serif;
  --font-display:'Bebas Neue', sans-serif;

  --max-w:       1160px;
  --narrow-w:    740px;

  --radius:      10px;
  --radius-lg:   18px;

  --transition:  0.22s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--ivory);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ---- UTILITY ---- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.narrow { max-width: var(--narrow-w); }

.section {
  padding: 96px 0;
}

.accent { color: var(--accent); }

.hidden { display: none !important; }

.section-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-headline {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.18;
  color: var(--white);
  margin-bottom: 24px;
}

.section-body {
  font-size: 17px;
  color: var(--ivory);
  opacity: 0.88;
  margin-bottom: 40px;
  line-height: 1.75;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: var(--radius);
  padding: 14px 28px;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--accent);
  color: var(--black);
}
.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--accent-glow);
}

.btn-large {
  font-size: 17px;
  padding: 18px 36px;
  border-radius: 12px;
}

.btn-full { width: 100%; }

.btn-white {
  background: var(--white);
  color: var(--black);
}
.btn-white:hover {
  background: var(--ivory);
  transform: translateY(-2px);
}

.btn-loader { font-size: 15px; }

/* ---- ANNOUNCEMENT BAR ---- */
.announcement-bar {
  background: var(--accent);
  color: var(--black);
  text-align: center;
  padding: 11px 24px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

/* ---- HERO ---- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 100px 0 96px;
  background: var(--off-black);
  border-bottom: 1px solid var(--border);
}

.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  background: var(--accent-glow);
  border: 1px solid var(--accent);
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero-headline {
  font-size: clamp(36px, 6vw, 68px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: clamp(17px, 2.2vw, 20px);
  color: var(--ivory);
  opacity: 0.85;
  max-width: 620px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.seats-note {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.hero-orb {
  position: absolute;
  top: -120px;
  right: -160px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232,184,75,0.10) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.br-desktop { display: block; }

/* ---- PROOF BAR ---- */
.proof-bar {
  background: var(--dark);
  border-bottom: 1px solid var(--border);
  padding: 36px 0;
}

.proof-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.proof-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 40px;
  gap: 4px;
}

.proof-number {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}

.proof-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.proof-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
}

/* ---- PROBLEM SECTION ---- */
.problem-section {
  background: var(--black);
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 40px 0;
}

.problem-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 24px;
}

.problem-icon {
  font-size: 20px;
  font-weight: 900;
  color: var(--danger);
  flex-shrink: 0;
  margin-top: 2px;
}

.problem-item p {
  font-size: 15px;
  font-weight: 700;
  color: var(--ivory);
  line-height: 1.55;
}

.problem-close {
  font-size: 18px;
  font-weight: 700;
  color: var(--accent);
  text-align: center;
  margin-top: 16px;
  line-height: 1.6;
}

/* ---- WHAT SECTION ---- */
.what-section {
  background: var(--off-black);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.days-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.day-card {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  transition: border-color var(--transition), transform var(--transition);
}

.day-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
}

.day-card-full {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto 1fr 3fr;
  align-items: center;
  gap: 20px;
}

.day-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.day-card-full .day-label { margin-bottom: 0; }

.day-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.3;
}

.day-card-full .day-title { margin-bottom: 0; }

.day-desc {
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
  line-height: 1.55;
}

/* ---- FOR SECTION ---- */
.for-section {
  background: var(--black);
}

.for-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}

.for-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 16px;
  font-weight: 700;
  color: var(--ivory);
  line-height: 1.55;
}

.for-list li::before {
  content: "✓";
  color: var(--accent);
  font-size: 18px;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 1px;
}

.not-for-box {
  background: rgba(232, 75, 75, 0.08);
  border: 1px solid rgba(232, 75, 75, 0.3);
  border-radius: var(--radius);
  padding: 20px 24px;
  font-size: 15px;
  font-weight: 700;
  color: var(--ivory);
  line-height: 1.6;
}

.not-for-box strong {
  color: var(--danger);
}

/* ---- FACILITATOR ---- */
.facilitator-section {
  background: var(--off-black);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.facilitator-inner {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 60px;
  align-items: center;
}

.facilitator-img-wrap {
  flex-shrink: 0;
}

.facilitator-img-placeholder {
  width: 260px;
  height: 320px;
  background: var(--dark);
  border: 2px dashed var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
}

.facilitator-img-wrap img {
  width: 260px;
  height: 320px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 2px solid var(--border);
}

.facilitator-name {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.facilitator-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.facilitator-body {
  font-size: 16px;
  color: var(--ivory);
  opacity: 0.88;
  line-height: 1.75;
}

/* ---- TESTIMONIALS ---- */
.testimonials-section {
  background: var(--black);
}

.testimonials-section .section-headline {
  text-align: center;
  margin-bottom: 48px;
}

.testimonials-section .section-label {
  text-align: center;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial-card {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color var(--transition);
}

.testimonial-card:hover {
  border-color: var(--accent);
}

.testimonial-stars {
  color: var(--accent);
  font-size: 16px;
  letter-spacing: 2px;
}

.testimonial-quote {
  font-size: 15px;
  font-weight: 700;
  color: var(--ivory);
  line-height: 1.65;
  flex: 1;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}

.testimonial-author strong {
  font-size: 14px;
  font-weight: 800;
  color: var(--white);
}

.testimonial-author span {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
}

/* ---- REGISTER SECTION ---- */
.register-section {
  background: var(--off-black);
  border-top: 1px solid var(--border);
}

.register-section .section-headline {
  margin-bottom: 16px;
}

.register-sub {
  font-size: 16px;
  color: var(--ivory);
  opacity: 0.85;
  margin-bottom: 40px;
  line-height: 1.7;
}

/* Form */
.register-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 14px;
  font-weight: 700;
  color: var(--ivory);
  letter-spacing: 0.02em;
}

.form-hint {
  font-weight: 400;
  color: var(--muted);
  font-size: 13px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"] {
  background: var(--dark);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  padding: 14px 16px;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
}

.form-group input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.form-group input::placeholder {
  color: var(--muted);
  font-weight: 400;
}

.form-check {
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
}

.form-check input[type="checkbox"] {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  accent-color: var(--accent);
  margin-top: 2px;
  cursor: pointer;
}

.form-check label {
  font-size: 14px;
  font-weight: 700;
  color: var(--ivory);
  cursor: pointer;
  line-height: 1.55;
}

.form-privacy {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  text-align: center;
  margin-top: -4px;
}

/* Success */
.register-success {
  text-align: center;
  padding: 60px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.success-icon {
  width: 72px;
  height: 72px;
  background: var(--accent);
  color: var(--black);
  font-size: 32px;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.register-success h3 {
  font-size: 32px;
  font-weight: 900;
  color: var(--white);
}

.register-success p {
  font-size: 16px;
  font-weight: 700;
  color: var(--ivory);
  opacity: 0.85;
  max-width: 420px;
}

/* ---- URGENCY BAR ---- */
.urgency-bar {
  background: var(--accent);
  padding: 28px 0;
}

.urgency-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.urgency-bar p {
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  line-height: 1.5;
}

/* ---- FOOTER ---- */
.site-footer {
  background: var(--off-black);
  border-top: 1px solid var(--border);
  padding: 48px 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.footer-brand {
  font-size: 20px;
  font-weight: 900;
  color: var(--accent);
  letter-spacing: 0.04em;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--ivory); }

.footer-legal {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.6;
}

/* ---- SCROLL REVEAL ANIMATIONS ---- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .days-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .day-card-full {
    grid-column: 1 / -1;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
  }
  .day-card-full .day-desc {
    grid-column: 1 / -1;
  }
  .facilitator-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .facilitator-img-placeholder,
  .facilitator-img-wrap img {
    width: 100%;
    height: 280px;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .proof-bar-inner {
    gap: 0;
  }
  .proof-divider {
    display: none;
  }
  .proof-stat {
    padding: 12px 20px;
  }
}

@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .hero { padding: 72px 0 64px; }
  .br-desktop { display: none; }
  .problem-grid { grid-template-columns: 1fr; }
  .days-grid { grid-template-columns: 1fr; }
  .day-card-full {
    grid-template-columns: 1fr;
  }
  .urgency-bar .container {
    flex-direction: column;
    text-align: center;
  }
  .proof-bar-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
