/* ─── RESET ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { background: var(--c-bg); color: var(--c-white); font-family: var(--f-body); line-height: 1.6; overflow-x: hidden; }
img { display: block; max-width: 100%; height: auto; }
svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font: inherit; }
ul { list-style: none; }

/* ─── TOKENS ─────────────────────────────────────────── */
:root {
  --c-bg:        #0B0B0B;
  --c-bg-light:  #111111;
  --c-bg-card:   #171717;
  --c-bg-dark:   #060606;
  --c-red:       #BF1C1C;
  --c-red-hi:    #D42020;
  --c-white:     #FFFFFF;
  --c-muted:     rgba(255,255,255,0.48);
  --c-dim:       rgba(255,255,255,0.20);

  --grad-red:  linear-gradient(135deg, #D42020 0%, #BF1C1C 100%);

  --f-display: 'Cinzel', Georgia, serif;
  --f-body:    'Inter', system-ui, -apple-system, sans-serif;

  --size-xs:   0.75rem;
  --size-sm:   0.875rem;
  --size-base: 1rem;
  --size-lg:   1.125rem;
  --size-xl:   1.25rem;
  --size-2xl:  1.5rem;
  --size-3xl:  2rem;
  --size-hero: clamp(2.4rem, 5vw + 0.4rem, 4.25rem);

  --radius-sm:   6px;
  --radius-md:   10px;
  --radius-lg:   16px;
  --radius-pill: 999px;

  --shadow-red:  0 8px 48px rgba(212,32,32,0.38);
  --shadow-book: 0 48px 96px rgba(0,0,0,0.90);

  --border:     rgba(255,255,255,0.07);
  --border-mid: rgba(255,255,255,0.13);

  --ease:       cubic-bezier(0.4, 0, 0.2, 1);
  --transition: 0.25s var(--ease);

  --max-w:    1100px;
  --header-h: 68px;
  --sec-pad:  clamp(72px, 9vw, 120px);
}

/* ─── UTILITIES ──────────────────────────────────────── */
.lm-container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
}
.lm-section {
  padding-block: var(--sec-pad);
  border-top: 1px solid var(--border);
}
.lm-section-header { text-align: center; margin-bottom: clamp(40px, 6vw, 72px); }

.lm-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--f-body);
  font-size: var(--size-xs);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: 16px;
}
.lm-eyebrow::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: currentColor;
  flex-shrink: 0;
}
.lm-h2 {
  font-family: var(--f-display);
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--c-white);
  letter-spacing: 0.01em;
}
.lm-text--red   { color: var(--c-red-hi); }
.lm-text--muted { color: var(--c-muted); }

/* ─── BUTTONS ────────────────────────────────────────── */
.lm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--f-body);
  font-weight: 600;
  font-size: var(--size-base);
  line-height: 1;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  padding: 14px 28px;
  min-height: 48px;
  white-space: nowrap;
  letter-spacing: 0.02em;
  -webkit-tap-highlight-color: transparent;
}
.lm-btn--red    { background: var(--grad-red); color: #fff; }
.lm-btn--outline { background: transparent; border: 1px solid var(--border-mid); color: var(--c-white); }
.lm-btn--midcta { background: var(--grad-red); color: #fff; }

.lm-btn--sm  { padding: 8px 20px;  font-size: var(--size-sm); min-height: 36px; }
.lm-btn--lg  { padding: 18px 40px; font-size: var(--size-lg); min-height: 56px; }
.lm-btn--xl  { padding: 22px 52px; font-size: var(--size-xl); min-height: 64px; }
.lm-btn--full { width: 100%; }

.lm-btn--glow-red:hover  { box-shadow: var(--shadow-red); transform: translateY(-2px) scale(1.02); }
.lm-btn--midcta:hover    { box-shadow: var(--shadow-red); transform: translateY(-2px) scale(1.02); }
.lm-btn--outline:hover   { background: rgba(255,255,255,0.06); transform: translateY(-2px); }
.lm-btn--glow-red:active { transform: translateY(0) scale(0.99); }
.lm-btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ─── BADGE ──────────────────────────────────────────── */
.lm-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-pill);
  padding: 6px 14px;
  font-size: var(--size-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: 20px;
}
.lm-badge__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--c-red-hi);
  animation: lm-pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes lm-pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:0.5; transform:scale(0.7); }
}

