/* ============================================================
   toothmate.css — /toothmate "Toothmate AI" marketing page.
   Calm, editorial, de-boxed sand-blue light theme. Everything
   scoped under .toothmate. Tokens inherited from styles.css.

   Animation contract with toothmate.js (mirrors the comms
   story-rooms): the SSR markup is the COMPLETE final scene
   (command fully typed, every chip/row/proof-step .on). The JS
   only adds .tm-run to a scene root to rewind it, then re-adds
   the state classes (.on / .now) on a schedule, looping while on
   screen. No JS / missing hooks / prefers-reduced-motion => the
   full static scene stays, never a blank frame.
   ============================================================ */

.toothmate {
  --tm-deep: #2c4a80;
  --tm-primary: #3d63a4;
  --tm-mid: #5a82c2;
  --tm-lite: #8aa6dd;
  --tm-pale: #c3d0ea;
  --tm-teal: #2f9e8f;
  --tm-ink: var(--ink, #1e2636);
  --tm-mut: var(--ink-60, #5a6479);
  --tm-line: var(--line, #dce0ee);
  --tm-dim: rgba(90, 130, 194, 0.10);
  --tm-soft: 0 18px 50px -30px rgba(32, 48, 77, 0.35);
  --tm-mono: var(--mono, ui-monospace, "SF Mono", Menlo, monospace);
  color: var(--tm-mut);
  position: relative;
  isolation: isolate;
  overflow-x: clip;
}

/* recolor global helpers for the sand-blue canvas (scoped, not redefined) */
.toothmate .eyebrow { color: var(--tm-primary); }
.toothmate .lead { color: var(--tm-mut); }

.toothmate .tm-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tm-primary);
}
.toothmate .tm-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--tm-teal);
  box-shadow: 0 0 0 4px rgba(47, 158, 143, 0.14), 0 0 12px rgba(47, 158, 143, 0.55);
  animation: tm-blink 1.7s ease-in-out infinite;
}
@keyframes tm-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.toothmate .tm-grad {
  font-style: normal;
  background: linear-gradient(100deg, var(--tm-deep) 0%, var(--tm-primary) 52%, var(--tm-mid) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ============================================================
   1 · HERO — the command surface
   ============================================================ */
.toothmate .tm-hero {
  position: relative;
  padding: clamp(118px, 15vw, 180px) 0 clamp(48px, 7vw, 80px);
  overflow: hidden;
  text-align: center;
}
.toothmate .tm-sky {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}
.toothmate .tm-glow {
  position: absolute;
  left: 50%;
  top: -260px;
  width: 1120px;
  height: 640px;
  transform: translateX(-50%);
  background:
    radial-gradient(46% 50% at 50% 45%, rgba(138, 166, 221, 0.28), transparent 70%),
    radial-gradient(60% 60% at 50% 30%, rgba(90, 130, 194, 0.18), transparent 72%);
  filter: blur(8px);
}
.toothmate .tm-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(90, 130, 194, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(90, 130, 194, 0.05) 1px, transparent 1px);
  background-size: 58px 58px;
  -webkit-mask-image: radial-gradient(78% 58% at 50% 16%, #000 20%, transparent 76%);
  mask-image: radial-gradient(78% 58% at 50% 16%, #000 20%, transparent 76%);
}

.toothmate .tm-hero-head { max-width: 900px; margin: 0 auto; }
.toothmate .tm-h1 {
  font-size: clamp(40px, 5.4vw, 70px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.02;
  color: var(--tm-ink);
  margin: 18px auto 22px;
  max-width: 16ch;
}
.toothmate .tm-lead {
  font-size: clamp(16.5px, 1.4vw, 20px);
  line-height: 1.62;
  color: var(--tm-mut);
  max-width: 62ch;
  margin: 0 auto 32px;
}
.toothmate .tm-cta {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.toothmate .tm-cta--center { justify-content: center; }

/* ---------------- the command console ---------------- */
.toothmate .tm-console {
  position: relative;
  max-width: 760px;
  margin: clamp(44px, 6vw, 72px) auto 0;
  text-align: left;
  border-radius: var(--r-xl, 24px);
  border: 1px solid var(--tm-line);
  background:
    radial-gradient(90% 130% at 50% -20%, rgba(138, 166, 221, 0.12), transparent 55%),
    linear-gradient(168deg, #ffffff, #f5f8fd);
  box-shadow:
    0 40px 90px -50px rgba(20, 34, 74, 0.32),
    0 0 80px -46px rgba(90, 130, 194, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  padding: 8px;
}

/* input row */
.toothmate .tm-console-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 16px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--tm-line);
}
.toothmate .tm-spark {
  flex: none;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--tm-mid), var(--tm-deep));
  box-shadow: 0 6px 16px -6px rgba(45, 74, 128, 0.6);
  animation: tm-spark 3.4s ease-in-out infinite;
}
@keyframes tm-spark {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.08) rotate(7deg); }
}
.toothmate .tm-cmd-wrap {
  flex: 1;
  min-width: 0;
  font-size: clamp(15px, 1.3vw, 17px);
  font-weight: 500;
  color: var(--tm-ink);
  line-height: 1.4;
}
.toothmate .tm-caret {
  display: none;
  width: 2px;
  height: 1.05em;
  margin-left: 1px;
  vertical-align: text-bottom;
  background: var(--tm-mid);
  animation: tm-caret 1.05s step-end infinite;
}
.toothmate .tm-caret.on { display: inline-block; }
@keyframes tm-caret {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0; }
}
.toothmate .tm-kbd {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 7px;
  border-radius: 5px;
  border: 1px solid var(--tm-line);
  background: #f7f9fd;
  font-family: var(--tm-mono);
  font-size: 11px;
  color: var(--tm-mut);
}

