/* ============================================================
   VSL V2 — single-column funnel · Cashy aesthetic
   ============================================================ */

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--fg-1);
  font-family: var(--font-body);
  overflow-x: hidden;
}
button, input, select { font-family: inherit; }

.page-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(60% 30% at 20% 0%, rgba(168,204,126,0.16) 0%, rgba(168,204,126,0.05) 38%, transparent 68%),
    radial-gradient(50% 24% at 82% 38%, rgba(120,200,150,0.10) 0%, transparent 70%),
    radial-gradient(60% 26% at 18% 78%, rgba(168,204,126,0.10) 0%, transparent 70%),
    var(--bg);
}

.funnel {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
  padding: 28px 16px 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.brandbar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px 0 4px;
}
.brandbar img {
  width: 34px; height: 34px;
  object-fit: contain;
  filter: drop-shadow(0 0 14px rgba(168,204,126,0.45));
}
.brandbar span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: var(--fg);
  transform: translateY(2px);
}

.card {
  position: relative;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 28px 24px;
}

.hero { text-align: center; }
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(168,204,126,0.45);
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}
.chip .dot {
  width: 6px; height: 6px; border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 7vw, 36px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--fg);
  margin: 20px 0 14px;
}
.hero h1 .accent { color: var(--accent); }
.hero .sub {
  color: var(--fg-2);
  font-size: 15px;
  line-height: 1.55;
  max-width: 42ch;
  margin: 0 auto 18px;
}
.guarantee {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px;
  border-radius: var(--radius-pill);
  background: var(--accent);
  color: var(--accent-ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  margin-bottom: 22px;
}
.guarantee svg { width: 14px; height: 14px; }

.player {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border-strong);
  background: #0c0d0c;
}
.player .media { position: absolute; inset: 0; width: 100%; height: 100%; }
image-slot.media { display: block; }

.player-video { aspect-ratio: 16 / 9; background: #000; }
.player-video iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0; display: block;
}

/* ---- Poster gate (page 1 hero VSL) ---- */
.player-poster {
  display: block;
  aspect-ratio: 16 / 9;
  background: #000;
  text-decoration: none;
  cursor: pointer;
}
.player-poster .poster-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.player-poster .poster-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.55) 100%);
  z-index: 1;
}
.player-poster .poster-cta {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 16px;
  z-index: 2;
}
.player-poster .poster-play {
  width: 76px; height: 76px;
  border-radius: 999px;
  background: var(--accent);
  display: grid; place-items: center;
  box-shadow: 0 0 0 8px rgba(168,204,126,0.20), 0 16px 40px rgba(0,0,0,0.55);
  transition: transform var(--dur-base) var(--ease-out), background var(--dur-base) var(--ease-out);
  position: relative;
}
.player-poster .poster-play::after {
  content: '';
  width: 0; height: 0;
  border-left: 22px solid var(--accent-ink);
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  margin-left: 6px;
}
.player-poster:hover .poster-play { transform: scale(1.08); background: var(--accent-hover); }
.player-poster .poster-gate {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(10,10,10,0.72);
  color: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 13px;
  border: 1px solid rgba(255,255,255,0.16);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  max-width: 92%;
  text-align: center;
}
.player-poster .poster-gate svg {
  width: 14px; height: 14px;
  color: var(--accent);
  flex-shrink: 0;
}
@media (max-width: 480px) {
  .player-poster .poster-play { width: 64px; height: 64px; }
  .player-poster .poster-play::after { border-left-width: 18px; border-top-width: 12px; border-bottom-width: 12px; }
  .player-poster .poster-gate { font-size: 12px; padding: 8px 14px; }
}
.player .scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0) 40%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
}
.player .play-overlay {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  cursor: pointer;
  z-index: 3;
}
.play-btn {
  width: 64px; height: 44px;
  border-radius: 12px;
  background: var(--accent);
  display: grid; place-items: center;
  color: var(--accent-ink);
  border: 0;
  cursor: pointer;
  box-shadow: 0 0 0 6px rgba(168,204,126,0.16), 0 8px 24px rgba(0,0,0,0.4);
  transition: transform var(--dur-base) var(--ease-out), background var(--dur-base) var(--ease-out);
}
.play-overlay:hover .play-btn { transform: scale(1.06); background: var(--accent-hover); }
.play-btn svg { width: 22px; height: 22px; margin-left: 2px; }