/* ─── STICKY HEADER ──────────────────────────────────── */
.lm-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  background: rgba(11,11,11,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.lm-header--scrolled {
  border-bottom-color: var(--border-mid);
  box-shadow: 0 4px 32px rgba(0,0,0,0.60);
}
.lm-header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.lm-header__logo img { height: 36px; width: auto; }
.lm-header__cta {
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.lm-header__cta.is-visible {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

/* ─── HERO ───────────────────────────────────────────── */
.lm-hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  padding-top: calc(var(--header-h) + clamp(56px, 9vw, 96px));
  padding-bottom: clamp(72px, 9vw, 120px);
  background: var(--c-bg);
  overflow: hidden;
}
.lm-hero__bg-glow {
  position: absolute;
  top: -100px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(180,20,20,0.08) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.lm-hero > .lm-container { position: relative; z-index: 1; }

.lm-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}
@media (min-width: 768px) {
  .lm-hero__grid { grid-template-columns: 1fr 1fr; gap: 80px; }
}

.lm-hero__h1 {
  font-family: var(--f-display);
  font-size: var(--size-hero);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--c-white);
  margin-bottom: 24px;
}
.lm-hero__sub {
  font-size: var(--size-lg);
  color: var(--c-muted);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 520px;
}
.lm-hero__actions { display: flex; flex-direction: column; gap: 16px; }

.lm-social-proof {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--size-sm);
  color: var(--c-dim);
}
.lm-social-proof svg { color: #4ade80; flex-shrink: 0; }

.lm-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 32px;
}
.lm-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--size-xs);
  font-weight: 600;
  color: var(--c-dim);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.lm-trust-badge svg { color: #4ade80; }

.lm-scarcity {
  font-size: var(--size-xs);
  color: var(--c-dim);
  margin-top: 20px;
  letter-spacing: 0.05em;
}

.lm-hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  order: -1;
}
@media (min-width: 768px) { .lm-hero__visual { order: 0; } }

.lm-book-wrap { position: relative; display: inline-block; }
.lm-book-wrap__glow {
  position: absolute;
  inset: 15%;
  background: radial-gradient(circle, rgba(180,20,20,0.28) 0%, transparent 70%);
  filter: blur(48px);
  z-index: -1;
  animation: lm-float 4s ease-in-out infinite;
}
.lm-book--float {
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 48px 80px rgba(0,0,0,0.90));
  animation: lm-float 4s ease-in-out infinite;
  will-change: transform;
  max-width: 280px;
}
@media (min-width: 768px)  { .lm-book--float { max-width: 360px; } }
@media (min-width: 1100px) { .lm-book--float { max-width: 420px; } }

@keyframes lm-float {
  0%, 100% { transform: translateY(0px)   rotate(-2deg); }
  50%       { transform: translateY(-16px) rotate(-2deg); }
}

/* ─── HOW IT WORKS ───────────────────────────────────── */
.lm-steps { background: var(--c-bg-light); }

.lm-steps__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  position: relative;
}
@media (min-width: 768px) {
  .lm-steps__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
  .lm-steps__grid::before {
    content: '';
    position: absolute;
    top: 27px;
    left: calc(33.33% + 16px);
    right: calc(33.33% + 16px);
    border-top: 1px dashed rgba(255,255,255,0.12);
  }
}

.lm-step { text-align: center; }
.lm-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  background: transparent;
  font-family: var(--f-display);
  font-size: var(--size-xl);
  font-weight: 600;
  color: var(--c-white);
  margin: 0 auto 24px;
}
.lm-step__title {
  font-family: var(--f-display);
  font-size: var(--size-lg);
  font-weight: 600;
  color: var(--c-white);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}
.lm-step__desc {
  font-size: var(--size-sm);
  color: var(--c-muted);
  line-height: 1.75;
  margin-bottom: 20px;
}

