/* ==========================================================================
   Templatify — standalone product identity
   Dark + white base with purple as the single accent. Builder/studio mood:
   geometric sans (Outfit) for type, mono (JetBrains Mono) for the JSON/code
   visuals that show what the tool actually outputs.
   Completely independent of the main WebsGrow site.css.
   ========================================================================== */

:root {
  --tf-bg:        #0D0B14;
  --tf-bg-raised: #14111F;
  --tf-bg-card:   #1A1626;
  --tf-ink:       #F2F0F7;
  --tf-text-dim:  #A79FBF;
  --tf-text-faint:#6F6890;

  --tf-purple:       #8B5CF6;
  --tf-purple-dark:  #7C3AED;
  --tf-purple-light: #C4B5FD;
  --tf-purple-tint:  rgba(139, 92, 246, 0.14);

  --tf-line:        rgba(242, 240, 247, 0.10);
  --tf-line-strong: rgba(242, 240, 247, 0.20);

  --tf-shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3), 0 10px 24px -16px rgba(0, 0, 0, 0.6);
  --tf-shadow-md: 0 8px 26px rgba(0, 0, 0, 0.35), 0 30px 60px -24px rgba(124, 58, 237, 0.25);
  --tf-glow: 0 0 0 1px rgba(139, 92, 246, 0.35), 0 8px 40px -8px rgba(139, 92, 246, 0.45);

  --tf-font: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --tf-mono: 'JetBrains Mono', ui-monospace, 'SF Mono', monospace;

  --tf-fs-sm:   clamp(0.85rem, 0.82rem + 0.14vw, 0.95rem);
  --tf-fs-base: clamp(1rem, 0.96rem + 0.2vw, 1.1rem);
  --tf-fs-lg:   clamp(1.15rem, 1.05rem + 0.4vw, 1.35rem);
  --tf-fs-xl:   clamp(1.4rem, 1.25rem + 0.7vw, 1.85rem);
  --tf-fs-2xl:  clamp(1.9rem, 1.55rem + 1.5vw, 2.6rem);
  --tf-fs-3xl:  clamp(2.4rem, 1.8rem + 2.6vw, 3.8rem);

  --tf-sp-1: 0.5rem;
  --tf-sp-2: 1rem;
  --tf-sp-3: 1.5rem;
  --tf-sp-4: 2rem;
  --tf-sp-5: 3rem;
  --tf-sp-6: 4.5rem;

  --tf-radius: 16px;
  --tf-radius-sm: 10px;
  --tf-container: 1120px;
  --tf-ease: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--tf-bg);
  color: var(--tf-ink);
  font-family: var(--tf-font);
  font-size: var(--tf-fs-base);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  background-image:
    radial-gradient(ellipse 60% 40% at 50% -5%, rgba(124, 58, 237, 0.16), transparent 65%),
    linear-gradient(rgba(242, 240, 247, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242, 240, 247, 0.025) 1px, transparent 1px);
  background-size: auto, 44px 44px, 44px 44px;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; }

.tf-container {
  width: 100%;
  max-width: var(--tf-container);
  margin-inline: auto;
  padding-inline: var(--tf-sp-3);
}

h1, h2, h3, h4 {
  font-weight: 600;
  line-height: 1.14;
  letter-spacing: -0.02em;
  color: var(--tf-ink);
}
h1 { font-size: var(--tf-fs-3xl); }
h2 { font-size: var(--tf-fs-2xl); }
h3 { font-size: var(--tf-fs-xl); }
p { color: var(--tf-text-dim); }

.tf-accent { color: var(--tf-purple-light); }

.tf-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  font-size: var(--tf-fs-sm);
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--tf-purple-light);
}
.tf-eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--tf-purple);
}

/* Buttons */
.tf-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 0.9em 1.7em;
  border-radius: 11px;
  font-weight: 600;
  font-size: var(--tf-fs-sm);
  border: 1px solid transparent;
  transition: transform 0.25s var(--tf-ease), background 0.25s var(--tf-ease), border-color 0.25s var(--tf-ease), color 0.25s var(--tf-ease), box-shadow 0.25s var(--tf-ease);
  white-space: nowrap;
}
.tf-btn:hover { transform: translateY(-2px); }
.tf-btn:active { transform: translateY(0) scale(0.98); }
.tf-btn-primary {
  background: var(--tf-purple);
  color: #fff;
  box-shadow: var(--tf-shadow-sm);
}
.tf-btn-primary:hover { background: var(--tf-purple-dark); box-shadow: var(--tf-glow); }
.tf-btn-outline {
  border-color: var(--tf-line-strong);
  color: var(--tf-ink);
  background: transparent;
}
.tf-btn-outline:hover { border-color: var(--tf-purple); color: var(--tf-purple-light); }

