/* =========================================================================
   InstaClubHub — "Price Locked In" site styles
   =========================================================================
   >>> BRANDING — EDIT THESE FIRST <<<
   Swap the hex values below for the real InstaClubHub brand colors.
   (Defaults are Instagram-ish gradient colors so it looks good out of the box.)
   ========================================================================= */
:root {
  --brand-primary:   #C6499B;  /* BRAND_PRIMARY_COLOR   — magenta from logo play button */
  --brand-secondary: #3D3B6E;  /* BRAND_SECONDARY_COLOR — navy/indigo from logo wordmark */
  --brand-accent:    #4FB2AC;  /* BRAND_ACCENT_COLOR    — teal from logo play button */

  /* Neutral / layout colors — usually fine to leave as-is */
  --text:        #1a1a1a;
  --text-muted:  #555555;
  --bg:          #ffffff;
  --bg-soft:     #f6f6f8;
  --border:      #e4e4ea;
  --white:       #ffffff;

  --radius:      16px;
  --shadow:      0 10px 30px rgba(0,0,0,0.12);
  --maxw:        640px;
}

/* ---------- Reset / base ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }

html { -webkit-text-size-adjust: 100%; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
               Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  background: var(--bg-soft);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* ---------- Layout ---------- */
.page {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 20px 56px;
}

.card {
  width: 100%;
  max-width: var(--maxw);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px 24px 36px;
  text-align: center;
}

/* ---------- Logo ---------- */
.logo {
  display: block;
  height: 60px;
  width: auto;
  margin: 4px auto 20px;
}

/* ---------- Arrow badge ---------- */
.arrow-badge {
  width: 58px;
  height: 58px;
  margin: 4px auto 18px;
  border: 2px solid var(--brand-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-primary);
}
.arrow-badge svg { width: 26px; height: 26px; }

/* ---------- "ONE MORE STEP" headline ---------- */
.step-headline {
  font-size: clamp(40px, 12vw, 72px);
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #0f1030;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.step-headline em { color: var(--brand-primary); font-style: normal; }

.step-sub {
  font-size: clamp(17px, 4.6vw, 21px);
  color: #4a4a5a;
  margin: 0 auto 30px;
  max-width: 26ch;
  line-height: 1.35;
}

/* ---------- Buttons ---------- */
.btn-group {
  display: flex;
  flex-direction: column;   /* stacked, like the mockup */
  gap: 18px;
}

.btn {
  min-height: 92px;
  border: none;
  border-radius: var(--radius);
  padding: 16px 22px;
  cursor: pointer;
  text-decoration: none;
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-family: inherit;
  transition: transform .06s ease, filter .15s ease, box-shadow .15s ease;
}
.btn:active { transform: translateY(1px) scale(0.995); }
.btn:hover  { filter: brightness(1.04); }

.btn-primary {
  background: linear-gradient(100deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
  box-shadow: 0 12px 26px rgba(198, 73, 155, 0.32);
}
.btn-secondary {
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-accent));
}

/* Outline (white) button — "send me the replay" */
.btn-outline {
  background: var(--white);
  color: var(--brand-secondary);
  border: 2px solid var(--brand-accent);
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}
.btn-outline .btn-ico-box { color: var(--brand-accent); }

/* Icon + text row layout inside buttons */
.btn-icon {
  flex-direction: row;
  justify-content: flex-start;
  gap: 0;
  text-align: left;
}
.btn-ico-box {
  flex: 0 0 auto;
  width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-ico-box svg { width: 30px; height: 30px; }
.btn-sep {
  flex: 0 0 auto;
  width: 2px;
  align-self: stretch;
  margin: 4px 16px 4px 8px;
  background: currentColor;
  opacity: 0.35;
  border-radius: 2px;
}
.btn-text { display: flex; flex-direction: column; gap: 3px; }

.btn-big   { font-size: clamp(17px, 4.4vw, 21px); font-weight: 800; letter-spacing: .01em; line-height: 1.12; }
.btn-small { font-size: 13px; font-weight: 500; opacity: .95; }

/* ---------- Lock divider ---------- */
.divider-lock {
  position: relative;
  margin: 34px 0 20px;
  height: 1px;
  background: var(--border);
}
.lock-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fdeef6;
  color: var(--brand-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lock-badge svg { width: 22px; height: 22px; }

/* ---------- Locked-in message + info rows ---------- */
.locked-headline {
  font-size: clamp(24px, 6.2vw, 34px);
  font-weight: 800;
  color: #0f1030;
  line-height: 1.2;
  margin: 0 auto 26px;
  max-width: 20ch;
}

.info-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  text-align: left;
  max-width: 480px;
  margin: 0 auto;
}
.info-row p { font-size: 16px; line-height: 1.5; color: #33333f; }
.info-ico {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.info-ico svg { width: 22px; height: 22px; }
.info-ico-pink { background: #fdeef6; color: var(--brand-primary); }
.info-ico-blue { background: #e9f6f5; color: var(--brand-accent); }

.thin-divider {
  border: none;
  border-top: 1px solid var(--border);
  max-width: 480px;
  margin: 22px auto;
}

/* ---------- Calendar dropdown ---------- */
.calendar-wrap { position: relative; display: flex; }
.calendar-wrap .btn { flex: 1 1 auto; }

.menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
  z-index: 20;
  display: none;
  text-align: left;
}
.menu.open { display: block; }

.menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  color: var(--text);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  border-bottom: 1px solid var(--border);
}
.menu a:last-child { border-bottom: none; }
.menu a:hover { background: var(--bg-soft); }
.menu a.join-zoom { color: var(--brand-primary); }
.menu .menu-hint {
  padding: 10px 16px;
  font-size: 12px;
  color: var(--text-muted);
  background: var(--bg-soft);
  font-weight: 500;
}
.menu .ico { font-size: 18px; line-height: 1; }

/* ---------- Replay / benefits page ---------- */
.section-title {
  font-size: clamp(22px, 5.5vw, 30px);
  font-weight: 800;
  margin-bottom: 6px;
}
.section-lead {
  color: var(--text-muted);
  margin-bottom: 24px;
  font-size: 16px;
}

.benefits {
  text-align: left;
  max-width: 44ch;
  margin: 0 auto 28px;
  padding-left: 22px;
}
.benefits li {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.45;
}

/* Responsive 16:9 video wrapper */
.video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
  box-shadow: var(--shadow);
}
.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-note {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 10px;
}

/* ---------- Big green CTA button (Dallas Live event) ---------- */
.btn-cta {
  width: 100%;
  max-width: 440px;
  margin: 26px auto 0;
}
.btn-green {
  background: linear-gradient(135deg, #16A34A, #22C55E);
}

/* ---------- Footer link ---------- */
.back-link {
  display: inline-block;
  margin-top: 26px;
  color: var(--brand-secondary);
  font-weight: 600;
  text-decoration: none;
  font-size: 15px;
}
.back-link:hover { text-decoration: underline; }
