/* styles.css — "government portal, 2009" (§15).
   The clunkiness is cosmetic. Nothing here may cost usability (§16). */

/* ---------- tokens ---------- */
:root {
  --blue:        #0B3D91;
  --blue-pale:   #DCE4F2;
  --orange:      #F7941D;
  --ink:         #1A1A1A;
  --page:        #E9E9E9;
  --panel:       #FFFFFF;
  --rule:        #999999;
  --rule-light:  #CCCCCC;
  --btn-face:    #EFEFEF;
  --btn-edge:    #D4D4D4;
  --link:        #0000EE;
  --link-seen:   #551A8B;
  --err-bg:      #FFF3F3;
  --err-edge:    #C00000;
  --ok-bg:       #F3FFF3;
  --ok-edge:     #007A00;
  --note-bg:     #FFFBE6;
  --note-edge:   #B08000;
  --row-alt:     #F4F6FA;
  font-size: 16px;                     /* the A- / A / A+ buttons rewrite this: 14 / 16 / 18 */
}

/* ---------- reset-ish ---------- */
* { box-sizing: border-box; }

/* Must outrank every display: rule below — the state machine and the modal
   are driven entirely by the hidden attribute. */
[hidden] { display: none !important; }

body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}

h1, h2, h3, h4 {
  font-family: "Times New Roman", Times, serif;
  font-weight: bold;
  margin: 0 0 .4em;
}

p { margin: 0 0 .7em; }

a { color: var(--link); text-decoration: underline; }
a:visited { color: var(--link-seen); }

img { max-width: 100%; }

.mono, .counter, .serial {
  font-family: "Courier New", Courier, monospace;
}

.wrap {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 12px;
}

