/* ============================================================
   CERTIFIED LEADZ — shared design system
   Single visual world: navy field, gold stamp, condensed type.
   Deliberately single-theme; every color painted explicitly.
   ============================================================ */

:root {
  --ink:        #061425;
  --panel:      #0B1F3A;
  --panel-2:    #0E2747;
  --line:       #1B3A5F;
  --line-soft:  #142C49;
  --gold:       #C9A84C;
  --gold-lit:   #E3C26A;
  --paper:      #F2EFE8;
  --muted:      #93A9C4;
  --steel:      #6E8AAB;
  --dim:        #55708F;
  --rust:       #B4542A;

  --display: "Bebas Neue", "Haettenschweiler", "Arial Narrow", sans-serif;
  --cond:    "Barlow Condensed", "Arial Narrow", sans-serif;
  --body:    "Barlow", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono:    "IBM Plex Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;

  --gut: clamp(20px, 5vw, 72px);
  --max: 1240px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
[hidden] { display: none !important; }
::selection { background: var(--gold); color: var(--ink); }
a { color: var(--gold-lit); }
:focus-visible { outline: 2px solid var(--gold-lit); outline-offset: 3px; }

.wrap {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--gut);
}

/* ---------------- type ---------------- */
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 20px;
}
.eyebrow::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.eyebrow.plain::after { display: none; }

h1, h2, h3, h4 { text-wrap: balance; margin: 0; }

.h-xl { font-family: var(--display); font-size: clamp(42px, 7.6vw, 96px); line-height: 0.92; letter-spacing: 0.005em; }
.h-lg { font-family: var(--display); font-size: clamp(32px, 5.2vw, 58px); line-height: 0.96; }
.h-md { font-family: var(--cond); font-weight: 700; font-size: clamp(21px, 2.5vw, 29px); line-height: 1.14; letter-spacing: 0.01em; }
.h-sm { font-family: var(--cond); font-weight: 700; font-size: 20px; line-height: 1.2; letter-spacing: 0.02em; }

.lede { font-size: clamp(17px, 1.5vw, 20px); line-height: 1.55; color: var(--muted); max-width: 62ch; }
.lede.tight { max-width: 52ch; }

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

section { padding-block: clamp(60px, 7.5vw, 112px); }
.band { background: var(--panel); border-block: 1px solid var(--line-soft); }

/* ---------------- top bar ---------------- */
header.bar {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(6, 20, 37, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-soft);
}
.bar-in { display: flex; align-items: center; justify-content: space-between; gap: 18px; min-height: 66px; }
.mark { display: flex; align-items: center; gap: 11px; text-decoration: none; color: var(--paper); flex: 0 0 auto; }
.mark img { width: 34px; height: 34px; flex: 0 0 auto; }
.mark .word { display: flex; align-items: baseline; gap: 8px; }
.mark b { font-family: var(--display); font-size: 26px; letter-spacing: 0.04em; line-height: 1; }
.mark i { font-family: var(--mono); font-style: normal; font-size: 10px; letter-spacing: 0.2em; color: var(--gold); }
@media (max-width: 420px) {
  .mark b { font-size: 21px; }
  .mark i { display: none; }
  .mark img { width: 28px; height: 28px; }
}

.nav { display: flex; align-items: center; gap: 26px; }
.nav a {
  font-family: var(--cond);
  font-weight: 600;
  font-size: 15.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  white-space: nowrap;
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--gold-lit); }

.burger {
  display: none;
  background: none;
  border: 1px solid var(--line);
  color: var(--paper);
  font-family: var(--cond);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 9px 14px;
  cursor: pointer;
}
#mobnav { display: none; border-top: 1px solid var(--line-soft); background: var(--panel); }
#mobnav.open { display: block; }
#mobnav a {
  display: block;
  padding: 14px var(--gut);
  border-bottom: 1px solid var(--line-soft);
  font-family: var(--cond);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--paper);
  text-decoration: none;
}