:focus-visible {
  outline: 2px solid var(--tf-purple);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ==========================================================================
   Header — small, standalone, links back to WebsGrow
   ========================================================================== */
.tf-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 11, 20, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--tf-line);
}
.tf-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: var(--tf-sp-2);
}
.tf-logo {
  display: flex;
  align-items: center;
  gap: 0.55em;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.01em;
  color: var(--tf-ink);
}
.tf-logo .tf-logo-img { width: 30px; height: 30px; border-radius: 8px; }
.tf-back-link {
  display: flex;
  align-items: center;
  gap: 0.45em;
  font-size: var(--tf-fs-sm);
  font-weight: 600;
  color: var(--tf-text-dim);
  transition: color 0.2s var(--tf-ease), transform 0.2s var(--tf-ease);
}
.tf-back-link:hover { color: var(--tf-purple-light); transform: translateX(-2px); }

/* ==========================================================================
   Hero
   ========================================================================== */
.tf-hero { position: relative; padding: var(--tf-sp-6) 0 var(--tf-sp-5); text-align: center; }
.tf-hero-inner { position: relative; z-index: 1; max-width: 760px; margin-inline: auto; }
.tf-hero-logo { margin: 0 auto var(--tf-sp-3); width: 64px; height: 64px; }
.tf-hero-logo .tf-logo-img { width: 64px; height: 64px; border-radius: 16px; box-shadow: var(--tf-glow); }
.tf-hero h1 { margin-top: var(--tf-sp-3); }
.tf-hero-sub { margin: var(--tf-sp-3) auto 0; max-width: 600px; font-size: var(--tf-fs-lg); }
.tf-hero-cta { display: flex; flex-wrap: wrap; justify-content: center; gap: var(--tf-sp-2); margin-top: var(--tf-sp-4); }
.tf-hero-note { margin-top: var(--tf-sp-3); font-size: var(--tf-fs-sm); color: var(--tf-text-faint); }

/* ==========================================================================
   Hero pipeline demo — input tabs → JSON → rendered page
   ========================================================================== */
.tf-pipeline {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--tf-sp-2);
  align-items: stretch;
  max-width: 1040px;
  margin: var(--tf-sp-5) auto 0;
  text-align: left;
}
@media (min-width: 980px) {
  .tf-pipeline { grid-template-columns: 1.15fr auto 1fr auto 1fr; align-items: center; }
}

.tf-panel {
  background: var(--tf-bg-card);
  border: 1px solid var(--tf-line);
  border-radius: var(--tf-radius);
  box-shadow: var(--tf-shadow-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.tf-panel-bar {
  display: flex;
  align-items: center;
  gap: 0.45em;
  padding: 0.6em 1em;
  border-bottom: 1px solid var(--tf-line);
  background: var(--tf-bg-raised);
}
.tf-panel-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--tf-line-strong); }
.tf-panel-title {
  margin-left: 0.5em;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--tf-text-faint);
}

.tf-pipe-arrow {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--tf-purple);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  flex-shrink: 0;
  animation: tf-nudge 2.2s ease-in-out infinite;
}
.tf-pipe-arrow svg { width: 20px; height: 20px; transform: rotate(90deg); }
@media (min-width: 980px) { .tf-pipe-arrow svg { transform: none; } }
@keyframes tf-nudge {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(4px); }
}

/* Input panel — 3 tabs */
.tf-tabs { display: flex; border-bottom: 1px solid var(--tf-line); }
.tf-tab {
  flex: 1;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  color: var(--tf-text-faint);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.7em 0.4em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4em;
  transition: color 0.2s var(--tf-ease), border-color 0.2s var(--tf-ease);
}
.tf-tab svg { width: 14px; height: 14px; }
.tf-tab.is-active { color: var(--tf-purple-light); border-bottom-color: var(--tf-purple); }
.tf-tab:hover { color: var(--tf-ink); }
.tf-tab-panels { padding: var(--tf-sp-3); flex: 1; }
.tf-tab-panel { display: none; }
.tf-tab-panel.is-active { display: block; }

