/* ============================================================
   ANKA Capital — Off-Market Community landing + thank-you page
   ============================================================
   Ported from the standalone HTML delivered by LeadPro.

   IMPORTANT: the original stylesheet targeted bare element selectors
   (section, header, footer, label, input, body). Loaded globally those
   would have overridden the main site — the site header and footer in
   particular. Everything here is therefore scoped under `.lp`, which
   wraps both campaign pages. Do not remove that scope.

   Design tokens are NOT redeclared: the values in the original file are
   identical to the ones already in styles.css, so they are inherited. */

.lp {
  --lp-maxw: 1160px;
  background: var(--charcoal);
  color: var(--off-white);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.6;
}

.lp img { max-width: 100%; display: block; }
.lp a { color: inherit; }

/* ---------- primitives ---------- */
.lp .wrap { max-width: var(--lp-maxw); margin: 0 auto; padding: 0 28px; }

.lp .eyebrow {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2.8px;
  text-transform: uppercase;
  color: var(--bronze-soft);
  margin: 0 0 22px;
}
.lp .eyebrow.on-light { color: var(--bronze-deep); }

.lp h1, .lp h2, .lp h3 {
  font-family: var(--serif);
  font-weight: 300;
  letter-spacing: -0.01em;
  margin: 0;
}
.lp h1 { font-size: clamp(34px, 5.4vw, 60px); line-height: 1.08; }
.lp h2 { font-size: clamp(28px, 3.8vw, 42px); line-height: 1.14; }
.lp h3 { font-size: 20px; line-height: 1.3; }
.lp p  { margin: 0 0 18px; }

.lp .lead {
  font-size: clamp(15px, 1.6vw, 17.5px);
  color: var(--warm-stone);
  max-width: 62ch;
}
.lp .lead.on-light { color: var(--ink-mid); }

.lp .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.64px;
  text-transform: uppercase;
  padding: 17px 34px;
  border-radius: 0;
  text-decoration: none;
  cursor: pointer;
  transition: 0.25s ease;
  border: 1px solid transparent;
}
.lp .btn-primary { background: var(--bronze); border-color: var(--bronze); color: #fff; }
.lp .btn-primary:hover { background: var(--bronze-deep); border-color: var(--bronze-deep); }
.lp .btn-ghost { background: transparent; border-color: rgba(245,243,238,.18); color: var(--off-white); }
.lp .btn-ghost:hover { border-color: var(--warm-stone); }
.lp .btn-ghost.on-light { border-color: var(--hairline-dark-strong); color: var(--ink); }
.lp .btn-ghost.on-light:hover { border-color: var(--ink); }

.lp section { padding: clamp(64px, 9vw, 116px) 0; }
.lp .sec-dark     { background: var(--charcoal);   border-top: 1px solid var(--hairline-soft); }
.lp .sec-graphite { background: var(--graphite-3); border-top: 1px solid var(--hairline-soft); }
.lp .sec-light    { background: var(--cream); color: var(--ink); }
.lp .sec-light h2, .lp .sec-light h3 { color: var(--ink); }

/* ---------- header ---------- */
.lp .lp-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(14, 14, 14, 0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--hairline);
}
.lp .lp-header.is-static { position: static; }
.lp .nav { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.lp .mark {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 4.2px;
  line-height: 1.15;
  text-transform: uppercase;
  text-decoration: none;
}
.lp .mark span {
  display: block;
  font-weight: 300;
  color: var(--warm-stone);
  font-size: 11px;
  letter-spacing: 4.6px;
}
.lp .nav .btn { padding: 13px 24px; font-size: 10px; letter-spacing: 2.4px; }
.lp .step-badge {
  font-size: 10px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--bronze-soft);
}