/* ---------------- buttons ---------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--cond);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 26px;
  border: 1px solid var(--gold);
  background: var(--gold);
  color: var(--ink);
  cursor: pointer;
  transition: background .16s ease, color .16s ease, transform .12s ease;
}
.btn:hover { background: var(--gold-lit); border-color: var(--gold-lit); color: var(--ink); }
.btn:active { transform: translateY(1px); }
.btn.ghost { background: transparent; color: var(--paper); border-color: var(--line); }
.btn.ghost:hover { border-color: var(--gold); color: var(--gold-lit); background: transparent; }
.btn.sm { padding: 11px 18px; font-size: 15px; }
.cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }

/* ---------------- hero ---------------- */
.hero {
  position: relative;
  padding-block: clamp(48px, 6.5vw, 88px) clamp(38px, 5vw, 60px);
  border-bottom: 1px solid var(--line-soft);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--line-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-soft) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: .5;
  mask-image: radial-gradient(120% 90% at 78% 12%, #000 0%, transparent 72%);
  -webkit-mask-image: radial-gradient(120% 90% at 78% 12%, #000 0%, transparent 72%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(30px, 4vw, 60px);
  align-items: start;
}
.hero h1 { margin-bottom: 22px; }
.hero h1 em { font-style: normal; color: var(--gold); }
.hero.center { text-align: center; }
.hero.center .hero-solo { position: relative; max-width: 940px; margin-inline: auto; }
.hero.center .lede { margin-inline: auto; }
.hero.center .cta-row { justify-content: center; }
.hero.center .eyebrow { justify-content: center; }
.hero.center .eyebrow::after { display: none; }

/* ---------------- credential strip ---------------- */
.creds {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 0;
  margin-top: 38px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
.creds div { flex: 1 1 124px; padding-right: 16px; }
.creds b {
  display: block;
  font-family: var(--display);
  font-size: 30px;
  line-height: 1;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
}
.creds span {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel);
  display: block;
  margin-top: 7px;
}
.hero.center .creds { justify-content: center; max-width: 760px; margin-inline: auto; }
.hero.center .creds div { text-align: center; padding-right: 0; }

/* ---------------- media slots ---------------- */
.reel { border: 1px solid var(--line); background: var(--panel); }
.reel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--steel);
}
.reel-head .dot { width: 7px; height: 7px; background: var(--gold); display: inline-block; margin-right: 8px; }
.reel-body {
  aspect-ratio: 16 / 9;
  max-width: 100%;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 26px;
  background: repeating-linear-gradient(135deg, var(--panel-2) 0 14px, var(--panel) 14px 28px);
}
.reel-body p {
  font-family: var(--cond);
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--steel);
  font-size: 16px;
  max-width: 34ch;
  margin-inline: auto;
}
.reel-body iframe, .reel-body video { width: 100%; height: 100%; border: 0; display: block; }
.slot-tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--gold);
  padding: 4px 9px;
  margin-bottom: 14px;
}

/* ---------------- offering cards (home) ---------------- */
.offers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(268px, 1fr));
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
  margin-top: 8px;
}
.offer {
  background: var(--ink);
  padding: clamp(26px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 13px;
  text-decoration: none;
  color: inherit;
  transition: background .16s ease;
}
.offer:hover { background: var(--panel); }
.offer .kicker { font-family: var(--mono); font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); }
.offer h3 { font-family: var(--cond); font-weight: 700; font-size: 23px; letter-spacing: 0.01em; color: var(--paper); }
.offer p { color: var(--muted); font-size: 15.5px; line-height: 1.55; }
.offer .go {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line-soft);
  font-family: var(--cond);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-lit);
}
.offer.flag { background: var(--panel); }
.offer.flag:hover { background: var(--panel-2); }
.flagtag {
  align-self: flex-start;
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--ink);
  padding: 3px 8px;
}

