/* TCIN Explorer Widget — Phase 7 (2026-05-19)
 * All selectors prefixed `.tcin-explorer` (or `.tcin-w` inside it).
 * No bleed into parent page styles. Self-contained CSS variables.
 */

.tcin-explorer{
  /* CSS custom-property API for theme overrides */
  --tcin-explorer-base:#FBFAF8;
  --tcin-explorer-card:#FFFFFF;
  --tcin-explorer-ink:#1F2A2E;
  --tcin-explorer-muted:#5C6B6E;
  --tcin-explorer-line:#E7E5E0;
  --tcin-explorer-teal:#2E6F73;
  --tcin-explorer-teal-dk:#234F52;
  --tcin-explorer-teal-tint:#E9F1F0;
  --tcin-explorer-teal-tint2:#DCEBEA;
  --tcin-explorer-clay:#C9805A;
  --tcin-explorer-clay-dk:#A5613E;
  --tcin-explorer-clay-tint:#F7EBE3;
  --tcin-explorer-ocean:#2F6B8F;
  --tcin-explorer-ocean-dk:#1F4F6B;
  --tcin-explorer-naic:#2F6B8F;
  --tcin-explorer-nhtsa:#2E6F73;
  --tcin-explorer-bjs:#C9805A;
  --tcin-explorer-shadow:0 6px 22px rgba(11,27,43,.10),0 1px 4px rgba(11,27,43,.05);
  --tcin-explorer-radius:14px;
  --tcin-explorer-serif:'Playfair Display',Georgia,serif;
  --tcin-explorer-sans:'Inter',-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;

  display:block;
  font-family:var(--tcin-explorer-sans);
  color:var(--tcin-explorer-ink);
  -webkit-font-smoothing:antialiased;
  box-sizing:border-box;
}
.tcin-explorer *,
.tcin-explorer *::before,
.tcin-explorer *::after{ box-sizing:border-box; }

/* Outer widget container — bordered card */
.tcin-explorer .tcin-w{
  background:var(--tcin-explorer-card);
  border:1px solid var(--tcin-explorer-line);
  border-radius:var(--tcin-explorer-radius);
  box-shadow:var(--tcin-explorer-shadow);
  display:flex;
  flex-direction:column;
  overflow:hidden;
  width:100%;
  max-width:720px;
  margin:0 auto;
  min-height:600px;
}

/* Embedded mode: respect host padding/wraps; centered card */
.tcin-explorer--embedded .tcin-w{
  margin:0 auto;
}
/* Standalone mode: full-viewport fill */
.tcin-explorer--standalone{
  min-height:100vh;
  background:var(--tcin-explorer-base);
  padding:18px;
}
.tcin-explorer--standalone .tcin-w{
  min-height:calc(100vh - 36px);
  max-width:720px;
}

/* Mobile: widget grows to fill viewport (minus parent surrounding chrome) */
@media (max-width: 719px){
  .tcin-explorer--embedded .tcin-w{
    min-height:calc(100vh - 130px); /* ~nav + headline-band approximation */
    max-width:none;
  }
  .tcin-explorer--standalone{ padding:8px; }
  .tcin-explorer--standalone .tcin-w{
    min-height:calc(100vh - 16px);
    max-width:none;
  }
}

/* ===== Header ===== */
.tcin-explorer .tcin-w-header{
  padding:18px 22px 14px;
  border-bottom:1px solid var(--tcin-explorer-line);
  background:linear-gradient(180deg,var(--tcin-explorer-card) 0%,var(--tcin-explorer-teal-tint) 200%);
  flex:none;
}
.tcin-explorer .tcin-w-title{
  font-family:var(--tcin-explorer-serif);
  color:var(--tcin-explorer-teal-dk);
  font-weight:700;
  font-size:clamp(18px,3.4vw,22px);
  letter-spacing:-.005em;
  line-height:1.18;
  margin:0 0 8px;
}
.tcin-explorer .tcin-w-progress{
  display:flex;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
}
.tcin-explorer .tcin-w-prog-dots{
  display:inline-flex;
  align-items:center;
  gap:5px;
  font-size:11px;
  color:var(--tcin-explorer-teal);
  line-height:1;
}
.tcin-explorer .tcin-w-dot{
  font-size:14px;
  line-height:1;
  color:var(--tcin-explorer-teal-tint2);
}
.tcin-explorer .tcin-w-dot--on{ color:var(--tcin-explorer-teal); }
.tcin-explorer .tcin-w-prog-label{
  margin:0;
  font-size:12px;
  font-weight:600;
  letter-spacing:.06em;
  text-transform:uppercase;
  color:var(--tcin-explorer-clay-dk);
}

