:root {
  --bg: #0b0d12;
  --bg-2: #11141b;
  --panel: #161a23;
  --panel-2: #1c212c;
  --border: #262c39;
  --text: #e7eaf0;
  --muted: #9aa3b2;
  --accent: #6c8cff;
  --accent-2: #b06cff;
  --good: #43d39e;
  --warn: #ffcc66;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(0,0,0,.35);
}
* { box-sizing: border-box; }
html, body { margin: 0; }
body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: radial-gradient(1200px 600px at 70% -10%, rgba(108,140,255,.10), transparent 60%),
              radial-gradient(1000px 500px at -10% 10%, rgba(176,108,255,.08), transparent 55%),
              var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
.muted { color: var(--muted); }
.container { max-width: 1080px; margin: 0 auto; padding: 32px 20px 64px; }

/* nav */
.nav { position: sticky; top: 0; z-index: 50; background: rgba(11,13,18,.82); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border); }
.nav-inner { max-width: 1080px; margin: 0 auto; padding: 12px 20px; display: flex; align-items: center; gap: 22px; }
.brand { font-weight: 800; font-size: 18px; color: var(--text); letter-spacing: -.02em; display: inline-flex; align-items: center; gap: 8px; }
.brand:hover { text-decoration: none; }
.brand-mark { display: inline-flex; align-items: center; }
.brand-mark .aperture { display: block; filter: drop-shadow(0 1px 6px rgba(108,140,255,.35)); transition: transform .4s ease; }
.brand:hover .brand-mark .aperture { transform: rotate(36deg); }
.brand-accent { color: var(--accent-2); }
.foot-brand { display: inline-flex; align-items: center; gap: 8px; }
.foot-brand .aperture { display: block; }
.nav-links { display: flex; gap: 6px; align-items: center; margin-left: 8px; }
.nav-links a { color: var(--muted); padding: 7px 12px; border-radius: 9px; font-weight: 500; font-size: 14px; }
.nav-links a:hover { color: var(--text); background: var(--panel); text-decoration: none; }
.nav-links a.active { color: var(--text); background: var(--panel-2); }
.member img, .post .pa img, .thread-row img, .cat-card img { object-fit: cover; }

/* account dropdown */
.nav-menu { margin-left: auto; position: relative; }
.nav-menu > summary { list-style: none; cursor: pointer; display: flex; align-items: center; gap: 8px; color: var(--text); font-size: 14px; font-weight: 500; padding: 4px 8px 4px 4px; border-radius: 999px; border: 1px solid transparent; }
.nav-menu > summary::-webkit-details-marker { display: none; }
.nav-menu > summary:hover { background: var(--panel); border-color: var(--border); }
.nav-menu[open] > summary { background: var(--panel); border-color: var(--border); }
.nav-avatar img { width: 28px; height: 28px; border-radius: 50%; background: var(--panel); object-fit: cover; }
.nav-caret { color: var(--muted); font-size: 11px; transition: transform .2s ease; }
.nav-menu[open] .nav-caret { transform: rotate(180deg); }
.nav-dropdown { position: absolute; right: 0; top: calc(100% + 8px); min-width: 220px; background: var(--panel); border: 1px solid var(--border); border-radius: 12px; box-shadow: var(--shadow); padding: 6px; z-index: 60; display: flex; flex-direction: column; gap: 2px; }
.nav-dd-head { padding: 8px 10px 10px; border-bottom: 1px solid var(--border); margin-bottom: 4px; }
.nav-dd-name { font-weight: 700; font-size: 14px; }
.nav-dd-status { margin-top: 4px; }
.nav-dropdown a, .nav-dd-logout { display: block; width: 100%; text-align: left; padding: 9px 10px; border-radius: 8px; color: var(--text); font-size: 14px; font-weight: 500; background: transparent; border: none; cursor: pointer; font-family: inherit; }
.nav-dropdown a:hover, .nav-dd-logout:hover { background: var(--panel-2); text-decoration: none; }
.nav-dd-logout { color: var(--muted); border-top: 1px solid var(--border); margin-top: 4px; border-radius: 0 0 8px 8px; }
.nav-dd-logout:hover { color: var(--text); }
.mtag { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; padding: 3px 8px; border-radius: 999px; border: 1px solid var(--border); }
.mtag.is-team { color: var(--accent-2); border-color: color-mix(in srgb, var(--accent-2) 50%, transparent); background: color-mix(in srgb, var(--accent-2) 14%, transparent); }
.mtag.is-active { color: var(--good); border-color: color-mix(in srgb, var(--good) 50%, transparent); background: color-mix(in srgb, var(--good) 14%, transparent); }
.mtag.is-free { color: var(--muted); }

/* buttons */
.btn-primary, .btn-ghost, .btn-secondary { font: inherit; cursor: pointer; border-radius: 10px; border: 1px solid transparent; font-weight: 600; padding: 10px 18px; transition: .15s; }
.btn-primary { background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: white; }
.btn-primary:hover { filter: brightness(1.08); text-decoration: none; }
.btn-secondary { background: var(--panel-2); color: var(--text); border-color: var(--border); }
.btn-secondary:hover { background: var(--panel); text-decoration: none; }
.btn-ghost { background: transparent; color: var(--muted); border-color: var(--border); }
.btn-ghost:hover { color: var(--text); border-color: var(--muted); }
.btn-sm { padding: 7px 14px; font-size: 14px; }
.btn-block { display: block; width: 100%; text-align: center; }

/* panels */
.panel { background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; }
.grid { display: grid; gap: 18px; }
.cols-2 { grid-template-columns: 1.4fr 1fr; }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 800px){ .cols-2,.cols-3,.cols-4 { grid-template-columns: 1fr; } .nav-links a:not(.btn-primary){ display:none; } }