/* dispatch chips */
.toothmate .tm-console-body { padding: 16px 12px 12px; }
.toothmate .tm-dispatch {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  padding: 2px 4px 14px;
}
.toothmate .tm-dispatch-k {
  font-family: var(--tm-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tm-mut);
  margin-right: 2px;
}
.toothmate .tm-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--tm-primary);
  background: rgba(90, 130, 194, 0.09);
  border: 1px solid rgba(90, 130, 194, 0.24);
  border-radius: 999px;
  padding: 5px 12px;
  transition: opacity 0.4s cubic-bezier(0.2, 0.8, 0.2, 1),
              transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.toothmate .tm-chip i {
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--tm-mid);
}

/* result rows */
.toothmate .tm-results {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.toothmate .tm-row {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 13px 14px;
  border-radius: 14px;
  border: 1px solid var(--tm-line);
  background: #fbfcff;
  transition: opacity 0.5s cubic-bezier(0.2, 0.8, 0.2, 1),
              transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.toothmate .tm-row-ic {
  flex: none;
  width: 30px;
  height: 30px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  font-size: 15px;
  color: var(--tm-primary);
  background: rgba(90, 130, 194, 0.10);
}
.toothmate .tm-row-tx { flex: 1; min-width: 0; }
.toothmate .tm-row-t {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--tm-ink);
  letter-spacing: -0.01em;
}
.toothmate .tm-row-s {
  font-size: 12.5px;
  color: var(--tm-mut);
  margin-top: 2px;
}
.toothmate .tm-pill {
  flex: none;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--tm-primary);
  background: rgba(90, 130, 194, 0.10);
  border: 1px solid rgba(90, 130, 194, 0.22);
  border-radius: 999px;
  padding: 4px 11px;
  white-space: nowrap;
}

/* approve bar */
.toothmate .tm-approve {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 12px;
  padding: 13px 15px;
  border-radius: 14px;
  border: 1px solid rgba(90, 130, 194, 0.28);
  background: linear-gradient(120deg, #eef2fb, #f6f9fe);
  transition: opacity 0.5s cubic-bezier(0.2, 0.8, 0.2, 1),
              transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.toothmate .tm-approve-tx {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 500;
  color: var(--tm-deep);
  min-width: 0;
}
.toothmate .tm-approve-tx i {
  flex: none;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--tm-teal);
  box-shadow: 0 0 10px rgba(47, 158, 143, 0.5);
}
.toothmate .tm-approve-btn {
  flex: none;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, var(--tm-mid), var(--tm-deep));
  border-radius: 999px;
  padding: 8px 16px;
  box-shadow: 0 8px 18px -8px rgba(45, 74, 128, 0.7);
}

.toothmate .tm-hero-foot {
  font-size: 13.5px;
  color: var(--tm-mut);
  margin: 22px auto 0;
  max-width: 620px;
}
.toothmate .tm-hero-foot b { color: var(--tm-primary); font-weight: 600; }

/* ---- run-state rewind for the console (JS adds .tm-run) ---- */
.toothmate .tm-run .tm-chip { opacity: 0; transform: translateY(6px); }
.toothmate .tm-run .tm-chip.on { opacity: 1; transform: none; }
.toothmate .tm-run .tm-row { opacity: 0; transform: translateY(10px); }
.toothmate .tm-run .tm-row.on { opacity: 1; transform: none; }
.toothmate .tm-run .tm-approve { opacity: 0; transform: translateY(12px); }
.toothmate .tm-run .tm-approve.on { opacity: 1; transform: none; }

/* ============================================================
   2 · PILLARS — the whole clinic, on one assistant
   ============================================================ */
.toothmate .tm-section-head { max-width: 700px; margin: 0 auto; text-align: center; }
.toothmate .tm-h2 {
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: var(--tm-ink);
  margin: 14px 0 14px;
}
.toothmate .tm-section-head .tm-lead { margin: 0 auto; max-width: 58ch; }

.toothmate .tm-pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 2.6vw, 30px);
  margin-top: clamp(40px, 5vw, 64px);
}
.toothmate .tm-pillar {
  border-radius: 20px;
  border: 1px solid var(--tm-line);
  background: linear-gradient(168deg, #ffffff, #fafcff);
  box-shadow: var(--tm-soft);
  padding: clamp(24px, 2.4vw, 32px);
  display: flex;
  flex-direction: column;
}
.toothmate .tm-tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--tm-primary);
  background: rgba(90, 130, 194, 0.10);
  border-radius: 999px;
  padding: 5px 12px;
  margin-bottom: 18px;
}
.toothmate .tm-pillar h3 {
  font-size: clamp(20px, 1.9vw, 25px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--tm-ink);
  margin: 0 0 12px;
}
.toothmate .tm-pillar-body {
  font-size: 15px;
  line-height: 1.62;
  color: var(--tm-mut);
  margin: 0 0 20px;
}
.toothmate .tm-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 11px;
}
.toothmate .tm-points li {
  display: flex;
  gap: 10px;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--tm-ink);
}
.toothmate .tm-points li .tm-tick {
  flex: none;
  color: var(--tm-primary);
  font-weight: 700;
}