/* ===== Body / pagestage ===== */
.tcin-explorer .tcin-w-body{
  flex:1 1 auto;
  position:relative;
  overflow:hidden;
}
.tcin-explorer .tcin-w-pagestage{
  position:relative;
  height:100%;
  min-height:380px;
  padding:18px 22px;
  overflow:hidden;
}
@media (max-width:560px){
  .tcin-explorer .tcin-w-pagestage{
    padding:16px 16px;
    min-height:340px;
  }
}

/* Page (slides) */
.tcin-explorer .tcin-w-page{
  width:100%;
  animation:tcinSlideIn .28s ease-out;
  will-change:transform,opacity;
}
.tcin-explorer .tcin-w-page--leaving{
  position:absolute;
  inset:18px 22px auto;
  animation:tcinSlideOut .28s ease-out forwards;
}
@media (max-width:560px){
  .tcin-explorer .tcin-w-page--leaving{ inset:16px 16px auto; }
}
.tcin-explorer .tcin-w-page--entering{
  animation:tcinSlideIn .28s ease-out;
}
@keyframes tcinSlideIn{
  from{ transform:translateX(28px); opacity:0; }
  to{ transform:translateX(0); opacity:1; }
}
@keyframes tcinSlideOut{
  from{ transform:translateX(0); opacity:1; }
  to{ transform:translateX(-22px); opacity:0; }
}
@media (prefers-reduced-motion: reduce){
  .tcin-explorer .tcin-w-page,
  .tcin-explorer .tcin-w-page--entering,
  .tcin-explorer .tcin-w-page--leaving{ animation:none !important; opacity:1 !important; transform:none !important; }
}

/* ===== Prompt (pre-answer) ===== */
.tcin-explorer .tcin-w-prompt{ }
.tcin-explorer .tcin-w-q{
  font-family:var(--tcin-explorer-serif);
  color:var(--tcin-explorer-teal-dk);
  font-weight:700;
  font-size:clamp(20px,4vw,26px);
  letter-spacing:-.005em;
  line-height:1.2;
  margin:0 0 8px;
}
.tcin-explorer .tcin-w-hint{
  font-size:13px;
  color:var(--tcin-explorer-muted);
  margin:0 0 16px;
  line-height:1.5;
}
.tcin-explorer .tcin-w-opts{
  display:flex;
  flex-direction:column;
  gap:9px;
}
.tcin-explorer .tcin-w-opt{
  background:var(--tcin-explorer-card);
  border:1.5px solid var(--tcin-explorer-teal-tint2);
  border-radius:11px;
  padding:13px 16px;
  font:inherit;
  font-size:15px;
  font-weight:500;
  color:var(--tcin-explorer-ink);
  text-align:left;
  cursor:pointer;
  transition:border-color .15s,background .15s,transform .1s;
  min-height:48px;
}
.tcin-explorer .tcin-w-opt:hover{
  border-color:var(--tcin-explorer-teal);
  background:var(--tcin-explorer-teal-tint);
  transform:translateY(-1px);
}
.tcin-explorer .tcin-w-opt:active{ transform:translateY(0); }
.tcin-explorer .tcin-w-opt:focus-visible{
  outline:2px solid var(--tcin-explorer-teal);
  outline-offset:2px;
}

/* Persistent case-by-case footer — promotes the thesis to every reveal */
.tcin-explorer .tcin-w-card-cbc{
  margin:14px 0 0;
  padding:10px 14px;
  border-top:1px solid var(--tcin-explorer-teal-tint2);
  background:rgba(176, 133, 63, 0.06);
  border-left:3px solid var(--tcin-explorer-clay);
  border-radius:0 6px 6px 0;
  font-size:13px;
  line-height:1.5;
  color:var(--tcin-explorer-ink);
  font-style:italic;
  font-weight:500;
}

