/* ==========================================================================
   Clause Monitoring blocks — Vamstar theme
   All selectors are cm- prefixed; sections carry .cm-sec for scoped vars.
   ========================================================================== */

.cm-sec {
  --cm-paper:  #E8E1D1;
  --cm-black:  #060606;
  --cm-panel:  #101010;
  --cm-ink:    #101010;
  --cm-chip:   #A3C4E4;
  --cm-chipink:#0E1B26;
  --cm-cyan:   #7EBEE3;
  --cm-deep:   #2C6B8A;
  --cm-grey:   rgba(16,16,16,0.55);
  --cm-line:   rgba(16,16,16,0.35);
  --cm-mono:   'SF Mono', ui-monospace, 'Cascadia Mono', Menlo, Consolas, monospace;
  font-size: 15px;
  line-height: 1.6;
  color: var(--cm-ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
.cm-sec, .cm-sec *, .cm-sec *::before, .cm-sec *::after { box-sizing: border-box; }
.cm-sec h1, .cm-sec h2, .cm-sec h3, .cm-sec p, .cm-sec ul { margin: 0; padding: 0; }
.cm-sec ul { list-style: none; }
.cm-sec button { font-family: inherit; }

.cm-wrap { max-width: 1480px; margin: 0 auto; padding: 0 clamp(20px, 4.5vw, 80px); }
.cm-anchor { position: relative; top: -80px; display: block; }

.cm-btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13.5px; font-weight: 600; padding: 13px 26px; border-radius: 4px;
  text-decoration: none; cursor: pointer; border: 1px solid transparent;
  transition: gap .2s ease, background .2s ease, color .2s ease;
}
.cm-btn:hover { gap: 16px; }
.cm-btn--light { background: #fff; color: var(--cm-black); }
.cm-btn--light:hover { background: var(--cm-cyan); color: var(--cm-black); }

.cm-reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s ease, transform .8s ease; }
.cm-reveal.in { opacity: 1; transform: none; }
.cm-is-preview .cm-reveal { opacity: 1; transform: none; }

/* ============ HERO ============ */
.cm-hero { position: relative; background: var(--cm-black); height: 92vh; min-height: 620px; overflow: hidden; }
.cm-is-preview.cm-hero { height: 620px; }
.cm-wave { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.cm-hero__bottom {
  position: absolute; left: 0; right: 0; bottom: 0;
  display: flex; align-items: flex-end; justify-content: space-between; gap: 60px;
  padding: 0 clamp(20px, 4.5vw, 80px) 56px;
}
.cm-hero__eyebrow { font-family: var(--cm-mono); font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--cm-cyan); margin-bottom: 20px; }
.cm-hero__title { color: #fff; font-size: clamp(44px, 6.2vw, 92px); font-weight: 600; letter-spacing: -0.03em; line-height: .98; }
/* Title block rides higher than the right column, so the CTA is the lowest element. */
.cm-hero__lead { padding-bottom: 180px; }
.cm-hero__side { display: flex; flex-direction: column; align-items: flex-start; gap: 28px; max-width: 420px; flex-shrink: 0; padding-bottom: 10px; }
.cm-hero__sub { color: rgba(255,255,255,0.66); font-size: 14px; line-height: 1.65; }
.cm-hero__sub strong { color: #fff; font-weight: 600; }

/* ============ REGISTER CONSOLE ============ */
.cm-console-band { background: var(--cm-black); padding: 0 0 110px; }
.cm-console-band .cm-wrap { display: flex; justify-content: center; }
.cm-console {
  max-width: 980px; width: 100%; margin: 0 auto;
  background: #0B0D10; border: 1px solid rgba(255,255,255,0.10); border-radius: 10px;
  box-shadow: 0 40px 90px rgba(0,0,0,0.55); overflow: hidden;
}
.cm-console__head { display: flex; align-items: center; justify-content: space-between; padding: 16px 24px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.cm-console__title { font-family: var(--cm-mono); font-size: 10.5px; letter-spacing: .24em; text-transform: uppercase; color: rgba(255,255,255,0.55); }
.cm-console__live { font-family: var(--cm-mono); font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: #4FC98A; display: flex; align-items: center; gap: 8px; }
.cm-console__live::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: #4FC98A; animation: cm-pulse 1.6s ease infinite; }
@keyframes cm-pulse { 0%,100% { opacity: 1; box-shadow: 0 0 0 0 rgba(79,201,138,.5); } 50% { opacity: .55; box-shadow: 0 0 0 6px rgba(79,201,138,0); } }
.cm-console__stats { display: grid; grid-template-columns: repeat(4, 1fr); border-bottom: 1px solid rgba(255,255,255,0.08); }
.cm-cstat { padding: 22px 24px; border-right: 1px solid rgba(255,255,255,0.08); }
.cm-cstat:last-child { border-right: 0; }
.cm-cstat__v { font-size: 26px; font-weight: 600; color: #fff; letter-spacing: -0.02em; font-variant-numeric: tabular-nums; }
.cm-cstat__v.accent { color: var(--cm-cyan); }
.cm-cstat__k { font-family: var(--cm-mono); font-size: 9.5px; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-top: 6px; }
.cm-console__body { display: grid; grid-template-columns: 1.15fr .85fr; min-height: 240px; }
.cm-feed { padding: 18px 24px; border-right: 1px solid rgba(255,255,255,0.08); overflow: hidden; }
.cm-feed__label { font-family: var(--cm-mono); font-size: 9.5px; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 12px; }
.cm-feed__item {
  display: flex; justify-content: space-between; gap: 16px; align-items: baseline;
  padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 12.5px; animation: cm-slidein .5s ease;
}
@keyframes cm-slidein { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }
.cm-feed__item .e { color: rgba(255,255,255,0.85); }
.cm-feed__item .d { font-family: var(--cm-mono); font-size: 10.5px; color: rgba(255,255,255,0.35); white-space: nowrap; }
.cm-feed__item:nth-child(n+5) { opacity: .45; }
.cm-feed__item:nth-child(n+7) { opacity: .2; }
.cm-spark { padding: 18px 24px; display: flex; flex-direction: column; }
.cm-spark svg { flex: 1; width: 100%; }
.cm-console__note { padding: 12px 24px; border-top: 1px solid rgba(255,255,255,0.08); font-size: 10.5px; color: rgba(255,255,255,0.3); font-style: italic; }
.cm-spark-line { fill: none; stroke: var(--cm-cyan); stroke-width: 2; stroke-dasharray: 600; stroke-dashoffset: 600; }
.cm-console.in .cm-spark-line, .cm-is-preview .cm-spark-line { animation: cm-drawline 3s ease forwards .4s; }
.cm-spark-fill { fill: url(#cm-sparkgrad); opacity: 0; }
.cm-console.in .cm-spark-fill, .cm-is-preview .cm-spark-fill { animation: cm-fadein 1.2s ease forwards 2.4s; }
@keyframes cm-drawline { to { stroke-dashoffset: 0; } }
@keyframes cm-fadein { to { opacity: 1; } }

/* ============ CRUX ============ */
.cm-crux { background: var(--cm-black); color: #fff; padding: clamp(90px, 12vw, 170px) 0; position: relative; overflow: hidden; }
.cm-crux::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 55% 45% at 70% 30%, rgba(44,107,138,0.16), transparent 65%);
}
.cm-crux__inner { position: relative; }
.cm-crux__eyebrow { font-family: var(--cm-mono); font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--cm-cyan); margin-bottom: 26px; }
.cm-crux__title { font-size: clamp(34px, 4.4vw, 62px); font-weight: 600; letter-spacing: -0.028em; line-height: 1.04; max-width: 780px; color: #fff; }
.cm-crux__title em { font-style: normal; color: var(--cm-cyan); }
.cm-crux__lede { margin-top: 24px; max-width: 560px; color: rgba(255,255,255,0.6); font-size: 15px; }

.cm-divwrap { margin-top: 70px; display: grid; grid-template-columns: 1fr 300px; gap: 56px; align-items: center; }
.cm-divchart svg { width: 100%; height: auto; display: block; overflow: visible; }
.cm-axis { stroke: rgba(255,255,255,0.12); stroke-width: 1; }
.cm-tick { font-family: var(--cm-mono); font-size: 11px; fill: rgba(255,255,255,0.35); }
.cm-linecost { fill: none; stroke: var(--cm-cyan); stroke-width: 2.5; stroke-linecap: round; stroke-dasharray: 1000; stroke-dashoffset: 1000; }
.cm-lineprice { fill: none; stroke: rgba(232,225,209,0.75); stroke-width: 2; stroke-dasharray: 6 7; opacity: 0; }
.cm-gapfill { fill: url(#cm-gapgrad); opacity: 0; }
.cm-divchart.in .cm-linecost, .cm-is-preview .cm-linecost { transition: stroke-dashoffset 2.4s cubic-bezier(.4,0,.2,1); stroke-dashoffset: 0; }
.cm-divchart.in .cm-lineprice, .cm-is-preview .cm-lineprice { transition: opacity .8s ease .3s; opacity: 1; }
.cm-divchart.in .cm-gapfill, .cm-is-preview .cm-gapfill { transition: opacity 1.4s ease 1.6s; opacity: 1; }
.cm-cnote { opacity: 0; transform: translateY(6px); }
.cm-divchart.in .cm-cnote, .cm-is-preview .cm-cnote { transition: opacity .8s ease 2.2s, transform .8s ease 2.2s; opacity: 1; transform: none; }
.cm-lbl { font-family: var(--cm-mono); font-size: 11px; letter-spacing: .06em; }
.cm-lbl--cost  { fill: var(--cm-cyan); }
.cm-lbl--price { fill: rgba(232,225,209,0.8); }
.cm-lbl--gap   { fill: #fff; font-size: 13px; }
.cm-lbl--gapsub{ fill: rgba(255,255,255,0.45); font-size: 10.5px; }

.cm-bigstat { text-align: right; }
.cm-bigstat__v { font-size: clamp(56px, 6vw, 84px); font-weight: 600; letter-spacing: -0.035em; line-height: 1; color: var(--cm-cyan); font-variant-numeric: tabular-nums; }
.cm-bigstat__k { margin-top: 14px; font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.5; }
.cm-bigstat__k em { font-style: normal; font-family: var(--cm-mono); font-size: 10px; color: rgba(255,255,255,0.3); display: block; margin-top: 6px; letter-spacing: .08em; }

.cm-levers { margin-top: 90px; display: grid; grid-template-columns: 1fr 300px; gap: 56px; align-items: center; }
.cm-leverboard { display: flex; gap: 12px; flex-wrap: wrap; }
.cm-lever {
  width: 54px; height: 84px; border-radius: 27px;
  border: 1.5px solid rgba(255,255,255,0.18); position: relative; flex-shrink: 0;
  transition: border-color .5s ease, background .5s ease;
}
.cm-lever::after {
  content: ''; position: absolute; left: 50%; transform: translateX(-50%);
  width: 34px; height: 34px; border-radius: 50%;
  top: 42px; background: rgba(255,255,255,0.14);
  transition: top .55s cubic-bezier(.5,0,.3,1.4), background .55s ease, box-shadow .55s ease;
}
.cm-lever.on { border-color: var(--cm-cyan); background: rgba(126,190,227,0.08); }
.cm-lever.on::after { top: 8px; background: var(--cm-cyan); box-shadow: 0 0 18px rgba(126,190,227,0.55); }
.cm-lever.dead { border-color: rgba(232,225,209,0.22); }
.cm-lever.dead::after { background: rgba(232,225,209,0.16); animation: cm-deadpulse 2.6s ease infinite; }
@keyframes cm-deadpulse { 0%,100% { box-shadow: 0 0 0 0 rgba(232,225,209,0); } 50% { box-shadow: 0 0 0 8px rgba(232,225,209,0.06); } }
.cm-lever__tag {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  margin-top: 10px; font-family: var(--cm-mono); font-size: 8.5px; letter-spacing: .14em;
  color: rgba(232,225,209,0.4); text-transform: uppercase; white-space: nowrap;
}

.cm-payoff { margin-top: 110px; max-width: 860px; }
.cm-payoff__big { font-size: clamp(26px, 3.2vw, 44px); font-weight: 600; letter-spacing: -0.024em; line-height: 1.18; color: #fff; }
.cm-payoff__big .hl { color: var(--cm-cyan); }
.cm-payoff__law { margin-top: 26px; display: flex; gap: 16px; align-items: flex-start; max-width: 640px; }
.cm-payoff__law::before { content: ''; width: 2px; align-self: stretch; background: var(--cm-deep); flex-shrink: 0; }
.cm-payoff__law p { font-size: 14px; color: rgba(255,255,255,0.6); }
.cm-payoff__law p b { color: #fff; font-weight: 600; }
.cm-payoff__unpulled { margin-top: 30px; font-family: var(--cm-mono); font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: rgba(232,225,209,0.55); }
.cm-payoff__unpulled .blink { animation: cm-blink 2.4s step-end infinite; color: var(--cm-cyan); }
@keyframes cm-blink { 0%,60%,100% { opacity: 1; } 70%,90% { opacity: .2; } }

/* ============ MODULES ============ */
.cm-modules { background: var(--cm-paper); padding: clamp(70px, 9vw, 130px) 0 0; }
.cm-modintro { max-width: 640px; margin-bottom: 90px; }
.cm-modintro .k { font-family: var(--cm-mono); font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--cm-deep); margin-bottom: 18px; }
.cm-modintro h2 { font-size: clamp(26px, 3vw, 40px); font-weight: 600; letter-spacing: -0.022em; line-height: 1.15; color: var(--cm-ink); }
.cm-modintro p { margin-top: 16px; color: var(--cm-grey); font-size: 14.5px; max-width: 520px; }

.cm-modrow { display: grid; grid-template-columns: minmax(0, 400px) 1fr; gap: clamp(40px, 6vw, 110px); }
.cm-modleft { padding: 26px 0 90px; }
.cm-modlabel { display: flex; align-items: center; gap: 12px; font-family: var(--cm-mono); font-size: 17px; color: var(--cm-ink); }
.cm-modlabel .num { font-weight: 700; }
.cm-modlabel .dash { width: 22px; height: 1px; background: var(--cm-line); }
.cm-modlabel .br { color: var(--cm-grey); font-size: 20px; font-weight: 300; }
.cm-modlabel .verb { font-weight: 700; }
.cm-modlabel .verb::after { content: '\258D'; color: var(--cm-deep); animation: cm-blink 1.1s step-end infinite; font-weight: 400; }
.cm-modlabel.done .verb::after { content: ''; }
.cm-is-preview .cm-modlabel .verb::after { content: ''; }
.cm-modlabel .mod { color: var(--cm-grey); font-weight: 400; }
.cm-engine { margin-top: 12px; font-size: 13px; color: var(--cm-grey); }
.cm-modbody { margin-top: 22px; font-size: 13.5px; line-height: 1.75; color: rgba(16,16,16,0.75); max-width: 360px; }
.cm-modout { margin-top: 22px; font-family: var(--cm-mono); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--cm-deep); }
.cm-modout::before { content: '\21B3\00A0'; }

.cm-modflow { position: relative; }
.cm-modflow::before {
  content: ''; position: absolute; top: 0; bottom: 0; left: 50%; width: 1px; margin-left: -0.5px;
  background-image: repeating-linear-gradient(to bottom, rgba(16,16,16,0.35) 0 5px, transparent 5px 11px);
  animation: cm-flowdown 1.1s linear infinite;
}
@keyframes cm-flowdown { to { background-position-y: 11px; } }
.cm-modflow--end { align-self: start; }
.cm-fl { position: relative; }

.cm-chiprow { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.cm-chipcol { display: flex; flex-direction: column; align-items: stretch; }
.cm-chip {
  background: var(--cm-chip); color: var(--cm-chipink);
  border: 0; border-radius: 6px; padding: 13px 10px;
  font-size: 12.5px; font-weight: 600; letter-spacing: .01em;
  cursor: pointer; text-align: center;
  box-shadow: 0 1px 0 rgba(16,16,16,0.15);
  transition: transform .2s ease, box-shadow .2s ease;
}
.cm-chip:hover { transform: translateY(-1px); box-shadow: 0 4px 14px rgba(16,16,16,0.14); }
.cm-explore {
  margin-top: 8px; background: none; border: 0; cursor: pointer; font-family: var(--cm-mono);
  font-size: 9.5px; letter-spacing: .18em; text-transform: uppercase; color: rgba(16,16,16,0.6); text-align: left;
  display: inline-flex; align-items: center; gap: 6px; padding: 2px 0; width: fit-content;
}
.cm-explore::before { content: '\203A'; font-size: 12px; transition: transform .25s ease; display: inline-block; }
.cm-chipcol.open .cm-explore::before { transform: rotate(90deg); }
.cm-explore:hover { color: var(--cm-deep); }
.cm-panel { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.cm-panel__in { padding: 12px 2px 6px; font-size: 12px; line-height: 1.65; color: rgba(16,16,16,0.68); }
.cm-panel__in li { position: relative; padding-left: 13px; margin-bottom: 5px; }
.cm-panel__in li::before { content: ''; position: absolute; left: 0; top: 8px; width: 4px; height: 4px; border-radius: 50%; background: var(--cm-deep); }
.cm-chipcol.open .cm-panel { max-height: 340px; }

.cm-drop3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; height: 36px; background: var(--cm-paper); }
.cm-drop3 span { position: relative; display: block; }
.cm-drop3 span::before { content: ''; position: absolute; left: 50%; margin-left: -0.5px; top: 4px; bottom: 8px; width: 1px; background: rgba(16,16,16,0.4); }
.cm-drop3 span::after {
  content: ''; position: absolute; left: 50%; bottom: 2px; transform: translateX(-50%);
  border-left: 4px solid transparent; border-right: 4px solid transparent; border-top: 6px solid rgba(16,16,16,0.5);
}

.cm-procbar {
  background: var(--cm-panel); color: #fff; border-radius: 8px;
  padding: 15px 22px; text-align: center; font-size: 13.5px; font-weight: 600;
  box-shadow: 0 10px 26px rgba(16,16,16,0.18);
}
.cm-procbar span { color: var(--cm-cyan); }
.cm-spacer { height: 54px; }

.cm-offshoot { position: relative; height: 74px; }
.cm-offshoot .stub { position: absolute; top: 50%; left: 50%; height: 1.5px; background: rgba(16,16,16,0.4); }
.cm-offshoot .node { position: absolute; top: 50%; left: 50%; width: 7px; height: 7px; margin: -3.5px 0 0 -3.5px; border-radius: 50%; background: var(--cm-ink); }
.cm-outchip {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: var(--cm-chip); color: var(--cm-chipink); border-radius: 6px;
  padding: 11px 18px; font-size: 12px; font-weight: 600; white-space: nowrap;
  box-shadow: 0 1px 0 rgba(16,16,16,0.15);
}
.cm-offshoot--r .stub { width: 17%; }
.cm-offshoot--r .cm-outchip { left: calc(50% + 17%); }
.cm-offshoot--l .stub { right: 50%; left: auto; width: 17%; }
.cm-offshoot--l .cm-outchip { right: calc(50% + 17%); }
.cm-offshoot--tall { height: 96px; }
.cm-outchip small {
  display: block; margin-top: 4px; font-family: var(--cm-mono); font-weight: 400;
  font-size: 9px; letter-spacing: .14em; text-transform: uppercase; color: rgba(14,27,38,0.65);
}

.cm-sidein { position: relative; height: 64px; }
.cm-inchip {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: transparent; border: 1.5px dashed rgba(16,16,16,0.4); color: rgba(16,16,16,0.75);
  border-radius: 6px; padding: 9px 16px; font-size: 11.5px; font-weight: 600; white-space: nowrap;
}
.cm-sidein .stub { position: absolute; top: 50%; height: 1.5px; background: rgba(16,16,16,0.4); }
.cm-sidein .stub::after {
  content: ''; position: absolute; top: -4px;
  border-top: 4.5px solid transparent; border-bottom: 4.5px solid transparent;
}
.cm-sidein--r .cm-inchip { left: calc(50% + 92px); }
.cm-sidein--r .stub { left: calc(50% + 3px); width: 89px; }
.cm-sidein--r .stub::after { left: -1px; border-right: 7px solid rgba(16,16,16,0.5); }
.cm-sidein--out .cm-inchip { left: calc(50% + 92px); border-color: rgba(44,107,138,0.55); color: var(--cm-deep); }
.cm-sidein--out .stub {
  left: calc(50% + 3px); width: 89px; background: none;
  background-image: repeating-linear-gradient(to right, rgba(44,107,138,0.6) 0 5px, transparent 5px 10px);
}
.cm-sidein--out .stub::after { right: -1px; border-left: 7px solid rgba(44,107,138,0.7); }
.cm-sidein .node { position: absolute; top: 50%; left: 50%; width: 7px; height: 7px; margin: -3.5px 0 0 -3.5px; border-radius: 50%; background: var(--cm-ink); }

.cm-loop { position: relative; padding: 46px 0 0; }
.cm-loopfinal {
  position: relative; z-index: 1; margin: 0 auto; width: fit-content;
  background: var(--cm-panel); color: #fff; border-radius: 8px; padding: 15px 26px;
  font-size: 13px; font-weight: 600; text-align: center;
  box-shadow: 0 10px 26px rgba(16,16,16,0.2);
}
.cm-loopfinal span { color: var(--cm-cyan); }
.cm-endcap { position: relative; height: 46px; background: var(--cm-paper); }
.cm-endcap::before {
  content: ''; position: absolute; left: 50%; margin-left: -0.5px; top: 0; height: 14px; width: 1px;
  background-image: repeating-linear-gradient(to bottom, rgba(16,16,16,0.35) 0 5px, transparent 5px 11px);
}
.cm-endcap::after {
  content: ''; position: absolute; left: 50%; top: 14px; width: 9px; height: 9px;
  margin-left: -4.5px; border-radius: 50%; background: var(--cm-ink);
}

/* ============ GATE ============ */
.cm-gate { background: var(--cm-black); color: #fff; padding: clamp(80px, 10vw, 140px) 0; }
.cm-gate__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.cm-gate__k { font-family: var(--cm-mono); font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--cm-cyan); margin-bottom: 22px; }
.cm-gate h2 { font-size: clamp(28px, 3.4vw, 46px); font-weight: 600; letter-spacing: -0.024em; line-height: 1.1; color: #fff; }
.cm-gate p { margin-top: 18px; color: rgba(255,255,255,0.6); font-size: 14.5px; max-width: 460px; }
.cm-gate__form { display: flex; gap: 12px; }
.cm-gate__input {
  flex: 1; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.18);
  border-radius: 4px; padding: 14px 18px; color: #fff; font-family: inherit; font-size: 14px;
}
.cm-gate__input::placeholder { color: rgba(255,255,255,0.35); }
.cm-gate__fineprint { margin-top: 14px; font-size: 11px; color: rgba(255,255,255,0.3); }
/* Contact Form 7 inside the gate — dark-panel treatment.
   Lessons from the Tender demo modal: CF7's own labels/button text carry the
   icons and arrow; add NO background-image icons or arrows here. */
.cm-gate__cf7 form > p { margin: 0 0 18px; }
.cm-gate__cf7 label {
  display: block !important; font-family: var(--cm-mono) !important; font-size: 11px !important;
  font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,0.62) !important; margin-bottom: 8px; opacity: 1 !important;
}
.cm-gate__cf7 .wpcf7-form-control-wrap { display: block; }
/* Hard overrides (!important): the theme ships its own site-wide CF7 skin —
   white email fields with icon background-images, dark text and dark
   placeholders — which is invisible/wrong on the dark gate panel. */
.cm-gate__cf7 .wpcf7-form-control:not([type="submit"]):not([type="checkbox"]):not([type="radio"]) {
  -webkit-appearance: none; appearance: none;
  background: rgba(255,255,255,0.06) !important;
  background-image: none !important;
  border: 1px solid rgba(255,255,255,0.18) !important;
  border-radius: 4px !important;
  box-shadow: none !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  caret-color: #fff !important;
  width: 100% !important;
  padding: 13px 16px !important;
  font-size: 14px !important;
  font-family: inherit !important;
  transition: border-color .2s ease;
}
.cm-gate__cf7 input:-webkit-autofill,
.cm-gate__cf7 input:-webkit-autofill:hover,
.cm-gate__cf7 input:-webkit-autofill:focus {
  -webkit-text-fill-color: #fff !important;
  -webkit-box-shadow: 0 0 0 1000px #16181c inset !important;
  transition: background-color 9999s ease-in-out 0s;
}
.cm-gate__cf7 .wpcf7-form-control:not([type="submit"]):focus {
  outline: none !important; border-color: var(--cm-cyan) !important;
}
.cm-gate__cf7 input::placeholder, .cm-gate__cf7 textarea::placeholder {
  color: rgba(255,255,255,0.5) !important;
  -webkit-text-fill-color: rgba(255,255,255,0.5) !important;
  opacity: 1 !important;
}
.cm-gate__cf7 input::-webkit-input-placeholder, .cm-gate__cf7 textarea::-webkit-input-placeholder {
  color: rgba(255,255,255,0.5) !important;
  -webkit-text-fill-color: rgba(255,255,255,0.5) !important;
  opacity: 1 !important;
}
.cm-gate__cf7 textarea { min-height: 110px; resize: vertical; }
.cm-gate__cf7 select option { color: var(--cm-black); }
.cm-gate__cf7 .wpcf7-acceptance label {
  font-family: inherit; font-size: 12px; font-weight: 400; letter-spacing: 0;
  text-transform: none; color: rgba(255,255,255,0.55);
}
.cm-gate__cf7 input[type="submit"], .cm-gate__cf7 button[type="submit"] {
  width: 100% !important; background: #fff !important; background-image: none !important;
  color: var(--cm-black) !important; border: 0 !important; border-radius: 4px !important;
  padding: 15px 24px !important; font-size: 13.5px !important; font-weight: 600; cursor: pointer;
  font-family: inherit !important; transition: background .2s ease, box-shadow .2s ease;
}
.cm-gate__cf7 input[type="submit"]:hover, .cm-gate__cf7 button[type="submit"]:hover {
  background: var(--cm-cyan) !important; box-shadow: 0 0 24px rgba(126,190,227,0.35);
}
.cm-gate__cf7 .wpcf7-spinner { display: block; margin: 10px auto 0; }
.cm-gate__cf7 .wpcf7-not-valid-tip { color: #E8A0A0; font-size: 11.5px; margin-top: 6px; }
.cm-gate__cf7 .wpcf7-response-output {
  margin: 18px 0 0; padding: 12px 16px; border: 1px solid rgba(255,255,255,0.25) !important;
  border-radius: 4px; color: rgba(255,255,255,0.75); font-size: 12.5px;
}

/* ============ CROSS-SELL ============ */
.cm-xsell { background: var(--cm-paper); padding: clamp(80px, 10vw, 140px) 0; }
.cm-xsell__intro { max-width: 700px; margin-bottom: 60px; }
.cm-xsell__intro .k { font-family: var(--cm-mono); font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--cm-deep); margin-bottom: 18px; }
.cm-xsell__intro h2 { font-size: clamp(24px, 2.8vw, 36px); font-weight: 600; letter-spacing: -0.02em; line-height: 1.2; color: var(--cm-ink); }
.cm-xsell__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.cm-xcard { background: rgba(255,255,255,0.55); border: 1px solid rgba(16,16,16,0.1); border-radius: 8px; padding: 40px 36px; transition: transform .3s ease, box-shadow .3s ease; }
.cm-xcard:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(16,16,16,0.1); }
.cm-xcard .tag { font-family: var(--cm-mono); font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--cm-deep); margin-bottom: 16px; }
.cm-xcard h3 { font-size: 20px; font-weight: 600; letter-spacing: -0.015em; margin-bottom: 12px; color: var(--cm-ink); }
.cm-xcard p { font-size: 13.5px; line-height: 1.7; color: var(--cm-grey); margin-bottom: 22px; }
.cm-xcard a { font-size: 12.5px; font-weight: 600; color: var(--cm-ink); text-decoration: none; border-bottom: 1px solid var(--cm-ink); padding-bottom: 2px; }
.cm-xcard a:hover { color: var(--cm-deep); border-color: var(--cm-deep); }

/* ============ OUTCOME ============ */
/* Centering is done with a flex column on the wrap, NOT auto margins —
   the theme's global p/heading margin rules override margin:auto and
   leave each element on its own alignment. */
.cm-outcome { background: var(--cm-black); color: #fff; padding: clamp(90px, 11vw, 160px) 0; }
.cm-outcome .cm-wrap { display: flex; flex-direction: column; align-items: center; }
.cm-outcome__k { font-family: var(--cm-mono); font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--cm-cyan); margin: 0 0 30px; text-align: center; }
.cm-sec .cm-outcome__big { text-align: center; font-size: clamp(24px, 2.9vw, 40px); font-weight: 600; letter-spacing: -0.022em; line-height: 1.25; max-width: 900px; width: 100%; margin: 0; color: #fff; }
.cm-outcome__big em { font-style: normal; color: var(--cm-cyan); }
.cm-capture { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; max-width: 760px; width: 100%; margin: 64px 0 0; align-items: end; }
.cm-cap { text-align: center; }
.cm-cap__barwrap { height: 150px; display: flex; align-items: flex-end; justify-content: center; margin-bottom: 18px; }
.cm-cap__bar { width: 74px; background: linear-gradient(to top, var(--cm-deep), var(--cm-cyan)); border-radius: 4px 4px 0 0; height: 0; transition: height 1.6s cubic-bezier(.4,0,.2,1); }
.cm-capture.in .cm-cap:nth-child(1) .cm-cap__bar, .cm-is-preview .cm-cap:nth-child(1) .cm-cap__bar { height: 33%; transition-delay: .1s; }
.cm-capture.in .cm-cap:nth-child(2) .cm-cap__bar, .cm-is-preview .cm-cap:nth-child(2) .cm-cap__bar { height: 66%; transition-delay: .3s; }
.cm-capture.in .cm-cap:nth-child(3) .cm-cap__bar, .cm-is-preview .cm-cap:nth-child(3) .cm-cap__bar { height: 100%; transition-delay: .5s; }
.cm-cap__v { font-size: 30px; font-weight: 600; letter-spacing: -0.02em; font-variant-numeric: tabular-nums; }
.cm-cap__k { font-family: var(--cm-mono); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-top: 8px; }
.cm-sec .cm-outcome__caveat { text-align: center; margin: 44px 0 0; font-size: 12px; color: rgba(255,255,255,0.4); max-width: 640px; width: 100%; }
.cm-outcome__cta { text-align: center; margin: 44px 0 0; }

/* ============ WHY ============ */
.cm-why { background: var(--cm-paper); padding: clamp(80px, 10vw, 130px) 0; }
.cm-why .k { font-family: var(--cm-mono); font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--cm-deep); margin-bottom: 50px; }
.cm-why__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.cm-why__num { font-family: var(--cm-mono); font-size: 12px; font-weight: 700; color: var(--cm-deep); margin-bottom: 16px; }
.cm-why__h { font-size: 19px; font-weight: 600; letter-spacing: -0.014em; margin-bottom: 10px; color: var(--cm-ink); }
.cm-why__b { font-size: 13.5px; line-height: 1.7; color: var(--cm-grey); }

/* ============ FAQ ============ */
.cm-faq { background: #F2EDE1; padding: clamp(80px, 10vw, 130px) 0; }
.cm-faq h2 { font-size: clamp(26px, 3vw, 40px); font-weight: 600; letter-spacing: -0.022em; color: var(--cm-ink); }
.cm-faq__list { max-width: 880px; margin-top: 40px; }
.cm-faq__item { border-bottom: 1px solid rgba(16,16,16,0.14); }
.cm-faq__q {
  width: 100%; background: none; border: 0; cursor: pointer; text-align: left;
  padding: 24px 44px 24px 0; font-size: 16px; font-weight: 600;
  color: var(--cm-ink); position: relative; letter-spacing: -0.01em;
}
.cm-faq__q::after {
  content: '+'; position: absolute; right: 6px; top: 50%; transform: translateY(-50%);
  font-size: 22px; font-weight: 300; color: var(--cm-deep); transition: transform .25s ease;
}
.cm-faq__item.open .cm-faq__q::after { transform: translateY(-50%) rotate(45deg); }
.cm-faq__a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.cm-faq__item.open .cm-faq__a { max-height: 520px; }
.cm-faq__a-inner { padding: 0 0 26px; font-size: 14px; line-height: 1.75; color: rgba(16,16,16,0.7); max-width: 780px; }

/* ============ INSIGHTS ============ */
.cm-insights { background: var(--cm-paper); padding: clamp(70px, 9vw, 120px) 0 clamp(80px, 10vw, 140px); }
.cm-insights h2 { font-size: clamp(26px, 3vw, 40px); font-weight: 600; letter-spacing: -0.022em; color: var(--cm-ink); }
.cm-insights__sub { margin-top: 12px; color: var(--cm-grey); font-size: 14px; max-width: 540px; }
.cm-insights__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 44px; }
.cm-insight { display: block; background: rgba(255,255,255,0.5); border: 1px solid rgba(16,16,16,0.1); border-radius: 8px; padding: 28px 24px; text-decoration: none; color: var(--cm-ink); transition: transform .3s ease, box-shadow .3s ease; }
.cm-insight:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(16,16,16,0.1); }
.cm-insight--feat { background: var(--cm-black); color: #fff; }
.cm-insight .kind { font-family: var(--cm-mono); font-size: 9.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--cm-deep); margin-bottom: 14px; }
.cm-insight--feat .kind { color: var(--cm-cyan); }
.cm-insight h3 { font-size: 15.5px; font-weight: 600; line-height: 1.35; letter-spacing: -0.01em; margin-bottom: 10px; color: inherit; }
.cm-insight p { font-size: 12.5px; line-height: 1.6; color: var(--cm-grey); }
.cm-insight--feat p { color: rgba(255,255,255,0.55); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1060px) {
  .cm-modrow { grid-template-columns: 1fr; }
  .cm-divwrap, .cm-levers { grid-template-columns: 1fr; gap: 40px; }
  .cm-bigstat { text-align: left; }
  .cm-gate__grid { grid-template-columns: 1fr; gap: 40px; }
  .cm-xsell__grid { grid-template-columns: 1fr; }
  .cm-why__grid { grid-template-columns: 1fr; gap: 32px; }
  .cm-insights__grid { grid-template-columns: 1fr 1fr; }
  .cm-console__body { grid-template-columns: 1fr; }
  .cm-spark { display: none; }
  .cm-console__stats { grid-template-columns: 1fr 1fr; }
  .cm-cstat:nth-child(2) { border-right: 0; }
  .cm-hero__bottom { flex-direction: column; align-items: flex-start; gap: 24px; }
  .cm-hero__lead { padding-bottom: 0; }
}
@media (max-width: 640px) {
  .cm-insights__grid { grid-template-columns: 1fr; }
  .cm-chiprow { grid-template-columns: 1fr; }
  .cm-drop3 { display: none; }
  .cm-offshoot .cm-outchip, .cm-sidein .cm-inchip { position: static; transform: none; margin-top: 8px; display: inline-block; }
}
@media (prefers-reduced-motion: reduce) {
  .cm-sec *, .cm-sec *::before, .cm-sec *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