/* ---- the proof visual (top of each pillar card) ---- */
.toothmate .tm-proof {
  border-radius: 14px;
  border: 1px solid var(--tm-line);
  background: #fbfcff;
  padding: 14px 15px;
  margin-bottom: 22px;
  min-height: 92px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
.toothmate .tm-proof-k {
  font-family: var(--tm-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--tm-mut);
}

/* Insurance — claim status track flipping to "Appeal drafted" */
.toothmate .tm-claim {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}
.toothmate .tm-claim-id { font-size: 13.5px; font-weight: 600; color: var(--tm-ink); }
.toothmate .tm-claim-code { font-size: 12px; color: var(--tm-mut); font-family: var(--tm-mono); }
.toothmate .tm-track {
  display: flex;
  align-items: center;
  gap: 8px;
}
.toothmate .tm-track-step {
  flex: 1;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  color: var(--tm-mut);
  border: 1px solid var(--tm-line);
  border-radius: 999px;
  padding: 4px 6px;
  opacity: 0.5;
  transition: opacity 0.45s ease, color 0.45s ease, border-color 0.45s ease, background 0.45s ease;
}
.toothmate .tm-track-step.on { opacity: 1; color: var(--tm-primary); border-color: rgba(90, 130, 194, 0.4); }
.toothmate .tm-track-step.now {
  color: #fff;
  background: linear-gradient(135deg, var(--tm-mid), var(--tm-deep));
  border-color: transparent;
}

/* Charting — perio row filling as readings are called */
.toothmate .tm-perio { display: flex; align-items: center; gap: 12px; }
.toothmate .tm-perio-tooth {
  flex: none;
  font-family: var(--tm-mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--tm-primary);
}
.toothmate .tm-cells { display: flex; gap: 6px; flex: 1; }
.toothmate .tm-cell {
  flex: 1;
  text-align: center;
  font-family: var(--tm-mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--tm-ink);
  border: 1px solid var(--tm-line);
  border-radius: 7px;
  padding: 6px 0;
  background: #fff;
  opacity: 0.28;
  transition: opacity 0.4s ease, background 0.4s ease, border-color 0.4s ease;
}
.toothmate .tm-cell.on {
  opacity: 1;
  background: rgba(90, 130, 194, 0.09);
  border-color: rgba(90, 130, 194, 0.34);
}
/* voice input — mic + live waveform (matches homepage chairside chip) */
.toothmate .tm-voice {
  flex: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding-right: 4px;
  margin-right: 2px;
  border-right: 1px solid var(--tm-line);
}
.toothmate .tm-mic {
  width: 16px;
  height: 16px;
  color: var(--tm-primary);
}
.toothmate .tm-wave {
  display: inline-flex;
  align-items: center;
  gap: 2.5px;
  height: 18px;
}
.toothmate .tm-wave i {
  width: 2.6px;
  height: 60%;
  border-radius: 2px;
  background: var(--tm-mid, #5a82c2);
  transform-origin: center;
  animation: tm-wave 0.9s ease-in-out infinite;
}
.toothmate .tm-wave i:nth-child(1) { height: 45%; animation-delay: 0s; }
.toothmate .tm-wave i:nth-child(2) { height: 85%; animation-delay: 0.12s; }
.toothmate .tm-wave i:nth-child(3) { height: 100%; animation-delay: 0.24s; }
.toothmate .tm-wave i:nth-child(4) { height: 70%; animation-delay: 0.36s; }
.toothmate .tm-wave i:nth-child(5) { height: 50%; animation-delay: 0.48s; }
@keyframes tm-wave {
  0%, 100% { transform: scaleY(0.4); }
  50% { transform: scaleY(1); }
}

/* On every call — surfaced facts streaming in */
.toothmate .tm-call-top { display: flex; }
.toothmate .tm-live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--tm-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--tm-teal);
}
.toothmate .tm-live i {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--tm-teal);
  box-shadow: 0 0 9px rgba(47, 158, 143, 0.55);
  animation: tm-blink 1.4s ease-in-out infinite;
}
.toothmate .tm-fact {
  font-size: 13px;
  color: var(--tm-ink);
  transition: opacity 0.5s cubic-bezier(0.2, 0.8, 0.2, 1),
              transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.toothmate .tm-fact b { font-weight: 600; }
.toothmate .tm-fact .tm-why {
  display: block;
  font-size: 11.5px;
  color: var(--tm-primary);
  margin-top: 1px;
}

/* Imaging & treatment — Skia reading a real film: glowing teeth, a scan sweep,
   and finding boxes with a red ping (matches the homepage x-ray visual). */
.toothmate .tm-film {
  position: relative;
  height: 96px;
  border-radius: 10px;
  overflow: hidden;
  background:
    radial-gradient(120% 120% at 50% 0%, #16264a 0%, transparent 62%),
    linear-gradient(160deg, #12203c, #0b1730);
}
.toothmate .tm-film::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: repeating-linear-gradient(
    115deg,
    rgba(255, 255, 255, 0.045) 0 2px,
    transparent 2px 7px
  );
}
.toothmate .tm-film-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.toothmate .tm-tooth {
  fill: #bcd4ff;
  filter: drop-shadow(0 0 3px rgba(188, 212, 255, 0.35));
}
/* the scan sweep — a soft vertical band gliding across the film */
.toothmate .tm-scan {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  width: 46px;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(138, 200, 255, 0.16) 45%,
    rgba(180, 220, 255, 0.5) 50%,
    rgba(138, 200, 255, 0.16) 55%,
    transparent
  );
  animation: tm-scan 2.6s ease-in-out infinite;
}
@keyframes tm-scan {
  0% { transform: translateX(-46px); }
  50% { transform: translateX(236px); }
  100% { transform: translateX(-46px); }
}
.toothmate .tm-find {
  position: absolute;
  z-index: 4;
  border: 1.5px solid rgba(160, 200, 255, 0.95);
  border-radius: 6px;
  background: rgba(90, 130, 194, 0.16);
  box-shadow: 0 0 0 3px rgba(90, 130, 194, 0.12);
  transition: opacity 0.5s cubic-bezier(0.2, 0.8, 0.2, 1),
              transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.toothmate .tm-find i {
  position: absolute;
  top: -9px;
  left: -1px;
  font-style: normal;
  font-family: var(--tm-mono);
  font-size: 8.5px;
  letter-spacing: 0.04em;
  color: #eaf2ff;
  background: rgba(45, 74, 128, 0.95);
  border-radius: 3px;
  padding: 1px 5px;
  white-space: nowrap;
  transform: translateY(-100%);
}
.toothmate .tm-ping {
  position: absolute;
  right: -4px;
  bottom: -4px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #f0654f;
  box-shadow: 0 0 0 0 rgba(240, 101, 79, 0.6);
  animation: tm-ping 1.9s ease-out infinite;
}
@keyframes tm-ping {
  0% { box-shadow: 0 0 0 0 rgba(240, 101, 79, 0.55); }
  70%, 100% { box-shadow: 0 0 0 7px rgba(240, 101, 79, 0); }
}
.toothmate .tm-find--1 { top: 24px; left: 15%; width: 30px; height: 30px; }
.toothmate .tm-find--2 { top: 30px; left: 60%; width: 40px; height: 26px; }

/* run-state rewind for pillar proofs */
.toothmate .tm-run .tm-fact { opacity: 0; transform: translateY(8px); }
.toothmate .tm-run .tm-fact.on { opacity: 1; transform: none; }
.toothmate .tm-run .tm-find { opacity: 0; transform: scale(0.9); }
.toothmate .tm-run .tm-find.on { opacity: 1; transform: none; }
.toothmate .tm-run .tm-cell { opacity: 0.28; }
.toothmate .tm-run .tm-cell.on {
  opacity: 1;
  background: rgba(90, 130, 194, 0.09);
  border-color: rgba(90, 130, 194, 0.34);
}
.toothmate .tm-run .tm-track-step { opacity: 0.5; color: var(--tm-mut); border-color: var(--tm-line); background: transparent; }
.toothmate .tm-run .tm-track-step.on { opacity: 1; color: var(--tm-primary); border-color: rgba(90, 130, 194, 0.4); }
.toothmate .tm-run .tm-track-step.now {
  color: #fff;
  background: linear-gradient(135deg, var(--tm-mid), var(--tm-deep));
  border-color: transparent;
}

/* ============================================================
   3 · TRUST — powerful, with a hand on the wheel
   ============================================================ */
/* transparent so the page-level .hp2-bg wash carries through the whole band */
.toothmate .tm-trust { background: transparent; border-top: 1px solid var(--tm-line); }
.toothmate .tm-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(18px, 2vw, 26px);
  margin-top: clamp(38px, 4.5vw, 58px);
}
.toothmate .tm-guard {
  border-top: 1.5px solid rgba(90, 130, 194, 0.4);
  padding-top: 18px;
}
.toothmate .tm-guard-n {
  font-family: var(--tm-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--tm-primary);
}
.toothmate .tm-guard h3 {
  font-size: clamp(16px, 1.5vw, 18.5px);
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--tm-ink);
  margin: 12px 0 8px;
}
.toothmate .tm-guard p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--tm-mut);
  margin: 0;
}