/* State tile grid — 51 alphabetical buttons, no dropdown */
.tcin-explorer .tcin-w-opts--stategrid{
  display:grid !important;
  grid-template-columns:repeat(5, minmax(0, 1fr));
  gap:6px;
}
@media(min-width:480px){
  .tcin-explorer .tcin-w-opts--stategrid{ grid-template-columns:repeat(6, minmax(0, 1fr)); gap:7px; }
}
@media(min-width:720px){
  .tcin-explorer .tcin-w-opts--stategrid{ grid-template-columns:repeat(8, minmax(0, 1fr)); gap:8px; }
}
.tcin-explorer .tcin-w-state-tile{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:2px;
  padding:8px 4px;
  min-height:54px;
  background:var(--tcin-explorer-card);
  border:1.5px solid var(--tcin-explorer-teal-tint2);
  border-radius:8px;
  font:inherit;
  cursor:pointer;
  transition:transform .08s ease, background .12s ease, border-color .12s ease;
  -webkit-tap-highlight-color:transparent;
}
.tcin-explorer .tcin-w-state-tile:hover{
  background:var(--tcin-explorer-teal-tint);
  border-color:var(--tcin-explorer-teal);
}
.tcin-explorer .tcin-w-state-tile:active{ transform:scale(0.96); }
.tcin-explorer .tcin-w-state-tile:focus-visible{
  outline:2px solid var(--tcin-explorer-teal);
  outline-offset:2px;
}
.tcin-explorer .tcin-w-state-tile.is-selected{
  background:var(--tcin-explorer-teal);
  border-color:var(--tcin-explorer-teal-dk);
  color:#fff;
}
.tcin-explorer .tcin-w-state-ab{
  font-family:var(--tcin-explorer-serif);
  font-weight:700;
  font-size:15px;
  letter-spacing:.02em;
  line-height:1;
  color:var(--tcin-explorer-ink);
}
.tcin-explorer .tcin-w-state-tile.is-selected .tcin-w-state-ab,
.tcin-explorer .tcin-w-state-tile.is-selected .tcin-w-state-name{ color:#fff; }
.tcin-explorer .tcin-w-state-name{
  font-size:9px;
  font-weight:500;
  text-transform:uppercase;
  letter-spacing:.04em;
  color:var(--tcin-explorer-muted);
  line-height:1.1;
  text-align:center;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
  max-width:100%;
}
@media(max-width:380px){
  .tcin-explorer .tcin-w-state-name{ display:none; }  /* abbreviation only at very narrow widths */
}

/* ===== Revealed question (post-answer) ===== */
.tcin-explorer .tcin-w-revealed{ }
.tcin-explorer .tcin-w-revealed-top{
  display:flex;
  align-items:flex-start;
  gap:10px;
  flex-wrap:wrap;
  margin:0 0 12px;
  padding-bottom:12px;
  border-bottom:1px dashed var(--tcin-explorer-line);
}
.tcin-explorer .tcin-w-q-mini{
  flex:1 1 100%;
  margin:0;
  font-size:13px;
  color:var(--tcin-explorer-muted);
  line-height:1.4;
}
.tcin-explorer .tcin-w-a-picked{
  flex:1 1 auto;
  margin:0;
  font-family:var(--tcin-explorer-serif);
  font-weight:700;
  font-size:17px;
  color:var(--tcin-explorer-teal-dk);
  line-height:1.3;
}
.tcin-explorer .tcin-w-change{
  flex:0 0 auto;
  background:transparent;
  border:1px solid var(--tcin-explorer-teal-tint2);
  border-radius:8px;
  font:inherit;
  font-size:12px;
  font-weight:600;
  color:var(--tcin-explorer-teal);
  padding:5px 11px;
  cursor:pointer;
  min-height:32px;
}
.tcin-explorer .tcin-w-change:hover{
  border-color:var(--tcin-explorer-teal);
  background:var(--tcin-explorer-teal-tint);
}

/* ===== Data card ===== */
.tcin-explorer .tcin-w-card{
  background:linear-gradient(180deg,var(--tcin-explorer-teal-tint) 0%,var(--tcin-explorer-card) 80%);
  border:1px solid var(--tcin-explorer-teal-tint2);
  border-radius:12px;
  padding:18px 18px 14px;
}
.tcin-explorer .tcin-w-card-loading,
.tcin-explorer .tcin-w-card-empty,
.tcin-explorer .tcin-w-card-missing{
  font-size:13.5px;
  color:var(--tcin-explorer-muted);
  font-style:italic;
  line-height:1.5;
  margin:0;
}
.tcin-explorer .tcin-w-card-eyebrow{
  font-size:11px;
  font-weight:700;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--tcin-explorer-clay-dk);
  margin:0 0 6px;
}
.tcin-explorer .tcin-w-card-stat{
  display:flex;
  align-items:baseline;
  gap:6px;
  margin:0 0 4px;
}
.tcin-explorer .tcin-w-card-stat-num{
  font-family:var(--tcin-explorer-serif);
  font-weight:700;
  color:var(--tcin-explorer-teal-dk);
  font-size:clamp(28px,6vw,38px);
  letter-spacing:-.01em;
  line-height:1.05;
}
.tcin-explorer .tcin-w-card-stat-unit{
  font-size:12px;
  color:var(--tcin-explorer-muted);
  letter-spacing:.04em;
  text-transform:uppercase;
  font-weight:600;
}
.tcin-explorer .tcin-w-card-headline{
  font-family:var(--tcin-explorer-serif);
  font-weight:700;
  font-size:clamp(15px,2.6vw,18px);
  color:var(--tcin-explorer-ink);
  line-height:1.35;
  margin:6px 0 4px;
  letter-spacing:-.003em;
}
.tcin-explorer .tcin-w-card-subline{
  font-size:13.5px;
  color:var(--tcin-explorer-muted);
  line-height:1.5;
  margin:0 0 8px;
}