/* ---------- hero ---------- */
.lp .hero {
  padding: clamp(70px, 11vw, 130px) 0 clamp(56px, 8vw, 96px);
  position: relative;
  overflow: hidden;
}
.lp .hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(900px 520px at 78% 8%, rgba(158,124,79,.16), transparent 62%);
}
.lp .hero .wrap { position: relative; z-index: 1; }
.lp .hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(38px, 6vw, 80px);
  align-items: start;
}
.lp .hero h1 { margin-bottom: 26px; }
.lp .hero h1 em { font-style: italic; color: var(--bronze-soft); }

.lp .meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--hairline);
}
.lp .chip {
  font-size: 10.5px;
  letter-spacing: .42px;
  color: var(--off-white);
  background: rgba(255,255,255,.03);
  border: 1px solid var(--hairline-strong);
  padding: 9px 15px;
}

/* ---------- form card ---------- */
.lp .card-form {
  background: var(--graphite);
  border: 1px solid var(--hairline);
  padding: clamp(26px, 3.4vw, 40px);
}
.lp .card-form h3 { font-size: 24px; margin-bottom: 8px; }
.lp .form-note { font-size: 12.5px; color: var(--olive-grey); margin-bottom: 26px; }
.lp .after-form { font-size: 11.5px; color: var(--olive-grey); text-align: center; margin: 16px 0 0; }

/* ---------- lists / grids ---------- */
.lp .grid {
  display: grid;
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
  margin-top: 52px;
}
.lp .grid-3 { grid-template-columns: repeat(3, 1fr); }
.lp .cell { background: var(--charcoal); padding: 32px 28px; }
.lp .cell .num {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 2.4px;
  color: var(--bronze);
  margin-bottom: 16px;
}
.lp .cell h3 {
  font-size: 17px;
  font-family: var(--sans);
  font-weight: 500;
  letter-spacing: .2px;
  margin-bottom: 10px;
}
.lp .cell p { font-size: 13.5px; color: var(--olive-grey); margin: 0; line-height: 1.6; }
.lp .sec-graphite .cell { background: var(--graphite-3); }

.lp .checklist { list-style: none; margin: 34px 0 0; padding: 0; max-width: 74ch; }
.lp .checklist li {
  position: relative;
  padding: 0 0 20px 34px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--hairline-dark);
  font-size: 15px;
  color: var(--ink-mid);
}
.lp .checklist li:last-child { border-bottom: 0; }
.lp .checklist li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 9px;
  width: 13px;
  height: 1px;
  background: var(--bronze);
}
.lp .checklist.on-dark li { color: var(--warm-stone); border-bottom-color: var(--hairline); }

.lp .cols {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(34px, 6vw, 84px);
  align-items: start;
}
.lp .tag-list { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 26px; }
.lp .tag {
  font-size: 10.5px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  padding: 9px 15px;
  border: 1px solid var(--hairline-dark-strong);
  color: var(--ink-mid);
}
.lp .tag.on-dark { border-color: var(--hairline-strong); color: var(--warm-stone); }

.lp .stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
  margin-top: 48px;
}
.lp .stat { background: var(--graphite-3); padding: 32px 26px; }
.lp .stat b {
  display: block;
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 300;
  color: var(--off-white);
  line-height: 1;
  margin-bottom: 12px;
}
.lp .stat span {
  font-size: 11px;
  letter-spacing: 1.7px;
  text-transform: uppercase;
  color: var(--olive-grey);
}

/* ---------- faq ---------- */
.lp .faq { margin-top: 46px; border-top: 1px solid var(--hairline-dark); }
.lp .faq details { border-bottom: 1px solid var(--hairline-dark); }
.lp .faq summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 44px 24px 0;
  position: relative;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--ink);
}
.lp .faq summary::-webkit-details-marker { display: none; }
.lp .faq summary::after {
  content: "+";
  position: absolute;
  right: 6px;
  top: 23px;
  font-family: var(--sans);
  font-size: 19px;
  font-weight: 300;
  color: var(--bronze);
  transition: .2s;
}
.lp .faq details[open] summary::after { content: "–"; }
.lp .faq p { font-size: 14.5px; color: var(--ink-mid); padding: 0 40px 26px 0; margin: 0; max-width: 76ch; }