.player .vcaption {
  position: absolute;
  left: 0; right: 0;
  bottom: 42px;
  text-align: center;
  z-index: 2;
  pointer-events: none;
  padding: 0 18px;
}
.player .vcaption span {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  color: #fff;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 8px rgba(0,0,0,0.7);
}

.player .controls {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 36px;
  display: flex; align-items: center; gap: 10px;
  padding: 0 12px;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 100%);
  z-index: 4;
}
.player .controls .ctrl-play {
  display: grid; place-items: center;
  width: 16px; height: 16px;
  color: #fff;
}
.player .controls .ctrl-play svg { width: 12px; height: 12px; }
.player .controls .time {
  font-family: var(--font-mono);
  font-size: 11px;
  color: #fff;
}
.player .controls .track {
  flex: 1;
  height: 4px;
  border-radius: 999px;
  background: rgba(255,255,255,0.28);
  overflow: hidden;
}
.player .controls .track i {
  display: block;
  height: 100%;
  width: 38%;
  background: var(--accent);
  border-radius: 999px;
}
.player .controls .ctrl-ic {
  width: 14px; height: 14px;
  color: rgba(255,255,255,0.85);
}

.trustpilot {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 20px;
  font-size: 13px;
  color: var(--fg-1);
}
.trustpilot .ex { font-weight: 700; }
.trustpilot .stars { display: inline-flex; gap: 2px; }
.trustpilot .stars i {
  width: 18px; height: 18px;
  background: #00b67a;
  display: grid; place-items: center;
}
.trustpilot .stars i svg { width: 12px; height: 12px; color: #fff; }
.trustpilot .muted { color: var(--fg-3); }
.trustpilot .tp-logo { display: inline-flex; align-items: center; gap: 4px; font-weight: 700; }
.trustpilot .tp-logo svg { width: 14px; height: 14px; color: #00b67a; }

.cta {
  position: relative;
  width: 100%;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 17px 24px;
  background: var(--accent);
  color: var(--accent-ink);
  border: 0;
  border-radius: 14px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  text-decoration: none;
  overflow: hidden;
  isolation: isolate;
  transition: transform var(--dur-base) var(--ease-out), background var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
  box-shadow: 0 0 0 1px rgba(168,204,126,0.18), 0 12px 32px rgba(168,204,126,0.26);
  animation: ctaPulse 2.8s ease-out infinite;
}
.cta:hover { background: var(--accent-hover); transform: translateY(-1px); animation-play-state: paused; }
.cta:active { transform: scale(0.99); background: var(--accent-press); }
.cta .shine {
  position: absolute; top: 0; left: -60%;
  width: 55%; height: 100%;
  background: linear-gradient(110deg, transparent, rgba(255,255,255,0.5) 50%, transparent);
  transform: skewX(-18deg);
  animation: ctaShine 4.6s ease-in-out infinite;
  mix-blend-mode: screen;
  pointer-events: none;
}
@keyframes ctaPulse {
  0%   { box-shadow: 0 0 0 0 rgba(168,204,126,0.5), 0 12px 32px rgba(168,204,126,0.26); }
  60%  { box-shadow: 0 0 0 12px rgba(168,204,126,0), 0 12px 32px rgba(168,204,126,0.26); }
  100% { box-shadow: 0 0 0 0 rgba(168,204,126,0), 0 12px 32px rgba(168,204,126,0.26); }
}
@keyframes ctaShine {
  0% { left: -60%; } 55% { left: 120%; } 100% { left: 120%; }
}

.form-card .form-intro {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--fg);
  text-align: center;
  margin: 4px 0 24px;
}
.lead-form { display: flex; flex-direction: column; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--fg-1);
}
.field label .req { color: var(--accent); margin-left: 2px; }
.field .control {
  position: relative;
  display: flex; align-items: center;
}
.field input,
.field select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid #FFFFFF;
  background: #FFFFFF;
  color: #0A0A0A;
  font-size: 15px;
  font-weight: 500;
  outline: none;
  transition: box-shadow var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out);
  -webkit-appearance: none; appearance: none;
}
.field input::placeholder { color: #8A8A8A; font-weight: 500; }
.field input:focus,
.field select:focus { border-color: var(--accent); box-shadow: 0 0 0 4px var(--accent-ring); }
.field select { color: #0A0A0A; cursor: pointer; }
.field select.empty { color: #8A8A8A; }

.field .control .lead-ic {
  position: absolute;
  left: 14px;
  display: grid; place-items: center;
  color: #6B6B6B;
  pointer-events: none;
}
.field .control .lead-ic svg { width: 16px; height: 16px; }
.field .control.has-ic input { padding-left: 40px; }

.field .phone-row { display: flex; gap: 8px; width: 100%; }
.field .dial {
  flex: 0 0 84px;
  display: flex; align-items: center; gap: 6px;
  padding: 14px 12px;
  border-radius: 10px;
  background: #FFFFFF;
  color: #0A0A0A;
  font-weight: 600;
  font-size: 14px;
}
.field .dial .flag {
  width: 20px; height: 14px; border-radius: 2px; overflow: hidden;
  display: inline-block; flex-shrink: 0;
  background: linear-gradient(180deg, #fff 33%, #0057b7 33% 66%, #ffd700 66%);
}
.field .phone-row input { flex: 1; }

.field .control.select-wrap::after {
  content: "";
  position: absolute;
  right: 16px;
  width: 9px; height: 9px;
  border-right: 2px solid #6B6B6B;
  border-bottom: 2px solid #6B6B6B;
  transform: rotate(45deg) translateY(-2px);
  pointer-events: none;
}

.phone-row { align-items: stretch; }
.ccpick { position: relative; flex: 0 0 auto; }
.cc-btn {
  display: flex; align-items: center; gap: 6px;
  height: 100%; min-height: 48px;
  padding: 0 12px;
  border-radius: 10px;
  background: #fff; color: #0A0A0A;
  border: 1px solid #fff;
  font-weight: 600; font-size: 15px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.cc-btn:focus-visible { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px var(--accent-ring); }
.cc-flag { font-size: 19px; line-height: 1; }
.cc-chev {
  width: 8px; height: 8px;
  border-right: 2px solid #6B6B6B; border-bottom: 2px solid #6B6B6B;
  transform: rotate(45deg) translateY(-2px);
  margin-left: 1px;
}
.cc-menu {
  position: absolute; top: calc(100% + 6px); left: 0;
  z-index: 40;
  width: 290px; max-width: 80vw;
  max-height: 280px;
  background: #fff;
  border: 1px solid #E3E7EE;
  border-radius: 12px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
  display: flex; flex-direction: column;
  overflow: hidden;
}
.cc-menu[hidden] { display: none; }
.cc-search {
  margin: 8px; padding: 11px 12px;
  border: 1px solid #E3E7EE; border-radius: 8px;
  font-size: 16px; color: #0A0A0A; outline: none;
  background: #F7F8FA;
}
.cc-search:focus { border-color: var(--accent); background: #fff; }
.cc-list { overflow-y: auto; -webkit-overflow-scrolling: touch; overscroll-behavior: contain; }
.cc-item {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 14px;
  cursor: pointer; font-size: 15px; color: #0A0A0A;
  -webkit-tap-highlight-color: transparent;
}
.cc-item:hover, .cc-item.active { background: #EEF4E4; }
.cc-item .nm { flex: 1; }
.cc-item .dl { color: #6B6B6B; }
.cc-item .cc-flag { font-size: 19px; }

.form-err {
  color: var(--status-error);
  font-size: 13px;
  text-align: center;
  display: none;
}
.form-err.show { display: block; }
.form-fine {
  text-align: center;
  font-size: 12px;
  color: var(--fg-3);
  margin-top: 2px;
}

.section-head {
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(24px, 6vw, 30px);
  letter-spacing: -0.01em;
  color: var(--fg);
  margin: 8px 0 0;
}
.section-head .accent { color: var(--accent); }

.review-card { padding: 24px 20px; }
.review-card .section-head { margin-bottom: 18px; }
.review-card .review-cap {
  text-align: center;
  font-size: 13px;
  color: var(--fg-3);
  margin: 16px 0 0;
}

.faq { display: flex; flex-direction: column; gap: 12px; }
.faq .section-head { margin-bottom: 8px; }
.faq-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface);
  overflow: hidden;
  transition: border-color var(--dur-base) var(--ease-out);
}
.faq-card.open { border-color: rgba(168,204,126,0.32); }
.faq-card:hover { border-color: var(--border-strong); }
.faq-head {
  width: 100%;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 20px 18px;
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  color: var(--fg);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.01em;
  line-height: 1.3;
  text-align: left;
}
.faq-chev {
  width: 32px; height: 32px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--accent-ink);
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: background var(--dur-base) var(--ease-out);
}
.faq-chev svg { width: 15px; height: 15px; transition: transform var(--dur-base) var(--ease-out); }
.faq-card.open .faq-chev svg { transform: rotate(180deg); }
.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 320ms var(--ease-out);
}
.faq-card.open .faq-body { max-height: 400px; }
.faq-body p {
  padding: 0 18px 22px;
  margin: 0;
  color: var(--fg-3);
  font-size: 14px;
  line-height: 1.6;
}

.foot {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 48px 16px 40px;
  margin-top: 16px;
  border-top: 1px solid var(--border);
}
.foot .fbrand {
  display: inline-flex; align-items: center; gap: 8px;
  margin-bottom: 12px;
}
.foot .fbrand img { width: 26px; height: 26px; opacity: 0.7; }
.foot .fbrand span {
  font-family: var(--font-display); font-weight: 700;
  font-size: 16px; color: var(--fg-2); transform: translateY(2px);
}
.foot p { color: var(--fg-3); font-size: 12px; margin: 0; }

.foot-inner { max-width: 600px; margin: 0 auto; }
.foot-links {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 8px 18px;
  margin: 0 0 18px;
}
.foot-links a {
  color: var(--fg-2);
  font-size: 13px;
  text-decoration: none;
  transition: color var(--dur-base) var(--ease-out);
}
.foot-links a:hover { color: var(--fg); text-decoration: underline; }
.foot-contact { color: var(--fg-3); font-size: 12px; margin: 0 0 16px; }
.foot .foot-disc {
  color: var(--fg-4);
  font-size: 11px;
  line-height: 1.6;
  margin: 0 auto 12px;
  max-width: 560px;
}
.foot-rule {
  width: 100%; height: 1px;
  background: var(--border);
  border: 0;
  margin: 4px auto 20px;
  max-width: 560px;
}

.qual-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  background: var(--accent);
  color: var(--accent-ink);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
  white-space: nowrap;
}
.qual-pill svg { width: 15px; height: 15px; }
.book-hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(30px, 8vw, 44px);
  line-height: 1.14;
  letter-spacing: -0.01em;
  color: var(--fg);
  margin: 18px 0 16px;
}
.book-hero h1 .accent { color: var(--accent); display: block; }
.book-hero .sub { margin-bottom: 4px; }

.cal-card {
  border-radius: var(--radius-xl);
  background: var(--surface);
  border: 1px solid var(--border-strong);
  overflow: hidden;
  padding: 6px;
  position: relative;
}
.cal-card .calendly-inline-widget {
  border-radius: 18px;
  overflow: hidden;
  background: var(--bg);
}
.cal-fallback {
  display: block;
  text-align: center;
  padding: 40px 24px;
  color: var(--fg-1);
}
.cal-card .cal-mascot {
  position: absolute;
  top: -38px;
  right: 20px;
  width: 72px;
  height: 72px;
  object-fit: contain;
  z-index: 2;
  pointer-events: none;
  filter: drop-shadow(0 0 18px rgba(168,204,126,0.55));
}
@media (max-width: 480px) {
  .cal-card .cal-mascot { width: 58px; height: 58px; top: -28px; right: 14px; }
}

.tp-card {
  display: flex; align-items: center; justify-content: center;
  gap: 10px; flex-wrap: wrap;
  padding: 22px 24px;
  text-align: center;
}
.tp-card .trustpilot { margin: 0; }

[data-reveal] {
  opacity: 1;
  transform: translateY(12px);
  transition: transform 460ms var(--ease-out);
}
[data-reveal].in { transform: none; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { transform: none !important; transition: none !important; }
  .cta, .cta .shine { animation: none !important; }
}

@media (min-width: 640px) {
  .funnel { padding-top: 40px; gap: 32px; }
  .card { padding: 36px 32px; }
  .hero .sub { font-size: 16px; }
  .player .vcaption span { font-size: 18px; }
}

.lgl-overlay {
  position: fixed; inset: 0;
  z-index: 1000;
  background: rgba(5,7,5,0.7);
  -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px);
  display: flex; align-items: flex-start; justify-content: center;
  padding: 24px 16px;
  overflow-y: auto;
  opacity: 0; pointer-events: none;
  transition: opacity 200ms var(--ease-out);
}
.lgl-overlay.open { opacity: 1; pointer-events: auto; }
.lgl-modal {
  position: relative;
  width: 100%; max-width: 680px;
  margin: auto;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(168,204,126,0.18);
  background: linear-gradient(180deg, #121611 0%, #0D0F0D 100%);
  box-shadow: 0 40px 100px rgba(0,0,0,0.6);
  transform: translateY(12px) scale(0.99);
  transition: transform 220ms var(--ease-out);
  display: flex; flex-direction: column;
  max-height: calc(100vh - 48px);
  overflow: hidden;
}
.lgl-overlay.open .lgl-modal { transform: none; }
.lgl-head { padding: 26px 28px 4px; position: relative; }
.lgl-eyebrow {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent);
}
.lgl-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 6vw, 38px);
  letter-spacing: -0.015em;
  color: var(--fg);
  margin: 8px 0 0;
}
.lgl-close {
  position: absolute; top: 22px; right: 22px;
  width: 38px; height: 38px;
  border-radius: 999px;
  border: 0;
  background: var(--surface-2);
  color: var(--fg-2);
  display: grid; place-items: center;
  cursor: pointer;
  transition: background var(--dur-base) var(--ease-out), color var(--dur-base) var(--ease-out);
}
.lgl-close:hover { background: var(--surface-3); color: var(--fg); }
.lgl-close svg { width: 16px; height: 16px; }
.lgl-body {
  padding: 18px 28px 8px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.lgl-body .intro {
  color: var(--fg-2);
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 8px;
}
.lgl-body h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  color: var(--fg);
  margin: 22px 0 8px;
}
.lgl-body p {
  color: var(--fg-3);
  font-size: 14px;
  line-height: 1.65;
  margin: 0 0 8px;
}
.lgl-body ul { margin: 4px 0 8px; padding: 0; list-style: none; }
.lgl-body li {
  color: var(--fg-3);
  font-size: 14px;
  line-height: 1.6;
  padding-left: 18px;
  position: relative;
  margin-bottom: 7px;
}
.lgl-body li::before {
  content: ""; position: absolute; left: 2px; top: 9px;
  width: 5px; height: 5px; border-radius: 999px;
  background: var(--accent);
}
.lgl-body a { color: var(--accent); text-decoration: none; }
.lgl-body a:hover { text-decoration: underline; }
.lgl-foot {
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px;
  padding: 16px 28px 22px;
  border-top: 1px solid var(--border);
  margin-top: 8px;
}
.lgl-updated { color: var(--fg-4); font-size: 12px; }
.lgl-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 11px 22px;
  border-radius: var(--radius-pill);
  border: 0;
  background: var(--accent);
  color: var(--accent-ink);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  font-family: var(--font-body);
  transition: background var(--dur-base) var(--ease-out);
}
.lgl-btn:hover { background: var(--accent-hover); }
.lgl-btn.ghost {
  background: transparent;
  color: var(--fg);
  border: 1px solid var(--border-strong);
}
.lgl-btn.ghost:hover { background: var(--surface-2); }