/* Comparator bar */
.tcin-explorer .tcin-w-cbar{
  margin:12px 0 10px;
  display:flex;
  flex-direction:column;
  gap:6px;
}
.tcin-explorer .tcin-w-cbar-row{
  display:grid;
  grid-template-columns:96px 1fr;
  align-items:center;
  gap:8px;
}
.tcin-explorer .tcin-w-cbar-lbl{
  font-size:11px;
  font-weight:600;
  letter-spacing:.04em;
  text-transform:uppercase;
  color:var(--tcin-explorer-muted);
  line-height:1.2;
}
.tcin-explorer .tcin-w-cbar-track{
  position:relative;
  background:var(--tcin-explorer-teal-tint);
  border-radius:8px;
  min-height:22px;
  overflow:hidden;
  display:flex;
  align-items:center;
}
.tcin-explorer .tcin-w-cbar-fill{
  height:100%;
  min-height:22px;
  border-radius:8px;
}
.tcin-explorer .tcin-w-cbar-fill--user{
  background:linear-gradient(90deg,var(--tcin-explorer-teal) 0%,var(--tcin-explorer-teal-dk) 100%);
}
.tcin-explorer .tcin-w-cbar-fill--ref{
  background:linear-gradient(90deg,var(--tcin-explorer-clay) 0%,var(--tcin-explorer-clay-dk) 100%);
  opacity:.65;
}
.tcin-explorer .tcin-w-cbar-num{
  position:absolute;
  right:8px;
  top:50%;
  transform:translateY(-50%);
  font-size:12px;
  font-weight:700;
  color:var(--tcin-explorer-ink);
  background:rgba(255,255,255,.9);
  padding:1px 6px;
  border-radius:5px;
  line-height:1.2;
}

/* Bullets + footnote + source line */
.tcin-explorer .tcin-w-card-bullets{
  list-style:none;
  padding:0;
  margin:8px 0 6px;
  font-size:12.5px;
  color:var(--tcin-explorer-ink);
  line-height:1.45;
  display:flex;
  flex-direction:column;
  gap:3px;
}
.tcin-explorer .tcin-w-card-bullets li{
  padding-left:14px;
  position:relative;
}
.tcin-explorer .tcin-w-card-bullets li::before{
  content:"·";
  position:absolute;
  left:5px;
  top:-1px;
  font-weight:700;
  color:var(--tcin-explorer-clay);
}
.tcin-explorer .tcin-w-card-footnote{
  margin:6px 0 6px;
  font-size:11.5px;
  color:var(--tcin-explorer-muted);
  font-style:italic;
  line-height:1.45;
}
.tcin-explorer .tcin-w-card-source{
  margin:6px 0 0;
  font-size:11px;
  color:var(--tcin-explorer-muted);
  font-weight:600;
  letter-spacing:.04em;
}
.tcin-explorer .tcin-w-card-source a{
  color:var(--tcin-explorer-teal);
  text-decoration:none;
  border-bottom:1px dotted var(--tcin-explorer-teal-tint2);
}
.tcin-explorer .tcin-w-card-source a:hover{
  border-bottom-color:var(--tcin-explorer-teal);
}

