/* FluxFront — call-catcher · sliced verbatim from the original sections.css block (render-identical). See docs/marketing-site-architecture.md for the selector map. */
/* ===================== CALL CATCHER ===================== */
.cc-sec { background: var(--ink-deep); color: #C9CED7; }
.cc-grid { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
@media (max-width: 940px) { .cc-grid { grid-template-columns: 1fr; } }
.cc-sec .eyebrow { color: var(--teal); }
.cc-sec .eyebrow::before { background: var(--teal); }
.cc-sec .h2 { color: #F4F2EC; }
.cc-sec .h2 .muted { color: #828A96; }
.cc-sec .lead { color: #A7AEB9; }
.cc-guards { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 12px; }
.cc-guards li { display: flex; align-items: center; gap: 11px; font-size: var(--t-sm); color: #C9CED7; }
.cc-guards li em { font-style: normal; color: #757D89; font-size: 0.86em; }
.cc-guards svg { width: 17px; height: 17px; flex: none; padding: 3px; border-radius: 50%; }
.cc-guards li:nth-child(-n+2) svg { color: #E27777; background: rgb(220 38 38 / 0.14); }
.cc-guards li:last-child svg { color: var(--teal); background: rgb(45 212 191 / 0.16); }

.cc-console { background: var(--ink-panel); border: 1px solid var(--ink-line); border-radius: var(--r-xl);
  padding: 20px; box-shadow: var(--sh-xl); }
.cc-bar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.cc-bar-l { font-size: 0.66rem; letter-spacing: 0.08em; color: #8A919D; display: flex; align-items: center; gap: 9px; }
.cc-rec { width: 8px; height: 8px; border-radius: 50%; background: #E27777; box-shadow: 0 0 0 0 rgb(226 119 119 / 0.5); }
.cc-console.playing .cc-rec { animation: rec 1.4s var(--e-out) infinite; }
@keyframes rec { 0% { box-shadow: 0 0 0 0 rgb(226 119 119 / 0.5); } 100% { box-shadow: 0 0 0 7px rgb(226 119 119 / 0); } }
.cc-time { font-size: 0.74rem; color: var(--teal); }
.cc-wave { display: flex; align-items: center; justify-content: center; gap: 3px; height: 56px; margin-bottom: 16px; }
.cc-wave i { width: 3px; height: 14%; background: #3A404A; border-radius: 2px; transition: height 0.12s ease, background 0.12s ease; }
.cc-console.playing .cc-wave i { background: var(--teal-600); }
.cc-play { display: flex; align-items: center; gap: 11px; width: 100%; justify-content: center;
  background: var(--teal); color: var(--ink); font-weight: 600; font-size: var(--t-sm); padding: 13px;
  border-radius: var(--r-pill); margin-bottom: 18px; transition: background var(--d-2), transform var(--d-2) var(--e-spring); }
.cc-play:hover { background: var(--teal-bright); }
.cc-play:active { transform: scale(0.99); }
.cc-play svg { width: 18px; height: 18px; }
.cc-play .ic-pause { display: none; }
.cc-console.playing .cc-play .ic-play { display: none; }
.cc-console.playing .cc-play .ic-pause { display: block; }
.cc-cols { display: grid; grid-template-columns: 1.25fr 0.95fr; gap: 14px; }
@media (max-width: 520px) { .cc-cols { grid-template-columns: 1fr; } }
.cc-transcript { min-height: 232px; display: flex; flex-direction: column; gap: 9px; }
.cc-line { padding: 9px 12px; border-radius: 12px; font-size: 0.8rem; line-height: 1.4; max-width: 92%;
  opacity: 0; transform: translateY(6px); transition: opacity var(--d-3), transform var(--d-3); }
.cc-line.show { opacity: 1; transform: none; }
.cc-line.bot { background: rgb(45 212 191 / 0.12); color: #DFF6F1; align-self: flex-start; border-bottom-left-radius: 4px; }
.cc-line.caller { background: #2A2F38; color: #C9CED7; align-self: flex-end; border-bottom-right-radius: 4px; }
.cc-line .who { display: block; font-family: var(--font-mono); font-size: 0.58rem; letter-spacing: 0.06em;
  text-transform: uppercase; opacity: 0.6; margin-bottom: 3px; }
.cc-events { background: var(--ink-deep); border: 1px solid var(--ink-line); border-radius: var(--r-md); padding: 13px; }
.cc-events-h { font-size: 0.6rem; letter-spacing: 0.1em; color: #6E747F; margin-bottom: 11px; }
.cc-events ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.cc-events li { display: grid; grid-template-columns: auto 1fr; gap: 8px; font-size: 0.7rem; color: #9098A3;
  opacity: 0; transform: translateX(-5px); transition: opacity var(--d-2), transform var(--d-2); }
.cc-events li.show { opacity: 1; transform: none; }
.cc-events li .ts { font-family: var(--font-mono); color: var(--teal); font-size: 0.64rem; }
.cc-events li.done { color: #DFF6F1; }

