/* ── TOKENS ─────────────────────────────────────────────────────────────────── */
:root {
  --bg:        #0A0A0A;
  --surface:   #141414;
  --surface-2: #1C1C1C;
  --border:    #282828;
  --text:      #F0EDE8;
  --muted:     #686868;
  --gold:      #C8972A;
  --gold-lt:   #E4B44E;
  --white:     #FFFFFF;
}

/* ── RESET ──────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ── HEADER ─────────────────────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.75rem;
  background: rgba(10, 10, 10, 0.80);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s;
}
.site-header.scrolled { border-color: var(--border); }

/* Logo images — mix-blend-mode:screen makes the black bg vanish on dark pages */
.site-logo {
  height: 64px;
  width: auto;
  display: block;
  mix-blend-mode: screen;
}

.hero-logo {
  height: 120px;
  width: auto;
  display: block;
  margin: 0 auto 1.5rem;
  mix-blend-mode: screen;
}

@media (max-width: 600px) {
  .site-logo { height: 48px; }
  .hero-logo { height: 90px; }
}

/* ── BUTTONS ────────────────────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.7rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, opacity 0.15s;
  line-height: 1;
}
.btn-gold  { background: var(--gold);  color: #0A0A0A; }
.btn-gold:hover  { background: var(--gold-lt); }
.btn-ghost { background: transparent; color: var(--gold); border: 1px solid var(--gold); }
.btn-ghost:hover { background: var(--gold); color: #0A0A0A; }
.btn-full  { width: 100%; text-align: center; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; }

/* ── LAYOUT ─────────────────────────────────────────────────────────────────── */
.container {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.container-wide {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
section { padding: 4.5rem 0; }

/* ── HERO ───────────────────────────────────────────────────────────────────── */
.hero {
  padding-top: 7.5rem;
  padding-bottom: 2.5rem;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}

h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.13;
  color: var(--white);
  margin-bottom: 1.1rem;
}

h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.1rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 0.75rem;
}

h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.subtitle {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 2rem;
}

/* ── VIDEO ──────────────────────────────────────────────────────────────────── */
.video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--surface);
}
.video-wrap iframe,
.video-wrap .video-placeholder {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}
.video-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
  padding: 1rem;
}
.video-placeholder .play-icon {
  font-size: 2.8rem;
  color: var(--gold);
  opacity: 0.6;
  line-height: 1;
}

/* ── PROOF BAR ──────────────────────────────────────────────────────────────── */
.proof-bar {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  padding: 3rem 1.5rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.proof-item { text-align: center; }
.proof-item .num {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.proof-item .lbl {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 0.35rem;
}

/* ── CALENDLY SECTION ───────────────────────────────────────────────────────── */
.cal-section { text-align: center; }
.section-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.calendly-inline-widget {
  min-width: 320px;
  height: 700px;
  margin-top: 2rem;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
}

/* ── LEAD CAPTURE GATE ──────────────────────────────────────────────────────── */
.gate {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2.5rem 2rem;
  max-width: 460px;
  margin: 2rem auto 0;
  text-align: center;
}
.gate .lock-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  display: block;
}
.gate p { color: var(--muted); font-size: 0.9rem; margin: 0.4rem 0 1.5rem; }

.form-field {
  margin-bottom: 0.75rem;
}
.form-field input {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.8rem 1rem;
  color: var(--text);
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.15s;
}
.form-field input:focus { border-color: var(--gold); }
.form-field input::placeholder { color: var(--muted); }

.privacy {
  margin-top: 0.75rem;
  font-size: 0.72rem;
  color: var(--muted);
}

/* ── BLURRED PREVIEW ────────────────────────────────────────────────────────── */
.locked-preview {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.locked-preview .blur-layer {
  filter: blur(8px);
  pointer-events: none;
  user-select: none;
  opacity: 0.35;
}
.locked-preview .lock-badge {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: var(--surface-2);
  border: 1px solid var(--gold);
  border-radius: 6px;
  padding: 0.6rem 1.1rem;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  z-index: 2;
}

/* ── EVENT DETAILS ──────────────────────────────────────────────────────────── */
.event-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2rem;
  text-align: left;
  margin-bottom: 2rem;
}
.event-meta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1.25rem 0;
}
.meta-row {
  display: flex;
  gap: 0.75rem;
  font-size: 0.95rem;
}
.meta-row .icon { color: var(--gold); flex-shrink: 0; width: 1.25rem; }
.meta-row .val  { color: var(--text); }

.event-bullets {
  list-style: none;
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.event-bullets li {
  display: flex;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: var(--text);
}
.event-bullets li::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.65rem;
  margin-top: 0.3rem;
  flex-shrink: 0;
}

/* ── QUOTE ──────────────────────────────────────────────────────────────────── */
.quote-block {
  border-left: 3px solid var(--gold);
  background: var(--surface);
  border-radius: 0 8px 8px 0;
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
}
.quote-block blockquote {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--white);
  line-height: 1.7;
  margin-bottom: 0.6rem;
}
.quote-block cite {
  font-size: 0.82rem;
  color: var(--gold);
  font-style: normal;
  font-weight: 600;
}

/* ── TESTIMONIALS CAROUSEL ──────────────────────────────────────────────────── */
.member-testimonials {
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 4.5rem 0;
}

.member-testimonials-header {
  margin-bottom: 2.5rem;
}

.member-testimonials-scroll {
  overflow: hidden;
  width: 100%;
}

.member-testimonials-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: mt-marquee 50s linear infinite;
}

.member-testimonials-track:hover { animation-play-state: paused; }

@keyframes mt-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.member-card {
  flex-shrink: 0;
  width: 360px;
  height: 180px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  cursor: default;
  transition: border-color 0.2s;
}

.member-card:hover { border-color: var(--gold); }

.member-card-head {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 8px;
  flex-shrink: 0;
}

.member-card-photo {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid var(--border);
}

.member-card-photo-placeholder {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--border);
  flex-shrink: 0;
}

.member-card-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin: 0;
}

.member-card-role {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.2;
  margin: 0;
}

.member-card-quote {
  font-size: 12px;
  line-height: 1.55;
  color: var(--muted);
  flex: 1;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  margin: 0;
}

.member-card-stars {
  display: flex;
  gap: 2px;
  margin-top: 8px;
  flex-shrink: 0;
}

/* ── DIVIDER ────────────────────────────────────────────────────────────────── */
.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

/* ── FOOTER ─────────────────────────────────────────────────────────────────── */
footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 1.5rem;
  text-align: center;
  font-size: 0.78rem;
  color: var(--muted);
}
footer a { color: var(--muted); text-decoration: underline; }
footer a:hover { color: var(--gold); }

/* ── UTILITY ────────────────────────────────────────────────────────────────── */
.hidden   { display: none !important; }
.tc       { text-align: center; }
.mt-sm    { margin-top: 0.75rem; }
.mt-md    { margin-top: 1.5rem; }
.mt-lg    { margin-top: 3rem; }

/* ── RESPONSIVE ─────────────────────────────────────────────────────────────── */
@media (max-width: 600px) {
  .site-header { padding: 0.9rem 1.1rem; }
  .hero { padding-top: 6.5rem; }
  section { padding: 3rem 0; }
  .proof-bar { gap: 1.75rem; padding: 2rem 1rem; }
  .gate { padding: 1.75rem 1.25rem; }
  .event-card { padding: 1.5rem 1.25rem; }
  .calendly-inline-widget { height: 750px; }
}