/* ---------- footer ---------- */
.lp .lp-footer {
  background: var(--charcoal);
  border-top: 1px solid var(--hairline);
  padding: 64px 0 40px;
}
.lp .foot-top {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  align-items: flex-start;
}
.lp .foot-tag {
  font-size: 10px;
  letter-spacing: 2.8px;
  text-transform: uppercase;
  color: var(--bronze);
  margin-top: 16px;
}
.lp .foot-links { display: flex; flex-wrap: wrap; gap: 26px; }
.lp .foot-links a,
.lp .foot-links .cookie-settings-link {
  font-size: 11.5px;
  color: var(--olive-grey);
  text-decoration: none;
  transition: .2s;
}
.lp .foot-links a:hover,
.lp .foot-links .cookie-settings-link:hover { color: var(--warm-stone); }
.lp .disclaimer {
  margin-top: 46px;
  padding-top: 26px;
  border-top: 1px solid var(--hairline-soft);
  font-size: 11.5px;
  line-height: 1.7;
  color: #5c584f;
  max-width: 92ch;
}
.lp .copy { margin-top: 22px; font-size: 11px; color: #4a463e; }

/* ---------- sticky mobile cta ---------- */
.lp .sticky-cta { display: none; }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .lp .hero-grid, .lp .cols { grid-template-columns: 1fr; }
  .lp .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .lp .stats { grid-template-columns: 1fr; }
  .lp .nav .btn { display: none; }
  .lp .reads { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .lp .grid-3 { grid-template-columns: 1fr; }
  .lp .wrap { padding: 0 20px; }
  /* Original targeted `body`; scoped so it cannot pad the rest of the site. */
  .lp { padding-bottom: 76px; }
  .lp .sticky-cta {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 50;
    background: rgba(14, 14, 14, 0.94);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--hairline);
    padding: 12px 20px;
  }
  .lp .sticky-cta .btn { width: 100%; }
  .lp .copy-row { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .lp .btn, .lp .read, .lp .copy-row button, .lp .faq summary::after { transition: none; }
}

/* ============================================================
   GoHighLevel embed — consent gate
   ============================================================
   The form is a third-party iframe that writes to the visitor's device
   on load, so it is replaced by this panel until permission exists. */

.lp .ghl-slot { min-height: 320px; }
.lp .ghl-slot iframe { display: block; width: 100%; border: none; }

.lp .ghl-gate {
  border: 1px solid var(--hairline-strong);
  background: rgba(255, 255, 255, 0.02);
  padding: 26px 24px;
  text-align: left;
}

.lp .ghl-gate-title {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--bronze-soft);
  margin: 0 0 12px;
}

.lp .ghl-gate-text {
  font-size: 13px;
  line-height: 1.65;
  color: var(--warm-stone);
  margin: 0 0 22px;
}

.lp .ghl-gate .btn { width: 100%; }

.lp .ghl-gate-link {
  display: block;
  width: 100%;
  margin-top: 14px;
  background: none;
  border: none;
  padding: 0;
  font-family: var(--sans);
  font-size: 11.5px;
  color: var(--olive-grey);
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  text-align: center;
}

.lp .ghl-gate-link:hover { color: var(--warm-stone); }


/* ============================================================
   Thank-you page — styles as delivered by LeadPro, scoped to .lp
   ============================================================ */

.lp .narrow { max-width: 820px; margin-left: auto; margin-right: auto; }
.lp .btn-lg { padding: 22px 44px; font-size: 12px; width: 100%; }

.lp .steps {
  display: flex;
  gap: 14px;
  align-items: center;
  margin: 0 0 34px;
  flex-wrap: wrap;
}
.lp .step {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: var(--olive-grey);
}
.lp .step .dot { width: 9px; height: 9px; border: 1px solid var(--hairline-strong); }
.lp .step.done { color: var(--warm-stone); }
.lp .step.done .dot { background: var(--bronze); border-color: var(--bronze); }
.lp .step.now { color: var(--bronze-soft); }
.lp .step.now .dot {
  border-color: var(--bronze);
  box-shadow: inset 0 0 0 2px var(--charcoal), 0 0 0 3px rgba(158, 124, 79, .22);
}
.lp .step-sep { width: 26px; height: 1px; background: var(--hairline); }