/* ---------------- spec rows ---------------- */
.scope { display: grid; gap: 0; margin-top: 8px; }
.row {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) minmax(0, 1.25fr);
  gap: clamp(16px, 3vw, 44px);
  align-items: start;
  padding-block: 28px;
  border-top: 1px solid var(--line-soft);
}
.row:last-child { border-bottom: 1px solid var(--line-soft); }
.row .idx { font-family: var(--mono); font-size: 11px; color: var(--gold); padding-top: 6px; letter-spacing: 0.08em; }
.row p { color: var(--muted); max-width: 58ch; }
.tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 14px; }
.tags span {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steel);
  border: 1px solid var(--line);
  padding: 4px 8px;
}

/* ---------------- numbered sequence ---------------- */
.seq { display: grid; gap: 0; margin-top: 8px; }
.step {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: clamp(16px, 3vw, 36px);
  padding-block: 26px;
  border-top: 1px solid var(--line-soft);
  align-items: start;
}
.step:last-child { border-bottom: 1px solid var(--line-soft); }
.step .n { font-family: var(--display); font-size: 44px; line-height: .9; color: var(--line); font-variant-numeric: tabular-nums; }
.step h3 { font-family: var(--cond); font-weight: 700; font-size: 22px; margin-bottom: 8px; }
.step p { color: var(--muted); max-width: 62ch; }

/* ---------------- proof / reviews ---------------- */
.reviews { display: grid; grid-template-columns: repeat(auto-fit, minmax(258px, 1fr)); gap: 18px; margin-top: 8px; }
.review { border: 1px dashed var(--line); padding: 24px; display: flex; flex-direction: column; gap: 13px; min-height: 178px; }
.stars { color: var(--gold); letter-spacing: 3px; font-size: 15px; }
.review p { color: var(--steel); font-size: 15.5px; font-style: italic; }
.review .who {
  margin-top: auto;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steel);
}

/* ---------------- video reels (vertical / Shorts) ---------------- */
.video { border: 1px solid var(--line); background: var(--panel); display: flex; flex-direction: column; }
.video .frame {
  position: relative;
  aspect-ratio: 9 / 16;
  max-width: 100%;
  background: #000;
  overflow: hidden;
}
.video .frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; }
.video .poster {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 16px;
  text-decoration: none;
  text-align: center;
  padding: 24px;
  background: repeating-linear-gradient(135deg, var(--panel-2) 0 14px, var(--panel) 14px 28px);
}
.video .poster span {
  font-family: var(--cond);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.04em;
  color: var(--muted);
  max-width: 26ch;
}
.play {
  width: 66px;
  height: 66px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(201, 168, 76, 0.1);
  transition: background .16s ease;
}
.video .poster:hover .play { background: var(--gold); }
.play::after {
  content: "";
  width: 0; height: 0;
  margin-left: 5px;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 18px solid var(--gold);
}
.video .poster:hover .play::after { border-left-color: var(--ink); }

.reelstrip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
  margin-top: 8px;
}
.hero-grid.vertical { grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.65fr); }
.hero-grid.vertical .video { max-width: 360px; margin-left: auto; }
@media (max-width: 900px) {
  .hero-grid.vertical { grid-template-columns: minmax(0, 1fr); }
  .hero-grid.vertical .video { max-width: 320px; margin-left: 0; }
}

/* ---------------- google rating badge ---------------- */
.rating {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--line);
  padding: 12px 18px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
.rating .score {
  font-family: var(--display);
  font-size: 34px;
  line-height: 1;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
}
.rating .meta {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--steel);
  line-height: 1.7;
}
.rating .stars { font-size: 17px; }

.review.real { border-style: solid; border-color: var(--line); background: var(--ink); }
.review.real p { font-style: normal; color: var(--paper); font-size: 16px; line-height: 1.55; }
.review.real .who { color: var(--gold); }

