:root {
  --lemon: #FFE100;
  --cream: #FFF9E9;
  --ink: #141109;
  --accent: #FF3D97;
  --yellow: #FFE100;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Space Grotesk', system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--accent); color: var(--cream); }

img { max-width: 100%; display: block; }

a { color: inherit; }

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ---------- NAV ---------- */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--lemon);
  border-bottom: 3px solid var(--ink);
}

nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 32px;
}

.ll-logo {
  display: inline-flex;
  align-items: baseline;
  gap: 3px;
  text-decoration: none;
  color: var(--ink);
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: 24px;
  letter-spacing: -0.04em;
  line-height: 1;
}

.ll-logo:hover { color: var(--ink); }

.ll-logo-dot {
  width: 9px;
  height: 9px;
  border-radius: 2px;
  background: var(--accent);
  display: inline-block;
  margin-left: 1px;
  flex-shrink: 0;
}

.logo {
  display: inline-flex;
  align-items: baseline;
  text-decoration: none;
  color: var(--ink);
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: 24px;
  letter-spacing: -0.04em;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: var(--ink);
  color: var(--cream);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 11px 22px;
  border-radius: 999px;
  border: 2px solid var(--ink);
  transition: transform .12s, box-shadow .12s, background .15s, color .15s;
  cursor: pointer;
}

.btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0 var(--accent);
  color: var(--cream);
}

.btn.lg {
  font-size: 17px;
  padding: 16px 30px;
  border-width: 3px;
  box-shadow: 6px 6px 0 var(--ink);
}

.btn.lg:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 var(--ink);
}

.btn.inv {
  background: var(--accent);
  color: var(--cream);
  border-color: var(--ink);
  box-shadow: 6px 6px 0 var(--ink);
}

.btn.inv:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 var(--ink);
  color: var(--cream);
}

.cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-top: 32px;
}

.btn-sub {
  font-size: 14px;
  font-weight: 500;
  color: rgba(20, 17, 9, 0.65);
}

/* ---------- HERO ---------- */
.hero {
  background: var(--lemon);
  border-bottom: 3px solid var(--ink);
  padding: clamp(48px, 6vw, 88px) 0 clamp(56px, 7vw, 100px);
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 16px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.hero h1 {
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 5.6vw, 68px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin: 22px 0 0;
  max-width: 18ch;
}

.lede {
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.5;
  max-width: 52ch;
  margin: 22px 0 0;
  color: rgba(20, 17, 9, 0.78);
}

.trustbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 36px;
  padding-top: 22px;
  border-top: 2px solid rgba(20, 17, 9, 0.12);
}

.trustbar span {
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(20, 17, 9, 0.7);
}

.trustbar span + span::before {
  content: "·";
  margin-right: 22px;
  color: var(--accent);
  font-weight: 800;
}

/* ---------- SECTIONS ---------- */
section {
  padding: clamp(56px, 7vw, 104px) 0;
  background: var(--cream);
}

section.dark {
  background: var(--ink);
  color: var(--cream);
}

section.dark .eyebrow { color: var(--accent); }
section.dark h2 { color: var(--cream); }
section.dark .sub { color: rgba(255, 249, 233, 0.72); }
section.dark p { color: rgba(255, 249, 233, 0.78); }
section.dark .card {
  background: rgba(255, 249, 233, 0.04);
  border-color: rgba(255, 249, 233, 0.16);
  color: var(--cream);
}
section.dark .card h3 { color: var(--cream); }
section.dark .card p { color: rgba(255, 249, 233, 0.72); }
section.dark .check li { color: rgba(255, 249, 233, 0.78); }
section.dark .check li::before { color: var(--accent); }
section.dark .note {
  background: rgba(255, 225, 0, 0.08);
  border-color: var(--lemon);
  color: var(--cream);
}
section.dark .note p { color: rgba(255, 249, 233, 0.82); }
section.dark .quote p { color: var(--cream); }
section.dark .quote cite { color: rgba(255, 249, 233, 0.6); }
section.dark .num-ic {
  background: var(--lemon);
  color: var(--ink);
}

.eyebrow {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

h2 {
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 4vw, 48px);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0;
}

h2.wide { max-width: 18ch; }

h3 {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: clamp(20px, 2vw, 24px);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 10px;
}

.sub {
  font-size: 17px;
  line-height: 1.5;
  max-width: 58ch;
  margin: 16px 0 0;
  color: rgba(20, 17, 9, 0.7);
}

p { margin: 0; }

/* ---------- GRID + CARDS ---------- */
.grid {
  display: grid;
  gap: 20px;
  margin-top: 32px;
}

.g2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.g3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.card {
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 18px;
  padding: 28px 26px;
  box-shadow: 4px 4px 0 rgba(20, 17, 9, 0.08);
}