.tf-input-box {
  border: 1px solid var(--tf-line-strong);
  border-radius: var(--tf-radius-sm);
  background: var(--tf-bg);
  padding: 0.9em 1em;
  font-size: var(--tf-fs-sm);
  color: var(--tf-text-dim);
  min-height: 96px;
}
.tf-input-box em { font-style: normal; color: var(--tf-ink); }
.tf-input-caret {
  display: inline-block;
  width: 2px; height: 1em;
  background: var(--tf-purple-light);
  vertical-align: text-bottom;
  margin-left: 1px;
  animation: tf-blink 0.9s steps(1) infinite;
}
@keyframes tf-blink { 50% { opacity: 0; } }
.tf-url-pill {
  display: flex; align-items: center; gap: 0.5em;
  border: 1px solid var(--tf-line-strong); border-radius: 999px;
  background: var(--tf-bg); padding: 0.55em 1em;
  font-size: var(--tf-fs-sm); color: var(--tf-text-dim);
}
.tf-url-pill svg { width: 14px; height: 14px; color: var(--tf-text-faint); flex-shrink: 0; }
.tf-drop {
  border: 1.5px dashed var(--tf-line-strong);
  border-radius: var(--tf-radius-sm);
  background: var(--tf-purple-tint);
  padding: var(--tf-sp-3);
  text-align: center;
  font-size: var(--tf-fs-sm);
  color: var(--tf-text-dim);
}
.tf-drop svg { width: 22px; height: 22px; margin: 0 auto 0.5em; color: var(--tf-purple-light); }
.tf-generate {
  margin-top: var(--tf-sp-2);
  width: 100%;
  border: none;
  border-radius: var(--tf-radius-sm);
  background: var(--tf-purple);
  color: #fff;
  font-weight: 700;
  font-size: var(--tf-fs-sm);
  padding: 0.75em;
  pointer-events: none;
}

/* JSON panel */
.tf-json { padding: var(--tf-sp-3); font-family: var(--tf-mono); font-size: 0.72rem; line-height: 1.75; white-space: nowrap; overflow: hidden; }
.tf-json .k { color: var(--tf-purple-light); }
.tf-json .v { color: var(--tf-ink); }
.tf-json .p { color: var(--tf-text-faint); }
.tf-json-badges { display: flex; flex-wrap: wrap; gap: 0.4em; padding: 0 var(--tf-sp-3) var(--tf-sp-3); }
.tf-badge {
  font-size: 0.68rem; font-weight: 700;
  color: var(--tf-purple-light); background: var(--tf-purple-tint);
  border: 1px solid rgba(139, 92, 246, 0.3);
  padding: 0.3em 0.75em; border-radius: 999px;
}

/* Rendered-page panel */
.tf-render { padding: var(--tf-sp-3); }
.tf-render-nav { display: flex; align-items: center; gap: 0.5em; margin-bottom: 0.9em; }
.tf-render-nav i { width: 26px; height: 8px; border-radius: 4px; background: var(--tf-line-strong); }
.tf-render-nav i:first-child { width: 14px; height: 14px; border-radius: 4px; background: var(--tf-purple); }
.tf-render-nav i:last-child { margin-left: auto; width: 34px; height: 12px; border-radius: 6px; background: var(--tf-purple); }
.tf-render-hero { text-align: center; padding: 0.6em 0 1em; }
.tf-render-hero b { display: block; width: 70%; height: 12px; border-radius: 5px; background: var(--tf-ink); margin: 0 auto; }
.tf-render-hero span { display: block; width: 50%; height: 8px; border-radius: 4px; background: var(--tf-text-faint); margin: 0.5em auto 0.8em; }
.tf-render-hero i { display: inline-block; width: 56px; height: 16px; border-radius: 6px; background: var(--tf-purple); }
.tf-render-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5em; }
.tf-render-cards span {
  height: 34px; border-radius: 6px;
  background: var(--tf-bg-raised); border: 1px solid var(--tf-line);
}
.tf-render-tag {
  margin-top: 0.9em;
  display: inline-flex; align-items: center; gap: 0.4em;
  font-size: 0.68rem; font-weight: 700; color: var(--tf-purple-light);
}
.tf-render-tag::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--tf-purple); animation: tf-pulse 1.6s ease-in-out infinite; }
@keyframes tf-pulse { 50% { opacity: 0.35; } }

/* ==========================================================================
   Section shell
   ========================================================================== */