/* Visible focus everywhere. A dotted retro ring is on-theme and legible. */
:focus { outline: 2px dotted var(--blue); outline-offset: 2px; }
:focus:not(:focus-visible) { outline: none; }
:focus-visible { outline: 2px dotted var(--blue); outline-offset: 2px; }
.masthead :focus-visible, .noticestrip :focus-visible { outline-color: #FFFFFF; }

.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: #FFFFFF;
  color: var(--blue);
  padding: 8px 12px;
  border: 2px solid var(--blue);
  z-index: 100;
}
.skip-link:focus { left: 8px; top: 8px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  font: inherit;
  line-height: 1.3;
  padding: 7px 14px;
  background: var(--btn-face);
  color: var(--ink);
  border: 2px outset var(--btn-edge);
  text-decoration: none;
  cursor: pointer;
}
.btn:visited { color: var(--ink); }
.btn:hover { background: #E4E4E4; }
.btn:active { border-style: inset; }
.btn[disabled] { opacity: .55; cursor: not-allowed; }

.btn-primary {
  background: var(--blue);
  color: #FFFFFF;
  border-color: #3A63AB;
}
.btn-primary:visited { color: #FFFFFF; }
.btn-primary:hover { background: #0A3480; }

.btn-submit { font-weight: bold; }
.btn-download { font-weight: bold; }

/* ---------- top strip ---------- */
.topstrip {
  background: #D6D6D6;
  border-bottom: 1px solid var(--rule);
  font-size: .8125rem;
}
.topstrip-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  min-height: 30px;
}
.textsize { display: flex; align-items: center; gap: 4px; }
.textsize button {
  font: inherit;
  min-width: 30px;
  padding: 2px 6px;
  background: var(--btn-face);
  border: 2px outset var(--btn-edge);
  cursor: pointer;
}
.textsize button[aria-pressed="true"] { border-style: inset; font-weight: bold; }

/* ---------- masthead ---------- */
.masthead {
  background: var(--blue);
  color: #FFFFFF;
  border-bottom: 3px solid #072A66;
}
.masthead-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding-top: 12px;
  padding-bottom: 12px;
}
.masthead a { color: #FFFFFF; }
.department {
  margin: 0;
  font-size: .8125rem;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.sitetitle {
  margin: .1em 0 .05em;
  font-size: 1.75rem;
  color: #FFFFFF;
}
.tagline { margin: 0; font-size: .8125rem; font-style: italic; color: #D8E1F2; }

.masthead-actions { position: relative; flex: 0 0 auto; }

.suggest-button {
  display: inline-block;
  padding: 8px 12px;
  background: var(--btn-face);
  color: var(--blue) !important;
  border: 2px outset var(--btn-edge);
  text-decoration: none;
  font-weight: bold;
  font-size: .875rem;
}
.suggest-button:hover { background: #FFFFFF; }
.suggest-button:active { border-style: inset; }

.badge {
  display: inline-block;
  margin-left: 6px;
  color: #C00000;
  font-weight: bold;
  font-size: .8125rem;
  animation: blink 1s step-end infinite;
}
@keyframes blink { 50% { opacity: 0; } }

/* ---------- callout (§12.2) ---------- */
.coachmark {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  width: 290px;
  z-index: 50;
  background: #FFFFFF;
  color: var(--ink);
  border: 1px solid var(--rule);
  box-shadow: 2px 2px 0 var(--rule);
  padding: 12px 14px;
  text-align: left;
  animation: pop .12s ease-out;
}
@keyframes pop { from { transform: translateY(-4px); } }

.coachmark::before,
.coachmark::after {
  content: "";
  position: absolute;
  right: 26px;
  width: 0; height: 0;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
}
.coachmark::before {
  top: -10px;
  border-bottom: 10px solid var(--rule);
}
.coachmark::after {
  top: -9px;
  border-bottom: 10px solid #FFFFFF;
}

.coachmark-title { font-weight: bold; margin: 0 0 .3em; padding-right: 18px; }
.coachmark-body { font-size: .8125rem; margin: 0 0 .7em; }
.coachmark-actions { display: flex; gap: 8px; margin: 0; flex-wrap: wrap; }
.coachmark-actions .btn { font-size: .8125rem; padding: 5px 10px; }
.coachmark-close {
  position: absolute;
  top: 4px; right: 6px;
  background: none;
  border: 0;
  font-size: 1.1rem;
  line-height: 1;
  padding: 4px 6px;
  cursor: pointer;
  color: var(--ink);
}

/* ---------- notice strip ---------- */
.noticestrip {
  background: var(--orange);
  color: var(--ink);
  border-bottom: 1px solid #C97512;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.marquee {
  padding: 6px 0;
  white-space: nowrap;
  overflow: hidden;
  font-size: .875rem;
  font-weight: bold;
}
.marquee-text {
  display: inline-block;
  padding-left: 100%;
  animation: scroll-left 28s linear infinite;
}
.marquee:hover .marquee-text,
.marquee:focus-within .marquee-text { animation-play-state: paused; }
@keyframes scroll-left {
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); }
}

/* ---------- layout ---------- */
.layout {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding-top: 16px;
  padding-bottom: 24px;
}
.sidebar { flex: 0 0 210px; }
.main { flex: 1 1 auto; min-width: 0; }

.menu-toggle { display: none; }

/* ---------- panels ---------- */
.panel {
  background: var(--panel);
  border: 1px solid var(--rule);
  margin: 0 0 16px;
}
.panel-title {
  margin: 0;
  padding: 6px 10px;
  background: var(--blue-pale);
  color: var(--blue);
  border-bottom: 1px solid var(--rule);
  font-size: 1.125rem;
}
.panel-body { padding: 12px; }

.sidebar .panel-title {
  border: 1px solid var(--rule);
  border-bottom: 0;
}
.sidebar-links {
  margin: 0;
  padding: 8px 10px 8px 26px;
  background: var(--panel);
  border: 1px solid var(--rule);
  font-size: .875rem;
}
.sidebar-links li { margin: 0 0 .35em; }

.visitors {
  margin-top: 14px;
  padding: 8px 10px;
  background: var(--panel);
  border: 1px solid var(--rule);
  font-size: .75rem;
  text-align: center;
}
.visitors p { margin: 0 0 .4em; }
.counter {
  display: inline-block;
  padding: 4px 8px;
  background: #111111;
  color: #33FF66;
  border: 2px inset #555555;
  letter-spacing: .18em;
  font-size: .875rem;
}

/* ---------- upload ---------- */
.dropzone {
  border: 2px dashed var(--rule);
  background: #FAFAFA;
  padding: 26px 14px;
  text-align: center;
  cursor: pointer;
}
.dropzone.is-dragover { border-color: var(--blue); background: #F0F4FC; }
.dropzone[aria-disabled="true"] { opacity: .6; cursor: not-allowed; }
.dropzone-text { margin: 0 0 .8em; font-size: .9375rem; }
.dropzone-mobile { display: none; }

.submit-row { margin: 14px 0 16px; }

.helper, .accepted {
  font-size: .8125rem;
  color: #444444;
  margin: 0 0 .5em;
}
.helper-strong { font-weight: bold; color: var(--ink); }
.accepted { margin-top: .9em; color: #333333; }

.privacy {
  font-size: .875rem;
  font-weight: bold;
  padding: 8px 10px;
  background: var(--ok-bg);
  border-left: 3px solid var(--ok-edge);
}
.storagenote {
  font-size: .75rem;
  color: #444444;
  padding: 0 10px;
}

/* ---------- processing ---------- */
.progress-text { margin: 0 0 10px; font-size: .9375rem; }
.progressbar {
  height: 18px;
  border: 2px inset var(--btn-edge);
  background: #FFFFFF;
  overflow: hidden;
}
.progressbar > span {
  display: block;
  height: 100%;
  width: 40%;
  background-image: repeating-linear-gradient(
    45deg, var(--blue) 0 10px, #2C5BA8 10px 20px);
}
.progressbar.is-running > span { animation: crawl 1.1s linear infinite; }
@keyframes crawl {
  from { transform: translateX(-100%); }
  to   { transform: translateX(250%); }
}

/* ---------- result ---------- */
.success {
  font-weight: bold;
  padding: 8px 10px;
  background: var(--ok-bg);
  border-left: 3px solid var(--ok-edge);
}
.previews {
  display: flex;
  gap: 14px;
  margin: 0 0 14px;
}
.previews figure {
  flex: 1 1 0;
  min-width: 0;
  margin: 0;
  border: 1px solid var(--rule-light);
  padding: 8px;
  background: #FCFCFC;
  text-align: center;
}
.previews figcaption {
  font-size: .8125rem;
  font-weight: bold;
  margin-bottom: 6px;
}
.previews img {
  display: block;
  width: 100%;
  max-height: 360px;
  object-fit: contain;
  background: #FFFFFF;
}

.stats {
  border-collapse: collapse;
  width: 100%;
  font-size: .875rem;
  margin: 0 0 .5em;
}
.stats th, .stats td {
  border: 1px solid var(--rule-light);
  padding: 6px 8px;
  text-align: left;
  vertical-align: top;
}
.stats th {
  background: var(--row-alt);
  width: 34%;
  font-family: Verdana, Arial, sans-serif;
  font-weight: bold;
}
.sizenote { font-size: .75rem; color: #444444; }

.flags, .notices {
  margin: .8em 0;
  padding-left: 22px;
  font-size: .8125rem;
}
.notices {
  list-style: none;
  padding: 8px 10px;
  background: var(--note-bg);
  border-left: 3px solid var(--note-edge);
}
.notices li + li { margin-top: .4em; }

.download-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 14px 0;
}
.footnote { font-size: .75rem; color: #444444; }

/* ---------- error ---------- */
.panel-error { background: var(--err-bg); border-left: 2px solid var(--err-edge); }
.error-title { margin: 0 0 .4em; font-size: 1.125rem; color: #8C0000; }
.error-help { margin: 0 0 .9em; font-size: .9375rem; }

/* ---------- premium modal (§10) ---------- */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  z-index: 200;
}
.modal {
  position: relative;
  background: var(--panel);
  border: 2px solid var(--blue);
  box-shadow: 4px 4px 0 rgba(0, 0, 0, .35);
  padding: 18px;
  max-width: 720px;
  width: 100%;
  max-height: 90vh;
  overflow: auto;
}
.modal h2 { font-size: 1.25rem; color: var(--blue); padding-right: 24px; }
.modal-close {
  position: absolute;
  top: 6px; right: 8px;
  background: none;
  border: 0;
  font-size: 1.3rem;
  line-height: 1;
  padding: 4px 8px;
  cursor: pointer;
}
.plans { display: flex; gap: 12px; flex-wrap: wrap; margin: 12px 0; }
.plan {
  flex: 1 1 180px;
  border: 1px solid var(--rule);
  padding: 10px;
  background: #FCFCFC;
}
.plan h4 { margin: 0 0 .3em; font-size: 1rem; }
.plan-badge {
  display: inline-block;
  margin: 0 0 .4em;
  padding: 1px 6px;
  background: var(--orange);
  color: var(--ink);
  font-size: .6875rem;
  font-weight: bold;
}
.plan-price { font-weight: bold; margin: 0 0 .5em; }
.plan ul { margin: 0; padding-left: 20px; font-size: .8125rem; }
.modal-actions { display: flex; gap: 10px; flex-wrap: wrap; margin: 14px 0 0; }
.thanks {
  padding: 10px;
  background: var(--ok-bg);
  border-left: 3px solid var(--ok-edge);
  font-size: .9375rem;
}
.unlimited {
  margin: .7em 0 0;
  padding: 8px 10px;
  background: var(--note-bg);
  border-left: 3px solid var(--note-edge);
  font-size: .875rem;
  font-weight: bold;
}
.modal-footer {
  margin: 14px 0 0;
  padding-top: 8px;
  border-top: 1px solid var(--rule-light);
  font-size: .75rem;
  color: #444444;
}

/* ---------- footer ---------- */
.sitefooter {
  background: #DCDCDC;
  border-top: 1px solid var(--rule);
  padding: 14px 0 22px;
  font-size: .8125rem;
  color: #333333;
}
.sitefooter p { margin: 0 0 .5em; }
.disclaimer { font-weight: bold; }
.credit { font-size: .75rem; }
.copyright { font-size: .75rem; color: #555555; }

.videobox {
  margin: 12px 0;
  padding: 10px;
  background: #CFCFCF;
  border: 1px solid var(--rule);
  max-width: 600px;
}
.videobox-heading {
  font-family: "Times New Roman", Times, serif;
  font-weight: bold;
  font-size: 1rem;
  margin: 0 0 .3em;
}
.videobox-note { font-size: .75rem; margin: 0 0 .7em; }
.videobox-frame iframe {
  display: block;
  width: 100%;
  max-width: 560px;
  aspect-ratio: 16 / 9;
  height: auto;
  border: 1px solid var(--rule);
  background: #000000;
  margin-bottom: .7em;
}

/* ---------- register (suggestions page, Session 2) ---------- */
.register { border-collapse: collapse; width: 100%; font-size: .875rem; }
.register th, .register td {
  border: 1px solid var(--rule-light);
  padding: 6px 8px;
  text-align: left;
  vertical-align: top;
}
.register thead th { background: var(--blue-pale); color: var(--blue); }
.register tbody tr:nth-child(even) { background: var(--row-alt); }

.register-wrap { overflow-x: auto; }          /* the table may scroll, the page must not */
.register-rule { border: 0; border-top: 1px solid var(--rule-light); margin: 16px 0 12px; }
.register caption { text-align: left; }

/* the Entry cell holds the body, its time, its replies and the compose box */
.entry-cell { overflow-wrap: anywhere; }
.entry-body { margin: 0 0 .3em; }
.entry-meta { margin: 0 0 .5em; font-size: .75rem; color: #555555; }
.serial { width: 3.5em; text-align: right; background: var(--row-alt); }

/* replies: indented, one level only */
.replies-label { margin: .4em 0 .2em; font-size: .75rem; font-weight: bold; color: #444444; }
.replies {
  margin: 0 0 .5em;
  padding: 0 0 0 12px;
  list-style: none;
  border-left: 3px solid var(--rule-light);
}
.reply { padding: .4em 0; border-top: 1px dotted var(--rule-light); }
.reply:first-child { border-top: 0; }
.reply-body { margin: 0 0 .2em; overflow-wrap: anywhere; }
.reply-actions { display: flex; gap: 6px; align-items: center; flex-wrap: wrap; margin: 0; }

.replyform {
  margin: .5em 0;
  padding: 8px;
  background: var(--row-alt);
  border: 1px solid var(--rule-light);
}
.replyform p { margin: 0 0 .5em; }
.replyform p:last-child { margin: 0; }
.replyform textarea { width: 100%; }

/* vote buttons: small, with the count beside the label */
.vote { padding: 4px 8px; font-size: .8125rem; white-space: nowrap; }
.votecount { font-weight: bold; }
.votecell, .actioncell { text-align: center; white-space: nowrap; }

/* a button that has to look like the retro link it replaces */
.linkish {
  background: none;
  border: 0;
  padding: 2px 4px;
  font: inherit;
  color: var(--link);
  text-decoration: underline;
  cursor: pointer;
}
.linkish:disabled { color: #777777; text-decoration: none; cursor: default; }

/* the suggestion form */
#suggest-form textarea { width: 100%; font: inherit; padding: 6px; border: 2px inset var(--btn-edge); }
.charcount { margin: .3em 0 .8em; font-size: .75rem; color: #444444; }
.charcount.is-over { color: #8C0000; font-weight: bold; }

.register-status {
  margin: .5em 0;
  min-height: 1.2em;
  font-size: .875rem;
  font-weight: bold;
  color: var(--blue);
}

.sort-toggle { display: flex; gap: 8px; margin: 0 0 12px; flex-wrap: wrap; }
.sort-toggle .btn[aria-pressed="true"] { border-style: inset; font-weight: bold; }

/* Not .sr-only: that class keeps content in the accessibility tree, so a
   screen-reader user would be the one filling the bot trap. */
.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ---------- moderation page (§13.6) ----------
   Every selector here is scoped to .admin-register or an admin-* class, so the
   public register renders exactly as before. No animation is added: P28's
   verified set is the four selectors mirrored in the reduced-motion block. */

.admin-layout { padding-top: 16px; padding-bottom: 24px; }
.admin-toolbar { display: flex; gap: 8px; flex-wrap: wrap; margin: 0 0 10px; }

.admin-password {
  font: inherit;
  padding: 6px 8px;
  min-width: 16rem;
  max-width: 100%;
  background: #FFFFFF;
  border: 2px inset var(--btn-edge);
}

/* De-emphasised on purpose: Hide is the reversible default and keeps
   .btn-primary, Delete is permanent and must not look like the easy path. */
.btn-danger {
  color: #8C0000;
  font-weight: bold;
  background: var(--btn-face);
  border-color: #C9A0A0;
}
.btn-danger:hover { background: #F6E4E4; }

.admin-register th, .admin-register td { vertical-align: top; }
.admin-register .admin-when { white-space: nowrap; font-size: .75rem; color: #444444; }
.admin-register .admin-votes,
.admin-register .admin-reports { text-align: right; white-space: nowrap; }
.admin-register .admin-votesep::before { content: " / "; color: #777777; }
.admin-register .admin-state { white-space: nowrap; font-size: .8125rem; }

/* A 250-character unbroken token, stacked combining marks or a right-to-left
   script must not push the table wider than the page or cover another row's
   controls. */
.admin-register .admin-bodycell { min-width: 14rem; }
.admin-register .admin-body {
  overflow-wrap: anywhere;
  word-break: break-word;
  max-height: 9rem;
  overflow: auto;
}
.admin-register .admin-reply-of {
  margin: 0 0 .3em;
  font-size: .6875rem;
  color: #555555;
  overflow-wrap: anywhere;
}

/* Actions must be allowed to wrap — .actioncell's nowrap would widen the table. */
.admin-register .admin-actions {
  white-space: normal;
  text-align: left;
}
.admin-register .admin-actions .btn {
  padding: 5px 10px;
  font-size: .8125rem;
  margin: 0 4px 4px 0;
}

/* A reply is indented and ruled, so its own Delete is obviously its own. */
.admin-register tr.is-reply-row .admin-bodycell {
  padding-left: 20px;
  border-left: 3px solid var(--blue-pale);
}
.admin-register tr.is-reply-row .admin-reply-of {
  font-size: .75rem;
  font-weight: bold;
  color: var(--blue);
}

.admin-register tr.is-hidden-row { background: var(--err-bg); }
.admin-register tr.is-hidden-row .admin-state { color: #8C0000; font-weight: bold; }
.admin-register tr.is-parent-hidden .admin-reply-of { color: #8C0000; }

/* ---------- phones (§16) ---------- */
@media (max-width: 720px) {
  .layout { display: block; }

  .menu-toggle {
    display: inline-block;
    font: inherit;
    min-height: 44px;
    padding: 8px 14px;
    margin: 0 0 12px;
    background: var(--btn-face);
    border: 2px outset var(--btn-edge);
    cursor: pointer;
  }
  .sidebar { display: none; margin-bottom: 16px; }
  .sidebar.is-open { display: block; }

  .masthead-inner { position: relative; flex-wrap: wrap; }
  .masthead-actions { position: static; width: 100%; }
  .sitetitle { font-size: 1.375rem; }

  .coachmark {
    left: 12px;
    right: 12px;
    width: auto;
    top: calc(100% + 10px);
  }
  .coachmark::before, .coachmark::after { right: 34px; }

  .dropzone-desktop { display: none; }
  .dropzone-mobile { display: block; }

  .previews { display: block; }
  .previews figure + figure { margin-top: 12px; }

  .btn, .textsize button, .suggest-button {
    min-height: 44px;
    padding: 10px 14px;
  }
  .coachmark-actions .btn { min-height: 44px; }
  .coachmark-close, .modal-close { min-width: 44px; min-height: 44px; }

  .stats th { width: 42%; }

  /* the register becomes stacked cards: six columns cannot fit 375 px */
  .register, .register tbody, .register tr, .register th, .register td {
    display: block;
    width: auto;
  }
  .register thead { display: none; }
  .register tr {
    border: 1px solid var(--rule-light);
    margin-bottom: 10px;
    padding: 6px;
  }
  .register th, .register td { border: 0; padding: 4px 2px; }
  .serial { width: auto; text-align: left; background: none; font-weight: bold; }
  .votecell, .actioncell { text-align: left; display: inline-block; }
  .linkish { min-height: 44px; }
  .vote { min-height: 44px; }
  .register-wrap { overflow-x: visible; }

  /* The admin table keeps its own scroller: six columns of moderation data do
     not collapse into a readable card, and losing the headers (.register thead
     is hidden above) would leave bare numbers with nothing naming them. */
  .admin-register, .admin-register tbody, .admin-register tr,
  .admin-register th, .admin-register td { display: revert; width: auto; }
  .admin-register thead { display: table-header-group; }
  .admin-register tr { border: 0; margin: 0; padding: 0; }
  .admin-register th, .admin-register td { border: 1px solid var(--rule-light); padding: 6px 8px; }
  .admin-register .admin-bodycell { min-width: 12rem; }
  .admin-register .admin-actions .btn { min-height: 44px; }
  .admin-layout .register-wrap { overflow-x: auto; }
  .admin-password { min-width: 0; width: 100%; }
}

/* ---------- reduced motion (§16, non-negotiable) ---------- */
@media (prefers-reduced-motion: reduce) {
  .marquee-text {
    animation: none;
    padding-left: 0;
    white-space: normal;
    display: block;
  }
  .marquee { white-space: normal; }
  .badge { animation: none; }
  .progressbar.is-running > span { animation: none; width: 100%; }
  .coachmark { animation: none; }
  * { transition: none !important; }
}