/* ─── WHAT'S INSIDE ──────────────────────────────────── */
.lm-inside { background: var(--c-bg); }

.lm-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
@media (min-width: 560px) { .lm-cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .lm-cards-grid { grid-template-columns: repeat(3, 1fr); } }

.lm-card {
  background: var(--c-bg-light);
  padding: 32px 28px;
  transition: background var(--transition);
}
.lm-card:hover { background: var(--c-bg-card); }

.lm-card__icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  background: transparent;
  border: 1px solid var(--border-mid);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.lm-card__icon svg { width: 22px; height: 22px; color: rgba(255,255,255,0.65); }
.lm-card__title {
  font-family: var(--f-display);
  font-size: var(--size-base);
  font-weight: 600;
  color: var(--c-white);
  margin-bottom: 10px;
  letter-spacing: 0.03em;
}
.lm-card__desc {
  font-size: var(--size-sm);
  color: var(--c-muted);
  line-height: 1.7;
}
.lm-card__count {
  display: inline-block;
  margin-top: 16px;
  font-size: var(--size-xs);
  font-weight: 600;
  color: var(--c-dim);
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

/* ─── MID-PAGE CTA ───────────────────────────────────── */
.lm-midcta {
  background: var(--c-bg-light);
  position: relative;
  overflow: hidden;
}
.lm-midcta::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 360px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,32,32,0.55), transparent);
  pointer-events: none;
}
.lm-midcta__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  text-align: center;
}
@media (min-width: 768px) {
  .lm-midcta__grid { grid-template-columns: auto 1fr; text-align: left; gap: 72px; }
}
.lm-midcta__book {
  max-width: 160px;
  margin: 0 auto;
  filter: drop-shadow(var(--shadow-book));
}
@media (min-width: 768px) { .lm-midcta__book { max-width: 180px; margin: 0; } }
.lm-midcta__h2 {
  font-family: var(--f-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: 14px;
  line-height: 1.2;
}
.lm-midcta__sub {
  color: var(--c-muted);
  font-size: var(--size-lg);
  margin-bottom: 32px;
  line-height: 1.65;
}

/* ─── TRUST PILLARS ──────────────────────────────────── */
.lm-trust { background: var(--c-bg); }

.lm-pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 768px) {
  .lm-pillars { grid-template-columns: repeat(3, 1fr); gap: 56px; }
}
.lm-pillar { text-align: center; }
.lm-pillar__icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-md);
  background: transparent;
  border: 1px solid var(--border-mid);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
}
.lm-pillar__icon svg { width: 26px; height: 26px; color: rgba(255,255,255,0.60); }
.lm-pillar h3 {
  font-family: var(--f-display);
  font-size: var(--size-lg);
  font-weight: 600;
  color: var(--c-white);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}
.lm-pillar p { font-size: var(--size-sm); color: var(--c-muted); line-height: 1.75; }

/* ─── CLAIM FORM ─────────────────────────────────────── */
.lm-claim { background: var(--c-bg-light); }
.lm-claim__wrap { max-width: 520px; margin-inline: auto; }
.lm-claim__note {
  color: var(--c-muted);
  font-size: var(--size-sm);
  margin-top: 12px;
  line-height: 1.65;
}

.lm-form {
  background: var(--c-bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 5vw, 44px);
  margin-top: 40px;
}
.lm-form__group { margin-bottom: 20px; }
.lm-form__label {
  display: block;
  font-size: var(--size-xs);
  font-weight: 600;
  color: var(--c-muted);
  margin-bottom: 8px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}
