/* ━━━━━━━━━━━━━━━━━━━━━━━━━
    ROOT & RESET
 ━━━━━━━━━━━━━━━━━━━━━━━━━ */
:root {
  --void: #0d1a2e;
  --ink: #1e3252;
  --ink2: #162840;
  --ink3: #1a3558;
  --gold: #d06a15;
  --gold2: #e07a28;
  --gold3: #e8924a;
  --goldd: #be6011;
  --goldbg: rgba(208, 106, 21, 0.09);
  --goldglow: rgba(208, 106, 21, 0.22);
  --cream: #f5f2ec;
  --paper: #ffffff;
  --mid: #4a5d72;
  --muted: #7a8fa0;
  --borderl: rgba(0, 0, 0, 0.09);
  --ok: #2e7d5b;
  --okbg: #e9f3ee;

  --fd: 'Raleway', system-ui, sans-serif;
  --fb: 'Raleway', system-ui, sans-serif;
  --fo: 'Raleway', system-ui, sans-serif;
  --fs: 'Crimson Text', Georgia, serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --maxw: 940px;
}

.welcome-360 * {
  box-sizing: border-box;
}

.welcome-360 {
  font-family: var(--fo);
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
}

.welcome-360 .wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}

.welcome-360 .label {
  font-family: var(--fb);
  font-size: 13px;
  letter-spacing: 0.16em;
  color: var(--gold);
  text-transform: uppercase;
}

/* ── Confirmation strip ── */
/* DEV: render ONLY in the post-checkout context (e.g. when the redirect
   carries ?checkout=1). Must NOT appear when a member visits later from
   the portal. Disabled on this standalone Welcome page for now. */
.welcome-360 .confirm {
  background: var(--okbg);
  border-bottom: 1px solid #c9e2d5;
}

.welcome-360 .confirm .wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 15px 20px;
  text-align: center;
}

.welcome-360 .confirm svg {
  flex: none;
}

.welcome-360 .confirm p {
  font-size: 14.5px;
  color: #1c5c42;
  font-weight: 400;
}

.welcome-360 .confirm strong {
  font-weight: 600;
}

/* ── Hero ── */
.welcome-360 .hero {
  background: linear-gradient(165deg, var(--ink3) 0%, var(--ink) 45%, var(--void) 100%);
  color: #fff;
  padding: 50px 0 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
  height: auto;
}

.welcome-360 .hero::before {
  content: '';
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 760px;
  height: 420px;
  background: radial-gradient(ellipse at center, var(--goldglow), transparent 68%);
  opacity: 0.5;
  pointer-events: none;
}

.welcome-360 .hero>.wrap {
  position: relative;
  z-index: 1;
}

.welcome-360 .logos {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  margin-bottom: 30px;
}

.welcome-360 .elc-logo {
  width: 190px;
  height: auto;
  display: block;
  filter: brightness(0) invert(1);
}

.welcome-360 .p360-logo {
  width: 160px;
  height: auto;
  display: block;
}

.welcome-360 h1 {
  font-family: var(--fd);
  font-weight: 400;
  font-size: clamp(29px, 6vw, 56px);
  line-height: 1.14;
  letter-spacing: -0.01em;
  margin-bottom: 0;
}

.welcome-360 h1 strong {
  font-weight: 700;
  color: var(--gold3);
}

.welcome-360 .rule {
  width: 56px;
  height: 2px;
  background: var(--gold);
  margin: 28px auto 0;
}

@media (min-width: 768px) {
  .welcome-360 .hero {
    padding: 70px 0 78px;
  }

  .welcome-360 .logos {
    gap: 22px;
    margin-bottom: 38px;
  }

  .welcome-360 .elc-logo {
    width: 240px;
  }

  .welcome-360 .p360-logo {
    width: 210px;
  }

  .welcome-360 .rule {
    margin: 34px auto 0;
  }
}

/* ── Sections (shared) ── */
.welcome-360 section {
  padding: 50px 0;
}

