/* ==========================================================================
   THE 1% CLOSER - Funnel pages (opt-in, thank you, welcome)
   Deliberately stripped back: one decision per page.
   ========================================================================== */

.funnel {
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

/* Minimal masthead - no nav, nothing to click away to */
.fbar {
  padding: 1.5rem var(--gut);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  border-bottom: 1px solid var(--hair-soft);
  position: relative; z-index: 3;
}
.fbar__trust {
  font-family: var(--ff-mono); font-size: var(--t-xs);
  letter-spacing: .18em; text-transform: uppercase; color: var(--ash-dim);
}
@media (max-width: 620px) { .fbar__trust { display: none; } }

.fmain { position: relative; z-index: 2; display: grid; align-items: center; padding-block: clamp(2.5rem, 2rem + 4vw, 5rem); }

.ffoot {
  border-top: 1px solid var(--hair-soft);
  padding: 1.5rem var(--gut);
  display: flex; flex-wrap: wrap; gap: .75rem 2rem; justify-content: space-between;
  font-size: var(--t-xs); color: var(--ash-dim);
  position: relative; z-index: 2;
}
.ffoot a { color: var(--ash-dim); }
.ffoot a:hover { color: var(--gold); }

/* ---------- Split layout -------------------------------------------------- */
.split {
  width: var(--shelf); margin-inline: auto;
  display: grid; gap: clamp(2.5rem, 1.5rem + 5vw, 5rem);
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  align-items: center;
}
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }

.split__form { margin-top: 2.5rem; display: grid; gap: 1rem; max-width: 480px; }

/* ---------- Book mockup --------------------------------------------------- */
.book {
  width: min(340px, 100%); aspect-ratio: 3 / 4; margin-inline: auto;
  display: grid; align-content: center; justify-items: center; gap: 1rem;
  padding: 2.75rem 2rem; text-align: center;
  background:
    radial-gradient(90% 60% at 50% 0%, rgba(200,164,76,.13), transparent 60%),
    linear-gradient(155deg, var(--ink-3), var(--ink) 72%);
  border: 1px solid var(--hair);
  border-radius: 2px 6px 6px 2px;
  box-shadow:
    -10px 0 0 -6px var(--gold-lo),
    -14px 0 0 -8px rgba(200,164,76,.3),
    var(--shadow-lift);
  transform: rotate(-2deg);
  transition: transform .8s var(--ease-out);
}
.book:hover { transform: rotate(0) translateY(-6px); }
.book img { width: 82px; }
.book h2, .book h3 { font-family: var(--ff-display); font-size: clamp(1.7rem, 3vw, 2.2rem); color: var(--bone); line-height: 1.05; }
.book__rule { width: 40px; height: 1px; background: var(--gold); }

/* ---------- Value bullets ------------------------------------------------- */
.bullets { list-style: none; padding: 0; margin: 2rem 0 0; display: grid; gap: 1.05rem; }
.bullets li {
  display: grid; grid-template-columns: 1.4rem 1fr; gap: .85rem;
  font-size: var(--t-base); line-height: 1.55; color: var(--bone-dim);
}
.bullets li::before {
  content: "◆"; color: var(--gold); font-size: .55rem; line-height: 2.4;
}

/* ---------- Steps (thank-you / welcome) ----------------------------------- */
.steps { list-style: none; padding: 0; margin: 2.5rem 0 0; display: grid; gap: 0; counter-reset: s; }
.steps li {
  counter-increment: s;
  display: grid; grid-template-columns: 3rem 1fr; gap: 1.25rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--hair-soft);
}
.steps li:last-child { border-bottom: 1px solid var(--hair-soft); }
.steps li::before {
  content: counter(s, decimal-leading-zero);
  font-family: var(--ff-mono); font-size: var(--t-sm); font-weight: 700;
  letter-spacing: .1em; color: var(--gold); opacity: .65;
}
.steps h3 { font-family: var(--ff-sans); font-weight: 600; font-size: var(--t-base); color: var(--bone); margin-bottom: .35rem; }
.steps p { font-size: var(--t-sm); color: var(--ash); line-height: 1.65; }

/* ---------- Access credential block --------------------------------------- */
.cred {
  margin-top: 2.5rem;
  padding: clamp(1.5rem, 1rem + 1.6vw, 2.25rem);
  border: 1px solid var(--hair); border-radius: var(--radius);
  background:
    radial-gradient(100% 130% at 0% 0%, rgba(200,164,76,.1), transparent 62%),
    var(--ink-1);
  text-align: center;
}
.cred__label { font-family: var(--ff-mono); font-size: var(--t-xs); letter-spacing: .24em; text-transform: uppercase; color: var(--ash); }
.cred__code {
  display: flex; align-items: center; justify-content: center; gap: 1rem;
  margin-block: 1rem 1.25rem;
}
.cred__code code {
  font-family: var(--ff-mono); font-size: clamp(1.5rem, 4vw, 2.25rem); font-weight: 700;
  letter-spacing: .3em; color: var(--gold); padding-left: .3em;
}
.cred__copy {
  padding: .55rem .9rem; border: 1px solid var(--hair);
  border-radius: 2px; color: var(--gold);
  font-family: var(--ff-mono); font-size: .625rem; letter-spacing: .14em; text-transform: uppercase;
  transition: background .3s, color .3s;
}
.cred__copy:hover { background: var(--gold); color: var(--ink); }

/* ---------- Tripwire ------------------------------------------------------ */
.tripwire {
  border-top: 1px solid var(--hair-soft);
  background: var(--ink-1);
  padding-block: var(--bay);
  position: relative; z-index: 2;
}
.tripwire__in {
  width: var(--shelf); margin-inline: auto;
  display: grid; gap: clamp(2rem, 1rem + 4vw, 4rem);
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  align-items: center;
}
@media (max-width: 900px) { .tripwire__in { grid-template-columns: 1fr; } }

/* ---------- 404 ----------------------------------------------------------- */
.lost { text-align: center; display: grid; justify-items: center; gap: 1.5rem; }
.lost__code {
  font-family: var(--ff-display); font-size: clamp(6rem, 18vw, 12rem);
  line-height: .8; color: var(--gold); opacity: .3;
}