.lp .action {
  background: var(--graphite);
  border: 1px solid var(--hairline-strong);
  padding: clamp(28px, 4vw, 46px);
  margin-top: 8px;
}
.lp .action h2 { margin-bottom: 14px; }
.lp .action .note {
  font-size: 13.5px;
  color: var(--olive-grey);
  margin-bottom: 30px;
  max-width: 56ch;
}

.lp .copy-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0;
  margin-top: 26px;
  border: 1px solid var(--hairline);
}
.lp .copy-row input {
  background: transparent;
  border: 0;
  color: var(--warm-stone);
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 300;
  padding: 15px 16px;
  outline: none;
  width: 100%;
  text-overflow: ellipsis;
}
.lp .copy-row button {
  background: transparent;
  border: 0;
  border-left: 1px solid var(--hairline);
  color: var(--off-white);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  padding: 15px 22px;
  cursor: pointer;
  white-space: nowrap;
  transition: .2s;
}
.lp .copy-row button:hover { background: rgba(255, 255, 255, .04); color: var(--bronze-soft); }
.lp .copy-hint { font-size: 11.5px; color: #5c584f; margin: 12px 0 0; }

.lp .reads-rule {
  border: 0;
  border-top: 1px solid var(--hairline-dark);
  margin: 0 0 clamp(48px, 6vw, 80px);
}
.lp .reads {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--hairline-dark);
  border: 1px solid var(--hairline-dark);
  margin-top: 42px;
}
.lp .read { background: var(--cream); padding: 30px 26px; text-decoration: none; display: block; transition: .2s; }
.lp .read:hover { background: var(--cream-deep); }
.lp .read span {
  display: block;
  font-size: 10px;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: var(--bronze-deep);
  margin-bottom: 14px;
}
.lp .read strong {
  display: block;
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.25;
}

/* The thank-you hero puts the copy left and the action panel right. */
.lp .hero .cols { align-items: start; }

@media (max-width: 620px) {
  .lp .copy-row { grid-template-columns: 1fr; }
  .lp .copy-row button { border-left: 0; border-top: 1px solid var(--hairline); }
}

/* ============================================================
   Isolation from the main stylesheet
   ============================================================
   styles.css is loaded on every page, and the campaign markup reuses
   some of its class names (.hero, .nav, .btn, .eyebrow, .dot). Where a
   property is declared below it wins on specificity; the ones that
   would otherwise leak through are neutralised here explicitly.

   Checked against styles.css — if either file gains rules on these
   class names, re-check this block. */

/* The site hero is a full-bleed 920px photo panel. The campaign hero is
   neither: it is short, and its only decoration is its own gradient. */
.lp .hero {
  min-height: 0;
  isolation: auto;
  background: transparent;
}
.lp .hero::before { content: none; }

/* Site rule sets the h1 to clamp(50px,5.8vw,92px); the campaign scale is
   smaller. Declared at higher specificity so media queries cannot win. */
.lp .hero h1 { font-size: clamp(34px, 5.4vw, 60px); line-height: 1.08; }

/* Site rule hides .nav below 900px, which would remove the campaign
   header entirely on phones. */
.lp .nav { display: flex; }

/* Site rule forces .btn to full width on small screens. Campaign buttons
   are inline by default and go full width only where intended. */
.lp .btn { width: auto; }
.lp .card-form .btn,
.lp .ghl-gate .btn,
.lp .action .btn,
.lp .btn-lg,
.lp .sticky-cta .btn { width: 100%; }

/* Site rule paints .dot as bronze text; here it is a square indicator
   whose colour comes from its border and background. */
.lp .step .dot { color: transparent; }