.welcome-360 .cream {
  background: var(--cream);
  border-top: 1px solid var(--borderl);
  border-bottom: 1px solid var(--borderl);
}

.welcome-360 .section-head {
  margin-bottom: 30px;
}

.welcome-360 .section-head .label {
  display: block;
  margin-bottom: 10px;
  text-align: left;
}

.welcome-360 h2 {
  font-family: var(--fd);
  font-weight: 400;
  font-size: clamp(26px, 4vw, 40px);
  line-height: 1.18;
  color: var(--ink);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.welcome-360 .section-head p {
  color: var(--mid);
  font-size: 16px;
  max-width: 640px;
  font-weight: 300;
}

@media (min-width: 768px) {
  .welcome-360 section {
    padding: 70px 0;
  }

  .welcome-360 .section-head {
    margin-bottom: 36px;
  }

  .welcome-360 .section-head .label {
    margin-bottom: 12px;
  }

  .welcome-360 .section-head p {
    font-size: 17.5px;
  }
}

/* ── Video ── */
.welcome-360 .player {
  position: relative;
  padding-top: 56.25%;
  background: var(--void);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(13, 26, 46, 0.22);
}

.welcome-360 .player iframe,
.welcome-360 .player video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: var(--void);
  display: block;
}

/* ── Checklist ── */
.welcome-360 .steps {
  list-style: none;
  border-top: 1px solid var(--borderl);
}

.welcome-360 .step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 22px 2px;
  border-bottom: 1px solid var(--borderl);
  cursor: pointer;
  transition: background 0.18s var(--ease);
}

.welcome-360 .step:hover {
  background: #fbfaf7;
}

.welcome-360 .box {
  flex: none;
  width: 27px;
  height: 27px;
  margin-top: 3px;
  border-radius: 50%;
  border: 2px solid #c3ccd6;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s var(--ease);
}

.welcome-360 .box svg {
  width: 13px;
  height: 13px;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.2s var(--ease);
}

.welcome-360 .step.done .box {
  background: var(--ok);
  border-color: var(--ok);
}

.welcome-360 .step.done .box svg {
  opacity: 1;
  transform: scale(1);
}

.welcome-360 .step.done .step-title {
  color: var(--muted);
  text-decoration: line-through;
  text-decoration-color: #c2ccd4;
}

.welcome-360 .step.done .step-body {
  color: #9aa7b3;
}

.welcome-360 .step-num {
  display: none;
}

.welcome-360 .step-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 5px;
  transition: color 0.2s;
}

.welcome-360 .step-body {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.62;
  font-weight: 300;
  transition: color 0.2s;
}

.welcome-360 .step-body a {
  color: var(--ink);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1.5px solid var(--gold);
}

.welcome-360 .step-body a:hover {
  background: var(--goldbg);
}

@media (min-width: 768px) {
  .welcome-360 .step {
    gap: 20px;
    padding: 27px 6px;
  }

  .welcome-360 .step-num {
    display: block;
    flex: none;
    font-family: var(--fb);
    font-size: 17px;
    letter-spacing: 0.08em;
    color: var(--gold);
    width: 28px;
    margin-top: 5px;
  }

  .welcome-360 .step-title {
    font-size: 19.5px;
  }

  .welcome-360 .step-body {
    font-size: 16px;
  }
}

/* ── CTA button ── */
.welcome-360 .cta-band {
  text-align: center;
  padding: 38px 0 0;
}

.welcome-360 .btn {
  display: block;
  background: var(--gold);
  color: #fff;
  font-family: var(--fb);
  font-size: 18px;
  letter-spacing: 0.12em;
  padding: 17px 20px;
  border-radius: 2px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(208, 106, 21, 0.34);
  transition: all 0.2s var(--ease);
}

.welcome-360 .btn:hover {
  background: var(--gold3);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(208, 106, 21, 0.42);
}