.ck-row {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid var(--hairline);
}
.ck-row:first-of-type { border-top: 0; }
.ck-row .ck-info b {
  display: block;
  font-size: 15px; font-weight: 700; color: var(--fg);
  margin-bottom: 4px;
}
.ck-row .ck-info span { font-size: 13px; color: var(--fg-3); line-height: 1.5; }
.ck-toggle {
  flex-shrink: 0;
  width: 46px; height: 27px;
  border-radius: 999px;
  background: var(--surface-3);
  border: 0; padding: 0;
  position: relative; cursor: pointer;
  transition: background var(--dur-base) var(--ease-out);
}
.ck-toggle::after {
  content: ""; position: absolute; top: 3px; left: 3px;
  width: 21px; height: 21px; border-radius: 999px;
  background: #fff;
  transition: transform var(--dur-base) var(--ease-out);
}
.ck-toggle[aria-checked="true"] { background: var(--accent); }
.ck-toggle[aria-checked="true"]::after { transform: translateX(19px); }
.ck-toggle[disabled] { opacity: 0.7; cursor: not-allowed; }
.lgl-foot.cookie { justify-content: flex-end; }

@media (max-width: 560px) {
  .lgl-head { padding: 22px 20px 4px; }
  .lgl-body { padding: 16px 20px 8px; }
  .lgl-foot { padding: 14px 20px 18px; }
  .lgl-close { top: 18px; right: 18px; }
}