/* ---------------- before / after ---------------- */
.compare {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 8px;
}
.shot { border: 1px solid var(--line); background: var(--panel); display: flex; flex-direction: column; }
.shot .reel-head { flex: 0 0 auto; }
.shot .frame { background: var(--ink); overflow: hidden; }
.shot .frame img { width: 100%; display: block; }
.shot .caption {
  padding: 16px 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}
.shot .frame.empty {
  aspect-ratio: 16 / 11;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 26px;
  background: repeating-linear-gradient(135deg, var(--panel-2) 0 14px, var(--panel) 14px 28px);
}
.shot .frame.empty p { font-family: var(--cond); font-weight: 600; color: var(--steel); font-size: 15px; max-width: 30ch; margin-inline: auto; }

/* ---------------- fit columns ---------------- */
.fit-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(276px, 1fr)); gap: 22px; margin-top: 8px; }
.fit { border-top: 2px solid var(--gold); padding-top: 20px; }
.fit.no { border-top-color: var(--rust); }
.fit h3 { font-family: var(--cond); font-weight: 700; font-size: 19px; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 14px; }
.fit ul { margin: 0; padding-left: 18px; color: var(--muted); }
.fit li { margin-bottom: 9px; }

/* ---------------- FAQ ---------------- */
.faq { margin-top: 8px; border-top: 1px solid var(--line-soft); }
.faq details { border-bottom: 1px solid var(--line-soft); }
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 40px 22px 0;
  position: relative;
  font-family: var(--cond);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.02em;
  color: var(--paper);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--display);
  font-size: 28px;
  color: var(--gold);
  line-height: 1;
}
.faq details[open] summary::after { content: "–"; }
.faq .ans { padding: 0 0 24px; color: var(--muted); max-width: 72ch; }

/* ---------------- contact ---------------- */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(30px, 4vw, 68px);
  align-items: start;
}
.direct { margin-top: 28px; display: grid; gap: 15px; }
.direct a {
  display: flex;
  align-items: baseline;
  gap: 14px;
  text-decoration: none;
  color: var(--paper);
  border-bottom: 1px solid var(--line);
  padding-bottom: 13px;
}
.direct a:hover { color: var(--gold-lit); }
.direct .lbl { font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--steel); min-width: 62px; }
.direct .val { font-family: var(--cond); font-weight: 600; font-size: 21px; letter-spacing: 0.02em; }

form { display: grid; gap: 14px; }
.field { display: grid; gap: 7px; }
.pair { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
label { font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--steel); }
input, select, textarea {
  font-family: var(--body);
  font-size: 16px;
  color: var(--paper);
  background: var(--ink);
  border: 1px solid var(--line);
  padding: 12px 13px;
  width: 100%;
  border-radius: 0;
}
input::placeholder, textarea::placeholder { color: var(--dim); }
select { appearance: none; }
textarea { resize: vertical; min-height: 92px; }
.form-note { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.05em; color: var(--steel); line-height: 1.7; }
.sent {
  border: 1px solid var(--gold);
  padding: 15px;
  color: var(--gold-lit);
  font-family: var(--cond);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 0.03em;
}

/* ---------------- footer title block ---------------- */
footer { border-top: 1px solid var(--line); padding-block: 32px 44px; }
.titleblock { display: grid; grid-template-columns: repeat(auto-fit, minmax(168px, 1fr)); border: 1px solid var(--line); }
.tb { padding: 15px 18px; border-right: 1px solid var(--line); }
.tb:last-child { border-right: none; }
.tb span { display: block; font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--steel); margin-bottom: 7px; }
.tb b { font-family: var(--cond); font-weight: 600; font-size: 16px; letter-spacing: 0.02em; color: var(--paper); }
.footlinks { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 22px; }
.footlinks a {
  font-family: var(--cond);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
}
.footlinks a:hover { color: var(--gold-lit); }
.fine { margin-top: 20px; font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.04em; color: var(--steel); line-height: 1.8; }