@media (min-width: 768px) {
  .welcome-360 .btn {
    display: inline-block;
    font-size: 19px;
    padding: 17px 46px;
  }
}

/* ── Momentum schedule ── */
.welcome-360 .momentum {
  background: var(--void);
  color: #fff;
}

.welcome-360 .momentum h2 {
  color: #fff;
}

.welcome-360 .momentum .section-head p {
  color: rgba(255, 255, 255, 0.68);
}

.welcome-360 .why {
  background: var(--goldbg);
  border: 1px solid rgba(208, 106, 21, 0.28);
  padding: 22px 20px;
  margin-bottom: 30px;
  border-radius: 3px;
}

.welcome-360 .why p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 300;
}

.welcome-360 .why strong {
  color: var(--gold3);
  font-weight: 600;
}

.welcome-360 .week {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.welcome-360 .week:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.welcome-360 .week-btn {
  width: 100%;
  background: none;
  border: 0;
  cursor: pointer;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 4px;
  text-align: left;
  font-family: var(--fo);
  transition: opacity 0.18s;
}

.welcome-360 .week-btn:hover {
  opacity: 0.78;
}

.welcome-360 .week-tag {
  font-family: var(--fb);
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--gold);
  flex: none;
  width: 58px;
}

.welcome-360 .week-sum {
  flex: 1;
  font-size: 16px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
}

.welcome-360 .week-hrs {
  display: none;
}

.welcome-360 .chev {
  flex: none;
  transition: transform 0.25s var(--ease);
  color: var(--gold);
}

.welcome-360 .week.open .chev {
  transform: rotate(180deg);
}

.welcome-360 .week-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease);
}

.welcome-360 .week-body ul {
  list-style: none;
  padding: 0 4px 24px 20px;
}

.welcome-360 .week-body li {
  position: relative;
  padding: 9px 0 9px 24px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 300;
  line-height: 1.58;
}

.welcome-360 .week-body li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 17px;
  width: 7px;
  height: 7px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
}

.welcome-360 .week-body li p {
  display: inline;
  ;
}

.welcome-360 .week-body .t {
  color: var(--gold3);
  font-size: 13px;
  white-space: nowrap;
}

@media (min-width: 768px) {
  .welcome-360 .why {
    padding: 22px 26px;
    margin-bottom: 34px;
  }

  .welcome-360 .why p {
    font-size: 16px;
  }

  .welcome-360 .week-tag {
    font-size: 15px;
    width: 74px;
  }

  .welcome-360 .week-sum {
    font-size: 17px;
  }

  .welcome-360 .week-hrs {
    display: block;
    font-size: 13px;
    color: var(--muted);
    flex: none;
    font-weight: 300;
  }

  .welcome-360 .week-body ul {
    padding: 0 4px 24px 92px;
  }

  .welcome-360 .week-body li {
    font-size: 15.5px;
  }
}

/* ── Support ── */
.welcome-360 .support {
  background: var(--cream);
  text-align: center;
}

.welcome-360 .support h2 {
  margin-bottom: 16px;
}

.welcome-360 .support p {
  color: var(--mid);
  font-size: 16px;
  max-width: 560px;
  margin: 0 auto 10px;
  font-weight: 300;
}

.welcome-360 .support a {
  color: var(--ink);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1.5px solid var(--gold);
}

@media (min-width: 768px) {
  .welcome-360 .support p {
    font-size: 17px;
  }
}

/* ── Guarantee note ── */
.welcome-360 .guarantee {
  padding: 44px 0 56px;
  text-align: center;
  background: var(--paper);
}

.welcome-360 .guarantee .guar {
  font-family: var(--fs);
  font-size: 15.5px;
  font-style: italic;
  font-weight: 400;
  color: var(--mid);
  max-width: 660px;
  margin: 0 auto;
  line-height: 1.62;
}

@media (min-width: 768px) {
  .welcome-360 .guarantee .guar {
    font-size: 16.5px;
  }
}