.tf-section { padding: var(--tf-sp-6) 0; position: relative; }
.tf-section-alt { background: var(--tf-bg-raised); border-top: 1px solid var(--tf-line); border-bottom: 1px solid var(--tf-line); }
.tf-section-head { max-width: 640px; margin-bottom: var(--tf-sp-4); }
.tf-section-head.center { margin-inline: auto; text-align: center; }
.tf-section-head h2 { margin-top: var(--tf-sp-2); }
.tf-section-head p { margin-top: var(--tf-sp-2); font-size: var(--tf-fs-lg); }

/* ==========================================================================
   How it works — 4 steps
   ========================================================================== */
.tf-steps { display: grid; grid-template-columns: 1fr; gap: var(--tf-sp-3); }
.tf-step {
  background: var(--tf-bg-card);
  border: 1px solid var(--tf-line);
  border-radius: var(--tf-radius);
  padding: var(--tf-sp-3);
  transition: transform 0.3s var(--tf-ease), border-color 0.3s var(--tf-ease), box-shadow 0.3s var(--tf-ease);
}
.tf-step:hover { transform: translateY(-4px); border-color: rgba(139, 92, 246, 0.4); box-shadow: var(--tf-shadow-md); }
.tf-step-num {
  width: 38px; height: 38px; border-radius: 11px;
  background: var(--tf-purple-tint); color: var(--tf-purple-light);
  border: 1px solid rgba(139, 92, 246, 0.3);
  font-family: var(--tf-mono); font-weight: 700; font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--tf-sp-2);
}
.tf-step h3 { font-size: var(--tf-fs-lg); }
.tf-step p { font-size: var(--tf-fs-sm); margin-top: 0.4em; }
@media (min-width: 900px) { .tf-steps { grid-template-columns: repeat(4, 1fr); } }

/* ==========================================================================
   Feature cards
   ========================================================================== */