/* ---------------- footer sitemap ---------------- */
.sitemap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 26px 30px;
  margin-top: 30px;
  padding-top: 26px;
  border-top: 1px solid var(--line-soft);
}
.sitemap > div { display: flex; flex-direction: column; gap: 9px; }
.sitemap span {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2px;
}
.sitemap a {
  font-family: var(--cond);
  font-weight: 600;
  font-size: 15.5px;
  letter-spacing: 0.03em;
  color: var(--muted);
  text-decoration: none;
  line-height: 1.3;
}
.sitemap a:hover { color: var(--paper); }


/* ---------------- header fit fixes ---------------- */
.btn { white-space: nowrap; }
@media (max-width: 1000px) { .bar-in > .btn { font-size: 14px; padding: 10px 14px; } }
@media (max-width: 600px)  { .bar-in > .btn { display: none; } }


/* ---------------- site assistant ---------------- */
#cl-assistant { position: fixed; right: 20px; bottom: 20px; z-index: 90; font-family: var(--body); }

.cl-launch {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gold); color: var(--ink);
  border: 1px solid var(--gold);
  font-family: var(--cond); font-weight: 700; font-size: 16px;
  letter-spacing: 0.07em; text-transform: uppercase;
  padding: 13px 20px; cursor: pointer;
  box-shadow: 0 10px 30px rgba(0,0,0,.45);
  transition: background .16s ease, transform .12s ease;
}
.cl-launch:hover { background: var(--gold-lit); }
.cl-launch:active { transform: translateY(1px); }
.cl-launch-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--ink);
  animation: cl-pulse 2.4s ease-in-out infinite;
}
@keyframes cl-pulse { 0%,100% { opacity: 1; } 50% { opacity: .25; } }
#cl-assistant.cl-open .cl-launch { display: none; }

.cl-panel {
  width: min(380px, calc(100vw - 32px));
  height: min(560px, calc(100vh - 100px));
  display: flex; flex-direction: column;
  background: var(--ink);
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px rgba(0,0,0,.6);
}
.cl-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 14px; border-bottom: 1px solid var(--line);
  background: var(--panel);
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--steel);
}
.cl-dot { display: inline-block; width: 7px; height: 7px; background: var(--gold); margin-right: 8px; }
.cl-close {
  background: none; border: 0; color: var(--steel);
  font-size: 15px; cursor: pointer; padding: 2px 4px; line-height: 1;
}
.cl-close:hover { color: var(--paper); }

.cl-log { flex: 1 1 auto; overflow-y: auto; padding: 16px 14px; display: flex; flex-direction: column; gap: 10px; }
.cl-msg { max-width: 88%; padding: 11px 13px; font-size: 15px; line-height: 1.5; }
.cl-bot { background: var(--panel); border: 1px solid var(--line-soft); color: var(--paper); align-self: flex-start; }
.cl-me  { background: var(--gold); color: var(--ink); align-self: flex-end; font-weight: 500; }
.cl-typing { display: flex; gap: 5px; align-items: center; min-height: 40px; }
.cl-typing span { width: 6px; height: 6px; border-radius: 50%; background: var(--steel); animation: cl-blink 1.2s infinite; }
.cl-typing span:nth-child(2) { animation-delay: .18s; }
.cl-typing span:nth-child(3) { animation-delay: .36s; }
@keyframes cl-blink { 0%,60%,100% { opacity: .25; } 30% { opacity: 1; } }

.cl-link {
  align-self: flex-start;
  font-family: var(--cond); font-weight: 700; font-size: 15px;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--gold-lit); text-decoration: none;
  border-bottom: 1px solid var(--line); padding-bottom: 3px;
}
.cl-link:hover { color: var(--paper); border-color: var(--gold); }

.cl-chips { display: flex; flex-wrap: wrap; gap: 7px; padding: 0 14px 12px; }
.cl-chip {
  background: transparent; color: var(--paper);
  border: 1px solid var(--line); cursor: pointer;
  font-family: var(--cond); font-weight: 600; font-size: 14.5px;
  letter-spacing: 0.03em; padding: 8px 12px;
}
.cl-chip:hover { border-color: var(--gold); color: var(--gold-lit); }