.lm-form__input {
  width: 100%;
  background: rgba(0,0,0,0.40);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-family: var(--f-body);
  font-size: var(--size-base);
  color: var(--c-white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.lm-form__input::placeholder { color: rgba(255,255,255,0.18); }
.lm-form__input:focus {
  border-color: rgba(212,32,32,0.45);
  box-shadow: 0 0 0 3px rgba(212,32,32,0.08);
}
.lm-form__privacy {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 14px;
  font-size: var(--size-xs);
  color: var(--c-dim);
  line-height: 1.55;
}
.lm-form__privacy svg { flex-shrink: 0; margin-top: 1px; }

.lm-form__success { text-align: center; padding: 48px 24px; }
.lm-form__success-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  border: 1px solid rgba(74,222,128,0.25);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.lm-form__success-icon svg { color: #4ade80; width: 28px; height: 28px; }
.lm-form__success h3 {
  font-family: var(--f-display);
  font-size: var(--size-2xl);
  color: var(--c-white);
  margin-bottom: 12px;
}
.lm-form__success p { color: var(--c-muted); font-size: var(--size-base); line-height: 1.65; }
.lm-form__success strong { color: var(--c-white); }

/* ─── FAQ ────────────────────────────────────────────── */
.lm-faq { background: var(--c-bg); }
.lm-faq__wrap { max-width: 680px; margin-inline: auto; }
.lm-faq__list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.lm-faq__item {
  background: var(--c-bg-light);
  transition: background var(--transition);
}
.lm-faq__item[open] { background: var(--c-bg-card); }
.lm-faq__question {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  font-weight: 600;
  font-size: var(--size-base);
  color: var(--c-white);
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.lm-faq__question::-webkit-details-marker { display: none; }
.lm-faq__chevron {
  width: 16px; height: 16px;
  color: var(--c-muted);
  flex-shrink: 0;
  transition: transform var(--transition);
}
.lm-faq__item[open] .lm-faq__chevron { transform: rotate(180deg); }
.lm-faq__answer {
  padding: 0 24px 22px;
  font-size: var(--size-sm);
  color: var(--c-muted);
  line-height: 1.75;
}

/* ─── FINAL CTA ──────────────────────────────────────── */
.lm-final-cta {
  background: #000;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.lm-final-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 900px; height: 500px;
  background: radial-gradient(ellipse at top, rgba(180,20,20,0.13) 0%, transparent 68%);
  pointer-events: none;
  z-index: 0;
}
.lm-final-cta__bg { display: none; }
.lm-final-cta > .lm-container { position: relative; z-index: 1; }
.lm-final-cta__book {
  max-width: 160px;
  margin: 0 auto 36px;
  filter: drop-shadow(0 32px 64px rgba(0,0,0,0.90));
  animation: lm-float 4s ease-in-out infinite;
}
.lm-final-cta__h2 {
  font-family: var(--f-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: 16px;
  line-height: 1.15;
  letter-spacing: 0.01em;
}
.lm-final-cta__sub {
  color: var(--c-muted);
  font-size: var(--size-lg);
  margin-bottom: 40px;
  line-height: 1.65;
}
.lm-final-cta__scarcity {
  margin-top: 20px;
  font-size: var(--size-xs);
  color: var(--c-dim);
  letter-spacing: 0.06em;
}

/* ─── FOOTER ─────────────────────────────────────────── */
.lm-footer {
  background: var(--c-bg-dark);
  border-top: 1px solid var(--border);
  padding: 56px 0 40px;
}
.lm-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
.lm-footer__logo    { height: 28px; width: auto; opacity: 0.50; }
.lm-footer__contact { font-size: var(--size-sm); color: var(--c-dim); }
.lm-footer__contact a {
  color: var(--c-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.lm-footer__contact a:hover { color: var(--c-white); }
.lm-footer__disclaimer {
  font-size: var(--size-xs);
  color: rgba(255,255,255,0.20);
  line-height: 1.75;
  max-width: 600px;
}
.lm-footer__copy { font-size: var(--size-xs); color: rgba(255,255,255,0.14); }

/* ─── SCROLL REVEAL ──────────────────────────────────── */
[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
[data-animate="fade-left"]  { transform: translateX(36px); }
[data-animate="fade-right"] { transform: translateX(-36px); }
[data-animate].is-visible   { opacity: 1 !important; transform: none !important; }

/* ─── RESPONSIVE HELPERS ─────────────────────────────── */
@media (max-width: 767px) { .lm-hide-mobile { display: none; } }
@media (min-width: 768px) { .lm-show-mobile-only { display: none; } }