/* ===== Info page (big reveal) ===== */
.tcin-explorer .tcin-w-info{ display:block; }
.tcin-explorer .tcin-w-info-eb{
  font-size:11px;
  font-weight:700;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--tcin-explorer-clay-dk);
  margin:0 0 8px;
}
.tcin-explorer .tcin-w-info-h{
  font-family:var(--tcin-explorer-serif);
  font-weight:700;
  color:var(--tcin-explorer-teal-dk);
  font-size:clamp(18px,3.6vw,22px);
  letter-spacing:-.005em;
  line-height:1.2;
  margin:0 0 6px;
}
.tcin-explorer .tcin-w-info-lede{
  font-size:12.5px;
  color:var(--tcin-explorer-muted);
  margin:0 0 10px;
  line-height:1.45;
}
.tcin-explorer .tcin-w-info-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:8px;
  margin:0 0 10px;
}
@media (min-width:560px){
  .tcin-explorer .tcin-w-info-grid{
    grid-template-columns:repeat(3,1fr);
    gap:10px;
  }
}
.tcin-explorer .tcin-w-info-block{
  background:var(--tcin-explorer-card);
  border:1px solid var(--tcin-explorer-line);
  border-radius:10px;
  padding:10px 12px;
}
.tcin-explorer .tcin-w-info-block--world_a{ border-top:4px solid var(--tcin-explorer-nhtsa); }
.tcin-explorer .tcin-w-info-block--world_b{ border-top:4px solid var(--tcin-explorer-bjs); }
.tcin-explorer .tcin-w-info-block--world_c{ border-top:4px solid var(--tcin-explorer-naic); }
.tcin-explorer .tcin-w-info-block-title{
  font-family:var(--tcin-explorer-serif);
  font-weight:700;
  font-size:14.5px;
  color:var(--tcin-explorer-teal-dk);
  margin:0 0 2px;
}
.tcin-explorer .tcin-w-info-block-sub{
  font-size:11.5px;
  font-style:italic;
  color:var(--tcin-explorer-muted);
  margin:0 0 4px;
  line-height:1.4;
}
.tcin-explorer .tcin-w-info-stat{
  display:flex;
  align-items:baseline;
  gap:5px;
  margin:4px 0 2px;
}
.tcin-explorer .tcin-w-info-stat-num{
  font-family:var(--tcin-explorer-serif);
  font-weight:700;
  color:var(--tcin-explorer-teal-dk);
  font-size:clamp(20px,4.4vw,26px);
  letter-spacing:-.01em;
  line-height:1;
}
.tcin-explorer .tcin-w-info-stat-unit{
  font-size:10.5px;
  text-transform:uppercase;
  letter-spacing:.04em;
  color:var(--tcin-explorer-muted);
  font-weight:600;
}
.tcin-explorer .tcin-w-info-stat-missing{
  font-size:12px;
  color:var(--tcin-explorer-muted);
  font-style:italic;
  margin:4px 0;
}
.tcin-explorer .tcin-w-info-block-scope{
  font-size:11px;
  color:var(--tcin-explorer-ink);
  margin:2px 0 4px;
  line-height:1.4;
}
.tcin-explorer .tcin-w-info-block-bullets{
  list-style:none;
  padding:0;
  margin:4px 0;
  font-size:11.5px;
  color:var(--tcin-explorer-ink);
  line-height:1.4;
  display:flex;
  flex-direction:column;
  gap:2px;
}
.tcin-explorer .tcin-w-info-block-bullets li{
  padding-left:11px;
  position:relative;
}
.tcin-explorer .tcin-w-info-block-bullets li::before{
  content:"·";
  position:absolute; left:4px; top:-1px;
  font-weight:700;
  color:var(--tcin-explorer-clay);
}
.tcin-explorer .tcin-w-info-block-source{
  font-size:10.5px;
  color:var(--tcin-explorer-muted);
  margin:6px 0 0;
  font-weight:600;
  letter-spacing:.03em;
}
.tcin-explorer .tcin-w-info-block-source a{
  color:var(--tcin-explorer-teal);
  text-decoration:none;
  border-bottom:1px dotted var(--tcin-explorer-teal-tint2);
}
.tcin-explorer .tcin-w-info-unify{
  font-family:var(--tcin-explorer-serif);
  font-weight:700;
  color:var(--tcin-explorer-teal-dk);
  font-size:14px;
  margin:10px 0 5px;
  line-height:1.4;
}
.tcin-explorer .tcin-w-info-unify-bullets{
  list-style:none;
  padding:0;
  margin:0 0 8px;
  font-size:12px;
  color:var(--tcin-explorer-ink);
  line-height:1.45;
  display:flex;
  flex-direction:column;
  gap:3px;
}
.tcin-explorer .tcin-w-info-unify-bullets li{
  padding-left:14px;
  position:relative;
}
.tcin-explorer .tcin-w-info-unify-bullets li::before{
  content:"→"; position:absolute; left:0; top:0;
  color:var(--tcin-explorer-clay-dk); font-weight:700;
}
.tcin-explorer .tcin-w-info-gap{
  font-size:12.5px;
  font-style:italic;
  color:var(--tcin-explorer-teal-dk);
  margin:6px 0 12px;
  line-height:1.5;
}
.tcin-explorer .tcin-w-info-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:8px;
}
.tcin-explorer .tcin-w-info-restart{
  background:transparent;
  border:1.5px solid var(--tcin-explorer-teal-tint2);
  border-radius:9px;
  padding:9px 16px;
  font:inherit;
  font-weight:600;
  font-size:13px;
  color:var(--tcin-explorer-teal);
  cursor:pointer;
  min-height:40px;
}
.tcin-explorer .tcin-w-info-restart:hover{
  border-color:var(--tcin-explorer-teal);
  background:var(--tcin-explorer-teal-tint);
}
.tcin-explorer .tcin-w-info-cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:var(--tcin-explorer-teal);
  color:#fff;
  text-decoration:none;
  font-weight:700;
  font-size:14px;
  padding:9px 18px;
  border-radius:9px;
  min-height:40px;
}
.tcin-explorer .tcin-w-info-cta:hover{ background:var(--tcin-explorer-teal-dk); }