/* ============================================================
   4 · CLOSING CTA
   ============================================================ */
.toothmate .tm-end {
  border-top: 1px solid var(--tm-line);
  background: radial-gradient(70% 90% at 50% 118%, rgba(138, 166, 221, 0.20), transparent 64%);
}
.toothmate .tm-end-inner { text-align: center; max-width: 720px; margin: 0 auto; }
.toothmate .tm-end-h {
  font-size: clamp(30px, 3.8vw, 50px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.06;
  color: var(--tm-ink);
  margin: 14px 0 14px;
}
.toothmate .tm-end-sub {
  font-size: clamp(15.5px, 1.3vw, 18px);
  color: var(--tm-mut);
  margin: 0 auto 30px;
  max-width: 54ch;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .toothmate .tm-pillars { grid-template-columns: 1fr; }
  .toothmate .tm-trust-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .toothmate .tm-trust-grid { grid-template-columns: 1fr; }
  .toothmate .tm-console-bar { flex-wrap: wrap; }
  .toothmate .tm-kbd { display: none; }
  .toothmate .tm-approve { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 700px) {
  /* single-column below the phone threshold, closing the 561-900px gap
     the tablet-oriented 2-column breakpoints above leave open */
  .toothmate .tm-trust-grid { grid-template-columns: 1fr; }
  .toothmate .tm-approve { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   REDUCED MOTION — static scene stays COMPLETE, motion off
   ============================================================ */
@media (prefers-reduced-motion: reduce), (max-width: 700px) {
  .toothmate *,
  .toothmate *::before,
  .toothmate *::after {
    animation: none !important;
    transition: none !important;
  }
  /* belt-and-braces: even if .tm-run leaks in, show the finished scene */
  .toothmate .tm-run .tm-chip,
  .toothmate .tm-run .tm-row,
  .toothmate .tm-run .tm-approve,
  .toothmate .tm-run .tm-fact,
  .toothmate .tm-run .tm-find {
    opacity: 1 !important;
    transform: none !important;
  }
  .toothmate .tm-run .tm-cell.on { opacity: 1 !important; }
  .toothmate .tm-caret { display: none !important; }
  /* the scan-sweep beam and ticking capability-tab progress bar are
     purely transient/decorative timing cues; frozen mid-flight they
     read as a stray stripe or a permanently-empty bar, so hide them
     outright rather than pin them to one frame. */
  .toothmate .tm-scan,
  .toothmate .tm-caps-tab-bar { display: none !important; }
}

/* ============================================================
   2b · CAPABILITY CONSOLE (rebuilt pillars) — TmPillars.tsx
   A horizontal rail of four capabilities drives ONE large,
   de-boxed proof stage on the sand-blue wash. Each proof
   replays its real micro-moment when its tab is active. The
   default (SSR / no-JS / reduced) frame is the FINISHED proof:
   items carry .on from the server, and the CSS below only
   HIDES an item when it is un-.on during a live replay.
   ============================================================ */
.toothmate .tm-caps-stage { margin-top: clamp(34px, 4.6vw, 58px); }

/* --- the rail (four capability tabs) --- */
.toothmate .tm-caps-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  outline: none;
}
.toothmate .tm-caps-tab {
  position: relative;
  display: flex;
  align-items: center;
  gap: 13px;
  width: 100%;
  text-align: left;
  padding: 14px 15px 18px;
  border: 1px solid var(--tm-line);
  border-radius: 16px;
  background: linear-gradient(168deg, #ffffff, #fafcff);
  cursor: pointer;
  font-family: inherit;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease, background 0.25s ease;
}
.toothmate .tm-caps-tab:hover { border-color: rgba(90, 130, 194, 0.42); transform: translateY(-1px); }
.toothmate .tm-caps-tab:focus-visible { outline: 2px solid var(--tm-mid); outline-offset: 2px; }
.toothmate .tm-caps-tab[data-on="true"] {
  border-color: rgba(90, 130, 194, 0.5);
  box-shadow: var(--tm-soft);
  background: linear-gradient(168deg, #ffffff, #f1f6fd);
}
.toothmate .tm-caps-tab-ic {
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--tm-primary);
  background: rgba(90, 130, 194, 0.10);
  transition: background 0.25s ease, color 0.25s ease;
}
.toothmate .tm-caps-tab-ic svg { width: 21px; height: 21px; }
.toothmate .tm-caps-tab[data-on="true"] .tm-caps-tab-ic {
  color: #fff;
  background: linear-gradient(135deg, var(--tm-mid), var(--tm-deep));
}
.toothmate .tm-caps-tab-tx { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.toothmate .tm-caps-tab-tag { font-size: 14px; font-weight: 640; letter-spacing: -0.01em; color: var(--tm-ink); }
.toothmate .tm-caps-tab-short { font-size: 12px; color: var(--tm-mut); }
.toothmate .tm-caps-tab-bar {
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: 9px;
  height: 2.5px;
  border-radius: 3px;
  overflow: hidden;
  background: transparent;
}
.toothmate .tm-caps-tab[data-on="true"] .tm-caps-tab-bar { background: rgba(90, 130, 194, 0.14); }
.toothmate .tm-caps-tab-bar i {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--tm-mid), var(--tm-deep));
  animation-name: tm-caps-fill;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
}
@keyframes tm-caps-fill { from { width: 0; } to { width: 100%; } }

/* --- the panel: proof stage (left) + de-boxed copy (right) --- */
.toothmate .tm-caps-panel {
  margin-top: clamp(16px, 2vw, 22px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(24px, 3.4vw, 48px);
  align-items: center;
}
.toothmate .tm-caps-proof {
  border: 1px solid var(--tm-line);
  border-radius: 18px;
  background:
    radial-gradient(100% 130% at 100% 0%, rgba(138, 166, 221, 0.10), transparent 55%),
    linear-gradient(168deg, #ffffff, #f6f9fe);
  box-shadow: var(--tm-soft);
  padding: clamp(18px, 2.2vw, 24px);
  min-height: 268px;
  display: flex;
}
.toothmate .tm-cx { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 14px; }
.toothmate .tm-cx-top { display: flex; align-items: center; gap: 10px; }
.toothmate .tm-cx-k {
  font-family: var(--tm-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--tm-mut);
}
.toothmate .tm-cx-replay {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: inherit;
  font-size: 11px;
  font-weight: 600;
  color: var(--tm-primary);
  background: rgba(90, 130, 194, 0.08);
  border: 1px solid rgba(90, 130, 194, 0.22);
  border-radius: 999px;
  padding: 4px 11px;
  cursor: pointer;
  transition: background 0.2s ease;
}
.toothmate .tm-cx-replay:hover { background: rgba(90, 130, 194, 0.16); }

/* copy column — hairline, not a card */
.toothmate .tm-caps-copy { min-width: 0; }
.toothmate .tm-caps-run {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--tm-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--tm-primary);
  margin-bottom: 14px;
}
.toothmate .tm-caps-run-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--tm-teal);
  box-shadow: 0 0 0 4px rgba(47, 158, 143, 0.14), 0 0 10px rgba(47, 158, 143, 0.5);
  animation: tm-blink 1.7s ease-in-out infinite;
}
.toothmate .tm-caps-title {
  font-size: clamp(21px, 2vw, 27px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.16;
  color: var(--tm-ink);
  margin: 0 0 12px;
}
.toothmate .tm-caps-body {
  font-size: 15px;
  line-height: 1.62;
  color: var(--tm-mut);
  margin: 0 0 18px;
}
.toothmate .tm-caps-points { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.toothmate .tm-caps-points li { display: flex; gap: 10px; font-size: 14.5px; line-height: 1.5; color: var(--tm-ink); }
.toothmate .tm-caps-points .tm-tick { flex: none; color: var(--tm-primary); font-weight: 700; }
.toothmate .tm-caps-link { margin: 22px 0 0; }

/* keyed panel re-mount → gentle cross-fade of proof + copy */
.toothmate .tm-caps-proof,
.toothmate .tm-caps-copy { animation: tm-caps-in 0.5s cubic-bezier(0.2, 0.8, 0.2, 1) both; }
@keyframes tm-caps-in { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

/* --- proof 1 · INSURANCE (denial → appeal timeline) --- */
.toothmate .tm-cx-claim { display: flex; align-items: baseline; gap: 10px; }
.toothmate .tm-cx-claim-id { font-size: 14px; font-weight: 640; color: var(--tm-ink); }
.toothmate .tm-cx-claim-code { font-family: var(--tm-mono); font-size: 12px; color: var(--tm-mut); }
.toothmate .tm-cx-claim-amt { margin-left: auto; font-size: 14px; font-weight: 640; color: var(--tm-ink); }
.toothmate .tm-cx-timeline { list-style: none; margin: 2px 0 0; padding: 0; }
.toothmate .tm-cx-node {
  position: relative;
  display: flex;
  gap: 14px;
  padding: 9px 0;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.45s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.toothmate .tm-cx-node.on { opacity: 1; transform: none; }
.toothmate .tm-cx-node::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 24px;
  bottom: -9px;
  width: 2px;
  background: var(--tm-line);
}
.toothmate .tm-cx-node:last-child::before { display: none; }
.toothmate .tm-cx-node.on::before { background: rgba(90, 130, 194, 0.5); }
.toothmate .tm-cx-node-dot {
  flex: none;
  width: 14px;
  height: 14px;
  margin-top: 4px;
  border-radius: 50%;
  border: 2px solid var(--tm-mid);
  background: rgba(90, 130, 194, 0.18);
  position: relative;
  z-index: 1;
}
.toothmate .tm-cx-node.now .tm-cx-node-dot {
  border-color: transparent;
  background: linear-gradient(135deg, var(--tm-mid), var(--tm-deep));
  box-shadow: 0 0 0 4px rgba(90, 130, 194, 0.14);
}
.toothmate .tm-cx-node-tx { display: flex; flex-direction: column; gap: 1px; }
.toothmate .tm-cx-node-tx b { font-size: 14.5px; font-weight: 600; color: var(--tm-ink); }
.toothmate .tm-cx-node.now .tm-cx-node-tx b { color: var(--tm-deep); }
.toothmate .tm-cx-node-tx i { font-style: normal; font-size: 12.5px; color: var(--tm-mut); }

/* --- proof 2 · CHARTING (voice perio) --- */
.toothmate .tm-cx-said {
  font-size: 15px;
  font-weight: 500;
  color: var(--tm-ink);
  margin: 0;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.toothmate .tm-cx-said.on { opacity: 1; transform: none; }
.toothmate .tm-cx-perio { display: flex; align-items: center; gap: 12px; }
.toothmate .tm-cx-tooth { flex: none; font-family: var(--tm-mono); font-size: 13px; font-weight: 600; color: var(--tm-primary); }
.toothmate .tm-cx-cells { display: flex; gap: 8px; flex: 1; }
.toothmate .tm-cx-cells .tm-cell { font-size: 15px; padding: 10px 0; border-radius: 9px; }
.toothmate .tm-cx-saved {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--tm-primary);
  margin: 0;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.toothmate .tm-cx-saved.on { opacity: 1; transform: none; }
.toothmate .tm-cx-tick {
  flex: none; width: 18px; height: 18px; border-radius: 50%;
  display: grid; place-items: center; font-size: 11px; color: #fff;
  background: var(--tm-teal);
}

/* --- proof 3 · ON EVERY CALL (facts + hover "why") --- */
.toothmate .tm-cx-call .tm-live { margin-right: 2px; }
.toothmate .tm-cx-caller { font-size: 12.5px; font-weight: 600; color: var(--tm-ink); }
.toothmate .tm-cx-facts { display: flex; flex-direction: column; gap: 9px; }
.toothmate .tm-cx-fact {
  border: 1px solid var(--tm-line);
  border-radius: 12px;
  background: #fbfcff;
  padding: 11px 13px;
  cursor: default;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.25s ease, box-shadow 0.25s ease;
  outline: none;
}
.toothmate .tm-cx-fact.on { opacity: 1; transform: none; }
.toothmate .tm-cx-fact:hover,
.toothmate .tm-cx-fact:focus-visible { border-color: rgba(90, 130, 194, 0.45); box-shadow: 0 8px 22px -16px rgba(45, 74, 128, 0.7); }
.toothmate .tm-cx-fact b { display: block; font-size: 14px; font-weight: 600; color: var(--tm-ink); }
.toothmate .tm-cx-why {
  display: block;
  font-size: 12px;
  color: var(--tm-primary);
  margin-top: 3px;
  opacity: 0.62;
  transition: opacity 0.25s ease;
}
.toothmate .tm-cx-fact:hover .tm-cx-why,
.toothmate .tm-cx-fact:focus-visible .tm-cx-why { opacity: 1; }
.toothmate .tm-cx-draft {
  display: flex; align-items: center; gap: 8px;
  font-size: 12.5px; color: var(--tm-deep); margin: 0;
  opacity: 0; transform: translateY(6px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.toothmate .tm-cx-draft.on { opacity: 1; transform: none; }
.toothmate .tm-cx-draft i {
  flex: none; width: 7px; height: 7px; border-radius: 999px;
  background: var(--tm-teal); box-shadow: 0 0 10px rgba(47, 158, 143, 0.5);
}

/* --- proof 4 · IMAGING (film + findings list) --- */
.toothmate .tm-cx-filmwrap { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr); gap: 16px; align-items: center; }
.toothmate .tm-cx-film { height: 150px; }
.toothmate .tm-cx-film .tm-scan { animation: tm-cx-scan 2.9s ease-in-out infinite; }
@keyframes tm-cx-scan { 0% { transform: translateX(-46px); } 50% { transform: translateX(360px); } 100% { transform: translateX(-46px); } }
.toothmate .tm-cx-film .tm-find { opacity: 0; transform: scale(0.9); transition: opacity 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1); }
.toothmate .tm-cx-film .tm-find.on { opacity: 1; transform: none; }
.toothmate .tm-cx-film .tm-find--1 { top: 44px; left: 15%; width: 40px; height: 40px; }
.toothmate .tm-cx-film .tm-find--2 { top: 54px; left: 58%; width: 54px; height: 34px; }
.toothmate .tm-cx-finds { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.toothmate .tm-cx-finds-li {
  display: flex; align-items: center; gap: 9px;
  font-size: 13px; color: var(--tm-ink);
  opacity: 0; transform: translateX(-4px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.toothmate .tm-cx-finds-li.on { opacity: 1; transform: none; }
.toothmate .tm-cx-finds-dot { flex: none; width: 7px; height: 7px; border-radius: 999px; background: var(--tm-mid); }
.toothmate .tm-cx-finds-plan { color: var(--tm-primary); font-weight: 600; }
.toothmate .tm-cx-finds-plan .tm-cx-finds-dot { background: var(--tm-teal); }

/* ============================================================
   3b · TRUST — confidence-gate set-piece + guarantee rail
   ============================================================ */
.toothmate .tm-trust-layout {
  margin-top: clamp(30px, 4.4vw, 52px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(28px, 4vw, 60px);
  align-items: center;
}
.toothmate .tm-gate {
  border: 1px solid var(--tm-line);
  border-radius: 20px;
  background:
    radial-gradient(90% 130% at 0% 0%, rgba(138, 166, 221, 0.10), transparent 55%),
    linear-gradient(168deg, #ffffff, #f6f9fe);
  box-shadow: var(--tm-soft);
  padding: clamp(20px, 2.4vw, 28px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.toothmate .tm-gate-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.toothmate .tm-gate-id { display: inline-flex; align-items: center; gap: 9px; font-size: 13px; font-weight: 600; color: var(--tm-ink); }
.toothmate .tm-gate-spark {
  flex: none; width: 26px; height: 26px; border-radius: 8px;
  display: grid; place-items: center; color: #fff;
  background: linear-gradient(135deg, var(--tm-mid), var(--tm-deep));
}
.toothmate .tm-gate-status { font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--tm-mut); white-space: nowrap; }
.toothmate .tm-gate[data-phase="wait"] .tm-gate-status { color: var(--tm-primary); }
.toothmate .tm-gate[data-phase="approved"] .tm-gate-status { color: var(--tm-teal); }
.toothmate .tm-gate-action {
  border: 1px solid var(--tm-line); border-radius: 12px; background: #fbfcff;
  padding: 13px 15px; display: flex; flex-direction: column; gap: 3px;
}
.toothmate .tm-gate-action-t { font-size: 15px; font-weight: 600; color: var(--tm-ink); }
.toothmate .tm-gate-action-s { font-size: 12.5px; color: var(--tm-mut); }
.toothmate .tm-gate-meter { display: flex; align-items: center; gap: 10px; }
.toothmate .tm-gate-meter-lbl { flex: none; font-size: 11px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--tm-mut); }
.toothmate .tm-gate-meter-track { flex: 1; height: 8px; border-radius: 999px; background: rgba(90, 130, 194, 0.12); overflow: hidden; }
.toothmate .tm-gate-meter-fill { display: block; height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--tm-mid), var(--tm-teal)); transition: width 1s cubic-bezier(0.2, 0.8, 0.2, 1); }
.toothmate .tm-gate-meter-val { flex: none; min-width: 40px; text-align: right; font-family: var(--tm-mono); font-size: 12.5px; font-weight: 600; color: var(--tm-primary); }
.toothmate .tm-gate-foot { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.toothmate .tm-gate-why { display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--tm-mut); }
.toothmate .tm-gate-dot { flex: none; width: 7px; height: 7px; border-radius: 50%; background: var(--tm-mid); }
.toothmate .tm-gate-dot.ok { background: var(--tm-teal); box-shadow: 0 0 8px rgba(47, 158, 143, 0.5); }
.toothmate .tm-gate-btn {
  flex: none; font-family: inherit; font-size: 13px; font-weight: 600; color: #fff;
  background: linear-gradient(135deg, var(--tm-mid), var(--tm-deep));
  border: none; border-radius: 999px; padding: 9px 18px; cursor: pointer;
  box-shadow: 0 10px 22px -12px rgba(45, 74, 128, 0.7);
  transition: transform 0.2s ease, opacity 0.2s ease, background 0.3s ease;
}
.toothmate .tm-gate-btn:hover:not(:disabled) { transform: translateY(-1px); }
.toothmate .tm-gate-btn:disabled { opacity: 0.45; cursor: default; }
.toothmate .tm-gate-btn[data-approved="true"] { background: linear-gradient(135deg, var(--tm-teal), #1f8576); opacity: 1; cursor: default; }

/* the four guarantees as a de-boxed numbered rail */
.toothmate .tm-guards { list-style: none; margin: 0; padding: 0; }
.toothmate .tm-guard {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: clamp(15px, 1.9vw, 20px) 0;
  border-top: 1px solid var(--tm-line);
}
.toothmate .tm-guards .tm-guard:first-child { border-top: 0; padding-top: 0; }
.toothmate .tm-guard-n {
  flex: none;
  width: 34px; height: 34px; border-radius: 10px;
  display: grid; place-items: center;
  font-family: var(--tm-mono); font-size: 13px; font-weight: 600;
  color: var(--tm-primary); background: rgba(90, 130, 194, 0.10);
}
.toothmate .tm-guard-tx h3 { font-size: clamp(16px, 1.5vw, 18.5px); font-weight: 600; letter-spacing: -0.015em; color: var(--tm-ink); margin: 4px 0 6px; }
.toothmate .tm-guard-tx p { font-size: 14px; line-height: 1.6; color: var(--tm-mut); margin: 0; }

/* --- responsive --- */
@media (max-width: 900px) {
  .toothmate .tm-caps-panel { grid-template-columns: 1fr; align-items: start; }
  .toothmate .tm-trust-layout { grid-template-columns: 1fr; }
}
@media (max-width: 820px) {
  .toothmate .tm-caps-rail { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 620px) {
  .toothmate .tm-caps-rail { grid-template-columns: 1fr; }
  .toothmate .tm-cx-filmwrap { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  /* close the 621-700px gap: the 820px breakpoint above still renders
     these as 2 tracks up to 620px's override, so pin single-column
     through the full phone range */
  .toothmate .tm-caps-rail { grid-template-columns: 1fr; }
  .toothmate .tm-cx-filmwrap { grid-template-columns: 1fr; }
}

/* --- reduced motion for the rebuilt pieces (finished frame stands) --- */
@media (prefers-reduced-motion: reduce), (max-width: 700px) {
  .toothmate .tm-caps-tab-bar i,
  .toothmate .tm-caps-run-dot,
  .toothmate .tm-cx-film .tm-scan { animation: none !important; }
  .toothmate .tm-caps-proof,
  .toothmate .tm-caps-copy { animation: none !important; opacity: 1 !important; transform: none !important; }
  .toothmate .tm-cx-node,
  .toothmate .tm-cx-said,
  .toothmate .tm-cx-saved,
  .toothmate .tm-cx-fact,
  .toothmate .tm-cx-draft,
  .toothmate .tm-cx-finds-li,
  .toothmate .tm-cx-film .tm-find { opacity: 1 !important; transform: none !important; }
  .toothmate .tm-gate-meter-fill { transition: none !important; }
}