/* hero / landing */
.hero { text-align: center; padding: 56px 0 28px; }
.eyebrow { display: inline-block; font-size: 13px; font-weight: 600; color: var(--accent); background: rgba(108,140,255,.12); border: 1px solid rgba(108,140,255,.25); padding: 5px 12px; border-radius: 999px; }
.hero h1 { font-size: 52px; line-height: 1.05; letter-spacing: -.03em; margin: 18px 0 14px; }
.hero h1 .grad { background: linear-gradient(120deg, var(--accent), var(--accent-2)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p.lead { font-size: 19px; color: var(--muted); max-width: 640px; margin: 0 auto 28px; }
.hero-cta { display: flex; gap: 12px; justify-content: center; }
.stat-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; margin: 44px 0; }
.stat { background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; text-align: center; }
.stat b { display: block; font-size: 30px; letter-spacing: -.02em; }
.stat span { color: var(--muted); font-size: 13px; }
.feature-grid { margin-top: 30px; }
.feature h3 { margin: 6px 0 6px; font-size: 18px; }
.feature .ic { font-size: 24px; }

/* ===== sales landing ===== */
.sales-hero { display: grid; grid-template-columns: 1.1fr 1fr; gap: 36px; align-items: center; padding: 40px 0 30px; }
.sh-copy h1 { font-size: 52px; line-height: 1.04; letter-spacing: -.03em; margin: 16px 0 14px; }
.sh-copy h1 .grad { background: linear-gradient(120deg, var(--accent), var(--accent-2)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.sh-copy .lead { font-size: 18px; color: var(--muted); max-width: 560px; margin: 0 0 24px; }
.hero-note { margin-top: 14px; font-size: 13px; color: var(--muted); }
.sh-art { position: relative; height: 420px; }
.sh-art .fa { position: absolute; border-radius: 16px; object-fit: cover; border: 1px solid var(--border); box-shadow: var(--shadow); background: var(--panel-2); }
.sh-art .fa1 { width: 200px; height: 250px; left: 8%; top: 0; transform: rotate(-5deg); z-index: 2; }
.sh-art .fa2 { width: 175px; height: 220px; right: 6%; top: 24px; transform: rotate(4deg); }
.sh-art .fa3 { width: 165px; height: 205px; left: 20%; bottom: 0; transform: rotate(3deg); z-index: 3; }
.sh-art .fa4 { width: 150px; height: 190px; right: 14%; bottom: 18px; transform: rotate(-4deg); }

.proof { text-align: center; padding: 26px 0 8px; }
.proof-line { color: var(--muted); margin: 0 0 14px; }
.proof-line b { color: var(--text); }
.face-strip { display: flex; gap: 10px; overflow: hidden; justify-content: center; flex-wrap: wrap; }
.face-strip img { width: 92px; height: 92px; border-radius: 50%; object-fit: cover; border: 2px solid var(--border); background: var(--panel-2); }

.section { padding: 44px 0; border-top: 1px solid var(--border); }
.sec-head { text-align: center; max-width: 640px; margin: 0 auto 26px; }
.sec-head h2 { font-size: 32px; letter-spacing: -.02em; margin: 0 0 8px; }

.transform-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.ba { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.ba figure { margin: 0; }
.ba img { width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: 10px; border: 1px solid var(--border); background: var(--panel-2); display: block; }
.ba .before { filter: grayscale(.85) blur(1.1px) contrast(.88) brightness(1.05); }
.ba figcaption { font-size: 12px; color: var(--muted); text-align: center; margin-top: 6px; }

.value-wrap { display: grid; grid-template-columns: 1.5fr 1fr; gap: 24px; align-items: start; }
.value-stack { background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.vrow { display: flex; gap: 16px; align-items: center; justify-content: space-between; padding: 16px 20px; border-bottom: 1px solid var(--border); }
.vrow:last-child { border-bottom: none; }
.vrow b { display: block; }
.vrow span { font-size: 13px; color: var(--muted); display: block; margin-top: 2px; }
.vrow .vval { font-weight: 700; color: var(--muted); white-space: nowrap; }
.vrow.total { background: var(--panel-2); }
.vrow.total .vval { color: var(--text); font-size: 18px; }

.pricing-card { background: linear-gradient(180deg, rgba(108,140,255,.10), var(--panel)); border: 1px solid var(--accent); border-radius: var(--radius); padding: 24px; text-align: center; position: sticky; top: 80px; box-shadow: var(--shadow); }
.pc-tag { display: inline-block; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: #cba6ff; background: rgba(176,108,255,.15); border: 1px solid rgba(176,108,255,.35); padding: 4px 12px; border-radius: 999px; }
.pc-price { margin: 14px 0 2px; }
.pc-price .amt { font-size: 56px; font-weight: 800; letter-spacing: -.03em; }
.pc-price .per { color: var(--muted); font-size: 18px; }
.pc-strike { color: var(--muted); text-decoration: line-through; font-size: 14px; margin-bottom: 16px; }
.pc-list { list-style: none; padding: 0; margin: 0 0 18px; text-align: left; }
.pc-list li { padding: 7px 0 7px 26px; position: relative; font-size: 14px; border-bottom: 1px dashed var(--border); }
.pc-list li:before { content: "✓"; position: absolute; left: 0; color: var(--good); font-weight: 700; }
.pc-fine { font-size: 12px; color: var(--muted); margin: 12px 0 0; }

.gallery-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.gallery-grid img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: 12px; border: 1px solid var(--border); background: var(--panel-2); }

.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.testi { display: flex; gap: 14px; background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius); padding: 18px; }
.testi img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; flex: none; background: var(--panel-2); }
.testi p { margin: 0 0 8px; font-size: 14px; }
.testi span { font-size: 12px; color: var(--muted); }

.cta-band { text-align: center; padding: 56px 20px; margin-top: 10px; background: radial-gradient(800px 300px at 50% 0%, rgba(108,140,255,.14), transparent 70%); border-top: 1px solid var(--border); }
.cta-band h2 { font-size: 34px; letter-spacing: -.02em; margin: 0 0 10px; }
.cta-band p { color: var(--muted); max-width: 520px; margin: 0 auto 22px; }

@media (max-width: 860px) {
  .sales-hero, .value-wrap { grid-template-columns: 1fr; }
  .sh-copy h1 { font-size: 38px; }
  .sh-art { height: 320px; }
  .transform-grid, .testi-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .pricing-card { position: static; }
}

/* auth */
.auth-wrap { max-width: 420px; margin: 40px auto; }
.auth-wrap h1 { font-size: 28px; letter-spacing: -.02em; margin: 0 0 6px; }
label { display: block; font-size: 13px; font-weight: 600; color: var(--muted); margin: 14px 0 6px; }
input[type=text], input[type=email], input[type=password], textarea {
  width: 100%; background: var(--bg-2); border: 1px solid var(--border); color: var(--text);
  border-radius: 10px; padding: 11px 13px; font: inherit;
}
input:focus, textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(108,140,255,.18); }
textarea { min-height: 140px; resize: vertical; }
.alert { background: rgba(255,99,99,.10); border: 1px solid rgba(255,99,99,.35); color: #ff9b9b; padding: 10px 13px; border-radius: 10px; font-size: 14px; margin-bottom: 4px; }
.note { background: rgba(67,211,158,.08); border: 1px solid rgba(67,211,158,.3); color: var(--good); padding: 10px 13px; border-radius: 10px; font-size: 14px; }

/* page header */
.page-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin-bottom: 22px; flex-wrap: wrap; }
.page-head h1 { font-size: 30px; letter-spacing: -.02em; margin: 0; }
.page-head p { margin: 6px 0 0; color: var(--muted); }
.crumbs { font-size: 13px; color: var(--muted); margin-bottom: 14px; }
.crumbs a { color: var(--muted); }

/* progress */
.progress { height: 8px; background: var(--bg-2); border-radius: 999px; overflow: hidden; border: 1px solid var(--border); }
.progress > i { display: block; height: 100%; background: linear-gradient(90deg, var(--accent), var(--accent-2)); }

/* course */
.module { margin-bottom: 18px; }
.module > h2 { font-size: 17px; margin: 0; padding: 16px 20px; border-bottom: 1px solid var(--border); }
.lesson-row { display: flex; align-items: center; gap: 14px; padding: 14px 20px; border-bottom: 1px solid var(--border); }
.lesson-row:last-child { border-bottom: none; }
.lesson-row:hover { background: var(--panel-2); }
.lesson-row .check { width: 22px; height: 22px; border-radius: 50%; border: 2px solid var(--border); flex: none; display: grid; place-items: center; font-size: 12px; color: transparent; }
.lesson-row.done .check { background: var(--good); border-color: var(--good); color: #062; }
.lesson-row .l-title { font-weight: 600; color: var(--text); }
.lesson-row .l-sum { font-size: 13px; color: var(--muted); }
.lesson-row .dur { margin-left: auto; font-size: 12px; color: var(--muted); white-space: nowrap; }
.lesson-row a.l-title:hover { text-decoration: none; color: var(--accent); }

/* lesson content (markdown) */
.lesson-body { font-size: 16.5px; }
.lesson-body h2 { font-size: 22px; margin: 30px 0 10px; letter-spacing: -.01em; }
.lesson-body h3 { font-size: 18px; margin: 22px 0 8px; }
.lesson-body p { margin: 12px 0; }
.lesson-body ul, .lesson-body ol { padding-left: 22px; }
.lesson-body li { margin: 6px 0; }
.lesson-body strong { color: #fff; }
.lesson-body blockquote { border-left: 3px solid var(--accent); margin: 18px 0; padding: 6px 16px; background: var(--panel-2); border-radius: 0 10px 10px 0; color: #d6def0; }
.lesson-body code { background: var(--bg-2); padding: 2px 6px; border-radius: 6px; font-size: .9em; }
.lesson-body table { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: 15px; }
.lesson-body th, .lesson-body td { border: 1px solid var(--border); padding: 9px 12px; text-align: left; }
.lesson-body th { background: var(--panel-2); }
/* keep long prompts / wide content from forcing horizontal page scroll */
.lesson-body { overflow-wrap: break-word; }
.lesson-body pre { background: var(--bg-2); border: 1px solid var(--border); border-radius: 10px; padding: 12px 14px; margin: 14px 0; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 13.5px; line-height: 1.55; white-space: pre-wrap; word-break: break-word; overflow-wrap: anywhere; color: #d6def0; }
.lesson-body pre code { background: none; padding: 0; border-radius: 0; font-size: inherit; color: inherit; }
.lesson-body img { max-width: 100%; height: auto; border-radius: 10px; }
.lesson-body th, .lesson-body td { overflow-wrap: anywhere; }
.grid > article { min-width: 0; }          /* let the 1fr track shrink instead of overflowing */
/* admin lesson editor */
.edit-field { display: block; }
.edit-field > span { display: block; font-size: 13px; color: var(--muted); margin-bottom: 5px; }
.edit-field input[type=text], .edit-md { width: 100%; box-sizing: border-box; background: var(--bg-2); border: 1px solid var(--border); border-radius: 9px; padding: 10px 12px; color: var(--text); font-size: 14.5px; }
.edit-md { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 13.5px; line-height: 1.55; resize: vertical; min-height: 420px; }
.edit-field input[type=text]:focus, .edit-md:focus { outline: none; border-color: var(--accent); }
.lesson-nav { display: flex; justify-content: space-between; gap: 12px; margin-top: 30px; }
.lesson-side .side-l { display: block; padding: 9px 12px; border-radius: 9px; font-size: 14px; color: var(--muted); }
.lesson-side .side-l:hover { background: var(--panel-2); text-decoration: none; color: var(--text); }
.lesson-side .side-l.cur { background: var(--panel-2); color: var(--text); font-weight: 600; }

/* forum */
.cat-card { display: flex; gap: 16px; align-items: center; padding: 18px 20px; border-bottom: 1px solid var(--border); }
.cat-card:last-child { border-bottom: none; }
.cat-card:hover { background: var(--panel-2); }
.cat-ic { width: 44px; height: 44px; border-radius: 12px; background: var(--panel-2); display: grid; place-items: center; font-size: 20px; flex: none; }
.cat-meta { margin-left: auto; text-align: right; font-size: 13px; color: var(--muted); white-space: nowrap; }
.thread-row { display: flex; align-items: center; gap: 14px; padding: 14px 20px; border-bottom: 1px solid var(--border); }
.thread-row:last-child { border-bottom: none; }
.thread-row:hover { background: var(--panel-2); }
.thread-row img { width: 36px; height: 36px; border-radius: 50%; flex: none; background: var(--panel-2); }
.thread-row .t-title { font-weight: 600; color: var(--text); }
.thread-row .t-meta { font-size: 13px; color: var(--muted); }
.thread-row .t-stats { margin-left: auto; text-align: right; font-size: 13px; color: var(--muted); white-space: nowrap; }
.pill { font-size: 11px; font-weight: 700; padding: 2px 8px; border-radius: 999px; background: rgba(255,204,102,.14); color: var(--warn); border: 1px solid rgba(255,204,102,.3); }
.pill-admin { background: rgba(176,108,255,.14); color: #cba6ff; border-color: rgba(176,108,255,.3); }

/* posts */
.post { display: flex; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--border); }
.post .pa { flex: none; text-align: center; width: 110px; }
.post .pa img { width: 56px; height: 56px; border-radius: 50%; background: var(--panel-2); }
.post .pa .nm { font-size: 13px; font-weight: 600; margin-top: 6px; display: block; }
.post .pa .rl { font-size: 11px; color: var(--muted); }
.post .pb { flex: 1; min-width: 0; }
.post .pb .ph { font-size: 12px; color: var(--muted); margin-bottom: 6px; }
.post .pb p { margin: 0 0 10px; }
.postcode { background: var(--bg-2); border: 1px solid var(--border); border-radius: 10px; padding: 12px 14px; margin: 0 0 12px; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 13px; line-height: 1.5; white-space: pre-wrap; word-break: break-word; color: #d6def0; overflow-x: auto; }
.reply-box { margin-top: 22px; }

/* members */
.member-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px,1fr)); gap: 12px; }
.member { background: var(--panel); border: 1px solid var(--border); border-radius: 12px; padding: 16px; text-align: center; }
.member:hover { border-color: var(--muted); }
.member img { width: 56px; height: 56px; border-radius: 50%; background: var(--panel-2); }
.member .mn { font-weight: 600; font-size: 14px; margin-top: 8px; display: block; color: var(--text); }
.member .mu { font-size: 12px; color: var(--muted); }
.pager { display: flex; gap: 8px; justify-content: center; margin-top: 24px; flex-wrap: wrap; }
.pager a, .pager span { padding: 7px 12px; border-radius: 9px; border: 1px solid var(--border); font-size: 14px; color: var(--muted); }
.pager a:hover { background: var(--panel); text-decoration: none; color: var(--text); }
.pager .cur { background: var(--accent); color: #fff; border-color: var(--accent); }
.searchbar { display: flex; gap: 8px; }
.searchbar input { flex: 1; }

/* footer */
.site-foot { border-top: 1px solid var(--border); padding: 24px 20px; text-align: center; color: var(--muted); font-size: 13px; }
.site-foot .muted { margin-top: 4px; font-style: italic; }

.spaced > * + * { margin-top: 14px; }
.flex { display: flex; align-items: center; gap: 10px; }
.between { justify-content: space-between; }
.tag { font-size: 12px; color: var(--accent); }

/* courses */
.tier { font-size: 11px; font-weight: 700; letter-spacing: .03em; text-transform: uppercase; padding: 3px 9px; border-radius: 999px; background: rgba(176,108,255,.14); color: #cba6ff; border: 1px solid rgba(176,108,255,.3); }
.tier-free { background: rgba(67,211,158,.14); color: var(--good); border-color: rgba(67,211,158,.35); }
.course-card { display: flex; gap: 18px; align-items: flex-start; transition: border-color .15s; }
.course-card:hover { border-color: var(--accent); text-decoration: none; }
.course-num { flex: none; width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; font-weight: 800; font-size: 18px; background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #fff; }
.course-body { flex: 1; min-width: 0; }
.course-mini { display: flex; align-items: center; gap: 14px; padding: 12px 14px; border: 1px solid var(--border); border-radius: 12px; background: var(--panel-2); }
.course-mini-info { flex: 1; min-width: 0; }
.course-mini .cm-title { font-weight: 600; color: var(--text); }
.course-mini .cm-title:hover { color: var(--accent); text-decoration: none; }
.lesson-row.locked { opacity: .72; }
.lesson-row .check.lock { border: none; background: transparent; font-size: 16px; }
.lesson-side .side-l.locked { color: var(--muted); opacity: .7; cursor: default; }
.locked-panel { text-align: center; padding: 40px 24px; }
.locked-panel .lock-big { font-size: 40px; }
.new-wf { margin-top: 14px; border-top: 1px solid var(--border); padding-top: 12px; }
.new-wf > summary { cursor: pointer; font-weight: 600; color: var(--accent); font-size: 14px; }
.new-wf textarea { min-height: 160px; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 13px; }
.admin-prompt { margin-top: 16px; border-color: rgba(176,108,255,.4); background: linear-gradient(180deg, rgba(176,108,255,.06), transparent); }
.admin-prompt .postcode { margin-bottom: 8px; }

/* nav admin badge */
.badge { background: #ff5d5d; color: #fff; font-size: 11px; font-weight: 700; border-radius: 999px; padding: 1px 7px; margin-left: 2px; }

/* lesson video embed */
.video-wrap { position: relative; width: 100%; aspect-ratio: 16/9; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); background: #000; margin-bottom: 8px; box-shadow: var(--shadow); }
.video-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-cap { font-size: 13px; color: var(--muted); margin-bottom: 18px; }
.vtag { color: var(--accent); font-weight: 600; }

/* attachments gallery */
.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 10px; margin: 12px 0 4px; }
.gitem { display: block; border-radius: 10px; overflow: hidden; border: 1px solid var(--border); background: var(--panel-2); aspect-ratio: 4/3; }
.gitem img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .25s; }
.gitem:hover img { transform: scale(1.04); }
.imgbadge { font-size: 12px; color: var(--muted); border: 1px solid var(--border); border-radius: 999px; padding: 1px 8px; margin-left: 6px; white-space: nowrap; }

/* post actions: likes / report / delete */
.post-actions { display: flex; gap: 8px; margin-top: 12px; flex-wrap: wrap; }
.post-actions form { display: inline; }
.react { font: inherit; cursor: pointer; background: var(--panel-2); border: 1px solid var(--border); color: var(--muted); border-radius: 999px; padding: 5px 13px; font-size: 13px; font-weight: 600; display: inline-flex; align-items: center; gap: 6px; transition: .15s; }
.react:hover { color: var(--text); border-color: var(--muted); }
.react .heart { font-size: 14px; }
.react.on { color: #ff6b8b; border-color: rgba(255,107,139,.5); background: rgba(255,107,139,.12); }
.react.danger:hover { color: #ff8a8a; border-color: rgba(255,99,99,.5); background: rgba(255,99,99,.1); }
.report-form { display: none; margin-top: 10px; gap: 8px; }
.report-form.open { display: flex; }
.report-form input { flex: 1; }
.reported-ok { color: var(--good); font-size: 13px; font-weight: 600; }
.react.pop { animation: likepop .28s ease; }
@keyframes likepop { 0%{ transform: scale(1);} 40%{ transform: scale(1.18);} 100%{ transform: scale(1);} }

/* file input label */
.filelabel { font-weight: 600; color: var(--muted); margin-top: 14px; }
input[type=file] { width: 100%; background: var(--bg-2); border: 1px dashed var(--border); color: var(--muted); border-radius: 10px; padding: 12px; font: inherit; cursor: pointer; }
input[type=file]::file-selector-button { font: inherit; font-weight: 600; background: var(--panel-2); color: var(--text); border: 1px solid var(--border); border-radius: 8px; padding: 6px 12px; margin-right: 10px; cursor: pointer; }

/* moderation rows */
.mod-row { display: flex; gap: 14px; align-items: flex-start; padding: 12px 0; border-bottom: 1px solid var(--border); }
.mod-row:last-child { border-bottom: none; }
.mod-main { flex: 1; min-width: 0; }
.mod-actions { display: flex; gap: 8px; flex: none; align-items: center; }
.mod-actions form { display: inline; }
.mod-row .quote { font-size: 14px; margin-top: 2px; }
.mod-row .reason { color: #ffb4b4; font-size: 13px; margin: 3px 0; }
.mod-row .t-title { color: var(--text); font-weight: 600; }
@media (max-width: 800px){ .mod-row { flex-wrap: wrap; } .stat-row { grid-template-columns: repeat(2,1fr) !important; } }

/* ============================================================
   LANDING PAGE — "Atelier" warm-editorial, scoped under .lp.
   Coexists with the fixed dark nav/footer. Nothing here touches
   :root, .nav, or .site-foot. The dark value/pricing zone reuses
   the existing .value-stack/.pricing-card components.
   ============================================================ */
.lp {
  /* warm local tokens */
  --lp-cream:#FBF4EC; --lp-cream-2:#FFFBF6; --lp-peach:#F6E3D4; --lp-blue:#E4ECF3;
  --lp-ink:#2A2018; --lp-ink-soft:#3A2E22; --lp-body:#6B6155; --lp-muted:#8A7E72;
  --lp-hairline:#E7D8C7; --lp-card:#ffffff;
  --lp-pill-bg:#F3D9C4; --lp-pill-tx:#9A5B3B;
  --lp-terra:#C2703F; --lp-coral:#FF5A5F; --lp-gold:#E9C47A;
  --lp-wshadow:0 30px 60px rgba(42,32,24,.16);
  --lp-wshadow-sm:0 12px 26px rgba(42,32,24,.12);
  --lp-serif:'Fraunces','Georgia','Times New Roman',serif;
  /* break out of .container (max 1080 + 32/64 padding) to full bleed */
  width:100vw; margin-left:calc(50% - 50vw); margin-right:calc(50% - 50vw);
  margin-top:-32px; margin-bottom:-64px; overflow-x:clip;
  background:var(--lp-cream); color:var(--lp-ink); text-align:left;
}
body:has(.lp){ overflow-x:clip; }            /* prevent 100vw scrollbar overflow */
.lp a{ color:inherit; }
.lp-inner{ max-width:1120px; margin:0 auto; padding:0 24px; }

/* ---- shared type ---- */
.lp-h1{ font-family:var(--lp-serif); font-weight:500; font-size:clamp(38px,5.5vw,66px); line-height:1.05; letter-spacing:-.02em; color:var(--lp-ink); margin:0 0 18px; }
.lp-highlight{ font-style:italic; font-weight:500; background:linear-gradient(120deg,var(--accent),var(--accent-2)); -webkit-background-clip:text; background-clip:text; color:transparent; }
.lp-h2{ font-family:var(--lp-serif); font-weight:500; font-size:clamp(27px,3.4vw,40px); line-height:1.1; letter-spacing:-.015em; color:var(--lp-ink); margin:0 0 12px; }
.lp-sub{ font-size:18px; line-height:1.55; color:var(--lp-body); margin:0; max-width:62ch; }
.lp-sub b{ color:var(--lp-ink); }
.lp-lead{ font-size:20px; line-height:1.55; color:var(--lp-body); margin:0 0 28px; max-width:47ch; }
.lp-eyebrow{ display:inline-block; font-size:12px; font-weight:700; text-transform:uppercase; letter-spacing:.14em; color:var(--lp-pill-tx); background:var(--lp-pill-bg); padding:7px 14px; border-radius:999px; margin-bottom:20px; }
.lp-sec-head{ max-width:760px; margin:0 0 36px; }
.lp-sec-head .lp-sub{ margin-top:10px; }

/* ---- HERO ---- */
.lp-hero{ background:linear-gradient(180deg,var(--lp-cream) 72%,var(--lp-peach)); padding:64px 0 84px; box-shadow:inset 0 1px 0 rgba(255,255,255,.55); }
.lp-hero-grid{ display:grid; grid-template-columns:minmax(0,1.05fr) minmax(0,.95fr); gap:48px; align-items:center; }
.lp-hero-copy{ min-width:0; }
.lp-cta-row{ display:flex; align-items:center; gap:22px; flex-wrap:wrap; }
.lp-btn-espresso{ display:inline-block; background:var(--lp-ink); color:var(--lp-cream); font-weight:600; font-size:16px; padding:14px 26px; border-radius:12px; box-shadow:0 8px 18px rgba(42,32,24,.18); transition:.18s; }
.lp-btn-espresso:hover{ background:var(--lp-ink-soft); transform:translateY(-1px); box-shadow:0 12px 26px rgba(42,32,24,.26); text-decoration:none; }
.lp-link-arrow{ position:relative; font-weight:600; color:var(--lp-ink); }
.lp-link-arrow span{ display:inline-block; transition:transform .18s; }
.lp-link-arrow:hover{ text-decoration:none; }
.lp-link-arrow:hover span{ transform:translateY(3px); }
.lp-link-arrow:after{ content:""; position:absolute; left:0; right:20px; bottom:-4px; height:2px; background:var(--lp-terra); transform:scaleX(0); transform-origin:left; transition:transform .2s; }
.lp-link-arrow:hover:after{ transform:scaleX(1); }
.lp-trust{ display:flex; align-items:center; gap:14px; margin-top:30px; }
.lp-trust-avatars{ display:flex; }
.lp-trust-avatars img{ width:34px; height:34px; border-radius:50%; object-fit:cover; object-position:center 25%; border:2px solid var(--lp-cream); margin-left:-10px; box-shadow:0 2px 6px rgba(42,32,24,.2); background:var(--lp-blue); }
.lp-trust-avatars img:first-child{ margin-left:0; }
.lp-trust p{ margin:0; font-size:14px; line-height:1.45; color:var(--lp-muted); max-width:36ch; }
.lp-trust b{ color:var(--lp-ink); }

.lp-hero-art{ position:relative; display:flex; justify-content:center; align-items:center; min-width:0; }
.lp-bluebridge{ position:absolute; z-index:0; left:50%; top:50%; width:clamp(300px,40vw,460px); aspect-ratio:4/5; background:var(--lp-blue); border-radius:28px; transform:translate(-50%,-50%) translate(20px,24px); }

/* the magazine-plate device normalizes every StyleGAN backdrop */
.lp-plate{ position:relative; z-index:1; margin:0; background:var(--lp-card); padding:10px; border-radius:28px; box-shadow:var(--lp-wshadow); }
.lp-plate:before{ content:""; position:absolute; left:0; top:18px; bottom:18px; width:3px; border-radius:3px; background:linear-gradient(180deg,var(--accent),var(--accent-2)); }
.lp-plate img{ display:block; border-radius:20px; object-fit:cover; object-position:center 28%; background:var(--lp-blue); }
.lp-plate-hero{ transform:rotate(-2deg); transition:transform .25s ease; width:clamp(300px,40vw,460px); }
.lp-plate-hero:hover{ transform:rotate(0deg); }
.lp-plate-hero img{ width:100%; height:auto; aspect-ratio:4/5; }
.lp-chip-ai{ position:absolute; top:22px; left:22px; display:inline-flex; align-items:center; gap:6px; font-size:12px; font-weight:700; color:var(--lp-pill-tx); background:var(--lp-pill-bg); padding:6px 11px; border-radius:999px; box-shadow:0 4px 10px rgba(42,32,24,.18); }
.lp-tick{ display:inline-grid; place-items:center; width:14px; height:14px; border-radius:50%; background:var(--lp-pill-tx); color:#fff; font-size:9px; line-height:1; }
.lp-chip-notreal{ position:absolute; left:22px; bottom:58px; font-size:13px; font-weight:600; color:var(--lp-ink); background:rgba(255,255,255,.82); backdrop-filter:blur(6px); border:1px solid rgba(255,255,255,.9); padding:7px 13px; border-radius:10px; box-shadow:0 6px 16px rgba(42,32,24,.14); }
.lp-plate-cap{ position:absolute; left:24px; bottom:22px; display:flex; align-items:center; gap:5px; font-size:12px; font-weight:600; color:var(--lp-muted); }
.lp-heart{ color:var(--lp-coral); }

/* ---- BELIEVE STRIP ---- */
.lp-believe{ background:var(--lp-peach); padding:64px 0 56px; text-align:center; }
.lp-believe-head{ margin-bottom:34px; }
.lp-believe-head .lp-sub{ margin:10px auto 0; }
.lp-marquee{ position:relative; overflow:hidden; -webkit-mask-image:linear-gradient(90deg,transparent,#000 7%,#000 93%,transparent); mask-image:linear-gradient(90deg,transparent,#000 7%,#000 93%,transparent); }
.lp-marquee-track{ display:flex; width:max-content; padding:10px 0; animation:lp-scroll 48s linear infinite; }
.lp-marquee:hover .lp-marquee-track{ animation-play-state:paused; }
@keyframes lp-scroll{ from{transform:translateX(0)} to{transform:translateX(-50%)} }
/* trailing margin (not gap) so the two copies are exactly equal width -> seamless -50% loop */
.lp-face{ position:relative; flex:0 0 auto; width:138px; height:138px; margin-right:16px; padding:4px; border-radius:16px; background:var(--lp-card); box-shadow:var(--lp-wshadow-sm); }
.lp-face img{ width:100%; height:100%; object-fit:cover; object-position:center 28%; border-radius:13px; display:block; background:var(--lp-blue); }
.lp-face:focus-visible{ outline:2px solid var(--lp-terra); outline-offset:2px; }
.lp-rendered-tag{ position:absolute; left:4px; right:4px; bottom:4px; padding:6px 4px; border-radius:0 0 13px 13px; background:var(--lp-terra); color:#fff; font-size:11px; font-weight:700; letter-spacing:.03em; text-align:center; transform:translateY(120%); transition:transform .22s; }
.lp-face:hover .lp-rendered-tag, .lp-face:focus .lp-rendered-tag, .lp-face.revealed .lp-rendered-tag{ transform:translateY(0); }
.lp-believe-foot{ margin:26px auto 0; font-size:14px; font-style:italic; color:var(--lp-muted); }

/* ---- Real-or-Rendered challenge (interactive proof) ---- */
.lp-challenge{ background:var(--lp-cream-2); padding:66px 0; border-top:1px solid var(--lp-hairline); border-bottom:1px solid var(--lp-hairline); }
.lp-challenge-head{ text-align:center; margin:0 auto 12px; }
.lp-challenge-head .lp-sub{ margin-left:auto; margin-right:auto; }
.lp-guess-prompt{ display:none; text-align:center; font-style:italic; color:var(--lp-muted); margin:0 0 22px; font-size:15px; }
.lp-guess-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:16px; max-width:760px; margin:22px auto 0; }
.lp-guess{ position:relative; padding:0; margin:0; border:0; background:var(--lp-card); border-radius:16px; overflow:hidden; box-shadow:var(--lp-wshadow-sm); aspect-ratio:3/4; cursor:default; font:inherit; -webkit-tap-highlight-color:transparent; }
.lp-guess img{ width:100%; height:100%; object-fit:cover; object-position:center 25%; display:block; background:var(--lp-blue); }
.lp-guess-badge{ position:absolute; left:8px; bottom:8px; display:inline-flex; align-items:center; gap:5px; font-size:11px; font-weight:700; letter-spacing:.02em; color:#fff; background:var(--lp-terra); padding:5px 9px; border-radius:999px; box-shadow:0 4px 10px rgba(42,32,24,.22); }
.lp-guess-pick-tag{ position:absolute; top:8px; left:8px; display:none; font-size:11px; font-weight:700; color:var(--lp-ink); background:var(--lp-gold); padding:5px 9px; border-radius:999px; box-shadow:0 4px 10px rgba(42,32,24,.22); }
.lp-guess-result{ max-width:620px; margin:32px auto 0; text-align:center; }
.lp-guess-result h3{ font-family:var(--lp-serif); font-weight:500; font-size:clamp(22px,2.6vw,30px); color:var(--lp-ink); margin:0 0 10px; }
.lp-guess-result p{ color:var(--lp-body); font-size:17px; line-height:1.55; margin:0 0 22px; }
.lp-guess-result p b{ color:var(--lp-ink); }

/* armed: JS is on and no guess made yet — hide the answer, invite a tap */
.lp-challenge.is-armed .lp-guess{ cursor:pointer; transition:transform .15s, box-shadow .15s; }
.lp-challenge.is-armed .lp-guess:hover{ transform:translateY(-3px); box-shadow:var(--lp-wshadow); }
.lp-challenge.is-armed .lp-guess:focus-visible{ outline:2px solid var(--lp-terra); outline-offset:2px; }
.lp-challenge.is-armed .lp-guess-badge{ opacity:0; transform:translateY(8px); transition:opacity .25s, transform .25s; }
.lp-challenge.is-armed .lp-guess-prompt{ display:block; }
.lp-challenge.is-armed .lp-guess-result{ display:none; }

/* revealed: after a guess — show every badge, mark the pick, drop the punchline */
.lp-challenge.is-revealed .lp-guess-badge{ opacity:1; transform:none; transition:opacity .35s, transform .35s; }
.lp-challenge.is-revealed .lp-guess.picked{ outline:3px solid var(--lp-ink); outline-offset:0; }
.lp-challenge.is-revealed .lp-guess.picked .lp-guess-badge{ background:var(--lp-ink); }
.lp-challenge.is-revealed .lp-guess.picked .lp-guess-pick-tag{ display:inline-block; }
.lp-challenge.is-revealed .lp-guess-result{ animation:lp-chip-in .4s both; }

@media (max-width:560px){
  .lp-guess-grid{ grid-template-columns:repeat(2,1fr); gap:12px; }
}
@media (prefers-reduced-motion:reduce){
  .lp-challenge.is-armed .lp-guess:hover{ transform:none; }
  .lp-challenge .lp-guess-badge{ transition:none; }
  .lp-challenge.is-revealed .lp-guess-result{ animation:none; }
}

/* ---- Anatomy of a tell (annotated portrait) ---- */
.lp-anatomy{ background:var(--lp-cream); padding:72px 0; }
.lp-anatomy-grid{ display:grid; grid-template-columns:1fr 1fr; gap:46px; align-items:center; }
.lp-anatomy-art{ position:relative; margin:0; border-radius:20px; overflow:hidden; box-shadow:var(--lp-wshadow); aspect-ratio:4/5; }
.lp-anatomy-art img{ width:100%; height:100%; object-fit:cover; object-position:center 20%; display:block; background:var(--lp-blue); }
.lp-anatomy-art .lp-chip-ai{ animation:none; }
.lp-pin{ position:absolute; width:28px; height:28px; margin:-14px 0 0 -14px; border-radius:50%; background:var(--lp-terra); color:#fff; display:grid; place-items:center; box-shadow:0 4px 12px rgba(42,32,24,.4); }
.lp-pin:before{ content:attr(data-n); font-size:13px; font-weight:800; line-height:1; }
.lp-pin i{ position:absolute; inset:0; border-radius:50%; border:2px solid var(--lp-terra); animation:lp-pin-pulse 2.4s ease-out infinite; }
@keyframes lp-pin-pulse{ 0%{ transform:scale(.5); opacity:.85 } 70%{ transform:scale(1.7); opacity:0 } 100%{ opacity:0 } }
.lp-anatomy-copy .lp-sub{ margin-top:10px; }
.lp-tell-list{ list-style:none; counter-reset:tell; padding:0; margin:24px 0 0; }
.lp-tell-list li{ counter-increment:tell; position:relative; padding:13px 0 13px 44px; border-top:1px solid var(--lp-hairline); color:var(--lp-body); font-size:15.5px; line-height:1.5; }
.lp-tell-list li:before{ content:counter(tell); position:absolute; left:0; top:12px; width:28px; height:28px; border-radius:50%; background:var(--lp-pill-bg); color:var(--lp-pill-tx); font-weight:800; font-size:13px; display:grid; place-items:center; }
.lp-tell-list li b{ color:var(--lp-ink); }

/* ---- Before / after compare slider ---- */
.lp-baswap{ background:var(--lp-cream-2); padding:72px 0; border-top:1px solid var(--lp-hairline); border-bottom:1px solid var(--lp-hairline); }
.lp-baswap .lp-sec-head{ text-align:center; margin:0 auto 30px; }
.lp-baswap .lp-eyebrow{ margin-left:auto; margin-right:auto; }
.lp-baswap .lp-sub{ margin-left:auto; margin-right:auto; }
.lp-ba{ --pos:50%; position:relative; max-width:540px; margin:0 auto; border-radius:20px; overflow:hidden; box-shadow:var(--lp-wshadow); aspect-ratio:4/5; user-select:none; touch-action:pan-y; background:var(--lp-blue); }
.lp-ba-img{ display:block; width:100%; height:100%; object-fit:cover; object-position:center 20%; }
.lp-ba-after{ position:absolute; inset:0; }
.lp-ba-before-wrap{ position:absolute; inset:0; z-index:1; clip-path:inset(0 calc(100% - var(--pos)) 0 0); }
.lp-ba-before{ position:absolute; inset:0; filter:contrast(.9) saturate(.8) brightness(1.05) blur(.35px); }
.lp-ba-before-wrap:after{ content:""; position:absolute; inset:0; background:linear-gradient(180deg, rgba(255,120,180,.12), rgba(120,150,255,.12)); mix-blend-mode:overlay; }
.lp-ba-divider{ position:absolute; z-index:2; top:0; bottom:0; left:var(--pos); width:2px; margin-left:-1px; background:rgba(255,255,255,.92); box-shadow:0 0 0 1px rgba(42,32,24,.12); pointer-events:none; }
.lp-ba-grip{ position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); width:42px; height:42px; border-radius:50%; background:#fff; color:var(--lp-ink); display:grid; place-items:center; font-weight:800; font-size:15px; letter-spacing:-2px; box-shadow:var(--lp-wshadow-sm); }
.lp-ba-tag{ position:absolute; z-index:3; top:12px; font-size:11px; font-weight:700; letter-spacing:.04em; text-transform:uppercase; padding:5px 10px; border-radius:999px; color:#fff; }
.lp-ba-tag-raw{ left:12px; background:rgba(42,32,24,.66); }
.lp-ba-tag-done{ right:12px; background:var(--lp-terra); }
.lp-ba-range{ position:absolute; z-index:4; inset:0; width:100%; height:100%; margin:0; padding:0; opacity:0; cursor:ew-resize; -webkit-appearance:none; appearance:none; background:transparent; }
.lp-ba-range::-webkit-slider-thumb{ -webkit-appearance:none; width:46px; height:200px; cursor:ew-resize; }
.lp-ba-range::-moz-range-thumb{ width:46px; height:200px; border:0; background:transparent; }

/* ---- Find-the-seam loupe ---- */
.lp-loupe-sec{ background:var(--lp-peach); padding:72px 0; }
.lp-loupe-grid{ display:grid; grid-template-columns:1fr 1fr; gap:46px; align-items:center; }
.lp-loupe-copy .lp-sub{ margin-top:10px; }
.lp-loupe-foot{ margin-top:14px; font-size:14px; font-style:italic; color:var(--lp-muted); }
.lp-loupe{ position:relative; border-radius:20px; overflow:hidden; box-shadow:var(--lp-wshadow); aspect-ratio:4/5; cursor:crosshair; background:var(--lp-blue); touch-action:none; }
.lp-loupe-img{ display:block; width:100%; height:100%; object-fit:cover; object-position:center 20%; }
.lp-loupe-glass{ position:absolute; width:170px; height:170px; border-radius:50%; border:3px solid #fff; box-shadow:0 12px 32px rgba(42,32,24,.42), inset 0 0 0 1px rgba(42,32,24,.18); pointer-events:none; opacity:0; transition:opacity .15s; background-repeat:no-repeat; transform:translate(-50%,-50%); }
.lp-loupe.is-active .lp-loupe-glass{ opacity:1; }
.lp-loupe-hint{ position:absolute; z-index:2; left:50%; bottom:14px; transform:translateX(-50%); font-size:12px; font-weight:600; color:#fff; background:rgba(42,32,24,.6); padding:6px 12px; border-radius:999px; pointer-events:none; transition:opacity .15s; white-space:nowrap; }
.lp-loupe.is-active .lp-loupe-hint{ opacity:0; }

/* ---- Live activity rail ---- */

/* ---- FAQ ---- */
.lp-faq{ background:var(--lp-cream); padding:72px 0; }
.lp-faq-head{ text-align:center; margin:0 auto 30px; }
.lp-faq-list{ max-width:740px; margin:0 auto; border-top:1px solid var(--lp-hairline); }
.lp-faq-item{ border-bottom:1px solid var(--lp-hairline); }
.lp-faq-item summary{ list-style:none; cursor:pointer; padding:20px 46px 20px 4px; position:relative; font-family:var(--lp-serif); font-size:19px; font-weight:500; color:var(--lp-ink); }
.lp-faq-item summary::-webkit-details-marker{ display:none; }
.lp-faq-item summary:focus-visible{ outline:2px solid var(--lp-terra); outline-offset:3px; border-radius:4px; }
.lp-faq-mark{ position:absolute; right:8px; top:50%; width:16px; height:16px; margin-top:-8px; }
.lp-faq-mark:before, .lp-faq-mark:after{ content:""; position:absolute; background:var(--lp-terra); border-radius:2px; transition:transform .2s; }
.lp-faq-mark:before{ top:7px; left:0; width:16px; height:2px; }
.lp-faq-mark:after{ left:7px; top:0; width:2px; height:16px; }
.lp-faq-item[open] .lp-faq-mark:after{ transform:scaleY(0); }
.lp-faq-item p{ margin:0 46px 22px 4px; color:var(--lp-body); font-size:16px; line-height:1.6; }

/* ---- responsive: stack the two-column proof sections ---- */
@media (max-width:760px){
  .lp-anatomy-grid, .lp-loupe-grid{ grid-template-columns:1fr; gap:28px; }
  .lp-anatomy-art{ order:-1; }
}
@media (prefers-reduced-motion:reduce){
  .lp-pin i{ animation:none; }
  .lp-faq-mark:before, .lp-faq-mark:after{ transition:none; }
}

/* ---- HOW IT WORKS ---- */
.lp-how{ background:var(--lp-cream); padding:72px 0; }
.lp-h2-rule{ position:relative; padding-bottom:14px; }
.lp-h2-rule:after{ content:""; position:absolute; left:0; bottom:0; width:64px; height:2px; background:linear-gradient(90deg,var(--accent),var(--accent-2)); }
.lp-steps{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.lp-step{ position:relative; background:var(--lp-card); border:1px solid var(--lp-hairline); border-radius:16px; padding:26px 22px 24px; box-shadow:var(--lp-wshadow-sm); }
.lp-step-face{ position:absolute; top:18px; right:18px; width:52px; height:52px; border-radius:50%; object-fit:cover; object-position:center 28%; border:3px solid var(--lp-card); box-shadow:0 4px 10px rgba(42,32,24,.16); background:var(--lp-blue); }
.lp-step-num{ display:block; font-family:var(--lp-serif); font-weight:600; font-size:34px; line-height:1; color:var(--lp-ink); margin-bottom:12px; }
.lp-step h3{ margin:0 0 8px; font-size:18px; color:var(--lp-ink); }
.lp-step p{ margin:0; font-size:15px; line-height:1.55; color:var(--lp-body); }

/* ---- EDITORIAL GALLERY ---- */
.lp-gallery{ background:var(--lp-cream-2); padding:72px 0; }
.lp-grid{ display:grid; grid-template-columns:repeat(4,1fr); grid-auto-rows:clamp(122px,13.5vw,184px); gap:14px; grid-auto-flow:dense; }
.lp-tile{ position:relative; margin:0; overflow:hidden; border-radius:14px; border:1px solid var(--lp-hairline); box-shadow:var(--lp-wshadow-sm); transition:transform .2s, box-shadow .2s; }
.lp-tile img{ width:100%; height:100%; object-fit:cover; object-position:center 28%; display:block; background:var(--lp-blue); }
.lp-tile-big{ grid-row:span 2; }
.lp-tile-wide{ grid-column:span 2; }
.lp-tile:hover{ transform:translateY(-4px); box-shadow:0 18px 34px rgba(42,32,24,.18); }
.lp-tile figcaption{ position:absolute; left:0; right:0; bottom:0; padding:20px 14px 10px; font-size:12px; font-weight:600; color:#fff; background:linear-gradient(transparent,rgba(20,12,8,.6)); opacity:0; transform:translateY(6px); transition:.2s; }
.lp-tile:hover figcaption{ opacity:1; transform:none; }

/* ---- TRANSITION BAND -> dark ---- */
.lp-transition{ position:relative; height:150px; overflow:hidden; background:linear-gradient(180deg,var(--lp-peach),#0B0D12); }
.lp-transition-tex{ position:absolute; inset:0; background-size:cover; background-position:center; opacity:.13; }

/* ---- DARK ZONE (value + pricing) ---- */
.lp-dark{ background:#0B0D12; color:var(--text); }
.lp-value{ background:radial-gradient(620px 340px at 82% 24%, rgba(132,108,255,.16), transparent 70%), #0B0D12; padding:20px 0 72px; }
.lp-h2-light{ color:var(--text); }
.lp-sub-light{ color:var(--muted); }
.lp .lp-pricing{ position:sticky; top:90px; }
.lp .lp-pc-tag{ color:#1c1407; background:var(--lp-gold); border-color:var(--lp-gold); }
.lp .pc-price .amt{ font-family:var(--lp-serif); font-weight:600; font-size:84px; }

/* ---- TESTIMONIALS as reply cards ---- */
.lp-testi{ padding:56px 0 70px; border-top:1px solid var(--border); }
.lp-reply-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.lp-reply{ position:relative; overflow:hidden; background:var(--panel); border:1px solid var(--border); border-radius:18px; padding:20px; }
.lp-reply:before{ content:""; position:absolute; left:0; right:0; top:0; height:2px; background:linear-gradient(90deg,var(--accent),var(--accent-2)); transform:scaleX(0); transform-origin:left; transition:transform .25s; }
.lp-reply:hover:before{ transform:scaleX(1); }
.lp-reply header{ display:flex; align-items:center; gap:12px; }
.lp-reply-av{ position:relative; flex:none; }
.lp-reply-av img{ width:48px; height:48px; border-radius:50%; object-fit:cover; object-position:center 28%; background:var(--panel-2); }
.lp-online{ position:absolute; right:0; bottom:0; width:12px; height:12px; border-radius:50%; background:var(--good); border:2px solid var(--panel); }
.lp-reply header b{ display:block; font-size:15px; color:var(--text); }
.lp-reply header span{ font-size:12px; color:var(--muted); }
.lp-replyto{ margin:14px 0 6px; font-size:12px; color:var(--muted); }
.lp-quote{ margin:0; font-size:15px; line-height:1.55; color:var(--text); }
.lp-q{ font-family:var(--lp-serif); color:var(--accent); font-size:22px; line-height:0; margin-right:2px; vertical-align:-4px; }
.lp-reply footer{ display:flex; align-items:center; gap:8px; margin-top:16px; font-size:12px; color:var(--muted); }

/* ---- FINAL CTA (warm-dark close) ---- */
.lp-final{ background:radial-gradient(720px 280px at 50% 0%, rgba(246,227,212,.16), transparent 70%), var(--lp-ink); color:var(--lp-cream); text-align:center; padding:64px 20px 76px; }
.lp-final-avatars{ display:flex; justify-content:center; margin-bottom:22px; }
.lp-final-avatars img{ width:34px; height:34px; border-radius:50%; object-fit:cover; object-position:center 28%; border:2px solid var(--lp-ink); margin-left:-9px; box-shadow:0 2px 8px rgba(0,0,0,.4); background:var(--lp-blue); }
.lp-final-avatars img:first-child{ margin-left:0; }
.lp-final-h{ color:var(--lp-cream); margin:0 auto 12px; max-width:20ch; }
.lp-final-sub{ margin:0 auto 26px; max-width:48ch; font-size:17px; color:rgba(251,244,236,.78); }
.lp-btn-cream{ display:inline-block; background:var(--lp-cream); color:var(--lp-ink); font-weight:700; font-size:17px; padding:15px 32px; border-radius:12px; box-shadow:0 10px 26px rgba(0,0,0,.34); transition:.18s; }
.lp-btn-cream:hover{ transform:translateY(-1px); filter:brightness(1.03); box-shadow:0 14px 32px rgba(0,0,0,.42); text-decoration:none; }
.lp-reassure{ margin:16px 0 0; font-size:13px; color:rgba(251,244,236,.6); }
.lp-final-links{ margin:8px 0 0; font-size:13px; color:rgba(251,244,236,.6); }
.lp-final-links a{ color:var(--lp-cream); text-decoration:underline; }

/* note on the classic page (outside .lp) */
.classic-note{ text-align:center; font-size:13px; color:var(--muted); margin:-12px 0 6px; }

/* ---- scroll-reveal (added by app.js only when motion is OK) ---- */
.lp.js-reveal .lp-step,
.lp.js-reveal .lp-tile,
.lp.js-reveal .lp-reply{ opacity:0; transform:translateY(16px); transition:opacity .55s ease, transform .55s ease; }
.lp.js-reveal .lp-step.in,
.lp.js-reveal .lp-tile.in,
.lp.js-reveal .lp-reply.in{ opacity:1; transform:none; }

/* ---- chip entrance ---- */
@keyframes lp-chip-in{ from{opacity:0; transform:translateY(8px)} to{opacity:1; transform:none} }
.lp-chip-ai{ animation:lp-chip-in .5s .22s both; }
.lp-chip-notreal{ animation:lp-chip-in .5s .36s both; }
.lp-plate-cap{ animation:lp-chip-in .5s .48s both; }

/* ---- responsive ---- */
@media (max-width:900px){
  .lp-hero-grid{ grid-template-columns:1fr; gap:30px; }
  .lp-hero-art{ order:1; }                       /* the bet headline leads on mobile; portrait follows */
  .lp-plate-hero, .lp-bluebridge{ width:min(360px,78vw); }
  .lp-plate-hero, .lp-plate-hero:hover{ transform:none; }
  .lp-bluebridge{ transform:translate(-50%,-50%) translate(10px,12px); }
  .lp-btn-espresso{ flex:1 1 auto; text-align:center; }
}
@media (max-width:820px){
  .lp-steps{ grid-template-columns:1fr; }
  .lp-reply-grid{ grid-template-columns:1fr; }
  .lp-grid{ grid-template-columns:repeat(3,1fr); }
}
@media (max-width:560px){
  .lp-inner{ padding:0 18px; }
  .lp-grid{ grid-template-columns:repeat(2,1fr); }
  .lp-tile-big{ grid-row:span 1; }               /* avoid comically tall crops */
  .lp-face{ width:112px; height:112px; }
}

/* ---- reduced motion ---- */
@media (prefers-reduced-motion:reduce){
  .lp-marquee-track{ animation:none; width:auto; flex-wrap:wrap; justify-content:center; }
  .lp-marquee [aria-hidden="true"]{ display:none; }   /* drop the duplicate loop set */
  .lp-marquee{ -webkit-mask-image:none; mask-image:none; }
  .lp-plate-hero, .lp-plate-hero:hover{ transform:none; }
  .lp-chip-ai, .lp-chip-notreal, .lp-plate-cap{ animation:none; }
  .lp-tile, .lp-tile:hover{ transform:none; }
}

/* ---- button & link text colors: must out-specify `.lp a { color:inherit }` ---- */
.lp a.lp-btn-espresso{ color:var(--lp-cream); }     /* cream text on espresso btn */
.lp a.lp-btn-cream{ color:var(--lp-ink); }          /* ink text on cream btn */
.lp .btn-primary{ color:#fff; }                     /* "Join the club" stays white on gradient */
/* nav: ".nav-links a" (muted) was overriding ".btn-primary" white on "Join free" */
.nav-links a.btn-primary{ color:#fff; }

/* ---- "Why join" reasons (no-artist / stay current / protect) ---- */
.lp-reasons{ background:var(--lp-cream-2); padding:72px 0; }
.lp-reasons-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-top:34px; }
.lp-reason{ background:var(--lp-card); border:1px solid var(--lp-hairline); border-radius:16px; padding:26px 22px 24px; box-shadow:var(--lp-wshadow-sm); }
.lp-reason-ic{ display:grid; place-items:center; width:44px; height:44px; border-radius:12px; background:var(--lp-peach); margin-bottom:14px; }
.lp-reason-ic svg{ width:22px; height:22px; color:var(--lp-terra); fill:none; stroke:currentColor; stroke-width:2; stroke-linecap:round; stroke-linejoin:round; }
.lp-reason-ic svg.fill{ fill:currentColor; stroke:none; }
.lp-reason h3{ margin:0 0 8px; font-size:18px; color:var(--lp-ink); }
.lp-reason p{ margin:0; font-size:15px; line-height:1.55; color:var(--lp-body); }

/* ---- $9 founding-price urgency ---- */
.lp-hero-note{ margin:14px 0 0; font-size:13px; font-weight:600; color:var(--lp-terra); }
.lp-hero-note b{ color:var(--lp-ink); }
.lp-price-warn{ margin:-2px 0 14px; font-size:11px; font-weight:800; letter-spacing:.06em; text-transform:uppercase; color:var(--lp-gold); }

/* ---- logged-out auth links pinned to the right of the top bar ---- */
.nav-links.nav-auth{ margin-left:auto; }

@media (max-width:820px){ .lp-reasons-grid{ grid-template-columns:1fr; } }

/* ---- believe-strip face wall: static 12-up grid, no duplicated/scrolling copy ---- */
.lp-facewall{ display:grid; grid-template-columns:repeat(6,1fr); gap:14px; max-width:1000px; margin:0 auto; }
.lp-facewall .lp-face{ width:auto; height:auto; aspect-ratio:1; margin-right:0; }
@media (max-width:820px){ .lp-facewall{ grid-template-columns:repeat(4,1fr); } }
@media (max-width:520px){ .lp-facewall{ grid-template-columns:repeat(3,1fr); } }
.lp-facewall .lp-face{ overflow:hidden; }   /* clip the hover "Rendered" tag (marquee used to clip it) */

/* ---- AD WALL: realistic UGC for ads & brands ---- */
.lp-adwall{ background:var(--lp-cream); border-top:1px solid var(--lp-hairline); padding:72px 0; }
.lp-adwall-head{ text-align:center; margin:0 auto 28px; max-width:780px; }
.lp-adwall-head .lp-eyebrow, .lp-adwall-head .lp-sub{ margin-left:auto; margin-right:auto; }
.lp-adwall-head .lp-sub{ margin-top:10px; }
.lp-adwall-chips{ display:flex; flex-wrap:wrap; justify-content:center; gap:10px; margin:0 auto 30px; padding:0; list-style:none; }
.lp-adwall-chips li{ font-size:12px; font-weight:700; text-transform:uppercase; letter-spacing:.12em; color:var(--lp-pill-tx); background:var(--lp-pill-bg); padding:7px 14px; border-radius:999px; }
.lp-adwall-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:18px; margin:0; padding:0; list-style:none; }
.lp-ad-card{ position:relative; background:var(--lp-card); padding:6px; border-radius:18px; box-shadow:var(--lp-wshadow-sm); transition:transform .15s, box-shadow .15s; cursor:pointer; }
.lp-ad-card:hover{ transform:translateY(-3px); box-shadow:var(--lp-wshadow); }
.lp-ad-card:focus-visible{ outline:2px solid var(--lp-terra); outline-offset:2px; }
.lp-ad-media{ position:relative; aspect-ratio:9/16; border-radius:13px; overflow:hidden; background:var(--lp-blue); }
.lp-ad-media img{ width:100%; height:100%; object-fit:cover; object-position:center 30%; display:block; }
.lp-ad-bar{ position:absolute; top:0; left:0; right:0; height:42px; background:linear-gradient(180deg, rgba(0,0,0,.34), transparent); pointer-events:none; }
.lp-ad-spons{ position:absolute; top:8px; left:8px; font-size:10px; font-weight:700; letter-spacing:.04em; color:#fff; background:rgba(0,0,0,.5); padding:3px 8px; border-radius:6px; }
.lp-ad-rail{ position:absolute; right:8px; bottom:66px; display:flex; flex-direction:column; gap:13px; }
.lp-ad-rail i{ width:28px; height:28px; border-radius:50%; background:rgba(255,255,255,.85); box-shadow:0 2px 6px rgba(0,0,0,.3); }
.lp-ad-cap{ position:absolute; left:0; right:0; bottom:0; padding:28px 10px 12px; background:linear-gradient(transparent, rgba(0,0,0,.62)); color:#fff; }
.lp-ad-cap b{ display:block; font-size:12px; font-weight:700; }
.lp-ad-cap span{ display:block; font-size:12px; opacity:.92; line-height:1.35; margin-top:2px; }
.lp-ad-ribbon{ position:absolute; left:6px; right:6px; bottom:6px; display:flex; align-items:center; justify-content:center; gap:5px; padding:6px 4px; border-radius:0 0 12px 12px; background:var(--lp-terra); color:#fff; font-size:11px; font-weight:700; letter-spacing:.03em; text-align:center; transform:translateY(120%); transition:transform .22s; }
.lp-ad-card:hover .lp-ad-ribbon, .lp-ad-card:focus-within .lp-ad-ribbon, .lp-ad-card.revealed .lp-ad-ribbon{ transform:translateY(0); }
.lp-adwall-points{ display:grid; grid-template-columns:repeat(2,1fr); gap:20px; margin-top:40px; }
.lp-adwall-fine{ font-style:italic; color:var(--lp-muted); text-align:center; font-size:14px; max-width:56ch; margin:26px auto 0; }
.lp-adwall-close{ text-align:center; margin-top:32px; }
.lp-adwall-tether{ font-style:italic; color:var(--lp-muted); font-size:15px; margin:0 0 16px; }
@media (max-width:900px){ .lp-adwall-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:560px){
  .lp-adwall-grid{ display:flex; overflow-x:auto; scroll-snap-type:x mandatory; gap:14px; -webkit-overflow-scrolling:touch; -webkit-mask-image:linear-gradient(90deg,transparent,#000 6%,#000 94%,transparent); mask-image:linear-gradient(90deg,transparent,#000 6%,#000 94%,transparent); }
  .lp-ad-card{ flex:0 0 72%; scroll-snap-align:center; }
  .lp-adwall-points{ grid-template-columns:1fr; }
}
@media (prefers-reduced-motion:reduce){
  .lp-ad-card, .lp-ad-card:hover{ transform:none; }
  .lp-ad-ribbon{ transform:translateY(0); transition:none; }
}

/* ---- "New" tag on the just-added UGC Ad Playbook (dark value zone) ---- */
.lp .vnew{ display:inline-block; margin-left:8px; font-size:10px; font-weight:800; letter-spacing:.06em; text-transform:uppercase; color:#1c1407; background:var(--lp-gold); padding:2px 7px; border-radius:999px; vertical-align:middle; }
.lp .lp-new-inline{ display:inline-block; margin-left:6px; font-size:10px; font-weight:800; letter-spacing:.05em; text-transform:uppercase; color:var(--lp-gold); border:1px solid var(--lp-gold); padding:1px 6px; border-radius:999px; vertical-align:middle; }

/* ---- analytics dashboard ---- */
.achart { display: flex; align-items: flex-end; gap: 3px; height: 120px; padding: 4px 0; }
.abar { flex: 1; height: 100%; display: flex; align-items: flex-end; border-radius: 3px; background: rgba(255,255,255,.03); }
.abar-fill { width: 100%; border-radius: 3px 3px 0 0; min-height: 2px; transition: height .3s ease; }
.achart-x { display: flex; justify-content: space-between; font-size: 11px; color: var(--muted); margin-top: 4px; }
.atable { width: 100%; border-collapse: collapse; font-size: 14px; }
.atable th { text-align: left; font-size: 12px; text-transform: uppercase; letter-spacing: .04em; color: var(--muted); font-weight: 600; padding: 6px 10px; border-bottom: 1px solid var(--border); }
.atable td { padding: 9px 10px; border-bottom: 1px solid var(--border); vertical-align: middle; }
.atable tr:last-child td { border-bottom: none; }
.abarh { position: relative; background: var(--panel-2); border-radius: 999px; height: 18px; overflow: hidden; }
.abarh-fill { height: 100%; background: linear-gradient(90deg, var(--accent), var(--accent-2)); border-radius: 999px; min-width: 2px; }
.abarh-lbl { position: absolute; right: 8px; top: 0; line-height: 18px; font-size: 11px; font-weight: 700; }
.arow { position: relative; display: flex; align-items: center; gap: 10px; padding: 7px 10px; margin-bottom: 4px; border-radius: 8px; overflow: hidden; }
.arow-bar { position: absolute; left: 0; top: 0; height: 100%; background: rgba(108,140,255,.16); border-radius: 8px; z-index: 0; }
.arow-lbl { position: relative; z-index: 1; flex: 1; font-size: 13px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.arow-val { position: relative; z-index: 1; font-weight: 700; font-size: 13px; }
.afunnel { display: flex; flex-direction: column; gap: 8px; }
.afunnel-step { background: var(--panel-2); border: 1px solid var(--border); border-radius: 10px; padding: 12px 14px; display: flex; align-items: baseline; gap: 10px; }
.afunnel-step b { font-size: 22px; }
.afunnel-step span { color: var(--muted); font-size: 13px; }
.afunnel-step:nth-child(2) { margin: 0 6%; }
.afunnel-step:nth-child(3) { margin: 0 12%; }

/* ---- welcome / onboarding modal ---- */
.wm-overlay { position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center; padding: 20px; background: rgba(6,8,12,.72); backdrop-filter: blur(6px); animation: wm-fade .2s ease; }
@keyframes wm-fade { from { opacity: 0; } to { opacity: 1; } }
.wm-card { position: relative; width: 100%; max-width: 460px; background: var(--panel); border: 1px solid var(--border); border-radius: 18px; box-shadow: var(--shadow); padding: 34px 30px 22px; animation: wm-rise .25s ease; }
@keyframes wm-rise { from { transform: translateY(12px); opacity: 0; } to { transform: none; opacity: 1; } }
.wm-x { position: absolute; top: 12px; right: 14px; background: none; border: none; color: var(--muted); font-size: 26px; line-height: 1; cursor: pointer; padding: 4px; }
.wm-x:hover { color: var(--text); }
.wm-steps { min-height: 196px; display: flex; }
.wm-step { display: none; flex-direction: column; align-items: center; text-align: center; width: 100%; animation: wm-fade .25s ease; }
.wm-step.is-active { display: flex; }
.wm-step h2 { font-size: 22px; margin: 4px 0 8px; letter-spacing: -.01em; }
.wm-step p { color: var(--muted); margin: 0 0 14px; max-width: 36ch; }
.wm-step strong { color: var(--text); }
.wm-mark { width: 76px; height: 76px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: radial-gradient(circle at 30% 25%, rgba(108,140,255,.22), rgba(176,108,255,.10)); border: 1px solid var(--border); margin-bottom: 12px; }
.wm-emoji { font-size: 44px; margin-bottom: 10px; }
.wm-chip { display: inline-block; font-size: 13px; font-weight: 600; padding: 7px 14px; border-radius: 999px; border: 1px solid var(--border); color: var(--text); background: var(--panel-2); }
.wm-chip:hover { border-color: var(--accent); text-decoration: none; }
.wm-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--border); }
.wm-skip { background: none; border: none; color: var(--muted); font: inherit; font-size: 13px; cursor: pointer; padding: 6px 2px; }
.wm-skip:hover { color: var(--text); }
.wm-dots { display: flex; gap: 7px; }
.wm-dots span { width: 7px; height: 7px; border-radius: 50%; background: var(--border); transition: .2s; }
.wm-dots span.on { background: linear-gradient(135deg, var(--accent), var(--accent-2)); transform: scale(1.25); }
.wm-nav { display: flex; gap: 8px; align-items: center; }
@media (max-width: 520px){ .wm-card { padding: 30px 20px 18px; } .wm-foot { flex-wrap: wrap; } }


/* ---- landing hero: "The Bet" copy variant (longer guarantee headline) ---- */
.lp .lp-h1-bet{ font-size:clamp(33px,4.4vw,54px); }
.lp .lp-bet-anchor{ margin:0; font-size:14.5px; line-height:1.5; color:var(--lp-muted); }
.lp .lp-bet-anchor b{ color:var(--lp-ink); }

/* ===== Hormozi conviction sections: first-30-days, do-the-math, why-$9, fit check ===== */
.lp .lp-bet-anchor{ flex:1 1 180px; min-width:0; max-width:30ch; }

/* value-stack group labels (day-one vs recurring) */
.vgroup{ padding:13px 20px 9px; font-size:11.5px; font-weight:700; text-transform:uppercase; letter-spacing:.12em; color:var(--muted); background:var(--panel-2); border-bottom:1px solid var(--border); }

/* ---- THE FIRST 30 DAYS ---- */
.lp .lp-r30{ background:var(--lp-cream); padding:72px 0; }
.lp .lp-r30-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:18px; }
.lp .lp-r30-card{ background:var(--lp-card); border:1px solid var(--lp-hairline); border-radius:16px; padding:24px 20px 22px; box-shadow:var(--lp-wshadow-sm); }
.lp .lp-r30-days{ display:inline-block; font-size:11.5px; font-weight:700; text-transform:uppercase; letter-spacing:.1em; color:var(--lp-pill-tx); background:var(--lp-pill-bg); padding:5px 11px; border-radius:999px; margin-bottom:14px; }
.lp .lp-r30-card h3{ font-family:var(--lp-serif); font-weight:500; font-size:19px; margin:0 0 8px; color:var(--lp-ink); }
.lp .lp-r30-card p{ margin:0; font-size:14.5px; line-height:1.55; color:var(--lp-body); }
.lp .lp-r30-cap{ display:flex; align-items:center; justify-content:space-between; gap:22px; flex-wrap:wrap; margin-top:26px; background:var(--lp-peach); border-radius:18px; padding:22px 28px; }
.lp .lp-r30-cap p{ margin:0; font-size:17px; line-height:1.5; color:var(--lp-body); max-width:52ch; }
.lp .lp-r30-cap b{ color:var(--lp-ink); }
.lp .lp-r30-cap em{ font-family:var(--lp-serif); color:var(--lp-terra); }

/* ---- DO THE MATH ---- */
.lp .lp-math{ background:var(--lp-peach); padding:72px 0; }
.lp .lp-math-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:18px; align-items:stretch; }
.lp .lp-math-card{ background:var(--lp-card); border:1px solid var(--lp-hairline); border-radius:16px; padding:24px 20px 22px; box-shadow:var(--lp-wshadow-sm); }
.lp .lp-math-card h3{ font-size:13px; font-weight:700; text-transform:uppercase; letter-spacing:.07em; color:var(--lp-muted); margin:0 0 10px; }
.lp .lp-math-price{ font-family:var(--lp-serif); font-weight:500; font-size:34px; letter-spacing:-.02em; color:var(--lp-ink); margin-bottom:10px; }
.lp .lp-math-card p{ margin:0; font-size:14.5px; line-height:1.55; color:var(--lp-body); }
.lp .lp-math-club{ background:var(--lp-ink); border-color:var(--lp-ink); }
.lp .lp-math-club h3{ color:var(--lp-gold); }
.lp .lp-math-club .lp-math-price{ color:var(--lp-cream); }
.lp .lp-math-club p{ color:#D8CCBD; }

/* ---- WHY ONLY $9 ---- */
.lp .lp-why9{ padding:64px 0; }
.lp .lp-why9-box{ max-width:740px; }
.lp .lp-why9-box p{ margin:14px 0 0; font-size:17px; line-height:1.65; color:var(--muted); }
.lp .lp-why9-box em{ font-style:italic; color:var(--text); }

/* ---- FIT CHECK ---- */
.lp .lp-fit{ background:var(--lp-cream); padding:72px 0 8px; }
.lp .lp-fit-grid{ display:grid; grid-template-columns:1fr 1fr; gap:18px; max-width:880px; }
.lp .lp-fit-col{ background:var(--lp-card); border:1px solid var(--lp-hairline); border-radius:16px; padding:24px 24px 20px; box-shadow:var(--lp-wshadow-sm); }
.lp .lp-fit-col h3{ font-family:var(--lp-serif); font-weight:500; font-size:21px; margin:0 0 14px; color:var(--lp-ink); }
.lp .lp-fit-col ul{ list-style:none; margin:0; padding:0; }
.lp .lp-fit-col li{ position:relative; padding:7px 0 7px 30px; font-size:15.5px; line-height:1.5; color:var(--lp-body); }
.lp .lp-fit-col li:before{ position:absolute; left:0; top:7px; display:inline-grid; place-items:center; width:20px; height:20px; border-radius:50%; font-size:11px; font-weight:700; }
.lp .lp-fit-yes li:before{ content:"✓"; background:var(--lp-pill-bg); color:var(--lp-pill-tx); }
.lp .lp-fit-no li:before{ content:"✕"; background:#F3DCD3; color:#B2492B; }
.lp .lp-fit-no h3{ color:#B2492B; }

@media (max-width:980px){
  .lp .lp-r30-grid, .lp .lp-math-grid{ grid-template-columns:1fr 1fr; }
}
@media (max-width:640px){
  .lp .lp-r30-grid, .lp .lp-math-grid, .lp .lp-fit-grid{ grid-template-columns:1fr; }
  .lp .lp-r30-cap{ padding:20px; }
  .lp .lp-r30-cap .lp-btn-espresso{ width:100%; text-align:center; }
}

/* ---- INSIDE THE CLUB (real product screenshots) ---- */
.lp .lp-inside{ background:var(--lp-cream-2); padding:72px 0; }
.lp .lp-inside-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.lp .lp-shot{ margin:0; background:var(--lp-card); border:1px solid var(--lp-hairline); border-radius:16px; box-shadow:var(--lp-wshadow-sm); overflow:hidden; }
.lp .lp-shot-bar{ display:flex; gap:5px; padding:9px 12px; background:#171A21; }
.lp .lp-shot-bar i{ width:8px; height:8px; border-radius:50%; background:#3A4150; }
.lp .lp-shot-bar i:first-child{ background:var(--lp-terra); }
.lp .lp-shot img{ display:block; width:100%; height:auto; }
.lp .lp-shot figcaption{ padding:13px 16px 15px; font-size:13.5px; line-height:1.5; color:var(--lp-body); }
.lp .lp-shot figcaption b{ color:var(--lp-ink); }

/* ---- NEVER GOES STALE (release-week timeline) ---- */
.lp .lp-fresh{ background:var(--lp-blue); padding:72px 0; }
.lp .lp-fresh-line{ list-style:none; margin:0 0 26px; padding:0; max-width:780px; }
.lp .lp-fresh-line li{ display:flex; gap:22px; padding:18px 0; border-bottom:1px solid rgba(42,32,24,.12); }
.lp .lp-fresh-line li:last-child{ border-bottom:0; }
.lp .lp-fresh-when{ flex:0 0 132px; font-size:12px; font-weight:700; text-transform:uppercase; letter-spacing:.08em; color:var(--lp-pill-tx); padding-top:4px; }
.lp .lp-fresh-line b{ display:block; font-family:var(--lp-serif); font-weight:500; font-size:19px; color:var(--lp-ink); margin-bottom:5px; }
.lp .lp-fresh-line p{ margin:0; font-size:15px; line-height:1.55; color:var(--lp-body); max-width:56ch; }
.lp .lp-fresh-punch{ margin:0; font-size:18px; color:var(--lp-body); }
.lp .lp-fresh-punch em{ font-family:var(--lp-serif); font-size:20px; color:var(--lp-terra); }

/* ---- THE WAGER (worst/best case close) ---- */
.lp .lp-wager{ background:var(--lp-peach); padding:72px 0; }
.lp .lp-wager-grid{ display:grid; grid-template-columns:1fr 1fr; gap:18px; max-width:880px; margin-bottom:22px; }
.lp .lp-wager-col{ background:var(--lp-card); border:1px solid var(--lp-hairline); border-radius:16px; padding:24px; box-shadow:var(--lp-wshadow-sm); }
.lp .lp-wager-col h3{ font-size:13px; font-weight:700; text-transform:uppercase; letter-spacing:.08em; margin:0 0 10px; }
.lp .lp-wager-worst h3{ color:#B2492B; }
.lp .lp-wager-best h3{ color:var(--lp-pill-tx); }
.lp .lp-wager-col p{ margin:0; font-size:15.5px; line-height:1.6; color:var(--lp-body); }
.lp .lp-wager-line{ margin:0; font-size:17px; line-height:1.6; color:var(--lp-body); max-width:64ch; }
.lp .lp-wager-line b{ color:var(--lp-ink); }

@media (max-width:900px){ .lp .lp-inside-grid{ grid-template-columns:1fr; } }
@media (max-width:640px){
  .lp .lp-wager-grid{ grid-template-columns:1fr; }
  .lp .lp-fresh-line li{ flex-direction:column; gap:6px; }
  .lp .lp-fresh-when{ flex:none; padding-top:0; }
}

/* ---- WHO RUNS THE CLUB (authority) ---- */
.lp .lp-crew{ background:var(--lp-cream); padding:72px 0; }
.lp .lp-crew .lp-crew-grid{ grid-template-columns:repeat(2,1fr); max-width:920px; }
@media (max-width:640px){ .lp .lp-crew .lp-crew-grid{ grid-template-columns:1fr; } }

/* ---- hero deck: two plates fanned behind the main portrait ---- */
.lp .lp-deck{ position:relative; z-index:1; }
.lp .lp-plate-back{ position:absolute; inset:0; z-index:-1; box-shadow:var(--lp-wshadow-sm); transition:transform .25s ease; }
.lp .lp-plate-back:before{ display:none; }
.lp .lp-plate-back img{ width:100%; height:auto; aspect-ratio:4/5; }
/* zoom-and-pan each back image so its face sits in the visible band */
.lp .lp-plate-crop{ display:block; overflow:hidden; border-radius:20px; }
.lp .lp-plate-back1 .lp-plate-crop img{ transform:scale(1.4) translateX(-34%); }
.lp .lp-plate-back2 .lp-plate-crop img{ transform:scale(1.35) translateX(28%); }
.lp .lp-plate-back1{ transform:rotate(-6.5deg) translate(-76px,8px); }
.lp .lp-plate-back2{ transform:rotate(7deg) translate(78px,-12px); }
.lp .lp-deck:hover .lp-plate-back1{ transform:rotate(-7.5deg) translate(-84px,10px); }
.lp .lp-deck:hover .lp-plate-back2{ transform:rotate(8deg) translate(86px,-15px); }
@media (max-width:900px){
  .lp .lp-plate-back1{ transform:rotate(-6.5deg) translate(-38px,5px); }
  .lp .lp-plate-back2{ transform:rotate(7deg) translate(40px,-8px); }
}
@media (prefers-reduced-motion:reduce){
  .lp .lp-plate-back, .lp .lp-deck:hover .lp-plate-back1, .lp .lp-deck:hover .lp-plate-back2{ transition:none; }
}