/* ===== v2 stubs ===== */
.tcin-explorer .tcin-w-stub{
  padding:18px;
  border:1px dashed var(--tcin-explorer-line);
  border-radius:10px;
  background:var(--tcin-explorer-teal-tint);
}
.tcin-explorer .tcin-w-stub-h{
  font-weight:600;
  margin:0 0 4px;
  color:var(--tcin-explorer-teal-dk);
}
.tcin-explorer .tcin-w-stub-body{
  margin:0;
  font-size:12.5px;
  color:var(--tcin-explorer-muted);
}

/* ===== Footer (controls) ===== */
.tcin-explorer .tcin-w-footer{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding:13px 18px;
  border-top:1px solid var(--tcin-explorer-line);
  background:linear-gradient(0deg,var(--tcin-explorer-teal-tint) 0%,var(--tcin-explorer-card) 100%);
  flex:none;
}
.tcin-explorer .tcin-w-foot-spacer{ flex:1 1 auto; }
.tcin-explorer .tcin-w-btn{
  background:var(--tcin-explorer-card);
  border:1.5px solid var(--tcin-explorer-teal-tint2);
  border-radius:9px;
  padding:9px 16px;
  font:inherit;
  font-weight:600;
  font-size:13.5px;
  color:var(--tcin-explorer-teal);
  cursor:pointer;
  min-height:42px;
  transition:border-color .15s,background .15s,transform .1s;
}
.tcin-explorer .tcin-w-btn:hover{
  border-color:var(--tcin-explorer-teal);
  background:var(--tcin-explorer-teal-tint);
}
.tcin-explorer .tcin-w-btn:active{ transform:translateY(0); }
.tcin-explorer .tcin-w-btn:focus-visible{
  outline:2px solid var(--tcin-explorer-teal);
  outline-offset:2px;
}
.tcin-explorer .tcin-w-btn:disabled{
  opacity:.45;
  cursor:not-allowed;
}
.tcin-explorer .tcin-w-btn-next{
  background:var(--tcin-explorer-teal);
  color:#fff;
  border-color:var(--tcin-explorer-teal);
}
.tcin-explorer .tcin-w-btn-next:hover{
  background:var(--tcin-explorer-teal-dk);
  border-color:var(--tcin-explorer-teal-dk);
}
.tcin-explorer .tcin-w-btn-skip{
  border:none;
  background:transparent;
  color:var(--tcin-explorer-muted);
  font-weight:500;
  padding:9px 10px;
}
.tcin-explorer .tcin-w-btn-skip:hover{
  color:var(--tcin-explorer-teal-dk);
  background:transparent;
}
.tcin-explorer .tcin-w-btn-back{
  /* same as default */
}

@media (max-width:560px){
  .tcin-explorer .tcin-w-footer{ padding:11px 14px; }
  .tcin-explorer .tcin-w-btn{ padding:8px 12px; font-size:13px; min-height:40px; }
  .tcin-explorer .tcin-w-header{ padding:14px 16px 11px; }
  .tcin-explorer .tcin-w-prog-label{ font-size:11px; letter-spacing:.04em; }
}