.cl-capture { align-self: stretch; border: 1px solid var(--line); padding: 13px; background: var(--panel); }
.cl-cap-form { display: grid; gap: 9px; }
.cl-cap-form input {
  font-family: var(--body); font-size: 16px; color: var(--paper);
  background: var(--ink); border: 1px solid var(--line); padding: 10px 12px; width: 100%;
}
.cl-cap-form input[aria-invalid="true"] { border-color: var(--rust); }
.cl-cap-form button {
  font-family: var(--cond); font-weight: 700; font-size: 15px;
  letter-spacing: 0.07em; text-transform: uppercase;
  background: var(--gold); color: var(--ink); border: 0; padding: 11px; cursor: pointer;
}
.cl-cap-form button:disabled { opacity: .6; cursor: default; }
.cl-fine { font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.04em; color: var(--steel); line-height: 1.6; margin: 0; }

.cl-ask { display: flex; border-top: 1px solid var(--line); }
.cl-ask input {
  flex: 1 1 auto; background: var(--ink); border: 0; color: var(--paper);
  font-family: var(--body); font-size: 15px; padding: 13px 14px;
}
.cl-ask input::placeholder { color: var(--dim); }
.cl-ask button {
  background: none; border: 0; border-left: 1px solid var(--line);
  color: var(--gold); font-size: 19px; padding: 0 16px; cursor: pointer;
}
.cl-ask button:hover { color: var(--gold-lit); }

.cl-sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

@media (max-width: 520px) {
  #cl-assistant { right: 12px; bottom: 12px; left: 12px; }
  .cl-panel { width: 100%; height: min(520px, calc(100vh - 90px)); }
  .cl-launch { width: 100%; justify-content: center; }
}
@media (prefers-reduced-motion: reduce) {
  .cl-launch-dot, .cl-typing span { animation: none !important; }
}

/* ---------------- responsive ---------------- */
@media (max-width: 1000px) {
  .nav { display: none; }
  .burger { display: inline-block; }
}
@media (max-width: 900px) {
  .hero-grid, .contact-grid { grid-template-columns: minmax(0, 1fr); }
  .row { grid-template-columns: 26px minmax(0, 1fr); }
  .row .spec { grid-column: 2; }
}
@media (max-width: 720px) {
  .step { grid-template-columns: 50px minmax(0, 1fr); }
  .step .n { font-size: 32px; }
  .pair { grid-template-columns: 1fr; }
  .tb { border-right: none; border-bottom: 1px solid var(--line); }
  .tb:last-child { border-bottom: none; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}

/* ---------------- mobile overflow fix ----------------
   The footer email (xavier@certifiedleadz.com) is one unbreakable
   token. On a 390px phone it pushed the document to 422px, so every
   page scrolled sideways. Let long tokens break inside the block. */
.titleblock .tb b { overflow-wrap: anywhere; word-break: break-word; }
.titleblock .tb { min-width: 0; }


/* ---------------- inline reel + points ---------------- */
.vrow { display: flex; gap: 38px; align-items: center; flex-wrap: wrap; max-width: 700px; }
.vrow .video { flex: 0 0 258px; max-width: 258px; }
.vpoints { flex: 1 1 280px; list-style: none; margin: 0; padding: 0; min-width: 0; }
.vpoints li { position: relative; padding: 0 0 0 26px; margin-bottom: 16px;
  font-size: 17px; line-height: 1.5; color: rgba(255,255,255,.78); }
.vpoints li:last-child { margin-bottom: 0; }
.vpoints li::before { content: ""; position: absolute; left: 0; top: 10px;
  width: 9px; height: 9px; background: #C9A84C; transform: rotate(45deg); }
@media (max-width: 700px) {
  .vrow { gap: 26px; }
  .vrow .video { flex: 0 0 100%; max-width: 300px; }
}