.tf-features { display: grid; grid-template-columns: 1fr; gap: var(--tf-sp-3); }
.tf-feature-card {
  background: var(--tf-bg-card);
  border: 1px solid var(--tf-line);
  border-radius: var(--tf-radius);
  padding: var(--tf-sp-3);
  transition: transform 0.3s var(--tf-ease), border-color 0.3s var(--tf-ease), box-shadow 0.3s var(--tf-ease);
}
.tf-feature-card:hover { transform: translateY(-4px); border-color: rgba(139, 92, 246, 0.4); box-shadow: var(--tf-shadow-md); }
.tf-feature-icon {
  width: 42px; height: 42px; border-radius: var(--tf-radius-sm);
  background: var(--tf-purple-tint); color: var(--tf-purple-light);
  border: 1px solid rgba(139, 92, 246, 0.25);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--tf-sp-2);
}
.tf-feature-card h3 { font-size: var(--tf-fs-lg); }
.tf-feature-card p { font-size: var(--tf-fs-sm); margin-top: 0.4em; }
.tf-snippet {
  margin-top: 0.95em;
  border: 1px solid var(--tf-line);
  border-radius: var(--tf-radius-sm);
  background: var(--tf-bg);
  padding: 0.75em 0.85em;
}
.tf-chip-row { display: flex; flex-wrap: wrap; gap: 0.4em; }
.tf-chip {
  font-size: 0.7rem; font-weight: 700; color: var(--tf-text-dim);
  background: var(--tf-bg-card); border: 1px solid var(--tf-line);
  border-radius: 999px; padding: 0.3em 0.75em;
}
.tf-chip.is-on { color: var(--tf-purple-light); background: var(--tf-purple-tint); border-color: rgba(139, 92, 246, 0.35); }
.tf-file-row { display: flex; align-items: center; gap: 0.55em; font-family: var(--tf-mono); font-size: 0.72rem; color: var(--tf-text-dim); }
.tf-file-row svg { width: 14px; height: 14px; color: var(--tf-purple-light); flex-shrink: 0; }
.tf-file-row + .tf-file-row { margin-top: 0.5em; }
.tf-mini-modes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.4em; }
.tf-mini-modes span {
  font-size: 0.66rem; font-weight: 700; text-align: center;
  color: var(--tf-text-dim); background: var(--tf-bg-card);
  border: 1px solid var(--tf-line); border-radius: 7px; padding: 0.5em 0.2em;
}
@media (min-width: 700px) { .tf-features { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .tf-features { grid-template-columns: repeat(3, 1fr); } }

/* ==========================================================================
   Pricing preview
   ========================================================================== */
.tf-price-card {
  max-width: 520px;
  margin-inline: auto;
  background: var(--tf-bg-card);
  border: 1px solid rgba(139, 92, 246, 0.4);
  border-radius: var(--tf-radius);
  padding: var(--tf-sp-4);
  text-align: center;
  box-shadow: var(--tf-shadow-md);
}
.tf-price-row { display: flex; align-items: baseline; justify-content: center; gap: 0.4em; margin-top: var(--tf-sp-2); }
.tf-price-amount { font-size: var(--tf-fs-2xl); font-weight: 700; color: var(--tf-ink); }
.tf-price-period { font-size: var(--tf-fs-sm); color: var(--tf-text-faint); }
.tf-price-card ul { margin-top: var(--tf-sp-3); display: flex; flex-direction: column; gap: 0.55em; text-align: left; }
.tf-price-card li { font-size: var(--tf-fs-sm); color: var(--tf-text-dim); display: flex; gap: 0.5em; }
.tf-price-card li::before { content: "✓"; color: var(--tf-purple-light); flex-shrink: 0; font-weight: 700; }
.tf-price-card .tf-btn { margin-top: var(--tf-sp-3); width: 100%; }
.tf-price-note { margin-top: var(--tf-sp-2); font-size: var(--tf-fs-sm); color: var(--tf-text-faint); }

/* ==========================================================================
   FAQ
   ========================================================================== */
.tf-faq-list { display: flex; flex-direction: column; gap: var(--tf-sp-2); max-width: 720px; margin-inline: auto; }
.tf-faq-item { border: 1px solid var(--tf-line); border-radius: var(--tf-radius-sm); background: var(--tf-bg-card); overflow: hidden; }
.tf-faq-item summary {
  list-style: none; cursor: pointer;
  padding: var(--tf-sp-3); display: flex; align-items: center; justify-content: space-between; gap: var(--tf-sp-2);
  font-weight: 600; font-size: var(--tf-fs-base); color: var(--tf-ink);
  transition: color 0.2s var(--tf-ease);
}
.tf-faq-item summary::-webkit-details-marker { display: none; }
.tf-faq-item summary::after {
  content: "+"; font-size: 1.4em; color: var(--tf-purple-light); flex-shrink: 0;
  transition: transform 0.3s var(--tf-ease); line-height: 1;
}
.tf-faq-item[open] summary::after { transform: rotate(45deg); }
.tf-faq-item summary:hover { color: var(--tf-purple-light); }
.tf-faq-answer { padding: 0 var(--tf-sp-3) var(--tf-sp-3); font-size: var(--tf-fs-sm); color: var(--tf-text-dim); }

/* ==========================================================================
   Final CTA band
   ========================================================================== */
.tf-cta {
  position: relative;
  margin: 0 var(--tf-sp-3);
  padding: var(--tf-sp-6) var(--tf-sp-3);
  border-radius: 26px;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--tf-purple-dark) 0%, #4C1D95 60%, #2E1065 130%);
}
.tf-cta .tf-eyebrow { color: #DDD6FE; }
.tf-cta .tf-eyebrow::before { background: #fff; }
.tf-cta h2 { margin-top: var(--tf-sp-2); color: #fff; }
.tf-cta p { margin-top: var(--tf-sp-2); font-size: var(--tf-fs-lg); color: rgba(255, 255, 255, 0.85); }
.tf-cta-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: var(--tf-sp-2); margin-top: var(--tf-sp-4); }
.tf-cta .tf-btn-primary { background: #fff; color: var(--tf-purple-dark); }
.tf-cta .tf-btn-primary:hover { background: #EDE9FE; box-shadow: none; }
.tf-cta .tf-btn-outline { border-color: rgba(255, 255, 255, 0.4); color: #fff; }
.tf-cta .tf-btn-outline:hover { border-color: #fff; color: #fff; }

/* ==========================================================================
   Footer — small, standalone
   ========================================================================== */
.tf-footer { padding: var(--tf-sp-5) 0 var(--tf-sp-4); border-top: 1px solid var(--tf-line); margin-top: var(--tf-sp-5); }
.tf-footer-inner { display: flex; flex-direction: column; gap: var(--tf-sp-2); align-items: center; text-align: center; }
.tf-footer p { font-size: var(--tf-fs-sm); color: var(--tf-text-faint); }
.tf-footer-back { font-size: var(--tf-fs-sm); font-weight: 700; color: var(--tf-purple-light); }

/* ==========================================================================
   Reveal-on-scroll
   ========================================================================== */
[data-reveal] { opacity: 0; transform: translateY(16px); transition: opacity 0.6s var(--tf-ease), transform 0.6s var(--tf-ease); }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .tf-pipe-arrow, .tf-render-tag::before, .tf-input-caret { animation: none; }
}