.card.pinkbar {
  border-top: 6px solid var(--accent);
}

.card.hl {
  background: var(--lemon);
  border: 2px solid var(--ink);
  box-shadow: 6px 6px 0 var(--ink);
}

.card.hl p { color: var(--ink); }

.num-ic {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--accent);
  color: var(--cream);
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.note {
  margin-top: 28px;
  padding: 22px 24px;
  background: #fff;
  border: 2px solid var(--ink);
  border-left: 6px solid var(--accent);
  border-radius: 14px;
}

/* ---------- PROBLEM ROWS ---------- */
.prob {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  align-items: start;
  padding: 26px 0;
  border-bottom: 2px solid rgba(20, 17, 9, 0.1);
}

.prob:first-of-type { margin-top: 28px; border-top: 2px solid rgba(20, 17, 9, 0.1); }

.prob .q {
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: 22px;
  color: var(--accent);
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.prob h3 { margin-bottom: 8px; }

.prob p { color: rgba(20, 17, 9, 0.72); font-size: 16px; }

/* ---------- LISTS ---------- */
ul.check {
  list-style: none;
  margin: 0;
  padding: 0;
}

.check li {
  position: relative;
  padding: 8px 0 8px 28px;
  font-size: 15.5px;
  color: rgba(20, 17, 9, 0.8);
  border-bottom: 1px solid rgba(20, 17, 9, 0.08);
}

.check li:last-child { border-bottom: 0; }

.check li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 8px;
  color: var(--accent);
  font-weight: 800;
}

/* ---------- QUOTE ---------- */
.quote p {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.quote cite {
  display: block;
  margin-top: 14px;
  font-style: normal;
  font-size: 14px;
  font-weight: 600;
  color: rgba(20, 17, 9, 0.6);
}

/* ---------- PRICE ---------- */
.pricebox {
  background: var(--lemon);
  border: 3px solid var(--ink);
  border-radius: 22px;
  padding: 32px 28px;
  box-shadow: 8px 8px 0 var(--ink);
  text-align: center;
}

.pricebox .amt {
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: clamp(48px, 6vw, 64px);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-top: 8px;
}

.pricebox .amt small {
  font-size: 0.38em;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-left: 4px;
}

.pricebox .credit {
  display: inline-block;
  margin-top: 16px;
  padding: 6px 12px;
  background: var(--accent);
  color: var(--cream);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 2px solid var(--ink);
}

/* ---------- FAQ ---------- */
details {
  border: 2px solid var(--ink);
  border-radius: 14px;
  background: #fff;
  margin: 0 0 12px;
  overflow: hidden;
}

details[open] { box-shadow: 4px 4px 0 var(--ink); }

summary {
  cursor: pointer;
  list-style: none;
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.015em;
  padding: 18px 52px 18px 20px;
  position: relative;
}

summary::-webkit-details-marker { display: none; }

summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 26px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

details[open] summary::after { content: "–"; }

details p {
  padding: 0 20px 18px;
  color: rgba(20, 17, 9, 0.75);
  font-size: 15.5px;
}

/* ---------- CALENDLY ---------- */
.cal-shell {
  margin-top: 28px;
  background: #fff;
  border: 3px solid var(--ink);
  border-radius: 22px;
  box-shadow: 8px 8px 0 var(--ink);
  overflow: hidden;
  min-height: 700px;
}

.calendly-inline-widget { min-height: 700px; }

.cal-fallback {
  padding: 40px 28px;
  text-align: center;
}

/* ---------- FOOTER ---------- */
footer {
  background: var(--lemon);
  border-top: 3px solid var(--ink);
  padding: 48px 0 56px;
}

footer .ll-logo { font-size: 24px; }

footer p {
  margin-top: 12px;
  max-width: 42ch;
  color: rgba(20, 17, 9, 0.72);
  font-size: 15px;
}

.flinks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 22px;
}

.flinks a {
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  color: var(--ink);
  border-bottom: 2px solid transparent;
}

.flinks a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 860px) {
  .g3 { grid-template-columns: 1fr; }
  .g2 { grid-template-columns: 1fr; }
  .hero h1 { max-width: none; }
}

@media (max-width: 640px) {
  .wrap,
  nav .wrap { padding-left: 16px; padding-right: 16px; }

  .ll-logo { font-size: 18px; }
  .ll-logo-dot { width: 8px; height: 8px; }

  .hero { padding: 40px 0 48px; }
  .trustbar span + span::before { display: none; }
  .prob { grid-template-columns: 44px 1fr; gap: 10px; }
  .pricebox { box-shadow: 5px 5px 0 var(--ink); }
  .cal-shell { box-shadow: 5px 5px 0 var(--ink); min-height: 620px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn, .btn.lg, .btn.inv { transition: none; }
}
